sudo apt-get update
sudo apt-get install apache2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fs = require('fs') | |
fs.readFile('/etc/hosts', 'utf8', function (err,data) { | |
if (err) { | |
return console.log(err); | |
} | |
console.log(data); | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import string | |
class SuperFormatter(string.Formatter): | |
"""World's simplest Template engine.""" | |
def format_field(self, value, spec): | |
if spec.startswith('repeat'): | |
template = spec.partition(':')[-1] | |
if type(value) is dict: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
"io" | |
"os" | |
) | |
var path = "/Users/novalagung/Documents/temp/test.txt" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"github.com/kiktomo/goqr" | |
"image/png" | |
"os" | |
) | |
func main() { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[如果你用GitHub,可以这样提高效率](fsaf) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
InfoQ Head First Docker: http://www.infoq.com/cn/articles/docker-core-technology-preview [here](http://www.infoq.com/cn/articles/docker-core-technology-preview) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
An introduction from wiki: http://en.wikipedia.org/wiki/Maximum-entropy_Markov_model | |
An Chinese blog summerize the three: MaxEnt, HMM, MEMM, and CRF: http://www.cnblogs.com/549294286/archive/2013/06/06/3121761.html | |
An very intuative instroduction to NLP segmentation: http://www.isnowfy.com/introduction-to-chinese-segmentation/ | |
Steve's Explanation to MEMM: http://www.cs.toronto.edu/~sengels/tutorials/MEMM.html | |
MIT 6.863J/9.611J Natural Language Processing: Fall 2012: http://web.mit.edu/6.863/www/fall2012/ | |
MIT 6.881 2004秋季课程:自然语言处理(Natural Language Processing, Fall 2004): http://www.myoops.org/cocw/mit/Electrical-Engineering-and-Computer-Science/6-881Fall-2004/CourseHome/index.htm |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://www.vaikan.com/how-to-write-a-killer-resume-for-software-engineers/ | |
http://coolshell.cn/articles/1695.html | |
https://github.com/geekcompany/ResumeSample | |
http://www.zhihu.com/question/25002833 |
NewerOlder