日本から海外に行くor滞在するときのチェックリストと調べた限りの内容
#チェックリスト ##必須
- パスポート
##お金関係
- ATMで現金を引き出す方法
- 日本からの送金方法
| { | |
| "timeZone": "Asia/Tokyo", | |
| "dependencies": {}, | |
| "exceptionLogging": "STACKDRIVER", | |
| "runtimeVersion": "V8" | |
| } |
| package errors | |
| import ( | |
| "regexp" | |
| "cloud.google.com/go/spanner" | |
| "google.golang.org/grpc/codes" | |
| "google.golang.org/grpc/status" | |
| ) |
| <?php | |
| /** | |
| * Class SilentKill | |
| * | |
| * @method $this echo() | |
| * @method $this process() | |
| */ | |
| class SilentKill{ |
| speedtest --list | grep Japan | head -n 3 | sed 's/\([^)]*\).*$/\1/' | xargs -ISERVER_ID speedtest --server SERVER_ID --simple |
| ------------------------------------ | |
| -- Config | |
| ------------------------------------ | |
| -- MyDNS ID | |
| mid="MyDNSID" | |
| -- MyDNS Password | |
| pwd="MyDNSPASSWD" |
| <?php | |
| class A | |
| { | |
| /** | |
| * @return $this | |
| */ | |
| public function foo() | |
| { | |
| return $this; |
日本から海外に行くor滞在するときのチェックリストと調べた限りの内容
#チェックリスト ##必須
##お金関係
| defmodule Math do | |
| def sum_list([head|tail]) do | |
| sum_list(tail, head) | |
| end | |
| def sum_list([head|tail], accumulator) do | |
| sum_list(tail, head + accumulator) | |
| end | |
| def sum_list([], accumulator) do |
| #書籍 | |
| * [オンライン機械学習](http://www.amazon.co.jp/dp/406152903X) | |
| * [集合知プログラミング](http://www.oreilly.co.jp/books/9784873113647/) | |
| #次 | |
| * オンライン機械学習の3章から | |
| * 集合知プログラミングは内容を確認しつつやる |