<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Peng.u.i.n</title>
	<atom:link href="http://pdeng.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://pdeng.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Tue, 08 Feb 2011 02:35:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='pdeng.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/fec2abb825eba2df09a0a2d2c26d548f?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Peng.u.i.n</title>
		<link>http://pdeng.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://pdeng.wordpress.com/osd.xml" title="Peng.u.i.n" />
	<atom:link rel='hub' href='http://pdeng.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Simple Remote Control with Dropbox</title>
		<link>http://pdeng.wordpress.com/2008/12/23/simple-remote-control-with-dropbox/</link>
		<comments>http://pdeng.wordpress.com/2008/12/23/simple-remote-control-with-dropbox/#comments</comments>
		<pubDate>Tue, 23 Dec 2008 04:06:55 +0000</pubDate>
		<dc:creator>pdeng</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[Dropbox]]></category>
		<category><![CDATA[remote control]]></category>
		<category><![CDATA[shell script]]></category>

		<guid isPermaLink="false">http://pdeng.wordpress.com/?p=115</guid>
		<description><![CDATA[Dropbox is a fantastic application for unobstructive synchronization of files between multiple computers running different operating systems. Everything happens seamlessly behind the scene. The more I use it the more I feel thankful to the creators and devs. Today I found out a new use of Dropbox — a simple remote control tool. All you [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pdeng.wordpress.com&amp;blog=5813469&amp;post=115&amp;subd=pdeng&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:center;"><img class="aligncenter" src="http://wiki.getdropbox.com/FrontPage?action=AttachFile&amp;do=get&amp;target=sandbox250px_small.jpg" alt="Dropbox" width="250" height="214" /></p>
<p><a href="https://www.getdropbox.com/home">Dropbox</a> is a fantastic application for unobstructive synchronization of files between multiple computers running different operating systems. Everything happens seamlessly behind the scene. The more I use it the more I feel thankful to the creators and devs. Today I found out a new use of Dropbox — a simple remote control tool. All you need is Dropbox and some shell scripts.</p>
<h3>The Scenario</h3>
<p>Why I would have come up with such an idea? The story is: I have a PC at home which I would like to access from the lab in the institute. It is reachable only if it’s connected to the VPN network in the campus. However, the VPN connection is sometimes not very stable and could die with no reason, not to say the server will automatically terminate a connection from outside of the university every 4 hours.</p>
<p>Therefore I really want to find a way to remotely issue commands on my home PC (which is unreachable), let it connect to the VPN network and report the IP address to me. With Dropbox, its very easy to do.</p>
<h3>The Solution</h3>
<p>I create a cron job on the home PC, which checks a text file (<code>command.txt</code>) inside my Dropbox folder every minute, when its not empty, execute the content of the file (and clear the file). On the lab PC, I can simply put the command I want to execute into the same file — since its synchronized seconds after I made the modification, it will soon be executed at home. And for reporting IP address, I wrote a wrapper script which runs on home PC to check the VPN status after connecting and redirect the IP address information into another text file (<code>ip.txt</code>) inside Dropbox folder. So when I am in the lab, I put the VPN wrapper script’s name inside the <code>command.txt</code>, maximum a minute later, I check the ip.txt. Now I can ssh to my home PC and do what ever I want.</p>
<h3>The Script</h3>
<p>I put up together a script which does both the adding command and the checking-then-running command job. I call it “dbrun” which is short for “Dropbox Run”. It can be download <a href="http://http//dl.getdropbox.com/u/110544/dbrun">here</a> (right-click and save).</p>
<p><strong>Installation &amp; Usage:</strong></p>
<ol>
<li>Make sure Dropbox daemon is up and running in both systems.</li>
<li>Put <code>dbrun</code> in both the controlling and controlled systems. I prefer the directory <code>~/.local/bin</code>.</li>
<li>Make it executable if it’s not. <code>chmod +x dbrun</code></li>
<li>Create a cron job to run <code>dbrun</code> in a short interval (e.g. 1 min) in the controlled system. I do this by creating a file <code>crontab</code> inside <code>~/.local/etc</code> and then run <code>crontab ~/.local/etc/crontab</code>. The content of the file is:
<pre><code>PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/home/pdeng/.local/bin
*/1 *   *   *   *   dbrun</code></pre>
<p>You may have noticed since I put <code>dbrun</code> in <code>~/.local/bin</code>, I include this directory in the <code>$PATH</code> environment variable. (Actually other scripts like my VPN wrapper is also there, so I have to do this).</li>
<li>Now to issue a command, run <code>dbrun 'new command'</code> in the controlling system, you will notice the Dropbox systray icon start animating to indicate the synchronization of the modified <code>command.txt</code> file. The “new command” will be executed soon in the controlled system.</li>
</ol>
<p>The default location I use to store the <code>command.txt</code> file in the script is <code>~/Dropbox/command.txt</code>. You can change it to whatever you like by opening the script and changing the value of <code>cmdfile</code>(around line 11).</p>
<h3>Security Concern</h3>
<p>It is possible to modify the script to let it only run filtered safe commands you selected yourself. But as long as you are not stupid enough to mark the <code>command.txt</code> as “shared” in your Dropbox and you don’t run the script as root, I don’t see (for now) too much danger. Maybe I am too naïve so please let me know in the comment if there is any potential security issue that I overlooked. After all, I only let it help getting my home PC reachable and SSH will be used to finish all other things afterward.</p>
<p>Update: I just did a quick check on Dropbox&#8217;s wiki (didn&#8217;t know about this wiki before) and there is already <a href="http://wiki.getdropbox.com/TipsAndTricks/RemoteControl">a similar solution</a> for remote control. The advantages of that one is a) it has smaller granularity as it runs in a big loop and check the file every 10 seconds. b) it redirect the output into another file which can be very useful sometimes. Maybe next I should do some search in Google before writing on my own, hehe &#8230;</p>
<br /> Tagged: Dropbox, remote control, shell script <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pdeng.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pdeng.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pdeng.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pdeng.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pdeng.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pdeng.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pdeng.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pdeng.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pdeng.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pdeng.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pdeng.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pdeng.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pdeng.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pdeng.wordpress.com/115/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pdeng.wordpress.com&amp;blog=5813469&amp;post=115&amp;subd=pdeng&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pdeng.wordpress.com/2008/12/23/simple-remote-control-with-dropbox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Peng</media:title>
		</media:content>

		<media:content url="http://wiki.getdropbox.com/FrontPage?action=AttachFile&#038;do=get&#038;target=sandbox250px_small.jpg" medium="image">
			<media:title type="html">Dropbox</media:title>
		</media:content>
	</item>
		<item>
		<title>Integrate Remember The Milk Tasks into Evolution</title>
		<link>http://pdeng.wordpress.com/2008/12/13/integrate-rtm-task-into-evolution/</link>
		<comments>http://pdeng.wordpress.com/2008/12/13/integrate-rtm-task-into-evolution/#comments</comments>
		<pubDate>Sat, 13 Dec 2008 01:07:36 +0000</pubDate>
		<dc:creator>pdeng</dc:creator>
				<category><![CDATA[FLOSS]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Evolution]]></category>
		<category><![CDATA[GNOME]]></category>
		<category><![CDATA[Remember The Milk]]></category>

		<guid isPermaLink="false">http://pdeng.wordpress.com/?p=109</guid>
		<description><![CDATA[Today’s Lifehacker has an article about how to integrate Google’s Apps into Evolution, which reminds me I always want to integrate Remember The Milk’s task list into evolution and eventually let it show in the nice looking drop down window of the clock applet on GNOME’s panel. It should be easy because with the latest [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pdeng.wordpress.com&amp;blog=5813469&amp;post=109&amp;subd=pdeng&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:center;"><img class="aligncenter" src="http://lh5.ggpht.com/_4F2P0FQZ3bE/SUMJBgYf23I/AAAAAAAABCY/IfhkncC5u3Y/clock-applet.png" alt="Clock applet with Remember the Milk task list" width="291" height="427" /></p>
<p>Today’s Lifehacker has an article about <a href="http://lifehacker.com/5108371/integrate-googles-apps-into-evolution-for-linux">how to integrate Google’s Apps into Evolution</a>, which reminds me I always want to integrate Remember The Milk’s task list into evolution and eventually let it show in the nice looking drop down window of the clock applet on GNOME’s panel.</p>
<p>It should be easy because with the latest (at least, don’t know about previous version) Evolution you can create new task list of the type “On The Web”, for which you will need a webcal URL which you can find at Remember The Milk’s <em>Info</em> page (Using the <em>Settings</em> link in the upper right corner of your RTM webpage, and you will see the <em>Info</em> tab).</p>
<p>Well if you just fill in the URL and your username, you probably will get an error about some sort of authorization problem. Here is the workaround: simply add username &amp; password combination into the address string as seen in the picture below.</p>
<p style="text-align:center;"><img class="aligncenter" src="http://lh4.ggpht.com/_4F2P0FQZ3bE/SUMJBUP3u5I/AAAAAAAABCQ/zGHn9riI4e8/rtm-revolution.png" alt="New Task List Settings" width="464" height="435" /></p>
<p>After the task list is created, you will be asked for the password again (you may want to choose remember it as well), and then you should see all the tasks in you RTM account, incomplete or completed, be retrieved from the server. And meanwhile in the drop down window of the clock applet, all incomplete task should appear.</p>
<p>Quite like how Evolution handled Google Calendar before, the RTM task list is, for the time being, read-only, i.e. you can only see them but not add/remove/mark as complete etc. However, for me, this is exactly where <a href="http://pdeng.wordpress.com/2008/10/20/remember-the-milk-plugin-for-gnome-do-video/">RTM plugin of GNOME Do</a> should play its role, the integration just gives me a better way to keep an eye on the tasks.</p>
<br /> Tagged: Evolution, GNOME, Remember The Milk <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pdeng.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pdeng.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pdeng.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pdeng.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pdeng.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pdeng.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pdeng.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pdeng.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pdeng.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pdeng.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pdeng.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pdeng.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pdeng.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pdeng.wordpress.com/109/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pdeng.wordpress.com&amp;blog=5813469&amp;post=109&amp;subd=pdeng&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pdeng.wordpress.com/2008/12/13/integrate-rtm-task-into-evolution/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Peng</media:title>
		</media:content>

		<media:content url="http://lh5.ggpht.com/_4F2P0FQZ3bE/SUMJBgYf23I/AAAAAAAABCY/IfhkncC5u3Y/clock-applet.png" medium="image">
			<media:title type="html">Clock applet with Remember the Milk task list</media:title>
		</media:content>

		<media:content url="http://lh4.ggpht.com/_4F2P0FQZ3bE/SUMJBUP3u5I/AAAAAAAABCQ/zGHn9riI4e8/rtm-revolution.png" medium="image">
			<media:title type="html">New Task List Settings</media:title>
		</media:content>
	</item>
		<item>
		<title>Hello world!</title>
		<link>http://pdeng.wordpress.com/2008/12/11/hello-world/</link>
		<comments>http://pdeng.wordpress.com/2008/12/11/hello-world/#comments</comments>
		<pubDate>Thu, 11 Dec 2008 07:54:35 +0000</pubDate>
		<dc:creator>pdeng</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[WordPress I should say that WordPress is always my favorite blog application and now with the release of 2.7, it becomes even more awesome! That is actually what motivated me to have this blog (I&#8217;d rather say a mirror of my blogger site) created. Some new experience about the new release: I like the new [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pdeng.wordpress.com&amp;blog=5813469&amp;post=1&amp;subd=pdeng&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h3>WordPress</h3>
<p>I should say that WordPress is always my favorite blog application and now with <a href="http://wordpress.org/development/2008/12/coltrane/">the release of 2.7</a>, it becomes even more awesome! That is actually what motivated me to have this blog (I&#8217;d rather say a mirror of my <a href="http://pengdeng.blogspot.com" target="_blank">blogger site</a>) created.</p>
<p>Some new experience about the new release: I like the new design of the admin interface particularly. The quick edit and quick post feature are also very useful. And it also makes the management of comments fairly efficient. Although I don&#8217;t remember if I have ever used the blogger-to-wordpress converting tool, this time when I tried, it worked quite good, having all the post, comments and the labels converted. The labels are imported as categories by default which resulted in a huge amount of categories. Luckily there is another nifty tool to convert the categories into tags inside WordPress. The only glitch I encountered so far is some <code>img</code> tags lost their <code>src</code> attribute after converting. <img src='http://s0.wp.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<h3>WordPress.com</h3>
<p>As I don&#8217;t have plan to host my own blog any soon, I used WordPress.com because it saves all the fuss to setup a blog and just works for a quick start. However I miss the plugin section in the admin interface as I wanted to use Markdown to write posts.</p>
<p>By the way, I noticed WordPress.com also uses Amazon&#8217;s S3 service, which is suppose to provide scalability, high availability, and low latency. This should make the access to the web interface reliable in most cases. (Except in mainland China, due to the freaking stupid GFW blocking wordpress.com)</p>
<h3>Peng.u.i.n</h3>
<p>I don&#8217;t blog so often nowadays but having a habit to keep noting something down turns out to be very helpful sometimes: I was having trouble with the Firefox performance in Fedora 9 two days ago and I googled around for help.  Eventually I found the solution from my own blog post&#8211;it feels a bit strange, but anyway it makes me keep this nice little habit.</p>
<p>Regarding the name, I haven&#8217;t decide what the &#8220;u.i.n&#8221; stands for. But to have my name in &#8220;penguin&#8221; feels always nice to a 24/7 Linux user and FLOSS lover. Possible answers could be:</p>
<ul>
<li>Peng usually is nerdy :b</li>
<li>Peng utters in nonsensse</li>
<li>Peng utters in nowhere</li>
<li>&#8230; (more to come?)</li>
</ul>
<p>I just don&#8217;t want to stick with any of those yet, just leave some space for imagination and let the randomness bring some fun!</p>
<br /> Tagged: Uncategorized <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pdeng.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pdeng.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pdeng.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pdeng.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pdeng.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pdeng.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pdeng.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pdeng.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pdeng.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pdeng.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pdeng.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pdeng.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pdeng.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pdeng.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pdeng.wordpress.com&amp;blog=5813469&amp;post=1&amp;subd=pdeng&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pdeng.wordpress.com/2008/12/11/hello-world/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Peng</media:title>
		</media:content>
	</item>
		<item>
		<title>How to get high-resolution Netbeans icon on Linux</title>
		<link>http://pdeng.wordpress.com/2008/11/21/how-to-get-high-resolution-netbeans-icon-on-linux/</link>
		<comments>http://pdeng.wordpress.com/2008/11/21/how-to-get-high-resolution-netbeans-icon-on-linux/#comments</comments>
		<pubDate>Fri, 21 Nov 2008 15:49:00 +0000</pubDate>
		<dc:creator>pdeng</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[dock]]></category>
		<category><![CDATA[GNOME Do]]></category>
		<category><![CDATA[icon]]></category>
		<category><![CDATA[Netbeans]]></category>

		<guid isPermaLink="false">http://pdeng.wordpress.com/2008/11/21/how-to-get-high-resolution-netbeans-icon-on-linux/</guid>
		<description><![CDATA[I always like to have nice looking icons for my application launchers. Especially when using GNOME Do, launchers with icon smaller than 128&#215;128 pixels looks always like shit. So choosing a good icon theme is very important for me. I am currently using the “Gnome Brave” theme from Gnome-colors package, it provides a wide-range of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pdeng.wordpress.com&amp;blog=5813469&amp;post=44&amp;subd=pdeng&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter" src="http://lh3.ggpht.com/_4F2P0FQZ3bE/SSbWq_tt8iI/AAAAAAAAA_0/lJlYbPffCWo/screenshot-gnomedo-dock-netbeans-02.png" alt="Netbeans Icon" width="341" height="136" /></p>
<p>I always like to have nice looking icons for my application launchers. Especially when using GNOME Do, launchers with icon smaller than 128&#215;128 pixels looks always like shit.</p>
<p>So choosing a good icon theme is very important for me. I am currently using the “Gnome Brave” theme from <a href="http://www.gnome-look.org/content/show.php/GNOME-colors?content=82562">Gnome-colors</a> package, it provides a wide-range of scalable icons in SVG format, meaning these icons can fit into any size required.</p>
<p>However there are always some apps that the theme hasn’t cover, like eclipse, Netbeans etc. In this case, I have to look for good quality icons for them, which can be very hard sometimes.</p>
<p>I actually have been trying to find a high-res icon for my Netbeans but haven’t had any luck. But today when I searched again and came across some pictures of how Netbeans launcher looks on Mac’s dock, I saw a very large, slick icon. Then I looked into Netbeans folder and noticed there was a file with extension <code>.icns</code>. It turned out this is one of the icon file formats used by Apple on Mac. And luckily enough, on Linux there is an utility, <strong>icns2png</strong> which extracts the PNG<br />
files contained inside .icns file.</p>
<p>If you use Ubuntu/Debian, this tool is right in the repository so just install the <strong>icnsutils</strong> package. Then by issuing the following command in a terminal, you can extract the 128&#215;128-pixel 32-bit PNG file from the Netbeans.icns file:</p>
<pre><code>icns2png -x -s 128 -d 32 netbeans.icns</code></pre>
<p>BTW: if you also need an icon for Eclipse, I found one with Tango style in SVG format here: <a href="http://www.gnome-look.org/content/show.php?content=45585">http://www.gnome-look.org/content/show.php?content=45585</a></p>
<p><a href="http://lh4.ggpht.com/_4F2P0FQZ3bE/SSbWquiLsoI/AAAAAAAAA_s/2C4iarITh9Y/screenshot-gnomedo-dock-netbeans-01.png"><img class="aligncenter" src="http://lh4.ggpht.com/_4F2P0FQZ3bE/SSbWquiLsoI/AAAAAAAAA_s/2C4iarITh9Y/s400/screenshot-gnomedo-dock-netbeans-01.png" alt="Netbeans on Do Dock" width="400" height="89" /></a></p>
<p>And if you are curious what the app is in the screenshots, it is a new interface in development for GNOME Do, a dock implementation which also provides basic Do functionalities. It is so far the best dock I’ve ever used on Linux.</p>
<p><strong>Update:</strong> I just updated the Gnome-colors theme and they include an tangoish Eclipse icon. So if you are using this theme, you can save some effort, but please notice, the one used by Gnome-colors is another version which doesn&#8217;t have the 3 horizontal stripes in design.</p>
<br /> Tagged: dock, GNOME Do, icon, Netbeans <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pdeng.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pdeng.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pdeng.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pdeng.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pdeng.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pdeng.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pdeng.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pdeng.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pdeng.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pdeng.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pdeng.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pdeng.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pdeng.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pdeng.wordpress.com/44/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pdeng.wordpress.com&amp;blog=5813469&amp;post=44&amp;subd=pdeng&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pdeng.wordpress.com/2008/11/21/how-to-get-high-resolution-netbeans-icon-on-linux/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Peng</media:title>
		</media:content>

		<media:content url="http://lh3.ggpht.com/_4F2P0FQZ3bE/SSbWq_tt8iI/AAAAAAAAA_0/lJlYbPffCWo/screenshot-gnomedo-dock-netbeans-02.png" medium="image">
			<media:title type="html">Netbeans Icon</media:title>
		</media:content>

		<media:content url="http://lh4.ggpht.com/_4F2P0FQZ3bE/SSbWquiLsoI/AAAAAAAAA_s/2C4iarITh9Y/s400/screenshot-gnomedo-dock-netbeans-01.png" medium="image">
			<media:title type="html">Netbeans on Do Dock</media:title>
		</media:content>
	</item>
		<item>
		<title>Updates to Ping.FM and Remember The Milk plugin</title>
		<link>http://pdeng.wordpress.com/2008/11/18/updates-to-pingfm-and-remember-the-milk-plugin/</link>
		<comments>http://pdeng.wordpress.com/2008/11/18/updates-to-pingfm-and-remember-the-milk-plugin/#comments</comments>
		<pubDate>Tue, 18 Nov 2008 01:39:00 +0000</pubDate>
		<dc:creator>pdeng</dc:creator>
				<category><![CDATA[GNOME Do]]></category>
		<category><![CDATA[Ping.FM]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[Remember The Milk]]></category>

		<guid isPermaLink="false">http://pdeng.wordpress.com/2008/11/18/updates-to-pingfm-and-remember-the-milk-plugin/</guid>
		<description><![CDATA[Due to the recent changes to GNOME Do’s plugin API, I updated the code for Remember The Milk and Ping.FM plugin, mostly by using IEnumerable to replace the arrays. The new code has been pushed to their launchpad address respectively, but they won’t be compatible with the current release of GNOME Do, and not even [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pdeng.wordpress.com&amp;blog=5813469&amp;post=43&amp;subd=pdeng&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Due to the recent changes to GNOME Do’s plugin API, I updated the code for <strong>Remember The Milk</strong> and <strong>Ping.FM</strong> plugin, mostly by using <code>IEnumerable</code> to replace the arrays. </p>
<p>The new code has been pushed to their launchpad address respectively, but they won’t be compatible with the current release of GNOME Do, and not even the code in <em><a href='https://code.launchpad.net/do/trunk'>trunk</a></em> can use this version. You may need them <strong>only</strong> if you are using the code from “<em><a href='https://code.launchpad.net/~do-core/do/future'>future</a></em>” branch.</p>
<p>There are the compiled binaries from the latest code:</p>
<ul>
<li><a href='http://p3n9.kilu.de/do-plugins/PingFM.dll'>Ping.FM.dll</a></li>
<li><a href='http://p3n9.kilu.de/do-plugins/RTM.dll'>RTM.dll</a></li>
</ul>
<p>Old versions (which should be used with all versions except <em>future</em>)</p>
<ul>
<li><a href='http://p3n9.kilu.de/do-plugins/old/PingFM.dll'>Ping.FM.dll</a> (rev 266)</li>
<li><a href='http://p3n9.kilu.de/do-plugins/old/PingFM.dll'>RTM.dll</a> (rev 271)</li>
</ul>
<p>When you decide to checkout the code and compile them yourself, you should use the arguements <code>-r revno:271</code> for RTM and <code>-r revno:266</code> for Ping.FM if your target installation is not from <em>future</em>.</p>
<p><strong>Update:</strong> David has merged the code of both RTM and Ping.FM plugin into community plugin, so you now you can also check out the code at <code>lp:do-plugins/community</code>.</p>
<br /> Tagged: GNOME Do, Ping.FM, plugin, Remember The Milk <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pdeng.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pdeng.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pdeng.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pdeng.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pdeng.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pdeng.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pdeng.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pdeng.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pdeng.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pdeng.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pdeng.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pdeng.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pdeng.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pdeng.wordpress.com/43/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pdeng.wordpress.com&amp;blog=5813469&amp;post=43&amp;subd=pdeng&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pdeng.wordpress.com/2008/11/18/updates-to-pingfm-and-remember-the-milk-plugin/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Peng</media:title>
		</media:content>
	</item>
		<item>
		<title>My Emacs Color Theme</title>
		<link>http://pdeng.wordpress.com/2008/11/02/my-emacs-color-theme/</link>
		<comments>http://pdeng.wordpress.com/2008/11/02/my-emacs-color-theme/#comments</comments>
		<pubDate>Sun, 02 Nov 2008 17:05:00 +0000</pubDate>
		<dc:creator>pdeng</dc:creator>
				<category><![CDATA[Emacs]]></category>
		<category><![CDATA[emacs]]></category>
		<category><![CDATA[sunburst]]></category>

		<guid isPermaLink="false">http://pdeng.wordpress.com/2008/11/02/my-emacs-color-theme/</guid>
		<description><![CDATA[This is my emacs color theme, adjust based on the “Sunburst” theme for TextMate which is created by Soryu. The el file can be found here: http://p3n9.kilu.de/color-theme-sunburst.el Tagged: emacs, sunburst<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pdeng.wordpress.com&amp;blog=5813469&amp;post=42&amp;subd=pdeng&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p class='center'><img title='' alt='Emacs Sunburst' src="http://lh3.ggpht.com/_4F2P0FQZ3bE/SQ3bqqC3cpI/AAAAAAAAA9s/66NHwYC0x0I/screenshot-emacs-sunburst.png" /></p>
<p>This is my emacs color theme, adjust based on the <a href='http://projects.serenity.de/textmate/'>“Sunburst”</a> theme for TextMate which is created by <a href='http://wiki.macromates.com/Profiles/Soryu'>Soryu</a>.</p>
<p>The el file can be found here: <a href='http://p3n9.kilu.de/color-theme-sunburst.el'>http://p3n9.kilu.de/color-theme-sunburst.el</a></p>
<br /> Tagged: emacs, sunburst <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pdeng.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pdeng.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pdeng.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pdeng.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pdeng.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pdeng.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pdeng.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pdeng.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pdeng.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pdeng.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pdeng.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pdeng.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pdeng.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pdeng.wordpress.com/42/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pdeng.wordpress.com&amp;blog=5813469&amp;post=42&amp;subd=pdeng&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pdeng.wordpress.com/2008/11/02/my-emacs-color-theme/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Peng</media:title>
		</media:content>

		<media:content url="http://lh3.ggpht.com/_4F2P0FQZ3bE/SQ3bqqC3cpI/AAAAAAAAA9s/66NHwYC0x0I/screenshot-emacs-sunburst.png" medium="image">
			<media:title type="html">Emacs Sunburst</media:title>
		</media:content>
	</item>
		<item>
		<title>Remember The Milk plugin for GNOME Do (video)</title>
		<link>http://pdeng.wordpress.com/2008/10/20/remember-the-milk-plugin-for-gnome-do-video/</link>
		<comments>http://pdeng.wordpress.com/2008/10/20/remember-the-milk-plugin-for-gnome-do-video/#comments</comments>
		<pubDate>Mon, 20 Oct 2008 00:40:00 +0000</pubDate>
		<dc:creator>pdeng</dc:creator>
				<category><![CDATA[GNOME Do]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[Remember The Milk]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://pdeng.wordpress.com/2008/10/20/remember-the-milk-plugin-for-gnome-do-video/</guid>
		<description><![CDATA[Just finished it, more information about it is coming soon. Source code can be grabbed from here: http://code.launchpad.net/~do-plugins/do-plugins/community. Compiled binary (usage: download the .dll file and put in your ~/.local/share/gnome-do/plugins-0.x.x folder and restart Do) For GNOME Do version 0.6.*: http://p3n9.kilu.de/do-plugins/old/RTM.dll For GNOME Do compiled from bzr trunk code (using the new plugin API): http://p3n9.kilu.de/do-plugins/RTM.dll Tagged: [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pdeng.wordpress.com&amp;blog=5813469&amp;post=41&amp;subd=pdeng&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<span style="text-align:center; display: block;"><a href="http://pdeng.wordpress.com/2008/10/20/remember-the-milk-plugin-for-gnome-do-video/"><img src="http://img.youtube.com/vi/7X2a68X7Aq0/2.jpg" alt="" /></a></span>
<p>Just finished it, more information about it is coming soon.</p>
<p>Source code can be grabbed from here: <a href="http://code.launchpad.net/~do-plugins/do-plugins/community" title="Code branch at Launchpad">http://code.launchpad.net/~do-plugins/do-plugins/community</a>.</p>
<p>Compiled binary (usage: download the .dll file and put in your <strong><code>~/.local/share/gnome-do/plugins-0.x.x</code></strong> folder and restart Do)</p>
<ul>
<li>For GNOME Do version 0.6.*: <a href="http://p3n9.kilu.de/do-plugins/old/RTM.dll">http://p3n9.kilu.de/do-plugins/old/RTM.dll</a></li>
<li>For GNOME Do compiled from bzr trunk code (using the new plugin API): <a href="http://p3n9.kilu.de/do-plugins/RTM.dll">http://p3n9.kilu.de/do-plugins/RTM.dll</a></li>
</ul>
<br /> Tagged: GNOME Do, plugin, Remember The Milk, Video <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pdeng.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pdeng.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pdeng.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pdeng.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pdeng.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pdeng.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pdeng.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pdeng.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pdeng.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pdeng.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pdeng.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pdeng.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pdeng.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pdeng.wordpress.com/41/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pdeng.wordpress.com&amp;blog=5813469&amp;post=41&amp;subd=pdeng&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pdeng.wordpress.com/2008/10/20/remember-the-milk-plugin-for-gnome-do-video/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Peng</media:title>
		</media:content>
	</item>
		<item>
		<title>Do&#8217;s Upcoming Feature Demo</title>
		<link>http://pdeng.wordpress.com/2008/10/09/dos-upcoming-feature-demo/</link>
		<comments>http://pdeng.wordpress.com/2008/10/09/dos-upcoming-feature-demo/#comments</comments>
		<pubDate>Thu, 09 Oct 2008 21:15:00 +0000</pubDate>
		<dc:creator>pdeng</dc:creator>
				<category><![CDATA[GNOME Do]]></category>
		<category><![CDATA[Screencast]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[Youtube]]></category>

		<guid isPermaLink="false">http://pdeng.wordpress.com/2008/10/09/dos-upcoming-feature-demo/</guid>
		<description><![CDATA[Ha, My first Youtube video Tagged: GNOME Do, Screencast, Video, Youtube<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pdeng.wordpress.com&amp;blog=5813469&amp;post=40&amp;subd=pdeng&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<span style="text-align:center; display: block;"><a href="http://pdeng.wordpress.com/2008/10/09/dos-upcoming-feature-demo/"><img src="http://img.youtube.com/vi/ygNd2pTp26E/2.jpg" alt="" /></a></span>
<p>Ha, My first Youtube video</p>
<br /> Tagged: GNOME Do, Screencast, Video, Youtube <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pdeng.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pdeng.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pdeng.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pdeng.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pdeng.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pdeng.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pdeng.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pdeng.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pdeng.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pdeng.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pdeng.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pdeng.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pdeng.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pdeng.wordpress.com/40/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pdeng.wordpress.com&amp;blog=5813469&amp;post=40&amp;subd=pdeng&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pdeng.wordpress.com/2008/10/09/dos-upcoming-feature-demo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Peng</media:title>
		</media:content>
	</item>
		<item>
		<title>No more &lt; br / &gt;</title>
		<link>http://pdeng.wordpress.com/2008/10/09/no-more-br/</link>
		<comments>http://pdeng.wordpress.com/2008/10/09/no-more-br/#comments</comments>
		<pubDate>Thu, 09 Oct 2008 13:54:00 +0000</pubDate>
		<dc:creator>pdeng</dc:creator>
				<category><![CDATA[Emacs]]></category>
		<category><![CDATA[Blogger]]></category>
		<category><![CDATA[emacs]]></category>

		<guid isPermaLink="false">http://pdeng.wordpress.com/2008/10/09/no-more-br/</guid>
		<description><![CDATA[Just realized I can turn off the “converting return character to &#60;br /&#62;” option at blogger’s setup page. It was a disaster for me if there is no such a thing because I like to write the post in Markdown format in Emacs and convert it to HTML then post. To make the content easy [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pdeng.wordpress.com&amp;blog=5813469&amp;post=39&amp;subd=pdeng&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div>
<p>Just realized I can turn off the “converting return character to &lt;br<br />
      /&gt;” option at blogger’s setup page. It was a disaster for me if there<br />
      is no such a thing because I like to write the post in Markdown format<br />
      in Emacs and convert it to HTML then post. To make the content easy to<br />
      read, the lines are normall truncated into a limited length. For the<br />
      previous post, I have to connect all the lines into one line before<br />
      posting, which sounds rediculous.</p>
<p>From now on, no more stupid BR’s, haha!</p>
</p></div>
<br /> Tagged: Blogger, emacs <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pdeng.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pdeng.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pdeng.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pdeng.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pdeng.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pdeng.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pdeng.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pdeng.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pdeng.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pdeng.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pdeng.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pdeng.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pdeng.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pdeng.wordpress.com/39/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pdeng.wordpress.com&amp;blog=5813469&amp;post=39&amp;subd=pdeng&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pdeng.wordpress.com/2008/10/09/no-more-br/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Peng</media:title>
		</media:content>
	</item>
		<item>
		<title>Test Post from Emacs</title>
		<link>http://pdeng.wordpress.com/2008/10/09/test-post-from-emacs/</link>
		<comments>http://pdeng.wordpress.com/2008/10/09/test-post-from-emacs/#comments</comments>
		<pubDate>Thu, 09 Oct 2008 12:02:00 +0000</pubDate>
		<dc:creator>pdeng</dc:creator>
				<category><![CDATA[Emacs]]></category>
		<category><![CDATA[emacs]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://pdeng.wordpress.com/2008/10/09/test-post-from-emacs/</guid>
		<description><![CDATA[I’m now using G-Client, an Emacs client for several Google service to try to post a test entry. It allows you to directly edit the xml which will be sent out. This looks tricky, but on the other hand, you are able to add labels to the post. This makes the whole thing more useful. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pdeng.wordpress.com&amp;blog=5813469&amp;post=38&amp;subd=pdeng&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I’m now using <a href='http://emacspeak.blogspot.com/2007/03/emacs-client-for-google-services.html'>G-Client</a>, an Emacs client for several Google service to try to post a test entry. It allows you to directly edit the xml which will be sent out. This looks tricky, but on the other hand, you are able to add labels to the post. This makes the whole thing more useful.</p>
<p>Well, let’s first see if it works before talking too much shit.</p>
<br /> Tagged: emacs, Google <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pdeng.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pdeng.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pdeng.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pdeng.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pdeng.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pdeng.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pdeng.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pdeng.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pdeng.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pdeng.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pdeng.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pdeng.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pdeng.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pdeng.wordpress.com/38/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pdeng.wordpress.com&amp;blog=5813469&amp;post=38&amp;subd=pdeng&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pdeng.wordpress.com/2008/10/09/test-post-from-emacs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Peng</media:title>
		</media:content>
	</item>
	</channel>
</rss>
