This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* 説明 | |
** 実際のGoogle App Engine上で動作する環境をProduction環境と呼ぶ。 | |
** 開発環境で動作確認ができたアプリケーションを、Production環境にアップロードする(→デプロイ)。 | |
* GAE側での準備 | |
1.(はじめての場合のみ)Googleアカウントを取得する。 | |
2.http://appengine.google.com/ に、Googleアカウントでログインする。 | |
3."Create Application"ボタンをクリックする。 | |
4.(はじめての場合のみ)自動音声による電話認証を行う。 | |
5.Application IdentifierとApplication Titleを決定する。 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* いろいろ設定しても、タブが入力されてしまうのでここを見て、プラグインを導入した。 | |
http://d.hatena.ne.jp/gabuchan/20110414/1302775587 | |
* AnyEdit tools plugin for Eclipse | |
http://andrei.gmxhome.de/eclipse/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1.隠しファイルの表示 | |
$ defaults write com.apple.finder AppleShowAllFiles TRUE | |
$ killall Finder |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* 参考 | |
** Homebrewのインストール | |
https://gist.github.com/myamamic/5907519 | |
** Homebrewでgitインストール | |
http://d.hatena.ne.jp/ttaka_tmp/20110412/1302585640 | |
http://rock-and-hack.blogspot.jp/2012/12/macgithomebrew.html | |
* 手順 | |
1."brew install git"を実行 | |
/usr/local/Cellar/git/1.8.3.2: 1325 files, 28M, built in 34 seconds |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* 参考 | |
http://mxcl.github.io/homebrew/index_ja.html | |
* 手順 | |
1.homebrewをインストール | |
$ ruby -e "$(curl -fsSL https://raw.github.com/mxcl/homebrew/go)" | |
2."Command Line Tools for Xcodeがない"エラー | |
Warning: Install the "Command Line Tools for Xcode": http://connect.apple.com |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* 参考 | |
http://hhyy.hateblo.jp/entry/2012/10/21/Mac_Book_Air%E3%81%AE%E3%82%BF%E3%83%BC%E3%83%9F%E3%83%8A%E3%83%AB%EF%BC%88%E7%AB%AF%E6%9C%AB%EF%BC%89%E8%A8%AD%E5%AE%9A | |
* 自分の.bashrc | |
export PS1="\u@\h:\W$ " |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[前提条件] | |
* ubuntu 12.04 | |
* apacheは動いている。 | |
* python2.7が入っている。 | |
[手順URL] | |
http://autobahn.ws/python/getstarted | |
[やったこと(だいたい] | |
1.mod_pythonいれた |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
■Windows XPから、ubuntu 12.04にリモートデスクトップ接続する。 | |
[補足] | |
・xrdp 0.5.0はキーマップの問題(日本語周り)がいろいろあるらしい。 | |
→なので、xrdp 0.6.0をビルドして使用。 | |
[インストール] | |
1.xrdp 0.6.0のソースコードを入手 | |
git clone git://xrdp.git.sourceforge.net/gitroot/xrdp/xrdp |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* mydroid/packages/apps/などの下でビルドする | |
* | |
*/ | |
import android.os.IBinder; | |
import android.os.RemoteException; | |
import android.os.ServiceManager; // SDKでは公開されていない | |
import android.os.storage.IMountService; // SDKでは公開されていない | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* クライアント自動起動 | |
/etc/lightdm/lightdm.conf | |
# Run synergy client | |
greeter-setup-script=/usr/bin/synergyc <IPアドレス> |