2015年4月20日 星期一

Markdown


http://markdown.tw/

https://www.openfoundry.org/tw/resourcecatalog/Program-Development/Markup-Languages/markdown
技術寫作產能工具 | iThome
http://www.ithome.com.tw/voice/95002

ReText - Linux 支援 Markdown 的編輯器 - Tsung's Blog
http://blog.longwin.com.tw/2014/02/retext-linux-support-markdown-editor-2014/

Pandoc - 維基百科,自由的百科全書
http://zh.wikipedia.org/zh-tw/Pandoc

apt-get install retext pandoc
pandoc -o x.html README -f markdown


2015年4月13日 星期一

The Internals of "Hello World" Program

http://www.slideshare.net/jserv/helloworld-internals

2015年4月1日 星期三

Docker on Ubuntu 14.04 LTS


https://docs.docker.com/installation/
https://docs.docker.com/installation/ubuntulinux/
https://docs.docker.com/installation/ubuntulinux/#installing-docker-on-ubuntu

wget -qO- https://get.docker.com/ | sh

If you would like to use Docker as a non-root user, you should now consider
adding your user to the "docker" group with something like:

sudo usermod -aG docker test

(Reboot required)

sudo docker run hello-world


ERROR: when running "sudo docker run hello-world"
FATA[0000] Post http:///var/run/docker.sock/v1.17/containers/create: dial unix /var/run/docker.sock: no such file or directory. Are you trying to connect to a TLS-enabled daemon without TLS?
FIX: Reboot

https://docs.docker.com/userguide/
https://github.com/veggiemonk/awesome-docker
https://github.com/wsargent/docker-cheat-sheet

Network configuration
https://docs.docker.com/articles/networking/

Linking containers together
https://docs.docker.com/userguide/dockerlinks/