DialogsA dialog is a small window that prompts the user to make a decision or enter additional information. A dialog does not fill the screen and is n...
分类:
移动开发 时间:
2015-07-05 19:51:36
阅读次数:
306
Descending OrderDescription:Your task is to make a function that can take any non-negative integer as a argument and return it with it's digits in des...
分类:
其他好文 时间:
2015-07-05 13:45:16
阅读次数:
131
table view 是ios中非常重要一个view,它的流畅程度非常影响app的体验。下面总结使table view 运行流畅的一个做法(通过学习wwdc)1. 异步执行(通常是从网络获取获取,或者打开数据太耗时) 这很好理解,就不详细说明了2. concurrent draw cell (wwd...
分类:
移动开发 时间:
2015-07-05 07:03:50
阅读次数:
123
1.主服务器安装rsync wget https://download.samba.org/pub/rsync/src/rsync-3.1.1.tar.gz tar -zxvf rsync-3.1.1.tar.gz ./configure --prefix=/usr/local/rsync make && make install cd /usr/local/rsync/ ? ...
分类:
Web程序 时间:
2015-07-05 00:59:48
阅读次数:
220
下载源码安装步骤wget http://oss.metaparadigm.com/json-c/json-c-0.9.tar.gztar xvf json-c-0.9.tar.gzcd json-c-0.9/./configure
make
sudo make installUbuntu 的 apt-get 安装sudo apt-get install libjson0-dev libjson0以...
分类:
Web程序 时间:
2015-07-04 15:32:43
阅读次数:
966
在看侯捷翻译的STL源码剖析时,发现关于heap这一节点错误,特此指出.
1 make_heap源码
template
inline void
make_heap(_RandomAccessIterator __first, _RandomAccessIterator __last)
{
__make_heap(__first, __last,
__...
分类:
其他好文 时间:
2015-07-04 12:47:35
阅读次数:
114
This link has a very concise and fast solution based on binary search. Spend some time reading it and make sure you understand it. It is very helpful....
分类:
其他好文 时间:
2015-07-04 00:41:54
阅读次数:
120
一:编译安装的 yum install httpd-devel sqlite sqlite-devel -y ./configure --prefix=/usr/local/svn --with-ssl --with-zlib make && make install ln -s /usr/local/svn/bin/svn* /usr/bin/ 二:YUM安装的 ...
分类:
其他好文 时间:
2015-07-03 19:22:36
阅读次数:
125
make的执行依赖于一个makefile文件,该文件告诉make应该如何执行编译和链接操作。make通过比较对应文件的最后修改时间来决定哪些文件需要更新。make工具主要用来进行工程编译和程序链接操作。当使用make时,工程中的如下几种文件会被重新编译:所有从未被编译过的源文件执行make后,修改过...
分类:
其他好文 时间:
2015-07-03 18:48:22
阅读次数:
138
1 //查看全文2 [self.moreBtn mas_makeConstraints:^(MASConstraintMaker *make) {3 make.top.equalTo (self.contentLabel.mas_bot...
分类:
其他好文 时间:
2015-07-03 18:45:07
阅读次数:
539