本来觉得这个事情还是挺easy的不值得写上去,今天同事突然问我。我心想以前写过,但是就是想不起函数的名称的,于是翻了一下原来的代码。
function run() {
interval = setInterval(chat, '500');
}
var num=1;
function chat() {
console.info(num);
num++;
}
run();...
分类:
其他好文 时间:
2014-09-29 12:35:57
阅读次数:
235
locationservice使用ios8之前locationservice在应用开启self.locationManager=[[CLLocatonManageralloc]init][self.locationManagerstartUpdatingLocation];在iOS8上需要加上kCLAuthorizationStatusAuthorizedAlways,在app中的info.plist中添加NSLocationAlwaysUsageDescripti..
分类:
移动开发 时间:
2014-09-29 11:00:01
阅读次数:
179
1、南京景点一览表(含免费景点)http://www.nju.gov.cn/topic/ticket/2、景点简要介绍:http://www.nju.gov.cn/web_info/scenic/list/0/127/129.shtml3、公交线路一览http://www.njkgc.cn/inde...
分类:
其他好文 时间:
2014-09-29 10:05:47
阅读次数:
221
最新搜索的一些类库: 一、Requests for PHP(推荐) 官网:http://requests.ryanmccue.info 截止2014-09-28日为止,最新版:v1.6.0 for php 5.2.x 官方介绍: Requests is a humble HTTP request library. It si...
分类:
Web程序 时间:
2014-09-28 19:36:55
阅读次数:
259
Drupal使用.info文件来保存关于主题(theme)和模块(modules)的基本数据(metadata)。图文中文详解Drupal 7模块中的.info文件。...
分类:
其他好文 时间:
2014-09-28 14:58:02
阅读次数:
220
INFO: Initializing Spring root WebApplicationContextINFO : org.springframework.web.context.ContextLoader - Root WebApplicationContext: initialization ...
分类:
编程语言 时间:
2014-09-27 19:26:00
阅读次数:
249
批量添加用户1、按照/etc/passwd文件格式编写用户信息文件users.info xiaofang01::1001:503::/home/xiaofang01:/bin/bash #注意不能有空行,不然会报错 2、newusers 3、pwunconv #取消shadow password功能 4、以[用户名:密码]的格式编写密码文件passwd.info 5、chpasswd 6...
分类:
系统相关 时间:
2014-09-27 11:46:40
阅读次数:
289
一、msfconsole? 帮助菜单back 从当前环境返回banner 显示一个MSF bannercd 切换目录color 颜色转换connect 连接一个主机exit 退出MSFhelp 帮助菜单info 显示一个或多个模块的信息irb 进入irb脚本模式job...
分类:
Web程序 时间:
2014-09-27 10:54:09
阅读次数:
258
本篇记录在学习Linux内核源码过程中对一些知道但不熟悉不会用的数据结构进行记录。
union
是在学习进程复制函数do_fork中遇到的:
union thread_union {
struct thread_info thread_info;
unsigned long stack[THREAD_SIZE/sizeof(long)];...
分类:
系统相关 时间:
2014-09-26 22:02:38
阅读次数:
298
1、History
使用History可以查看以前执行的命令
GGSCI (ogg1) 5> history
GGSCI Command History
1: infoa
2: inf
3: info all
4: show all
5: history
2、!
使用!可以再次执行上次执行的命令
GGSCI...
分类:
其他好文 时间:
2014-09-26 12:53:38
阅读次数:
185