上一页 1 2 3 4 5 6 ··· 10 下一页
  2013年5月21日
摘要: http://www.math.umn.edu/systems_guide/putty_xwin32.htmlX Forwarding with Putty on WindowsIntro to X ForwardingUnix machines have been able to run software on a remote machine and display the GUI locally for almost two decades. Linux and Mac OS X support X Forwarding with no extra software. Any termi 阅读全文
posted @ 2013-05-21 16:15 RocZhang 阅读(277) 评论(0) 推荐(0) 编辑
  2013年5月14日
摘要: http://stackoverflow.com/questions/263965/how-can-i-convert-a-string-to-boolean-in-javascriptThe first answer from the answer list:You should probably be cautious about using these two methods for your specific needs:var myBool =Boolean("false");// == truevar myBool =!!"false";// 阅读全文
posted @ 2013-05-14 10:19 RocZhang 阅读(2438) 评论(0) 推荐(0) 编辑
  2013年4月1日
摘要: Js 语言可以在自己的应用了里面修改标准库,或者第三方库里面的函数。在开发web前端的时候,发现IE8 不支持 String.trim() 函数而这个函数被其他浏览器Chrome,Firefox,甚至IE9都支持。 并且在我们的代码里面大量应用,这时候怎么改?方法有很多种,自己实现一个trim方法,或者用jquery 的 $.trim(), 但是这些方法都一个问题,需要在我们代码里面用到的地方,一次修改。 工作量大,而且风险大。 有没有其他方法? 居然发现可以直接修改string类的定义:if(typeof String.prototype.trim !== 'function' 阅读全文
posted @ 2013-04-01 11:44 RocZhang 阅读(217) 评论(0) 推荐(0) 编辑
  2013年2月19日
摘要: 来自 Ruanyifeng ,简单易懂.http://www.ruanyifeng.com/blog/2011/08/a_detailed_explanation_of_jquery_deferred_object.html?20130219111528#comment-last两位一篇是介绍 Deferred 实现.http://www.cnblogs.com/nothingbrother/archive/2011/11/30/2269702.html来自官方文档:http://api.jquery.com/category/deferred-object/ 阅读全文
posted @ 2013-02-19 11:28 RocZhang 阅读(139) 评论(0) 推荐(0) 编辑
  2013年1月31日
摘要: http://www.subcide.com/articles/creating-a-css-layout-from-scratch 阅读全文
posted @ 2013-01-31 17:16 RocZhang 阅读(112) 评论(0) 推荐(0) 编辑
  2013年1月27日
摘要: 最近切换到java, IDE 很是不熟悉,当然也就不习惯,花点时间学习学习.学习之前,仔细想一下IDE的功能,都应该包含哪些功能:1. 代码编辑2. 集成编译3. 调试环境的集成4. 项目组织集成其他会有一些插件(代码管理工具, terminal,code review),其实自己主要用的IDE为非就是这四部分.学习之前,按照规则1. 找可靠资料--> 官方,第一手资料--> eclipse 官方网站( 果然不错) 找到http://www.vogella.com/articles/Eclipse/article.html2. 方法. 问题驱动 上面四个模块,基本上就是入手. 类比 阅读全文
posted @ 2013-01-27 20:11 RocZhang 阅读(195) 评论(0) 推荐(0) 编辑
  2012年12月4日
摘要: The distribute system is more complex and there are some practice will help us improve the communication efficiency and reduce risk in development cycle.Standard environmentStandard environment includes hardware and software environment. The software environment are the third party library, which ou 阅读全文
posted @ 2012-12-04 13:10 RocZhang 阅读(192) 评论(0) 推荐(0) 编辑
  2012年10月29日
摘要: Http protocol (RFC2616) defines the two verbs: get / put. It seems a little confusion that both of them send data to server. What's the different?The RFC itself explains the difference:The fundamental difference between the POST and PUT requests is reflected in the different meaning of the Reque 阅读全文
posted @ 2012-10-29 17:46 RocZhang 阅读(350) 评论(0) 推荐(0) 编辑
  2012年10月23日
摘要: http://worrydream.com/#这是Bret Victor 的博客。 一句话介绍,他设计IPad, iPod Nano之一.这是介绍自己的理念学习编程需要一个什么样的好环境:“鼓励思考” 和 “看见并理解程序如何执行”。 原文如下:http://worrydream.com/LearnableProgramming/曾以为自动补全,智能排版就是好的IDE,看过后感觉自己土的掉渣:)有时间看看他的博客! 阅读全文
posted @ 2012-10-23 23:45 RocZhang 阅读(190) 评论(0) 推荐(0) 编辑
  2012年10月13日
摘要: Content1. Discusses the ways people deploy servers in modern web hosting environments, HTTPsupport for virtual web hosting, and how to replicating content across geographically distant servers。 1.1The collective duties of storing, brokering, and administering content resources is called web hosting. 阅读全文
posted @ 2012-10-13 20:11 RocZhang 阅读(171) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 10 下一页