我们知道,好的编码约定和最佳实践非常重要,但是文档架构呢?建立一个好的文档架构是开始一个网站或者APP的基础,我们如何建立一个结构清晰、便于维护的文档架构呢?
我们的目标:1)需要一个多页面项目(网站或者APP)2)需要项目支持多屏幕尺寸,换句话说,需要实现响应式布局3)最终产品易维护4)最终产品性能良好5)未来项目可套用该模板...
分类:
其他好文 时间:
2015-01-02 07:33:33
阅读次数:
225
花了几个小时终于把Sublime的配置搞定了,能够在里面写vex和Python,同时另外设置了Python对houdini模块的以及其他扩展包的自动填充功能。这里简单讲一下安装sublime,因为这个不是重点,所以只介绍他的基本步奏了,本来就是很简单的一个事。1:sublime的官方网站http:/...
分类:
编程语言 时间:
2015-01-02 07:30:38
阅读次数:
2862
发现有一些问题几乎是所有的新人都会遇到,而且也常因为缺乏一些基本的知识而无从下手。函数调用栈的内容就是其中之一。于是花点时间把以前写的内容整理出来。 程序在运行期间,内存中有一块区域,用来实现程序的函数调用机制。这块区域是一块LIFO的数据结构区域,我们可以叫函数栈(调用栈)。每个未退出的函数都会....
分类:
其他好文 时间:
2015-01-02 07:29:49
阅读次数:
298
文件管理器 显示目录当前工作目录-----pwd ?返回父级目录录----------cd ../ ?返回之前刚用过的目录-----cd - ?进入子目录-------------cd /目录名 ?dengwo@dengwo-ThinkPad-Edge-E530:~/xuexi$ pwd ?/home...
分类:
系统相关 时间:
2015-01-02 06:30:09
阅读次数:
214
前提:讲述QPainter绘制、无其他变换。 viewport默认是整个paint device窗口,对QWidget来说就是整个QWidget窗口。 window永远是与viewport全等的矩形。 setViewport的作用是在paint device上圈定一个矩形(以dev...
package?org.web.proxy;
import?java.lang.reflect.Method;
public?class?Context?implements?MethodProxy?{
public?String?method?=?null;
public?String?service?=?null;
public?S...
分类:
其他好文 时间:
2015-01-02 06:30:41
阅读次数:
140
跨平台的网络通信,跟设备的集成控制,牵扯到在各种平台下的文件搜索问题,windows下面的已经有了。
地址如下:
http://blog.csdn.net/wangyaninglm/article/details/8668132
这篇文章主要介绍一下linux下面的文件搜索实现:
Filesearch.h
//
// Filesearch.h
// //
// Created...
Es6 provides "Set", it likes array but the data inside should be unqiue."Set" is a construct function, you should call:var s = new Set();Methods:1.add...
分类:
其他好文 时间:
2015-01-02 06:26:51
阅读次数:
223
题目:Given a strings1, we may represent it as a binary tree by partitioning it to two non-empty substrings recursively.Below is one possible representat...
分类:
其他好文 时间:
2015-01-02 06:29:15
阅读次数:
197
ES6 provides Map, it is a set of k-v pair. Key can be number, string, object, function and even undefined.var m = new Map();Methods:1. set(k,v)m.set("...
分类:
其他好文 时间:
2015-01-02 06:29:26
阅读次数:
167
#include#include#include#include#include#include#include#includeusing namespace std;typedef long long ll;#define N 1000000000#define Max 11111struct t...
分类:
其他好文 时间:
2015-01-02 06:26:19
阅读次数:
116
#include#include#include#include#include#include#include#include#includeusing namespace std;typedef long long ll;#define N 2011111ll mm[222][222];int ...
分类:
其他好文 时间:
2015-01-02 06:27:26
阅读次数:
208
#include#include#include#include#include#include#include#include#includeusing namespace std;typedef long long ll;#define N 2011111int dp[555555];int m...
分类:
其他好文 时间:
2015-01-02 06:28:33
阅读次数:
216
1.clean: 清理默认路径以外的文件 [...] maven-clean-plugin 2.6.1 some/relative/path自定义要清理的文件,相对路径 **/*.tmp **/*.log ...
分类:
其他好文 时间:
2015-01-02 06:26:32
阅读次数:
159
In ES5, we have for ... in:var phones = ["iPhone", "Nexus", "Nokia"];for(i in phones){ console.log(phones[i]);}//iPhone//Nexus//NokiaWhat we get fr...
分类:
其他好文 时间:
2015-01-02 06:26:05
阅读次数:
160
HASH+暴力。 1 /* 4403 */ 2 #include 3 #include 4 #include 5 #include 6 #include 7 using namespace std; 8 9 #define MAXN 5510 11 map tb[2];12 char s...
分类:
其他好文 时间:
2015-01-02 06:25:43
阅读次数:
165
前天花了一个下午的时间刷了几道IDF实验室的题目, 这个网站实在是有点冷清, 题目也比较少, 所以就被我和师兄们刷榜了2333...因为我最先开始做, 所以就干脆刷到第一去了.题目很水, 切莫见怪.牛刀小试http://ctf.idf.cn/index.php?g=game&m=list&a=ind...
分类:
其他好文 时间:
2015-01-02 06:26:33
阅读次数:
5415