随笔分类 -  生活

摘要:Type in terminal: 1. sudo gedit /etc/default/grub2. Find the line: GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"3. Change this to: GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi=force"4. Save the file and close the file.5. Finally, in terminal: sudo update-grub 阅读全文
posted @ 2013-03-25 20:05 qiangzhu 阅读(863) 评论(0) 推荐(0)
摘要:Sometimes you want to make a good impression with everyone and seem like you're interested in the rest of the group. Especially when you've just met some new people, it's usually better to lean towards the outgoing end of the scale. Getting that "quiet" label often works agains 阅读全文
posted @ 2012-05-05 19:29 qiangzhu 阅读(545) 评论(0) 推荐(0)
摘要:1.FindBugs -http://findbugs.cs.umd.edu/eclipse/eclipse plugin installation -http://findbugs.cs.umd.edu/eclipse2.PMD -http://pmd.sourceforge.net/eclipse/eclipse plugininstallation -http://pmd.sourceforge.net/eclipse3.CheckStyle -eclipse plugin installation -http://sevntu-checkstyle.github.com/sevntu. 阅读全文
posted @ 2012-04-26 15:15 qiangzhu 阅读(290) 评论(0) 推荐(0)
摘要:1.String,StringBuffer和StringBuilder区别String为immutable,StringBuffer为线程安全,StringBuilder非线程安全2.如何对一已知的List中的对象排序Collections.sort<List<T> list, Comparator<? super T> c>对象实现Comparator接口的compare(T o1, T o2)方法3.Java API中Arrays.sort(int[] a)排序算法是如何实现的if(len < 7){ //Insertion sort on sma 阅读全文
posted @ 2012-04-24 20:09 qiangzhu 阅读(201) 评论(0) 推荐(0)