2009/02/28

FCKeditor含有大量小文件

今天整理硬盘目录权限时,发现给 D 盘全盘文件设置权限花费了大量时间,实在在等不及,就中断了设置。根据经验,应该是这个盘含有大量小文件;而我在断开之前,看到系统一直在 FCKeditor 的 svn 文件夹中工作。这个目录是平时跟踪该项目开发进展以及写 JavaScript 参考源代码之用,联想到之前几次 svn update 都花了不少时间,现在也用得少了,遂决定删除之。

不删不知道,一删吓一跳啊,这个项目文件数量居然有 12 万之众(含 .svn 工作文件),磁盘性能杀手啊: FCKeditor has a lot of small files

呼呼,总共花了 10 多分钟才删除完-__-! 这次删除意外发现 Windows 7 Beta 通过安装前几天的更新后,原来只能和 explorer 一起工作的任务栏进度指示,现在也可以工作在其他进程中了(如 Total Commander)^^

2009/02/19

We Are Fortunate to Witness History

As long as we crossed the ditch, what else can not solve the problem?

2009/02/18

jQuery plugin: Scrollite

I wrote a simple jQuery plugin today, called Scrollite. This plugin makes it easier to create a float layer, scrolling with the page. Here's the code:
jQuery.fn.scrollite = function(left, margin, duration) {
margin = parseInt(margin) || 0; duration = parseInt(duration) || 0;
return this.each(function() {
  var target = jQuery(this).css({position: 'absolute', zIndex: 10000})
      .css(left ? 'left' : 'right', margin + 'px');
  jQuery(window).bind('load scroll resize', function() {
      target.animate({top: (jQuery(window).height() + window.scrollY - target.height() - margin) + 'px'}, duration);
  });
});
};
Features & options:
  • Float it without writing CSS code.
  • Place the float container in the left or right (default);
  • Customize the speed of sliding by set duration time in millisecond (Immediately sliding is default behavior);
  • Customize the margin by set margin in pixel (default: 0)
Usage:
  • $('#node').scrollite();
    Paramless call, use all default options;
  • $('#node').scrollite(false, 10);
    Put it in the right with 10-pixel-margin;
  • $('#node').scrollite(true, 5, 20);
    Put it in the left with 5-pixel-margin, complete slide in 20 milliseconds.
Demo:
Just navigate to this page, and check out the simple code :)

2009/02/17

Google Chrome 2.0.162自定义缓存到Ramdisk (个人数据保留在硬盘)

之前的版本虽然可以通过在启动命令行添加 --user-data-dir 参数指定用户数据存放位置的方式将缓存设置到Ramdisk, 但是其他的个人数据(包括选项、cookies也一并保存过去了),系统重启后这些数据就会丢失。虽然网上有通过脚本的方式把ramdisk数据在关机时写回硬盘,但终究还是过于麻烦。这个版本终于增加了独立了自定义缓存设置,更新文档有这个说明,但并未给出参数名称。通过查看版本差异,终于在源代码看到这个参数,即 --disk-cache-dir。因此,对于盘符为R:的Ramdisk, 可以在启动命令行参数如下参数:

--disk-cache-dir=R:\TEMP

再次启动Chrome后,缓存位置就是R:\TEMP\Cache 更新文档:http://sites.google.com/a/chromium.org/dev/getting-involved/dev-channel/release-notes/untitledpost 下载: http://dl.google.com/chrome/install/162.0/chrome_installer.exe

2009/02/15

¥€$, 2009!

2009, 重新出发 :)