<?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>Sunny with his bytes of memory</title>
	<atom:link href="http://sunnysharmagts.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://sunnysharmagts.wordpress.com</link>
	<description>Open your eyes....Use linux</description>
	<lastBuildDate>Mon, 13 Jun 2011 06:37:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='sunnysharmagts.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Sunny with his bytes of memory</title>
		<link>http://sunnysharmagts.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://sunnysharmagts.wordpress.com/osd.xml" title="Sunny with his bytes of memory" />
	<atom:link rel='hub' href='http://sunnysharmagts.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Fetching mail body in javamail</title>
		<link>http://sunnysharmagts.wordpress.com/2011/06/10/fetching-mail-body-in-javamail/</link>
		<comments>http://sunnysharmagts.wordpress.com/2011/06/10/fetching-mail-body-in-javamail/#comments</comments>
		<pubDate>Fri, 10 Jun 2011 06:18:43 +0000</pubDate>
		<dc:creator>sunny sharma</dc:creator>
		
		<guid isPermaLink="false">http://sunnysharmagts.wordpress.com/?p=135</guid>
		<description><![CDATA[When it comes to android, people uses Intent to send email, using putExtra() to add subject,body and attachments to it. But since it uses the default email from the android emulator or the android mobile itself so what&#8217;s the motto of using it. I don&#8217;t think it benfits us the most in that way. However [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sunnysharmagts.wordpress.com&amp;blog=4638524&amp;post=135&amp;subd=sunnysharmagts&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>When it comes to android, people uses <a href="http://http://developer.android.com/reference/android/content/Intent.html">Intent</a> to send email, using putExtra() to add subject,body and attachments to it. But since it uses the default email from the android emulator or the android mobile itself so what&#8217;s the motto of using it. I don&#8217;t think it benfits us the most in that way.</p>
<p>However people have been using <a href="http://java.sun.com/developer/onlineTraining/JavaMail/contents.html">javamail</a> for sending and receiving email and along with the attachments. That could be done even by intent in the android by setting up the smtp port and other properties for the mail. </p>
<p>I am not here to argue about that. I was trying to fetch email body(String) through the getContent() method which returns a MimeMultipart while not show you the body of the mail. In turn it will return the MimeMultipart object. To get the body of the mail you need to do the following :-</p>
<p><code>    public synchronized void mailReceive(){<br />
    	// Get the store<br />
    	try{<br />
    	Store store = session.getStore("pop3");<br />
    	store.connect(mailhost, user, password);</p>
<p>    	// Get folder<br />
    	Folder folder = store.getFolder("INBOX");<br />
    	folder.open(Folder.READ_ONLY);<br />
    	int count = folder.getMessageCount();<br />
    	//BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));<br />
    			// Get directory<br />
    	Message message[] = folder.getMessages();<br />
    	//sub = new String[message.length];<br />
    	System.out.println("The length of messages is:-"+count);<br />
        /*for(int i = 1; i  message.length-2; i--) {<br />
            Message m = message[i];<br />
            // Get some headers<br />
            Date date = m.getSentDate();<br />
            Address [] from = m.getFrom();<br />
            sub.add(m.getSubject());<br />
            String mimeType = m.getContentType();<br />
            System.out.println(date + "\t" + from[0] + "\t" +<br />
                                sub + "\t" + mimeType);</p>
<p>            Object o = m.getContent();<br />
            if (o instanceof String) {<br />
                System.out.println("**THIS IS A STRING MESSAGE**");<br />
                //System.out.println((String)o);<br />
                address.add((String)o);<br />
            }<br />
            else if (o instanceof Multipart) {<br />
                System.out.print("**THIS IS A MULTIPART MESSAGE.  ");<br />
                Multipart mp = (Multipart)o;<br />
                ArrayList count3 = new ArrayList();<br />
                count3.add(mp.getCount());<br />
                System.out.println("It has " + count3 +<br />
                    " BodyParts in it**");<br />
                for (int j = 0; j &lt; count3.size(); j++) {<br />
                    // Part are numbered starting at 0<br />
                    BodyPart b = mp.getBodyPart(j);<br />
                    String mimeType2 = b.getContentType();<br />
                    System.out.println( &quot;BODYPARTS &quot; + (j + 1) +<br />
                                        &quot; IS OF MIMETYPE &quot; + mimeType);</p>
<p>                    Object o2 = b.getContent();<br />
                    if (o2 instanceof String) {<br />
                        System.out.println(&quot;**THIS IS A STRING BODYPART**&quot;);<br />
                        System.out.println((String)o2);<br />
                        address.add((String)o2);<br />
                    }<br />
                    else if (o2 instanceof Multipart) {<br />
                        System.out.print(<br />
                            &quot;**THIS BODYPART IS A NESTED MULTIPART.  &quot;);<br />
                        Multipart mp2 = (Multipart)o2;<br />
                        int count2 = mp2.getCount();<br />
                        System.out.println(&quot;IT HAS &quot; + count2 +<br />
                            &quot;FURTHER BODYPARTS IN IT**&quot;);<br />
                    }</p>
<p>                    else if (o2 instanceof InputStream) {<br />
                        System.out.println(<br />
                            &quot;**THIS IS AN INPUTSTREAM BODYPART**&quot;);<br />
                    }<br />
                } //End of for<br />
            }<br />
            else if (o instanceof InputStream) {<br />
                System.out.println(&quot;**THIS IS AN INPUTSTREAM MESSAGE**&quot;);<br />
                InputStream is = (InputStream)o;<br />
                // Assumes character content (not binary images)<br />
                int c;<br />
                while ((c = is.read()) != -1) {<br />
                    System.out.println(&quot;***************************&quot;);<br />
                    System.out.println(&quot;***************************&quot;);<br />
                	System.out.write(c);<br />
                	System.out.println(&quot;****************************&quot;);<br />
                	System.out.println(&quot;****************************&quot;);</p>
<p>                }<br />
            }<br />
</code></p>
<p>This code will surely return you the body of the mail including the HTML text messages too.<br />
If i have mentioned anything wrong then please feel free to send the proper comments.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sunnysharmagts.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sunnysharmagts.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sunnysharmagts.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sunnysharmagts.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sunnysharmagts.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sunnysharmagts.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sunnysharmagts.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sunnysharmagts.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sunnysharmagts.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sunnysharmagts.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sunnysharmagts.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sunnysharmagts.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sunnysharmagts.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sunnysharmagts.wordpress.com/135/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sunnysharmagts.wordpress.com&amp;blog=4638524&amp;post=135&amp;subd=sunnysharmagts&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sunnysharmagts.wordpress.com/2011/06/10/fetching-mail-body-in-javamail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bdf681d3e84d9b539d27037d8d7a8461?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sunny_slls</media:title>
		</media:content>
	</item>
		<item>
		<title>Twenty &#8211; eight Card game</title>
		<link>http://sunnysharmagts.wordpress.com/2011/06/09/twenty-eight-card-game/</link>
		<comments>http://sunnysharmagts.wordpress.com/2011/06/09/twenty-eight-card-game/#comments</comments>
		<pubDate>Thu, 09 Jun 2011 18:05:14 +0000</pubDate>
		<dc:creator>sunny sharma</dc:creator>
				<category><![CDATA[My Digi diary]]></category>
		<category><![CDATA[Twenty eight card game]]></category>

		<guid isPermaLink="false">http://sunnysharmagts.wordpress.com/?p=129</guid>
		<description><![CDATA[The logic of the Twenty-eight game is quite simple, since i used to play it in the college days. Though i was really not so good in it. The game is based on the number of rank cards you get and your partner&#8217;s support. After all its a tricky game. Let&#8217;s see what can i [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sunnysharmagts.wordpress.com&amp;blog=4638524&amp;post=129&amp;subd=sunnysharmagts&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The logic of the <a href="http://en.wikipedia.org/wiki/Twenty-eight_%28card_game%29" target="_blank">Twenty-eight</a> game is quite simple, since i used to play it in the college days. Though i was really not so good in it. The game is based on the number of rank cards you get and your partner&#8217;s support. After all its a tricky game. Let&#8217;s see what can i do which this data.<br />
Amazed that <a href="http://en.wikipedia.org/wiki/Twenty-eight_%28card_game%29" target="_blank">twenty-eight</a> has never been maded before. Looks like the game is a little different and more different then other card games.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sunnysharmagts.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sunnysharmagts.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sunnysharmagts.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sunnysharmagts.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sunnysharmagts.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sunnysharmagts.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sunnysharmagts.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sunnysharmagts.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sunnysharmagts.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sunnysharmagts.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sunnysharmagts.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sunnysharmagts.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sunnysharmagts.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sunnysharmagts.wordpress.com/129/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sunnysharmagts.wordpress.com&amp;blog=4638524&amp;post=129&amp;subd=sunnysharmagts&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sunnysharmagts.wordpress.com/2011/06/09/twenty-eight-card-game/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bdf681d3e84d9b539d27037d8d7a8461?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sunny_slls</media:title>
		</media:content>
	</item>
		<item>
		<title>My Mobile Game</title>
		<link>http://sunnysharmagts.wordpress.com/2011/06/09/my-mobile-game/</link>
		<comments>http://sunnysharmagts.wordpress.com/2011/06/09/my-mobile-game/#comments</comments>
		<pubDate>Thu, 09 Jun 2011 05:34:35 +0000</pubDate>
		<dc:creator>sunny sharma</dc:creator>
				<category><![CDATA[My Digi diary]]></category>

		<guid isPermaLink="false">http://sunnysharmagts.wordpress.com/?p=126</guid>
		<description><![CDATA[I have an idea of making a game of mobile phones regardless of whether its a cheaper devices or an android phone. I was thinking on which one to develop it and that was so stupid of me. Really, if both the platforms depends on jdk then what&#8217;s the big deal whether it is a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sunnysharmagts.wordpress.com&amp;blog=4638524&amp;post=126&amp;subd=sunnysharmagts&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I have an idea of making a game of mobile phones regardless of whether its a cheaper devices or an android phone. I was thinking on which one to develop it and that was so stupid of me. Really, if both the platforms depends on jdk then what&#8217;s the big deal whether it is a j2me or android. Making android easier doesn&#8217;t change the fact that CLDC mobile phones will survive in India. So, my chances are there but i have less time. I just need a roadmap to build. But before that i need to see how the game applications specially first in j2me work on. And obviously the focus will be on card game.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sunnysharmagts.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sunnysharmagts.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sunnysharmagts.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sunnysharmagts.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sunnysharmagts.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sunnysharmagts.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sunnysharmagts.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sunnysharmagts.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sunnysharmagts.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sunnysharmagts.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sunnysharmagts.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sunnysharmagts.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sunnysharmagts.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sunnysharmagts.wordpress.com/126/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sunnysharmagts.wordpress.com&amp;blog=4638524&amp;post=126&amp;subd=sunnysharmagts&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sunnysharmagts.wordpress.com/2011/06/09/my-mobile-game/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bdf681d3e84d9b539d27037d8d7a8461?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sunny_slls</media:title>
		</media:content>
	</item>
		<item>
		<title>xcode and iOS SDK for Leopard</title>
		<link>http://sunnysharmagts.wordpress.com/2011/04/23/xcode-and-ios-sdk-for-leopard/</link>
		<comments>http://sunnysharmagts.wordpress.com/2011/04/23/xcode-and-ios-sdk-for-leopard/#comments</comments>
		<pubDate>Sat, 23 Apr 2011 15:18:27 +0000</pubDate>
		<dc:creator>sunny sharma</dc:creator>
				<category><![CDATA[iphone application]]></category>

		<guid isPermaLink="false">http://sunnysharmagts.wordpress.com/?p=121</guid>
		<description><![CDATA[Friends, i had downloaded several xcode setup and sdk for my mac os x leopard version 10.5.5 but none of them worked out. I was really a pain to download these huge file and then install them on your mac machine which takes alteast 3 long hours to install. Actually i am running the mac [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sunnysharmagts.wordpress.com&amp;blog=4638524&amp;post=121&amp;subd=sunnysharmagts&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Friends, i had downloaded several xcode setup and sdk for my <a href="http://developer.apple.com">mac os x</a> leopard version 10.5.5 but none of them worked out.<br />
I was really a pain to download these huge file and then install them on your mac machine which takes alteast 3 long hours to install. </p>
<p>Actually i am running the mac OS on <a href="http://www.vmware.com/">vmware</a>. And if you try to install <a href="http://connect.apple.com/cgi-bin/WebObjects/MemberSite.woa/wa/getSoftware?bundleID=20792">xcode3.2.6</a> then it won&#8217;t work as it would ask for mac OS X snow leopard of version 10.6.x . So it would be better not to waste you time and go for xcode3.1.3.</p>
<p>Download the files for xcode3.1.3 and iOS SDK from <a href="http://www.dropthenerd.com/iphone-sdk-3-1-3-download-for-leopard-if-you-dont-have-snow-leopard/">here</a> and you can do an easy installation. </p>
<p>Thanks guys . Hope this post helps you.<br />
Please do ask questions if you face any problem or provide me with your valuable feedback.</p>
<p>cya<br />
sunny </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sunnysharmagts.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sunnysharmagts.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sunnysharmagts.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sunnysharmagts.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sunnysharmagts.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sunnysharmagts.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sunnysharmagts.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sunnysharmagts.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sunnysharmagts.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sunnysharmagts.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sunnysharmagts.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sunnysharmagts.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sunnysharmagts.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sunnysharmagts.wordpress.com/121/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sunnysharmagts.wordpress.com&amp;blog=4638524&amp;post=121&amp;subd=sunnysharmagts&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sunnysharmagts.wordpress.com/2011/04/23/xcode-and-ios-sdk-for-leopard/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bdf681d3e84d9b539d27037d8d7a8461?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sunny_slls</media:title>
		</media:content>
	</item>
		<item>
		<title>walking through iOS SDK and xcode</title>
		<link>http://sunnysharmagts.wordpress.com/2011/04/22/walking-through-ios-sdk-and-xcode/</link>
		<comments>http://sunnysharmagts.wordpress.com/2011/04/22/walking-through-ios-sdk-and-xcode/#comments</comments>
		<pubDate>Fri, 22 Apr 2011 05:37:39 +0000</pubDate>
		<dc:creator>sunny sharma</dc:creator>
				<category><![CDATA[iphone application]]></category>

		<guid isPermaLink="false">http://sunnysharmagts.wordpress.com/?p=110</guid>
		<description><![CDATA[So what if i installed Mac OS 10.5.5 and now i am not getting proper xcode setup and SDK to install in my mac os and run it which is running on vmware. First of all this is crazy man. I have been doing these days and the result is simply zero. This has been [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sunnysharmagts.wordpress.com&amp;blog=4638524&amp;post=110&amp;subd=sunnysharmagts&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So what if i installed Mac OS 10.5.5 and now i am not getting proper xcode setup and SDK to install in my mac os and run it which is running on vmware. First of all this is crazy man. I have been doing these days and  the result is simply zero. </p>
<p>This has been really frustrating man. It took almost 2 and half hours to install just xcode setup. I don&#8217;t know why these apple people likes to make such a bulky softwares. The Mac OS itself is around 6 GB (depends on what you are using leopard(10.5.x) or snow leopard(10.6.x)) and after that you need to install 4.13GB of xcode and iphone SDK.</p>
<p>Let&#8217;s see what happens now &#8230;.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sunnysharmagts.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sunnysharmagts.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sunnysharmagts.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sunnysharmagts.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sunnysharmagts.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sunnysharmagts.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sunnysharmagts.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sunnysharmagts.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sunnysharmagts.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sunnysharmagts.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sunnysharmagts.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sunnysharmagts.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sunnysharmagts.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sunnysharmagts.wordpress.com/110/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sunnysharmagts.wordpress.com&amp;blog=4638524&amp;post=110&amp;subd=sunnysharmagts&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sunnysharmagts.wordpress.com/2011/04/22/walking-through-ios-sdk-and-xcode/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bdf681d3e84d9b539d27037d8d7a8461?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sunny_slls</media:title>
		</media:content>
	</item>
		<item>
		<title>Setting up Android</title>
		<link>http://sunnysharmagts.wordpress.com/2011/04/11/setting-up-android/</link>
		<comments>http://sunnysharmagts.wordpress.com/2011/04/11/setting-up-android/#comments</comments>
		<pubDate>Mon, 11 Apr 2011 05:22:50 +0000</pubDate>
		<dc:creator>sunny sharma</dc:creator>
				<category><![CDATA[Android]]></category>

		<guid isPermaLink="false">http://sunnysharmagts.wordpress.com/?p=106</guid>
		<description><![CDATA[For the record, I would like to say that the documentation of the android setup at developer.android.com is really cool and awesome. I didn&#8217;t even break a sweat to setup android in my system. Just that the android SDK version which i am using is 2.2 in place of 3.0 . I don&#8217;t know what [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sunnysharmagts.wordpress.com&amp;blog=4638524&amp;post=106&amp;subd=sunnysharmagts&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>For the record, I would like to say that the documentation of the android setup at <a href="http://developer.android.com">developer.android.com</a> is really cool and awesome. I didn&#8217;t even break a sweat to setup android in my system. Just that the android SDK version which i am using is 2.2 in place of 3.0 . I don&#8217;t know what suddenly happened when i tried it with sdk 3.0 but at that moment i was really very exhausted to figure that out.</p>
<p>Whatever, that doesn&#8217;t really matter right now. The thing that matters the most is the tutorial part of it. I studied it last night and I found it that android unlike j2me emphasises on xml file and the editing this xml file can do wonders for you in terms of UI. </p>
<p>For the record I haven&#8217;t worked on UI for mobile applications much and also it very idiotic to compare j2me and android since both are very different platform, but i must admit that android is really cool. It something like less code and more output kind of stuff.</p>
<p>Let&#8217;s see what happens next &#8230;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sunnysharmagts.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sunnysharmagts.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sunnysharmagts.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sunnysharmagts.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sunnysharmagts.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sunnysharmagts.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sunnysharmagts.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sunnysharmagts.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sunnysharmagts.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sunnysharmagts.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sunnysharmagts.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sunnysharmagts.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sunnysharmagts.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sunnysharmagts.wordpress.com/106/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sunnysharmagts.wordpress.com&amp;blog=4638524&amp;post=106&amp;subd=sunnysharmagts&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sunnysharmagts.wordpress.com/2011/04/11/setting-up-android/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bdf681d3e84d9b539d27037d8d7a8461?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sunny_slls</media:title>
		</media:content>
	</item>
		<item>
		<title>Pizza Hut!!!!!</title>
		<link>http://sunnysharmagts.wordpress.com/2010/08/09/pizza-hut/</link>
		<comments>http://sunnysharmagts.wordpress.com/2010/08/09/pizza-hut/#comments</comments>
		<pubDate>Mon, 09 Aug 2010 07:39:04 +0000</pubDate>
		<dc:creator>sunny sharma</dc:creator>
		
		<guid isPermaLink="false">http://sunnysharmagts.wordpress.com/?p=98</guid>
		<description><![CDATA[Today i had the first pizza of my life. Its a good feeling to have pizza in the PIZZA HUT.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sunnysharmagts.wordpress.com&amp;blog=4638524&amp;post=98&amp;subd=sunnysharmagts&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Today i had the first pizza of my life. Its a good feeling to have pizza in the PIZZA HUT. </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sunnysharmagts.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sunnysharmagts.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sunnysharmagts.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sunnysharmagts.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sunnysharmagts.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sunnysharmagts.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sunnysharmagts.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sunnysharmagts.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sunnysharmagts.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sunnysharmagts.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sunnysharmagts.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sunnysharmagts.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sunnysharmagts.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sunnysharmagts.wordpress.com/98/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sunnysharmagts.wordpress.com&amp;blog=4638524&amp;post=98&amp;subd=sunnysharmagts&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sunnysharmagts.wordpress.com/2010/08/09/pizza-hut/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bdf681d3e84d9b539d27037d8d7a8461?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sunny_slls</media:title>
		</media:content>
	</item>
		<item>
		<title>kool Qt-3.3 (The Starting Window)</title>
		<link>http://sunnysharmagts.wordpress.com/2009/05/20/kool-qt/</link>
		<comments>http://sunnysharmagts.wordpress.com/2009/05/20/kool-qt/#comments</comments>
		<pubDate>Wed, 20 May 2009 09:09:13 +0000</pubDate>
		<dc:creator>sunny sharma</dc:creator>
				<category><![CDATA[Qt]]></category>

		<guid isPermaLink="false">http://sunnysharmagts.wordpress.com/?p=58</guid>
		<description><![CDATA[All these days i when i started the college sessions I was always expecting to do something graphically. Means if i say that in other words it would be &#8220;working with gui&#8221; and i at last i found something that does that&#8230;Qt. Qt, often pronounced as &#8220;cute&#8221; is a c++ toolkit used for the gui [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sunnysharmagts.wordpress.com&amp;blog=4638524&amp;post=58&amp;subd=sunnysharmagts&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>All these days i when i started the college sessions I was always expecting to do something graphically. Means if i say that in other words it would be &#8220;working with gui&#8221; and i at last i found something that does that&#8230;Qt. </p>
<p>Qt, often pronounced as &#8220;cute&#8221; is a c++ toolkit used for the gui development.. It is fully object-oriented and platform independent.</p>
<p>Let me show you a little code which i have learned.This is based on qt-3.3. </p>
<p>#include&lt;qapplication.h&gt;      /*<strong>this line includes QApplication class defination. It manages wide </p>
<p>application resources</strong>*/</p>
<p>#include&lt;qpushbutton.h&gt;      /* <strong>its a gui button</strong> */</p>
<p>int main( int argc, int ** argv)       // <strong> this is undoubtly main function </p>
<p>/*  the argc and argv means the same as in the c++.  argc refers to the number of command line arguements </p>
<p>and argv refers to the array of command line arguements */<br />
</strong></p>
<p><a href="http://doc.trolltech.com/3.3/qapplication.html">QApplication</a> a(argc, argv);</p>
<p><a href="http://doc.trolltech.com/3.3/qpushbutton.html">QPushButton</a> hello(&#8220;Hello World&#8221;, 0);   //<strong>here 0 refers to the parent window inside which the button is located</p>
<p></strong>hello.<a href="http://doc.trolltech.com/3.3/qwidget.html#resize">resize</a>(100, 30);                          //<strong>its simply just to get the size of the window</p>
<p></strong>a.<a href="http://doc.trolltech.com/3.3/qapplication.html#setMainWidget">setMainWidget</a>( &amp;hello );</p>
<p>hello.<a href="http://doc.trolltech.com/3.3/qwidget.html#show">show</a>();                                      /*<strong>the widget is never visible when you create it. you have to use </p>
<p>show() to make  it </p>
<p>visible </strong>*/ </p>
<p>return a.<a href="http://doc.trolltech.com/3.3/qapplication.html#exec">exec</a>();</p>
<p>You just have to save this code in a .cpp extension file and compile it with the following command( in this case suppose the file name is helloworld.cpp, saved in a folder named qt3)</p>
<p>qmake -project          // <strong>it makes a .pro extension file.   Here it creates a qt3.pro extension file</strong></p>
<p>qmake -o Makefile     // <strong>it automatically creates a Makefile</strong></p>
<p>qmake</p>
<p>make</p>
<p>If the command runs successfully it creates a helloworld.o (object file).<br />
and to run the executable part ( in this case qt will be created). So the command will be ./qt3</p>
<p>For more information about the qmake click <a href="http://doc.trolltech.com/3.3/qmake-manual.html">here</a></p>
<p>run this program and enjoy the GUI&#8230; </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sunnysharmagts.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sunnysharmagts.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sunnysharmagts.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sunnysharmagts.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sunnysharmagts.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sunnysharmagts.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sunnysharmagts.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sunnysharmagts.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sunnysharmagts.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sunnysharmagts.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sunnysharmagts.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sunnysharmagts.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sunnysharmagts.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sunnysharmagts.wordpress.com/58/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sunnysharmagts.wordpress.com&amp;blog=4638524&amp;post=58&amp;subd=sunnysharmagts&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sunnysharmagts.wordpress.com/2009/05/20/kool-qt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bdf681d3e84d9b539d27037d8d7a8461?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sunny_slls</media:title>
		</media:content>
	</item>
		<item>
		<title>Fedora Activity Day 2009 (FAD 2009)</title>
		<link>http://sunnysharmagts.wordpress.com/2009/05/19/fedora-activity-day-2009-fad-2009/</link>
		<comments>http://sunnysharmagts.wordpress.com/2009/05/19/fedora-activity-day-2009-fad-2009/#comments</comments>
		<pubDate>Tue, 19 May 2009 09:39:39 +0000</pubDate>
		<dc:creator>sunny sharma</dc:creator>
				<category><![CDATA[1]]></category>

		<guid isPermaLink="false">http://sunnysharmagts.wordpress.com/?p=51</guid>
		<description><![CDATA[On 14th May 2009, Thursday, a Fedora Activity Day was organised by the DGPLUG members of Dr. B C Roy Engineering College. Though this event was supposed to be organised during the Tech Fest but due to some unavoidable circumstances this event was delayed.But still we guys were determined to do something like FAD and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sunnysharmagts.wordpress.com&amp;blog=4638524&amp;post=51&amp;subd=sunnysharmagts&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>On 14th May 2009, Thursday, a <strong>Fedora Activity Day</strong> was organised by the <a href="http://dgplug.org/intro/">DGPLUG</a> members of <a href="http://www.bcrec.org/">Dr. B C Roy Engineering College.</a>  Though this event was supposed to be organised during the Tech Fest but due to some unavoidable circumstances this event was delayed.But still we guys were determined to do something like FAD and at last we did it. We invited <a href="http://sherry151.blogspot.com/2009/05/fedora-activity-day-at-bc-roy.html">Rangeen Basu Roy Chowdhury</a> a student of NIT Durgapur to FAD. <a href="https://fedoraproject.org/wiki/User:Rtnpro">Ratnadeep</a> convinced him to take session on <a href="http://chitle sh.fedorapeople.org/FEL/">FEL</a>.FAD volunteers had Harsh Verma, Kishan Goyal, Ratnadeep Debnath , Subhodip Biswas, Arindam Ghosh, Meejanur Rahaman, Dibyanshu Jaiswal and me included in the event.</p>
<p>The event began around 12:00 AM in the B C Roy computer science lab. All the computers in the lab were running on the Fedora LIve CD. Arindam Biswas started the event in the awesome way by telling people about Fedora project and Open source followed by Kishan Goyal who spoke on &#8220;Myths about Fedora&#8221;. As he was speaking about the myths i was feelings as if i have faced this myths as a newbie and also while marketing for fedora. Subhodip Biswas accompanied him. After that the 3 girls occupied the place talking about Inkscape. They were preety awesome, showing some of their fabulous creations. Then I and Rangeen went on, showing the magic of <strong>KDE</strong> to the participants.After that we took a short break which was quite necessay &#8230;  <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>We resumed the event, talking about IRC which was taken by Rangeen and me. It was followed by Rangeen who took a session over Fedora Electronics Lab. It was pretty cool indeed.Due to unexpected powercut the session was halted there itself and Subhodip Biswas announced that 15th May would be a session on C, gdb, java etc.</p>
<p>And the day ended happily&#8230;</p>
<p>You can see the pictures here..<br />
<a href="http://www.flickr.com/photos/30447113@N07/">www.flickr.com/photos/sunnysharma</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sunnysharmagts.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sunnysharmagts.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sunnysharmagts.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sunnysharmagts.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sunnysharmagts.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sunnysharmagts.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sunnysharmagts.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sunnysharmagts.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sunnysharmagts.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sunnysharmagts.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sunnysharmagts.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sunnysharmagts.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sunnysharmagts.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sunnysharmagts.wordpress.com/51/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sunnysharmagts.wordpress.com&amp;blog=4638524&amp;post=51&amp;subd=sunnysharmagts&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sunnysharmagts.wordpress.com/2009/05/19/fedora-activity-day-2009-fad-2009/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bdf681d3e84d9b539d27037d8d7a8461?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sunny_slls</media:title>
		</media:content>
	</item>
		<item>
		<title>Fedora Install Fest 2009</title>
		<link>http://sunnysharmagts.wordpress.com/2009/02/09/fedora-install-fest-2009/</link>
		<comments>http://sunnysharmagts.wordpress.com/2009/02/09/fedora-install-fest-2009/#comments</comments>
		<pubDate>Mon, 09 Feb 2009 15:23:59 +0000</pubDate>
		<dc:creator>sunny sharma</dc:creator>
				<category><![CDATA[My Digi diary]]></category>

		<guid isPermaLink="false">http://sunnysharmagts.wordpress.com/?p=49</guid>
		<description><![CDATA[30th January 2009. It was around 1 pm when my phone rang. I picked up the phone and according to my guess it was kishan on the other side. I got a shocking news from him that subhodip da and arindam da would be late as they were at kolkata and had just arrived. Ria [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sunnysharmagts.wordpress.com&amp;blog=4638524&amp;post=49&amp;subd=sunnysharmagts&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>30th January 2009.</p>
<p>It was around 1 pm when my phone rang. I picked up the phone and according to my guess it was <strong>kishan</strong> on the other side. I got a shocking news from him that <strong>subhodip da</strong> and <strong>arindam da</strong>  would be late as they were at kolkata and had just arrived. <strong>Ria didi</strong> was too ill to come and <strong>ajitesh da</strong> was too missing . We had no idea what we were going to do. I took a bath, dressed up quickly and ran to the college. I was having a conception that there would be a maximum of 20-25 students to handle but as soon as i entered the <strong>Albert Einstein Hall</strong> I saw the hall packed with the 1st year and 2nd year students. At a time I was happy as well as worried. Happy because the students responded to our call and worried because we were only students to handle it. </p>
<p>We were ready with the projector setup and the program started with an inaugral speech by <strong>kishangoyal</strong>. Since this was his first time so he was little afraid. But still he delivered it nicely by telling the crowd about <strong>FOSS , LINUX , FEDORA ,EULA(end user license agreement)</strong>. Then it was <strong>ratnadeep&#8217;s</strong> turn. He too spoke well in his typical geek style. After that they started showing installation of the current fedora distro <strong>fedora10</strong> on the virtual box. But then I realised that many of the things bounced over their head and they felt bored. So I thought of making them understand in a simpler way. I got up , took the microphone, intorduced my self and started talking about foss ,fedora and EULA in the best simplest way i could. I thought of making them interested by questioning them and let them answer in their own way. My examples too helped them a lot.</p>
<p>Soon the installation started and our volunteers helped them doing so. While the installation was going on we showed them some of the videos related to foss. But then ajitesh da entered followed by arindam da and subhodip da. The stage was occupied by them and they delivered their speech. At the end ratnadeep showed them the process of doing c in the gcc compiler. In between many students slipped away but there were many who were sitting listening to us.</p>
<p>So at last we ended the program and I must say it was a good one. </p>
<p>thankyou</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sunnysharmagts.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sunnysharmagts.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sunnysharmagts.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sunnysharmagts.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sunnysharmagts.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sunnysharmagts.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sunnysharmagts.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sunnysharmagts.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sunnysharmagts.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sunnysharmagts.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sunnysharmagts.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sunnysharmagts.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sunnysharmagts.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sunnysharmagts.wordpress.com/49/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sunnysharmagts.wordpress.com&amp;blog=4638524&amp;post=49&amp;subd=sunnysharmagts&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sunnysharmagts.wordpress.com/2009/02/09/fedora-install-fest-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bdf681d3e84d9b539d27037d8d7a8461?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sunny_slls</media:title>
		</media:content>
	</item>
	</channel>
</rss>
