<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.2" -->
<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/"
	>

<channel>
	<title>Sujee's blog</title>
	<link>http://sujee.net/blog</link>
	<description>cat /proc/sujee</description>
	<pubDate>Thu, 08 May 2008 06:50:04 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2</generator>
	<language>en</language>
			<item>
		<title>[tech] Hadoop Gotchas</title>
		<link>http://sujee.net/blog/2008/04/21/hadoop-gotchas/</link>
		<comments>http://sujee.net/blog/2008/04/21/hadoop-gotchas/#comments</comments>
		<pubDate>Tue, 22 Apr 2008 05:59:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[hadoop]]></category>

		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://sujee.net/blog/?p=20</guid>
		<description><![CDATA[I just started tinkering with Hadoop - &#8216;(Java) distributed computing platform&#8217; from Apache.  Even though it is a pretty nice platform, I wasted lot of time, chasing trivial / silly  issues.  Here they are, so some one else might find them useful.
hadoop version : 0.16.3
A) The dreaded &#8216;Port Out of Range&#8217; exception [...]]]></description>
			<content:encoded><![CDATA[<p>I just started tinkering with <a href="http://hadoop.apache.org/core/">Hadoop</a> - &#8216;(Java) distributed computing platform&#8217; from Apache.  Even though it is a pretty nice platform, I wasted lot of time, chasing trivial / silly  issues.  Here they are, so some one else might find them useful.</p>
<p>hadoop version : 0.16.3</p>
<p><strong>A) The dreaded &#8216;Port Out of Range&#8217; exception in &#8216;NameNode&#8217;</strong><br />
<small><br />
<code>2008-04-20 19:27:34,241 ERROR org.apache.hadoop.dfs.NameNode: java.lang.IllegalArgumentException: port out of range:-1<br />
at java.net.InetSocketAddress.&lt;init&gt;(InetSocketAddress.java:118)<br />
at org.apache.hadoop.dfs.DistributedFileSystem.initialize(DistributedFileSystem.java:65)<br />
at org.apache.hadoop.fs.FileSystem.createFileSystem(FileSystem.java:1180)<br />
at org.apache.hadoop.fs.FileSystem.access$300(FileSystem.java:53)<br />
at org.apache.hadoop.fs.FileSystem$Cache.get(FileSystem.java:1191)<br />
at org.apache.hadoop.fs.FileSystem.get(FileSystem.java:148)<br />
at org.apache.hadoop.fs.FileSystem.getNamed(FileSystem.java:122)<br />
at org.apache.hadoop.fs.FileSystem.get(FileSystem.java:94)<br />
at org.apache.hadoop.fs.Trash.&lt;init&gt;(Trash.java:63)<br />
at org.apache.hadoop.dfs.NameNode.initialize(NameNode.java:134)<br />
at org.apache.hadoop.dfs.NameNode.&lt;init&gt;(NameNode.java:176)<br />
at org.apache.hadoop.dfs.NameNode.&lt;init&gt;(NameNode.java:162)<br />
at org.apache.hadoop.dfs.NameNode.createNameNode(NameNode.java:846)<br />
at org.apache.hadoop.dfs.NameNode.main(NameNode.java:855)</code></small></p>
<p><small>2008-04-20 19:27:34,243 INFO org.apache.hadoop.ipc.Server: IPC Server handler 9 on 9000: starting<br />
2008-04-20 19:27:34,243 INFO org.apache.hadoop.dfs.NameNode: SHUTDOWN_MSG:<br />
SHUTDOWN_MSG: Shutting down NameNode at sanfrancisco/127.0.1.1<br />
</small></p>
<p>This issue caused me so much aggravation.  The issue is - my hostnames.</p>
<p><u>/etc/hosts</u></p>
<p>#hadoop<br />
192.168.0.12  hadoop_master<br />
192.168.0.2    hadoop_slave_1<br />
<u>hadoop-site.xml</u>:</p>
<p>&lt;property&gt;<br />
&lt;name&gt;fs.default.name&lt;/name&gt;<br />
&lt;value&gt;hadoop_master:9000&lt;/value&gt;<br />
&lt;/property&gt;<br />
&lt;property&gt;<br />
&lt;name&gt;mapred.job.tracker&lt;/name&gt;<br />
&lt;value&gt;hadoop_master:9001&lt;/value&gt;<br />
&lt;/property&gt;<br />
For some reason, hostnames with <strong>underscores</strong> ( &#8216;hadoop_master&#8217;  or &#8216;hadoop_slave_1&#8242; ) are causing this weired error.</p>
<p>Solution:  after replacing all instances of</p>
<p>hadoop_master   &#8212;-&gt; master</p>
<p>hadoop_slave_1   &#8212;&gt; slave</p>
<p>Every thing just worked !!!</p>
<p>Or you could use IP-addresses as well.</p>
<p><strong>B)<span class="mw-headline">java.io.IOException: Incompatible namespaceIDs</span></strong></p>
<p>At  least this issue and a workaround is some what easier to find than the previous one.</p>
<p>go to the end of this  tutorial : <a href="http://www.michael-noll.com/wiki/Running_Hadoop_On_Ubuntu_Linux_(Multi-Node_Cluster)">http://www.michael-noll.com/wiki/Running_Hadoop_On_Ubuntu_Linux_(Multi-Node_Cluster)</a></p>
<p><a href="http://issues.apache.org/jira/browse/HADOOP-1212">http://issues.apache.org/jira/browse/HADOOP-1212</a></p>
<p>*Whew*</p>
<p>I have reverted back to hadoop v0.15.3, so the namespace issue went away<br />
<strong>C) Map/Reduce tasks dying out</strong></p>
<p>I kick off a simple wordcout across two machines, and my reduce tasks will die out, and process will hang for ever. Trawling through the logs revealed this is caused by some really weired reverse hostname lookups by Hadoop (or Java.net) framework.</p>
<p>For example, my IP address (192.168.0.10)  was resolved as &#8217;somehost.comcast.net&#8217;.  After tweaking my &#8216;/etc/hosts&#8217;  things worked like a charm!</p>
<p>Ahh&#8230; why go to the bother of doing a reverse IP lookup?  Just use the IP address please..</p>
<p>These  issues were trivial / silly, but time-consuming nonetheless.</p>
<p><span class="meta"><br />
<em>Looks like Hadoop - the Elephant - can scale mountains, but slips on a banana peel <img src='http://sujee.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </em><br />
</span><br />
<em> </em></p>
]]></content:encoded>
			<wfw:commentRss>http://sujee.net/blog/2008/04/21/hadoop-gotchas/feed/</wfw:commentRss>
		</item>
		<item>
		<title>[tech] Geocode data for US Zips and Cities</title>
		<link>http://sujee.net/blog/2008/03/04/tech-geocode-data-for-us-zips-and-cities/</link>
		<comments>http://sujee.net/blog/2008/03/04/tech-geocode-data-for-us-zips-and-cities/#comments</comments>
		<pubDate>Tue, 04 Mar 2008 08:22:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[gps]]></category>

		<category><![CDATA[geocode]]></category>

		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://sujee.net/blog/?p=19</guid>
		<description><![CDATA[I have some  geocode data (GPS co-ordinates) for US Zips or Cities.
* Read the article *
]]></description>
			<content:encoded><![CDATA[<p>I have some  geocode data (GPS co-ordinates) for US Zips or Cities.</p>
<p><a href="http://sujee.net/tech/articles/geocoded/">* Read the article *</a></p>
]]></content:encoded>
			<wfw:commentRss>http://sujee.net/blog/2008/03/04/tech-geocode-data-for-us-zips-and-cities/feed/</wfw:commentRss>
		</item>
		<item>
		<title>[tech] Setting default browser for Thunderbird in Kubuntu</title>
		<link>http://sujee.net/blog/2008/02/04/tech-setting-default-browser-for-thunderbird-in-kubuntu/</link>
		<comments>http://sujee.net/blog/2008/02/04/tech-setting-default-browser-for-thunderbird-in-kubuntu/#comments</comments>
		<pubDate>Tue, 05 Feb 2008 07:11:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[linux]]></category>

		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://sujee.net/blog/2008/02/04/tech-setting-default-browser-for-thunderbird-in-kubuntu/</guid>
		<description><![CDATA[Thunderbird is a great mail application, but this problem nagged me enough to warrant a post!
I run Kubuntu -  KDE based flavor of Ubuntu.   Thunderbird is a GNOME application and doesn&#8217;t seem to take the default BROWSER values set in KDE control panel or in my BASH profile (BROWSER=/usr/bin/firefox).  I tried [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.mozilla.com/en-US/thunderbird/">Thunderbird</a> is a great mail application, but this problem nagged me enough to warrant a post!</p>
<p>I run <a href="http://www.kubuntu.org/">Kubuntu</a> -  KDE based flavor of <a href="http://www.ubuntu.org/">Ubuntu</a>.   Thunderbird is a GNOME application and doesn&#8217;t seem to take the default BROWSER values set in KDE control panel or in my BASH profile (BROWSER=/usr/bin/firefox).  I tried this - <a href="http://www.knoppix.net/forum/viewtopic.php?t=20315" class="linkification-ext" title="Linkification: http://www.knoppix.net/forum/viewtopic.php?t=20315">http://www.knoppix.net/forum/viewtopic.php?t=20315</a> - but no luck</p>
<p>Here is one way of fixing it:</p>
<p>1) Install gnome-control-center<br />
<code>sudo apt-get install gnome-control-center</code><br />
or do it through<em> Adept Manager U</em>I.<br />
this will install a bunch of Gnome libraries, that is okay</p>
<p>2) Once the install is done, launch &#8216;<strong>gnome-control-center</strong>&#8216; and goto Preferred Applications.  Select FIREFOX as browser and choose &#8216;Open in Tab&#8217;</p>
<p><a href="http://sujee.net/blog/wp-content/uploads/2008/02/gnome-browser.png" title="browser.png"><img src="http://sujee.net/blog/wp-content/uploads/2008/02/gnome-browser.png" alt="browser.png" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://sujee.net/blog/2008/02/04/tech-setting-default-browser-for-thunderbird-in-kubuntu/feed/</wfw:commentRss>
		</item>
		<item>
		<title>[tech] Sansa Playlist Creator for Linux</title>
		<link>http://sujee.net/blog/2008/01/28/tech-sansa-playlist-creator-for-linux/</link>
		<comments>http://sujee.net/blog/2008/01/28/tech-sansa-playlist-creator-for-linux/#comments</comments>
		<pubDate>Tue, 29 Jan 2008 07:35:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://sujee.net/blog/2008/01/28/tech-sansa-playlist-creator-for-linux/</guid>
		<description><![CDATA[Here is a bash script I came up with to create playlists on Sansa music player, on Linux
** read more **
]]></description>
			<content:encoded><![CDATA[<p>Here is a bash script I came up with to create playlists on Sansa music player, on Linux</p>
<p><a href="http://sujee.net/tech/articles/sansa/">** read more **</a></p>
]]></content:encoded>
			<wfw:commentRss>http://sujee.net/blog/2008/01/28/tech-sansa-playlist-creator-for-linux/feed/</wfw:commentRss>
		</item>
		<item>
		<title>[photography] Blue Angels at FleetWeek in San Francisco</title>
		<link>http://sujee.net/blog/2007/10/04/blue-angels-at-fleetweek-in-san-francisco/</link>
		<comments>http://sujee.net/blog/2007/10/04/blue-angels-at-fleetweek-in-san-francisco/#comments</comments>
		<pubDate>Fri, 05 Oct 2007 07:31:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[photography]]></category>

		<guid isPermaLink="false">http://sujee.net/blog/?p=15</guid>
		<description><![CDATA[Fleet week is in San Francisco.  And Blue Angles are back, roaring through crisp autumn skies, &#8217;shock-and-awe&#8217;ing crowds,  scaring dogs and ticking off some San Francisco Board of Supervisors  (see here and here )
I love watching these precision flying machines and love photographing them even more!  I went to the practice [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://fleetweek.us/fleetweek">Fleet week</a> is in San Francisco.  And <a href="http://www.blueangels.navy.mil/">Blue Angles</a> are back, roaring through crisp autumn skies, &#8217;shock-and-awe&#8217;ing crowds,  scaring dogs and ticking off some San Francisco Board of Supervisors <img src='http://sujee.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> (see <a href="http://www.sfgate.com/cgi-bin/article.cgi?f=/c/a/2007/08/14/BA0PRHS4S.DTL">here</a> and <a href="http://capwiz.com/military/issues/alert/?alertid=10364156&amp;type=ML">here</a> )</p>
<p>I love watching these precision flying machines and love photographing them even more!  I went to the practice runs on Thursday and Friday [they practice for 2  days - Thu &amp; Fri, and fly for the crowds during the weekend]. Here are some photos:</p>
<p><a href="/photography/gallery/events/fleet-week-sf/suj_5280-800x600.html"><img src="/photography/gallery/events/fleet-week-sf/suj_5280-150.jpg" border="1" hspace="5" vspace="5" /></a> <a href="/photography/gallery/events/fleet-week-sf/suj_5596A-800x600.html"><img src="/photography/gallery/events/fleet-week-sf/suj_5596A-150.jpg" border="1" hspace="5" vspace="5" /></a>   <a href="/photography/gallery/events/fleet-week-sf/suj_5576A-800x600.html"><img src="/photography/gallery/events/fleet-week-sf/suj_5576A-150.jpg" border="1" hspace="5" vspace="5" /></a> <a href="/photography/gallery/events/fleet-week-sf/suj_5614-800x600.html"><img src="/photography/gallery/events/fleet-week-sf/suj_5614-150.jpg" border="1" hspace="5" vspace="5" /></a><a href="/photography/gallery/events/fleet-week-sf/suj_5620-800x600.html"><img src="/photography/gallery/events/fleet-week-sf/suj_5620-150.jpg" border="1" hspace="5" vspace="5" /></a> <a href="/photography/gallery/events/fleet-week-sf/suj_5547A-800x600.html"><img src="/photography/gallery/events/fleet-week-sf/suj_5547A-150.jpg" border="1" hspace="5" vspace="5" /></a></p>
<p>Checkout <a href="/photography/gallery/events/fleet-week-sf/">Fleet-Week Gallery</a> for more</p>
<p>I have an <a href="/photography/writeups/fleet-week/">article</a> that talks about logistics of photographing Fleet Week in San Francisco, and detailing some of the best places to &#8217;shoot&#8217; Blue Angles, including GPS co-ordinates plotted on a <a href="/photography/writeups/fleet-week/fleet-week-sf-googlemap.php">Google Map</a>.</p>
<p>Here are some pictures from 2005, around Fort Point of Golden Gate Bridge</p>
<p><a href="/photography/gallery/events/fleet-week-sf/DSC_7318-800x600.html"><img src="/photography/gallery/events/fleet-week-sf/DSC_7318-150.jpg" border="1" hspace="5" vspace="5" /></a>  <a href="/photography/gallery/events/fleet-week-sf/DSC_7325-800x600.html"><img src="/photography/gallery/events/fleet-week-sf/DSC_7325-150.jpg" border="1" hspace="5" vspace="5" /></a></p>
<p>And SFChronicle photographers produce some amazing photos of the event.  See <a href="http://www.sfgate.com/cgi-bin/object/article?f=/c/a/2007/10/07/BA3PSLIMT.DTL&amp;o=0">here</a> and <a href="http://www.sfgate.com/cgi-bin/object/article?m=/c/pictures/2005/10/07/mn_blueangles_244_df.jpg&amp;f=/c/a/2005/10/07/BAGJ3F3GJN17.DTL">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://sujee.net/blog/2007/10/04/blue-angels-at-fleetweek-in-san-francisco/feed/</wfw:commentRss>
		</item>
		<item>
		<title>[photography] Hazy sunset at Pacifica Pier</title>
		<link>http://sujee.net/blog/2007/09/06/hazy-sunset-by-pacifica-pier/</link>
		<comments>http://sujee.net/blog/2007/09/06/hazy-sunset-by-pacifica-pier/#comments</comments>
		<pubDate>Fri, 07 Sep 2007 07:05:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[photography]]></category>

		<guid isPermaLink="false">http://sujee.net/blog/?p=6</guid>
		<description><![CDATA[Today San Francisco Bay Area was blanketed by smoke/haze from wild fires from Sierra.  (news : link1, link2, link3).  The sky was completely gray and dull.  Predicting that the sunset would be extra color full, I went by Pacifica Pier hoping to take some photos.  Here they are:
  
  [...]]]></description>
			<content:encoded><![CDATA[<p>Today San Francisco Bay Area was blanketed by smoke/haze from wild fires from Sierra.  (news : <a href="http://www.insidebayarea.com/argus/localnews/ci_6815620">link1</a>, <a href="http://www.mercurynews.com/breakingnews/ci_6817769">link2</a>, <a href="http://www.sfgate.com/cgi-bin/article.cgi?f=/c/a/2007/09/07/BA45S0CTR.DTL&amp;tsp=1">link3</a>).  The sky was completely gray and dull.  Predicting that the sunset would be extra color full, I went by <a href="http://www.pacificapier.com/">Pacifica Pier</a> hoping to take some photos.  Here they are:</p>
<p><a href="http://sujee.net/blog/wp-content/uploads/2007/09/suj_4957.jpg" title="suj_4957.jpg"><img src="http://sujee.net/blog/wp-content/uploads/2007/09/suj_4957.thumbnail.jpg" alt="suj_4957.jpg" /></a> <a href="http://sujee.net/blog/wp-content/uploads/2007/09/suj_4973.jpg" title="suj_4973.jpg"><img src="http://sujee.net/blog/wp-content/uploads/2007/09/suj_4973.thumbnail.jpg" alt="suj_4973.jpg" /></a> <a href="http://sujee.net/blog/wp-content/uploads/2007/09/suj_4997.jpg" title="suj_4997.jpg"><img src="http://sujee.net/blog/wp-content/uploads/2007/09/suj_4997.thumbnail.jpg" alt="suj_4997.jpg" /></a></p>
<p><a href="http://sujee.net/blog/wp-content/uploads/2007/09/suj_5025.jpg" title="suj_5025.jpg"><img src="http://sujee.net/blog/wp-content/uploads/2007/09/suj_5025.thumbnail.jpg" alt="suj_5025.jpg" /></a> <a href="http://sujee.net/blog/wp-content/uploads/2007/09/suj_5059.jpg" title="suj_5059.jpg"><img src="http://sujee.net/blog/wp-content/uploads/2007/09/suj_5059.thumbnail.jpg" alt="suj_5059.jpg" /></a> <a href="http://sujee.net/blog/wp-content/uploads/2007/09/suj_5068.jpg" title="suj_5068.jpg"><img src="http://sujee.net/blog/wp-content/uploads/2007/09/suj_5068.thumbnail.jpg" alt="suj_5068.jpg" /></a></p>
<p>First 4 photos, show the fiery sun sinking into the ocean.  Last two photos are about 15,20 minutes after  sunset. Last image is my favorite.</p>
<p>Notes</p>
<ul>
<li>Time &amp; Location : I go to shoot sunsets when there are high clouds or the sky is hazy.  Clouds sprinkle colors on the sky, and the haze accentuates redness of the sunset.<br />
Pacifica is almost always fogged in during Summer months; so you won&#8217;t even see sunset. During Spring and Fall skies will be clear &amp; crisp; but this is not make for a grand sunset either.  During Winter, storm clouds hang low on horizon and you can get dramatic sunsets.  Or look for days when there are lots of high clouds in Western sky</li>
<li>I use a telephoto, to zoom in and compress the image.  The size of the Sun is &#8216;magnified&#8217; when doing this</li>
<li>For the last photo, I used a 0.6 (2 stop) ND Gradual filter (<a href="http://members.aol.com/kevinoneil/nd.html">explanation</a>, <a href="http://www.2filter.com/faq/techgradinfo.html">buy</a>) to mask the sky, so I could get smooth, even colors on sky and water. Without the filter, the sky would have been too bright, and water would be too dark</li>
<li> I used longest shutter speed I could possibly get (by turning up Aperture to F16,F22),  to smooth out the waves and water movement</li>
<li>used a Tripod with cable release</li>
<li>bracketed from -1.0 ev  to +1.0ev<br />
When the Sun is in the pictures (first pictures) the camera will underexpose because the scene is very bright.  So compensate by ++ (+1.0 or +1.5ev works for me)<br />
After the sunset, camera will over-expose (not enough light); to maintain silhouettes underexpose (-1.0ev or -1.5ev works for me)</li>
<li>Gear:<br />
Camera : Nikon D200<br />
Lens : Nikor 80-200<br />
White Balance : Shade<br />
Tripod + cable release.<br />
images were shot in JPG and no editing is done, just resizing</li>
</ul>
<p>&lt;plug&gt;Checkout  <a href="http://sujee.net/photography/gallery/">My Gallery</a>,   <a href="http://sujee.net/photography/gallery/latest/">Latest Images</a>   and <a href="http://sujee.net/photography/writeups/">Writeups</a> &lt;/plug&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://sujee.net/blog/2007/09/06/hazy-sunset-by-pacifica-pier/feed/</wfw:commentRss>
		</item>
		<item>
		<title>[rant]  &#8216;He is such an IFone&#8217;</title>
		<link>http://sujee.net/blog/2007/07/26/he-is-such-an-ifone/</link>
		<comments>http://sujee.net/blog/2007/07/26/he-is-such-an-ifone/#comments</comments>
		<pubDate>Thu, 26 Jul 2007 23:27:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[rants]]></category>

		<guid isPermaLink="false">http://sujee.net/blog/?p=5</guid>
		<description><![CDATA[After having to put up with co-workers and friends gushing &#8216;ooh, wanna hang out with me and my cool iPhone (in Santana Row)&#8217;, I am coining a new term:
iFone :

When applied to a person:
Used to describe a person so full of himself  but very little substance/depth
When applied to a thing / coding methodology  [...]]]></description>
			<content:encoded><![CDATA[<p>After having to put up with co-workers and friends gushing &#8216;ooh, wanna hang out with me and my cool iPhone (in <a href="http://en.wikipedia.org/wiki/Santana_Row">Santana Row</a>)&#8217;, I am coining a new term:</p>
<p><strong>iFone </strong>:</p>
<ul>
<li>When applied to a person:<br />
Used to describe a person so full of himself  but very little substance/depth</li>
<li>When applied to a thing / coding methodology  / language / operating system<br />
When a thing is so hyped and doesn&#8217;t live up to it</li>
</ul>
<p>Examples:</p>
<ul>
<li>oh, he is such an iFone</li>
<li>oh, it is such an iFone</li>
</ul>
<p>Fans of Sienfield will remember the quote from Jerry : &#8216;He is such a Phony&#8217; from episode &#8216;Parking Space&#8217;</p>
<p>http://www.tvsquad.com/2006/09/06/seinfeld-the-parking-space/</p>
<p>Note : The word is iFone, not iPhone (which is, I am sure a trademark by Apple Inc)</p>
]]></content:encoded>
			<wfw:commentRss>http://sujee.net/blog/2007/07/26/he-is-such-an-ifone/feed/</wfw:commentRss>
		</item>
		<item>
		<title>[tech] Using Xmlbeans to process Epcis events</title>
		<link>http://sujee.net/blog/2007/05/21/using-xmlbeans-to-process-epcis-events/</link>
		<comments>http://sujee.net/blog/2007/05/21/using-xmlbeans-to-process-epcis-events/#comments</comments>
		<pubDate>Tue, 22 May 2007 06:37:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[tech]]></category>

		<category><![CDATA[epcis]]></category>

		<category><![CDATA[java]]></category>

		<category><![CDATA[xml]]></category>

		<category><![CDATA[rfid]]></category>

		<guid isPermaLink="false">http://sujee.net/blog/?p=4</guid>
		<description><![CDATA[This article walks through examples of processing Epcis XML events in Java, using Xmlbeans library.
*Go to Article*
]]></description>
			<content:encoded><![CDATA[<p>This article walks through examples of processing Epcis XML events in Java, using Xmlbeans library.</p>
<p><a href="../tech/articles/epcis/">*Go to Article*</a></p>
]]></content:encoded>
			<wfw:commentRss>http://sujee.net/blog/2007/05/21/using-xmlbeans-to-process-epcis-events/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Hello world !  (again)</title>
		<link>http://sujee.net/blog/2007/05/21/hello-world/</link>
		<comments>http://sujee.net/blog/2007/05/21/hello-world/#comments</comments>
		<pubDate>Tue, 22 May 2007 06:07:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[personal]]></category>

		<guid isPermaLink="false">http://sujee.net/blog/?p=3</guid>
		<description><![CDATA[Hi all,
I had a blog before every cat and dog had one.  But I was getting inundated with so much spam.  Pretty soon it became not worthwhile  to fight it and I shut the blog down (besides I didn&#8217;t have very much interesting stuff to say anyway)
Now, with the excellent Akismeet, it [...]]]></description>
			<content:encoded><![CDATA[<p>Hi all,</p>
<p>I had a blog before <a href="http://technorati.com/">every cat and dog had one</a>.  But I was getting inundated with so much spam.  Pretty soon it became not worthwhile  to fight it and I shut the blog down (besides I didn&#8217;t have very much interesting stuff to say anyway)</p>
<p>Now, with the excellent <a href="http://akismet.com/">Akismeet,</a> it is possible to just write a blog without worrying to much about the spam.  So I am trying, once again.</p>
<p>I want to write mostly about tech  and photography.</p>
]]></content:encoded>
			<wfw:commentRss>http://sujee.net/blog/2007/05/21/hello-world/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
