- 保存先を変更
defaults write com.apple.screencapture location ~/Picture/screenshot
- UIServerを再読み込み
killall SystemUIServer
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
#PHPConference | |
https://docs.google.com/spreadsheets/d/1Stjf6N7yuunOtibiWdNYWlDu00Z_S1jy5OwmzxnLO5Q/edit?pref=2&pli=1#gid=0 | 全体マイルストーン - Google スプレッドシート | |
https://docs.google.com/spreadsheets/d/1-381L5iseFBcJwb4ImEc2glfhfuU2_3qMYFPHhd38qU/edit?pref=2&pli=1#gid=0 | スタッフ名簿&担当表 - Google スプレッドシート | |
https://docs.google.com/spreadsheets/d/14Sc-0VcSMM9rSrzDcihAWT4AstxSBLvQn8y8IiMcjuY/edit#gid=859224759 | PHPカンファレンス2016予算 - Google スプレッドシート | |
https://docs.google.com/spreadsheets/d/1q6aVXl_PxRk1vUSgsrOU1kTwv1Wkc5TPU80aSGaRz2M/edit#gid=0 | 進捗共有 - Google スプレッドシート | |
https://phpcon-php-gr-jp.slack.com/messages/general/ | general | 2016 PHP Conference Japan Slack | |
https://slack-files.com/files-pri-safe/T02K7KC0U-F1V2KMH0A/php_____________________2016___________________.pdf?c=1470307627-3f099f42d5648af6bfb8147aa61510866d60e2ef | PHPカンファレンス2014 協賛のご案内 | |
https://drive.google.com/drive/folders/0B2hIEXc43RO_OXFzODh4UEl0bGs | PHPConference2016 - Google ドライブ | |
https://docs.google.com/forms/d/e/1FAIpQLScPn3mv4lWpHHSQS7EdmVuNadOvj3GMbmXEHxVj9cB |
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
FILENAME="packages.txt" | |
adb shell pm list package > ./$FILENAME; | |
echo "packages list output to ./$FILENAME"; | |
cat ./$FILENAME | sed -e 's/package://g' | while read LINE;do | |
APKNAME=`echo ${LINE} | tr -d '\r'` | |
if [ ! -e $APKNAME.ab ]; then |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie-edge"> | |
<title>JSの練習</title> | |
</head> | |
<body> | |
<div id="tipQR"> |
OlderNewer