- 博客(607)
- 资源 (3)
- 收藏
- 关注
原创 linux curl 上传文件
1. 服务器端程序 up.php<?php$uploaddir = '/home/www/uploads/';$uploadfile = $uploaddir . basename($_FILES['userfile']['name']);echo '';if (move_uploaded_file($_FILES['userfile']['tmp_name'], $uploadfile
2017-05-02 17:03:04
15749
原创 Editplus 替换 jd-gui 反编后JAVA代码中的注解
使用 jd-gui.exe反编class文件后会自动带上[code]/* 78 */[/code]这样的注解,懒得写程序除注解,直接使用editplus文本工具打开所以反编后的java源文件,然后使用正则表达式全局替换[code](\/\* [0-9]* \*\/)[/code]
2016-10-20 20:34:33
2369
原创 docker 报错:x509: certificate has expired or is not yet valid
这种错误,一般都是本地系统时间错误导致报错证书过期,所以先查看本地系统时间date “+%Y-%m-%d” #系统时间2月15日,而正确时间应该是4月17日,所以很大可能就是该原因2015-02-15解决:ntpdate cn.pool.ntp.org #同步一下时间17 Apr 17:40:45 ntpdate[32206]: step time server 202
2015-09-28 15:06:11
17571
1
原创 Tesseract 的OSGI环境下面一直报”java.lang.RuntimeException: Need to install JAI Image I/O package.“的解决办法
有帮助的文章:http://stackoverflow.com/questions/22014969/tess4j-with-spring-mvchttp://stackoverflow.com/questions/22035048/imageio-jar-works-as-standalone-but-not-as-a-web-projecthttp://stackoverflow.com/
2015-05-22 01:19:19
8247
原创 Mac OSX 下使用pythonbrew安装zlib 报ImportError: No module named 'zlib' 解决方案
如题:这个问题引起是因为zlib在安装时没有正确被引入,解决的办法是使用brew进行zlib的安装#brew install zlib安装后需要将zlib的头文件及库文件添加至系统默认的路径#ln -s /usr/local/Cellar/zlib/1.2.8/include/* /usr/local/include#ln -s /usr/local/Cellar/zlib/1.2.8/lib
2015-05-11 13:08:00
19434
原创 CentOS 5.8_64 环境下面安装Pip 报ValueError: check_hostname requires server_hostname 解决办法
PIP 安装 https://pip.pypa.io/en/latest/installing.html在CentOS 5.8_64 下面安装完 python-2.7.9 之后再安装pip 时一直报lib/python2.7/ssl.py", line 537, in __init__ raise ValueError("check_hostname requires server_ho
2015-03-26 20:00:54
38217
3
转载 Mac OSX 10.10 版本后 Homebrew 无法使用的问题
After installing 10.10 DP1 Yosemite (yeah I couldn’t resist the temptation) homebrew gave me the following error:/usr/local/bin/brew: /usr/local/Library/brew.rb: /System/Library/Frameworks/Ruby.framew
2014-10-30 19:22:37
11467
原创 Iptables 最小化配置
配置规则iptables -A INPUT -p tcp -m tcp --dport 22 -j ACCEPTiptables -A OUTPUT -p tcp -m tcp --sport 22 -j ACCEPTiptables -A INPUT -p tcp -m tcp --dport 80 -j ACCEPTiptables -A OUTPUT -p tcp -m tcp --
2014-04-02 14:21:35
2323
原创 Flask-Testing 单元测试
准备1. 安装pip2. 安装Flask3. 安装Flask-Testing (ver:>=0.4.1)测试程序#coding=utf8from flask import Flask,jsonifyfrom flask.ext.testing import TestCaseimport unittestapp = Flask(__name__)@app.route("/ajax
2014-03-11 23:46:47
8724
转载 Python 中的类装饰器 类似于JAVA中的annotation
来源:http://www.fanjun.me/?p=568#encoding=utf8#http://www.fanjun.me/?p=568_missing = Noneclass cached_property(object): def __init__(self, func, name=None, doc=None): self.__name__ = name or f
2014-02-12 17:54:10
6540
转载 C/C++ tip: How to detect the operating system type using compiler predefined macros
转自:http://nadeausoftware.com/articles/2012/01/c_c_tip_how_use_compiler_predefined_macros_detect_operating_system#OSXiOSandDarwinOS identification macros are predefined by all C/C++ compilers to enable
2013-11-07 11:53:02
4246
原创 CURL命令行使用
1. CURL 发送磁盘上面的JSON文件如curl -X POST -H 'content-type: application/json' -d @myjsonfile.txt http://some.url/param2. CURL在命令行直接发送JSON结构数据curl -i -X POST -d '{\"screencast\":{\"subject\":\"tools\"}}' h
2013-11-01 18:16:04
38831
原创 NSSplitView 三个区域拖动联动调整相关控件大小
在上篇对两级联动nssplit的基础上面升级一个版本,使用两个nssplitview(内嵌方式)其中最上方和最下方两个区域的大小随拉动线动态调整较小代码即可实现,但中间相对复杂,直接看代码。源码下载://// AppDelegate.h// Cocoa_splitview_v2#import @interface AppDelegate : NSObject @property
2013-10-26 01:32:40
5015
原创 NSSplitView控件上下拖动时窗口自适应调整 样例
本例子实现在NSSplitview控件上下拖动或左右拖动时 两个子窗口自动调整的按钮// AppDelegate.h// Cocoa_SplitView#import @interface AppDelegate : NSObject @property (assign) IBOutlet NSTextView *textView;@property (assign) IBOu
2013-10-23 00:14:44
5747
1
原创 如何动态调整控件大小和隐藏控件显示
//// AppDelegate.h//#import @interface AppDelegate : NSObject { NSTextView *_textView; NSButton *_button; NSTextField *_textField; NSTableView * _tableview;}@property IBOutl
2013-10-22 01:16:54
6314
转载 如何判断客户端使用了代理服务器及其匿名级别
最近因某些需求需要一批国内的代理IP,需要动态获取代理IP并识别其IP是匿名还是透明,特搜索到如题的文章原文:http://www.blue1000.com/bkhtml/2010-04/67554.htm在此标记一下以备后续使用。另国内免费代理IP定期更新站点: http://www.itmop.com/proxy/
2013-10-11 17:00:15
5176
原创 CentOS 防SSHD VSFTPD暴力破解
CentOS 6.xrpm -Uvh http://mirror.metrocast.net/fedora/epel/6/i386/epel-release-6-8.noarch.rpmyum -y install denyhostsCentOS 5.xrpm -Uvh http://mirror.metrocast.net/fedora/epel/5/i386/epel-release-5-4
2013-09-02 19:12:32
3070
原创 Alias "bootstrap.widgets.TbHeroUnit" is invalid. Make sure it points to an existing PHP file and the
Yii+Yii-bootstrap 使用时会报上面的错,主要是在LINUX或MAC平台下面,WIN下面不存在该问题问题的原因在行assets 的权限 问题。解决的办法就是进入 app/protected/extensions/bootstrap 目录下面然后修改权限即可。cd protected/extensions/bootstrapchmod -R 777 assets其它:http://cn
2013-08-11 19:06:30
7263
转载 The Best BootStrap Resources
转自:http://www.w3cplus.com/source/the-best-bootStrap-resources.htmlTwitter BootStrap是一款优秀的前端的框架,称得上是前端的一个框架利器。Web前端开发者每天都在与HTML、CSS、JavaScript打交道,然而不少人都是在周而复始的写模板、样式和交互效果,前没有想过如何将这些重复的工作整合在一起。Twitter推出
2013-03-21 00:09:29
3369
原创 前端开发框架bootstrap
http://wrongwaycn.github.com/bootstrap/docs/index.htmlhttps://github.com/twitter/https://github.com/twitter/bootstraphttp://twitter.github.com/bootstrap/getting-started.html#examples推荐一个不错的前端开发不错的fram
2013-02-14 23:37:43
2589
原创 WIN下,Web.py+apache2.2(mod_wsgi)保证session可用
刚接触python的轻量级框架web.py,但在使用session时总是无效(现象就是在sessions目录中每次请求都会生成一个新的文件),经过大量的google还是没有找到解决的方案,最后尝试了一下把应用集成到虚拟主机上下面,解决该问题.特分享 1. 下载mod_wsgi.so http://code.google.com/p/modwsgi/wiki/DownloadTheSoftware?
2012-09-10 17:50:02
2392
原创 python 安装包资源分享
python 安装包资源分享http://www.lfd.uci.edu/~gohlke/pythonlibs/解决windows下开发朋友安装mysql-python的问题
2012-07-03 18:11:25
2273
转载 Linux下面挂载硬盘
几年前的一篇文章,今天有朋友让帮搞挂载一时想起,放在这里以备不时之需搜索了很久找到一个我想要的。在此处做个标记吧。http://www.jb51.net/os/RedHat/1336.html一.Linux的硬盘识别2.6
2012-07-03 17:53:23
2967
原创 Android 系统下支持wifi和蓝牙共存通讯
最近公司搞一个项目,需要一个硬件设备,设备通过WIFI或蓝牙和手机进行通讯,利用最近业余时间封装一个通用型的模块,实现业务需要.其中通讯协议是格式下发格式:&&stream\r\n收取格式:##stream$.....项目托管:http://code.google.com/p/wifi-bluetooth-comm/使用细节随后再完善,有兴趣的可以下载源码看看,有好的建议可以留言.
2012-06-20 19:21:01
2991
1
原创 Android 平台下使用netty
什么是netty,有兴趣的朋友可以google一下netty,可以知道这东东做什么用,当然你也可以选择mina,一样的都是java nio框架.选择netty是支持protobuf(google内部使用频率比较高的,之前的android源码中内含有这一部分的代码)协议,这样可以解决网络编程中粘包(也可以理解成传输过程中长度的问题,有兴趣可以看相关文章).该实例中只是实现了netty官方例子中的te
2012-05-25 01:06:17
13261
3
原创 Hibernate 3.2 从入门到精通学习推荐
Hibernate 3.2 从入门到精通学习推荐最近在维护项目时,由于对hibernate不是很熟,遇到了不少问题,于上在网上找到了一个不错的网站 http://caterpillar.onlyfun.net/Gossip/index.html上面有一篇讲Hibernate,看了后,收获不少,在此分享出来,当然上面还有其它的如spring,有兴趣的朋友可以直接访问该网站http://cat
2012-05-19 17:20:32
1459
原创 地图开发相关的资源
使用 Apache Lucene 和 Solr 进行位置感知搜索http://tech.idv2.com/2011/07/05/geohash-intro/http://tech.idv2.com/2011/06/17/location-search/http://code.google.com/p/simplelatlng/http://code.google.com/p
2012-03-09 11:51:52
1678
原创 Maven Integration (m2e) +eclipse3.7.2 安装
http://www.eclipse.org/m2e/download/help->install new software-> 选择add输入下面两行内容m2ehttp://download.eclipse.org/technology/m2e/releases
2012-03-06 22:24:50
2410
原创 分享爵士当铺网站
突然想听爵士乐,人真怪,探索几年前的收藏夹找到当年同学推荐的《爵士当铺》http://www.jazzsky.com有时间可以再看一次《蓝调传奇》挺不错的一部片子。
2012-02-22 21:55:58
1307
原创 JavaScript 代码美化 压缩 解压工具
近两年时间没有动Javascript代码,有些淡忘,最近工具需要在美化代码时居然找不到工具了.之前工作中用过N多.现在在此留痕,以便下次不再浪费时间1.javascript牛人的作品http://www.jslint.com/2.Closure Compiler (google产品)http://code.google.com/closure/compiler/
2011-12-15 15:42:06
2450
转载 linux系统dig和nslookup的安装
文章来源:http://www.71j.cn/archives/115最近搞的CENTOS6.0最小安装后,发现很多之前用的工具在该版本中未有看到.下好遇到要使用nslookup,就找了一下资源,记录一下nslookup是常用来查询本机域名解析情况的命令,但是一些linux系统下默认无此命令。我们可以通过安装一个包来使该命令生效,这个包中也包括dig命令。Ubuntu:
2011-11-23 10:09:02
72202
2
转载 Linux 操作系统的时钟系统
Linux 操作系统的时钟系统http://www.centos.bz/2011/10/linux-clock-system/#date -s 20111120#date -s 16:14:30#hwclock --systohc#hwclock --show #date时钟系统介绍对于 Linux 操作系统,主要有两种时钟系统:1、
2011-11-20 15:48:26
1718
转载 SELinux 相关学习资料
http://linux.vbird.org/linux_basic/0440processcontrol.phphttp://www.ibm.com/developerworks/cn/linux/l-selinux/正文来源:http://wiki.eri.ucsb.edu/sysadm/SELinuxIntroductionSELinux is a
2011-11-20 15:39:00
9437
1
转载 SELinux policy enabled; httpd running as context unconfined_u:system
CentOS6.0 下默认开selinux时出现httpd 报“SELinux policy enabled; httpd running as context unconfined_u:system”的解决方案安装audit2allow 参看http://wiki.eri.ucsb.edu/sysadm/SELinuxyum install policycoreutils-python
2011-11-20 15:22:53
8827
原创 CentOS 6.0 启用sendmail
安装 yum install sendmail启动sendmail 和postfix service sendmail startservice postfix start测试发送邮件touch mail.php[code]mail('your_email_addr@gmail.com','subject','message body');?>[/c
2011-11-20 15:09:34
2532
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人