it is 8012 already
都已经8012年了啊!!!
都已经8012年了啊!!!
Linux shell 入门 By notsobad What is shell? Shell is a program that takes your commands from the keyboard and gives them to the operating system to perform Shell vs GUI sh, bash, dash, zsh What is bash? Bash is the GNU Project’s shell. Bash is the Bourne Again SHell. Bash is an sh-compatible shell that incorporates useful features from the Korn shell (ksh) and C shell (csh). It is intended to conform to the IEEE POSIX P1003.2/ISO 9945.2 Shell and Tools standard. Bash 语法 注释 变量定义以及使用 控制结构 循环 函数 调试 特殊字符 执行方法 Hello world. #!/bin/bash # hello world example. for i in `seq 1 10`;do echo hello world; done variables a=1 b=$a c=$a$b # or c="$a$b" or c=${a}${b} d=$(($a + $b)) echo $HOME env commands shell内置了一些命令,这些命令不需要调用外部程序,如echo, printf, cd, pwd等。 ...
阅读代码方案 wine/crossover + source insight OpenGrok Ack 命令行方案 ack ctags gnu global cscope 参考: http://adam8157.info/blog/2014/11/use-gnu-global-for-source-code-tagging
git建分支的时候,可以指定源自哪个版本 默认是从当前的HEAD git branch test 可以从某次提交 git branch test 2571682 从某个分支的HEAD git branch test dev <start-point> The new branch head will point to this commit. It may be given as a branch name, a commit-id, or a tag. If this option is omitted, the current HEAD will be used instead.
几年前做过一个爬取笑话网站的爬虫, 爬了好几个网站,抓取了几万个笑话,去年把收集到的数据,做成了一个简单的笑话网站,爱说笑. 代码扔github上了,地址。 用到的东西, scrapy做的爬虫,ui是tornado + mongodb + nginx, 中文分词用的是结巴分词, 前端用的bower + grunt + bootstrap。 ...
在追的几部美剧: 辛普森一家 疑犯追踪 国土安全 Gotham Agents of shield Modern family Z nation The walking dead 已经终结的几部不错的剧:废柴联盟,冰血暴,真探。 看的最无聊的剧是《复仇》,太拖延,太无聊了,居然还拍了四季。
blog又长草了一年,想重新拾起来了,以前的模板不是很好看,换了个新的。 markdown编写blog,pelican来静态化,修改了它自带的simple模版,样式是修改自mou的css,结果呢,就是现在这个样子,代码放到github上了 pelican自带的测试服务器不是很好用,写了个小脚本来做。 ...
Nothing new, really. 越来越不喜欢写blog了,也不喜欢发微博,以前经常发,是自己遇到了一些技术问题,找到解决方案了,会写一篇blog或者微博来记录下,现在越来越没兴趣写这些东西了,除了技术相关的,其它方面还真没什么好写的。 最近的事: 已经不能久坐了,坐一会就如坐针毡,实在忍不住了就站立办公了 不知为何,状态很差,注意力不易集中 现在这个时间段,成都天气开始转好, 整个冬天都是雾霾,只有最近2周才看到太阳 买车了,只周末开一下,开了几百公里, 路痴,手机导航也很不靠谱
Hello 2014! I’m 31 years old now, sadly. I wish myself in the new year: Less waste time, less unhappy, less overtime, more productive, more product, much more confidence.
最简单的,先参考这个 http://ubuntuforums.org/showthread.php?t=910717 ,建好目录,执行: dpkg-deb --build helloworld_1.0-1 即可生成deb文件,然后 # 安装 sudo dpkg -i helloworld_1.0-1.deb # 在包管理工具中搜索 sudo dpkg -l |grep helloworld # 卸载 sudo dpkg -r helloworld_1.0-1:i386