Helen Keller was born on June 27,1880, in Tuscumabia, Alabama, to Captain Arthur Henry Keller, a Confederate army veteran and a newspaper editor, and ...
分类:
其他好文 时间:
2014-09-08 09:37:56
阅读次数:
231
1、ping 127.0.0.1 -测试联通性在浏览器中输入localhost可判断本地服务器是否开启。如果出现含有“work”字样,则代表本地服务器已经开启。2、本地服务器具体搭建步骤。1>cd /etc/apache2/ 进入这个目录2>修改配置文件,配置服务器之前先备份好httpd.conf源...
分类:
Web程序 时间:
2014-09-06 13:36:53
阅读次数:
280
User Credentials In order to understand security in OS X, it is important to understand that there are two security models at work. One of these is th...
分类:
其他好文 时间:
2014-09-06 10:54:23
阅读次数:
365
当应用程序启动,创建了一个叫“main”的线程,用于管理UI相关,又叫UI线程。其他线程叫工作线程(Work Thread)。Single Thread Model一个组件的创建并不会新建一个线程,他们的创建都在UI线程中进行,包括他们的回调方法,如onKeyDown()。当在UI线程中进行某些耗时...
分类:
移动开发 时间:
2014-09-05 21:06:42
阅读次数:
269
ceiling analysis to decide what to work on next in a machine learning pipeline
分类:
其他好文 时间:
2014-09-05 00:56:00
阅读次数:
311
更多内容,可访问个人博客www.liangfeizc.com
错误代码
如果在Activiy中通过内部类(Runnable)的方式定义了一个变量runnable,
final Runnable runnable = new Runnable() {
public void run() {
// ... do some work
}...
分类:
移动开发 时间:
2014-09-04 22:22:20
阅读次数:
254
仔细看了Doug Lea的那篇文章:A Java Fork/Join Framework 中关于Work-Stealing的部分,下面列出该算法的要点(基本是原文的翻译):1. 每个Worker线程都维护一个任务队列,即ForkJoinWorkerThread中的任务队列。2. 任务队列是双向队列,...
分类:
编程语言 时间:
2014-09-04 22:12:50
阅读次数:
252
Saving Beans
Problem Description
Although winter is far away, squirrels have to work day and night to save beans. They need plenty of food to get through those long cold days. After some tim...
分类:
其他好文 时间:
2014-09-04 20:55:50
阅读次数:
269
对vim配置neocomplete自动补全插件,安装完成之后出现“neocomplete does not work this version of Vim.?It requires Vim 7.3.885 or above and "if_lua" enabled Vim.”的错误提示,neocomplete插件无法启动。...
分类:
Windows程序 时间:
2014-09-04 09:50:08
阅读次数:
1562
#!/bin/bash log_path="./log/"dates=`date -d '-1 days' +'%Y%m%d'`cd $log_path;for i in `cat list`;do wget $i:/home/work/odp/log/search/search.log.${dat...
分类:
其他好文 时间:
2014-09-03 21:06:27
阅读次数:
205