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

Flexでダイアログを表示

Alert.show("test");

Mac OSX 10.6にAndroid開発環境を構築

1、Eclipseをダウンロード 今回はEclipse Classic 3.7.1 にした。なんとなく。 Eclipse Download 2、日本語化するために Pleiadesをダウンロード 最新版の1.3.4にした。なんとなく。 Pleiades Download 3、featuresとpluginsの中身をコピー Pleiadesを解凍…

jQueryでセレクトボックスを操作

初期化 $("#select").empty();選択 $("#select").val(index);追加 $("#select").append($('<option value="index">text</option>'));

MacでRictyを使用する方法

1.FontForge Rictyの作成に必要 $brew install fontforge 2.Inconsolata http://levien.com/type/myfonts/Inconsolata.otf3.Migu 1M http://sourceforge.jp/projects/mix-mplus-ipa/downloads/53389/migu-1m-20111002.zip/4.Ricty(リクティ) https://github.…

bashでビープ音を消す

以下のファイルを作成 $vim .inputrc 以下を記述 $set bell-style none でターミナルを再起動 これでイライラしなくて済む参考 http://futuremix.org/2004/01/bash-beep

bashのメモ

リダイレクト 処理結果をファイルに書き込み $date > test.txt 処理結果をファイルへ追記 $date >> test.txtプロンプト 変更方法 export PS1 = " " \u ユーザ名を表示 \w 現在のディレクトリを絶対パスで表示curl HTTPやFTPでファイルのダウンロードやアップ…