This month marks the second anniversary of the acquisition of
Open Kernel Labs (OK Labs) by General Dynamics (GD). It also marks ten years of us engaging with Qualcomm on commercialising L4 microker...
分类:
其他好文 时间:
2014-09-01 10:45:23
阅读次数:
352
时间真快,总结的7月份英语学习总结刚刚结束,转眼间又该对8月份的英语学习进行小节了。
进入8月初,下发了一个文档,用一个星期的时间学音标,纠音。在王美的带领下我组也发起了纠音运动。刚开
始纠音的时候,我就感觉自己读的对,就是这么读的,而且跟赖老师读的一模一样,怎么他们听的就不一样呢?纠的
多了,听的多了,其实最后发现,还是听力不到位,还没“分辨是非”的能力啊。一周的纠音活动结束后,...
分类:
其他好文 时间:
2014-08-31 17:20:51
阅读次数:
219
客户经常提出这样的需求,当用户选择某一时间时,图表中显示所选时间之前一年的数据。下面是我的方法,如有不当,请多指教:
数据准备如下所示:
SalesData:
LOAD
Num(ID) as ID,
Date(Date) as Date,
Month,
Num(Year) as Year,
Num(Sales) as Sales
Inline [
ID, Dat...
分类:
其他好文 时间:
2014-08-31 15:51:01
阅读次数:
222
CI应用目录下有一个language语言包目录,用来配置多种不同的语言。语言的配置位于config文件中,配置格式如下: ?? ? $config[‘language‘] = ‘english‘; 定义语言文件 language下有个空的english目录,即上面定...
分类:
其他好文 时间:
2014-08-30 21:50:20
阅读次数:
314
function transDate(num:Number):String{ date=new Date(num*1000); return date.fullYear+"/"+(date.month+1)+"/"+date.date; }
分类:
其他好文 时间:
2014-08-29 17:54:38
阅读次数:
534
#include#includeusing namespace std;//日期函数int days[12]={31,28,31,30,31,30,31,31,30,31,30,31};struct date{ int year,month,day;};//判闰年inline int leap(in...
分类:
其他好文 时间:
2014-08-28 13:13:39
阅读次数:
199
1221 - Travel Company
PDF (English)
Statistics
Forum
Time Limit: 2 second(s)
Memory Limit: 32 MB
A travel company is planning to launch their bus service in a...
分类:
其他好文 时间:
2014-08-27 20:35:18
阅读次数:
292
1123 - Trail Maintenance
PDF (English)
Statistics
Forum
Time Limit: 2 second(s)
Memory Limit: 32 MB
Tigers in the Sunderbans wish to travel freely among the N...
分类:
其他好文 时间:
2014-08-26 21:30:56
阅读次数:
360
jQuery遍历table中的tr td并获取td中的值
$(function(){
$("#tableId tr").find("td").each(function(){
var year = $("#year").val();
var month = $("#month").val();
var day = $(this).tex...
分类:
Web程序 时间:
2014-08-25 22:53:25
阅读次数:
242
Java 兔子问题(斐波那契数列)扩展篇
斐波那契数列指的是这样一个数列 0, 1, 1, 2,3, 5, 8, 13, 21, 34, 55, 89, 144, ...对于这个数列只能说将兔子生产周期第为3月,如果生成周期变成4月这个数列肯定不是这样的,或者说兔子还有死亡周期,在这里我是对兔子生产周期没有限定,只要月份大于生产周期都可以计算出第month月份到底能产生多少对兔子。
Java兔...
分类:
编程语言 时间:
2014-08-25 13:26:44
阅读次数:
434