<?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:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>The Geeky Side of Me</title>
	<atom:link href="http://geekymazel.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://geekymazel.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Fri, 17 Jul 2009 06:55:08 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='geekymazel.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/f83ab6dbe673489b52cdc8c6ef7f71ac?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>The Geeky Side of Me</title>
		<link>http://geekymazel.wordpress.com</link>
	</image>
			<item>
		<title>Upload and Download File Using Struts</title>
		<link>http://geekymazel.wordpress.com/2009/07/17/upload-and-download-file-using-struts/</link>
		<comments>http://geekymazel.wordpress.com/2009/07/17/upload-and-download-file-using-struts/#comments</comments>
		<pubDate>Fri, 17 Jul 2009 06:25:18 +0000</pubDate>
		<dc:creator>mazel</dc:creator>
				<category><![CDATA[j2ee]]></category>
		<category><![CDATA[struts]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[servlet]]></category>
		<category><![CDATA[upload]]></category>
		<category><![CDATA[download]]></category>

		<guid isPermaLink="false">http://geekymazel.wordpress.com/?p=9</guid>
		<description><![CDATA[The main concept of this is first, put the file in the server, and then get the file from server and send it to the client. I&#8217;ve read somewhere that the part wherein you save the file to the server should be omitted. In theory, I agree with that person. The data to be uploaded [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geekymazel.wordpress.com&blog=3655695&post=9&subd=geekymazel&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>The main concept of this is first, put the file in the server, and then get the file from server and send it to the client. I&#8217;ve read somewhere that the part wherein you save the file to the server should be omitted. In theory, I agree with that person. The data to be uploaded to the server is already written on the Stream, why not just get that stream and send it as is to the client. Logically speaking, it seems easy to do. I&#8217;ve tried that but it seems that I did something wrong cause it wasn&#8217;t working.</p>
<p>Anyway, here&#8217;s what I did to upload and downloading a file using Struts.<br />
<span id="more-9"></span></p>
<p><code><em>public ActionForward execute(ActionMapping mapping, ActionForm form, HttpServletRequest req, HttpServletResponse res) throws Exception {<br />
HttpSession session = req.getSession(false);<br />
ActionErrors errors = new ActionErrors();<br />
ActionMessages messages = new ActionMessages();<br />
String filename = "FileToBeUploaded.xls";<br />
ServletContext context = getServlet().getServletContext();<br />
//temporary folder's path<br />
String tempDirName = context.getRealPath("temp");<br />
String outFileName = tempDirName + File.separator + filename;<br />
File outFile = new File(outFileName);<br />
//-- prepare file.. In this case, it is POI's HSSFWorkbook<br />
HSSFWorkbook wb = CreateExcel.getWorkbook();<br />
// Check if temp directory is existing or not<br />
if (!xlsFile.getParentFile().exists()) {<br />
xlsFile.getParentFile().mkdirs();}<br />
BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream(xlsFile));<br />
wb.write(bos);<br />
bos.flush();<br />
bos.close(); bos = null;<br />
// OR<br />
OutputStreamWriter writer = new OutputStreamWriter(new BufferedOutputStream(new FileOutputStream(xlsFile)));<br />
writer.write(data);<br />
writer.flush(); writer.close; writer = null;<br />
//-------<br />
// If there's no problem<br />
res.setContentType("application/octet-stream");<br />
res.setHeader("Content-Disposition","attachment;" + " filename=" + filename);<br />
res.setContentLength((int)outFile.length());<br />
// Download file<br />
BufferedOutputStream out = new BufferedOutputStream(res.getOutputStream());<br />
BufferedInputStream in = new BufferedInputStream(new FileInputStream(outFile));<br />
int c;<br />
while ((c = in.read()) != -1){<br />
out.write(c);<br />
}<br />
in.close(); out.flush(); out.close();<br />
// Delete file after downloading<br />
outFile.delete()<br />
}</em></code></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/geekymazel.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/geekymazel.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/geekymazel.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/geekymazel.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/geekymazel.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/geekymazel.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/geekymazel.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/geekymazel.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/geekymazel.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/geekymazel.wordpress.com/9/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geekymazel.wordpress.com&blog=3655695&post=9&subd=geekymazel&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://geekymazel.wordpress.com/2009/07/17/upload-and-download-file-using-struts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/db3e56b967c6f1534e4d26c3dbb75a9f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mazel</media:title>
		</media:content>
	</item>
		<item>
		<title>makegumi</title>
		<link>http://geekymazel.wordpress.com/2008/10/15/makegumi/</link>
		<comments>http://geekymazel.wordpress.com/2008/10/15/makegumi/#comments</comments>
		<pubDate>Wed, 15 Oct 2008 02:17:04 +0000</pubDate>
		<dc:creator>mazel</dc:creator>
				<category><![CDATA[japanese]]></category>

		<guid isPermaLink="false">http://geekymazel.wordpress.com/?p=6</guid>
		<description><![CDATA[yesterday, me and some of my japanese colleagues were talking about relationships and settling down. one of them told me about makegumi (負け組). The real meaning of the word is &#8220;loser&#8221; like losing in Olympics or tournaments. But aside from this kind of meaning, he told me that if a person reaches the age above [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geekymazel.wordpress.com&blog=3655695&post=6&subd=geekymazel&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>yesterday, me and some of my japanese colleagues were talking about relationships and settling down. one of them told me about makegumi (負け組). The real meaning of the word is &#8220;loser&#8221; like losing in Olympics or tournaments. But aside from this kind of meaning, he told me that if a person reaches the age above 30 years old, he/she is already considered makegumi.</p>
<p>I&#8217;m already 26 years old and sometimes I feel the pressure to get hitched soon. But I know, this kind of decision should not be done hastily. But hopefully, I wouldn&#8217;t be makegumi.  <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/geekymazel.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/geekymazel.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/geekymazel.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/geekymazel.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/geekymazel.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/geekymazel.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/geekymazel.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/geekymazel.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/geekymazel.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/geekymazel.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geekymazel.wordpress.com&blog=3655695&post=6&subd=geekymazel&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://geekymazel.wordpress.com/2008/10/15/makegumi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/db3e56b967c6f1534e4d26c3dbb75a9f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mazel</media:title>
		</media:content>
	</item>
		<item>
		<title>Setting IME For Your Page in IE</title>
		<link>http://geekymazel.wordpress.com/2008/05/23/setting-ime-for-your-page-in-ie/</link>
		<comments>http://geekymazel.wordpress.com/2008/05/23/setting-ime-for-your-page-in-ie/#comments</comments>
		<pubDate>Fri, 23 May 2008 00:29:49 +0000</pubDate>
		<dc:creator>mazel</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[ime]]></category>

		<guid isPermaLink="false">http://geekymazel.wordpress.com/?p=5</guid>
		<description><![CDATA[When I was doing some work for a client, I came across a requirement to set the textbox&#8217;s default IME settings into Japanese Hiragana. I know how to do that in a Windows Application using Visual Studio (since it&#8217;s integrated in the IDE), but in a Web Application.. I really didn&#8217;t have any idea how [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geekymazel.wordpress.com&blog=3655695&post=5&subd=geekymazel&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>When I was doing some work for a client, I came across a requirement to set the textbox&#8217;s default IME settings into Japanese Hiragana. I know how to do that in a Windows Application using Visual Studio (since it&#8217;s integrated in the IDE), but in a Web Application.. I really didn&#8217;t have any idea how to do it. I searched the net and found how:</p>
<p><span id="more-5"></span><br />
To set a textbox&#8217;s default IME to Japanese character (double-byte characters):<br />
<code>＜input type="text" name="ime_active_text" style="ime-mode:active"＞</code></p>
<p>To set it to Roman characters (single-byte characters):<br />
<code>＜input type="text" name="ime_inactive_text" style="ime-mode:inactive"＞</code></p>
<p>To disable the IME:<br />
<code>＜input type="text" name="ime_disable_text" style="ime-mode:disable"＞</code></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/geekymazel.wordpress.com/5/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/geekymazel.wordpress.com/5/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/geekymazel.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/geekymazel.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/geekymazel.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/geekymazel.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/geekymazel.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/geekymazel.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/geekymazel.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/geekymazel.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/geekymazel.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/geekymazel.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geekymazel.wordpress.com&blog=3655695&post=5&subd=geekymazel&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://geekymazel.wordpress.com/2008/05/23/setting-ime-for-your-page-in-ie/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/db3e56b967c6f1534e4d26c3dbb75a9f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mazel</media:title>
		</media:content>
	</item>
		<item>
		<title>Connection Strings</title>
		<link>http://geekymazel.wordpress.com/2008/05/07/connection-strings/</link>
		<comments>http://geekymazel.wordpress.com/2008/05/07/connection-strings/#comments</comments>
		<pubDate>Wed, 07 May 2008 02:58:12 +0000</pubDate>
		<dc:creator>mazel</dc:creator>
				<category><![CDATA[database]]></category>
		<category><![CDATA[connection string]]></category>
		<category><![CDATA[db]]></category>

		<guid isPermaLink="false">http://geekymazel.wordpress.com/?p=4</guid>
		<description><![CDATA[It&#8217;s a bit hard developing in different languages using different databases. And most of the times, I forget the connection string that I should use. 
The following three connection strings would probably be the strings that I&#8217;d use often:

Oracle
Data Source=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=MyHost)(PORT=MyPort))(CONNECT_DATA=(SERVICE_NAME=MyOracleSID)));User Id=myUsername;Password=myPassword;
SQL Server 2005 (Standard Security for .NET)
Data Source=myServerAddress;Initial Catalog=myDataBase;User Id=myUsername;Password=myPassword;
SQL Server 2000 (Standard Security for [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geekymazel.wordpress.com&blog=3655695&post=4&subd=geekymazel&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>It&#8217;s a bit hard developing in different languages using different databases. And most of the times, I forget the connection string that I should use. </p>
<p>The following three connection strings would probably be the strings that I&#8217;d use often:</p>
<p><span id="more-4"></span><br />
<strong>Oracle</strong><br />
<code>Data Source=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=MyHost)(PORT=MyPort))(CONNECT_DATA=(SERVICE_NAME=MyOracleSID)));User Id=myUsername;Password=myPassword;</code></p>
<p><strong>SQL Server 2005 (Standard Security for .NET)</strong><br />
<code>Data Source=myServerAddress;Initial Catalog=myDataBase;User Id=myUsername;Password=myPassword;</code></p>
<p><strong>SQL Server 2000 (Standard Security for .NET)</strong><br />
<code>Server=myServerAddress;Database=myDataBase;User ID=myUsername;Password=myPassword;</code></p>
<p>Another syntax is this:<br />
<code>Data Source=myServerAddress;Initial Catalog=myDataBase;User Id=myUsername;Password=myPassword;</code></p>
<p>If you&#8217;re looking for other connection strings, visit <a href="http://www.connectionstrings.com">ConnectionStrings.com</a>. They have connection strings not only for databases but also for other files such as Excel and Active Directory.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/geekymazel.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/geekymazel.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/geekymazel.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/geekymazel.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/geekymazel.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/geekymazel.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/geekymazel.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/geekymazel.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/geekymazel.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/geekymazel.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/geekymazel.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/geekymazel.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geekymazel.wordpress.com&blog=3655695&post=4&subd=geekymazel&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://geekymazel.wordpress.com/2008/05/07/connection-strings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/db3e56b967c6f1534e4d26c3dbb75a9f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mazel</media:title>
		</media:content>
	</item>
		<item>
		<title>japanese date format</title>
		<link>http://geekymazel.wordpress.com/2008/05/06/japanese-date-format/</link>
		<comments>http://geekymazel.wordpress.com/2008/05/06/japanese-date-format/#comments</comments>
		<pubDate>Tue, 06 May 2008 04:34:02 +0000</pubDate>
		<dc:creator>mazel</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[date format]]></category>
		<category><![CDATA[jap date]]></category>
		<category><![CDATA[vb 2005]]></category>

		<guid isPermaLink="false">http://geekymazel.wordpress.com/?p=3</guid>
		<description><![CDATA[Currently at work, I&#8217;m doing an upgraded version of an in-house system. It was developed using MS Access, and now, they want a VB.NET 2.0 and SQL Server 2005 version.
One of the reports that I&#8217;ll use needs the date in Japanese format. [The Japanese date format uses eras. For example, we're in 2008; in japanese [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geekymazel.wordpress.com&blog=3655695&post=3&subd=geekymazel&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Currently at work, I&#8217;m doing an upgraded version of an in-house system. It was developed using MS Access, and now, they want a VB.NET 2.0 and SQL Server 2005 version.</p>
<p>One of the reports that I&#8217;ll use needs the date in Japanese format. [<em>The Japanese date format uses eras. For example, we're in 2008; in japanese calendar, that's 平成20.</em>] It took me some time to figure out how to do that.</p>
<p><span id="more-3"></span><br />
So in order to do this, first, import <strong>System.Globalization</strong>. Then, get the <strong>DateTimeFormat</strong> of the Japanese Calendar with <strong>CultureInfo(&#8220;ja-JP&#8221;).DateTimeFormat</strong>. Don&#8217;t forget to set the calendar of the <strong>DateTimeFormat</strong> into <strong>JapaneseCalendar</strong>. Lastly, the format pattern of the year is &#8220;<strong>ggyy</strong>&#8220;, where <strong>gg</strong> stands for the kanji of the era, and the <strong>yy</strong> is for the year.</p>
<p>Here&#8217;s a sample source code:</p>
<p><code>Imports System.Globalization<br />
Module Test<br />
Sub Main()<br />
Dim dtNow As Date = Date.Now<br />
Dim jpnCalFormat As System.Globalization.DateTimeFormatInfo = New CultureInfo("ja-JP").DateTimeFormat<br />
jpnCalFormat.Calendar() = New JapaneseCalendar()<br />
Dim jpnDate As String = dtNow.ToString("ggyy年MM月dd日", jpnCalFormat)<br />
System.Console.WriteLine(jpnDate)<br />
End Sub<br />
End Module</code></p>
<p>Another way to do this is this:<br />
<code>Dim S As String = Microsoft.VisualBasic.Compatibility.VB6.Format(Date.Now, "ggge年mm月dd日")</code></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/geekymazel.wordpress.com/3/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/geekymazel.wordpress.com/3/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/geekymazel.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/geekymazel.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/geekymazel.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/geekymazel.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/geekymazel.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/geekymazel.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/geekymazel.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/geekymazel.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/geekymazel.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/geekymazel.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geekymazel.wordpress.com&blog=3655695&post=3&subd=geekymazel&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://geekymazel.wordpress.com/2008/05/06/japanese-date-format/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/db3e56b967c6f1534e4d26c3dbb75a9f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mazel</media:title>
		</media:content>
	</item>
		<item>
		<title>Hello world!</title>
		<link>http://geekymazel.wordpress.com/2008/05/06/hello-world/</link>
		<comments>http://geekymazel.wordpress.com/2008/05/06/hello-world/#comments</comments>
		<pubDate>Tue, 06 May 2008 01:50:00 +0000</pubDate>
		<dc:creator>mazel</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Welcome to the geeky side of me.
I&#8217;d be posting a wide genre of topics. From source codes to Japanese language. Things that I&#8217;m currently studying or something that I&#8217;ve discovered. Boring or interesting topics. Anything under the sun.
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geekymazel.wordpress.com&blog=3655695&post=1&subd=geekymazel&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Welcome to the geeky side of me.</p>
<p>I&#8217;d be posting a wide genre of topics. From source codes to Japanese language. Things that I&#8217;m currently studying or something that I&#8217;ve discovered. Boring or interesting topics. Anything under the sun.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/geekymazel.wordpress.com/1/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/geekymazel.wordpress.com/1/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/geekymazel.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/geekymazel.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/geekymazel.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/geekymazel.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/geekymazel.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/geekymazel.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/geekymazel.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/geekymazel.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/geekymazel.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/geekymazel.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geekymazel.wordpress.com&blog=3655695&post=1&subd=geekymazel&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://geekymazel.wordpress.com/2008/05/06/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/db3e56b967c6f1534e4d26c3dbb75a9f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mazel</media:title>
		</media:content>
	</item>
	</channel>
</rss>