//#pragma comment(linker,
"/STACK:1024000000,1024000000")#include#include#include#include#include#include#include#include#include#include#include#incl...
分类:
其他好文 时间:
2014-05-08 19:28:34
阅读次数:
277
目标制定OK了,用PDCA来说执行流程吧,Plan-Do-Check-Action.执行中的准则1、积极主动2、以终为始,3、分清轻重缓急,毛主席都交到我们要分清主要矛盾和次要矛盾,80/20法则以上来自《成功人士的7个习惯》的前3个。我认为还要再加一个就是坚定不移的决心,不达目标誓不罢休,说易行难...
分类:
其他好文 时间:
2014-05-08 09:52:32
阅读次数:
258
安装XDebug后自动开启PHP Stack Trace,导致服务器PHP
error日志暴满,甚至高达1G
分类:
Web程序 时间:
2014-05-08 00:43:36
阅读次数:
482
8.2.3 运行ELF格式的应用程序
首先我们需要提供一些与ELF格式有关的宏定义。
代码8-7
#define ELFCLASSNONE 0 #define ELFCLASS32 1 #define ELFCLASS64 2 #define CHECK_ELF_CLASS(p) ((p)->e_ident[4]) #define...
分类:
其他好文 时间:
2014-05-08 00:29:22
阅读次数:
465
Entity framework在验证未通过的时候默认不会抛出详细异常,这给我们debug带来很大的困难,不过我们可以手动捕获,见代码:
private int Update(Employee entity)
{
string error = string.Empty;
using (NorthwindEntities ctx = ...
分类:
其他好文 时间:
2014-05-07 21:50:21
阅读次数:
302
数组
C++ 不支持数组的抽象 abstraction 也不支持对整个数组的操作我们有时会希望对整个数组进行操作例如把一个数组赋值给另外一个数组对两个数组进行相等比较或者想知道数组的大小 size 例如给出两个数组我们不能用赋值操作符把一个数组拷贝到另一个中去。
int array0[ 10 ], array1[ 10 ];
array0 = array1; // error
数组类型本...
分类:
编程语言 时间:
2014-05-07 21:38:43
阅读次数:
487
check a int number is power of 2?
个人信息:就读于燕大本科软件工程专业 目前大三;
本人博客:google搜索“cqs_2012”即可;
个人爱好:酷爱数据结构和算法,希望将来从事算法工作为人民作出自己的贡献;
博客内容:how many does the factorial of n have zero?
博客时间:2014-5...
分类:
其他好文 时间:
2014-05-07 21:38:00
阅读次数:
411
1.下载安装大家根据各自系统配置,下载相对应的redis版本。我下载是redis
2.6将redis.conf 复制到 bin/release/redisbin 里面redis-server.exe
服务程序redis-check-dump.exe:本地数据库检查redis-check-aof.ex...
分类:
数据库 时间:
2014-05-07 21:04:48
阅读次数:
459
使用libcurl源码编译不过的问题
setup_once.h(274) : error C2628: '' followed by 'bool' is illegal (did you forget a ';'?)...
分类:
其他好文 时间:
2014-05-07 15:37:56
阅读次数:
383