2013-01-01から1年間の記事一覧

Linux コマンドラインでの ADT のバージョンアップ

android update sdk -a -f --no-ui --proxy-port 8080 --proxy-host proxy.example.com

Rdmine のチケット番号は int(11)

なので、99999999999 までだね。 ver. 2.3.1

Android でインストールされている apk を取得する。

パッケージがインストールされているフルパスを検索 $ adb shell pm list packages -f | grep com.example package:/data/app/com.example.apk=com.example パッケージファイルを取得(取得するファイル名は適時変更してください) $ adb pull /data/app/com…

Install Ruby via RVM, Rails, thin on CentOS6

CentOS 6 に Rails をインストールする。 Ruby は RVM のマルチユーザモードでインストール。 $ \curl -L https://get.rvm.io | sudo bash -s stable $ rvmsudo rvm $ rvmsudo rvm requirement $ rvmsudo rvm get head && rvm reinstall $ rvmsudo rvm autol…

git behind authentication proxy

git config --global http.proxy http://username:password@proxy.example.com:8080 git config --global https.proxy http://username:password@proxy.example.com:8080 via http://stackoverflow.com/questions/783811/getting-git-to-work-with-a-proxy-s…

ベーシック認証

リクエスト URL に埋め込む場合は Base64 でエンコードする必要はないけど、Authorization ヘッダに追加する場合は Base64 でエンコードする必要がある。

PPTP

Point-to-Point Tunneling Protocol

MPLS

Multi-Protocol Label Switching

DSBL

だそうですよ。 http://d.hatena.ne.jp/keyword/DSBL http://info.2ch.net/wiki/index.php?%A5%D7%A5%ED%A5%AF%A5%B7%A4%B8%A4%E3%A4%CA%A4%A4%A4%CE%A4%CBPROXY%B5%AC%C0%A9%A4%CB%B0%FA%A4%C3%A4%AB%A4%AB%A4%C3%A4%BF%BE%EC%B9%E7%A4%CE%C2%D0%BD%E8%CB%A…

SQLiteDatabase#rawQuery

馬鹿すぎる。 文字列で渡してるため、SQL 上でも文字列で扱ってみるみたい。 数値項目を検索する値をパラメータとして渡すとどうも検索できない。 https://developer.android.com/reference/android/database/sqlite/SQLiteDatabase.html#rawQuery%28java.la…

SQLite3 でのクエリパラメータの制限

The second argument is the index of the SQL parameter to be set. The leftmost SQL parameter has an index of 1. When the same named SQL parameter is used more than once, second and subsequent occurrences have the same index as the first occ…

Anorm で少数を扱う

ことは今のところできひんみたい。https://groups.google.com/forum/#!topic/play-framework/MrNmR1rztgohttps://play.lighthouseapp.com/projects/82401/tickets/346-anorm-doesnt-properly-convert-biginteger-to-long

AST

Abstract Syntax Tree