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









Windows Vista
Mac OS X
Linux and Unix systems