blogs.sun.com and ScribeFire
ScribeFire failed to works with blogs.sun.com recently. You can post a entry, but the entry will never be showed on the blog.I spent some time to try different options and finally find a workable one:
1. Launch the account wizard,
2. press Manually Configure
3. select Custom Blog
4. select roller, ignore the warning
5. Server API URL: http://blogs.sun.com/roller-services/xmlrpc
6. provide username and password
The blog url is missed in the api. So the view blog links will not work. You need change it manually.
1. Goto firefox profile folder, which is located in one of the following locations depending on your operating system:
Windows Vista |
Users\ |
Windows 2000, XP, Server 2003 |
Documents and Settings\ |
Mac OS X |
~/Library/Application Support/Firefox/xxxxxxxx.profileName |
Linux and Unix systems |
~/.mozilla/firefox/xxxxxxxx.profileName |
xxxxxxxx represents a random string of 8 characters. profileName should be default if don't create a new profile.
2. Edit extensions/performancing-bloglist.xml
Find your blog setting, for me it's:
Change the url to your blog url:<url>/wind/</url>
<blog>
<blogname>Whisht Wind</blogname>
<blogtype>roller_cus</blogtype>
<blogapi>metaweblog</blogapi>
<appkey/>
<username>wind</username>
<apiurl>http://blogs.sun.com/roller-services/xmlrpc</apiurl>
<GUID>28658d034-a18a-84e4-0284-51b0a859db5</GUID><blogid>wind</blogid>
<useboolean>false</useboolean>
</blog>
<url>http://blogs.sun.com/wind/</url>
One more thing: you also have to login to blogs.sun.com and enable the "Enable weblog client support?" setting in the Preferences tab.
Technorati Tags: ScribeFire, blogs.sun.com
NetBeans插件BlackBerry
一个用来开发黑莓程序的NetBeans插件. 下载地址 http://www.teesoft.info/content/view/36/36/#BlackBerryPlugin.
This is built from http://hg.netbeans.org/main/contrib/file/tip/mobility.plugins.blackberry/ with following features added:
1.
BlackBerry JDE Component Package support. You can register BlackBerry
JDE or BlackBerry JDE Component Package as the platform. You will get
full features if you register BlackBerry JDE as platform. But since
there are no simulator built in ,so you can just build your application
with BlackBerry JDE Component Package, no run and build support for
BlackBerry JDE Component Package.
2. non-windows os support. This
includes linux, solaris and any os with wine installed. You need Wine
to make this work. You can install the JDE or BlackBerry JDE Component
Package using wine or install them in a windows pc and copy to your
non-windows os. The BlackBerry JDE simulator is not so stable while
running in wine, but at least you can build your applications.
3. auto get JDE versions.
4. auto build alx file in your dist folder.
The patch can be find at:
http://www.netbeans.org/issues/show_bug.cgi?id=140871
有什么问题可以发到:http://www.teesoft.info/phpbb/viewforum.php?f=7.
Technorati Tags: NetBeans, BlackBerry, BlackBerry JDE, 8800, 8700, 8100
[Read More]
( 2008年07月19日, 07:13:46 下午 CST ) [Listen] Permalink 评论 [0]
RIM BlackBerry Plugin for NetBeans
RIM BlackBerry Plugin Module, support build BlackBerry applications with NetBeans JDE.
You can download it here: http://www.teesoft.info/content/view/36/36/#BlackBerryPlugin.
This is built from http://hg.netbeans.org/main/contrib/file/tip/mobility.plugins.blackberry/ with following features added:
1.
BlackBerry JDE Component Package support. You can register BlackBerry
JDE or BlackBerry JDE Component Package as the platform. You will get
full features if you register BlackBerry JDE as platform. But since
there are no simulator built in ,so you can just build your application
with BlackBerry JDE Component Package, no run and build support for
BlackBerry JDE Component Package.
2. non-windows os support. This
includes linux, solaris and any os with wine installed. You need Wine
to make this work. You can install the JDE or BlackBerry JDE Component
Package using wine or install them in a windows pc and copy to your
non-windows os. The BlackBerry JDE simulator is not so stable while
running in wine, but at least you can build your applications.
3. auto get JDE versions.
4. auto build alx file in your dist folder.
The patch can be find at:
http://www.netbeans.org/issues/show_bug.cgi?id=140871
You are welcome to post feedback to http://www.teesoft.info/phpbb/viewforum.php?f=7.
Technorati Tags: NetBeans, BlackBerry, BlackBerry JDE, 8800, 8700, 8100
非常郁闷中 NB-XUL居然不是我提的
刚刚注意到NetBeans的有奖资助开发计划中有个NB-XUL项目,实现的功能和我的FoxBeans类似。
不过居然不是我提交的。你说郁闷不郁闷。
FoxBeans可以在这里下载。注意这个链接可能需要点两次。第二次才能打开,不知道NetBeans的网站怎么做的。
( 2008年07月15日, 10:56:58 下午 CST ) [Listen] Permalink 评论 [0]
NB-XUL and foxbeans
Just notice there is a NetBeans grant project call NB-XUL.http://www.netbeans.org/grant/
Don't know whether they know there is foxbeans project which already implement some basic editor functions for Mozilla XUL.
You can download foxbeans here.
升级导致vpnclient问题以及解决方案
最近升级了系统,vpnclient就不工作了。总是停在Authenticating user.Negotiating security policies.
花了点时间终于找到了原因,原来是MTU太小了。不知道什么原因我的无线路由的dhcp服务总是返回一个很小的mtu 576。我可以手工将网卡的mtu设成以太网卡缺省的1500。改之后vpnclient就好了。可以用这个命令来改:
ifconfig eth0 mtu 1500
如下步骤可以使每次系统启动时都自动使用1500作为mtu。
1. 网卡启动前设置mtu为155
在/etc/network/interfaces 中 iface eth0 inet dhcp的后面加入这行:
pre-up /sbin/ifconfig $IFACE mtu 1500
如果你使用的固定ip就更简单了。你可以直接在iface eth0 inet dhcp下面加入mtu 1500。你也可以跳过下面的步骤。
2. 避免dhcp设置mtu
在/etc/dhcp3/dhclient.conf中找到request列表,删除其中的interface-mtu.
改之前:
request subnet-mask, broadcast-address, time-offset, routers,
domain-name, domain-name-servers, domain-search, host-name,
netbios-name-servers, netbios-scope, interface-mtu;
改之后:
request subnet-mask, broadcast-address, time-offset, routers,
domain-name, domain-name-servers, domain-search, host-name,
netbios-name-servers, netbios-scope;
重启。OK了。
Technorati Tags: vpn, cisco, vpnclient, mtu, dhcp [Read More]
My Tags: cisco
( 2008年07月10日, 09:32:05 下午 CST ) [Listen] Permalink 评论 [0]
vpnclient issues caused by small mtu
I upgraded my system to the last version. Then the vpnclient stop work. It will failed at Authenticating user.Negotiating security policies. I spent some time fighting on it. I found out if caused by the small MTU of my interface.
For some reason my wireless router's dhcp server return a very small mtu 576. I can make vpnclient work my manual increase the mtu value to the general ethernet interface mtu 1500 by:
ifconfig eth0 mtu 1500
And I changed the following settings to set the interface mtu to 1500 at system boot.
1. set mtu to 1500 before interface up
add the following to /etc/network/interfaces after iface eth0 inet dhcp:
pre-up /sbin/ifconfig $IFACE mtu 1500
If you are using static ip instead of dhcp you can direct put mtu 1500 bellow your iface line. And you can skip next step.
2. Avoid dhcp client set the interface mtu
Find the following line in /etc/dhcp3/dhclient.conf and remove interface-mtu.
Before modify:
request subnet-mask, broadcast-address, time-offset, routers,
domain-name, domain-name-servers, domain-search, host-name,
netbios-name-servers, netbios-scope, interface-mtu;
After modify:
request subnet-mask, broadcast-address, time-offset, routers,
domain-name, domain-name-servers, domain-search, host-name,
netbios-name-servers, netbios-scope;
That's all. Try it if you have this issue too. And please kindly let me know whether it works for you.
Thanks
Technorati Tags: vpn, cisco, vpnclient, mtu, dhcp
地震
四川汶川县发生了7.8级大地震,据说几乎整个东亚都有感。
地球真是太不安全了,好多地震啊,看看这个吧,最近地球上所有的5级以上的地震,每天n次:
http://earthquake.usgs.gov/eqcenter/recenteqsww/Quakes/quakes_big.php
[Read More]
My Tags: earthquake
Wine发布了1.0-rc1接近1.0了
今天无意间拿Wine在我的Ubuntu上运行了一下NetBeans的Windows版。让我吃惊的是居然毫无问题的运行了。执行了一下wine --version,居然发现已经是1.0-rc1了。
是个不错的消息,毕竟还有好多软件,游戏只有Windows版,有了Wine至少在某种程度上可以在linux上使用他们了。
为了方便使用OpenSolaris的朋友,我在OpenSolaris上编译了一个。需要的可以试试:
wine-1.0-rc1-solaris-5.11-i86pc.pkg.bz2
下载之后unzip,然后用pkgadd安装。
bunzip wine-1.0-rc1-solaris-5.11-i86pc.pkg.bz2
pkgadd -d wine-1.0-rc1-solaris-5.11-i86pc.pkg
安装路径为 /usr/local/wine.使用前请将/usr/local/wine/bin加入到PATH中:
export PATH=$PATH:/usr/local/wine/bin
开始使用了:
wine --version
wine notepad
....
[Read More]
My Tags: wine
Foxbeans 1.0.1.13 Released
Download it here: http://plugins.netbeans.org/PluginPortal/faces/PluginListPage.jsp?search=foxbeansFoxbeans is a netbeans plugin to support
create Mozilla/Firefox/Thunderbird addons/extensions using netbeans.
You can also import an existing addons project to netbeans.
Changes on previous releases:
Add importing project support.
Add an options to configure the installed mozilla applications to used
while do the testing. Add the selected mozilla application to the
project node as a refer. Please don't modify files under Application
node unless you what you are doing.
New functions added to 1.0.1.13:
Add i18n support for xul file.
It will search and put the hard coded string for following attribute to a dtd file.
*=tooltiptext,label,accesskey,tooltiptextdown,tooltiptextup,title,
toolbar=toolbarname
label=value
key=key
New functions added to 1.0.1.11:
1. Add two functions to add/remove the missed language items from
properties/dtd locale files. Correct Language Files and minimize
Language Files. Correct will add missed string resources, this will
help if you want to release the files. Minimize will remove the string
resources which equal to the default "en-US" ones. This will help to
submit the upgraded files to http://www.babelzilla.org. babelzilla is a site to help localizing mozilla/Firefox addons.
2. Support add extensions to the testing env. You just need put the
addons you want to add to the test profiles to the extensions directory
under your project. They will be automatically installed. For example
you can put the javascript debugger there. XPI files or installed
folders are both supported. You can get the installed addon folders in
your
Technorati Tags: Foxbeans, NetBeans, XUL, Firefox [Read More]








Windows Vista
Mac OS X
Linux and Unix systems