ubuntu 14.04
$ sudo aptitude install cmake make gcc g++ libyaml-dev libssl-dev pkg-config
$ git clone [email protected]:h2o/h2o.git
$ cd h2o
$ cmake -DCMAKE_INSTALL_PREFIX=/usr/local .
$ make
$ ./h2o -c examples/h2o/h2o.conf| package main | |
| import ( | |
| "code.google.com/p/go-tour/wc" | |
| "strings" | |
| ) | |
| func WordCount(s string) map[string]int { | |
| wc := make(map[string]int) | |
| for _, ss := range strings.Fields(s) { |
| #!env bash | |
| find ~/Music/iTunes/Album\ Artwork -name '*.itc' | while read i | |
| do | |
| dd if="$i" of=$(basename "$i" .itc).png bs=1 skip=492 | |
| done | |
| # byte 492 or 500 |
| (load (expand-file-name (concat (getenv "HOME") "/.emacs.d/init"))) |
| 59 23 * * 2 sh ~/rec_radiko.sh BAYFM78 30 ~/kalafina |
| Vendor Specific SMART Attributes with Thresholds: | |
| ID# ATTRIBUTE_NAME FLAG VALUE WORST THRESH TYPE UPDATED WHEN_FAILED RAW_VALUE | |
| 1 Raw_Read_Error_Rate 0x000f 116 099 006 Pre-fail Always - 101228800 | |
| 3 Spin_Up_Time 0x0003 100 100 000 Pre-fail Always - 0 | |
| 4 Start_Stop_Count 0x0032 100 100 020 Old_age Always - 62 | |
| 5 Reallocated_Sector_Ct 0x0033 100 100 036 Pre-fail Always - 9 | |
| 7 Seek_Error_Rate 0x000f 084 060 030 Pre-fail Always - 262259289 | |
| 9 Power_On_Hours 0x0032 052 052 000 Old_age Always - 42174 | |
| 10 Spin_Retry_Count 0x0013 100 100 097 Pre-fail Always - 0 | |
| 12 Power_Cycle_Count 0x0032 100 100 020 Old_age Always - 62 |
ubuntu 14.04
$ sudo aptitude install cmake make gcc g++ libyaml-dev libssl-dev pkg-config
$ git clone [email protected]:h2o/h2o.git
$ cd h2o
$ cmake -DCMAKE_INSTALL_PREFIX=/usr/local .
$ make
$ ./h2o -c examples/h2o/h2o.conf------ BNRスピードテスト (ダウンロード速度) ------
測定サイト: http://www.musen-lan.com/speed/ Ver5.5001
測定日時: 2015/04/11 20:04:17
回線/ISP/地域:
--------------------------------------------------
1.NTTPC(WebARENA)1: 46.29Mbps (5.79MB/sec)
2.NTTPC(WebARENA)2: 49.21Mbps (6.15MB/sec)
#機械学習勉強会準備会 ##コレは何? ガチの初心者が、学び、理解し、使えるように成るのが目標の勉強会。 DeepLearningでもなんでもいいが、最終的には実装できるだけの蓄積を各々溜める。
##詳細 日時 2015/04/30 19:00-21:30 場所 麻布区民センター 細かいのはslackのチャンネルで聞いてください。 対象 ガチ初心者(輪講メイン)
| #書籍 | |
| * [オンライン機械学習](http://www.amazon.co.jp/dp/406152903X) | |
| * [集合知プログラミング](http://www.oreilly.co.jp/books/9784873113647/) | |
| #次 | |
| * オンライン機械学習の3章から | |
| * 集合知プログラミングは内容を確認しつつやる |
| 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 |