- 博客(83)
- 资源 (33)
- 收藏
- 关注
原创 linux 下安装sqlplus
一直想装个sqlplus在我的ubuntu上,受原来再win下的影响一直以为需要安装oracle客户端,原来不用。 1.首先下载我们需要的东西 instantclient-basic-linux.x64-12.1.0.2.0.zip instantclient-sqlplus-linux.x64-12.1.0.2.0.zip
2015-01-08 19:14:38
3020
原创 Maevn 记录
1.直接发布到tomcatorg.codehaus.mojotomcat-maven-plugin1.1http://172.168.3.126:8088/manager/htmltomcatadmin
2014-11-05 17:19:42
716
转载 java 报表
http://www.codeceo.com/article/8-java-graph.html前段时间我们为大家分享过一些最常用的Java图表应用和Android图表应用,无论是在PC平台上还是移动平台上,图表和报表功能都是不可或缺的。本文推荐了8款最精彩实用的Java图表应用,大部分图表应用的功能都类似,主要在于界面的美观性和使用的灵活性上有一点高低。1、JFree
2014-10-27 09:27:43
882
转载 数字签名是什么?
翻译 :http://www.ruanyifeng.com/blog/2011/08/what_is_a_digital_signature.html 原版:http://www.youdzone.com/signature.html
2014-10-23 17:55:42
610
翻译 storm 基本原理
The past decade has seen a revolution in data processing. MapReduce, Hadoop, and related technologies have made it possible to store and process data at scales previously unthinkable. Unfortunately, t
2014-09-23 18:43:57
603
原创 VM args -Xss160k stack size
package com.dic.stack;/** * VM args -Xss160k * */public class JavaVMStackSOF {private int stackLength = 1;public void stackLeak() {stackLength++;if(stackLength==10800) return;s
2014-09-18 10:33:15
639
原创 java的clone到底说了点什么事情
1创建并返回此对象的一个副本。“副本”的准确含义可能依赖于对象的类。这样做的目的是,对于任何对象 x,表达式:x.clone() != x为 true,表达式:x.clone().getClass() == x.getClass()也为 true,但这些并非必须要满足的要求。一般情况下:x.clone().equals(x)为 t
2014-09-15 17:35:10
437
转载 各种书
白皮书,是由官方制定发布的阐明及执行的规范报告。 蓝皮书,是由第三方完成的综合研究报告。 绿皮书,是关于乐观前景的研究报告。 红皮书,是关于危机警示的研究报告。 另外,一国政府或议会正式发表的重要文件或报告书的封面有它惯用的颜色,白色的叫白皮书(如葡萄牙),蓝色的叫蓝皮书(如英国),红色的叫红皮书(如西班牙),黄色的叫黄皮书(如法国),绿色的叫绿皮书(如意大利),因而白皮书、蓝皮书等往往成为某些国
2014-09-12 15:52:51
416
原创 serialVersionUID 和 Serializable
当对象要持久化到数据库,文件系统,或者网络传输时,说白了 就是流化时 要实现 Serializable接口 这个接口什么都没有,网络传言是个标识。你说为啥要持久化
2014-09-11 18:30:59
573
原创 Python DB sqlite3
SQLite is a C library that provides a lightweight disk-based database that doesn’t require a separate server process and allows accessing the database using a nonstandard variant of the SQL query la
2014-08-20 18:54:27
917
原创 Python IO
Python 读写文件#!/usr/bin/python3# files.py by Bill Weinman [http://bw.org/]# This is an exercise file from Python 3 Essential Training on lynda.com# Copyright 2010 The BearHeart Group, LL
2014-08-20 09:16:19
784
原创 Python Container Tuple and List
1. Tuple>>> x=(1)>>> type(x)>>> x=(1,)>>> type(x)>>> 当数组只有一个元素时你
2014-08-18 12:44:22
478
转载 Python polymorphism
#!/usr/bin/python3# classes.py by Bill Weinman [http://bw.org/]# This is an exercise file from Python 3 Essential Training on lynda.com# Copyright 2010 The BearHeart Group, LLCclass Duck:
2014-08-15 21:34:24
807
原创 Ptyhon Inheritance
#!/usr/bin/python3# classes.py by Bill Weinman [http://bw.org/]# This is an exercise file from Python 3 Essential Training on lynda.com# Copyright 2010 The BearHeart Group, LLCclass Animal:
2014-08-15 21:19:47
607
原创 Python Class Object
#!/usr/bin/python3# classes.py by Bill Weinman [http://bw.org/]# This is an exercise file from Python 3 Essential Training on lynda.com# Copyright 2010 The BearHeart Group, LLCclass Duck:
2014-08-15 20:25:12
638
原创 Python Function Defination
def main(): testfunc(42)def testfunc(number,another=1,more=2): print('This is a test function',number,another,more)if __name__ == "__main__": main()
2014-08-14 19:26:55
757
原创 Python Exception
1#!/usr/bin/python3# exceptions.py by Bill Weinman [http://bw.org/]# This is an exercise file from Python 3 Essential Training on lynda.com# Copyright 2010 The BearHeart Gorup, LLCdef ma
2014-08-13 18:21:58
658
原创 python regular expression basic
#!/usr/bin/python3# regex.py by Bill Weinman [http://bw.org/]# This is an exercise file from Python 3 Essential Training on lynda.com# Copyright 2010 The BearHeart Gorup, LLCimport re
2014-08-12 18:27:54
561
转载 Could not get lock/var/lib/apt/lists错误的处理
Could not get lock/var/lib/apt/lists错误的处理 (2010-04-14 22:03:45)转载▼更换源地址后输入apt-get命令后出现了E:Could not get lock/var/lib/apt/lists/lock -open(...)语句 于是上网查了下网友的处理方法先输入命令 ps -e |grep ap
2014-08-12 09:14:50
730
原创 Python Syntax Operator
>>> 5/3 #1.6666666666666667>>> 5//22>>> 5//31>>> 5 % 41>>> divmod(5,3)(1, 2)>>>
2014-08-11 19:58:34
527
原创 Eclipse 安装 PyDev 插件
eclipse版本Eclipse Standard/SDKVersion: Luna Release (4.4.0)Build id: 20140612-0600系统版本 Ubuntu12.04Eclispe 需要的jdk为
2014-08-07 14:17:55
826
原创 Eclipse Tips
1:在\plugins\org.eclipse.platform_xxxxxxxxx 目录下用想要的图片更换原有的splash.bmp即可2:修改启动参数:eclipse.exe -vmargs -Dosgi.splashLocation=图片路径(如 C:\picture_path\splash.bmp)或在eclipse.ini中加入:-Dosgi.splashLocation=图片路径
2014-08-01 11:07:01
621
原创 Eclipse +Tomcat 远程调试
我的操作系统为 Ubuntu 12.04 jdk1.6 64位 Eclipse版本为Eclipse Java EE IDE for Web Developers. Version: Kepler Service Release 2 Build id: 20140224-0627 Tomcat版本 apache-tomcat-6.0.39 绿色版
2014-07-09 14:23:21
667
原创 my Sed commond linux
./mygrep.sh|xargs sed -i s#http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js#/home/work/Desktop/web_demo/js/jquery/jquery-1.7.js#g
2014-06-26 15:08:49
456
转载 暂且叫提问的艺术吧
经典文章,必看 提问的智慧 Copyright (C) 2001 by Eric S. Raymond 中文版Copyleft 2001 by D.H.Grand(nOBODY/Ginux) 英文版:http://www.tuxedo.org/~esr/faqs/smart-questions.html 感谢Eric的耐心指点和同意,本文才得以完成并发布,本指南
2014-06-26 13:46:25
600
getting_started_with_storm.pdf
2014-09-18
findbugs-3.0.0.tar.gz
2014-08-27
cmake-2.8.12.tar.gz
2014-08-25
head_first_design_patterns.pdf Head First 设计模式(英文原版 非扫描)
2014-07-09
jetty.zip jetty Eclipse插件
2014-07-08
beautiful_architecture.pdf (架构之美英文原版非扫描)
2014-07-07
learning_node.pdf Node学习指南(非扫描)
2014-07-04
50_tips_and_tricks_for_mongodb_developers.pdf
2014-07-03
mongodb_the_definitive_guide_2nd_edition.pdf
2014-06-26
mongodb_in_action.pdf
2014-06-25
high_performance_mysql_3rd_edition.pdf
2014-06-24
JVM 规范(JDK7.0)
2014-06-20
ant_in_action.pdf(ant 实战)second edtion
2014-06-20
linux_pocket_guide_2nd_edition.pdf
2014-06-20
hbase_the_definitive_guide.pdf HBase 权威指南
2014-06-20
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人