feedsky

WordPress

More...
 No Icon
  • 如何实现twenty-eleven主题中可收缩的搜索框2012-4-6wordpress自带主题twenty-eleven中的搜索框比较酷,而且比较实用,可以节省空间。其实现其实比较简,通过css给输入框设置了2个状态。
  • 粘贴代码不再需要切换到HTML模式2012-4-5用WordPress原始的tinymce在编辑含有大量代码的博文时,让人相当痛苦。每次嵌入代码都需要切换到HTML模式下,关键问题是多次在可视模式和HTML模式切换后,代码就变得面目全非了。尤其是在插入HTML代码的时候,不是<和>变成了<和>就是HTML代码直接被浏览器渲染出来了。
  • 配置wordpress的多站点模式(multisite)2012-4-4自3.0版本之后,wordpress已经支持一份wordpress的安装但是多个博客的模式—multisite,又叫wordpress的network。这里我打算配置这么一个环境,但是只不允许用户动态增加站点。我的主要目的是弄出一个演示的站点,用来试验折腾出来的东东。
  • 如何检测并优化你的网页载入速度二-实践篇2012-4-2大概一个礼拜前用google developers的page speed工具对我的首页进行了分析诊断,得到一个完整的优化方案,一直想要根据Google给出的方案优化下。直到现在终于有时间了。
  • 如何检测并优化你的网页载入速度2012-3-26尽管以我目前的访问量,还不需要考虑太多大量并发时候的性能方面的问题,但是提高单个页面的载入速度可以大大提升用户体验,还是非常有必要的。因此google了一把,大量现成的且免费的工具可以对页面进行测试并给出具体的优化方案。

Software

More...
 No Icon
  • 如何应用excel的条件格式功能2012-5-13本视频介绍了如何运用excel 2010的条件格式功能,同时也适用于excel 2007。 视频首先介绍了excel内置的一些格式化规则,接着通过2个例子介绍了如何通过公式来自定义格式化规则来达到各种复杂的需求。2个例子分别是如何奇偶行交叉格式化和问题跟踪列表中如何根据问题的状态来实时调整问题的显示格式。
  • Photoshop cs6的新特性2012-3-22Photoshop cs6 beta版现在可以免费下载试用7天,喜欢尝鲜的童鞋可以去官网下载玩玩,我已经下载安装完毕,并且已经爽过一把了。
  • win 8 初体验2012-3-1微软官网已经放出了win 8的用户体验抢先版,你可以下载exe安装文件,也可以下载一个ISO的镜像文件。如果是跟我一样在虚拟机里面玩玩的,建议下载一个ISO镜像比较方便,反正这不可能作为正式系统使用。大家也应该不会拿来当正式系统使用吧。exe安装文件下载地址:exe安装文件,ISO镜像文件地址:ISO。选择ISO镜像文件的话会有多种选择,不同的语言,还有32位和64位的区别.
  • EyeDefender – Protect your eyes2012-2-28EyeDefender is a small and free desktop software for windows users. It will count the minutes you using the computer and will show a green picture every 45 minutes for 2 minutes by default to let your eyes have a break.
  • Setup cvs server on windows 72012-2-24CVSNT is a version control software, help developers to manage their source code, control their versions and releases. Especially for a team collaboration. CVSNT now is not free any longer, you got to pay distribution fee if you download from its official website. However, you still can download if free with winCVS – a free [...]

Theme

More...
 No Icon
  • WordPress新主题-itiles2012-3-19折腾了一个周末搞了这个新主题,本来是想弄个内容集中点的首页,结果貌似看起来有点乱。没有设计细胞阿。
  • A simple theme – NOFF2012-2-23After several nights effort, my first purely hand-made simple theme comes out. The first version is indeed simple, only includes those necessary template files – header.php, footer.php, index.php, sidebar.php, single.php, page.php and those for search box and comment area.
 No Icon
  • Common concurrent task consumer2012-3-7Every time when computer program ran into performance issue, make it multi-threaded, always the first idea comes. So is this time, this is the forth time being asked to perform concurrent processing. Finally I decided to write a common concurrent task consumer java implementation to prepare for next time being asked again.
  • TO avoid “maximum open cursors exceeded” issue2012-3-3This is talking “maximum open cursors exceeded” issue while using java jdbc. Most of the time this issue is caused by non-closing statement. It’s generally good practice to close the statement when you are finished with them, usaully finished with the result set it produces. The result set will also be closed when the statement is closed. Here I gonna to show you two scenarios frequently happens in new java beginners.
  • Tomcat Classloader Demonstration2012-2-14In a J2SE 2 (that is, J2SE 1.2 or later) environment, class loaders are arranged in a parent-child tree. Normally, when a class loader is asked to load a particular class or resource, it delegates the request to a parent class loader first, and then looks in its own repositories only if the parent class [...]