localdeli is a Windows client for the del.icio.us social bookmarking site.
Firefox 好玩的地方太多了, 文中提到的设置下拉菜单中显示的数目这个我比较喜欢,默认的 12 个稍微有点多,这样展示会有点慢,我改成了 6 个,这样就好多了.
其中 OldBar add-on 和 CyberSearch extension 这两个扩展蛮有意思的.
MailTwitterPHP is an email to Twitter gateway script.
MailTwitterPHP will make an attempt to connect to a specified IMAP inbox, cycle through all email and attempt to post the body of each email as a new Twitter to a specified Twitter account.
A simple "plugin" that allows picasa users to upload their photos to flickr
说是说无需打开浏览器,其实就是打开一个浏览器,只是把浏览器的几乎所有功能都屏蔽了而已,占用内存也不少,不过偶尔用用也不错
建立自己的 Firefox weave 服务器
Firefox Weave 确实是不错的应用,但是官方服务器非常的慢,如果有条件的话,不妨自己搭建个 weave 服务器好了.
以 Debian 为例.
安装apache2:
apt-get install apache2
让apache2支持webdav:
cd /etc/apache2/mods-enabled/ ln -s ../mods-available/dav*
然后建立weave的主目录,并修改其所有者:
mkdir /var/www/weave chmod -R www-data:www-data /var/www/weave
添加认证用户:
mkdir /etc/apache2/passwd htpasswd -c /etc/apache2/passwd/passwords weave(用户名)
添加认证:
vim /etc/apache2/sites-available/default
在最后添加 (因为 chyrp 解析原因,我在 Location 前加了空格):
< Location /weave/> Dav On AuthType Basic AuthName "WebDAV Restricted" AuthUserFile /etc/apache2/passwd/passwords require user weave < /Location>
最后重启apache2
/etc/init.d/apache2/restart
参考 How to set up server, 补充一个, Win平台利用apache2架设Weave服务器