旌旗博客

2007-01-12

Addons of my firefox

Filed under: I.T. — 标签: — rocky @ 17:44

Application: Firefox 2.0.0.1 (2006120418)
Operating System: WINNT (x86-msvc)

Total number of items: 39

  • Adblock 0.5.3.043

    Filters ads from web-pages
  • Adblock Filterset.G Updater 0.3.0.4

    Synchronizes Adblock with Filterset.G
  • AutoBrowse 0.7

    (Disabled)

    - screensaver browsing the net
  • del.icio.us Bookmarks 1.3.73

    Access your bookmarks wherever you go and keep them organized no matter how many you have.
  • del.icio.us Complete 1.3

    (Disabled)

    del.icio.us is a social bookmarks manager. It allows you to easily add sites you like to your personal collection of links, to categorize those sites with keywords, and to share your collection not only between your own browsers and machines, but also with others.
  • Download Manager Tweak 0.7.1

    (Disabled)

    A modification of the Firefox download manager that changes its appearance and allows it to be opened in a separate window, a new tab, or the sidebar.
  • DownThemAll! 0.9.9.7

    The mass downloader for Firefox.
  • Extension List Dumper 1.7.1

    Dumps a list of the installed extensions.
  • Fasterfox 2.0.0

    Performance and network tweaks for Firefox.
  • FireFTP 0.94.6

    (Disabled)

    FTP client for Mozilla Firefox.
  • FlashGot 0.5.97.03

    Enables single and massive (“all” and “selection”) downloads using the most popular external download managers for Windows, Mac OS X, Linux and FreeBSD (dozens currently supported, see Extension’s Home Page for details). FlashGot offers also a Build Gallery functionality which helps to synthetize full media galleries in one page from serial contents originally scattered on several pages, for easy and fast “download all”.
  • FoxyTunes 2.0.4

    Control any media player from Firefox and more…
  • GButts 1.4.7.1

    Display all of your Google Services as buttons just next to your “Home” button or anywhere you like it!
  • Gmail Notifier 0.5.6.5

    A notifier for Gmail accounts.
  • Google Toolbar for Firefox 2.1.20060807W

    Take the power of Google with you anywhere on the Web!
  • Html Validator 0.7.9.5

    (Disabled)

    Adds HTML validation to the View Page Source of the browser. The validation is done by Tidy from W3c.
  • IE Tab 1.3.0.20061230

    Enables you to use the embedded IE engine within Mozilla/Firefox.
  • Java Console 6.0

    (Disabled)
  • JavaScript Debugger 0.9.87

    (Disabled)
  • JSView 1.2.1

    View the source code of external stylesheets and javascripts.
  • MeasureIt 0.3.6

    Draw out a ruler to get the pixel width and height of any elements on a webpage.
  • NoScript 1.1.4.5.061221

    Extra protection for your Firefox: NoScript allows JavaScript, Java (and other plugins) only for trusted domains of your choice (e.g. your home-banking web site). This whitelist based pre-emptive blocking approach prevents exploitation of security vulnerabilities (known and even unknown!) with no loss of functionality… Experts will agree: Firefox is really safer with NoScript :-)
  • PDF Download 0.7.8

    Allows to choose what you want to do with a PDF file: download it, view it with an external viewer or view it as HTML!
  • RankQuest SEO Toolbar 3.5

    (Disabled)

    Rankquest SEO(Search Engine Optimization) Toolbar provides you quick access to more than 30 intuitive SEO tools. Once you download and install the SEO Toolbar you are only one or two clicks away from carrying out most of your day to day SEO operation
  • Resizeable Textarea 0.1d

    Resize textareas to your needs.
  • Tab Clicking Options 0.6.8

    (Disabled)

    Select actions for clicking events on a tab or the tabbar
  • Tab Mix Plus 0.3.5.2

    (Disabled)

    Tab browsing with an added boost.
  • Tabbrowser Preferences 1.3.1.1

    Enhances control over some aspects of tabbed browsing.
  • Talkback 2.0.0.1

    Sends information about program crashes to Mozilla.
  • UrlParams 2.01.02

    Displays the websides get/post parameters in the sidebar.
  • User Agent Switcher 0.6.9

    (Disabled)

    Adds a menu and a toolbar button to switch the user agent of the browser.
  • View formatted source 0.9.4.6

    (Disabled)

    View formatted and rendered source code
  • View Source Chart 2.5.02

    Creates a Colorful Chart of a Webpage’s Rendered Source.
  • W3C CSS validator 0.1.4

    (Disabled)

    W3C CSS online validator
  • Web Developer 1.0.2

    Adds a menu and a toolbar with various web developer tools.
  • Wizz RSS News Reader 2.1.6

    (Disabled)

    A fairly good RSS and Atom news reader.
  • wmlbrowser 0.7.8

    Display WML (Wireless Markup Language) content.
  • XHTML Mobile Profile 0.3.6

    Allows XHTML Mobile Profile to be displayed in the browser.

使用rsync同步

Filed under: I.T. — 标签:, — rocky @ 11:43

做网站开发经常碰到的问题是代码更新的问题。
直接用ssh登到服务器上操作总会遇到网络太慢的情况,于是传统的做法是在本地改,然后ftp上传。可是如果改的文件数量比较多,而且比较分散,就比较头疼了,费时费力而且很容易出错。如果你感到痛苦,就用rsync吧。
简单使用方法:

  • 1. 在服务器上配置文件:
    /home/kingtch/rsyncd.conf

    uid = rocky
    gid = rocky
    use chroot = no
    max connections = 1
    syslog facility = local5
    pid file = /var/run/rsyncd.pid

    [www]
    path=/home/kingtch/www
    comment = kingtch WWW repository (requires authentication)
    #auth users = rocky
    #secrets file = /home/kingtch/rsyncd.secrets
    hosts allow=221.217.166.54

    启动服务:rsync –daemon -v –port=10025 –config=/home/kingtch/rsyncd.conf

  • 2. 本地更新:
    从服务上更新本地代码:rsync -ruv –compress –links –progress –exclude=image rsync://www.kingtch.com:10025/www ./kingtch_www/

安全问题一直是r系列程序被世人诟病之焦点,所以需要注意:
1. 正确配置好配置文件中的uid、gid,使得服务器运行用户不可能越雷池。
2. 连接数作限制
3. 作IP限制
4. 目前rsync本身并不支持ssl,因此可能被窃取传输数据。但rsync可基于ssh等进行传输,所以问题不大。
5. 如果不麻烦的话,用完了就把服务器上的rsync服务关掉。

其实也有一些如FTPSync等软件可以实现基于FTP协议进行同步,相信是鼠标爱好者的同行们的可选项之一,只是其不支持加密的FTP,而且作者好像n年没更新了。

Powered by WordPress