这个没有什么截图,主要步骤如下: a.
安装python-2.7-x64版本(我的系统是win7-x64) b. 下载PyInstaller-2.1 x64版本 c. 下载pywin32-x64版本
d.下载upx.exe (这个在pyinstall官网上面会有提示) e.使用pythone set...
分类:
Windows程序 时间:
2014-04-30 16:28:49
阅读次数:
1037
Applies to: Oracle Server - Enterprise Edition
- Version 11.1.0.6 to 11.2.0.4 [Release 11.1 to 11.2]Information in this
document applies to any platfo...
分类:
数据库 时间:
2014-04-30 15:38:17
阅读次数:
624
原题地址:http://oj.leetcode.com/problems/sort-list/题意:链表的排序。要求:时间复杂度O(nlogn),空间复杂度O(1)。解题思路:由于题目对时间复杂度和空间复杂度要求比较高,所以查看了各种解法,最好的解法就是归并排序,由于链表在归并操作时并不需要像数组的...
分类:
编程语言 时间:
2014-04-30 15:09:41
阅读次数:
428
ubuntu12.04 64位下安装w3af:sudo apt-get install
w3af解决安装之后w3af_console不能运行的问题:运行w3af_console会提示如下错误:/usr/bin/w3af_console: 3:
/usr/bin/w3af_console: /usr/...
分类:
其他好文 时间:
2014-04-30 14:56:04
阅读次数:
569
原题地址:http://oj.leetcode.com/problems/4sum/题意:从数组中找到4个数,使它们的和为target。要求去重,可能有多组解,需要都找出来。解题思路:一开始想要像3Sum那样去解题,时间复杂度为O(N^3),可无论怎么写都是Time
Limited Exceeded...
分类:
编程语言 时间:
2014-04-30 13:28:46
阅读次数:
445
1.sqlplus /nolog2.connect sys/orcl@ORCL as
sysdba3.select sysdate from dualexit;
分类:
数据库 时间:
2014-04-29 16:42:47
阅读次数:
480
数据库中两个字段相减(某列有空值)处理方法:sql server中:select
(isnull(字段1,0)-isnull(字段2,0)) as 结果 from 表oracle中:select (nvl(字段1,0)-nvl(字段2,0))
as 结果 from 表mysql中:select (i...
分类:
数据库 时间:
2014-04-29 16:42:46
阅读次数:
925
参数URL:http://blog.csdn.net/qwiwuqo/article/details/8970621安装flask之前,你必须要先安装python和easy_install。安装
virtualenv,这个主要是用来做解释器环境隔离的,避免同一机器上的多个python或者多个pyth...
分类:
编程语言 时间:
2014-04-29 16:38:46
阅读次数:
446
原题地址:http://oj.leetcode.com/problems/3sum-closest/题意:数组中每三个元素进行求和,找出所有和中大小最接近target的和,并返回这个和与target之间的差值。解题思路:使用一个变量mindiff来监测和与target之间的差值,如果差值为0,直接返...
分类:
编程语言 时间:
2014-04-29 16:37:46
阅读次数:
432
原文: 通过.NET实现后台自动发送Email功能的代码示例
通过.NET实现后台自动发送邮件功能的代码,可以将一些基础信息放到web.config文件中进行保存:Web.config文件信息段: 后台实现:using
System.Net.Mail;using System.Configurati...
分类:
Web程序 时间:
2014-04-29 16:33:46
阅读次数:
455