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

<channel>
	<title>Lonely Coder</title>
	<atom:link href="http://hamzeen.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://hamzeen.wordpress.com</link>
	<description>Plan your Code. Code your Plan.</description>
	<lastBuildDate>Tue, 09 Aug 2011 14:27:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='hamzeen.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Lonely Coder</title>
		<link>http://hamzeen.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://hamzeen.wordpress.com/osd.xml" title="Lonely Coder" />
	<atom:link rel='hub' href='http://hamzeen.wordpress.com/?pushpress=hub'/>
		<item>
		<title>An insight into observer pattern</title>
		<link>http://hamzeen.wordpress.com/2011/08/07/a-glimpse-of-observer-pattern/</link>
		<comments>http://hamzeen.wordpress.com/2011/08/07/a-glimpse-of-observer-pattern/#comments</comments>
		<pubDate>Sun, 07 Aug 2011 17:40:25 +0000</pubDate>
		<dc:creator>hamzeen</dc:creator>
				<category><![CDATA[JAVA]]></category>

		<guid isPermaLink="false">http://hamzeen.wordpress.com/?p=344</guid>
		<description><![CDATA[One of the things which I often encounter these days is design patterns. If I’m to give a head first to design patterns, they articulate solutions to some of the commonly occurring design problems with related to software development. Hence, it promotes design reusability just as Object-Oriented Programming (OOP) encourages code reusability. The Observer, which [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hamzeen.wordpress.com&amp;blog=1393805&amp;post=344&amp;subd=hamzeen&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p align="justify">One of the things which I often encounter these days is design patterns. If I’m to give a head first to design patterns, they articulate solutions to some of the commonly occurring design problems with related to software development. Hence, it promotes design reusability just as Object-Oriented Programming (OOP) encourages code reusability. The Observer, which is classified as a behavioral pattern can become quite handy in case of handling events (event-driven) specially, if your project adopts Model View Control (MVC) architecture.</p>
<p align="justify">At the heart of Observer pattern are Source and its Observers. The idea behind the pattern is to allow multiple observers (which can be views such as windows, web pages or any other simple UI element like a label) to be able to listen to its Model, known as the Source by registering to it. The relationship between the source and the observers is hence, known as publish-subscribe relationship.</p>
<p align="justify">An apt situation to employ Observer would be, modifying a certain field on a window while couple of more windows which also utilize the same field are kept opened. One would expect this modification to instantaneously take effect on all of the windows which utilize the particular field. This characteristic can easily be ensured with Observer. A simplified implementation of the pattern in java can be found below.</p>
<h3 style="font-family:arial;">View1.java</h3>
<pre style="font-size:12px;">import java.util.Observable;
import java.util.Observer;

public class View1 implements Observer
{
  public void update(Observable o, Object arg)
  {
    System.out.println("View 1: " + arg.toString());
  }
}</pre>
<h3 style="font-family:arial;">View2.java</h3>
<pre style="font-size:12px;">import java.util.Observable;
import java.util.Observer;

public class View2 implements Observer
{
  public void update(Observable o, Object arg)
  {
    System.out.println("View 2: " + arg.toString());
  }
}</pre>
<h3 style="font-family:arial;">UserData.java</h3>
<pre style="font-size:12px;">import java.util.Observable;

public class UserData extends MyObservable{
  private String name;
  private Long id;

  public UserData(){
    this.name = "";
    this.id = (long)0;
  }

  public String getName()
  {
    return name;
  }

  public void setName(String name)
  {
    this.name = name;
    setChanged();
    notifyObservers(name);
  }

  public Long getId()
  {
    return id;
  }

  public void setId(int id)
  {
    this.id = (long)id;
    setChanged();
    notifyObservers(id);
  }
}</pre>
<h3 style="font-family:arial;">TestMain.java</h3>
<pre style="font-size:12px;">public class TestMain
{
  public static void main(String[] args)
  {
    UserData data = new UserData();
    View1 view1 = new View1();
    View2 view2 = new View2();
    data.addObserver(view1);
    data.addObserver(view2);

    data.setName("Lenard");
  }
}</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hamzeen.wordpress.com/344/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hamzeen.wordpress.com/344/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hamzeen.wordpress.com/344/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hamzeen.wordpress.com/344/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/hamzeen.wordpress.com/344/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/hamzeen.wordpress.com/344/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/hamzeen.wordpress.com/344/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/hamzeen.wordpress.com/344/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hamzeen.wordpress.com/344/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hamzeen.wordpress.com/344/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hamzeen.wordpress.com/344/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hamzeen.wordpress.com/344/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hamzeen.wordpress.com/344/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hamzeen.wordpress.com/344/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hamzeen.wordpress.com&amp;blog=1393805&amp;post=344&amp;subd=hamzeen&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://hamzeen.wordpress.com/2011/08/07/a-glimpse-of-observer-pattern/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0ffe4475e185518cee0e4daff9a9a20e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">hamzeen</media:title>
		</media:content>
	</item>
		<item>
		<title>Lumar – A new dimension to reality browsing.</title>
		<link>http://hamzeen.wordpress.com/2010/12/04/lumar-%e2%80%93-a-new-dimension-to-reality-browsing/</link>
		<comments>http://hamzeen.wordpress.com/2010/12/04/lumar-%e2%80%93-a-new-dimension-to-reality-browsing/#comments</comments>
		<pubDate>Sat, 04 Dec 2010 13:16:30 +0000</pubDate>
		<dc:creator>hamzeen</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Augmented Reality]]></category>
		<category><![CDATA[JAVA]]></category>

		<guid isPermaLink="false">http://hamzeen.wordpress.com/?p=324</guid>
		<description><![CDATA[After being in labs for couple of decades, Augmented Reality has become a highly popular phenomenon in recent times. Specially, Mobile Augmented Reality platforms promise to transform geographical information systems to give them a new look that will make such applications more meaningful and entertaining to use. One of the finest examples of this would [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hamzeen.wordpress.com&amp;blog=1393805&amp;post=324&amp;subd=hamzeen&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>After being in labs for couple of decades, Augmented Reality has become a highly popular phenomenon in recent times. Specially, Mobile Augmented Reality platforms promise to transform geographical information systems to give them a new look that will make such applications more meaningful and entertaining to use.</p>
<p>One of the finest examples of this would be Reality Browsing where geo-tagged data from various sources such as Wikipedia, Panoramio, Twitter, Flickr and etc are overlayed real-time over a video. Along with the inclusion of compass, GPS receiver, accelerometer and video camera which have become common features on most modern smart phones, reality browsing has already entered mainstream and continues to grow.</p>
<p><div id="attachment_381" class="wp-caption aligncenter" style="width: 460px"><a href="http://hamzeen.com/blog/wp-content/uploads/2010/12/explorer_view.jpg"><img src="http://hamzeen.com/blog/wp-content/uploads/2010/12/explorer_view.jpg" alt="Explorer View" title="Explorer View" width="450" height="285" class="size-medium wp-image-383" /></a><p class="wp-caption-text">Explorer View</p></div><br />
<div id="attachment_383" class="wp-caption aligncenter" style="width: 460px"><a href="http://hamzeen.com/blog/wp-content/uploads/2010/12/ground_view.jpg"><img src="http://hamzeen.com/blog/wp-content/uploads/2010/12/ground_view.jpg" alt="Ground View" title="Ground View" width="450" height="285" class="size-medium wp-image-383" /></a><p class="wp-caption-text">Ground View</p></div></p>
<p>Lumar, a reality browser for android smart phones will become the world&#8217;s first speech powered browser of its kind. Now it is available for public downloads via <a title='Lumar on Android Market' target='_blank' href='https://market.android.com/details?id=com.hamzeen.lumar'>Android Market</a>. The first release candidate contains layers such as Wikipedia, Twitter and Buzz. It also features a unique stations layer where it can show all major bus and railway stations around you. The video below gives a glimpse of how Lumar operates. Enjoy!</p>
<span style="text-align:center; display: block;"><a href="http://hamzeen.wordpress.com/2010/12/04/lumar-%e2%80%93-a-new-dimension-to-reality-browsing/"><img src="http://img.youtube.com/vi/NCVjrh-qaE0/2.jpg" alt="" /></a></span>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hamzeen.wordpress.com/324/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hamzeen.wordpress.com/324/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hamzeen.wordpress.com/324/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hamzeen.wordpress.com/324/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/hamzeen.wordpress.com/324/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/hamzeen.wordpress.com/324/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/hamzeen.wordpress.com/324/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/hamzeen.wordpress.com/324/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hamzeen.wordpress.com/324/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hamzeen.wordpress.com/324/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hamzeen.wordpress.com/324/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hamzeen.wordpress.com/324/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hamzeen.wordpress.com/324/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hamzeen.wordpress.com/324/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hamzeen.wordpress.com&amp;blog=1393805&amp;post=324&amp;subd=hamzeen&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://hamzeen.wordpress.com/2010/12/04/lumar-%e2%80%93-a-new-dimension-to-reality-browsing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0ffe4475e185518cee0e4daff9a9a20e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">hamzeen</media:title>
		</media:content>

		<media:content url="http://hamzeen.com/blog/wp-content/uploads/2010/12/explorer_view.jpg" medium="image">
			<media:title type="html">Explorer View</media:title>
		</media:content>

		<media:content url="http://hamzeen.com/blog/wp-content/uploads/2010/12/ground_view.jpg" medium="image">
			<media:title type="html">Ground View</media:title>
		</media:content>
	</item>
		<item>
		<title>Chronicles</title>
		<link>http://hamzeen.wordpress.com/2010/01/18/exploration/</link>
		<comments>http://hamzeen.wordpress.com/2010/01/18/exploration/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 01:32:58 +0000</pubDate>
		<dc:creator>hamzeen</dc:creator>
				<category><![CDATA[Adventure]]></category>
		<category><![CDATA[Innovation]]></category>
		<category><![CDATA[N95]]></category>
		<category><![CDATA[Open source]]></category>
		<category><![CDATA[Symbian]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://hamzeen.wordpress.com/?p=298</guid>
		<description><![CDATA[It &#8216;s been a while since I last blogged. I wish everyone a happy new year 2010 as this happens to be the first post for this year. Lot has happened and importantly, a semester has gone past as I once again got busy doing a bundle of course works. One of the first things [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hamzeen.wordpress.com&amp;blog=1393805&amp;post=298&amp;subd=hamzeen&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>It &#8216;s been a while since I last blogged. I wish everyone a happy new year 2010 as this happens to be the first post for this year. Lot has happened and importantly, a semester has gone past as I once again got busy doing a bundle of course works.</p>
<p>One of the first things to explore in the new year was gaming engines as I have been looking to create virtual 3D environments. And it became really serious after watching AVATAR, one of the first engines that impressed me was UNITY.</p>
<p>Being a desktop enhancement freak, yesterday after getting bored doing another coursework, thought of trying circle dock inspired by some of the concept videos. An open source version of circle dock from, <a href="http://sourceforge.net/projects/circledock/" target="_blank">Sourceforge</a> was the one for me. It was really cool and below shared is a video of it.</p>
<span style="text-align:center; display: block;"><a href="http://hamzeen.wordpress.com/2010/01/18/exploration/"><img src="http://img.youtube.com/vi/XpdL82K0TLc/2.jpg" alt="" /></a></span>
<p>However the immediate reason to write this post was QR Code. I knew there is a bar code scanner in ma phone but I have never used it or else I was never required to use it. However, today while I was going through few blogs I found it could be a great way to share urls and even contact details. You can read more on QR Code on, <a href="http://mobilecodes.nokia.com/learn.htm" target="_blank">Nokia Mobilecodes</a>. One of ma first attempt was to create a code carrying the blog url. It works tremendously well and I was able to visit the blog soon after scanning it on the phone which earlier I had to either type or to use a bookmark. Below I share the QR Code if you have a phone with bar code scanner you should be able to scan it with the camera.</p>
<p style="text-align:center;"><img class="aligncenter" src="http://mobilecodes.nokia.com/qr?DATA=http%3A%2F%2Fhamzeen.wordpress.com&amp;MODULE_SIZE=4&amp;name=Lonely+Coder&amp;MARGIN=2&amp;ENCODING=BYTE&amp;type=link&amp;MODE=TEXT&amp;a=view&w=477" alt="Lonely Coder" /></p>
<p>Anticipating a release of <a href='http://www.mozilla.org/projects/fennec/1.0b5/releasenotes/' target='_blank'>fennac</a> which is the Symbian version of Firefox. Browsing with Firefox on cellphone should be cool. Thank you. <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hamzeen.wordpress.com/298/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hamzeen.wordpress.com/298/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hamzeen.wordpress.com/298/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hamzeen.wordpress.com/298/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/hamzeen.wordpress.com/298/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/hamzeen.wordpress.com/298/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/hamzeen.wordpress.com/298/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/hamzeen.wordpress.com/298/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hamzeen.wordpress.com/298/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hamzeen.wordpress.com/298/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hamzeen.wordpress.com/298/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hamzeen.wordpress.com/298/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hamzeen.wordpress.com/298/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hamzeen.wordpress.com/298/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hamzeen.wordpress.com&amp;blog=1393805&amp;post=298&amp;subd=hamzeen&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://hamzeen.wordpress.com/2010/01/18/exploration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0ffe4475e185518cee0e4daff9a9a20e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">hamzeen</media:title>
		</media:content>

		<media:content url="http://mobilecodes.nokia.com/qr?DATA=http%3A%2F%2Fhamzeen.wordpress.com&#038;MODULE_SIZE=4&#038;name=Lonely%20Coder&#038;MARGIN=2&#038;ENCODING=BYTE&#038;type=link&#038;MODE=TEXT&#038;a=view" medium="image">
			<media:title type="html">Lonely Coder</media:title>
		</media:content>
	</item>
		<item>
		<title>Exploring a street of Kyoto with Engage.</title>
		<link>http://hamzeen.wordpress.com/2009/10/17/exploring-a-street-of-kyoto-with-engage/</link>
		<comments>http://hamzeen.wordpress.com/2009/10/17/exploring-a-street-of-kyoto-with-engage/#comments</comments>
		<pubDate>Sat, 17 Oct 2009 20:24:30 +0000</pubDate>
		<dc:creator>hamzeen</dc:creator>
				<category><![CDATA[Augmented Reality]]></category>
		<category><![CDATA[Open source]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://hamzeen.wordpress.com/?p=286</guid>
		<description><![CDATA[Well the title might sound a little strange and confusing. Never the less, as most of us know Kyoto is a city in japan should have said a beautiful one at that and Engage is the project which I work these days. Things are really getting heated both with the project and rest of the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hamzeen.wordpress.com&amp;blog=1393805&amp;post=286&amp;subd=hamzeen&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Well the title might sound a little strange and confusing. Never the less, as most of us know Kyoto is a city in japan should have said a beautiful one at that and Engage is the project which I work these days. Things are really getting heated both with the project and rest of the stuffs that I&#8217;m up to these days causing me to go quite for sometime.</p>
<p>Anyhow, one of the things which impressed a lot at the start of this project was Augmented Reality (AR) where virtuality and reality come together. Normally, a virtual object or an animation is augmented on a real video or an image (content) using a marker where the virtual object always shown on top of the real content. But my interest, ever since I first happen to see this was on using it for computer interaction besides there are many possibilities that exists with AR specially when it is combined with holography which can surely bring to light an unseen dimension to our lives and produce great results.</p>
<p>Getting back to the post, this shows an example panorama which can be explored using a marker. It was intentional here to refrain from augmenting specially, to show the possibility of using marker for interaction and even for wearable computing. Enjoy <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<span style="text-align:center; display: block;"><a href="http://hamzeen.wordpress.com/2009/10/17/exploring-a-street-of-kyoto-with-engage/"><img src="http://img.youtube.com/vi/3pm0EFteyVQ/2.jpg" alt="" /></a></span>
<p>Acknowledgments:</p>
<p>I have adapted an image of a street in Kyoto for the example which is available at, <a title='Gion Street in the evening under lights' target='_blank' href='http://wallpaper.free-photograph.net/en/photobase/yp5745.html'>http://wallpaper.free-photograph.net/en/photobase/yp5745.html</a></p>
<p>And the background music for this video was taken from,<br />
<a title='Piano and Strings by Ihaveriffs' href='http://ccmixter.org/files/Ihaveriffs/22440' target='_blank'>http://ccmixter.org/files/Ihaveriffs/22440</a> which was released under creative commons license.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hamzeen.wordpress.com/286/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hamzeen.wordpress.com/286/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hamzeen.wordpress.com/286/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hamzeen.wordpress.com/286/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/hamzeen.wordpress.com/286/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/hamzeen.wordpress.com/286/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/hamzeen.wordpress.com/286/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/hamzeen.wordpress.com/286/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hamzeen.wordpress.com/286/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hamzeen.wordpress.com/286/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hamzeen.wordpress.com/286/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hamzeen.wordpress.com/286/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hamzeen.wordpress.com/286/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hamzeen.wordpress.com/286/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hamzeen.wordpress.com&amp;blog=1393805&amp;post=286&amp;subd=hamzeen&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://hamzeen.wordpress.com/2009/10/17/exploring-a-street-of-kyoto-with-engage/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0ffe4475e185518cee0e4daff9a9a20e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">hamzeen</media:title>
		</media:content>
	</item>
		<item>
		<title>Firefox Party at IIT</title>
		<link>http://hamzeen.wordpress.com/2009/09/22/firefox-party-at-iit/</link>
		<comments>http://hamzeen.wordpress.com/2009/09/22/firefox-party-at-iit/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 18:30:50 +0000</pubDate>
		<dc:creator>hamzeen</dc:creator>
				<category><![CDATA[Adventure]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[Open source]]></category>

		<guid isPermaLink="false">http://hamzeen.wordpress.com/?p=278</guid>
		<description><![CDATA[Well it was the first day of lectures for us after the completion of placement. No doubt it&#8217;s going to be a hectic year ahead of us. But there was a huge surprise and sudden fun surrounded us during our short break of half an hour between the first two lectures. It was not more [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hamzeen.wordpress.com&amp;blog=1393805&amp;post=278&amp;subd=hamzeen&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Well it was the first day of lectures for us after the completion of placement. No doubt it&#8217;s going to be a  hectic year ahead of us. But there was a huge surprise and sudden fun surrounded us during our short break of half an hour between the first two lectures.</p>
<p>It was not more than one and a half month since I joined spread firefox as a campus rep. And ma first opportunity to grab a swags pack came just few weeks back and for ma amazement I received the pack within three weeks. After discussing with some of the other firefox freaks at <a target="_blank" href="http://www.iit.ac.lk">IIT</a>, we decided to through the party on the very first day itself.</p>
<p>So unexpectedly, the break between the first two lectures turned out be the time for Firefox Party. I should thank CJ for helping me immensely to get it underway in no-time.</p>
<p>There was great curiosity to know how to get swags pack on their own hence, we gave a glimpse of Spread Firefox and Campus Reps Initiative and also some materials related to getting started with Firefox Add-ons development for those who were interested on it. So hope to see some new reps in action from IIT very shortly. The event was thoroughly entertaining and was a tremendous experience. Everyone seem to have  enjoyed it to the utmost. Expecting more of these FF Parties at IIT in the near future.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hamzeen.wordpress.com/278/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hamzeen.wordpress.com/278/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hamzeen.wordpress.com/278/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hamzeen.wordpress.com/278/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/hamzeen.wordpress.com/278/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/hamzeen.wordpress.com/278/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/hamzeen.wordpress.com/278/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/hamzeen.wordpress.com/278/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hamzeen.wordpress.com/278/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hamzeen.wordpress.com/278/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hamzeen.wordpress.com/278/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hamzeen.wordpress.com/278/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hamzeen.wordpress.com/278/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hamzeen.wordpress.com/278/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hamzeen.wordpress.com&amp;blog=1393805&amp;post=278&amp;subd=hamzeen&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://hamzeen.wordpress.com/2009/09/22/firefox-party-at-iit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0ffe4475e185518cee0e4daff9a9a20e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">hamzeen</media:title>
		</media:content>
	</item>
	</channel>
</rss>
