ubuntu11.10でGoogle日本語入力
ubuntu11.10でGoogle日本語入力 参考 sudo apt-get install ibus-mozc mozc-server mozc-utils-gui
ubuntu11.10でGoogle日本語入力 参考 sudo apt-get install ibus-mozc mozc-server mozc-utils-gui
ファイル名を指定して実行より、regeditを実行 以下の順にたどる HKEY_LOCAL_MACHINE - SOFTWARE - Microsoft - Windows NT - CurrentVersion - console - TrueTypeFont 932.を追加し、値にMigu 1Mなど、使用したいフォント名を入力する コマンドプロンプトから、フォントを変更する
玄箱HG(debian lenny)へ SVN を導入する 参考 http://wlog.flatlib.jp/item/1289 http://brokendish.org/debian/609/ subversionインストール sudo apt-get install subversion sudo apt-get install libapache2-svn libapache2-mod-encoding subversionの設定 svnロケーション設定 cd /etc/apache2 sudo vi mods-available/dav_svn.conf 以下を追加 <Location /svn> DAV svn SVNParentPath /path/to/svn_server_directory SVNListParentPath on #require ssl SSLRequireSSL AuthType Basic # auto commit on SVNAutoversioning on AuthName "Subversion Repository" AuthUserFile /etc/apache2/dav_svn.passwd # require authentication other than require method for read repository. Require valid-user </Location> svnルートディレクトリの作成 mkdir -p /path/to/svn_server_directory svnディレクトリ(プロジェクト単位?)の作成 sudo svnadmin create --fs-type=fsfs /path/to/svn_server_directory/repo sudo chown -R www-data:www-data /path/to/svn_server_directory sudo chmod -R gu+w /path/to/svn_server_directory svnアクセスユーザの作成 htpasswd -c /etc/apache2/dav_svn....
android Toastを上げるサンプル Toast.makeText( this, "Build.DEVICE=" + Build.DEVICE + ":" + "Build.VERSION.SDK_INT=" + Build.VERSION.SDK_INT, android.widget.Toast.LENGTH_LONG).show(); Intent intent = new Intent(); intent.setClassName("com.google.android.gsf", "com.google.android.gsf.gtalkservice.diagnostics.GTalkDiagnostics"); startActivity(intent);
Galaxy Nexus タップ時の音を変更する タップ時に鳴らす音を用意する(NexusSより抜いた) 名前を以下に変更する Effect_Tick.ogg /systemを書き込み権限付きでremountする(要ルート) mount -o rw,remount /system adbでpushする adb push ./Effect_Tick.ogg /system/media/audio/ui