上一页 1 2 3 4 5 6 ··· 17 下一页

2014年3月19日

摘要: The normal way of deploy clojure files is using leiningen. But if we have no leiningen, or the script is small and unnecessary to pack as a leiningen project, we can build a "bare" clojure script in t... 阅读全文
posted @ 2014-03-19 21:57 leechau 阅读(262) 评论(0) 推荐(0)
摘要: $ cd ~/docs/propuppetex/chapter3$ cat VagrantfileVagrant.configure(VAGRANTFILE_API_VERSION) do |config|config.vm.box = "centos64"config.vm.define "ppt" do |ppt|ppt.vm.hostname = "puppet.boco.com.cn"pp... 阅读全文
posted @ 2014-03-19 09:40 leechau 阅读(261) 评论(0) 推荐(0)
摘要: M-x browse-url-w3 阅读全文
posted @ 2014-03-19 08:42 leechau 阅读(195) 评论(0) 推荐(0)

2014年3月18日

摘要: VirtualBox version: VirtualBox-4.2.18-88780-Linux_x86.runHost OS: Linux Mint 14 XfceSetup NetworkAdd a virtual network in host: VirtualBox -> File -> Preferences -> NetworkCreate a VM with the first N... 阅读全文
posted @ 2014-03-18 08:16 leechau 阅读(203) 评论(0) 推荐(0)
摘要: The following scripts run in ipython demonstrate the differences between instance method and static method.Generally OOP make things complicated for imperative style applications.So when developing th... 阅读全文
posted @ 2014-03-18 08:16 leechau 阅读(283) 评论(0) 推荐(0)
摘要: 方法1:安装Ubuntu Server版,好处是默认不安装GUI,且可以自动安装ssh服务和其他很多服务,且消耗系统资源少(约200MB内存,Desktop版启动后需要500MB左右内存),启动和关闭速度快(关机:shutdown -P now);方法2:安装Ubuntu Desktop版,出现用户登录界面时按Ctrl+Alt+F1键进入命令行界面,F1~F6对应tty1~tty6,按Alt+F1... 阅读全文
posted @ 2014-03-18 08:16 leechau 阅读(980) 评论(0) 推荐(0)
摘要: 首先是用python自己的api: shutil.copytree('./build/tested/doc', './build/tested/build/doc')优点是改变平台时不需要修改代码,缺点是doc文件夹下所有的东西都会被拷贝,包括隐藏目录; 其次是使用windows的api: result = subprocess.call(['xcopy', '.\build\tested\doc... 阅读全文
posted @ 2014-03-18 08:16 leechau 阅读(201) 评论(0) 推荐(0)
摘要: AllDup的Portable版:AllDupPortable.zip,今天用它查找重复的电子书,效果良好。基本使用方法是:在"Source Folder"里选择要查找重复文件的文件夹,例如e:\mydoc\books,然后在"Search Criteria"里设置好判定为相同文件的条件,一般选择文件名和大小相同,然后点"Start Search"按钮就开始查找了。此类软件介绍见http://ww... 阅读全文
posted @ 2014-03-18 08:16 leechau 阅读(422) 评论(0) 推荐(0)
摘要: 我们需要将文字保存在磁盘上,但磁盘上只能存储0和1(实际上是存储介质的两种状态),不能存储文字,这就出现了一个问题,如何将文字转换为二进制数字串?文件的编码/解码就是解决文字二进制串这一环节如何相互转换的问题。简单地说,GBK和Unicode分别是一种码表,也就是为每一个字符指定一个两个字节组成的代码,例如 “汉”字的Unicode编码为0x6C49,GBK编码为0xBABA(0x是一个字头,表示... 阅读全文
posted @ 2014-03-18 08:15 leechau 阅读(221) 评论(0) 推荐(0)
摘要: 下面的程序演示了一个对象被两个线程访问的方法,"monitor.gotMessage();"这一句虽然是monitor对象的方法,但却是运行在"MyObject"的线程里,而不是"monitor"线程里。 BusyWaiting.java:public class BusyWaiting { public static void main(String[] args) { Monitor... 阅读全文
posted @ 2014-03-18 08:15 leechau 阅读(266) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 ··· 17 下一页

导航