This file contains 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
echo "start adb shell capture" | |
DATE=$(date +%Y%m%d%H%M%S) | |
FILENAME=${DATE}.mp4 | |
DROPBOX_ID=****** | |
adb shell screenrecord --verbose --time-limit 5 /sdcard/demo.mp4 | |
adb pull /sdcard/demo.mp4 ~/Dropbox/Public/capture/${FILENAME} | |
adb shell rm /sdcard/temp.png | |
DROPBOX_URL=https://dl.dropboxusercontent.com/u/${DROPBOX_ID}/capture/${FILENAME} |
This file contains 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
weight = 9.5 # your dog weight | |
isCastration = True # your dog coefficient | |
coefficient = 1.8 | |
if isCastration: | |
coefficient = 1.6 | |
calorie = coefficient * (30 * weight + 70) | |
print calorie |
This file contains 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
/* Copyright 2015 the original author or authors. | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* | |
* Unless required by applicable law or agreed to in writing, software | |
* distributed under the License is distributed on an "AS IS" BASIS, |
This file contains 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
#macとRaspberryPiを有線LANで直接繋いだ時に、RaspPi側のipaddressを知るのに素敵なコマンド | |
sudo tcpdump | grep "192.168.2.*" |
This file contains 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
//build.gradleのテンプレート | |
/*root*/ | |
buildscript { | |
repositories { | |
jcenter() | |
mavenCentral() | |
mavenLocal() | |
maven { url 'http://download.crashlytics.com/maven' } | |
} |
This file contains 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
//※ここにユーザーアカウント選択画面があると素敵だと思います。 | |
//oauth tokenの取得 | |
String token; | |
try { | |
token = GoogleAuthUtil.getToken(this, "[email protected]", "oauth2:https://spreadsheets.google.com/feeds"); | |
Log.i("TAG", token); | |
} catch (UserRecoverableAuthException e) { | |
//最初のアクセスの場合かならずここに来る。 | |
//ユーザーに承認を求める画面が表示される。 |
This file contains 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
deploygate { | |
userName = "shikajiro" | |
token = "hogehoge" | |
apks { | |
release { | |
sourceFile = file("build/outputs/apk/app-release.apk") | |
message = deploygateMsg | |
} | |
debug { |
This file contains 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
public void testSayHello() { | |
//このclickで画面遷移すると仮定する。 | |
onView(withId(R.id.greet_button)) | |
.perform(click()); | |
//遷移後の画面に"Hello Steve!"が表示されるが、このassertはOKだったりNGだったりする。 | |
onView(withText("Hello Steve!")) | |
.check(matches(isDisplayed())); | |
} |
This file contains 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
curl --header "Authorization: key=<server key>" --header Content-Type:"application/json" https://android.googleapis.com/gcm/send -d "{\"registration_ids\":[\"<registration id>\"],\"data\":{\"message\":\"Hello\"}}" |
This file contains 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
package com.example.ble; | |
import static android.bluetooth.BluetoothAdapter.ACTION_REQUEST_DISCOVERABLE; | |
import static android.bluetooth.BluetoothAdapter.ACTION_REQUEST_ENABLE; | |
import static android.bluetooth.BluetoothAdapter.EXTRA_DISCOVERABLE_DURATION; | |
import static android.bluetooth.BluetoothAdapter.SCAN_MODE_CONNECTABLE_DISCOVERABLE; | |
import static android.bluetooth.BluetoothAdapter.getDefaultAdapter; | |
import java.io.IOException; | |
import java.io.InputStream; |