06 2011 档案
摘要:from:http://www.ruanyifeng.com/blog/2011/06/designing_ideas_of_inheritance_mechanism_in_javascript.html作者:阮一峰日期:2011年6月 5日我一直很难理解Javascript语言的继承机制。它没有"子类"和"父类"的概念,也没有"类"(class)和"实例"(instance)的区分,全靠一种很奇特的"原型链"(prototype chain)模式,来实现继承。我花了很多时间,学习这个部分,还
阅读全文
摘要:http://www.aqee.net/2010/10/20/5-fundamental-differences-between-git-svn/如果你在读这篇文章,说明你跟大多数开发者一样对GIT感兴趣,如果你还没有机会来试一试GIT,我想现在你就要了解它了。GIT不仅仅是个版本控制系统,它也是个内容管理系统(CMS),工作管理系统等。如果你是一个具有使用SVN背景的人,你需要做一定的思想转换,来适应GIT提供的一些概念和特征。所以,这篇文章的主要目的就是通过介绍GIT能做什么、它和SVN在深层次上究竟有什么不同来帮助你认识它。那好,这就开始吧…GIT是分布式的,SVN不是:这是GIT和其它
阅读全文
摘要: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
阅读全文
摘要: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
阅读全文
摘要: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
阅读全文
摘要: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
阅读全文
摘要: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)
阅读全文
摘要:===============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
阅读全文
摘要:#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 <
阅读全文
摘要:GCC stands for "GNU Compiler Collection", support C,C++,Objective-C,Objective-C++,Java,Fortran, and Ada.Languages Standards Supported by GCC1.C language: a.C89(or ocasionally as C90),To select this standard in GCC,use one of the options '-ansi','-std=c90',or '-std=iso98
阅读全文
摘要:http://files.cnblogs.com/wucg/clipx-windows-%E5%89%AA%E5%88%87%E6%9D%BF%E5%B7%A5%E5%85%B7.zipclipx-windows 剪切板工具
阅读全文
摘要:PureMVC download:http://trac.puremvc.org/PureMVC_AS3/wiki/DownloadsPureMVC Standard for AS3http://trac.puremvc.org/PureMVC_AS3Demo_AS3_Flex_AppSkeletonhttp://trac.puremvc.org/Demo_AS3_Flex_AppSkeleton/wiki/Downloads
阅读全文
摘要:from:http://baike.baidu.com/view/52522.htmWPE百科名片WPE(Winsock Packet Editor) 它的中文名称是:网络封包编辑器 在大多数的编程工具中winsock已经封装成一个控件,成为网络编程的控件,是非常方便的,利用这个控件,编程工具就可以编写外挂工具.目录wpe简介wpe版本wpe 文件wpe使用编辑本段wpe简介Wpe工作原理和可行性分析Client/server模式网络游戏,我们的信息全在服务器上面,想从服务器上修改我们的个人用户信息,可能性为微乎其微,客户端安装在你的机器上, 玩游戏的时候,你发出指令,其实就是向服务器发送封包
阅读全文
摘要:from:Flex与ActionScript3.0程序开发<?xml version="1.0" encoding="utf-8"?><mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" minWidth="955" minHeight="600" width="467" height="486"> <mx:t
阅读全文
摘要:http://mysticnomad.wordpress.com/2008/03/21/difference-between-eventtarget-and-eventcurrenttarget-properties-in-an-event-object/In Flex, an event object is created whenever an event is dispatched. The event object has two important properties – event.target and event.currentTarget.The event.target p
阅读全文
摘要:http://www.redhat.com/magazine/021jul06/features/apache_axis2/Web services is gaining momentum and many large vendors now offer web services stacks as part of their solution portfolios. The open source world has played a key role in web services by providing some excellent web services stacks that a
阅读全文
摘要:Spring: Data access using JDBCThere are a number of options for selecting an approach to form the basis for your JDBC datababse. There are three flavors of the JdbcTemplate, a new "SimpleJdbc" approach takingadvantage of data metadata.1.JdbcTemplate2.NamedParameterJdbcTemplate wraps a Jdbc
阅读全文
摘要:1.java代码://Foo.javapackage x.y.service;public class Foo { private int id; private String name; public int getId() { return id; } public void setId(int id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; }}//FooService.javapackage x.y.se
阅读全文
摘要:http://geronimo.apache.org/index.htmlThe goal of the Geronimo project is to produce a server runtime framework that pulls together the best Open Source alternatives to create runtimes that meet the needs of developers and system administrators. Our most popular distribution is a fully certified Java
阅读全文
摘要:http://winscp.net/eng/download.phphttp://files.cnblogs.com/wucg/winscp433setup.zip
阅读全文
摘要:http://files.cnblogs.com/wucg/tomcatPluginV33.ziphttp://www.eclipsetotale.com/tomcatPlugin.htmlInstallationThis plugin does not contain Tomcat.(Download and install Tomcat before using this plugin).This is a design choice not to include Tomcat in the plugin distribution, this way the same plugin ver
阅读全文
摘要:-startupplugins/org.eclipse.equinox.launcher_1.1.0.v20100507.jar--launcher.libraryplugins/org.eclipse.equinox.launcher.win32.win32.x86_1.1.0.v20100503-productorg.eclipse.epp.package.jee.product--launcher.defaultActionopenFile--launcher.XXMaxPermSize256M-showsplashorg.eclipse.platform--launcher.XXMax
阅读全文
摘要:queryForObject()queryForList()queryForMap()Mapped statement typesselectinsertupdatedeleteprocedurestatementsqlincludesql:select ... where city like '%$values$%'this form is easy sql injection
阅读全文
摘要:http://sourceforge.net/adobe/cairngorm/home/Established by Adobe Technical Services and partners, Cairngorm presents the foundations on how we deliver successful enterprise Flex and AIR projects.The latestCairngorm 3consists of:Guidelinesthat describe client-side architecture, automated testing and
阅读全文
摘要:<?xml version="1.0" encoding="utf-8"?><mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" minWidth="955" minHeight="600"> <mx:Script> <![CDATA[ import mx.collections.ArrayCollection; [Bindable] p
阅读全文
摘要:SELECT DATEPART( DAY, DATEADD(DAY,-1, DATEADD(MONTH,1, DATEADD(DAY, -DATEPART(DAY,GETDATE())+1,GETDATE()) --该月第一天) --增加一个月) --减去一天)
阅读全文
摘要:1.maven建立一个web app2.D:\Tomcat6_0\conf\tomcat-users.xml 查看users.<tomcat-users> <role rolename="manager"/> <role rolename="admin"/> <user username="admin" password="123" roles="admin,manager"/></tomcat-users>3.settings.xml
阅读全文
摘要:http://www.oracle.com/technetwork/database/express-edition/downloads/102xewinsoft-090667.html
阅读全文
摘要:#include <iostream>#include <iomanip>#include <cstdlib>using namespace std;void bubbleSort(int [],const int, bool(*)(int,int));void swap(int * const,int * const);bool ascending(int ,int);bool descending(int,int);void print_arr(int [],int);int main(){ int arr[]={3,42,1,100,689,2,24,
阅读全文
摘要:环境:windows Server2003, Eclipse helios, MS SqlServer 2008step 1: SQL:Create table Person(id_1 bigint identity primary key,firstName_1 varchar(20),lastName_1 varchar(20),weightInKilograms_1 decimal,heightInMeters_1 decimal)step 2: dbConfig.xml<?xml version="1.0" encoding="UTF-8"
阅读全文
摘要:http://search.maven.orghttp://repository.apache.orghttp://www.artifact-repository.orghttp://mvnrepository.comhttp://www.mvnbrowser.comhttp://www.jarvana.comhttp://mavensearch.netpom.xml示例:<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema
阅读全文
摘要:http://www.adobe.com/devnet/flex/documentation.htmlhttp://www.adobe.com/support/documentation/en/flex/flex3.html
阅读全文
摘要:Eclipse插件:http://marketplace.eclipse.org/Maven2Eclipse插件安装与使用http://www.sonatype.com/books/m2eclipse-book/reference/Maven2Eclipse安装:http://www.sonatype.com/books/m2eclipse-book/reference/install-sect-marketplace.htmlhttp://www.cnblogs.com/dcba1112/archive/2011/05/01/2033805.html现在我以Eclipse 3.6为例逐步讲解
阅读全文
摘要:Service1.asmx.csusing System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.Services;namespace TestWebServiceForFlex{ /// <summary> /// Service1 的摘要说明 /// </summary> [WebService(Namespace = "http://tempuri.org/")] [WebServiceBinding(Conform
阅读全文
摘要:http://wenku.baidu.com/view/217ff860caaedd3383c4d3f9.htmliisexpress /path:<网站目录> /port:<端口> /clr:<CLR版本,V2.0|V4.0>IISExpress会复制一份配置文件到临时目录...
阅读全文
摘要:from:http://bbs.airia.cn/forum-viewthread-tid-44906-highlight.html当Array的数据发生变化的时候,用它作为数据源的控件不能感知这种变化。例如:myArray.push(“new value”); 这时,如果一个List用它作为dataProvider,List的列表中不会增加新加入的这个值。而当ArrayCollection的数据发生变化的时候,能够通知控件发生变化。例如:myArrayCollection.addItem(“new item”); 这时,如果一个控件List用它作为dataProvider,List列表中会增
阅读全文
该文被密码保护。