Summer GOALRaspberry Pi + Cloud workset up cloudsend image from Respberry Pi to Cloud and backAutomated License Plate RecognitionImprove Trainingprote...
分类:
其他好文 时间:
2015-05-10 06:22:45
阅读次数:
139
bash中的循环:
for
while
until
for 变量 in 列表; do
循环体
done
如何生成列表:
1. {1..100}
2. seq 1 100
seq...
分类:
其他好文 时间:
2015-05-09 19:06:06
阅读次数:
140
1. 循环遍历所有节点 #!/bin/bash IpPrefix=192.168.1.
User=root
Pwd=000000 for((i=84;i> tmp/$i echo "$i done!"
}&
done 2. 拷贝文件到所有节点 #!/usr/local/bin/expect -f s...
分类:
其他好文 时间:
2015-05-08 14:28:51
阅读次数:
134
前文LRU Cache 暨LinkedHashMap源码阅读提到了如何使用LinkedHashMap来实现一个LRU数据结构,今天在看OSCache代码算法部分的时候,就用到了该知识,what was done contributes what is done now。algorithm包是包含下列缓存过期策略的类:
下面重点介绍LRU和FIFO。LRUprivate Collection l...
分类:
系统相关 时间:
2015-05-07 12:28:46
阅读次数:
183
while条件;do循环体donebreak:提前退出循环continue:提前结束本轮循环,而进入下一轮循环(条件满足即结束)#!/bin/bash
#
letSUM=0
letI=0
while[$I-lt100];do
letI++
if[$[$I%2]-eq1];then
continue
fi
letSUM+=$I
done
echo$SUM[root@localhosttmp]#catwhile.sh
#!/bin/bas..
分类:
其他好文 时间:
2015-05-06 18:17:35
阅读次数:
126
1 void plog(const char *fmt, ...) 2 { 3 va_list arg; 4 char pbString[256]; 5 va_start(arg, fmt); 6 vsprintf(pbString, fmt, arg); //若此行和下行改为:done = fp....
分类:
其他好文 时间:
2015-05-05 23:13:45
阅读次数:
165
1.修改/var/lib/locales/supported.d/local文件,在文件中添加
zh_CN.GBK GBK
zh_CN.GB2312 GB2312
2.sudo dpkg-reconfigure --force locales
然后在输出的结果中会出现
zh_CN.GB2312 done
zh_CN.GBK done
出现done就成功了,...
分类:
系统相关 时间:
2015-05-05 19:42:32
阅读次数:
186
先来思考一个问题:一个需要耗时很长的操作比如setTimeout, ajax请求等,我们需要在延时操作后执行一个函数done。 比如: var wait = function(){ var tasks = function(){ alert("执行完毕!"); }; ...
分类:
Web程序 时间:
2015-05-05 11:58:53
阅读次数:
149
1、不想说了、有机会在写#!/bin/bash
cd/root/test
fornamein`ls`
do
if[-d$name]
then
mv/root/test/$name/*.mp4/root/test/key_$name.mp4
mv/root/test/$name/my
elif[[${name:0:4}-ne‘key_‘]]
then
mv$namekey_$name
else
echo$name>1.log
fi
done
分类:
系统相关 时间:
2015-05-04 20:24:44
阅读次数:
141
一开始采用的方法是函数textView:shouldChangeTextInRange:replacementText:来进行判断://键入Done时,插入换行符,然后执行addBookmark-(BOOL)textView:(UITextView*)textViewshouldChangeTe.....
分类:
其他好文 时间:
2015-05-03 14:34:12
阅读次数:
109