- 浏览: 804654 次
- 性别:
- 来自: 上海
最新评论
-
qdujunjie:
如果把m换成具体的数字,比如4或者5,会让读者更明白
m阶B树中“阶”的含义 -
java-admin:
不错,加油,多写点文章
关于Extjs的mixins和plugin -
xiehuaidong880827:
你好,我用sencha cmd打包完本地工程后,把app.js ...
ExtJS使用Sencha Cmd合并javascript文件为一个文件 -
KIWIFLY:
lwpan 写道inverse = "true&qu ...
Hibernate中什么时候使用inverse=true -
luedipiaofeng:
good
消除IE stop running this script弹出框
文章列表
Git教程
https://www.liaoxuefeng.com/wiki/0013739516305929606dd18361248578c67b8067c8c017b000
git - 简易指南
http://www.bootcss.com/p/git-guide/
手把手教你使用Git
http://blog.jobbole.com/78960/
http://mp.weixin.qq.com/s?__biz=MzA4Nzc4MjI4MQ==&mid=403428818&idx=1&sn=08a505f0204ea2edfb49925903a04a0a#rd
下面是 StuQ 发布的大数据技能图谱,比较实用,供参考
大数据处理框架
Spark
- RDD
- Spark SQL
- Spark Streaming
- MLLib
Hadoop
- HDFS (分布式文件系统)
- Mapreduce(计算框架)
- Yarn(资源管理平台)
- ...
方法1) System.out.println(list);
该方法最终会调用java.util.AbstractCollection<E>.toString()方法,遍历list中的元素
方法2) System.out.println(Arrays.toString(list.toArray()));
方法3)使用org.apache.commons.lang.builder.ToStringBuilder.reflectionToString()
Assists in implementing Object.toString() methods.
This class e ...
请参考链接:
Singleton Design Pattern in Java
http://howtodoinjava.com/design-patterns/creational/singleton-design-pattern-in-java/
1) Recommendation way
public class DemoSingleton implements Serializable {
private static final long serialVersionUID = 1L;
private DemoSingleton() {
// private ...
Deque接口定义了QUEUE(First-In-First-Out)的功能,同时也定义了Stack(Last-In-First-Out)的功能。
java.util.Deque<E>
A linear collection that supports element insertion and removal at both ends. The name deque is short for "double ended queue" and is usually pronounced "deck".
LinkedList实现了Deq ...
Design Pattern
http://www.tutorialspoint.com/design_pattern/design_pattern_overview.htm
原文链接:http://blog.fens.me/nodejs-karma-jasmine/
Nodejs领域: Jasmine做单元测试,Karma自动化完成单元测试,Grunt启动Karma统一项目管理,Yeoman最后封装成一个项目原型模板,npm做nodejs的包依赖管理,bower做javascript的包依赖管理。
Java领域:JUnit做单元测试, Maven自动化单元测试,统一项目管理,构建项目原型模板,包依赖管理。
1. 将prudent设置为true 是为了支持多个JVM往同一个日志文件写日志.
参考http://logback.qos.ch/manual/appenders.html#FileAppender里面的prudent描述
prudent
In prudent mode, FileAppender will safely write to the specified file, even in the presence of other FileAppender instances running in different JVMs, potentially running on d ...
Java NIO vs. IO
http://tutorials.jenkov.com/java-nio/nio-vs-io.html
翻译的中文版
http://ifeve.com/java-nio-vs-io/
NIO与传统IO的区别
http://blog.csdn.net/zhouhl_cn/article/details/6568119
作者:海子
出处:http://www.cnblogs.com/dolphin0520/
Java NIO:浅析I/O模型
也许很多朋友在学习NIO的时候都会感觉有点吃力,对里面的很多概念都感觉不是那么明朗。在进入Java NIO编程之前, ...
操作步骤:在eclipse下的Window--Preference输入spell,然后把第一个复选框“Enable spell checking“给去掉就可以了.
SASS用法指南
http://www.ruanyifeng.com/blog/2012/06/sass.html
http://sass-lang.com/
http://sass-lang.com/documentation/file.SASS_REFERENCE.html
在线转换器
http://www.sassmeister.com/
参考https://docs.angularjs.org/guide/unit-testing
Jasmine
Jasmine is a behavior driven development framework for JavaScript that has become the most popular choice for testing Angular applications. Jasmine provides functions to help with structuring your tests and also making assertions. As your tests ...
最近5年133个Java面试问题列表
http://www.importnew.com/17232.html
J2EE高手眼里的OSGi
原文链接:[url]http://www.searchsoa.com.cn/showcontent_57045.htm[/url]
OSGI(Open Service Gateway Initiative)联盟成立于1999年,它是一个非盈利的国际组织,旨在建立一个开放的服务规范,为通过网络向设备提供服务建立开放的标准,是开放业务网关的发起者。
OSGI联盟的初始目标是构建一个在广域网和局域网或设备上展开业务的基础平台,对OSGI的最早设计也是针对嵌入式应用的,诸如机顶盒、服务网关、手机、汽车等都是其应用的主要环境。
由于OSG ...
Simple explanation
$0 is the name of the command
$1 first parameter
$2 second parameter
$3 third parameter etc. etc
$# total number of parameters
$@ all the parameters will be listed
Passing arguments to a shell script
http://osr600doc.sco.com/en/SHL_automate/_Passing_to_shell_script.html
Any shel ...