自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

水之原

大道至简,上善若水

  • 博客(45)
  • 资源 (482)
  • 收藏
  • 关注

原创 UNIX常用命令

@ Unix/Linux systems are multi-user and multi-taskingl @ Have multiple users on the same systeml @ Run multiple programs, seemingly simultaneouslyl @ Maintain permissions that determine which us

2014-11-09 12:44:24 956

原创 php开源产品

php开源产品:1.企业政府门户:dedecms、phpcms、帝国cms 2.论坛:Discuz3.商城:Ecshop、Shopex、magento4.博客:Wordpress

2014-10-16 15:30:25 763

转载 打造JAVA开发环境——EditPlus篇

《打造JAVA开发环境——EditPlus篇》是 打造全能的文本编辑器序列 的第三篇。介绍了在EditPlus中集成Java编译器、Java运行工具、Ant工具、Tomcat服务器、getter和setter方法生成器“插件”等内容。笔者polaris一直在做JAVA开发,因而,对于个人常用编辑器,都会介绍如何打造jAVA开发环境。如果您是非JAVA程序员,一样能够参照着很方便地配置一个适

2014-02-23 11:32:54 859

原创 纯c实现ArrayList

#include #include #ifndef Class#define Class struct#endifClass ArrayList;typedef Class ArrayList * List;bool ArrayList_isEmpty(List list);int ArrayList_size(List list);void ArrayList_clear

2014-01-28 17:19:57 1138

原创 Tree.coffee

class TreeNode constructor: (@element, @firstChild, @nextSibling)-> class Comparable compareTo : -> class AANode constructor : (@element, @left, @right, @level = 1) ->##

2014-01-07 17:46:31 520

原创 List.coffee

##Interfaceclass Iterator hasNext: -> next : -> remove : -> ##Interface class ListIterator extends Iterator hasPrevious : -> previous: ->

2014-01-04 18:38:45 453

原创 纯c面向对象基础示例

#include #include //接口#ifndef Interface#define Interface struct#endif//类#ifndef Class#define Class struct#endif//抽象形状类Class Shape;typedef Class Shape shape;//抽象形状类的方法声明shape* Shape(in

2013-12-31 15:57:33 490

原创 纯C实现字符串拷贝

#include /*复制字符串*/void cpystr(char * source, char * target){ while(*target++ = *source++);}/*取得字符串的长度*/int strlen(char * str){ int size = 0; while(*str++ != '\0') { size++; } retu

2013-12-30 16:19:37 670

转载 coffeescript 1.6.3

CoffeeScript is a little language that compiles into JavaScript. Underneath that awkward Java-esque patina, JavaScript has always had a gorgeous heart. CoffeeScript is an attempt to expose the good pa

2013-12-29 20:39:32 1308

转载 Less资源汇总

GUI编译工具为方便起见,建议初学者使用GUI编译工具来编译.less文件,以下是一些可选GUI编译工具:koala(Win/Mac/Linux)国人开发的LESSCSS/SASS编译工具。下载地址:http://koala-app.com/index-zh.htmlCodekit(Mac)一款自动编译Less/Sass/Stylus/CoffeeScript/

2013-12-27 00:06:53 946

转载 Less函数说明

索引escape(@string); // 通过 URL-encoding 编码字符串e(@string); // 对字符串转义%(@string, values...); // 格式化字符串unit(@dimension, [@unit: ""]); // 移除或替换属性值的单位color(@string); // 将字符串解析为颜色值data-uri([mimetype,] url);

2013-12-26 23:56:52 896

转载 Less语言特性

作为CSS的一种扩展,LESSCSS不仅向下兼容CSS的语法,而且连新增的特性也是使用CSS的语法。这样的设计使得学习LESS很轻松,而且你可以在任何时候回退到CSS。变量很容易理解:@nice-blue: #5B83AD;@light-blue: @nice-blue + #111; #header { color: @light-blue; }输出:

2013-12-26 23:50:27 601

转载 Less使用说明

使用koala编译Koala 是一款由国人开发的开源预处理语言图形编译工具,目前已支持 Less、Sass、Compass 与CoffeeScript。目前支持以下系统:Windows,Mac, 10.7+,Linux: 32bit / 64bit,Ubuntu: 32bit / 64bit;我们可以从他们官方网站下载 koala:点击进入,使用文档点击进入使用方法

2013-12-26 21:20:07 599

转载 Less简介

什么是LESSCSSLESSCSS是一种动态样式语言,属于CSS预处理语言的一种,它使用类似CSS的语法,为CSS的赋予了动态语言的特性,如变量、继承、运算、函数等,更方便CSS的编写和维护。LESSCSS可以在多种语言、环境中使用,包括浏览器端、桌面客户端、服务端。语言特性快速预览:变量:变量允许我们单独定义一系列通用的样式,然后在需要的时候去调用。所以在

2013-12-26 20:41:55 652

原创 Map.js

(function() { var Map, map; var __hasProp = Object.prototype.hasOwnProperty; Map = function() { this.entry = {}; this.count = 0; return this; }; Map.prototype.size = function() {

2013-12-26 17:49:18 556

原创 map.coffee

class Map constructor : -> @entry = {} @count = 0 size : -> return @count isEmpty : -> return @count == 0 containsKey : (key) ->

2013-12-26 17:42:27 464

转载 计算机科学中最重要的32个算法

原文链接:http://www.infoq.com/cn/news/2012/08/32-most-important-algorithms?utm_source=infoq&utm_medium=popular_links_homepage#anch98872奥地利符号计算研究所(Research Institute for Symbolic Computation,简称RISC

2013-06-26 09:43:23 480

转载 Axure原型设计软件快捷键大全

Axure是产品产品设计工具设计工具,它可以辅助产品经理快速设计完整的产品原型,并结合批注、说明以及流程图、框架图等元素将产品完整地表述给各方面设计人员,如UI、UE等等,并在讨论中不断完善。习惯用Axure快捷键会让你做原型的时候更得心应手。西西总结了常用的一些快捷键分享给大家 。Axure RP Pro 6.5快捷键大全,如有疏漏,欢迎补充。基本快捷键:

2013-06-22 11:38:53 776

转载 stealjs-api

StealJS  page     StealJS is a collection of command line and JavaScript client utilitiesthat make building, packaging, and sharing JavaScript applications easy.FeaturesBehold StealJS's goodies:

2013-06-10 19:04:17 1803

转载 jquery.special.event-api

Special Events  page     SourceJavaScriptMVC provides a bunch of useful special events. Find out moreinfo on the left. The following is a brief summary:DefaultEventsLets you supply default beh

2013-06-10 18:55:14 1793

转载 jquery.lang.helper-api

Language Helpers  page     SourceJavaScriptMVC has several lightweight language helper plugins.ObjectMethods useful for comparing Objects. For example, if two objects are thesame:$.Object.sa

2013-06-10 18:45:54 684

转载 jquery.view-api

jQuery.View  class     plugin: jquery/view download: jQuery.View test: qunit.html SourceView provides a uniform interface for using templates with jQuery. Whentemplate enginesregistert

2013-06-10 18:26:03 1442

转载 jquery.controller-api

jQuery.Controller  class     inherits: jQuery.Classplugin: jquery/controller download: jQuery.Controllertest: qunit.htmlSourcejQuery.Controller helps create organized, memory-leak fr

2013-06-10 18:18:30 1692

转载 jquery.class-api

jQuery.Class  class     plugin: jquery/class download: jQuery.Classtest: qunit.html SourceClass provides simulated inheritance in JavaScript. Use Class to bridgethe gap between jQuery's

2013-06-10 18:05:54 987

转载 jquery.dom.helpers-api

DOM Helpers  page     SourceJavaScriptMVC adds a bunch of useful jQuery extensions for the dom. Checkthem out on the left.DimensionsSet and animate the inner and outer height and width of

2013-06-10 17:59:46 857

转载 javascriptmvc-doc

JavaScriptMVC DocumentationJavaScriptMVC (JMVC) is a MIT licensed,client-side, JavaScript framework that builds maintainable, error-free,lightweight applications as quick as possible. It packs best-

2013-06-10 17:46:15 794

转载 jquery.model.list-api

jQuery.Model.List  class    plugin: jquery/model/list download: jQuery.Model.Listtest: qunit.htmlSourceModel.Lists manage a lists (or arrays) of model instances.Similar to $.Model,they a

2013-06-10 17:42:01 832

转载 jquerymx-model-api

jQuery.Model  class     plugin: jquery/model download: jQuery.Modeltest: qunit.htmlSourceModels super-charge an application's data layer, making iteasy to:Get and modify data from th

2013-06-10 17:37:51 1359

转载 REST

表征状态转移(英文:Representational State Transfer,简称REST)是Roy Fielding博士在2000年他的博士论文中提出来的一种软件架构风格。目前在三种主流的Web服务实现方案中,因为REST模式的Web服务与复杂的SOAP和XML-RPC对比来讲明显的更加简洁,越来越多的web服务开始采用REST风格设计和实现。例如,Amazon.com提供接近RE

2013-06-10 17:08:26 427

转载 没有人能够随随便便成功

一小朋友问一富翁:叔叔你为什么这么有钱?富翁摸摸小朋友的头说:小时候,我和你一样穷,什么也没有,爸爸给我一个苹果,我没有吃,而是把这个苹果卖了,用赚到的钱买两个苹果,然后又卖了,再买四个苹果…。小朋友若有所思的说:哦…叔叔,我好像懂了。 富翁说:你懂个屁啊!后来我爸死了,我继承了他的财产……。这笑话告诉我们:不要痴迷于从阅读成功人士的传记中寻找经验,这些书大部分经过了精心的

2013-06-05 20:41:20 664

转载 WebSphere 中池资源调优 - 线程池、连接池和 ORB

IBM WebSphere Application Server (以下简称 WAS)能支持的应用程序越来越多,而这些应用程序有各自的独特特性、需求和服务。正如任何两个应用程序都不会采用完全相同的方式来使用应用服务器一样, 我们也无法通过一组调优参数来为任意两种不同的应用程序提供最佳性能。本篇文章将重点放在 WebSphere 服务器中各种池资源的调优上,重点向读者介绍线程池、连接池和 ORB 的

2013-05-26 10:41:21 1885 1

转载 Enterprise Architect 7.0入门教程

Enterprise Architect 7.0入门教程生命周期软件设计方案——Enterprise Architect是以目标为导向的软件系统。它覆盖了系统开发的整个周期,除了开发类模型之外,还包括事务进程分析,使用案例需求,动态模型,组件和布局,系统管理,非功能需求,用户界面设计,测试和维护等。 为整个团队提供高级的UML 2.0建模工具。EA为用户提供一个高性能、直观的工

2013-05-21 15:52:41 959

转载 spket,ExtJS4.0.2配置

篇一:转自:http://jingyemingyue.iteye.com/blog/1037605第一步,安装spket最新版spket-1.6.18   spket下载地址:http://www.agpad.com/downloads/spket-1.6.18.zip,myeclipse插件在线安装地址:http://www.spket.com/update,安装好之后,

2013-04-19 23:08:16 617

转载 XML-RPC 的 Apache 实现

简介: 在新技术、新概念甚至新思维层见叠出的 IT 行业 , XML-RPC 绝对不是最新的热门技术,但它自从诞生时起,一直在 IT 行业占有一席之地。XML-RPC 具有简单、高效且易于实现等优点,它一直是中小型应用实现分布式计算的最佳选择之一。本文将会首先介绍一下 XML-RPC 协议规范,然后介绍如何实现 Apache XML-RPC 开发客户端及服务端 Java 代码。最后对 Apac

2013-04-13 01:34:13 1154

转载 Java常见分布式协议比较-RPC

Java的远程调用有多种分布式协议可供使用,但其种类繁多,容易让人困扰。本系列博客分别对它们做入门介绍:RMI: 含JBoss-Remoting,Spring RemotingRPC: 含XML-RPC, Binary-RPC CORBA: SOAP: (Web Service) EJB JMS RPC, 远程过程调用, 也叫远程函数调用, 最早出现在Sun公司和HP公司的运行

2013-04-13 01:22:44 3143

原创 javascript mvc入门基础2--类的继承

上一篇中我们提到了创建一个类的方法 ,在这篇中我们来学习一下面向对象编程的三大特征之一:继承。当一个类被扩展后,子类就拥有了父类的所有静态属性和实例属性,如果你重写一个方法时,想调用父类同名的方法的话,可以用this._super,如下例:上一篇中我们定义了一个基本的类:$.Class('Monster',/* @static */{ count : 0},/* @pro

2013-03-27 18:54:09 645

原创 javascript mvc入门基础1--基本类的使用

首先去下载jquerymx.custom.js, 我的资源里有提供下载http://download.csdn.net/download/zfc2201/5131469。$.Class类提供了一个模拟类继承的方式,它弥补了jquery函数式编程和面向对象编程的不足,它根据jquery之父(John Resig)的一篇博文改编而来(http://ejohn.org/blog/simple

2013-03-27 15:54:35 647

转载 Get started with jQueryMx

Class          JMVC's Controller and Model inherit from its Class helper - $.Class. To create a class, call $.Class(NAME, [classProperties, ] instanceProperties]).$.Class("Animal",{ breathe

2013-03-06 23:48:20 1064

原创 coffee-script之面向对象初体验

在没有使用coffee-script之前,我们写类是这样写的://-------------抽象类形状--------------function Shape(edges) { this.edges = edges;}Shape.prototype.getArea = function() { return -1;}Shape.prototype.getEdges = fun

2013-01-29 15:11:29 482

转载 how to use coffee-script

TABLE OF CONTENTSTRY COFFEESCRIPTANNOTATED SOURCECoffeeScript is a little language that compiles into JavaScript. Underneath all those awkward braces and semicolons, JavaScript h

2013-01-29 00:56:47 4312 1

史上最全的架构师图谱打包文件.zip

史上最全的架构师图谱打包文件.zip

2017-08-22

PLSQL Develper 12 x64 绿色免注册版

PL/SQLDeveloper是一种集成的开发环境,专门用于开发、测试、调试和优化OraclePL/SQL存储程序单元,比如触发器等。PL/SQLDeveloper功能十分全面,大大缩短了程序员的开发周期。强大的PL/SQL编辑器,完善的Debugger调试器(需要Oracle7.3.4或以上版本)询问创建\SQL视窗\命令视窗\报告视窗\项目\浏览器\过程优化\HTML手册\Non­PL/SQL目标\模板目录\比较用户目标\输出用户目标\工具\lug­In扩展\Multi­threadedIDE\简单的安装 第一次打开的时候是英文的,可以通过下面的菜单为变为中文: tools——preferences——appearance——language 选择简体中文即可。

2017-05-13

Maven3实战笔记

Maven3实战笔记

2017-04-24

Cygwin version 2.5.2

window下模拟linux系统,版本2.5.2,带vi组件

2016-07-07

Subversive-3.0.4

Subversive-3.0.4.I20160131-1700

2016-05-23

subversive4.0

svn for eclipse plugins

2016-05-23

microsoft project 2007教程(中文版)

microsoft project 2007教程(中文版)

2015-04-22

PMBOK学习总结.docx

PMBOK学习总结.docx

2015-03-08

PMP十大知识领域和47个过程组PNG

PMP十大知识领域和47个过程组PNG

2015-02-08

问道兴业-2015年PMP考前基础培训__印刷版pdf

问道兴业-2015年PMP考前基础培训__印刷版pdf

2015-02-08

Instant Client-v11.2.0.3.0-x86.rar

Instant Client-v11.2.0.3.0-x86.rar

2014-07-05

VNC企业版-v4.6.rar

VNC企业版-v4.6.rar

2014-06-25

putty0.62.zip

putty.zip

2014-06-25

vnc viewer 4.2.6

vnc viewer 4.2.6

2014-06-25

Linux常用命令全集.rar

Linux常用命令全集.rar

2014-06-21

lightprofiler_0_8_00.zip

lightprofiler_0_8_00.zip

2014-06-13

jamon-sample.zip

jamon-sample.zip

2014-06-12

jetm-samples-1.2.3.gz

jetm-samples-1.2.3.gz

2014-06-11

jetm-1.2.3.tar.gz

jetm-1.2.3.tar.gz

2014-06-11

Oracle_11gR2_concepts.zip

Oracle_11gR2_concepts.zip

2014-06-07

Oracle.Database.9i.10g.11g.编程艺术深入数据库体系结构.zip

Oracle.Database.9i.10g.11g.编程艺术深入数据库体系结构.zip Oracle.Database.9i.10g.11g.编程艺术深入数据库体系结构.zip Oracle.Database.9i.10g.11g.编程艺术深入数据库体系结构.zip

2014-06-06

LABjs-2.0.3

LABjs-2.0.3

2014-06-01

backbone1.1.2.zip

backbone1.1.2.zip

2014-06-01

underscore-1.6.0.zip

underscore-1.6.0.zip

2014-06-01

JSEclipse1.5.5.rar

JSEclipse1.5.5.rar

2014-05-31

PHP4&PHP5 API文档

PHP4&PHP5 API文档

2014-03-24

PHP55.5.10帮助文档

PHP55.5.10帮助文档

2014-03-24

WPS2012.19.112.zip

WPS2012.19.112.zip

2014-03-09

dynatrace3.1.0.763

dynatrace3.1.0.763

2014-02-28

javascriptmvc-3.3.zip

javascriptmvc-3.3.zip

2014-02-21

mingw-get-setup.zip

mingw-get-setup.zip

2014-01-19

chrome 31稳定版

chrome 31稳定版

2014-01-19

ckeditor_4.3.1_full.zip

ckeditor_4.3.1_full.zip

2014-01-19

spring3.0.pdf

spring3.0.pdf

2014-01-14

mysql5.1manual.zip

mysql5.1manual.zip

2014-01-14

jdk6.0.chm

jdk6.0.chm

2014-01-14

Ruby语言入门教程v1.0.rar

Ruby语言入门教程v1.0.rar

2013-12-29

ruby186-26.rar

ruby186-26.rar

2013-12-29

koala_2.0.0_setup.rar

koala_2.0.0_setup.rar

2013-12-26

less1.5.rar

LESSCSS是一种动态样式语言,属于CSS预处理语言的一种。

2013-12-26

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除