- 博客(22)
- 资源 (10)
- 收藏
- 关注
原创 cuda install for caffe at centos 总结
cuda install at centos 全过程。2015年5月15日,亲测通过。yum 安装,包括所有依赖。
2015-05-15 04:49:20
1305
原创 从命令行执行django数据库操作
从命令行执行django数据库操作,报错:django.core.exceptions.ImproperlyConfigured: Requested setting DEFAULT_INDEX_TABLESPACE, but settings are not configured. You must either define the environment variable DJANGO_SETTINGS_MODULE or call settings.configure() before acce
2014-07-05 21:59:23
4817
原创 scrapy递归抓取网页数据
scrapy spider的parse方法可以返回两种值:BaseItem,或者Request。通过Request可以实现递归搜索。如果要抓取的数据在当前页,可以直接解析返回item(代码中带**注释的行直接改为yield item);如果要抓取的数据在当前页指向的页面,则返回Request并指定parse_item作为callback;如果要抓取的数据当前页有一部分,指向的页面有一部分(比如博客或论坛,当前页有标题、摘要和url,详情页面有完整内容)这种情况需要用Request的meta参数把
2014-06-26 14:49:26
6168
原创 easyui datagrid 客户端搜索、分页、排序
easyui datagrid的排序默认是服务器端排序,可以用sorter实现客户端排序[2];客户端分页可用filter实现[3];客户端搜索同样可以用filter实现。
2014-06-26 14:22:56
3279
原创 win8系统WIFI关问题解决
笔记本G480,原装win8。昨晚不小心按错键导致“WIFI关”,找遍全机没有找到无线开关。按Fn+F5切换飞行模式也无济于事。手机上网搜到一堆“xx知道”的不靠谱回答。今早打电话给联想客服才解决如下:鼠标指向右下角,出来菜单选“设置”(齿轮图标),最下方“更改电脑设置”,出来菜单选第9项“无线”,就看到了WIFI的开关。飞行模式的开关放在侧栏,WIFI的不放那太坑爹了
2013-12-05 11:03:56
1209
原创 rpm傻瓜安装hadoop-1.2.1总结,单机+hdfs+mapreduce
rpm安装hadoop-1.2.1总结,单机+hdfs+mapreduce系统:rhel 6.4 64bit, in vmware player最简配置过程
2013-12-02 13:26:38
2226
原创 ubuntu server gnome firefox 中文乱码
ubuntu server 12.04.3 LTS, 后装的 X 和 gnomesudo apt-get install language-pack-zh-hant language-pack-zh-hanssudo vim /etc/environmentadd:LANG="zh_CN.UTF-8"LANGUAGE="zh_CN:zh:en_US:en"
2013-11-04 12:21:57
4813
1
转载 Machine Learning in Gradient Descent
搬运一篇horicky.blogspot.com/2012/10/machine-learning-in-gradient-descent.htmlThursday, October 4, 2012Machine Learning in Gradient DescentIn Machine Learning, gradient descent is a
2013-11-03 23:18:18
1071
原创 Naive Bayes 算法,R 实现,二元正态样本 demo
# naive bayes alogrithm# Xindong Wu, top ten algorithms for data mining, ch9, exercise 1# author: nullspace(jxhchina at gmail.com)# last updated: 10:34 2013/11/2library(MASS)source('readkey.R')
2013-11-02 10:39:19
1243
原创 python 按指定规则批量删除多级目录中的文件
系统 win8,用文件查找功能找 *(1).jpg,找出来的文件有不符合这个规则的,我也不知道为什么找 unixutils 一时没找到好用的只好用 python 写一段#!/usr/bin/env python# -*- coding: UTF-8 -*-import osimport re# search files in path and subpath and de
2013-10-27 17:11:51
808
转载 win8 卸载 office2010
win8 卸载 office2010先 fix ithttp://office.microsoft.com/en-us/support/how-to-uninstall-or-remove-microsoft-office-2010-suites-HA104027750.aspx再卸载
2013-09-26 13:45:35
1440
转载 修改vsftpd的默认根目录
修改vsftpd的默认根目录做实验时有时需要将FTP服务器vsftpd的默认根目录(/var/ftp/pub)修改成指定的其他目录,比如/media/ftp/pub修改vsftpd的配置文件etc/vsftpd/vsftpd.conf,添加下面三行local_root=/media/ftp/pubchroot_local_user=YESanon_root=/var
2013-09-14 17:07:43
5135
转载 Ubuntu下利用vsftpd快速共享资源
Ubuntu下利用vsftpd快速共享资源 Ubuntu下利用vsftpd快速共享资源:Linux是一种开源的而且安全的操作系统,已经深入人心。作为Linux的一种流行发行版本,Ubuntu的使用更为普及。vsftpd作为Linux下一种最为方便的FTP程序,也为人们所推崇。本文讲述的是如何在Ubuntu下利用vsftpd共享资源。 1.安装vsftpd 1.sudo apt-g
2013-09-14 17:06:51
809
原创 Linux 下两步安装 Git Server
感谢原帖第一步: 安装 Git$ sudo apt-get install git-core第二步: 初始化一个 repository$ cd /repo$ git init --bare myprj第三步: 正常使用$ cd somedir$ git clone /repo/myprj或通过ssh(假设服务器上sshd已配好)git clo
2012-04-21 00:53:00
559
原创 Linux 下一步步安装 Git Server (简化版)
感谢原帖Linux 下一步步安装 Git Server总结:nullspace第一步: 安装 GitFedora 下运行:yum install git-coreUbuntu 下运行:apt-get install git-core第二步: 初始化一个 repository服务器上的仓库根目录/repo,不一定在根目录下,只要有权限$
2012-04-21 00:47:33
899
转载 Linux 下一步步安装 Git Server
Linux 下一步步安装 Git Server日期:2012-01-29 来源: aoingl 版 本控制系统经历 CVS , SVN, 现在到了 Git 的世界。 Git 与 CVS, SVN 相比有很多的优势,其中最为人津津乐道的就是 branch 的切换都是在本地执行,速度非常之快,非常利于分布式开发进程。现在也是开源世界了最流行的版本控制系统。比如:F
2012-04-20 23:45:48
647
原创 再试CPP2HTML
/* -*- Mode: C; c-basic-offset:4 ; -*- *//* * (C) 2001 by Argonne National Laboratory. * See COPYRIGHT in top-level directory. *//* This is an interactive version of cpi */#include
2007-03-24 03:28:00
791
1
原创 试试cpp2html
/* -*- Mode: C; c-basic-offset:4 ; -*- *//* * (C) 2001 by Argonne National Laboratory. * See COPYRIGHT in top-level directory. *//* This is an interactive version of cpi */#include "mpi.h"#in
2007-03-24 03:25:00
687
MNIST手写识别数据集
2013-04-17
《模式识别》第四版demo matlab代码
2013-04-17
Ext Core手册.pdf
2011-12-16
杭电ACM课件
2011-12-16
pythonlibs.zip 包含python27_d.dll,python27_d.lib等
2011-06-14
Mathematica 2.0
2010-11-21
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人