2016-06-06 craneyuan
Question 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 removing the second node from the end, the linked list becomes 1->2->3->5. Note: Given n will always be valid. Try to do this in one pass. 解说 这道题的意思是,如何反向删 继续阅读 »
2016-04-11 Oliver Wang
最近做了一个表单,需要提交好多信息和一些图片,后台的同学说要图片随着表单一起提交。那就不能用 ajax 单张上传了~ 图片的话,最多可以选8张,选中了的也可以取消掉,因为并没有传到服务器,所以删除很easy。 然后我就想到了可以用 FormData 来做,因为之前好像用过,感觉很方便。 FormData The FormData interface provides a way to easily construct a set of key/value pairs representing form fields and their values, which can then be easily sent using t 继续阅读 »
2016-04-15 Eric Wang
**对代码不满足,是任何真正有天才的程序员的根本特征。** Value '0000-00-00' can not be represented as java.sql.Timestamp 在查询MySql数据库某表的timestamp列的时候,发现此异常,问题来源表述如下 1. 先创建一个测试表 sql create table test.mytest( id int PRIMARY KEY AUTO_INCREMENT , createtime timestamp not null default current_timestamp , --创建时间 updatetime timestamp not null , --更新时 继续阅读 »
2016-12-25 Bruce Wang
又到了一年一度的圣诞节,每当到了这天就意味着这一年就要结束了,也意味着又长了一岁。其实我不是一个特别喜欢写年终总结的人,但对于我来说,2016是“不安分”的一年。当然这里的不安分加了引号,因为我今年经历了挺多事,也成长了很多,我用下面几个词来总结我的2016: 读书 运动 房奴 跳槽 恋爱和分手 Be myself 2015年末,我还没有买房的打算,在家人的催促下,我开始看了几个楼盘,但是也没有太过认真对待这件事。再后来,我妈和我姐来南京也一起看了几个小区,最终在2016年的第一天定下了房子,也算在南京扎根了!当然,非常感谢我姐的果断,也感谢亲戚的帮助。说实话,就在那天我脑子里转的是,“嗯,有了它就意味着我肩上的责任更大了,我也将 继续阅读 »
2015-11-13 demon7452
参考文档 1.Spring注解详解 2.Moving the Steam client installation 3.Steam fatal error steam needs to be online to update, but was set to offline movies 继续阅读 »
2015-09-09 ZhangTitanjum
超级简单代码实现滑动退出 本文参考自 http://www.jianshu.com/p/59be4551c418 OK,接下来惯例,通过阅读本文你能学习到: ViewDragHelper的使用(如果你想学习自定义View,那么ViewDragHelper你绝对不能错过) 好像也没有什么了.... 这个效果,难度不大,会ViewDragHelper的同学应该10分钟就能写出来了吧~ 如果不会也没关系~以下是代码,请查看。 more 自定义Layout : SwipeBackFrameLayout java public class SwipeBackFrameLayout extends FrameLayout { 继续阅读 »
2015-11-05 Brian Li
在项目中使用的还是java1.7比较多,1.8平时业余项目用用,学习下,毕竟新版本始终会代替旧版本的.在mac上推荐使用jenv工具来管理多java版本, 能够随意切换. 官方网站http://www.jenv.be/{:target="_blank"},还有个是http://jenv.io/{:target="_blank"} 国人开发的算是升级版本把,能够通过该工具安装java,ant,maven,tomact.对于我来说,使用jenv足够了. 继续阅读 »
2016-04-15 Eric Wang
**对代码不满足,是任何真正有天才的程序员的根本特征。** Value '0000-00-00' can not be represented as java.sql.Timestamp 在查询MySql数据库某表的timestamp列的时候,发现此异常,问题来源表述如下 1. 先创建一个测试表 sql create table test.mytest( id int PRIMARY KEY AUTO_INCREMENT , createtime timestamp not null default current_timestamp , --创建时间 updatetime timestamp not null , --更新时 继续阅读 »
2020-10-05 Lingxian Kong
This blog was sent to openstack-discuss mailing list originaly. As the official Victoria release is approaching and it has been a long time silence for Trove in the upstream, I think it's good time for me as the Trove PTL for the last 3 dev cycles to have a project update. The things that will be described below have 继续阅读 »
2014-07-25 Kun Ren
(This article is adapted to the latest version of rvest package.) A large proportion of R's power should be attributed to the enormous amount of extension packages. Many packages are published to CRAN. 继续阅读 »