動かざることバグの如し

近づきたいよ 君の理想に

2014-02-01から1ヶ月間の記事一覧

PHPを使ってmp3のタグ情報を取得する方法

getID3ってのを使えばできる。 インストール ubuntu最高や sudo apt-get install php-getid3 これで/usr/share/php-getid3にインストールされる。 サンプル analyze($filename); getid3_lib::CopyTagsToComments($fileInfo); …

Javascript「のみ」でTwitterAPIを叩いてみる

PHPに一切頼らずJavascriptのみでもできるんだね。。。 必要なもの jquery.js(今回は2.1.0) https://oauth.googlecode.com/svn/code/javascript/sha1.js https://oauth.googlecode.com/svn/code/javascript/oauth.js var options = { method: "GET", apiURL:…

GithubにあるJSファイルを直リンクで読込すると「Refused to execute script」と出る件

ChromeでGithubのJavascriptファイルのURLを直接書いて実行させようとしたらエラー Refused to execute script from 'https://raw.github.com/path/to/js.js' because its MIME type ('text/plain') is not executable, and strict MIME type checking is en…

win8TuningPatch.bat

@echo off echo Windows8.1専用 私的チューニングを行います pause sc config WSearch start= disabled :Windows Error Reporting Service sc config WerSvc start= disabled sc config Themes start= disabled :Security Center sc config wscsvc start= di…

WindowsストアアプリのListViewで色々操作してみる

home.html <section aria-label="Main content" role="main"> <div id="sampleListTemplate" data-win-control="WinJS.Binding.Template"> <div class="name-box"> 氏名:<span data-win-bind="textContent: name"></span> 年齢:<span data-win-bind="textContent: age"></span> </div> </div> </section>

めも

前提 プロジェクトの新規作成で「ナビゲーションアプリケーション」を選択 ボタンをクリックして~を実現したい場合 home.html <body> <div class="fragment homepage"> <header aria-label="Header content" role="banner"> <button data-win-control="WinJS.UI.BackButton"></button> <h1 class="titlearea win-type-ellipsis"> </h1></header></div></body>

英語の単数形を複数形に変換するプログラムを作成してみた

php

例えば「book」って投げたら「books」で返したり、「box」で投げたら「boxes」で返ってくるようなメソッド。 そもそも複数形の命名規則って? ここが一番手こずった。今まで感覚でやってたしググっても上位のサイトが結構間違ってる。 基本的には語尾に -s …