Bescottee苦しいときは伸びてるとき、楽なときは伸びていないとき

2014/06/27時点のSDK Manager が取得するデータURL一覧(その3)

  • https://dl-ssl.google.com/android/repository/addons_list-2.xml
  • https://dl-ssl.google.com/android/repository/repository-9.xml(empty)
  • https://dl-ssl.google.com/android/repository/repository-8.xml
  • https://dl-ssl.google.com/android/repository/addon.xml
  • https://dl-ssl.google.com/android/repository/addon-6.xml
  • https://dl-ssl.google.com/glass/gdk/addon.xml
  • https://dl-ssl.google.com/android/repository/extras/intel/addon.xml
  • https://dl-ssl.google.com/android/repository/sys-img/android/sys-img.xml
  • https://dl-ssl.google.com/android/repository/sys-img/android-wear/sys-img.xml
  • https://dl-ssl.google.com/android/repository/sys-img/android-tv/sys-img.xml
  • https://dl-ssl.google.com/android/repository/sys-img/x86/addon-x86.xml
  • http://dl.developer.sony.com/sdk_manager/Sony_Google_TV_SDK.xml
  • http://dl-developer.sonymobile.com/sdk_manager/Sony-Add-on-SDK.xml

(続きを読む…)

2014/06/27時点のSDK Manager が取得するデータURL一覧(その2)

(続きを読む…)

2014/06/27時点のSDK Manager が取得するデータURL一覧

(続きを読む…)


apt-cyg install git
apt-cyg install make
apt-cyg install autoconf
apt-cyg install gcc-core
apt-cyg install zlib-devel
apt-cyg install libiconv
apt-cyg install libiconv-devel

git clone git://github.com/git/git.git

cd git/
make configure
./configure --prefix=/usr/local
make all
make install

2 .gitconfig

admin to git  

http://subtech.g.hatena.ne.jp/motemen/20120917/1347889804でbrowse-remoteが紹介されています。それを加えてい、以下の便利な alias も紹介されているので備忘として引用させて頂きます。
<--more-->


[alias]
    # http://oli.jp/2012/git-powerup/
    # http://blog.blindgaenger.net/advanced_git_aliases.html
    alias = !git config --list | grep 'alias\\.' | sed 's/alias\\.\\([^=]*\\)=\\(.*\\)/\\1\\\t => \\2/' | sort
    b = branch -a
    br = browse-remote
    ci = commit
    co = checkout
    d = diff
    dc = diff --cached
    di = diff
    dic = diff --cached
    f = fetch --prune
    fs = !git f && git su
    ignore = !([ ! -e .gitignore ] && touch .gitignore) | echo $1 >> .gitignore
    info = remote show origin
    l = log --graph -n 20 --pretty=format:'%C(yellow)%h%C(cyan)%d%Creset %s %C(green)- %an, %cr%Creset'
    ll = log --stat --abbrev-commit
    ln = log --graph -n 20 --pretty=format:'%C(yellow)%h%C(cyan)%d%Creset %s %C(green)- %an, %cr%Creset' --name-status
    lp = log --oneline -n 20 -p
    ls = log --stat --abbrev-commit -n 1 # display previous log
    s = status --short --branch
    st = status
    su = submodule update

  • Ctrl+Shift+F7
  • すべての exit ポイントを強調表示する

(続きを読む…)

WWDC振り返り勉強会の資料をまとめておきます。

NAD情報は無しで以下の公開情報をもとに報告がされてました。

WWDC2014 これだけ押さえておけば間違い無し!おすすめセッションTOP10

(続きを読む…)

Gradle, please

http://gradleplease.appspot.com/

以下のライブラリのdependenciesの記載方法が簡単にわかります。(2014/06/21時点)

  • gson
  • actionbarsherlock
  • joda-time
  • picasso
  • otto
  • slf4j
  • crouton
  • nineoldandroids
  • butterknife
  • guava
  • okhttp
  • dagger

2 Android Wear

admin to development  

サンプルアプリとライブラリ

https://drive.google.com/uc?export=download&id=0B39_TcfZ2v6NajZ3Q3UwdU5SQVk

Android Wear Preview(Android app from Google play)

https://play.google.com/apps/testing/com.google.android.wearablepreview.app

Android Wear Development Start

http://developer.android.com/wear/preview/start.html

対象を同時に削除する場合

ファイルの場合

git rm -f app/app.iml

フォルダの場合

git rm -rf app/build/

対象をローカルに保持したまま、git管理対象から削除する場合

ファイルの場合

git rm --cached -f app/app.iml

フォルダの場合

git rm --cached -rf app/build/