Steve Jobs - The Lost Interview from Daniel Wagner on Vimeo.
##前提
最近MOD送我電影199 偶爾看到.. 覺得實在很棒… (雖然是20年前訪問… 而且結果大家都知道(爆雷))
##內容
完美的創意與完美的產品的差異 — 在於大量完美的工藝
“There is just tremendous amount of craftsmanship in between a great idea and a great product.”
“問題在於優秀的創意到產品之間存在著大量完美的工藝”
“And as you evolve the great idea, it changes and grows, it never comes out like it starts.”
實現創意的過程中…當你了解的越多…想法會變化甚至面目全非.
“Because you learn a lot more, you get into th subtleties, you also find the… There’s tremendous trade-off that you have to make.”
你不得一次次權衡利弊..做出讓步與調整.
##相關鏈結
賈伯斯遺失的訪問-70-分鐘完整影片心得
Youtube: Steve Jobs 遺失的訪談
這是什麼? 程式週記主要內容如下: Gihub project 介紹: 主要會貼一些github,但是會盡量寫上一些有用的評語(或是我容易想到的關鍵詞)幫助以後查詢 網路文章心得: 會寫些心得,強迫自己閱讀. “程式週記”並且定期週期性更新. 大部分內容在我的twitter都會有,這邊只是將一些簡單的心得與感想註解一下. 本週摘要 本週花太時間在追如何使用etcd/raft.本來是打算用NSQ的管理方式,但是看了許久還是找不到他使用的方式.回過頭來使用raft. Go writ: A flexible command and option parser for Go 有點像是cobra,不過可以直接透過name tag 直接讓go structure 直接套入command option. A command line client for Dropbox built using the Go SDK CLI tool for droxbox in Golang,這邊還有新的API An UNOFFICIAL Dropbox v2 API SDK for Go kati: Google GNU make clone which is written by golang 可以透過kati來將makefile轉換成ninja用的檔案. A repository for plotting and visualizing data 可以拿來換圖用的套件. Stochastic flame graph profiler for Go programs 隨機產生火焰顯示profile你的go程式的結果. Python Android/JAVA/NODE.JS Building Android Apps — 30 things that experience made me learn the hard way — Medium 作者分享在開發Android App裡面踩到的雷,這種經驗分享的文章,永遠都是我的最愛. Yahoo Deep Learning Engine: CaffeOnSpark Yahoo最近開源的Deep Learning Engine,主要可以將Hadoop/Spark Cluster的資料抓取來使用.更多部分可以看他們的文章 Cross-platform Linux without the suck 可以讓你在Windows下面使用unix的console,而且又不像Cygwin那麼大.重點是用JS ES6寫的 Docker Kafka (and Zookeeper) in Docker Spotify 開源docker image可以讓你快速架設kafka跟zookeeper. One+ year feedback of using Docker and Swarm in DEV and QA environments — Medium 使用swarm經驗談文章.. 挺不錯的. 有教導如何透過swarm在dev <-> pre-prod <-> prod 之間切換的方法. iOS/Swift 網站文章...
Run docker container as default system services
Start docker daemon when ubuntu launch.
Add conf on service as follow
description "cAdvisor"
start on filesystem and started docker
stop on runlevel [!2345]
#respawn
# @see https://github.com/google/cadvisor/blob/master/docs/running.md#standalone
script
docker rm -f cadvisor || true
docker run \
--volume=/:/rootfs:ro \
--volume=/var/run:/var/run:rw \
--volume=/sys:/sys:ro \
--volume=/var/lib/docker/:/var/lib/docker:ro \
--publish=8080:8080 \
--detach=true \
--restart=always \
--name=cadvisor \
google/cadvisor:latest
end script
For more detail, check here. Automatically start containers