2013年4月19日金曜日

gmailの文字化け対策

■対策
gmailの署名にユニコードの文字を入力する。

■手順
・Gmailの送信用文字コードをutf-8にする。
・Gmailの署名にノーブレークスペースを追加する。
 →追加の仕方:下記で[入力方法]で検索

以上

2013年2月12日火曜日

Launch controls on stopped applications

新しいアプリステートのstop状態が追加された。

使い方、確認の仕方
http://y-anz-m.blogspot.jp/2011/05/android-31-platform.html

詳細:
http://developer.android.com/about/versions/android-3.1.html

2012年12月22日土曜日

mac air のファンが止まらない理由

とりあえずcpuの占有率の高いActivityをKillすればよいようだ。

Activity Monitorで

元ネタ
http://miwluv.blogspot.jp/2011/06/mba-macbook-air.html

マックのWireless Cardを検出できない場合


command + option + P + R
押したまま電源を入れる
ずっと押しっぱなし
2回起動音がしたあと、設定値が全部戻されるとのこと。

2012年12月17日月曜日

about android webview


before loadurl, must invoke setWebViewClient.
WebView
webview.setWebViewClient(new WebViewClient());
webview.loadUrl(uri.toString());

2012年12月12日水曜日

Finder と iterm2の連携について

enter this command to launch finder.
  open .

to launch iterm2 from finder.
http://code.google.com/p/cdto/



2012年11月26日月曜日

iOS xcode 設定

1. Go to the Project Settings screen, select the Artists target and under Build Settings type “compiler” into the search box. This will filter the list to bring up just the compiler options:

2. Under the Warnings header, also set the Other Warning Flags option to -Wall. The compiler will now check for all possible situations that can cause problems.

3. For the exact same reason, also enable the Run Static Analyzer option under the Build Options header:

4. To try out ARC

Search for “automatic” and set the Objective-C Automatic Reference Counting option to Yes.