<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.2.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>The Magnet Blog</title>
	<link>http://blog.magnet-i.com</link>
	<description>News and Views from Magneteers</description>
	<pubDate>Mon, 21 Jul 2008 09:13:22 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.1</generator>
	<language>en</language>
			<item>
		<title>SSH Key Authentication</title>
		<link>http://blog.magnet-i.com/2008/06/23/ssh-key-authentication/</link>
		<comments>http://blog.magnet-i.com/2008/06/23/ssh-key-authentication/#comments</comments>
		<pubDate>Mon, 23 Jun 2008 14:00:57 +0000</pubDate>
		<dc:creator>magnet</dc:creator>
		
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://blog.magnet-i.com/2008/06/23/ssh-key-authentication/</guid>
		<description><![CDATA[ 
If you&#8217;re reading this article, you probably use SSH (Secure Shell). If you don&#8217;t know what SSH is, or you want to know more about it, go to SSH or type &#8220;man ssh&#8221; on a Linux/Unix environment. Typical implementations of SSH use a username and password to authenticate users. This method has considerable drawbacks:
* [...]]]></description>
			<content:encoded><![CDATA[<p> <img src="http://www.tikirobot.net/wp/wp-content/uploads/2007/04/logo.png" title="ssh lock" alt="ssh lock" height="99" width="102" /></p>
<p>If you&#8217;re reading this article, you probably use SSH (Secure Shell). If you don&#8217;t know what SSH is, or you want to know more about it, go to SSH or type &#8220;<strong><em>man ssh</em></strong>&#8221; on a Linux/Unix environment. Typical implementations of SSH use a username and password to authenticate users. This method has considerable drawbacks:</p>
<p>* Any password can be guessed over time</p>
<p>* Most people don&#8217;t watch their <strong><em>secure.log</em></strong> for failed login attempts</p>
<p>* By default, the root account may be remotely logged into via SSH, leaving the system completely vulnerable if someone is able to brute-force the login credentials .</p>
<p>If you run SSH on the standard <strong><em>port 22/tcp</em></strong>, and it&#8217;s listening on our public UNT network, and password authentication is enabled, then malicious users outside the UNT domain are attempting to log in. By trying every possible character combination (and especially common ones), they will succeed eventually.</p>
<p>$:  So what are SSH <strong><em>keys</em></strong> ?        <img src="http://www.lockschool.net/images/Key%20logo.bmp" title="Key" alt="Key" height="106" width="200" /></p>
<p>Ans:*   SSH keys are a pair of cryptographic keys used to authenticate users instead of (or in addition to) a username/password. One key is private and goes on your source device in the <strong><em>~/.ssh</em></strong> directory, and the public key goes in the destination device&#8217;s <strong><em>~/.ssh/authorized_hosts</em></strong> file.</p>
<p>$: How long does it take to generate SSH keys ?   <img src="http://www.vista4beginners.com/files/logo/clock_logo.jpg" title="Clock" alt="Clock" height="101" width="100" /></p>
<p>Ans *:-  Just  Seconds &#8230;    <img src='http://blog.magnet-i.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>But there are Two of them <strong> RSA </strong>&amp;<strong> DSA</strong>  !!!!!</p>
<p>$: So do I use <strong>RSA</strong> or <strong>DSA</strong>  ?</p>
<p>Ans *:-  RSA has undergone more public cryptanalytic scrutiny, and</p>
<p>is tried and true.    <img src='http://blog.magnet-i.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>DSA is based off a different encryption algorithms (privately developed by the NSA), and can sign faster, <em>but</em> verifies slower. Keep in mind this means 300 milliseconds of difference. RSA can be used to encrypt or sign. DSA is only intended for signing.</p>
<p>$: What are the commands to create and implement SSH keys  ?</p>
<p>For this instruction set, I&#8217;ll use RSA for simplicity. To use DSA instead, simply specify &#8220;-t DSA&#8221; when you use ssh-keygen.</p>
<p>&gt;&gt;First, type the ssh-keygen command to generate your ssh-key pair.</p>
<p># <strong><em>ssh-keygen -t rsa </em></strong></p>
<p>Generating public/private rsa key pair.</p>
<p>&gt;&gt;At this prompt, hit enter unless you want to specify a custom name.</p>
<p>Enter file in which to save key (<strong><em>/Users/exampleuser/.ssh/id_rsa</em></strong>):</p>
<p>Now you&#8217;ll be twice asked to create a passphrase. If you don&#8217;t use one, you can SSH to another machine without having to type anything. However, if anyone else ever has your private key, or a copy of it, they&#8217;ll have all the same connectivity privileges that you do. For this reason, we recommend that you use a passphrase, and you can use ssh-agent if you wish to only type your password once per day. If you are a system administrator and want to use blank passphrases for easy automated connections, you can bind certain commands directly to the SSH keys to limit privileges of those auto connecting accounts.</p>
<p>#  <strong><em>Enter passphrase (empty for no passphrase): </em></strong></p>
<p>#  <strong><em>Enter same passphrase again: </em></strong></p>
<p>After this, you&#8217;re done with creating the keypair. Now all that&#8217;s left is copying the *.pub key to your remote (destination) computer.</p>
<p>&gt;&gt;The following command will securely transmit the key to the destination host.</p>
<p>#  <strong><em>scp id_rsa.pub user@host:/home/username/.ssh</em></strong></p>
<p>OR</p>
<p>#  <strong><em>scp id_rsa.pub user@ipaddr:/home/username/.ssh</em></strong></p>
<p>&gt;&gt;Now SSH into that remote machine, and move into the .ssh directory.</p>
<p>If you don&#8217;t see a file called &#8220;<strong><em>authorized_hosts</em></strong>&#8221; or &#8220;<strong><em>authorized_keys</em></strong>&#8220;, then create it and move the *.pub key into it with the following command.</p>
<p># <strong><em>cat id_rsa.pub &gt; authorized_keys</em></strong></p>
<p>If the file already exists and may contain other keys already, then type this to append your key to the existing contents.</p>
<p># <strong><em>cat id_rsa.pub &gt;&gt; authorized_keys </em></strong></p>
<p>You may need to <strong><em>chmod 700</em></strong> the destination&#8217;s <strong><em>~/.ssh</em></strong> directory and chmod 600 the actual authorized_keys file. These permissions requirements may vary depending on your UNIX/LINUX variant.</p>
<p>Now you should be able to ssh from your source to destination computer without having to use a password. At this point, to completely thwart brute-force login attacks, you can edit your destination host&#8217;s <strong><em>/etc/sshd_config</em></strong> file to disallow password authentication.</p>
<p>!!!! BE CAREFUL DOING THIS REMOTELY; CONSOLE ACCESS IS RECOMMENDED. BACK UP THE ORIGINAL SSHD_CONFIG FILE FIRST.  !!!!</p>
<p>#<strong><em>PasswordAuthentication yes</em></strong><br />
<strong><em> PasswordAuthentication no</em></strong></p>
<p>&gt;&gt;To Debug problems with SSH key connections, you can try the verbose switch with SSH.</p>
<p># <strong><em>ssh -v user@ipaddr</em></strong></p>
<p>Thank you</p>
<p>Magnet Systems Team</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.magnet-i.com/2008/06/23/ssh-key-authentication/feed/</wfw:commentRss>
		</item>
		<item>
		<title>SSHD Filter</title>
		<link>http://blog.magnet-i.com/2008/01/22/sshd-filter/</link>
		<comments>http://blog.magnet-i.com/2008/01/22/sshd-filter/#comments</comments>
		<pubDate>Tue, 22 Jan 2008 11:15:25 +0000</pubDate>
		<dc:creator>magnet</dc:creator>
		
		<category><![CDATA[General]]></category>

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

		<guid isPermaLink="false">http://blog.magnet-i.com/2008/01/22/sshd-filter/</guid>
		<description><![CDATA[Installing and configuring SSHD Filter
Introduction - SSHDFilter is open source tool by which we can manage SSH service effectively and we can secure our system from brute force attack. This tools will block brute force attack by using IPtables.
You can downaload the sshdfilter from the following location http://www.csc.liv.ac.uk/~greg/sshdfilter/ and then untar the tar.gz file…

#wget -c [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Installing and configuring SSHD Filter</strong><br />
Introduction - <strong>SSHDFilter</strong> is open source tool by which we can manage SSH service effectively and we can secure our system from brute force attack. This tools will block brute force attack by using IPtables.</p>
<p>You can downaload the sshdfilter from the following location http://www.csc.liv.ac.uk/~greg/sshdfilter/ and then untar the tar.gz file…<br />
<strong><br />
#wget -c http://www.csc.liv.ac.uk/~greg/sshdfilter-1.5.5.tar.gz<br />
#tar xvzf sshdfilter-1.5.5.tar.gz<br />
#cd sshdfilter-1.5.5</strong></p>
<p>1] Decide which linux distribution <strong>.partconf </strong>file you need to use -</p>
<p>rh7390 - RedHat 7.3, RedHat 9.0, Fedora Core 2.0 or CentOS 4.3<br />
rhFC30 - RedHat Fedora Core 3.0, Fedora Core 4.0, Red Hat Enterprise Linux ES release 4, or CentOS 3.x<br />
deb31 - Debian 3.1 (sarge) or Debian (sid, but see README.debian)<br />
su10rc1 - SuSe 10.0 RC 1, Gentoo and Slackware<br />
dbear - Dropbear, a light weight sshd daemon</p>
<p>(Our distribution was Fedora 5 so we selected rhFC30)</p>
<p><strong>#cat etc/sshdfilterrc patterns/rhFC30.partconf &gt; /etc/sshdfilterrc</strong></p>
<p>2] Edit /etc/sshdfilterrc to suit your needs -</p>
<p>make sure that below two rules are uncommented, These are the blocking and unblocking rules.</p>
<p><strong>#vi /etc/sshdfilterrc</strong></p>
<p>firewalladd=’iptables -A $chain -p tcp -s $ip –dport 22 -j DROP’<br />
firewalldel=’iptables -D $chain -p tcp -s $ip –dport 22 -j DROP’</p>
<p>Set the CHAIN -<br />
chain=’SSHD’<br />
If you would like to set a mailer you can set it from here:<br />
<strong>#mail=’mail -s \”sshdfilter event for $ip, $event\” greg\@abatis.flint’</strong><br />
Set the sshd path, from where the sshd daemon is or will be running :-<br />
sshdpath=’/usr/sbin/sshd’<br />
Now comes the main part of setting the user Policy : this will define the number of attempts that should be allowed and what is to be done after the number of failures, These are the policies through which we can block the unwanted ssh attacks -</p>
<p>(At present we have set the following policies )<br />
4,3d=INVALID<br />
2,5d=’^root$’<br />
4,3d=’^magnet$’<br />
0,8d=NOID<br />
The First Policy “4,3d=INVALID” defines , if any person trying to ssh to the server with an invalid username, after 4 attempts , his name will get inserted into the iptables SSHD chain and he will get blocked for 3 days.<br />
The Second Policy ” 9,3d=’^root$’ ” defines, if any peroson tries to ssh the server with root as the user, after 2 unsuccessfull attempts, his name will get inserted into iptables and he will be blocked for 5 days.<br />
The Third Policy ” 4,3d=’^magnet$’ ” is similiar to the second one, If any person, trying to ssh the server with magnet as the user, after 4 unsuccessfull attempts, his name will get inserted into iptables and he will be blocked for 3 days. Please note, Here magnet is one of the users on the server, You can mention the users of your server.<br />
The Fourth Policy ” 0,8d=NOID ” defines, Catch and block all No ssh id events, instant block for 8 days.</p>
<p>You can add more policies to the policy section, the specifications are mentioned in the file.<br />
Once the policies and settings have been done, save and exit the file.</p>
<p>3] Add the SSHD chain to your iptables firewall setup -<br />
<strong>#iptables -N SSHD</strong></p>
<p><strong>#/etc/init.d/iptables save</strong></p>
<p>4] Add a jump to SSHD rule with something like -<br />
<strong><br />
# iptables -A INPUT -p tcp -m tcp –dport 22 -j SSHD</strong></p>
<p>copy sshdfilter.pl to /usr/sbin/sshdfilter, or maybe /usr/local/sbin/sshdfilter -<br />
<strong><br />
#cp source/sshdfilter.pl /usr/sbin/sshdfilter</strong></p>
<p>Copy the man pages sshdfilter.1 and sshdfilterrc.5 to /usr/share/man/man{1,5} respectively -</p>
<p><strong>#cp man/sshdfilter.1 /usr/share/man/man1/<br />
#cp man/sshdfilterrc.5 /usr/share/man/man5/<br />
</strong><br />
Then copy the sshdfilter and sshd file to /etc/init.d/sshdfilter and start services…<br />
(Before doing the above step, Please ensure to take a backupof the original sshd file)</p>
<p><strong>#cp etc/init.d/sshdfilter /etc/init.d/<br />
#cp etc/init.d/sshd.rhFC30 /etc/init.d/sshd<br />
#/etc/init.d/sshdfilter start<br />
#/etc/init.d/sshd restart</strong></p>
<p>5] To confirm that sshdfilter is running -</p>
<p><strong># ps -aux | grep ssh<br />
/usr/bin/perl /usr/sbin/sshdfilter<br />
/usr/sbin/sshd -e -D</strong></p>
<p>You should be seeing some output like the above one, that is the sshdfilter process and the sshd should be running with the -e and -D options.</p>
<p>If you see the above outputs, the installation is complete and you are done with SSHD, you can now try doing some ssh attacks to your server.</p>
<p>6] You can check the logs in -</p>
<p><strong>#tail -f /var/log/secure</strong><br />
OR<br />
<strong>#tail -f /var/log/messages</strong></p>
<p>Hope this tutorial was helpful to you, we would like to have some feedbacks from you.<br />
Please feel free to mail.</p>
<p><strong>Thank You,<br />
Magnet Systems Team .</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.magnet-i.com/2008/01/22/sshd-filter/feed/</wfw:commentRss>
		</item>
		<item>
		<title>PHP Optimization</title>
		<link>http://blog.magnet-i.com/2008/01/05/php-optimization/</link>
		<comments>http://blog.magnet-i.com/2008/01/05/php-optimization/#comments</comments>
		<pubDate>Sat, 05 Jan 2008 08:37:36 +0000</pubDate>
		<dc:creator>magnet</dc:creator>
		
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://blog.magnet-i.com/2008/01/05/php-optimization/</guid>
		<description><![CDATA[Hello All,
Last week we had a session on PHP Optimization in Mumbai &#38; later in Ahmedabad.
The session was about various techniques to be followed to ensure your code is optimized, as well as the various other components which contribute in a major fashion to optimizing your scripts. Those components are the database, caching &#38; web [...]]]></description>
			<content:encoded><![CDATA[<p>Hello All,</p>
<p>Last week we had a session on PHP Optimization in Mumbai &amp; later in Ahmedabad.</p>
<p>The session was about various techniques to be followed to ensure your code is optimized, as well as the various other components which contribute in a major fashion to optimizing your scripts. Those components are the database, caching &amp; web server. A small brief was also touched upon Zend engine, Zend optimizer &amp; APC Accelerator.</p>
<p>Here were some of the major highlights from the session:</p>
<p>1. Difference between Optimization &amp; Scalability. A trade-off is involved between the two always<br />
2. Optimization is different from following good programming practices<br />
3. Database is the major bottleneck in most of the cases<br />
4. If you just optimize your PHP code, there are very good chances that the optimization achieved will be negligible. This is because PHP itself is very fast<br />
5. Output buffering saves a lot of time &amp; memory<br />
6. Few Optimization myths i.e. echo vs print, use of comments, references, etc.<br />
7. How Jobby started on PHP &amp; not JAVA after interviewing Digg.com&#8217;s Senior Developer</p>
<p>You can find the slides at: <a href="http://blog.magnettechnologies.com/uploads/PHP_Optimization.html" class="moz-txt-link-freetext">http://blog.magnettechnologies.com/uploads/PHP_Optimization.html</a></p>
<p>Following resources were referred:</p>
<p><a href="http://phplens.com/lens/php-book/optimizing-debugging-php.php" class="moz-txt-link-freetext">http://phplens.com/lens/php-book/optimizing-debugging-php.php</a><br />
<a href="http://www.oreillynet.com/onlamp/blog/2006/04/digg_phps_scalability_and_perf.html" class="moz-txt-link-freetext">http://www.oreillynet.com/onlamp/blog/2006/04/digg_phps_scalability_and_perf.html</a><br />
<a href="http://www.moskalyuk.com/blog/php-optimization-tips/1272" class="moz-txt-link-freetext">http://www.moskalyuk.com/blog/php-optimization-tips/1272</a><br />
<a href="http://ilia.ws/archives/12-PHP-Optimization-Tricks.html" class="moz-txt-link-freetext">http://ilia.ws/archives/12-PHP-Optimization-Tricks.html</a><br />
<a href="http://www.dublish.com/articles/10.html" class="moz-txt-link-freetext">http://www.dublish.com/articles/10.html</a><br />
<a href="http://www.danga.com/memcached/" class="moz-txt-link-freetext">http://www.danga.com/memcached/</a><br />
<a href="http://www.zend.com/en/products/guard/optimizer/" class="moz-txt-link-freetext">http://www.zend.com/en/products/guard/optimizer/</a></p>
<p>Thank You.</p>
<p>Vishal Kothari</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.magnet-i.com/2008/01/05/php-optimization/feed/</wfw:commentRss>
		</item>
		<item>
		<title>E-GroupWare !!!!</title>
		<link>http://blog.magnet-i.com/2007/12/25/e-groupware/</link>
		<comments>http://blog.magnet-i.com/2007/12/25/e-groupware/#comments</comments>
		<pubDate>Tue, 25 Dec 2007 05:35:43 +0000</pubDate>
		<dc:creator>lokesh.ahire</dc:creator>
		
		<category><![CDATA[technical]]></category>

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

		<guid isPermaLink="false">http://blog.magnet-i.com/2007/12/25/e-groupware/</guid>
		<description><![CDATA[A Warm Welcome from Suhail Thakur &#8230;&#8230;.
&#8220;The Egroupware Fable&#8221;
We had got this project of installing egroupware on one of our clients server. Something that we had never heard about, So our first task was to find out what actaully EGroupware is, this required a little bit of googling, and this is what we found :
eGroupware [...]]]></description>
			<content:encoded><![CDATA[<p><em>A Warm Welcome from Suhail Thakur &#8230;&#8230;.</em></p>
<p><strong><em>&#8220;The Egroupware Fable&#8221;</em></strong></p>
<p>We had got this project of installing egroupware on one of our clients server. Something that we had never heard about, So our first task was to find out what actaully EGroupware is, this required a little bit of googling, and this is what we found :</p>
<p>eGroupware is a free enterprise ready groupware software for your network. It enables you to manage contacts, appointments, todos and many more for your whole business. It comes with a native web-interface which allows to access your data from any platform all over the planet. Moreover you also have the choice to access the eGroupware server with your favorite groupware client (Kontact, Evolution, Outlook) and also with your mobile or PDA via SyncML. eGroupWare is platform independent.</p>
<p>In short what we can say, egroupware is like a Content Management System, which allows you to manage your contacts, check your emails, manage your websites, manage your files and many other features.</p>
<p>After we were through what egroupware was, now was the main part where we need to know what are the prerequisites and what is the configuration reuiqred.</p>
<p>It was not easy, when we first started with the requirements of egrouware, we came to know after we had downloaded the egroupware installation package and we started with the egroupware installation test. And we realised that we will have to recompile apache and as well as PHP. That was ok. But still the main task was to clear up all the warning messages that the egroupware installation page would show. Even after PHP was recompiled and reconfigured we then realised that it was still not over. There were many packages that the egroupware required and which we had still not installed. you can say these were the kerberos which is related to the gcc, g++ and gcc-c++ packages and the libjpg, libpng and libfreetypedir, liblstool, libmcrypt.</p>
<p>Even after doing all the above tasks, the warnings were still not cleared, we were on the debugging path trying to find what went missing, and finally found that its the libmcrypt that has been installed. The thing is, libmcrypt needs to be installed with POSIX thread disabled, so again a little bit of googling and it was done and there PHP was ready to take on the egrouware.</p>
<p>There&#8217;s this new thing we found about PHP that was required with for the Egroupware and that is the PEAR, its a name of a fruit. But here PEAR is PHP Extension and Application Repository.</p>
<p>After PEAR was done, we were ready to go ahead with the egrouware and as per the steps mentioned, we entered the required details about the server and its mail mysql application and Egroupware was all setup and DONE.</p>
<p>If you would like to know the steps required for installation of Egroupware, you can visit our Little Blog at :</p>
<p>http://www.egroupware.co.nr</p>
<p><em><strong>Thank You</strong></em></p>
<p><em><strong>Systems Team<br />
Magnet Technologies</strong></em></p>
<p><em><strong>www.magnettechnologies.com</strong></em></p>
<p style="margin-bottom: 0cm" lang="en-US">&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.magnet-i.com/2007/12/25/e-groupware/feed/</wfw:commentRss>
		</item>
		<item>
		<title>A Warm Welcome From Ami !!!</title>
		<link>http://blog.magnet-i.com/2007/11/16/writing-my-first-blog-today-and-very-much-excited/</link>
		<comments>http://blog.magnet-i.com/2007/11/16/writing-my-first-blog-today-and-very-much-excited/#comments</comments>
		<pubDate>Fri, 16 Nov 2007 11:59:19 +0000</pubDate>
		<dc:creator>lokesh.ahire</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blog.magnet-i.com/2007/11/16/writing-my-first-blog-today-and-very-much-excited/</guid>
		<description><![CDATA[&#8220;Hi Friends!!&#8221;
I am planning to have something  up from my side daily based on  following categories - one for each day !
1. Personal   -  Monday - When you are back at office after a cool week end              [...]]]></description>
			<content:encoded><![CDATA[<p><strong>&#8220;Hi Friends!!&#8221;</strong></p>
<p>I am planning to have something  up from my side daily based on  following categories - one for each day !</p>
<p>1. <strong>Personal</strong>   -  <strong>Monday</strong> - When you are back at office after a cool week end<span class="moz-smiley-s2"><span></span></span>   <span class="moz-smiley-s2"><span></span></span><span class="moz-smiley-s2"><span></span></span> <span class="moz-smiley-s2"><span></span></span>                                     <span class="moz-smiley-s2"><span> <img src='http://blog.magnet-i.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </span></span><span class="moz-smiley-s2"><span></span></span>you have something personal to share !<br />
2. <strong>Technology</strong>   -  <strong>Tuesday</strong> - It&#8217;s time to work ! <span class="moz-smiley-s2"><span> <img src='http://blog.magnet-i.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </span></span><br />
3. <strong>Literature   </strong>-  <strong>Wednesday</strong> - Kuchh sher-o-shayari ho jaye ! <span class="moz-smiley-s1"><span> <img src='http://blog.magnet-i.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </span></span><br />
4. <strong>Inspiration   </strong>- <strong>Thursday </strong>- In the midst of week you really need                                              inspirationton continue your work ! <span class="moz-smiley-s1"><span> <img src='http://blog.magnet-i.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </span></span> <span class="moz-smiley-s1"><span></span></span><br />
5. <strong>Fun   </strong>- <strong>Friday</strong> - It&#8217;s time for Fun Friday ! <span class="moz-smiley-s1"><span> <img src='http://blog.magnet-i.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </span></span></p>
<p>6. <strong>Working Saturday  </strong>- Sorry ! I am too busy in planning my Sunday and  no                                         time to write blog&#8230;&#8230;&#8230;&#8230;</p>
<p>I hope I will continue writing and will be in touch with you all&#8230;&#8230;&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.magnet-i.com/2007/11/16/writing-my-first-blog-today-and-very-much-excited/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Fun Time !!!</title>
		<link>http://blog.magnet-i.com/2007/11/16/modern-heights/</link>
		<comments>http://blog.magnet-i.com/2007/11/16/modern-heights/#comments</comments>
		<pubDate>Fri, 16 Nov 2007 11:54:23 +0000</pubDate>
		<dc:creator>lokesh.ahire</dc:creator>
		
		<category><![CDATA[Fun Zone]]></category>

		<guid isPermaLink="false">http://blog.magnet-i.com/2007/11/16/modern-heights/</guid>
		<description><![CDATA[&#8220;Modern Heights !!&#8221;
1. What is height of Fashion?
A. Dhoti with a zip .
2. What is height of Secrecy?
A. Offering blank visiting cards.
3. What is height of Active laziness?
A. Asking for a lift to house while on a morning walk.
4. What is height of Craziness?
A. Getting a blank paper Xeroxed.
5. What is height of Forgetfulness?
A. Seeing [...]]]></description>
			<content:encoded><![CDATA[<p><strong>&#8220;Modern Heights !!&#8221;</strong></p>
<p>1. What is height of Fashion?</p>
<p>A. Dhoti with a zip .</p>
<p>2. What is height of Secrecy?</p>
<p>A. Offering blank visiting cards.</p>
<p>3. What is height of Active laziness?</p>
<p>A. Asking for a lift to house while on a morning walk.</p>
<p>4. What is height of Craziness?</p>
<p>A. Getting a blank paper Xeroxed.</p>
<p>5. What is height of Forgetfulness?</p>
<p>A. Seeing the mirror and trying to recollect when you saw him / her last.</p>
<p>6. What is height of Stupidity?</p>
<p>A. A man looking through a keyhole of a glass door.</p>
<p>7. What is height of Honesty?</p>
<p>A. A pregnant woman taking one and a half ticket.</p>
<p>8. What is height of Suicide?</p>
<p>A. A dwarf jumping from the footpath on the road.</p>
<p>9. What is height of De-hydration?</p>
<p>A. A cow giving milk powder.</p>
<p>&#8211; <strong>Ami Sanghavi</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.magnet-i.com/2007/11/16/modern-heights/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Grand Garba Event @ Magnet&#8217;s floor</title>
		<link>http://blog.magnet-i.com/2007/11/02/grand-garba-event-magnets-floor/</link>
		<comments>http://blog.magnet-i.com/2007/11/02/grand-garba-event-magnets-floor/#comments</comments>
		<pubDate>Fri, 02 Nov 2007 10:42:02 +0000</pubDate>
		<dc:creator>lokesh.ahire</dc:creator>
		
		<category><![CDATA[Fun Zone]]></category>

		<guid isPermaLink="false">http://blog.magnet-i.com/2007/11/02/grand-garba-event-magnets-floor/</guid>
		<description><![CDATA[It was already 7 PM and I was about to leave office. My subconscious mind was busy on thinking about which traditional dress I should wear for the tomorrow&#8217;s “Grand Garba Event”. Finally I packed my bag and left office.
I went home and started selecting the traditional outfit for next day’s event. Finally the day [...]]]></description>
			<content:encoded><![CDATA[<p>It was already 7 PM and I was about to leave office. My subconscious mind was busy on thinking about which traditional dress I should wear for the tomorrow&#8217;s “<strong>Grand Garba Event</strong>”. Finally I packed my bag and left office.</p>
<p>I went home and started selecting the traditional outfit for next day’s event. Finally the day arrived. I came to office and saw most of the <strong>MAGNETEERs</strong> in their normal casual outfits and very few were wearing the traditional outfits, but later on rest of <strong>MAGNETEERs</strong> wore their traditional outfits. It seems that everyone was excited about event. At round about 12:00 PM Garba music was turned on and my feet were telling me to go on the floor and dance like anything (though I am bad at Garba). Now its 3:20, the golden moment time arrived and everyone gathered for the Garba event. Our <strong>DJ ( Deepak Jadhav)</strong> was ready with his Music systems. Ankur did the grand opening with his “<strong>Jhatkas</strong>” and Ketan was following him. Gradually everyone started dancing with each other.</p>
<p>First round was a marvelous opening for every one, as each and every one enjoyed and the round was lasted for 45 minutes. Among all <strong>MAGNETEERs</strong>, three best couples were chosen by <strong>Jury (Meenaben + Gaurav)</strong>. Those talented persons were <strong>Ankur and Sangeeta, Ketan and Megha, Vivek and Ami.</strong></p>
<p>Now it was a time for second round, in which all the three<br />
Couples showed their best performances. We were wondering for the results that who would be the winner. Results were disclosed on Monday. As expected “<strong>Ketan and Megha</strong>” were the winners for their out standing performance and the best appearance prize was given to <strong>Ankur and Ami</strong>.</p>
<p>We had a wonderful time which Most of the <strong>MAGNETEERs</strong> will remember rest of their life. Following snaps represents the best time that we enjoyed at <strong>Magnet’s floor</strong>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.magnet-i.com/2007/11/02/grand-garba-event-magnets-floor/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Creative Websites</title>
		<link>http://blog.magnet-i.com/2007/11/01/creative-websites/</link>
		<comments>http://blog.magnet-i.com/2007/11/01/creative-websites/#comments</comments>
		<pubDate>Thu, 01 Nov 2007 13:20:09 +0000</pubDate>
		<dc:creator>foreverfriend.gaurav</dc:creator>
		
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://blog.magnet-i.com/2007/11/01/creative-websites/</guid>
		<description><![CDATA[Hello Magneteers&#8230;&#8230;..
Enjoy ur free time by visiting these creative websitessssssssss&#8230;&#8230;..
 	 	 	 	 	 	 	 	
http://www.smashingmagazine.com/2007/07/17/exploring-design-outstanding-start-pages/
http://leoburnett.ca/
http://www.capitalcomm.com.my/
http://www.mhq.nl/
http://www.hellosweetie.co.uk/
http://lab.mathieu-badimon.com/
http://www.vault49.com/
http://www.pr0jects.com/portfolio/
http://www.dontclick.it/
Cheers
Gaurav
]]></description>
			<content:encoded><![CDATA[<p>Hello Magneteers&#8230;&#8230;..</p>
<p>Enjoy ur free time by visiting these creative websitessssssssss&#8230;&#8230;..</p>
<p><title></title> 	 	 	 	 	 	 	 	<!-- 		@page { size: 21cm 29.7cm; margin: 2cm } 		P { margin-bottom: 0.21cm } 	--></p>
<p><a href="http://leoburnett.ca/">http://www.smashingmagazine.com/2007/07/17/exploring-design-outstanding-start-pages/</p>
<p>http://leoburnett.ca/</a></p>
<p><a href="http://www.capitalcomm.com.my/">http://www.capitalcomm.com.my/</a></p>
<p><a href="http://www.mhq.nl/">http://www.mhq.nl/</a></p>
<p><a href="http://www.hellosweetie.co.uk/">http://www.hellosweetie.co.uk/</a></p>
<p><a href="http://lab.mathieu-badimon.com/">http://lab.mathieu-badimon.com/</a></p>
<p><a href="http://www.vault49.com/">http://www.vault49.com/</a></p>
<p><a href="http://www.pr0jects.com/portfolio/">http://www.pr0jects.com/portfolio/</a></p>
<p><a href="http://www.dontclick.it/">http://www.dontclick.it/</a></p>
<p>Cheers<br />
Gaurav</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.magnet-i.com/2007/11/01/creative-websites/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Voice Out</title>
		<link>http://blog.magnet-i.com/2007/10/30/voice-out/</link>
		<comments>http://blog.magnet-i.com/2007/10/30/voice-out/#comments</comments>
		<pubDate>Tue, 30 Oct 2007 07:31:35 +0000</pubDate>
		<dc:creator>ankur.patel</dc:creator>
		
		<category><![CDATA[Fun Zone]]></category>

		<guid isPermaLink="false">http://blog.magnet-i.com/2007/10/30/voice-out/</guid>
		<description><![CDATA[This diwali gives us two grand releases.
# Sawaariya
# OSO (Om Shanti Om)
Which movie will hit the Box Office. Voice out your comments!
]]></description>
			<content:encoded><![CDATA[<p>This diwali gives us two grand releases.</p>
<p># Sawaariya</p>
<p># OSO (Om Shanti Om)</p>
<p>Which movie will hit the Box Office. Voice out your comments!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.magnet-i.com/2007/10/30/voice-out/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Bushy Beard in Magnet (Copyrights  Vivek.Anand)</title>
		<link>http://blog.magnet-i.com/2007/10/25/bushy-beard-in-magnet-copyrights-vivekanand/</link>
		<comments>http://blog.magnet-i.com/2007/10/25/bushy-beard-in-magnet-copyrights-vivekanand/#comments</comments>
		<pubDate>Thu, 25 Oct 2007 09:13:18 +0000</pubDate>
		<dc:creator>Shailesh</dc:creator>
		
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://blog.magnet-i.com/2007/10/25/bushy-beard-in-magnet-copyrights-vivekanand/</guid>
		<description><![CDATA[Asking a Question is GOOD
But asking too many questions can kill somebody&#8230;&#8230;. BEWARE

]]></description>
			<content:encoded><![CDATA[<p>Asking a Question is GOOD</p>
<p>But asking too many questions can kill somebody&#8230;&#8230;. BEWARE</p>
<p><img src="http://blog.magnet-i.com/wp-content/uploads/2007/10/blog-image-new.jpg" alt="blog-image-new.jpg" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.magnet-i.com/2007/10/25/bushy-beard-in-magnet-copyrights-vivekanand/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
