由于前天听大家的成果展时,做得笔记不够完善,有一两个组找不到信息,如果没有评到的组望谅解。分数分配:由于组内某些原因,我们现重新分组:
分类:
其他 时间:
2015-06-05 15:14:04
收藏:
0 评论:
0 赞:
0 阅读:
147
...
分类:
其他 时间:
2015-06-05 15:13:54
收藏:
0 评论:
0 赞:
0 阅读:
269
操盘策略:只做大概率事件字体: 大 小 换肤: 收藏2015-06-05 13:56:02 在A股市场这个新兴资本市场中做投资,策略的运用显然要重过战略。那么投资者在投资策略运用上又该如何选择呢?我个人认为最佳的投资策略其实很简单,就是只做大概率事件。 政策与经济走向影响最大 影响资本市...
分类:
其他 时间:
2015-06-05 15:13:34
收藏:
0 评论:
0 赞:
0 阅读:
245
本博客及网站www.ltmonitor.com致力于gps和视频软件平台的开发技术分享,欢迎车载设备厂商有好的符合交通部部标的硬件产品和综合解决方案,投放在本博客当中。
分类:
其他 时间:
2015-06-05 15:13:04
收藏:
0 评论:
0 赞:
0 阅读:
329
这篇总结你可以读到:UITableView高度计算和估算的机制不同iOS系统在高度计算上的差异iOS8 self-sizing cellUITableView+FDTemplateLayoutCell如何用一句话解决高度问题UITableView+FDTemplateLayoutCell中对RunL...
分类:
其他 时间:
2015-06-05 15:12:14
收藏:
0 评论:
0 赞:
0 阅读:
249
看内核时总遇到if(likely( )){}或是if(unlikely( ))这样的语句,最初不解其意,现在有所了解,所以也想介绍一下。likely() 与 unlikely()是内核(我看的是2.6.22.6版本,2.6的版本应该都有)中定义的两个宏。位于/include/linux/compil...
分类:
其他 时间:
2015-06-05 15:11:34
收藏:
0 评论:
0 赞:
0 阅读:
270
我需要的不是一个与数据库表映射的ORM,而是需要一个与内存数据集动态映射的ORM。
分类:
其他 时间:
2015-06-05 15:10:34
收藏:
0 评论:
0 赞:
0 阅读:
236
一、板卡概述 本板卡由我公司自主研发,板卡采用DSP+FPGA的结构,DSP使用TMS320C6455芯片,FPGA采用ALTERA的高端FPGA芯片Stratix II EP2S系列EP2S130,板卡使用FPGA用于获取双通道数据采集,实现1路的FULL Camera Link输入,一路DVI....
分类:
其他 时间:
2015-06-05 15:10:14
收藏:
0 评论:
0 赞:
0 阅读:
563
开发GPS平台的时候,必须要首先阅读交通部的jt/t 796 , jt/t808和jt/t809的文档,以此作为自己的功能设计的需求来源,行业需求或用户需求是排在后面的。很多开发团队做出来的平台为什么不能过检测,就是因为没有沉下心来,仔细阅读文档,以为是个概念,可以随性而来,在设计的时候,过于偏向行...
分类:
其他 时间:
2015-06-05 15:10:04
收藏:
0 评论:
0 赞:
0 阅读:
287
问题描述:在eclipse下运行hadoop项目,没有输出日志,警告如下,意为没有找到log4j文件。log4j:WARN No appenders could be found for logger (org.apache.hadoop.util.Shell).
log4j:WARN Please initialize the log4j system properly.
log4j:WARN S...
分类:
其他 时间:
2015-06-05 14:05:04
收藏:
0 评论:
0 赞:
0 阅读:
402
下载openwrt项目源码,参考http://blog.csdn.net/u011641885/article/details/46348267编译交叉工具链:进入工作目录,执行make menuconfig,选择编译交叉工具链,如图保存,退出,执行make V=99 命令,等待编译完成编译之后的交叉工具链是一个压缩包,在工作目录的bin目录下,如图此压缩包需要解压才能使用。(根据需要,可以把解压...
分类:
其他 时间:
2015-06-05 14:04:54
收藏:
0 评论:
0 赞:
0 阅读:
265
查找某一结点的邻居: virtual int firstNbr(int i) { return nextNbr(i, n); } //首个邻接顶点
virtual int nextNbr(int i, int j) //相对于顶点j的下一邻接顶点
{ while ((-1 < j) && (!exists(i, --j))); return j; } //逆向线性试探(改用邻接表可提...
分类:
其他 时间:
2015-06-05 14:04:34
收藏:
0 评论:
0 赞:
0 阅读:
242
Remove Nth Node From End of List
题目:
Given a linked list, remove the nth node from the end of list and return its head.
For example,
Given linked list: 1->2->3->4->5, and n = 2.
After r...
分类:
其他 时间:
2015-06-05 14:04:14
收藏:
0 评论:
0 赞:
0 阅读:
228
Valid Parentheses
题目:
Given a string containing just the characters ‘(‘, ‘)’, ‘{‘, ‘}’, ‘[’ and ‘]’, determine if the input string is valid.
The brackets must close in the correct order, “()”...
分类:
其他 时间:
2015-06-05 14:03:54
收藏:
0 评论:
0 赞:
0 阅读:
236
Merge Two Sorted Lists
题目:
Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first two lists. 题意:
合并两个排序过的链表 思路:...
分类:
其他 时间:
2015-06-05 14:03:34
收藏:
0 评论:
0 赞:
0 阅读:
132
Fibsieve had a fantabulous (yes, it’s an actual word) birthday party this year. He had so many gifts that he was actually thinking of not having a party next year.Among these gifts there was an N x N g...
分类:
其他 时间:
2015-06-05 14:03:24
收藏:
0 评论:
0 赞:
0 阅读:
206
启动tftp软件,并设置固件所在目录(Current Dircctory)和服务器IP(Service interface),服务器指的是PC机,如图: 开发板串口,网口与PC相连,启动开发板进入uboot,选择对应烧写方式...
分类:
其他 时间:
2015-06-05 14:03:04
收藏:
0 评论:
0 赞:
0 阅读:
143
此Demo有一个奇葩的bug
06-05 12:50:44.955: E/AndroidRuntime(16374): Caused by: android.view.WindowManager$BadTokenException: Unable to add window -- token android.os.BinderProxy@41d0c028 is not valid; is you...
分类:
其他 时间:
2015-06-05 14:02:14
收藏:
0 评论:
0 赞:
0 阅读:
203
The Vampires and Lykans are fighting each other to death. The war has become so fierce that, none knows who will win. The humans want to know who will survive finally. But humans are afraid of going to...
分类:
其他 时间:
2015-06-05 14:01:54
收藏:
0 评论:
0 赞:
0 阅读:
554
进入http://downloads.openwrt.org/barrier_breaker/14.07/网站找到符合处理器型号的软件源。参考下图:
找到之后编辑/etc/opkg.conf 文件,内容如下:src/gz barrier_breaker_base http://downloads.openwrt.org/barrier_breaker/14.07/ramips/rt305x/pa...
分类:
其他 时间:
2015-06-05 14:01:44
收藏:
0 评论:
0 赞:
0 阅读:
542