一 10月阅读书籍:需求工程-软件建模与分析 (1)10月10日发表第一篇读书笔记。 (2)10月20日发表第二篇读书笔记。 (3)10月30日发表第三篇读书笔记。 二11月阅读书籍:需求分析与系统设计 (1)11月10日发表第一篇读书笔记。 (2)1...
分类:
其他好文 时间:
2015-09-22 20:20:35
阅读次数:
131
Problem DescriptionClarke is a patient with multiple personality disorder. One day, Clarke turned into a game player of minecraft. On that day, Clarke...
分类:
其他好文 时间:
2015-09-22 20:18:35
阅读次数:
201
1.预测时间:PSP2.1Personal Software Process StagesTime Planning计划 · Estimate ·估计这个任务需要多少时间10分钟Development开发 · Analysis ·需求分析(包括学习新技术)20分钟 · Design Spec ·生成...
分类:
其他好文 时间:
2015-09-22 20:19:45
阅读次数:
219
乐观锁与悲观锁的比较: 类别 实现 特点 风险 悲观锁 ? 依靠数据库层的锁机制 独占性 数据库性能的大量开销往往无法承受,特别是对长事务而言。 乐观锁 ? 基于数据版本机制实现 乐观锁机制避免了长事务中的数据...
分类:
其他好文 时间:
2015-09-22 19:17:58
阅读次数:
173
【信息邀请书】 REQUEST FOR INFORMATION (RFI) 信息邀请书 A ?solicitation deocument used to obtain general information about ?products, services, or suppliers. It is an information request, not ?b...
分类:
其他好文 时间:
2015-09-22 19:18:29
阅读次数:
7285
一、静态库与动态库 通常情况下,对函数库的链接是放在编译时期(compile time)完成的。所有相关的对象文件(object file)与牵涉到的函数库(library)被链接合成一个可执行文件(executable file)。程序在运行...
分类:
其他好文 时间:
2015-09-22 19:14:44
阅读次数:
144
最近看一下php7源码 其中有个string的struct struct?_zend_string?{
????????zend_refcounted_h?gc;
????????zend_ulong????????h;????????????????/*?hash?value...
分类:
其他好文 时间:
2015-09-22 19:14:58
阅读次数:
188
nio Buffer的capacity,position,limit的3个属性说明: capacity:Buffer的内存固定的一个大小值,一般创建Buffer时初始化写入-->ByteBuffer.allocate(capacity),需注意写入数据时需考虑数据大小是否超过Buffer的...
分类:
其他好文 时间:
2015-09-22 19:15:22
阅读次数:
115
为了保护代码被反编译,android引入了混淆代码的概念 1.设置混淆 在工程下找到project.properties文件 在文件中加入proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt这个是...
分类:
其他好文 时间:
2015-09-22 19:15:26
阅读次数:
198
创建必要的目录。Manifests存放模块的主要配置文件init.pp Puppet在应用类后会首先加载init.pp读取必要的信息 如果init.pp使用templates函数,会读取templates目录下的erb模块文件 当前的变量也会传入templates函...
分类:
其他好文 时间:
2015-09-22 19:12:11
阅读次数:
168
本文是基于 node 0.12.7 express 4.13.1 1)安装 npm?install?-g?express
npm?install?-g?express-generator 2)创建项目并启用 express?myapp
cd?myapp?&&?npm?install
npm?start 3)目录结构 app....
分类:
其他好文 时间:
2015-09-22 19:13:51
阅读次数:
120
#include<stdio.h>intmain(){inti,j,k;for(i=1;i<10;i++)for(j=i;j<10;j++){k=i*j;printf("%d*%d=\%d\t\t",i,j,k);}return0;}
分类:
其他好文 时间:
2015-09-22 19:13:00
阅读次数:
113
1、这个bug我这边重现不了解决办法Bug应该简明扼要,重点突出。如果描述存在歧义,一定要总结并尽快改进。有时会遇到概率性的bug,要告诉开发概率是多少,尽可能多的提供重现的条件。在复现问题时,希望能大致判断几个问题点,然后和测试人员沟通下,需要如何捕获信息,捕获那..
分类:
其他好文 时间:
2015-09-22 19:10:53
阅读次数:
135
#include<stdio.h>intmain(){intyear;for(year=1000;year<=2000;year++){if((year%4==0&&year%100!=0)||(year%400==0))printf("%d\t",year);}return0;}
分类:
其他好文 时间:
2015-09-22 19:10:00
阅读次数:
136
在线PDF查看:Google
FileSystem中文版Google
Bigtable中文版Google
MapReduce中文版附件下载:http://down.51cto.com/data/2096615
分类:
其他好文 时间:
2015-09-22 19:10:50
阅读次数:
109
#include<stdio.h>#include<math.h>intmain(){inti,j,flag;for(i=100;i<=200;i++){flag=1;for(j=2;j<=sqrt(i);j++)if(i%j==0)flag=0;if(flag==1)printf("%d\t",i);}return0;}
分类:
其他好文 时间:
2015-09-22 19:11:49
阅读次数:
119
RHEL6.4系统中的LAMP环境搭建一、环境准备1.安装编译工具gcc、gcc-c++使用安装光盘作为yum源,安装gcc、gcc-c++,命令如下:yum-yinstallgccyum-yinstallgcc-c++2.关闭RPM包安装的Apache、MYSQL服务1).关闭服务servicehttpdstopservicemysqldstop2).关闭自启动chkconfighttpdof..
分类:
其他好文 时间:
2015-09-22 19:11:11
阅读次数:
197