上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 20 下一页
摘要: leetcode原文引用:Write a SQL query to delete all duplicate email entries in a table named Person, keeping only unique emails based on its smallest Id.+---... 阅读全文
posted @ 2015-08-05 21:46 crazy_itman 阅读(130) 评论(0) 推荐(0) 编辑
摘要: leetcode原文引用:How would you print just the 10th line of a file?For example, assume that file.txt has the following content:Line 1Line 2Line 3Line 4Line... 阅读全文
posted @ 2015-08-04 22:56 crazy_itman 阅读(136) 评论(0) 推荐(0) 编辑
摘要: leetcode原文引用:Given a Weather table, write a SQL query to find all dates' Ids with higher temperature compared to its previous (yesterday's) dates.+---... 阅读全文
posted @ 2015-08-04 17:41 crazy_itman 阅读(126) 评论(0) 推荐(0) 编辑
摘要: 原文算法说明如下:Given two strings s and t, write a function to determine if t is an anagram of s.For example,s = "anagram", t = "nagaram", return true.s = "r... 阅读全文
posted @ 2015-08-04 16:22 crazy_itman 阅读(120) 评论(0) 推荐(0) 编辑
摘要: 有两种方法:1、curl -x :举例:curl -x 12.99.109.52:8080http://developer.baidu.com/map/表示通过代理12.99.109.52的8080端口访问外网地址http://developer.baidu.com/map/2、wget -e "h... 阅读全文
posted @ 2015-07-23 14:25 crazy_itman 阅读(614) 评论(0) 推荐(0) 编辑
摘要: 使用最新的POI3.11时,在运行Workbook workBook = new XSSFWorkbook ();这段代码时出现错误:java.lang.NoSuchMethodError: javax.xml.stream.XMLEventFactory.newFactory()Ljavax/x... 阅读全文
posted @ 2015-07-15 16:20 crazy_itman 阅读(3689) 评论(1) 推荐(0) 编辑
摘要: compmgmt.msc 计算机管理 devmgmt.msc 设备管理器 diskmgmt.msc 磁盘管理工具 dfrg.msc 磁盘碎片整理 eventvwr.msc 事件查看器 fsmgmt.msc 共享文件夹管理 gpedit.msc 用户、分组策略管理工具 lusrmgr.msc 本地用户... 阅读全文
posted @ 2015-07-15 08:43 crazy_itman 阅读(210) 评论(0) 推荐(0) 编辑
摘要: 解决方案如下:找到项目所在的位置,然后找到.settings文件夹下面的org.eclipse.wst.common.project.facet.core.xml将改为即可 阅读全文
posted @ 2015-07-14 13:51 crazy_itman 阅读(288) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2015-07-13 20:37 crazy_itman 阅读(84) 评论(0) 推荐(0) 编辑
摘要: 找到根目录下所有的以test开头的文件并把查找结果当做参数传给rm -rf命令进行删除: 1、find / -name “test*” |xargs rm -rf 2、find / -name “test*” -exec rm -rf {} \; 3、rm -rf $(find /... 阅读全文
posted @ 2015-07-10 13:23 crazy_itman 阅读(351) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 20 下一页