<?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>Mohd Malaka Weblog</title>
	<atom:link href="http://malakablog.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://malakablog.wordpress.com</link>
	<description>About anything....</description>
	<lastBuildDate>Wed, 09 Sep 2009 10:50:10 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='malakablog.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/40fb6904edc55e2e5de799a236d8bd77?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Mohd Malaka Weblog</title>
		<link>http://malakablog.wordpress.com</link>
	</image>
			<item>
		<title>Write to a file using JavaScript</title>
		<link>http://malakablog.wordpress.com/2009/09/09/write-to-a-file-using-javascript/</link>
		<comments>http://malakablog.wordpress.com/2009/09/09/write-to-a-file-using-javascript/#comments</comments>
		<pubDate>Wed, 09 Sep 2009 10:40:28 +0000</pubDate>
		<dc:creator>malakablog</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[file]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[progamming]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[Scripting.FileSystemObject]]></category>
		<category><![CDATA[write]]></category>

		<guid isPermaLink="false">http://malakablog.wordpress.com/?p=266</guid>
		<description><![CDATA[
Use this function to write to a file using JavaScript
 
function WriteToFile(sMessage)
{
  try
  {
        var fso, s;
        fso = new ActiveXObject(&#8220;Scripting.FileSystemObject&#8221;);
        sFile = fso.OpenTextFile(&#8220;C:\\logs.txt&#8221;, 8);
        sFile.writeline(sMessage);
        sFile.Close();
  }
  catch(err)
  {
        var strErr = &#8216;Error:&#8217;;
        strErr += &#8216;\nNumber:&#8217; + err.number;
        strErr += &#8216;\nDescription:&#8217; + err.description;
        document.write(strErr);
  }
}

       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=malakablog.wordpress.com&blog=3605978&post=266&subd=malakablog&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p class="MsoNormal" style="margin:0;"><span style="font-size:10pt;font-family:Verdana;"><br />
Use this function to write to a file using JavaScript</span></p>
<p> </p>
<blockquote><p class="MsoNormal" style="margin:0;"><span style="font-size:10pt;font-family:Verdana;">function WriteToFile(sMessage)<br />
{<br />
  try<br />
  {<br />
        var fso, s;<br />
        fso = new ActiveXObject(&#8220;Scripting.FileSystemObject&#8221;);<br />
        sFile = fso.OpenTextFile(&#8220;C:\\logs.txt&#8221;, 8);<br />
        sFile.writeline(sMessage);<br />
        sFile.Close();<br />
  }<br />
  catch(err)<br />
  {<br />
        var strErr = &#8216;Error:&#8217;;<br />
        strErr += &#8216;\nNumber:&#8217; + err.number;<br />
        strErr += &#8216;\nDescription:&#8217; + err.description;<br />
        document.write(strErr);<br />
  }<br />
}</span>
</p></blockquote>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/malakablog.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/malakablog.wordpress.com/266/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/malakablog.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/malakablog.wordpress.com/266/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/malakablog.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/malakablog.wordpress.com/266/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/malakablog.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/malakablog.wordpress.com/266/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/malakablog.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/malakablog.wordpress.com/266/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=malakablog.wordpress.com&blog=3605978&post=266&subd=malakablog&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://malakablog.wordpress.com/2009/09/09/write-to-a-file-using-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/77b6cc6b138b826daef017729b085636?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">malakablog</media:title>
		</media:content>
	</item>
		<item>
		<title>Dublin</title>
		<link>http://malakablog.wordpress.com/2009/09/07/dublin/</link>
		<comments>http://malakablog.wordpress.com/2009/09/07/dublin/#comments</comments>
		<pubDate>Mon, 07 Sep 2009 15:56:08 +0000</pubDate>
		<dc:creator>malakablog</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[D450]]></category>
		<category><![CDATA[flickr]]></category>
		<category><![CDATA[HDR]]></category>
		<category><![CDATA[Photo]]></category>
		<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://malakablog.wordpress.com/2009/09/07/dublin/</guid>
		<description><![CDATA[

       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=malakablog.wordpress.com&blog=3605978&post=254&subd=malakablog&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><div style="float:right;margin-left:10px;margin-bottom:10px;"><a title="Click to view on Large" href="http://farm4.static.flickr.com/3418/3807356516_af3d720cd7_b.jpg"></a></div>
<div><a href="http://www.flickr.com/photos/mmalaka/3807356516/"><img class="aligncenter" style="border:#000000 2px solid;" src="http://farm4.static.flickr.com/3418/3807356516_af3d720cd7.jpg" alt="" /></a></div>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/malakablog.wordpress.com/254/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/malakablog.wordpress.com/254/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/malakablog.wordpress.com/254/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/malakablog.wordpress.com/254/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/malakablog.wordpress.com/254/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/malakablog.wordpress.com/254/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/malakablog.wordpress.com/254/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/malakablog.wordpress.com/254/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/malakablog.wordpress.com/254/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/malakablog.wordpress.com/254/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=malakablog.wordpress.com&blog=3605978&post=254&subd=malakablog&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://malakablog.wordpress.com/2009/09/07/dublin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/77b6cc6b138b826daef017729b085636?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">malakablog</media:title>
		</media:content>

		<media:content url="http://farm4.static.flickr.com/3418/3807356516_af3d720cd7.jpg" medium="image" />
	</item>
		<item>
		<title>In Dublin Zoo</title>
		<link>http://malakablog.wordpress.com/2009/09/03/in-dublin-zoo/</link>
		<comments>http://malakablog.wordpress.com/2009/09/03/in-dublin-zoo/#comments</comments>
		<pubDate>Thu, 03 Sep 2009 08:18:31 +0000</pubDate>
		<dc:creator>malakablog</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA["Dublin Zoo"]]></category>
		<category><![CDATA[animal]]></category>
		<category><![CDATA[closeup]]></category>
		<category><![CDATA[Dublin]]></category>
		<category><![CDATA[face]]></category>
		<category><![CDATA[Photo]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[Zoo]]></category>
		<category><![CDATA[zoom]]></category>

		<guid isPermaLink="false">http://malakablog.wordpress.com/2009/09/03/in-dublin-zoo/</guid>
		<description><![CDATA[
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=malakablog.wordpress.com&blog=3605978&post=249&subd=malakablog&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p style="text-align:center;"><a href="http://www.flickr.com/photos/mmalaka/3812331367/" title="In Dublin Zoo by mmalaka, on Flickr"><img class="aligncenter" style="border:#000000 2px solid;" src="http://farm4.static.flickr.com/3554/3812331367_452eb5c2e2.jpg" alt="" /></a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/malakablog.wordpress.com/249/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/malakablog.wordpress.com/249/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/malakablog.wordpress.com/249/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/malakablog.wordpress.com/249/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/malakablog.wordpress.com/249/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/malakablog.wordpress.com/249/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/malakablog.wordpress.com/249/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/malakablog.wordpress.com/249/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/malakablog.wordpress.com/249/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/malakablog.wordpress.com/249/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=malakablog.wordpress.com&blog=3605978&post=249&subd=malakablog&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://malakablog.wordpress.com/2009/09/03/in-dublin-zoo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/77b6cc6b138b826daef017729b085636?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">malakablog</media:title>
		</media:content>

		<media:content url="http://farm4.static.flickr.com/3554/3812331367_452eb5c2e2.jpg" medium="image" />
	</item>
		<item>
		<title>GreyStones</title>
		<link>http://malakablog.wordpress.com/2009/08/17/greystones/</link>
		<comments>http://malakablog.wordpress.com/2009/08/17/greystones/#comments</comments>
		<pubDate>Mon, 17 Aug 2009 15:31:00 +0000</pubDate>
		<dc:creator>malakablog</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[flickr]]></category>
		<category><![CDATA[GreyStones]]></category>
		<category><![CDATA[Ireland]]></category>
		<category><![CDATA[Photo]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[recommend]]></category>

		<guid isPermaLink="false">http://malakablog.wordpress.com/?p=245</guid>
		<description><![CDATA[GreyStones is located on Ireland’s east cost, I used to live there for more than a year (September 2006 &#8211; November 2007). It is a very beautiful town with amazing beach and beautiful green areas, since we moved from GreyStones we used to go back there from time to time. I recommend this town to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=malakablog.wordpress.com&blog=3605978&post=245&subd=malakablog&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><font size="2">GreyStones is located on Ireland’s east cost, I used to live there for more than a year (September 2006 &#8211; November 2007). It is a very beautiful town with amazing beach and beautiful green areas, since we moved from GreyStones we used to go back there from time to time. I recommend this town to anyone visiting Ireland</font></p>
<p><font size="2"></font></p>
<div class="wlWriterEditableSmartContent" id="scid:84E294D0-71C9-4bd0-A0FE-95764E0368D9:e19f1fe0-7da4-4dfe-8d5a-8a7ed7acb49c" style="display:block;float:none;width:332px;margin:0 auto;padding:0;"><a href="http://maps.live.com/default.aspx?v=2&amp;cp=53.14475~-6.06298&amp;lvl=13&amp;style=r&amp;mkt=en-us&amp;FORM=LLWR" id="map-9ae7e3ea-2274-4255-a242-0c89dc85fd02" title="Click to view this map on Live.com"><img src="http://malakablog.files.wordpress.com/2009/08/mape509009c3e50.jpg?w=320&#038;h=240" width="320" height="240" alt="Map picture"></a></div>
<p>&#160;</p>
<p>&#160;</p>
<p><a href="http://www.flickr.com/photos/mmalaka/3823516304/" target="_blank"><img style="display:block;float:none;margin-left:auto;margin-right:auto;" src="http://farm4.static.flickr.com/3518/3823516304_e5370ae59c.jpg" /></a></p>
<p>&#160;</p>
<p>more of my GreyStones’s photos <a href="http://www.flickr.com/photos/mmalaka/sets/72157600049240164/" target="_blank">here</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/malakablog.wordpress.com/245/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/malakablog.wordpress.com/245/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/malakablog.wordpress.com/245/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/malakablog.wordpress.com/245/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/malakablog.wordpress.com/245/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/malakablog.wordpress.com/245/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/malakablog.wordpress.com/245/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/malakablog.wordpress.com/245/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/malakablog.wordpress.com/245/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/malakablog.wordpress.com/245/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=malakablog.wordpress.com&blog=3605978&post=245&subd=malakablog&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://malakablog.wordpress.com/2009/08/17/greystones/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/77b6cc6b138b826daef017729b085636?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">malakablog</media:title>
		</media:content>

		<media:content url="http://malakablog.files.wordpress.com/2009/08/mape509009c3e50.jpg" medium="image">
			<media:title type="html">Map picture</media:title>
		</media:content>

		<media:content url="http://farm4.static.flickr.com/3518/3823516304_e5370ae59c.jpg" medium="image" />
	</item>
		<item>
		<title>My Simpsons Avatar</title>
		<link>http://malakablog.wordpress.com/2009/08/05/my-simpsons-avatar/</link>
		<comments>http://malakablog.wordpress.com/2009/08/05/my-simpsons-avatar/#comments</comments>
		<pubDate>Wed, 05 Aug 2009 09:55:22 +0000</pubDate>
		<dc:creator>malakablog</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[avatar]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[funny]]></category>
		<category><![CDATA[joke]]></category>
		<category><![CDATA[Simpsons]]></category>

		<guid isPermaLink="false">http://malakablog.wordpress.com/?p=236</guid>
		<description><![CDATA[Take a look at the Simpsons movie site. I created my own avatar.


it looks like me  .

       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=malakablog.wordpress.com&blog=3605978&post=236&subd=malakablog&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p class="MsoNormal" style="margin:0;"><span style="font-size:10pt;font-family:Verdana;">Take a look at <a href="http://www.simpsonsmovie.com/">the Simpsons movie site</a>. I created my own avatar.</span></p>
<p></p>
<p><img src="http://malakablog.files.wordpress.com/2009/08/avatar.jpg?w=287&#038;h=598" alt="Avatar" title="Avatar" width="287" height="598" class="aligncenter size-full wp-image-237" /></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:10pt;font-family:Verdana;">it looks like me <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</span></p>
<p></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/malakablog.wordpress.com/236/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/malakablog.wordpress.com/236/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/malakablog.wordpress.com/236/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/malakablog.wordpress.com/236/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/malakablog.wordpress.com/236/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/malakablog.wordpress.com/236/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/malakablog.wordpress.com/236/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/malakablog.wordpress.com/236/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/malakablog.wordpress.com/236/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/malakablog.wordpress.com/236/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=malakablog.wordpress.com&blog=3605978&post=236&subd=malakablog&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://malakablog.wordpress.com/2009/08/05/my-simpsons-avatar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/77b6cc6b138b826daef017729b085636?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">malakablog</media:title>
		</media:content>

		<media:content url="http://malakablog.files.wordpress.com/2009/08/avatar.jpg" medium="image">
			<media:title type="html">Avatar</media:title>
		</media:content>
	</item>
		<item>
		<title>VB.NET Sort Method for a Collection Class</title>
		<link>http://malakablog.wordpress.com/2009/08/04/vb-net-sort-method-for-a-collection-class/</link>
		<comments>http://malakablog.wordpress.com/2009/08/04/vb-net-sort-method-for-a-collection-class/#comments</comments>
		<pubDate>Tue, 04 Aug 2009 16:48:21 +0000</pubDate>
		<dc:creator>malakablog</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[beginner]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[Collection]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[list]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[sort]]></category>
		<category><![CDATA[VB.NET]]></category>
		<category><![CDATA[VS2005]]></category>

		<guid isPermaLink="false">http://malakablog.wordpress.com/?p=225</guid>
		<description><![CDATA[
I have a VB.NET collection class EmployeesCollection for an Employee Class that got an Integer Property named Age; I want to create a method (SortByAge) to sort the collection members by Age.
 

This is the EmployeesCollection Class:
 
Imports Microsoft.VisualBasic
    Public Class EmployeesCollection
        Inherits System.Collections.CollectionBase
    [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=malakablog.wordpress.com&blog=3605978&post=225&subd=malakablog&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p class="MsoNormal" style="margin:0;"><span style="font-size:10pt;font-family:Verdana;"><br />
I have a VB.NET collection class EmployeesCollection for an Employee Class that got an Integer Property named Age; I want to create a method (SortByAge) to sort the collection members by Age.</span></p>
<p> </p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:10pt;font-family:Verdana;"><br />
This is the EmployeesCollection Class:</span></p>
<p> <code></p>
<p>Imports Microsoft.VisualBasic</p>
<p>    Public Class EmployeesCollection<br />
        Inherits System.Collections.CollectionBase</p>
<p>        Public Sub Add(ByVal tblEmployee As Employee)<br />
            ' Invokes Add method of the List object to add a widget.<br />
            List.Add(tblEmployee)<br />
        End Sub</p>
<p>        Public ReadOnly Property Item(ByVal index As Integer) As Employee<br />
            Get<br />
                ' The appropriate item is retrieved from the List object and<br />
                ' explicitly cast to the Widget type, then returned to the<br />
                ' caller.<br />
                Return CType(List.Item(index), Employee)<br />
            End Get<br />
        End Property</p>
<p>    End Class<br />
 </code></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:10pt;font-family:Verdana;"><br />
To create the SortByAge method I need a SortHelper Class, This helper Class will include a Function called Compare to compare between the Age values of the employees, the SortHelper Class will be part of the EmployeesCollection Class.</span></p>
<p> </p>
<p> <code><br />
Private Class AgeSortHelper<br />
        Implements IComparer</p>
<p>        Public Function Compare(ByVal x As Object, ByVal y As Object) As Integer _<br />
             Implements System.Collections.IComparer.Compare<br />
            If x.Age &gt; y. Age Then<br />
                Return 1<br />
            End If</p>
<p>            If x. Age &lt; y. Age Then<br />
                Return -1<br />
            End If</p>
<p>            Return 0<br />
        End Function<br />
    End Class<br />
</code><br />
 </p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:10pt;font-family:Verdana;"><br />
Now we need to create the SortByAge method for the EmployeesCollection Class, in this method we will use the AgeSortHelper to sort the Employees.</span></p>
<p> <code></p>
<p>    Public Sub SortByAge()<br />
        Dim sorter As System.Collections.IComparer = New AgeSortHelper()<br />
        InnerList.Sort(sorter)<br />
    End Sub</p>
<p> </code></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:10pt;font-family:Verdana;">This is the Final EmployeesCollection Class:</span></p>
<p> <code></p>
<p>Imports Microsoft.VisualBasic</p>
<p>Public Class EmployeesCollection<br />
    Inherits System.Collections.CollectionBase</p>
<p>    Public Sub Add(ByVal tblEmployee As Employee)<br />
        ' Invokes Add method of the List object to add a widget.<br />
        List.Add(tblEmployee)<br />
    End Sub</p>
<p>    Public ReadOnly Property Item(ByVal index As Integer) As Employee<br />
        Get<br />
            ' The appropriate item is retrieved from the List object and<br />
            ' explicitly cast to the Widget type, then returned to the<br />
            ' caller.<br />
            Return CType(List.Item(index), Employee)<br />
        End Get<br />
    End Property</p>
<p>    Public Sub SortByAge()<br />
        Dim sorter As System.Collections.IComparer = New AgeSortHelper()<br />
        InnerList.Sort(sorter)<br />
    End Sub<br />
   <br />
    Private Class AgeSortHelper<br />
        Implements IComparer</p>
<p>        Public Function Compare(ByVal x As Object, ByVal y As Object) As Integer _<br />
             Implements System.Collections.IComparer.Compare<br />
            If x.Age &gt; y. Age Then<br />
                Return 1<br />
            End If</p>
<p>            If x. Age &lt; y. Age Then<br />
                Return -1<br />
            End If</p>
<p>            Return 0<br />
        End Function</p>
<p>    End Class<br />
End Class<br />
</code></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/malakablog.wordpress.com/225/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/malakablog.wordpress.com/225/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/malakablog.wordpress.com/225/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/malakablog.wordpress.com/225/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/malakablog.wordpress.com/225/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/malakablog.wordpress.com/225/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/malakablog.wordpress.com/225/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/malakablog.wordpress.com/225/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/malakablog.wordpress.com/225/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/malakablog.wordpress.com/225/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=malakablog.wordpress.com&blog=3605978&post=225&subd=malakablog&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://malakablog.wordpress.com/2009/08/04/vb-net-sort-method-for-a-collection-class/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/77b6cc6b138b826daef017729b085636?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">malakablog</media:title>
		</media:content>
	</item>
		<item>
		<title>I am back</title>
		<link>http://malakablog.wordpress.com/2009/07/31/i-am-back/</link>
		<comments>http://malakablog.wordpress.com/2009/07/31/i-am-back/#comments</comments>
		<pubDate>Fri, 31 Jul 2009 13:24:53 +0000</pubDate>
		<dc:creator>malakablog</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[back]]></category>
		<category><![CDATA[Connolly]]></category>
		<category><![CDATA[flickr]]></category>
		<category><![CDATA[Photo]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[Station]]></category>

		<guid isPermaLink="false">http://malakablog.wordpress.com/?p=217</guid>
		<description><![CDATA[I have been very busy in the last couple months, I was in a vacation in Amman, Jordan for a month, and when I returned back I had to move into a new house.
 

This post to share with you my most viewed photo in my flickr, I took this photo in Connolly Station.

/span>

From Wikipedia
 
          The [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=malakablog.wordpress.com&blog=3605978&post=217&subd=malakablog&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p class="MsoNormal" style="margin:0;"><span style="font-size:10pt;font-family:Verdana;">I have been very busy in the last couple months, I was in a vacation in Amman, Jordan for a month, and when I returned back I had to move into a new house.</span></p>
<p> 
<p class="MsoNormal" style="margin:0;"><span style="font-size:10pt;font-family:Verdana;"><br />
This post to share with you my most viewed photo in my <a href="http://www.flickr.com/photos/mmalaka/">flickr</a>, I took this photo in Connolly Station.</span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:10pt;font-family:Verdana;"><br />
<div class="wp-caption aligncenter" style="width: 510px"><a href="http://www.flickr.com/photos/mmalaka/3373677060/"><img title="Connolly Station" src="http://farm4.static.flickr.com/3626/3373677060_03c4d5e3dc.jpg" alt="Connolly Station" width="500" height="333" /></a><p class="wp-caption-text">Connolly Station</p></div></span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:10pt;font-family:Verdana;"><br />
From Wikipedia</p>
<p> </p>
<p>          <em>The station was opened on 29 November 1844 by the Dublin &amp;amp; Drogheda Railway Company as Dublin Station, but was renamed ten years later as Amiens Street Station after the street on which it is located. Originally the station only served a single mainline to Drogheda, and only in 1853 did through services to Belfast commence. In 1891 the City of Dublin Junction Railway connected the station with Westland Row Station (now Pearse Station) on the city&#8217;s south side. The C of D Jctn was a separate station known as Amiens St Junction and consisted of the present platforms 5,6 &amp;amp; 7 with a separate street entrance. After the amalgamation of the GNR (I) at the end of the 1950s this station became part of the overall Amiens St and the separate entrance fell into disuse. The C of D Jctn Rly. allowed services to run from Amiens St., through to Westland Row, and onwards to Rosslare and the Southeast. Services to Sligo were transferred to Westland Row (Pearse Stn) operating through the station non-stop in 1937, with the closure of Broadstone Station by CIÉ (see also MGWR). Services to Galway and Mayo also originated/terminated at Westland Row, operating through Connolly Station after 1937, running via Mullingar and Athlone. This was discontinued in the 1970s in favour of running services out of Heuston Station on the better quality Cork line. Passenger running between Mullingar/Athlone ceased completely in 1987.</em></p>
<p><em> </em></p>
<p><em>During the 1960s, Sunday trains to Cork, Limerick and Waterford operated from Connolly platforms 5, 6 &amp;amp; 7 (running through the Phoenix Park tunnel) to avoid the cost of opening Heuston (Kingsbridge) for the limited Sunday traffic demand at that time. </em></p>
<p><em> </em></p>
<p><em>In 1966, the 50th anniversary of the Easter Rising, the station&#8217;s name was changed to Connolly Station after Irish revolutionary and socialist James Connolly. At the same time, several other main stations in the Republic were renamed after patriots executed for their roles in the Rising. </em></p>
<p><em> </em></p>
<p><em>At the commencement of DART services in 1984, the C of D Jctn Rly entrance was refurbished and reopened for commuter traffic. </em></p>
<p><em> </em></p>
<p><em>During the late 1990s, Connolly Station was completely renovated and partially rebuilt. An entirely new station hall was built, the roof over Platforms 1-4 was replaced, and a new bar/cafe and shops were installed. The former DART/Suburban station entrance (C of D Jctn Rly entrance) and the secondary station hall built with the DART (further north on Amiens St) were again closed, but a new entrance on the International Financial Services Centre side was opened. In 2004, the Luas Red Line (to Tallaght) began serving the station. As part of the preparation for this, the ramp which had been a bus terminus was demolished and replaced with a 2-platform tram station connected to the main concourse by escalators and lift.</em><em> </em></span></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/malakablog.wordpress.com/217/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/malakablog.wordpress.com/217/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/malakablog.wordpress.com/217/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/malakablog.wordpress.com/217/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/malakablog.wordpress.com/217/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/malakablog.wordpress.com/217/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/malakablog.wordpress.com/217/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/malakablog.wordpress.com/217/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/malakablog.wordpress.com/217/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/malakablog.wordpress.com/217/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=malakablog.wordpress.com&blog=3605978&post=217&subd=malakablog&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://malakablog.wordpress.com/2009/07/31/i-am-back/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/77b6cc6b138b826daef017729b085636?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">malakablog</media:title>
		</media:content>

		<media:content url="http://farm4.static.flickr.com/3626/3373677060_03c4d5e3dc.jpg" medium="image">
			<media:title type="html">Connolly Station</media:title>
		</media:content>
	</item>
		<item>
		<title>C#: Bind a DropDownList to IDictionary using AjaxPro</title>
		<link>http://malakablog.wordpress.com/2009/05/01/c-bind-a-dropdownlist-to-idictionary-using-ajaxpro-2/</link>
		<comments>http://malakablog.wordpress.com/2009/05/01/c-bind-a-dropdownlist-to-idictionary-using-ajaxpro-2/#comments</comments>
		<pubDate>Fri, 01 May 2009 10:51:35 +0000</pubDate>
		<dc:creator>malakablog</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[ajaxPro]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[beginner]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://malakablog.wordpress.com/?p=206</guid>
		<description><![CDATA[- Implement an AjaxMethod to return IDictionary object
 
[AjaxPro.AjaxMethod]
public IDictionary AjaxGetIDictionary()
{
//Prepare the IDictionary object
}
- Use JavaScript to request the AjaxMethod AjaxGetIDictionary 
MyAjaxClass. AjaxGetIDictionary (jsAjaxGetIDictionary_Callback);
- In the JavaScript function jsAjaxGetIDictionary_Callback add the IDictionary items to the DopDownList
function jsAjaxGetIDictionary (response)
{
     try
    {
         var DictionaryItems= response.value;
         if (DictionaryItems == null &#124;&#124; typeof(DictionaryItems) != &#8220;object&#8221;)
        {
               return;
         }
         var myDropDownList [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=malakablog.wordpress.com&blog=3605978&post=206&subd=malakablog&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>- <span style="font-size:10pt;font-family:Verdana;">Implement an AjaxMethod to return <span style="color:#008080;">IDictionary</span> object</span></p>
<blockquote><p> </p>
<p><span style="font-size:10pt;font-family:Verdana;">[AjaxPro.AjaxMethod]</span></p>
<p><span style="font-size:10pt;font-family:Verdana;"><span style="color:#0000ff;">public</span> IDictionary AjaxGetIDictionary()</span></p>
<p><span style="font-size:10pt;font-family:Verdana;">{</span></p>
<p><span style="font-size:10pt;font-family:Verdana;color:#008000;">//Prepare the IDictionary object</span></p>
<p><span style="font-size:10pt;font-family:Verdana;">}</span></p></blockquote>
<p><span style="font-size:10pt;font-family:Verdana;">- Use JavaScript to request the AjaxMethod AjaxGetIDictionary </span></p>
<blockquote><p><span style="font-size:10pt;font-family:Verdana;">MyAjaxClass. AjaxGetIDictionary (jsAjaxGetIDictionary_Callback);</span></p></blockquote>
<p><span style="font-size:10pt;font-family:Verdana;">- In the JavaScript function jsAjaxGetIDictionary_Callback add the IDictionary items to the DopDownList</span></p>
<blockquote><p><span style="font-size:10pt;font-family:Verdana;"><span style="color:#0000ff;">function</span> jsAjaxGetIDictionary (response)</span></p>
<p><span style="font-size:10pt;font-family:Verdana;">{</span></p>
<p><span style="font-size:10pt;font-family:Verdana;color:#0000ff;">     try</span></p>
<p><span style="font-size:10pt;font-family:Verdana;">    {</span></p>
<p><span style="font-size:10pt;font-family:Verdana;">         var DictionaryItems= response.value;</span></p>
<p><span style="font-size:10pt;font-family:Verdana;"><span style="color:#0000ff;">         if</span> (DictionaryItems == <span style="color:#0000ff;">null</span> || <span style="color:#0000ff;">typeof</span>(DictionaryItems) != <span style="color:#800000;">&#8220;object&#8221;</span>)</span></p>
<p><span style="font-size:10pt;font-family:Verdana;">        {</span></p>
<p><span style="font-size:10pt;font-family:Verdana;"><span style="color:#0000ff;">               return</span>;</span></p>
<p><span style="font-size:10pt;font-family:Verdana;">         }</span></p>
<p><span style="font-size:10pt;font-family:Verdana;"><span style="color:#0000ff;">         var</span> myDropDownList = document.getElementById(<span style="color:#800000;">&#8220;myDropDownList&#8221;</span>);</span></p>
<p><span style="font-size:10pt;font-family:Verdana;">         myDropDownList.options.length = 0; </span></p>
<p><span style="font-size:10pt;font-family:Verdana;"><span style="color:#0000ff;">         for</span> (<span style="color:#0000ff;">var</span> i = 0; i &lt; response.value.length; ++i)</span></p>
<p><span style="font-size:10pt;font-family:Verdana;">         {</span></p>
<p><span style="font-size:10pt;font-family:Verdana;">             myDropDownList.options[myDropDownList.options.length] = <span style="color:#0000ff;">new</span> Option(response.value[i].Value,response.value[i].Key);</span></p>
<p><span style="font-size:10pt;font-family:Verdana;">           }</span></p>
<p><span style="font-size:10pt;font-family:Verdana;">    }</span></p>
<p><span style="font-size:10pt;font-family:Verdana;"><span style="color:#0000ff;">    catch</span>(e)</span></p>
<p><span style="font-size:10pt;font-family:Verdana;">   {</span></p>
<p><span style="font-size:10pt;font-family:Verdana;">   }</span></p>
<p><span style="font-size:10pt;font-family:Verdana;">}</span></p></blockquote>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/malakablog.wordpress.com/206/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/malakablog.wordpress.com/206/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/malakablog.wordpress.com/206/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/malakablog.wordpress.com/206/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/malakablog.wordpress.com/206/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/malakablog.wordpress.com/206/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/malakablog.wordpress.com/206/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/malakablog.wordpress.com/206/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/malakablog.wordpress.com/206/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/malakablog.wordpress.com/206/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=malakablog.wordpress.com&blog=3605978&post=206&subd=malakablog&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://malakablog.wordpress.com/2009/05/01/c-bind-a-dropdownlist-to-idictionary-using-ajaxpro-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/77b6cc6b138b826daef017729b085636?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">malakablog</media:title>
		</media:content>
	</item>
		<item>
		<title>C#:Using Dictionary as DropDownList Data Source</title>
		<link>http://malakablog.wordpress.com/2009/03/31/cusing-dictionary-as-dropdownlist-data-source/</link>
		<comments>http://malakablog.wordpress.com/2009/03/31/cusing-dictionary-as-dropdownlist-data-source/#comments</comments>
		<pubDate>Tue, 31 Mar 2009 16:11:19 +0000</pubDate>
		<dc:creator>malakablog</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[beginner]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[Collection]]></category>
		<category><![CDATA[Datatabe]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[Dictionary]]></category>
		<category><![CDATA[dropdown]]></category>
		<category><![CDATA[DropDownList]]></category>
		<category><![CDATA[IDictionary]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[list]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[VS2005]]></category>

		<guid isPermaLink="false">http://malakablog.wordpress.com/?p=187</guid>
		<description><![CDATA[I have IDictionary Object called ListOptions. To use it as the data source for an ASP.NET DropDownList called objDropDownList:
 



objDropDownList.DataSource = ListOptions;
objDropDownList.DataTextField = &#8220;Value&#8221;;
          objDropDownList.DataValueField  = &#8220;Key&#8221;;
          objDropDownList.DataBind();  
 

 

 
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=malakablog.wordpress.com&blog=3605978&post=187&subd=malakablog&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p class="MsoNormal" style="margin:0;"><span style="font-size:10pt;font-family:Verdana;">I have <span style="color:teal;">IDictionary</span> Object called ListOptions. To use it as the data source for an ASP.NET DropDownList called objDropDownList:</span></p>
<p class="MsoNormal" style="margin:0;"> </p>
<div></div>
<p><span style="font-size:10pt;font-family:Verdana;"></p>
<blockquote>
<p class="MsoNormal" style="text-indent:36pt;margin:0;"><span style="font-size:10pt;font-family:Verdana;">objDropDownList.DataSource = ListOptions;</span></p>
<p class="MsoNormal" style="text-indent:36pt;margin:0;"><span style="font-size:10pt;font-family:Verdana;">objDropDownList.DataTextField = <span style="color:maroon;">&#8220;Value&#8221;</span>;</span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:10pt;font-family:Verdana;"><span>          </span>objDropDownList.DataValueField<span>  </span>= <span style="color:maroon;">&#8220;Key&#8221;</span>;</span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:10pt;font-family:Verdana;"><span>          </span>objDropDownList.DataBind();<span>  </span></span></p>
<p> </p>
<p></span></p></blockquote>
<p> </p>
<p></span></p>
<p class="MsoNormal" style="margin:0;"> </p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/malakablog.wordpress.com/187/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/malakablog.wordpress.com/187/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/malakablog.wordpress.com/187/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/malakablog.wordpress.com/187/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/malakablog.wordpress.com/187/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/malakablog.wordpress.com/187/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/malakablog.wordpress.com/187/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/malakablog.wordpress.com/187/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/malakablog.wordpress.com/187/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/malakablog.wordpress.com/187/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=malakablog.wordpress.com&blog=3605978&post=187&subd=malakablog&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://malakablog.wordpress.com/2009/03/31/cusing-dictionary-as-dropdownlist-data-source/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/77b6cc6b138b826daef017729b085636?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">malakablog</media:title>
		</media:content>
	</item>
		<item>
		<title>T-Shirts for Software people</title>
		<link>http://malakablog.wordpress.com/2009/03/06/t-shirts-for-software-people/</link>
		<comments>http://malakablog.wordpress.com/2009/03/06/t-shirts-for-software-people/#comments</comments>
		<pubDate>Fri, 06 Mar 2009 12:38:55 +0000</pubDate>
		<dc:creator>malakablog</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[cartoon]]></category>
		<category><![CDATA[developer]]></category>
		<category><![CDATA[funney]]></category>
		<category><![CDATA[guy]]></category>
		<category><![CDATA[joke]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[man]]></category>
		<category><![CDATA[men]]></category>
		<category><![CDATA[people]]></category>
		<category><![CDATA[programmer]]></category>
		<category><![CDATA[smart]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[T-Shirts]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://malakablog.wordpress.com/?p=169</guid>
		<description><![CDATA[






       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=malakablog.wordpress.com&blog=3605978&post=169&subd=malakablog&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><img class="aligncenter size-full wp-image-171" title="1" src="http://malakablog.files.wordpress.com/2009/03/1.jpg?w=350&#038;h=350" alt="1" width="350" height="350" /></p>
<p><img class="aligncenter size-full wp-image-173" title="3" src="http://malakablog.files.wordpress.com/2009/03/3.jpg?w=350&#038;h=350" alt="3" width="350" height="350" /></p>
<p><img class="aligncenter size-full wp-image-174" title="4" src="http://malakablog.files.wordpress.com/2009/03/4.jpg?w=350&#038;h=350" alt="4" width="350" height="350" /></p>
<p><img class="aligncenter size-full wp-image-175" title="5" src="http://malakablog.files.wordpress.com/2009/03/5.jpg?w=350&#038;h=350" alt="5" width="350" height="350" /></p>
<p><img class="aligncenter size-full wp-image-176" title="6" src="http://malakablog.files.wordpress.com/2009/03/6.jpg?w=350&#038;h=350" alt="6" width="350" height="350" /></p>
<p><img class="aligncenter size-full wp-image-177" title="7" src="http://malakablog.files.wordpress.com/2009/03/7.jpg?w=350&#038;h=350" alt="7" width="350" height="350" /></p>
<p><img class="aligncenter size-full wp-image-178" title="8" src="http://malakablog.files.wordpress.com/2009/03/8.jpg?w=350&#038;h=350" alt="8" width="350" height="350" /></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/malakablog.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/malakablog.wordpress.com/169/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/malakablog.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/malakablog.wordpress.com/169/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/malakablog.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/malakablog.wordpress.com/169/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/malakablog.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/malakablog.wordpress.com/169/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/malakablog.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/malakablog.wordpress.com/169/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=malakablog.wordpress.com&blog=3605978&post=169&subd=malakablog&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://malakablog.wordpress.com/2009/03/06/t-shirts-for-software-people/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/77b6cc6b138b826daef017729b085636?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">malakablog</media:title>
		</media:content>

		<media:content url="http://malakablog.files.wordpress.com/2009/03/1.jpg" medium="image">
			<media:title type="html">1</media:title>
		</media:content>

		<media:content url="http://malakablog.files.wordpress.com/2009/03/3.jpg" medium="image">
			<media:title type="html">3</media:title>
		</media:content>

		<media:content url="http://malakablog.files.wordpress.com/2009/03/4.jpg" medium="image">
			<media:title type="html">4</media:title>
		</media:content>

		<media:content url="http://malakablog.files.wordpress.com/2009/03/5.jpg" medium="image">
			<media:title type="html">5</media:title>
		</media:content>

		<media:content url="http://malakablog.files.wordpress.com/2009/03/6.jpg" medium="image">
			<media:title type="html">6</media:title>
		</media:content>

		<media:content url="http://malakablog.files.wordpress.com/2009/03/7.jpg" medium="image">
			<media:title type="html">7</media:title>
		</media:content>

		<media:content url="http://malakablog.files.wordpress.com/2009/03/8.jpg" medium="image">
			<media:title type="html">8</media:title>
		</media:content>
	</item>
	</channel>
</rss>