| 日時: | 2016-01-23 |
|---|---|
| 作: | @voluntas |
| バージョン: | 0.1.2 |
| url: | https://voluntas.github.io/ |
| #! /bin/bash | |
| ## This script is for taking a screen shot of an Android device. | |
| ## If possible, it tries to resize the image file and then copy to the clipboard. | |
| ## | |
| ## Note the script generates screenshot_yyyyMMddHHmmss.png and screenshot_yyyyMMddHHmmss_s.png | |
| ## under /sdcard on the device (you can specify another location with '-t' option) | |
| ## and copies it to the current working directory. | |
| ## | |
| ## The script passes unrecognized arguments to adb command, which means you can specify "-e" or "-d" |
Custom recipe to get OS X 10.11 El Capitan running from scratch, setup applications and developer environment. This is very similar (and currently mostly the same) as my 10.10 Yosemite setup recipe (as found on this gist https://gist.github.com/kevinelliott/0726211d17020a6abc1f). Note that I expect this to change significantly as I install El Capitan several times.
I use this gist to keep track of the important software and steps required to have a functioning system after a semi-annual fresh install. On average, I reinstall each computer from scratch every 6 months, and I do not perform upgrades between distros.
This keeps the system performing at top speeds, clean of trojans, spyware, and ensures that I maintain good organizational practices for my content and backups. I highly recommend this.
You are encouraged to fork this and modify it to your heart's content to match your own needs.
| 更新: | 2024-05-20 |
|---|---|
| 作者: | @voluntas |
| バージョン: | 2024.1 |
| URL: | https://voluntas.github.io/ |
| var data = { "pixel" : "%6%%%%%%%%%%%%%%%%%%69\n" | |
| + "%4%%%%%%%%%%%%%%%%%%%%%%67\n" | |
| + "%3%%%%%%%%%6%2%%%%%%%67\n" | |
| + "%2%%%%%%%%9%2%%%%%%%66\n" | |
| + "%%%%%%%%11%2%%%%%%%66\n" | |
| + "%%%%%%%12%2%%%%%%67\n" | |
| + "%%%%%%13%2%%%%%%%51%%14\n" | |
| + "%%%%%%%2%10%%%%%%%3%65\n" | |
| + "%%%%%%12%%%%%%%%%%%%%63\n" | |
| + "%%%%%%%2%12%%2%%%%%%%%%46%%14\n" |
- Android - アプリのレビューを HipChat で自動通知する - Qiita http://qiita.com/hkurokawa/items/9241055f5d34b4dd4782
- Google Play のレビューを自動通知する // Speaker Deck https://speakerdeck.com/hkurokawa/google-play-falserebiyuwozi-dong-tong-zhi-suru
- mktemp が GNU 版で引数が不要だった。
- パス通すのが面倒だったので同じ場所においてあれば動くようにした。
- 各種定数について環境変数を設定するのが面倒だったのでベタ書きした。
- Slack に投稿する際のフォーマットを調整した。
If you don't have homebrew installed - get homebrew here
Then run: brew install elasticsearch
Update the elasticsearch configuration file in /usr/local/etc/elasticsearch/elasticsearch.yml.
- プログラム全体が本来やってほしいことをやってくれているかどうかチェックしたい.
- e.g) 特定の結果を返すこと, 計算リソースへの副作用, クラッシュなどの明らかなバグを含んでいないことなど
→ ライスの定理によりプログラムの振る舞いについて必ずしも正しい答えは得られない.
- プログラムを実行して確認できれば良いが、実行時まで不明な情報がある場合は難しい
- e.g. ユーザーからの対話的な入力, 引数としてわたされるファイル, ネットワークから読み込まれるデータなど
- ダミーデータですべての組み合わせ(入力)について確認sうるのは非現実的.
| import Foundation | |
| import CocoaLumberjack | |
| import Crashlytics | |
| class CrashlyticsLogger : DDAbstractLogger | |
| { | |
| static let sharedInstance = CrashlyticsLogger() | |
| private var _logFormatter : DDLogFormatter? | |
| override var logFormatter: DDLogFormatter? { |