Due to IE10 published, I’ll conclude the methods that how to add trust sites in to IE of the version before IE10. General, there are three methods to ...
分类:
其他好文 时间:
2014-06-28 21:33:51
阅读次数:
1028
今天做一个Android的刮刮乐项目,里面用到很多的地方用到了getResources。
// 获得图片
//参数1:res是资源的引用,参数2:id是图片的id
after = BitmapFactory.decodeResource(getResources(), R.drawable.b);
before = BitmapFactory.decodeResource(get...
分类:
移动开发 时间:
2014-06-22 22:15:06
阅读次数:
278
1、触发器:
CREATE TRIGGER trigger_name trigger_time trigger_event
ON tbl_name FOR EACH ROW trigger_stmt
其中trigger_name标识触发器名称,用户自行指定;trigger_time标识触发时机,用before和after替换;trigger_event标识触发事件,用insert,updat...
分类:
数据库 时间:
2014-06-22 17:30:09
阅读次数:
350
Reverse digits of an integer.
Example1: x = 123, return 321
Example2: x = -123, return -321
Have you thought about this?
Here are some good questions to ask before coding. Bonus points for y...
分类:
其他好文 时间:
2014-06-22 09:31:16
阅读次数:
220
JMM规范:The rules for happens-before are:Program order rule. Each action in a thread happens-before every action in that thread that comes later in the ...
分类:
其他好文 时间:
2014-06-21 06:49:15
阅读次数:
350
貌似不影响提交。。。。。。。。还是有人提交成了。昨天晚上提交软件审核,遇到了Missing Push Notification Entitlement的问题。问题起因:这个版本我添加了PUSH推送功能,然后上传软件后,就提示Missing Push Notification Entitlement。...
分类:
移动开发 时间:
2014-06-20 21:32:02
阅读次数:
264
6.4.5 配合counter-increment属性添加编号 代码示范: //为该元素定义了一个计数器 元素{counter-increment:mycounter} //在该元素的前端插入定义的计数器 元素:before{con...
分类:
其他好文 时间:
2014-06-18 22:13:01
阅读次数:
179
svn提交错误file is scheduled for addition, but is missing
svn ci -m ""
svn: E155010: Commit failed (details follow):
svn: E155010: '/Volumes/File/ymall_Project/daling/trunk/GiftShop/GiftS...
分类:
其他好文 时间:
2014-06-16 21:19:39
阅读次数:
928
#includevoid change_1(int a, int b);void change_2(int *a, int *b);int main(){ int a = 10; int b = 20; printf("changed before:"); printf("a=%d\tb=%d\n....
分类:
其他好文 时间:
2014-06-15 11:55:24
阅读次数:
249
1 ifneq ($(KERNELRELEASE),) 2 obj-m := hello.o 3 4 else 5 PWD := $(shell pwd) 6 KVER := $(shell uname -r) 7 KDIR := /lib/modules/$(KVER)/build 8 al...
分类:
其他好文 时间:
2014-06-15 11:01:51
阅读次数:
349