这周好忙,根据之前的写了个简陋的demo,放在腾讯的云主机上了,大家多交流哈
demo地址
http://203.195.193.251/...
分类:
数据库 时间:
2014-08-08 18:18:06
阅读次数:
279
IPython Basics 首先比一般的python shell更方便一些 比如某些数据结构的pretty-printed,比如字典 更方便的,整段代码的copy,执行 并且可以兼容部分system shell , 比如目录浏览,文件操作等 Tab Completion 这个比较方便,可以在下面的...
分类:
编程语言 时间:
2014-08-08 17:42:36
阅读次数:
258
Permission is hereby granted, free of charge, to any person obtaininga copy of this software and associated documentation files (the"Software"), to de...
分类:
Web程序 时间:
2014-08-08 17:28:26
阅读次数:
393
调用代码一: [javascript] view plain copy print ? var?monthField?=?new?Ext.ux.MonthField({????? ????id:‘month‘,????? ????fieldLabel:?‘月份‘,????? ????allowBlank:fals...
分类:
Web程序 时间:
2014-08-08 16:39:16
阅读次数:
556
写博客就是一周工作中遇到哪些问题,一个优点就是能够进行一个总结,另外一个优点就是下次遇到相同的问题即使那你记不住,也能够翻看你的博客攻克了。相同也能够帮到别人遇到与你一样问题的人。或者别人有比你更好的解决的方法,能够一起讨论,分析出更好的解决方法。所以这是个好习惯。既然是好习惯,那就得坚持。可是想写...
分类:
Web程序 时间:
2014-08-08 16:01:06
阅读次数:
258
地址:http://thobian.info/?p=1367 题目可能有点标题党,毕竟下面要说到的只是nginx在比较特殊的环境才回出现的500情况。 先说下自己的开发环境: WEB服务器:nginx,搭在本地虚拟机(虚拟机是直接copy过来的) 开发工具:zend studio(这个其实没什么好说...
分类:
其他好文 时间:
2014-08-08 15:53:16
阅读次数:
1612
Any class that manages a resource (awrapper, like a smart pointer) needs to implementThe Big Three. While the goals and implementation of the copy-con...
分类:
其他好文 时间:
2014-08-08 15:51:06
阅读次数:
262
document.getElementById('eastFrame').setAttribute('src','#'); // this will copy father window to this iframe(function() { Grs = function() { ...
分类:
编程语言 时间:
2014-08-08 12:23:45
阅读次数:
170
A linked list is given such that each node contains an additional random pointer which could point to any node in the list or null.
Return a deep copy of the list.
思路:第一遍正常复制链表,同时用哈希表保存链表中原始节点和新...
分类:
其他好文 时间:
2014-08-07 23:22:45
阅读次数:
280
COW技术初窥: 在Linux程序中,fork()会产生一个和父进程完全相同的子进程,但子进程在此后多会exec系统调用,出于效率考虑,linux中引入了“写时复制“技术,也就是只有进程空间的各段的内容要发生变化时,才会将父进程的内容复制一份给子进程。 那么子进程的物理空间没有代码,怎么去取指令执行...
分类:
系统相关 时间:
2014-08-07 21:46:00
阅读次数:
373