DRYな備忘録

Don't Repeat Yourself.

2014-09-01から1ヶ月間の記事一覧

【C言語】error: unknown type name 'bool'

C

ふぇぇ 解決 c - error: unknown type name ‘bool’ - Stack Overflow #include <stdbool.h></stdbool.h>

とりあえず簡単なAndroidアプリをつくってみる【Android Studio】

ゴール AndroidStudioをインストール Androidプロジェクトを新規作成 シミュレータでアプリを起動 実機でアプリを起動 AndroidStudioをインストール Android Studio | Android Developers でダウンロード ダウンロードしたdmgファイル(Windowsだとexe?)を…

【iOS】NSUserDefaultsを削除

NSString *bundleId = [[NSBundle mainBundle] bundleIdentifier]; [[NSUserDefaults standardUserDefaults] removePersistentDomainForName:bundleId]; 参考 iphone - Clearing NSUserDefaults - Stack Overflow DRY

【Git】リモートリポジトリ名を変更したい

git

問題 % git remote -v origin git@github.com:otiai10/rodeo.git (fetch) origin git@github.com:otiai10/rodeo.git (push) originっていう名前いや。git remote rm originしてgit remote add otiai git@github...するのもめんどい。 解決 % git remote rena…