Skip to content

Instantly share code, notes, and snippets.

View takke's full-sized avatar

TAKEUCHI Hiroaki takke

View GitHub Profile
@yusuke
yusuke / Android Studio30分集中超絶技巧100選メモ DroidKaigi 2018 #DroidKaigi #DroidKaigi_room3
Created February 9, 2018 02:10
Android Studio30分集中超絶技巧100選メモ DroidKaigi 2018 #DroidKaigi #DroidKaigi_room3
Android Studio30分集中超絶技巧100選 DroidKaigi 2018
山本 ユウスケ @yusuke
マウス、トラックパッドを使うのはやめましょう
今日は以下のキーマップの話です
Mac OSX: Mac OSX 10.5+
Windows/Linux: Default
他のキーマップだとQiitaやドキュメント、ブログなどを見る際に苦労します。
設定画面 Cmd + , (Ctrl + Alt + S)
プロジェクト設定画面 Cmd + ;
File > Power Save Modeでバッテリー節約
takke@tm-nuc:~$ twurl "/1.1/statuses/show.json?id=479307198901026816" | php -R 'print_r(json_decode($argn));'
stdClass Object
(
[created_at] => Wed Jun 18 16:58:35 +0000 2014
[id] => 479307198901026816
[id_str] => 479307198901026816
[text] => Starting today, you can share and view animated GIFs on http://t.co/wJD8Fp317i, Android and iPhone. http://t.co/XBrAbOm4Ya
[source] => <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>
[truncated] =>
[in_reply_to_status_id] =>
@takke
takke / gist:e6fd95542c6d3ea913e5
Last active August 29, 2015 14:02
extended_entities
takke@tm-nuc:~$ twurl "/1.1/statuses/show.json?id=449660889793581056" | php -R 'print_r(json_decode($argn));'
stdClass Object
(
[created_at] => Fri Mar 28 21:34:45 +0000 2014
[id] => 449660889793581056
[id_str] => 449660889793581056
[text] => "I hope you'll keep...building bonds of friendship that will enrich your lives &amp; enrich our world" ―FLOTUS in China, http://t.co/fxmuQN9JL9
[source] => <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>
[truncated] =>
[in_reply_to_status_id] =>
@tshrkmd
tshrkmd / styles_noactionbar.xml
Last active November 3, 2022 09:58
Theme.AppCompat.Light.NoActionBar
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="Theme.AppCompat.Light.NoActionBar" parent="@style/Theme.AppCompat.Light">
<item name="android:windowNoTitle">true</item>
<item name="windowActionBar">false</item> <!-- For 2.x version -->
</style>
</resources>