by agate - Published: 2009-11-01 [8:03 下午] - Category: 软件使用

1. Bubble Translate
介绍: 一个很出色的划词翻译插件.

2. Select It
介绍: 使用 Shift + F 来打开选中 url 或者 打开搜索

3. Xmarks
介绍: 是我一直使用书签同步插件. 支持各种主流浏览器

4. Google Tasks
介绍: 弹出一个浮动的 DIV 来显示 Gmail 里头的 Tasks 内容

5. Google Mail Checker Plus
介绍: Gmail 邮件查看器

6. China Weather
介绍: 中国天气预报

7. Chrome Bird
介绍: 优秀的 Twitter 客户端

8. TooManyTabs
介绍: Tab 管理插件

9. Firebug
介绍: 不用介绍了吧, Firefox 下的神器, 现在 Chrome 也可以装了

10. Switchy!
介绍: Proxy 切换插件

现在都可以直接到 https://chrome.google.com/extensions 上去下载插件了!
[更新ing]

Tags: [ , ] - Comments: View Comments
by agate - Published: 2008-10-09 [11:35 上午] - Category: 程序编码

之前说了一个十分好用的 ruby 天气插件 rweather. "r_weather! ruby 中获取天气的 API".

但是这个 rweather 插件有一个缺点, 就是它太简陋了! 只能获取当前天气状态, 而恰恰在这仅有的当前状态中却没有最高温度和最低温度, 只有当前温度以及外国人常用的感觉温度. 这个只能是小用用, 真正做个天气功能模块还是比较不足的!

又去 github 上面转了转, 看了很多 weather 的插件. 其中有两款让我十分喜爱, 一个是小日本写的 ruby-weatherhacks 和一个叫做 weatherman 的天气插件. 两者都有十分详细的信息获取. 当然小日本那个是日语的服务器, so... 我们还是用 weatherman 吧!

weatherman 这个插件使用方式几乎和 rweather 一样!(都是通过 weather.com 请求信息). 更重要的是, weatherman 可以获取 '当前', '当日', '3天', '周五' 等多种多样的信息格式! 具体的查看 README 文件就十分明白了!

Tags: [ , , ] - Comments: View Comments
by agate - Published: 2008-09-14 [11:00 下午] - Category: 软件使用

自从升级到 Firefox3 后, 已经离开迅雷 Firefox 插件好多个月了. 但是总是不爽! 并不是所有的链接都可以简简单单拖到浮动窗口中了事的~ 现在一大堆反盗链的很讨厌, 老是给出错误的东西, 必须到其专属页面才能下载. 我火大了! 开始搜寻解决之道, 嘿~ 被我给找到了!

${迅雷目录}\Components\ExplorerHelper\ 目录下有一个叫做 thunder.xpi 的文件, 这个就是我们的迅雷 Firefox 插件了, 但是由于 Firefox3 的安全限制不能使用! 所以, 动手修改其并让其兼容 Firefox3.

第一步, 重命名 thunder.xpi 为 thunder.zip. 提取其中的 install.rdf 文件.

第二步, 修改:
<em:updateURL>https://addons.mozilla.org</em:updateURL>
黄色部分修改部分

第三步(可选), 修改:
<em:version>3.9</em:version>
只是为了区分原来的版本拉!

第四步, 将修改好的 install.rdf 替换原来 thunder.zip 中的文件, 最后将 thunder.zip 重命名为 thunder.xpi

我们的修改就完工了, 最后在 Firefox 运行的时候将 thunder.xpi 拖到界面中安装/重启即可使用!
(注: 似乎用下来没什么兼容性问题!)

Tags: [ , ] - Comments: View Comments
by agate - Published: 2008-05-10 [6:34 上午] - Category: 软件使用

Eclipse is a global community. It is in everyone’'s interest to ensure that Eclipse is available and translated in as many locales as possible.

Babel will be a set of tools to make the job of globalizing Eclipse projects easier. We also want to provide ways for people world wide, who are interested, to contribute translations in their language of choice.

The project will include tools and activities that are needed to adapt the Eclipse deliverables to properly run in multiple locales and to translate selected Eclipse projects into multiple different languages (French, Japanese, German, etc). The project could eventually include tools to aid in the following areas: Enablement testing (E.g. can the software run in different language environments and handle multiple scripts, etc.), translatability testing (is it ready for translation?), preparation for translation (preparation of resource bundles), Translation testing (Is the translation acceptable?), and more.

So, visit the url : http://www.eclipse.org/babel/ for more information.

Tags: [ , ] - Comments: View Comments
by agate - Published: 2007-09-21 [9:41 下午] - Category: 程序编码

最近由于学习struts2.0和webwork的需要我尝试了eclipsework的eclipse插件的使用。可能是因为财力问题,或者是作者无力再维护的缘故,eclipsework的wiki以及FAQ十分少,甚至连基本的文档都没有,只留下sourceforge的一些看不懂的视频……

管他的!但是用的时候发现其webwork的action.xml向导文件再进行动态更新xwork.xml的工作中始终无法找到xwork.xml让我十分头疼,甚至连google和baidu都无法受到解答(尽是一些同样问题的提问……)。

没办法咯,只好自己开始翻看他的src发现似乎是在解析xml-update的时候出现了问题,仔细翻看action.xml文件发现
<xml-update file="xwork.xml">
  <package name="${xwork_package_name}" extends="${xwork_package_extends}"
   namespace="$!xwork_package_namespace" check-before-create="true">
    <action name="${xwork_action_name}" class="${action}"
     method="$!methodName">
      <result name="success" type="${radio}">${resultName}</result>
    </action>
  </package>
</xml-update>

这个file到底是什么,如果只是xwork.xml应该不会出现这个问题的……

进一步查看官方网站的资料发现:file是一个标签,可以指定到一个文件
哈哈终于真相大白,原来这个template包是有小小的bug的,只要在签名适当的地方加入
<file name="xwork.xml" label="xwork.xml" type="folder" extensions="xml"/>
就行了!

这样变解决了eclipsework中的webwork自动生成的问题!再次感谢eclipsework的作者!一个让我感动的插件!

Tags: [ , , ] - Comments: View Comments