E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
Definitive
[前端技术]如何加深对JavaScipt中的Math.ceil() 、Math.floor() 、Math.round() 三个函数的理解
首先还是看看《The
Definitive
Guide, 4th Edition》书中对三个函数的的定义。
·
2015-11-02 12:26
round
关于Javascript的内存泄漏问题的整理稿
我记得原来在犀牛书《JavaScript: The
Definitive
Guide》中看到过,IE使用的GC算法是计数器,因此只碰到循环 引用就会造成memory leakage。
·
2015-11-01 09:08
JavaScript
:Hadoop权威指南学习笔记
转自:http://pieux.github.io/blog/2013-05-08-learn-hadoop-the-
definitive
-guide.html 1 前言 Hadoop的内部工作机制
·
2015-11-01 08:54
hadoop
JavaScript 资源列表 转自:http://www.cnblogs.com/anderslly/archive/2008/06/19/javascript-resources.html
2、 《 JavaScript: The
Definitive
Guide (5th Edition)》 非常权威, Douglas Crockford
·
2015-10-31 18:38
JavaScript
JS: The
Definitive
Guide 笔记 - Array
创建数组方法:字面量表示法,Array构造函数 字面量表示法: var a = []; //创建一个空数组 var a = [, , ,]; //创建一个有3个元素的数组,这3个元素的值为undefined。(最后的,会被忽略) 使用Array构造函数 var a = new Array(); //创建一个空数组,等同于[] var a = new Arr
·
2015-10-31 14:10
array
JS: The
Definitive
Guide 笔记 - Object
JavaScript里最基本的数据类型是对象。 JavaScript里的对象其实是一个无序的属性集合,属性又是一个个的名-值对。 除了字符串,数字,true,false,null或者undefined以外,其他所有的值在JavaScript里头都是对象。 对象是引用类型,如果变量x表示一个对象,当执行var y = x;语句后,实际上y和x指向的是同
·
2015-10-31 14:09
object
Definitive
Guide练习
1. 把对象作为参数传入function var a = [1,2,3,4]; var b = []; function arraycopy(/* array */ from, /* index */ from_start, /* array */ to, /* index */ to_start, /* integer */ length) { var j
·
2015-10-31 14:08
init
转 再谈Http协议中消息的编码
今天又看到了HTTP: The
Definitive
Guide这本电子书,终于彻底明白了怎么回事。
·
2015-10-31 12:29
http协议
[Ebook]The
Definitive
Guide to SQLite
Book Description The
Definitive
Guide to SQLite is the perfect book about SQLite.
·
2015-10-31 12:39
sqlite
MongoDB的Journaling的工作原理(每日一译)
was originally posted to Kristina Chodorow’s blog, Snail in a Turtleneck 我参与编写了The
Definitive
·
2015-10-31 11:51
mongodb
Hadoop学习笔记(一)之示例程序:计算每年的最高温度MaxTemperature
本《hadoop学习笔记》系列是在《hadoop: the
definitive
guide 3th》的基础上通过网上额外搜集资料和查看hadoop的API再加上自己的实践方面的理解编写而成的,主要针对
·
2015-10-31 11:03
hadoop
JavaScript.The.
Definitive
.Guide—Core Javascript-basic Data Types
Table 3-1. Special numeric constants Constant Meaning Infinity Special value to represent infinity NaN Special not-a-number value Number.MAX_VALUE Largest representab
·
2015-10-31 11:32
JavaScript
Javscript the
definitive
guide 6th edition 阅读随记
6.2.1 Objects As Associative Arrays When you use the . operator to access a property of an object, however, the name of the property is expressed as an identifier. Identifiers must be typed litera
·
2015-10-31 10:09
script
译:DOM2中的高级事件处理
DOM2中的高级事件处理(Advanced Event Handling with DOM Level 2) 译自:JavaScript: The
Definitive
·
2015-10-31 10:03
dom
Hadoop基准测试
《hadoop the
definitive
way》(third version)中的Benchmarking a Hadoop Cluster Test Cases的class在新的版本中已不再试hadoop
·
2015-10-31 09:48
hadoop
微软的PDC2009开完了,上去淘Video喽,有不少好东西
"The Professional Developers Conference (PDC) is the
definitive
developer event focused on the technical
·
2015-10-31 09:40
video
Pig安装与配置教程
来自原小站,技术含量≈0,翻译整理自Hadoop-The
Definitive
Guide。
·
2015-10-31 09:57
pig
JavaScript面向对象的一个例子
(摘自JavaScript
Definitive
Guide) var bounce = {
·
2015-10-31 09:19
JavaScript
javascript---closure
In javascript the
definitive
Guide 5th edition: the defining of closure:JavaScript functions are combination
·
2015-10-31 08:02
JavaScript
Hadoop学习笔记(八):如何使用Maven构建《hadoop权威指南3》随书的源码包
《hadoop:the
definitive
guide 3th》中的例子默认提供了一种编译和构建jar包方法——maven,如果没有maven你会发现编译测试随书的源码会非常的麻烦(至少在命令行下
·
2015-10-31 08:03
hadoop
Hadoop学习笔记(一)之示例程序:计算每年的最高温度MaxTemperature
本《hadoop学习笔记》系列是在《hadoop: the
definitive
guide 3th》的基础上通过网上额外搜集资料和查看hadoop的API再加上自己的实践方面的理解编写而成的,主要针对
·
2015-10-31 08:02
hadoop
The
Definitive
C++ Book Guide and List--reference
http://stackoverflow.com/questions/388242/the-
definitive
-c-book-guide-and-list Reference Style - All
·
2015-10-30 14:53
reference
javascript面向对象技术基础(一)
中的对象还没解释清楚怎么回事,一上来就直奔主题,类/继承/原型/私有变量....结果呢,看了大半天,有了一个大概的了解,细细一回味,好像什么都没懂...这篇文章是参考<<javascript-the
definitive
·
2015-10-30 13:16
JavaScript
MongoDB的内部构造 From 《MongoDB The
Definitive
Guide》
今天下载了《MongoDB The
Definitive
Guide》电子版,浏览了里面的内容,还是挺丰富的。是官网文档实际应用方面的一个补充。
·
2015-10-30 12:39
mongodb
Hadoop权威指南(中文版)
Hadoop权威指南(中文版) 基本信息 原书名: Hadoop: The
Definitive
Guide 原出版社: O'Reilly Media 作者: (美) Tom White
·
2015-10-30 11:30
hadoop
The
Definitive
C++ Book Guide and List
C++学习进阶书单转自:http://stackoverflow.com/questions/388242/the-
definitive
-c-book-guide-and-listBeginnerIntroductory
lucky_greenegg
·
2015-10-28 20:00
C++
电子书下载:Beginning JavaScript, 4th Edition
new details for using the latest tools and techniques available with JavaScript JavaScript is the
definitive
·
2015-10-28 08:31
JavaScript
ANTLR3完全参考指南读书笔记[01]
The
Definitive
ANTLR Reference, Building Domain Specific Languages(antlr3 version).
·
2015-10-27 14:17
antlr
《高性能网站建设指南》笔记
//www.w3.org/Protocols/rfc2616/rfc2616.html 对HTTP协议的学习,推荐看David Gourley、Brian Totty编著的《HTTP: The
Definitive
·
2015-10-27 14:10
网站建设
Pig安装与配置教程
来自原小站,技术含量≈0,翻译整理自Hadoop-The
Definitive
Guide。
·
2015-10-27 14:40
pig
Introduction to Windows 8: The
Definitive
Guide for Developer
《Windows 8应用开发权威指南》介绍 Introduction to Windows 8: The
Definitive
Guide for Developer 一、封面设计要求及文字 
·
2015-10-27 12:42
developer
[译]C++书籍终极推荐
来源:http://stackoverflow.com/questions/388242/the-
definitive
-c-book-guide-and-list英文水平有限,加上在stackoverflow
Google 手机开发
·
2015-10-25 20:00
【Pro ASP.NET MVC 3 Framework】.学习笔记.11.ASP.NET MVC3的细节:概览MVC项目
书Adam The
Definitive
Guide to HTML5 Adam Applied ASP.NET 4 in Context and Pro ASP.NET 4 到此为止
·
2015-10-23 09:30
framework
HTTP详解
nbsp; http://www.w3.org/Protocols/ https://www.safaribooksonline.com/library/view/http-the-
definitive
·
2015-10-23 08:52
http
经典Hadoop书籍介绍
1.Hadoop: The
Definitive
Guide(Hadoop权威指南) 这本书很全,Hadoop中的圣经级教材,不过看起来挺累。
·
2015-10-22 21:31
hadoop
《Hadoop权威指南》(Hadoop:The
Definitive
Guide) 气象数据集下载脚本
从网上找到一个脚本,修改了一下 #!/bin/bash CURRENT_DIR=$(cd `dirname $0`; pwd) [ -e $CURRENT_DIR/ncdc ] || mkdir $CURRENT_DIR/ncdc [ -e $CURRENT_DIR/ncdc/files ] || mkdir $CURRENT_DIR/ncdc/files for i in
·
2015-10-21 12:44
hadoop
MongoDB 查找数据基础
查看可用数据库和集合show dbs show collections插入数据insert操作两种定义文档的格式:document = ( { "Type" : "Book", "Title" : "
Definitive
raygtr
·
2015-10-08 16:02
mongodb
查询
MongoDB 查找数据基础
查看可用数据库和集合show dbs show collections插入数据insert操作两种定义文档的格式:document = ( { "Type" : "Book", "Title" : "
Definitive
raygtr
·
2015-10-08 16:02
mongoDB
查询
MongoDB
C++11
http://stackoverflow.com/questions/388242/the-
definitive
-c-book-guide-and-listhttp://www.open-std.org
lilei9110
·
2015-09-15 11:00
1. Maven - 开始
☞相关明细操作系统:win7参考书籍:《maven-
definitive
-guide_zh》(Maven权威指南)maven版本:3.3.3☞下载和安装下载地址:Maven下载解压缩之后,配置环境变量M2
一尾金鱼
·
2015-08-28 16:00
maven2创建的archetypeArtifactId类型
maven2创建的archetypeArtifactId类型看maven-
definitive
-guide到第五章了,发现maven可以创建不少类型的demo,只要输入:mvnarchetype:create
The NoteBook of EricKong
·
2015-05-15 22:00
Hadoop could not find or load main class
Error: Could not find or load main class <class_name> 我在尝试使用hadoop
definitive
guide的代码做练习时,遇到一个问题
·
2015-04-21 22:00
hadoop
maven权威指南网址+ assembly插件使用方法
maven权威指南网址【中文】: http://book.huihoo.com/maven-the-
definitive
-guide/index.html apache assembly
kobe_hz
·
2015-04-21 15:00
maven
assembly
Elasticsearch之Nested(嵌套)系列
最好的材料还是官网上面的Elasticsearch: The
Definitive
Guide,所以直接将里面涉及到nested的文章找来看了看,顺便把它们翻译了,贴出来和大家分享。
aturbofly
·
2015-04-14 16:27
elasticsearch
nested
嵌套
elasticsearch
Elasticsearch之Nested(嵌套)系列
最好的材料还是官网上面的Elasticsearch: The
Definitive
Guide,所以直接将里面涉及到nested的文章找来看了看,顺便把它们翻译了,贴出来和大家分享。
Allenalex
·
2015-04-14 16:00
elasticsearch
嵌套
nested
Error deploying artifact: Failed to transfer file:XXXXX Return co de is: 401
4518375.html 原文出处: http://cloudera.iteye.com/blog/781160 怎样使用deploy命令部署构件到nexus服务器上可以参考经典的《Maven
Definitive
mywaylife
·
2015-01-06 11:00
deploy
【原】ANTLR4权威参考手册(一)
写在前面的话:此文档是对伟大的Terence Parr的著作《the
definitive
antlr4 reference》的翻译本,致敬!欢迎转载,请注明原地址,请尊重劳动成果。
rmzdb
·
2014-12-17 18:00
antlr
MongoDB索引知识点的整理
链接地址: http://quentinXXZ.iteye.com/blog/2125433 内容主要来自《 MongoDB The
Definitive
Guide 2nd
quentinXXZ
·
2014-10-16 19:00
mongodb
AMD终极揭秘
原文: http://www.sitepen.com/blog/2012/06/25/amd-the-
definitive
-source/作者:KrisZyp译者:ElaineLiu究竟什么是AMD?
xiebaochun
·
2014-08-30 12:00
局部变量
Web应用
amd
javascript引擎
nexus部署第三方构件
转自:http://book.huihoo.com/maven-the-
definitive
-guide/ch16s07s03.html 你的Maven项目可以依赖于一个构件,这个构件不能从中央Maven
coffeehot
·
2014-08-14 20:00
nexus
上一页
1
2
3
4
5
6
7
8
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他