This file contains hidden or 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
// Amazon で使った金額の合計を出す奴 | |
// | |
// 使い方: | |
// 1. 全部コピーする (右上の Raw をクリックした先でやるのが楽) | |
// 2. Amazon の注文履歴ページ ( https://www.amazon.co.jp/gp/css/order-history/ ) を開く | |
// 3. F12 または 右クリ→要素の検証 とかで出てくる開発者ツールのコンソール (JavaScript REPL) にペースト | |
// 4. エンターで実行 | |
// (Firefox はなんか allow pasting とタイプしろみたいなことを言われるので従う) | |
// 5. しばらく待つと alert で合計金額を表示 | |
// |
This file contains hidden or 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 final class CommonUtilities | |
{ | |
public static boolean BALL_COUNT = false; | |
static final LatLng MITAKA = new LatLng(35.702708000000001D, 139.56083100000001D); | |
public static boolean SET_GPS = false; | |
static final String SHAREDPREF_DETAIL_UP_DATE = "detail_up_data"; | |
static final String SHAREDPREF_FEED_UP_DATE = "feed_up_date"; | |
static final String URL_CUSTOM = "http://standard.navitime.biz/matsuyafoods06/Index.act"; | |
static final String URL_FEED = "http://www.matsuyafoods.co.jp/map/index.xml"; | |
static final String URL_FEED_DETAIL = "http://www.matsuyafoods.co.jp/map/detail.xml"; |