码迷,mamicode.com
首页 >  
搜索关键字:tor    ( 18008个结果
Django+jenkins+python+RESTful framework(基于Class的视图)(4) 转发邮件
Send_Email.pyclass SendEmailViewList(BaseViewList): def __init__(self): super(SendEmailViewList, self).__init__(None) def post(self, request, format=N ...
分类:编程语言   时间:2017-06-28 14:34:29    阅读次数:159
印度项目质量管理经验
文章有点老,但其中的管理经验还是和值得我们学习的。 计算机和通信技术的迅速发展,特别是Internet技术的发展与普及,为企业内部、企业与外部提供了快速、准确、可靠的信息交流渠道。信息化企业运作管理系统已成为企事业单位参与全球市场竞争的必备支持系统。正是由于这样的市场需求与技术发展现状,为我国的 I ...
分类:其他好文   时间:2017-06-28 13:01:20    阅读次数:144
linux查看前几条命令记录
1、按上下箭头键2、history|more分页显示3、vi /etc/profile找HISTSIZE=1000,说明你最多能存1000条历史记录。4、!!执行最近执行的命令5、history|head或者history |tail看记录的前几条或后几条6、!100 执行第100条记录7、fc - ...
分类:系统相关   时间:2017-06-28 11:56:11    阅读次数:207
关于 DjangoUeditor 上传图片图片失败,csrf token missing or incorrect 的解决办法
错误原因:get_ueditor_controller() 方法没有csrf保护 解决办法: 在ueditor源码中的views.py文件中找到get_ueditor_controller函数,然后添加@csrf_exempt 装饰器 ...
分类:Web程序   时间:2017-06-28 02:20:42    阅读次数:403
IO流和File
读键盘数据、显示数据6-1)io流的分类 按方向:输入流(读取数据) 输出流(写入数据) 按数据类型:字节流(基本数据类型)输出输入 字符流(字节流的包装 对字节流进行处理)输出输入四个核心类: InputStream 字节输入流 OutStream 字节输出流 Reader 字符输入流 Write ...
分类:其他好文   时间:2017-06-27 23:30:35    阅读次数:218
122. Best Time to Buy and Sell Stock II
题目: Say you have an array for which the ith element is the price of a given stock on day i. Design an algorithm to find the maximum profit. You may co ...
分类:其他好文   时间:2017-06-27 23:27:24    阅读次数:222
leetcode - Search a 2D Matrix II
题目: Search a 2D Matrix II Write an efficient algorithm that searches for a value in an m x n matrix. This matrix has the following properties: Integer ...
分类:其他好文   时间:2017-06-27 18:47:18    阅读次数:114
智能指针scoped_ptr
scoped_ptr的所有权更加严格,不允许转让,对其赋值和拷贝都是不合法行为,因而显得更轻巧和快捷。 scoped_ptr重载了operator*()和operator->()解引用操作符*和箭头操作符->,因此可以把scoped_ptr对象如同指针一样使用。如果scoped_ptr保存的空指针, ...
分类:其他好文   时间:2017-06-27 18:42:05    阅读次数:133
MVC5 下拉框(多选)
1.Model 2.cotroller 3.View ...
分类:Web程序   时间:2017-06-27 15:04:02    阅读次数:220
Binary Tree Paths
Given a binary tree, return all root-to-leaf paths. For example, given the following binary tree: 1 / \ 2 3 \ 5 All root-to-leaf paths are: ["1->2->5" ...
分类:其他好文   时间:2017-06-27 14:55:23    阅读次数:151
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!