http://learnpythonthehardway.org/book/advice.htmlYou've finished this book and have decided to continue with programming. Maybe it will be a career for you, or maybe it will be a hobby. You'll need some advice to make sure you continue on the right path, and get the most enjoyment out of you Read More
from:http://www.ruanyifeng.com/blog/2011/06/designing_ideas_of_inheritance_mechanism_in_javascript.html作者:阮一峰日期:2011年6月 5日我一直很难理解Javascript语言的继承机制。它没有"子类"和"父类"的概念,也没有"类"(class)和"实例"(instance)的区分,全靠一种很奇特的"原型链"(prototype chain)模式,来实现继承。我花了很多时间,学习这个部分,还 Read More
http://www.aqee.net/2010/10/20/5-fundamental-differences-between-git-svn/如果你在读这篇文章,说明你跟大多数开发者一样对GIT感兴趣,如果你还没有机会来试一试GIT,我想现在你就要了解它了。GIT不仅仅是个版本控制系统,它也是个内容管理系统(CMS),工作管理系统等。如果你是一个具有使用SVN背景的人,你需要做一定的思想转换,来适应GIT提供的一些概念和特征。所以,这篇文章的主要目的就是通过介绍GIT能做什么、它和SVN在深层次上究竟有什么不同来帮助你认识它。那好,这就开始吧…GIT是分布式的,SVN不是:这是GIT和其它 Read More
http://www.worldtimzone.com/res/vi.htmlCursor movementh - move leftj - move downk - move upl - move rightw - jump by start of words (punctuation considered words)W - jump by words (spaces separate words)e - jump to end of words (punctuation considered words)E - jump to end of words (no punctuation)b Read More
TCP/IPIntroduction« PreviousNext Chapter »TCP/IP is the communication protocol for the Internet.Computer Communication ProtocolA computer communication protocol is a description of the rules computers must follow to communicate with each other.What is TCP/IP?TCP/IP is the communication pro Read More
http://www.w3schools.com/xml/xml_namespaces.aspXML Namespaces provide a method to avoid element name conflicts.When using prefixes in XML, a so-callednamespacefor the prefix must be defined.The namespace is defined by thexmlns attributein the start tag of an element.The namespace declaration has the Read More
At w3schools.com you will learn how to make a website. We offer free tutorials in all web development technologies.Select a tutorial from the menu to the left.http://www.w3schools.com/default.asp Read More
http://sourceforge.net/projects/appgen/AppGen eclipse plugin generate full java web application source codes based on Spring and iBatis. You can set the XML configuration mapping file from a database schema quickly by conventions, and can edit it easily. (requires java 1.5 or higher) Read More
===============corelib===============The corelib project consists of several basic utilities for MD5 hashing, JSON serialization, advanced string and date parsing, and more.Project Page: http://code.google.com/p/as3corelib/Project Group: http://groups.google.com/group/as3corelibAuthors: Christian Ca Read More
#include <iostream>#include <bitset>#include <cstdio>#include <cstdlib>#include <ctime>#include <cmath>using namespace std;int main(){ const int len=10000000; //const int len=10000; cout<<"耗内存约:"<< len/8.0 //byte /1024.0 //kb /1024.0 //mb < Read More