Jessica's Reading ProblemTime Limit:1000MSMemory Limit:65536KTotal Submissions:8787Accepted:2824DescriptionJessica's a very lovely girl wooed by lots ...
分类:
其他好文 时间:
2015-09-24 22:34:31
阅读次数:
293
操作流程1.接收通知2.注册发送通知用途:提示时间,闹钟//接收本地通知(在Appdelegate里面实现)- (void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotificatio...
分类:
移动开发 时间:
2015-09-24 22:34:21
阅读次数:
251
TabelView分组。表头,表尾删除vc 搭建tvc分组界面中return 2 分2组;在控制行加判断 如果section== 1 return10 (此时012 0123456789)在sb中选中tv在style右样式改成Grouped 此时有了间隔控制分组题头和尾。有个字符串-(NSStrin...
分类:
移动开发 时间:
2015-09-24 22:36:39
阅读次数:
320
A peak element is an element that is greater than its neighbors.Given an input array where num[i] ≠ num[i+1], find a peak element and return its index...
分类:
其他好文 时间:
2015-09-24 22:36:17
阅读次数:
177
代理:又叫委托 自己不能去办的事委托给别人去办之前学过的 UIAlertView UITextField都是使用了代理反向传值代理 代理Block写代理的步骤需要帮忙的人(请求帮代饭的人)1.声明代理里面的的协议方法(@protocol)2.声明协议的属性3.什么时候需要触发这个代理方法4.通过协议...
分类:
移动开发 时间:
2015-09-24 22:34:38
阅读次数:
209
//闭包:类似Oc中的block 反向传值引起代码的回调func hasClosureMathes(arr : [Int],value:Int,cb:(num:Int,value : Int)->Bool)->Bool{ for item1 in arr{ if cb(num: item1,...
分类:
编程语言 时间:
2015-09-24 22:34:45
阅读次数:
204
自己负责的模块需要有个试卷打印的功能,需要将网页特定范围内的内容打印出来,所以选择了jquery.jqprint脚本用起来也非常简单。 //打印 $("#printPage").jqprint({ debug: false,//如果是true则可以显示iframe查看效果,默认是false imp....
分类:
Web程序 时间:
2015-09-24 22:34:13
阅读次数:
267
/**********************************/第一次capture环境配置:WireShark 官方下载,必须安装WinPCapCapture->Interfaces->选择使用的网卡中间Fliter为过滤器可以选择TCP,UDP等协议/******************...
分类:
其他好文 时间:
2015-09-24 22:33:45
阅读次数:
127
UFW是一个简化版的iptables,基于iptables,配置比iptables简单 默认UFW是关闭状态,即Ubuntu默认打开所有端口,比较危险。 检测状态 ufw status 设置默认状态,默认禁止所有连接(所有入站连接) ufw default deny 启用某个端口 ...
分类:
系统相关 时间:
2015-09-24 22:33:52
阅读次数:
252
_______________________________________________2015/9/24____________________________________________________________________ 今天开始学习多级联动,首先我开始看了dede的联....
分类:
Web程序 时间:
2015-09-24 22:33:41
阅读次数:
254
1.先执行配置命令 make board_name_config 再执行编译命令 make all2. 通过在Makefile中找到 board_name_config 目标,可以查看为了得到目标而执行的命令,使标准文件指向实际的文件,确定Makefile中的变量值。3. 根据需要手动修改配置文件....
分类:
其他好文 时间:
2015-09-24 22:32:20
阅读次数:
225
1、sb中添加一个tv,箭头,Cell,创建tvc并关联2、建立Student对象,在。h中建立字符串name,语数英;3、在tvc创建数组,学生的对象, 初始化,获取字符串和内容(txt 的文件)分割字符串遍历拿到每一行,拿到每一行再分割每一行都要创建一个student,每个学生的姓名 语数英分数...
分类:
移动开发 时间:
2015-09-24 22:31:58
阅读次数:
240
web.xml CharacterEncodingFilter org.springframework.web.filter.CharacterEncodingFilter encoding UTF-8 forceEncoding true Cha...
分类:
编程语言 时间:
2015-09-24 22:34:16
阅读次数:
250
private boolean isName(String name) { String strPattern = "^[a-zA-Z][a-zA-Z0-9_]{4,15}$"; Pattern p = Pattern.compile(strPattern); Ma...
分类:
其他好文 时间:
2015-09-24 22:32:59
阅读次数:
140
不明白为啥一定有一个点re,而同样的c++用int就能跑过(吃屎了有木有)此刻我内心是崩溃的= =而且在bz和code上,两个程序跑出来的结果也是不一样的,一个re一个a了先发一个95分的吧,到时候我再查一下 var pre,last,other,long...
分类:
其他好文 时间:
2015-09-24 22:32:10
阅读次数:
226
今天听了一在线公开课,任务是做一个数字时钟,其中最关键的自然是获取当前的系统时间。做个简单的记录,如下:1.Time time = new Time("GMT+8");time.setToNow(); //Sets the time of the given Time object to the c...
分类:
移动开发 时间:
2015-09-24 22:30:48
阅读次数:
195
DatePickerDialog 的监听 new DatePickerDialog(this, new DatePickerDialog.OnDateSetListener() { @Override public void onDateS...
分类:
其他好文 时间:
2015-09-24 22:32:06
阅读次数:
293