May 24, 2013
Usually this is how to connect to MySQL Server using MySQL client:
$ mysql -u mike -p123
May 23, 2013
Check out new cool projects everyday. Most of them are MIT and BSD license.
May 23, 2013
Go (or Golang) is a compiled language and comes with full featured library. It is like Python combined with C++.
Download Go and install.
May 23, 2013
Create an new empty bare git repository
$ mkdir mywebsite.git
$ cd mywebsite.git
$ git init --bare
$ touch hooks/post-receive
May 23, 2013
Meet jq . http://stedolan.github.io/jq/ .
A simple command line tool to process JSON file.
$ echo {} > test.json
$ jq ".name = "Mike"" test.json