上一页 1 ··· 203 204 205 206 207 208 209 210 211 ··· 249 下一页
摘要: The SnailA snail is at the bottom of a 6-foot well and wants to climb to the top. The snail can climb 3 feet while the sun is up, but slides down 1 foot at night while sleeping. The snail has a fatigue factor of 10%, which means that on each successive day the snail climbs 10%3 = 0.3 feet less than 阅读全文
posted @ 2013-08-16 18:04 pangbangb 阅读(386) 评论(0) 推荐(0) 编辑
摘要: ipcs命令是linux/uinx上提供关于一些进程间通信方式的信息,包括共享内存,消息队列,信号ipcs用法ipcs -a 是默认的输出信息 打印出当前系统中所有的进程间通信方式的信息ipcs -m 打印出使用共享内存进行进程间通信的信息ipcs -q 打印出使用消息队列进行进程间通信的信息ipcs 0s 打印出使用信号进行进程间通信的信息 输出格式的控制 ipcs -t 输出信息的详细变化时间 ipcs -p 输出ipc方式的进程ID ipcs -c 输出ipc方式的创建者/拥有者 ipcs -c 输出ipc各种方式的在该系... 阅读全文
posted @ 2013-08-16 18:02 pangbangb 阅读(415) 评论(0) 推荐(0) 编辑
摘要: select count(姓名) as 重复次数,姓名from 某表 group by 姓名order by 重复次数 asc首先,group by 姓名,可以将所有相同姓名的项集合在一起。然后,count(姓名),将姓名次数进行统计,然后作为重复次数,最后,order by通过重复次数排序,asc表示排序为由小到大,即递增顺序。 阅读全文
posted @ 2013-08-16 18:00 pangbangb 阅读(1446) 评论(0) 推荐(0) 编辑
摘要: 1、首先来看这里的CRichListWnd已经不再是从CWindowWnd继承了classCRichListWnd:publicWindowImplBase从WindowImplBase中,可以看到有三个抽象函数:virtualCDuiStringGetSkinFolder()=0;virtualCDuiStringGetSkinFile()=0;virtualLPCTSTRGetWindowClassName(void)const=0;这些都很简单,只是返回固定的string 2、看看WindowImplBaseclass UILIB_API WindowImplBase : public 阅读全文
posted @ 2013-08-16 17:58 pangbangb 阅读(600) 评论(0) 推荐(0) 编辑
摘要: 刚接触Android移动开发,第一次下载Titanium,第一次下载ADT,第一次看Javascript代码,N多第一次......慢慢摸索了一个礼拜把移动开发的工具链的配置学习了一下,抛砖引玉,但愿大家别再浪费时间于工具链的搭建工作,如有写错万望指正。 网络直接连google的repository一直不太稳定,大家还是搞个VPN或者PPTP。 安装ADT (Android Developer Tools) Bundle http://developer.android.com/sdk/index.html 安装Python 2.7 http://www.python.org/... 阅读全文
posted @ 2013-08-16 17:56 pangbangb 阅读(308) 评论(0) 推荐(0) 编辑
摘要: Jinja2模版语言,自带有一些filter,能够在前端的模版中控制数据按照相应的方式显示。比如以下两种filter,分别能在前端控制数字的近似精度显示和根据字符串长度补齐:round(value, precision=0, method='common'){{ 42.55|round }} -> 43.0{{ 42.55|round(1, 'floor') }} -> 42.5truncate(s, length=255, killwords=False, end='...'){{ "foo bar"|trunc 阅读全文
posted @ 2013-08-15 19:53 pangbangb 阅读(2197) 评论(0) 推荐(0) 编辑
摘要: 前文链接:《深入理解Nginx》阅读与实践(一):Nginx安装配置与HelloWorld HelloWorld的完成意味着已经踏入了nginx的大门,虽然很振奋人心,但在编写中仍有很多疑惑的存在:nginx.conf的配置项中各个参数是如何读入程序中的?ngx_command_t如何完成配置项的读入工作?名称相同的配置项的冲突如何解决?HelloWorld中的ngx_http_module_t何以称为模块的上下文?同时我在读第4章"配置项的使用"时又有成见:不就是各种琐碎的参数设置嘛,有什么好读的?(这个成见来自于UNP中某一章节套接字选项)不过经过仔细阅读并实践这部分内 阅读全文
posted @ 2013-08-15 19:51 pangbangb 阅读(271) 评论(0) 推荐(0) 编辑
摘要: Error Code: 1093. You can't specify target table 'ws_product' for update in FROM clause这个是我们在使用update或者delete语句时,在where条件里面加入的子查询导致的。例如如下的update语句:update table set type = 'static' where id in ( select id from ws_product where first_name ='superman' ); 修改上述语句为下面这样,该问题可以解决: 阅读全文
posted @ 2013-08-15 19:49 pangbangb 阅读(407) 评论(0) 推荐(0) 编辑
摘要: Intelligent IMETime Limit: 2000/1000 MS (Java/Others)Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 1348Accepted Submission(s): 685 Problem Description We all use cell phone today. And we must be familiar with the intelligent English input method on the cell phone. To be spe... 阅读全文
posted @ 2013-08-15 19:46 pangbangb 阅读(187) 评论(0) 推荐(0) 编辑
摘要: 采用的是惠普图片识别SDK。本代码可以识别中文。代码改自 http://www.cocoachina.com/bbs/read.php?tid=123463 。 图片就不贴了,123463中的效果是可以达到的。 在文字识别上,如123463所说,需要二值化。 本代码中加入了opencv代码,在图片识别前做了二值化等预处理。 对纯色背景,识别率较高。 对有花纹的,别抱太大希望。毕竟是本人对图片优化不是非常熟悉,不可能做到非常好。 因为源代码太大了,所以分享在网盘。 http://pan.baidu.com/share/link?shareid=369... 阅读全文
posted @ 2013-08-15 19:44 pangbangb 阅读(374) 评论(0) 推荐(0) 编辑
上一页 1 ··· 203 204 205 206 207 208 209 210 211 ··· 249 下一页