自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(9)
  • 资源 (4)
  • 收藏
  • 关注

原创 win7下安装pip——Python的包管理工具

很多Python的工具包的安装,用一个pip install ** 就可以了,看得我这个晕啊。。。于是搞了好几个小时,终于明白了pip 和easy_install、distribute 一样,是安装Python工具包的便捷管理工具。这几个管理工具的关系在:http://jiayanjujyj.iteye.com/blog/1409819可以看到distribute是setu

2013-06-27 17:14:44 6886 1

原创 Python小代码收集

http://tieba.baidu.com/p/5542847781. def cleanword(word): (用Python写出程序,使程序可以通过下面的doctest)     """       >>> cleanword('what?')       'what'       >>> cleanword('"now!"')       'now'

2013-03-19 18:54:58 714

原创 Python 学习中的错误集锦

1. IndentationError: unexpected indent“Hi,老兄,你的文件里格式不对了,可能是tab和空格没对齐的问题,你需要检查下tab和空格了”。

2013-03-19 18:52:36 490

原创 用Python来count文档中的词个数

参考 :http://www.cnblogs.com/chhyong88/archive/2012/01/10/2317972.htmlwr='i lo loe love you you you i'def countt(wr): wd={} wn=wr.split() for i in range(0,len(wn)): if wn[i] !='':

2013-03-19 18:49:10 869

转载 Windows Installer问题集结及解决办法

小昭按:近日,每当打开ppt,总会弹出“windows正在配置Windows Installer,请稍候”的窗口,烦人不说,很浪费时间,在网上搜了下,尝试了几个,最终采用  打开组策略→用户配置→管理模板→Windows组件→Windows安装服务→将“禁止从媒体安装”设为“

2011-08-08 09:13:17 1811

原创 收藏夹导入:sogou to IE

最近超喜欢chrome,但是无奈,搜狗浏览器导出的收藏夹是xml,不能转到IE,也就不能转到chrome(通过工具-选项-个人资料-导入其他浏览器,即可将ie转成chrome),然后折腾了一个下午找到了答案。话说搜狗这点确实有点霸道,但是绝对难不倒聪明的人类,在搜狗论坛上就有人分享几种方法~~,具体见下面的文字吧。注意哦,所有链接貌似都点不开的~~还是直接去那个网页吧~~以下文字均粘贴自下面的链接:http://ie.sogou.com/bbs/viewthread.php?tid=131493&extra

2010-07-17 23:14:00 1886

转载 【zz】需求入门

在《敏捷估计和规划》一书中,在确定合意性优先级一章中专门介绍了这个模型,这个模型可以作为我们确定需求优先级的一个参考。KANO模型定义了三个层次的顾客需求:基本型需求、期望型需求和兴奋型需求。这三种需求根据绩效指标分类就是基本因素、绩效因素和激励因素。客户满意度模型Kano基本型需求:顾客认为产品“必须有”的属性或功能。当其特性不充足时,顾客很不满意;当其特性充足时,对客户满意度没

2010-05-02 10:18:00 442

原创 【解决】快速启动栏消失了

昨天中了木马,快速启动栏还有我的电脑图标都消失了,现在找到了解决方法如下: 【我的电脑】:桌面-右键-属性-桌面-自定义桌面---选中“我的电脑”,即可 【快速启动栏】:这个我找了很多资料,也都尝试了一下,所以不知道是哪个好使的。下面就说下我用过的。 【第一种】没有调出来                  1).右键任务栏---工具栏---快速启动---打勾.     

2010-02-25 11:14:00 2109

原创 help~opencv画的企鹅,但是还有两个问题

 #include "highgui.h"#include "cv.h" #define line_type  CV_AA int main(){    IplImage* image2;CvPoint r1,r2,center,p00,p01,p11,p10,pl,pr,ptt[8],*pt[1],org;CvSize  axes;CvFont

2010-02-20 21:31:00 783

Eclipse中文教程

很清晰的图文介绍了eclipse的使用。

2013-11-02

spring security3 源码分析

1. Spring Security 1.1 Spring Security3源码分析-FilterChainProxy初始化 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4 1.2 Spring Security3源码分析-http标签解析 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13 1.3 Spring Security3源码分析-authentication-manager标签解析 . . . . . . . . . . . . . . . . . . . . . . . . . . . .17 1.4 Spring Security3源码分析-FilterChainProxy执行过程分析 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 23 1.5 Spring Security3源码分析-SecurityContextPersistenceFilter分析 . . . . . . . . . . . . . . . . . . . . . . . . .26 1.6 Spring Security3源码分析-LogoutFilter分析 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 33 1.7 Spring Security3源码分析-UsernamePasswordAuthenticationFilter分析 . . . . . . . . . . . . . . . . . .39 1.8 Spring Security3源码分析-RememberMeAuthenticationFilter分析 . . . . . . . . . . . . . . . . . . . . . . .50 1.9 Spring Security3源码分析-SecurityContextHolderAwareRequestFilter分析 . . . . . . . . . . . . . . . .57 1.10 Spring Security3源码分析-FilterSecurityInterceptor分析 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 60

2013-11-02

spring security3 安全教材

java spring的安全教材, 一个不安全应用的剖析; spring security的起步;增强用户体验;凭证安全存储;精确的访问控制;

2013-11-02

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除