- 博客(20)
- 收藏
- 关注
转载 [工具] Sublime Text 2 设置
网址:http://tmtheme-editor.herokuapp.com/#/theme/Monokai
2014-09-06 10:51:20
555
转载 XPath 语法(如何使用dom4j中的selectNodes函数)
http://www.w3school.com.cn/xpath/xpath_syntax.asp
2014-07-10 21:07:45
4494
转载 计算机术语 - Artifact
An artifact is one of many kinds of tangible by-products produced during the development of software. Some artifacts (e.g., use cases, class diagrams, and other Unified Modeling Language (UML) models,
2014-03-29 21:04:52
4877
转载 鼠标右键怎么清除Catalyst Control Center
开始→运行→regedit→找到HKEY_CLASSES_ROOT\Directory\Background\shellex\ContextMenuHandlers\ACE→双击并修改其键值 可以删除 也可以在其前面加“--”[无引号] 此为注释符号 将其数值注释掉了无需重启 直接就能看到 右键菜单里的Catalyst Control Center项已经不在了
2014-03-07 20:46:36
1371
转载 utorrent红种:由于系统缓冲区空间不足或者队列已满...
解决方案:http://support.microsoft.com/kb/Q196271
2014-03-07 15:46:54
1827
转载 Windows下 Apache + PHP 配置
1. 安装Apache服务器(installer版本停止更新): http://mirror.sdunix.com/apache//httpd/binaries/win32/httpd-2.2.25-win32-x86-openssl-0.9.8y.msi2. 安装PHP(installer版本停止更新): http://windows.php.net/downloads/
2014-02-26 22:12:00
602
转载 Cohen's d 效应量计算
Cohen's d is an effect size used to indicate the standardised difference between two means. It can be used, for example, to accompany reporting oft-test andANOVA results. It is also widely u
2014-02-25 15:40:44
27678
1
原创 Eclipse PHP 插件配置
Eclipse PHP插件安装完毕后想要能在Eclipse下正常启动和关闭Apache需做如下配置打开window-> preferences
2014-01-31 14:27:25
606
原创 Eclipse PHP 中 启动apache 出错
Eclipse 安装 PHP插件后,在PHP模式下启动apache时虽然可以正常启动apache但是会报如下错误:
2014-01-31 14:22:15
622
原创 大数据 取样
// 对于大数据,如几个G的csv文件,如何随机抽取一定量的数据(并保持有序)是个复杂的问题// 这段代码并不能做到随机取样,紧紧只是每十个数据取第一个数据而已// 如有更加高效且随机的方法,欢迎留言~import java.io.BufferedReader;import java.io.BufferedWriter;import java.io.FileReader;im
2013-11-17 21:34:50
825
原创 Perl 环境变量设置
以安装Understand为例:若想在cmd中运行任意目录下的perl脚本,需在系统环境变量Path中加入C:\Program Files\SciTools\bin\pc-win64(该目录下含有uperl.exe)
2013-11-12 15:58:32
5354
原创 R语言对矩阵按某一列排序
a <- c(5,4,3,2,1)b <- c(1,2,3,4,5)c c[order(c[,1]),] #按第一列递增排序
2013-11-10 22:52:02
51687
1
转载 overfitting(过拟合)的概念
最近几天在看模式识别方面的资料,多次遇到“overfitting”这个概念,最终觉得以下解释比较容易接受,就拿出来分享下。overfittingt是这样一种现象:一个假设在训练数据上能够获得比其他假设更好的拟合,但是在训练数据外的数据集上却不能很好的拟合数据。此时我们就叫这个假设出现了overfitting的现象。出现这种现象的主要原因是训练数据中存在噪音或者训练数据太少。而解决ove
2013-11-08 10:56:14
1296
原创 Full Flush C语言实现
#include "stdafx.h"#include "stdio.h"#include "stdlib.h"#include "string.h"bool ok(char buf[]) { //判断一个串是不是整数串 if ( strlen(buf) != 14 ) { return false; } int i; for(i=0; buf[i]; i++) { if
2013-11-06 12:20:32
1165
转载 如何让获取当前小时
以前可以用Date d = new Date();System.out.println(d.getHours());现在是Calendar cal = Calendar.getInstance();System.out.println(cal.get(Calendar.HOUR_OF_DAY));
2013-11-04 14:34:55
522
原创 关于java中的clone()函数
在java中,对于数组而言: 1. int[] a = b.clone(); b的修改对a不造成任何影响,反之亦然。 2. int[][] a = b.clone; a为b的引用,无自己的空间。修改任意一方均会对另一方造成影响。
2013-11-04 14:22:03
608
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人