Submitted by gouki on 2010, October 14, 10:43 AM
Linux下面有个link功能很爽。事实上就相当于建了一个快捷方式,可是他可以直接操作。但windows不太一样,比如我在D盘建一个E盘的快捷方式,命名为test,那我不可以用d:\test\www来访问e:\www这个目录,这个其实很不爽的。。
LinkShellExtension这个软件我还没有用过,不过看上去好象不错,看介绍,好象是和linux下面的link差不多,所以我先转一份,等有空了,慢慢折腾
Link Shell Extension 是一个可以在 NTFS 文件系统中创建“硬连接”的 Windows 资源管理器扩展。
“硬连接”让一个文件在多个目录下重复出现,但只占用一份文件的空间。例如,一个大小为 10MB 的“E:\a.doc”的文件,创建一个硬连接到“E:\共享文件夹\a.doc”中,则两个“a.doc”文件只占用一个文件的空间(10MB),两个 文件的内容当然是完全一样的。如果编辑该文件的编辑器在修改保存文件时,依然保持源文件在 NTFS 文件夹中的位置,那么在“E:\a.doc”上所作的改动会自动反映到“E:\共享文件夹\a.doc”中。同理,修改了“E:\共享文件夹 \a.doc”文件后,所作的修改也会立即反映到硬连接对应的“E:\a.doc”文件。
创建硬连接之后,删除硬连接的副本(即连接点)只会将文件系统对文件数据的引用减一,只有删除所有的引用时,才真正删除文件。
“硬连接”还可以用于目录,这称为“目录连接点”(Junction)。例如,可以为“C:\Applications”目录创建一个硬连接到“E:\共 享文件夹\Applications”,则两个目录共享同样的存储空间,在“C:\Applications”目录中对任何文件所作的改动都会立即反映到 “E:\共享文件夹\Applications”目录中对应的文件中去。同理,修改“E:\共享文件夹\Applications”目录中的文件,改动也 会立即反映到“C:\Applications”目录中去。
对于目录连接点需要注意:目录连接点连接到原来的目录,如果将源目录删除,则其连接点将不再可用,这与文件硬连接是不同的。
安装方法:
1、到主页下载安装文件,执行安装;
http://schinagl.priv.at/nt/hardlinkshellext/hardlinkshellext.html#contact
2、在此下载汉化文件;
3、使用资源管理器打开 Link Shell Extension 所安装到的目录,将“HardlinkShellExt.dll”重命名为其他名称的文件;
4、将汉化文件解压到该目录;
5、注销(或重启)后重新登录到 Windows。
创建硬连接的操作方法:
1、在 Windows 资源管理器中,找到需要创建硬连接的文件,如
“E:\a.doc”;
2、右键点击该文件,选择“选择源连接点”。
3、转到需要创建连接点的地方,如“E:\共享文件夹”。
4、右键点击资源管理器文件列表的空白位置,选择“创建硬连接”(如果是目录,可选择“创建连接点→目录连接点[或其他选项]”)——在资源管理器的状态栏中对操作命令有说明。
--EOF--
主要是我订阅了汉化新世纪的RSS,所以才会看到这个。。。http://www.hanzify.org//software/12331.html
Software | 评论:0
| 阅读:19583
Submitted by gouki on 2010, October 13, 12:29 PM
Editplus和netbeans是什么我想不用详细介绍了吧。一般做PHP开发的人,几乎都了解这两个玩意。
Editplus是韩国人开发的,Netbeans是Sun的产品。
先说Netbeans吧,嗯,他们的东西还算不错,只是让我们写PHP的人郁闷的是,它没有自动换行(line wrap),所幸,6.10开始,这个功能已经被加进去了。现在用6.10M1的版本都可以进行尝试,但在尝试前,请记住(扫描项目的时候,不要设置换行,否则80%的机率会让你的NB爆掉)。
官方这样解释:
XML/HTML代码
- Guys from editor infrastructure asked me to help him to test new editor infrastructure that brings up also line wrapping features. Probably you remembered that this feature was enabled during NetBeans 6.9 development, but because it introduced many problems and there wasn't time to stabilize it enough, it's not in NetBeans 6.9 available.
-
- We would like to stabilize the new infrastructure as much as possible before it will be switch on to be be available by default.You can enable the feature in development build through command line option: -J-Dorg.netbeans.editor.linewrap=true . Do it only with a development build, even if the optoin works in NetBeans 6.9, the new infrastructure is not stable enough there.
-
- So I would like to ask you, if you use a latest development build, run the build with the mentioned option. You can start NetBeans from command line with the option or place the option in the ${nb_dir}/etc/netbeans.conf file (add into netbeans_default_options).
-
- When you started NetBeans with this, there should be Line Wrapping option in the formatter.
-
- When you find out an issue with it, please report it in our Bugzilla. For such issue the product should be Editor, component Painting & Printing and please mark all reports with the status whiteboard: linewrap so we can easily track them. The tentative plan is to enable this again for M1 of NetBeans 6.10 but this all depends on the additional feedback and testing.
所以昨天我换过了新版本进行了尝试。只是效果没有想象中的那样好。但,总比不能换行好。这是实际效果:
只是换行后多了一个回车显示着而且不能消失,看起来有点挫。。
接下来说Editplus,昨天晚上,乔大姐(HonestQiao,乔楚)兴冲冲的在群里说,Editplus支持PCRE的正则了,大家快更新啊,不更新会后悔的。。于是到官方看了一下changelog,然后进行了更新。
再接下来就测试,结果,让人大吃一斤的是,有很多正则条件输进去,立刻就把Editplus给爆了,比如:?\d、.*+?之类的,还有就是.*能够匹配一行,.*?一个也不能匹配。
不过简单的正则匹配还是没问题的(如果你升级了该版本,建议你在正则搜索前,先保存你的代码,否则可能会想哭但是哭不出来)
官方的changeLog: 'Use TR1 regular expression' option ('Preferences'->'General').
据说,最后乔大姐忍不住发邮件去鄙视那位开发者了。
Tags: editplus, netbeans
Software | 评论:4
| 阅读:21463
Submitted by gouki on 2010, October 6, 8:14 PM
这是我收到的zendstudio发的邮件,我并非是为了宣传那个coupon code,而是被这个标题所吸引。。那就是现在的标题。
看内容吧(list one才是重点):
We've just launched the Beta 2 release of Zend Studio 8.0! This release adds exciting new capabilities to the industry-leading PHP IDE:
• |
|
Run and debug your PHP application in a virtual, production-like environment right from the Zend Studio interface with new VMware Workstation integration |
• |
|
Develop your JavaScript code faster with Content Assist support for jQuery, Dojo, ExtJs, and Prototype |
• |
|
Debug JavaScript front-end code and PHP back-end code in a single, unified debugging session, through a new set of integrated Ajax tools |
• |
|
Develop projects over a remote server transparently with revamped remote system support |
• |
|
Navigate through and edit your source code more quickly and smoothly thanks to enhancements throughout the interface |
|
|
To celebrate this exciting new beta release, Zend is offering a 25% discount* on online purchases of Zend Studio 7.2 made before October 31st! Take this opportunity to start using the top-ranking PHP IDE (as scored by InfoWorld) at a great price, and your license will include a free upgrade to Zend Studio 8 once it's officially released.
* Use coupon code CELEBRATE during checkout
Happy PHPing,
Zend - the PHP Company
Tags: zendstudio
Software | 评论:1
| 阅读:17810
Submitted by gouki on 2010, August 29, 10:28 PM
Dropbox这软件恐怕也不用多介绍,大家都明白。国内类似软件也有不少。不过我真的不太想用这类类似软件。
我想要什么 ?我想要有dropbox这类软件的功能,但可以自主控制,比如我可以使用FTP来做这事,做一类似于SVN的事情。因为使用ftp或者sftp,对数据可以完整的控制,也不再受限。对于一些比较重要的文件,自己也能够放心的存储 。
找了一下,大约有以下几款软件可能会符合我的要求,但还没有尝试。不过我得尝试一下,下周就是我的尝试了。。。
1、DirSync Pro,不过,看介绍好象不能同步远程的。http://www.dirsyncpro.org/features.html,看了一下是不支持。
2、Capivara 是一个支持 SFTP 和 FTP 的文件同步工具,采用 Java 语言开发。通过对文件的时间戳和 SHA-1 哈希值进行文件的比较以便决定是否同步,同时可预览即将进行的同步操作,防止一些误操作。http://capivara.sourceforge.net/,这个是用java,就是不知道效率怎么样。
3、OpenPiczzais是一个免费版本的Piczza文件传输服务。它可以让你可以安装自己的Piczza服务功能。(事实上我真没仔细看,不过看到居然有openpiczza服务,所以准备尝试一下)
总之,也希望看到本文的朋友推荐一些软件(需要支持自己的FTP服务,就象xmarks之类的)。总之最后如果再不行了就只有SVN或者GIT了。其实上我不需要版本控制,但如果有变动,总能够覆盖或合并本地吧?
Tags: dropbox
Software | 评论:2
| 阅读:20500
Submitted by gouki on 2010, August 25, 3:50 PM
众所周知,Editplus是不支持查看16进制的文件的,那可是ultraEdit的特长。
因此,上午有人在QQ群里问Editplus是否支持16进制查看的时候,我毫不犹豫的说不支持,但下午,我在使用Editplus的时候,突然发现了工具栏上有个图标:
Hx?16进制?于是乎随便打开一个文件,并点击一下。。结果真的出来了
文件内容如下:
点击Hx图标,显示:
看来,我真的落伍了。。打开官网看了一下changelog,果然,就在第一条:
Tags: editplus, ultraedit, hex
Software | 评论:0
| 阅读:48661