给公司做事,都是本着认真负责的态度去做的。有一天测试告诉我,你修改的js代码没有生效,看不出效果来。我让测试清空浏览器,她却告诉我这样对用户不利,不能让用户去手动清空缓存吧!好吧,我只好闷着头脑,查网上相关的资料。现总结如下:1、第一种 修改js名称,xxx.js修改为xxx-1.1.0.js。2、...
分类:
其他好文 时间:
2014-11-26 13:38:56
阅读次数:
153
问题剖析:用户在页面上提交表单到服务器时,服务器会检测到一些潜在的输入风险,例如使用富文本编辑器控件(RichTextBox、FreeTextBox、CuteEditor等)编辑的内容中包含有HTML标记或脚本标记,ASP.NET页面会抛出一个"A potentially dangerous Req...
分类:
其他好文 时间:
2014-11-26 13:37:56
阅读次数:
161
pipy国内镜像目前有: http://pypi.douban.com/ 豆瓣 http://pypi.hustunique.com/ 华中理工大学 http://pypi.sdutlinux.org/ 山东理工大学 http://pypi.mirrors.ustc.edu.cn/ 中国科学...
分类:
编程语言 时间:
2014-11-26 13:36:09
阅读次数:
199
var racers = Formula1.GetChampions(). Where(r => r.Wins > 15 && (r.Country == "Brazil" || r.Country == "Austria")). Select(r=>r); foreach (var item in...
分类:
其他好文 时间:
2014-11-26 13:37:07
阅读次数:
190
stm32固件库V3.0以上的版本,main等源文件中不再直接包含stm32f10x_conf.h,而是stm32f10x.h,stm32f10x.h则定义了启动设置,以及所有寄存器宏定义,此文件中需要注意的有:使用V3.0以上版本固件库的方法如下:1.选择device(配置函数STM32F10x....
分类:
其他好文 时间:
2014-11-26 13:38:35
阅读次数:
224
1 import android.content.Context; 2 import android.net.ConnectivityManager; 3 import android.net.NetworkInfo; 4 5 /** 6 * 网络工具类 添加网络状态许可: 8 * 9 ...
分类:
移动开发 时间:
2014-11-26 13:38:24
阅读次数:
128
Given a string S and a string T, count the number of distinct subsequences of T in S.A subsequence of a string is a new string which is formed from th...
分类:
其他好文 时间:
2014-11-26 13:37:24
阅读次数:
123
简要分析简单工厂模式,工厂方法模式,抽象工厂模式以及spring的部分区别
分类:
编程语言 时间:
2014-11-26 13:38:03
阅读次数:
197
1.绝对值和圆周率abs(x)和pi()2.平方根和求余数sqrt(x)和mod(x,y),其中y是被除数3.从小数获取整数ceil(x),ceiling(x)返回不小于x的最小整数floor(x)返回不大于x的最大整数4.获取随机数rand()返回在0-1之间生成的随机数rand(x)返回以x为种...
分类:
数据库 时间:
2014-11-26 13:37:31
阅读次数:
270
// 自定义导航栏"返回按钮"- (void)initNaviBackBtn{ UIButton *backBtn = [UIButtonbuttonWithType:UIButtonTypeCustom]; backBtn.frame = CGRectMake(0, 0, 50, 22); ...
分类:
其他好文 时间:
2014-11-26 13:37:31
阅读次数:
172
例如:class a{public:int aa};class b:public a{public: int bb;}从内存的来看如a---------||占一个int数据大小--||----(aa数据)------||---------而b则是---------|---------|占一个int数...
分类:
其他好文 时间:
2014-11-26 13:37:49
阅读次数:
145
1 //NSData转换为UIImage2 NSData *imageData = [NSData dataWithContentsOfFile: imagePath];3 UIImage *image = [UIImage imageWithData: imageData];4 5 //UIIma...
分类:
其他好文 时间:
2014-11-26 13:35:48
阅读次数:
123
转载:http://www.cnblogs.com/cfantaisie/archive/2011/06/14/2080917.html 主要步骤 1)、尺度空间的生成; 2)、检测尺度空间极值点; 3)、精确定位极值点; 4)、为每个关键点指定方向参数; 5)、关键点描述子的生...
分类:
其他好文 时间:
2014-11-26 13:36:38
阅读次数:
316
EXP和IMP是Oracle提供的一种逻辑备份工具。逻辑备份创建数据库对 象的逻辑拷贝并存入一个二进制转储文件。这种逻辑备份需要在数据库启动的情况下使用, 其导出实质就是读取一个数据库记录集(甚至可以包括数据字典)并将这个记录集写入一个文件,这些记录的导出与其物理位置无关,导入实质就是读取转储文件并...
分类:
数据库 时间:
2014-11-26 13:35:27
阅读次数:
302
Heli tracker. #1,2,3 as Gen Ace Battery. #4,5,6 as Nano Battery11/25/2014 Lightly crashed, servo arm brake. Too dark to see heli level. #4,5,...
分类:
其他好文 时间:
2014-11-26 13:36:38
阅读次数:
224
// 检查更新- (void)updateVersion{ // 获取app版本 NSDictionary *infoDictionary = [[NSBundlemainBundle] infoDictionary]; NSString *currentVersion = [infoDict...
分类:
其他好文 时间:
2014-11-26 13:34:27
阅读次数:
143
Spring Security默认的用户登录表单 页面源代码Login PageLogin with Username and Password User: Password: Remember me on this computer.
分类:
编程语言 时间:
2014-11-26 13:35:55
阅读次数:
229