js set cookie domain 可以设置所有域名包含有.example.com的网站 path 设置为 / 时,设置的cookie不区分路径 ...
分类:
Web程序 时间:
2018-06-23 15:42:11
阅读次数:
138
Given a string, you are supposed to output the length of the longest symmetric sub-string. For example, given "Is PAT&TAP symmetric?", the longest sym ...
分类:
其他好文 时间:
2018-06-23 14:32:36
阅读次数:
158
一,什么是装饰器? 装饰器本质上就是一个python函数,他可以让其他函数在不需要做任何代码变动的前提下,增加额外的功能,装饰器的返回值也是一个函数对象。 装饰器的应用场景:比如插入日志,性能测试,事务处理,缓存等等场景。 二,装饰器的形成过程。 现在我有一个需求,我想让你测试这个函数的执行时间,在 ...
分类:
其他好文 时间:
2018-06-23 14:28:14
阅读次数:
155
文件1 passwd.txt [["abc123","password"],["aaa","bbb"]] 文件2 passwd_wrong.txt ['abc123'] ...
分类:
其他好文 时间:
2018-06-23 14:27:40
阅读次数:
114
js array and for each https://blog.csdn.net/zdhsoft/article/details/54017183 Chrome 42 或更新的版本支持 Fetch API 了, F12 打开 Console : > fetch(new Request('/// ...
分类:
Web程序 时间:
2018-06-23 13:21:33
阅读次数:
222
记住: 如果你在new表达式中使用[ ],必须在相应的delete表达式中也是用[ ]。如果你在new时不使用[ ],一定不要在delete时使用[ ]。 最好不要用数组形式做typedef,基本都可以使用vector之类的 ...
分类:
编程语言 时间:
2018-06-23 13:17:09
阅读次数:
128
https://github.com/minimagick/minimagick class https://www.rubydoc.info/github/minimagick/minimagick/MiniMagick/Tool/Mogrify 各项参数 http://www.imagemagi ...
分类:
其他好文 时间:
2018-06-23 13:09:13
阅读次数:
143
一、包含一个逻辑运算符 首先从基本的概念着手,python中哪些对象会被当成 False 呢?而哪些又是 True 呢? 在Python中,None、任何数值类型中的0、空字符串“”、空元组()、空列表[]、空字典{}都被当作False,还有自定义类型,如果实现了 __ nonzero __ () ...
分类:
编程语言 时间:
2018-06-23 13:07:33
阅读次数:
320