<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/atom10full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearch/1.1/" xmlns:blogger="http://schemas.google.com/blogger/2008" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" gd:etag="W/&quot;AkcBQnk-fip7ImA9WhBbE0s.&quot;"><id>tag:blogger.com,1999:blog-6412421647806324225</id><updated>2013-05-12T07:14:13.756-07:00</updated><category term="mobile" /><category term="homegroups" /><category term="pc" /><category term="control" /><category term="Windows 8" /><category term="magazine" /><category term="cellphone" /><category term="sms" /><category term="client" /><category term="security-policy" /><category term="ntfs-3g" /><category term="christmas" /><category term="protocols" /><category term="internship" /><category term="sigterm" /><category term="sigint" /><category term="applications" /><category term="message" /><category term="tips" /><category term="torrent" /><category term="Web Searcher" /><category term="IP" /><category term="Software" /><category term="mobremote" /><category term="unix-signals" /><category term="bsnl" /><category term="India" /><category term="training" /><category term="IM" /><category term="update" /><category term="repository" /><category term="sigkill" /><category term="Windows 7" /><category term="operating system" /><category term="linux" /><category term="rttc" /><category term="techniques" /><category term="guide" /><category term="phpBB" /><category term="ntfs" /><category term="vacation" /><category term="mandriva" /><category term="innovate" /><category term="process" /><category term="security" /><category term="remote" /><category term="SPEED UP" /><category term="migration" /><category term="policy" /><category term="communication" /><category term="advanced" /><category term="ISSC" /><category term="book" /><category term="sigstp" /><category term="signals" /><category term="libraries" /><category term="networks" /><category term="web-security" /><category term="custom" /><category term="sigquit" /><category term="holidays" /><category term="unix" /><category term="microsoft" /><category term="routing" /><category term="custom vista" /><category term="article" /><category term="first ebook" /><category term="change log" /><category term="tweaks" /><category term="Thailand" /><category term="first book" /><category term="vista" /><category term="computing" /><category term="Windows Application" /><title>Innovate</title><subtitle type="html" /><link rel="http://schemas.google.com/g/2005#feed" type="application/atom+xml" href="http://programmergamer.blogspot.com/feeds/posts/default" /><link rel="alternate" type="text/html" href="http://programmergamer.blogspot.com/" /><author><name>Programmergamer</name><uri>http://www.blogger.com/profile/10837024763607943216</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="27" height="32" src="http://3.bp.blogspot.com/_5pfi5dIsjvs/S2w_aetHX9I/AAAAAAAAAB4/GWAs7ENd600/S220/IP.jpg" /></author><generator version="7.00" uri="http://www.blogger.com">Blogger</generator><openSearch:totalResults>14</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/atom+xml" href="http://feeds.feedburner.com/blogspot/WXsGe" /><feedburner:info uri="blogspot/wxsge" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><entry gd:etag="W/&quot;AkcBQnk8eip7ImA9WhBbE0s.&quot;"><id>tag:blogger.com,1999:blog-6412421647806324225.post-1052986482897128729</id><published>2013-05-12T07:03:00.001-07:00</published><updated>2013-05-12T07:14:13.772-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2013-05-12T07:14:13.772-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="sigint" /><category scheme="http://www.blogger.com/atom/ns#" term="process" /><category scheme="http://www.blogger.com/atom/ns#" term="unix-signals" /><category scheme="http://www.blogger.com/atom/ns#" term="sigterm" /><category scheme="http://www.blogger.com/atom/ns#" term="signals" /><category scheme="http://www.blogger.com/atom/ns#" term="unix" /><category scheme="http://www.blogger.com/atom/ns#" term="sigstp" /><category scheme="http://www.blogger.com/atom/ns#" term="sigquit" /><category scheme="http://www.blogger.com/atom/ns#" term="sigkill" /><title>Clarification on SIGKILL, SIGTERM, SIGINT, SIGQUIT and SIGSTP</title><content type="html">&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
A few days ago, i landed upon unix signals that lead to process termination. I guess i was trying to remember the signals generated in linux when one presses Ctrl+Z, Ctrl+C and Ctrl+D. Memory did not serve me at that moment and i decided to look these up, one more time. I realized that having a consolidated book which explains these terms clearly is better than searching loads of webpages. I did the later since i had kept my unix os book away from my reach.To my disappointment, there was no single link that listed out all differences in an orderly fashion.&lt;br /&gt;
&lt;br /&gt;
Hence, in this post, i wish to delineate these terms by consolidating my findings from stackoverflow, wikipedia and other unix internals websites. Here it goes:&lt;br /&gt;
&lt;br /&gt;
SIGKILL: Terminates a process immediately. This signal cannot be handled (caught), ignored or blocked. (The kill command in linux generates the same signal).&lt;br /&gt;
&lt;br /&gt;
SIGTERM: Terminates a process immediately. However, this signal can be handled, ignored or caught in code. Also, this is used for graceful termination of a process.&lt;br /&gt;
&lt;br /&gt;
SIGINT: Interrupts a process. (The default action is to terminate gracefully). This too, like, SIGTERM can be handled, ignored or caught. The difference between SIGINT and SIGTERM is that the former can be sent from a terminal as input characters. This is the signal generated when a user presses Ctrl+C. (Sidenote: Ctrl+C denotes EOT(End of Transmission) for (say) a network stream)&lt;br /&gt;
&lt;br /&gt;
SIGQUIT: Terminates a process. This is different from both SIGKILL and SIGTERM in the sense that it generates a core dump of the process and also cleans up resources held up by a process. Like SIGINT, this can also be sent from the terminal as input characters. It can be handled, ignored or caught in code This is the signal generated when a user presses Ctrl+D. (Sidenote: Ctrl+D indicates End-of-File in Unix)&lt;br /&gt;
&lt;br /&gt;
SIGSTP: Suspends a process. This too, can be handled, ignored or blocked. Since it does not terminate the process, the process can be resumed by sending a SIGCONT signal. This signal can be generated by pressing Ctrl+Z. (Sidenote: Ctrl+Z stands for substitute character which indicates End-of-File in DOS)&lt;br /&gt;
&lt;br /&gt;
Technorati Tags: &lt;a href="http://technorati.com/tag/unix"&gt;unix&lt;/a&gt;, &lt;a href="http://technorati.com/tag/signals"&gt;signals&lt;/a&gt;, &lt;a href="http://technorati.com/tag/unix-signals"&gt;Unix-signals&lt;/a&gt;, &lt;a href="http://technorati.com/tag/sigint"&gt;SIGINT&lt;/a&gt;, &lt;a href="http://technorati.com/tag/sigterm"&gt;SIGTERM&lt;/a&gt;,
 &lt;a href="http://technorati.com/tag/sigkill"&gt;SIGKILL&lt;/a&gt; &lt;a href="http://technorati.com/tag/sigquit"&gt;SIGQUIT&lt;/a&gt;,
 &lt;a href="http://technorati.com/tag/sigstp"&gt;SIGSTP&lt;/a&gt;&lt;/div&gt;
&lt;img src="http://feeds.feedburner.com/~r/blogspot/WXsGe/~4/7GErvNDMEy8" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://programmergamer.blogspot.com/feeds/1052986482897128729/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://programmergamer.blogspot.com/2013/05/clarification-on-sigint-sigterm-sigkill.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6412421647806324225/posts/default/1052986482897128729?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6412421647806324225/posts/default/1052986482897128729?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/WXsGe/~3/7GErvNDMEy8/clarification-on-sigint-sigterm-sigkill.html" title="Clarification on SIGKILL, SIGTERM, SIGINT, SIGQUIT and SIGSTP" /><author><name>Programmergamer</name><uri>http://www.blogger.com/profile/10837024763607943216</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="27" height="32" src="http://3.bp.blogspot.com/_5pfi5dIsjvs/S2w_aetHX9I/AAAAAAAAAB4/GWAs7ENd600/S220/IP.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://programmergamer.blogspot.com/2013/05/clarification-on-sigint-sigterm-sigkill.html</feedburner:origLink></entry><entry gd:etag="W/&quot;Dk4BSXszfip7ImA9WhBUFE0.&quot;"><id>tag:blogger.com,1999:blog-6412421647806324225.post-8960806552025459535</id><published>2013-04-29T10:57:00.001-07:00</published><updated>2013-05-01T03:42:38.586-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2013-05-01T03:42:38.586-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="phpBB" /><category scheme="http://www.blogger.com/atom/ns#" term="web-security" /><category scheme="http://www.blogger.com/atom/ns#" term="policy" /><category scheme="http://www.blogger.com/atom/ns#" term="security-policy" /><category scheme="http://www.blogger.com/atom/ns#" term="security" /><title>Designing a good security policy for your websites</title><content type="html">&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
Recently, i went through web server security and security analysis of forums based on phpBB. Although i do agree that humans are the weakest link in the security chain, there are a few measures a web developer can take to prevent malicious users from exploiting their website.&lt;br /&gt;
&lt;br /&gt;
1) The login page (or any other page that requires authentication) should use HTTPS. The best approach is to use HTTPS throughout your website.&lt;br /&gt;
&lt;br /&gt;
2) Set secure cookies and check them on each request from the user. This goes hand in hand with step 1.&lt;br /&gt;
&lt;br /&gt;
3) Limit the maximum number of login attempts (say 5). Also, use techniques like exponential delay at each failed login attempt.&lt;br /&gt;
&lt;br /&gt;
4) Deploy captcha verification on pages that require authentication (probably couple the captcha with the login page). Captcha should be account based rather than IP based (doing so prevents DDOS attacks since step 3 should stop login attempts after a few incorrect tries regardless of the IP used to log into the account)&lt;br /&gt;
&lt;br /&gt;
5) After the maximum number of invalid login attempts have been reached, a web developer can go with two approaches.&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;nbsp; i) Deactivate the account and send password reset link at the user's registered email.&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; OR&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; ii)&amp;nbsp; Throw up a security question (entered earlier by the user) and follow the deactivation step if this too fails.&lt;br /&gt;
&lt;br /&gt;
6) Set a password complexity policy (make digits, mixed alphabets and special characters mandatory along with a minimum password length)&lt;br /&gt;
&lt;br /&gt;
7) Change the session ID on each request (for websites that require extra-security). Also, make sure that the session ID or any other session information is not a part of the query string (this will not be much of a problem if HTTPS is used throughout the website)&lt;br /&gt;
&lt;br /&gt;
8) Force logout after a fixed period of inactivity.&lt;br /&gt;
&lt;br /&gt;
9) Make extra authentication checks for administrator logins.&lt;br /&gt;
&lt;br /&gt;
10) Never trust user input. Always validate it.&lt;br /&gt;
&lt;br /&gt;
11) Maintain a blacklist (or whitelist) of users (IP based or whatever suits you best) to block malicious users who try to attack your website. It's not recommended to block them forever. &lt;br /&gt;
&lt;br /&gt;
12) Understand and write your robots.txt with diligence.&lt;br /&gt;
&lt;br /&gt;
13) Use vulnerability scanners to scan your website for security loopholes. Some good ones are jsky, acunetix and w3af. Fix the issues these scanners list and re-scan to confirm from various other scanners.&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;14) Take regular backups of your website. In case of a security incident, the migration to another webserver or to restore the site back will be seamless with proper backups.&lt;br /&gt;
&lt;br /&gt;
15) Monitor your website traffic and statistics on a regular basis. Watch out for unusual traffic (depending on IP, location, webpage requested and so on). Use google's webmaster's tool and google analytics to aid you in the development and monitoring process.&lt;br /&gt;
&lt;br /&gt;
These are just my thoughts. Feedback or any other addition to the above listed policy is appreciated.&lt;br /&gt;
&lt;br /&gt;
Technorati Tags: &lt;a href="http://technorati.com/tag/security"&gt;security&lt;/a&gt;, &lt;a href="http://technorati.com/tag/policy"&gt;Policy&lt;/a&gt;, &lt;a href="http://technorati.com/tag/web%20security"&gt;Web security&lt;/a&gt;, &lt;a href="http://technorati.com/tag/phpbb"&gt;phpBB&lt;/a&gt;&lt;/div&gt;
&lt;img src="http://feeds.feedburner.com/~r/blogspot/WXsGe/~4/CEQjiESYF3k" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://programmergamer.blogspot.com/feeds/8960806552025459535/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://programmergamer.blogspot.com/2013/04/designing-good-security-policy-for-your.html#comment-form" title="6 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6412421647806324225/posts/default/8960806552025459535?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6412421647806324225/posts/default/8960806552025459535?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/WXsGe/~3/CEQjiESYF3k/designing-good-security-policy-for-your.html" title="Designing a good security policy for your websites" /><author><name>Programmergamer</name><uri>http://www.blogger.com/profile/10837024763607943216</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="27" height="32" src="http://3.bp.blogspot.com/_5pfi5dIsjvs/S2w_aetHX9I/AAAAAAAAAB4/GWAs7ENd600/S220/IP.jpg" /></author><thr:total>6</thr:total><feedburner:origLink>http://programmergamer.blogspot.com/2013/04/designing-good-security-policy-for-your.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0cCSX05fip7ImA9WhdVEU0.&quot;"><id>tag:blogger.com,1999:blog-6412421647806324225.post-7011358065302443235</id><published>2011-09-15T08:27:00.000-07:00</published><updated>2011-09-15T08:37:48.326-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-09-15T08:37:48.326-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="mobile" /><category scheme="http://www.blogger.com/atom/ns#" term="cellphone" /><category scheme="http://www.blogger.com/atom/ns#" term="control" /><category scheme="http://www.blogger.com/atom/ns#" term="remote" /><category scheme="http://www.blogger.com/atom/ns#" term="mobremote" /><category scheme="http://www.blogger.com/atom/ns#" term="sms" /><category scheme="http://www.blogger.com/atom/ns#" term="message" /><title>Mobremote: An insider's view</title><content type="html">A usual morning at college with an ongoing data structures class suddenly hit us (Me and Nitesh) with a new software idea. Remote Control via text messages!&lt;br /&gt;
&lt;br /&gt;
A lot has already been achieved in Remote Control, now that mobile devices are faster, slimmer and easy to use. But we had a different idea in our mind. To create something that eliminates the cost factor of a fancy cellphone. We started searching and we came across loads of different software, but we found some things common in almost all of them:&lt;br /&gt;
&lt;br /&gt;
1. Either the user requires a second cellphone attached to his computer and controls the computer via another cellphone with him.&lt;br /&gt;
&lt;br /&gt;
2. The cellphone as well as the computer have a fast internet connection and the client running on the computer talks with the cellphone via a protocol delivering the computer's current state on the cellphone's screen.&lt;br /&gt;
&lt;br /&gt;
3. The cellphone updates a part of a common web server/user profiles (3rd party over which user has very little control) and the client would read the profile. This mostly is facilitated via a sms gateway (generally owned by a 3rd party website) which is most cases demands premium sms charges or subscription to their service.&lt;br /&gt;
&lt;br /&gt;
In all the above mentioned, there are charges involved that the user needs to pay in order to control his computer remotely, either overhead of a second cellphone, bandwidth charges or lastly, premium sms or subscription charges.&lt;br /&gt;
&lt;br /&gt;
The solution of these problems became the central idea behind our project and we named it &lt;b&gt;MOBREMOTE&lt;/b&gt;. (short for Mobile Remote)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Mobremote provides the user with ability to send text messages containing the desired command to execute on his computer. There is absolutely NO need of an internet connection on the user's cellphone. The only requirement is that of an existing gmail account and the client computer only requires a minimal internet connection (even dialups would do!) which is generally cheaper than the cost of an additional cellphone and mostly better than subscription charges.&lt;br /&gt;
&lt;br /&gt;
Advantages:&lt;br /&gt;
1. NO premium charges of sending the text message&lt;br /&gt;
2. NO internet connectivity required on the cellphone (saving extra bandwidth charges)&lt;br /&gt;
3. NO monthly subscription charges&lt;br /&gt;
4. Full Control over what can be remotely done with the cellphone (with different layers of security at each level)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
So how do implement our idea? It's plain and simple. We came across a platform known as &lt;a href="http://www.txtweb.com"&gt;txtWeb&lt;/a&gt; which runs in India, United States Of America and Canada. The platform is run by Intuit, based in United States itself. Their primary aim is to bring the power of internet to user's cellphone for no extra charges except the cost of a standard text message. txtWeb has dedicated numbers assigned for each of these countries. &lt;br /&gt;
&lt;br /&gt;
The path that we followed in implementing Mobremote was:&lt;br /&gt;
&lt;br /&gt;
User's cellphone sends message at txtweb's number-&gt;&gt; Process message and check for correctness-&gt;&gt; Forward the message's content to user's specified gmail account-&gt;&gt;Create a separate application to run on user's computer-&gt;&gt;The application would periodically check for incoming commands in user's gmail account-&gt;&gt; If the received message from user's gmail inbox passes all security checks, execute the specified command in the message.&lt;br /&gt;
&lt;br /&gt;
This was the ultimate solution for us to go ahead and bring convert our idea into reality. So we started building a text-message handling application. We hosted the application on Google AppEngine for reliability, security as well as diagnostic reasons. Next we map a keyword on txtWeb's website that would point to our application hosted on AppEngine. By doing so, we ensure that when the user sends a message with our keyword and his details to txtWeb, txtWeb would in turn run our application with the message as a parameter and return the result back to the user (or forward the message to user's gmail account, sending back a success message to user's cellphone). We designed a format in which the user is required to specify his details in the text message. &lt;br /&gt;
&lt;br /&gt;
Mobremote's current format is:&lt;br /&gt;
@mobremote -k (security key) -e (gmailid@gmail.com) -s command -c (command to execute)&lt;br /&gt;
&lt;br /&gt;
Security key (5 digits entered in the Mobremote software installed on the user's computer) is implemented as a part of Mobremote’s security in order to protect the user’s computer from unwanted/fake commands from any other person other than the owner of the computer himself. The user is required to fill in the details specified in braces and send the text message to one of the txtWeb's numbers (9243342000 or 9900173324 for India, and 898932 for US and Canada).&lt;br /&gt;
&lt;br /&gt;
The command is specified as digits ending with a $ sign. Mobremote currently supports 9 most basic commands the user may need when he/she is not physically near their computer.&lt;br /&gt;
The number to command mapping is as follows:&lt;br /&gt;
&lt;br /&gt;
0:Stop listening to incoming commands from cellphone&lt;br /&gt;
&lt;br /&gt;
1:Lock computer&lt;br /&gt;
&lt;br /&gt;
2:Sleep Computer&lt;br /&gt;
&lt;br /&gt;
3:Hibernate computer&lt;br /&gt;
&lt;br /&gt;
4:Log off user&lt;br /&gt;
&lt;br /&gt;
5:Restart computer&lt;br /&gt;
&lt;br /&gt;
6:Shutdown computer&lt;br /&gt;
&lt;br /&gt;
7:Force shutdown computer&lt;br /&gt;
&lt;br /&gt;
8:End Unresponsive program&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
EXAMPLE: If your gmail id is dev@gmail.com with the configured security key as 12345 and you want to restart your computer, you will send to the appropriate txtWeb number: @mobremote -k 12345 -e dev@gmail.com -s command -c 5$&lt;br /&gt;
&lt;br /&gt;
We offer several help options to our users via text messages like:&lt;br /&gt;
&lt;br /&gt;
1. To get information on mobremote, send “@mobremote” (without quotes) to the above txtWeb number which applies to you according to your location.&lt;br /&gt;
2. To get the format of sending commands, send “@mobremote format”&lt;br /&gt;
3. To get a list of supported commands, send “@mobremote help”&lt;br /&gt;
4. To view an example, send “@mobremote example”&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
So, uptil now, our text message has travelled from user's cellphone to his/her gmail account. As stated above, we create another application that would run on the user's machine and regularly check for any incoming emails in the format of Mobremote. So we started writing code to create a good user interface along with added security to extend what the user can accomplish by using Mobremote. We wrote code in C++ utilizing Qt framework to provide a user friendly GUI. The user is required to fill in his details in the Mobremote software which includes his gmail account details, mobile number and security key and set the software in Running mode in order to listen to incoming commands from user's cellphone.&lt;br /&gt;
&lt;br /&gt;
The Gmail ID and security key is required to be sent in the text message from user’s cellphone, so the user needs to remember these details entered on his/her computer. Mobremote executes commands only when it verifies user’s identity via his/her gmail account ID and security key.&lt;br /&gt;
&lt;br /&gt;
The software installed on the end user's machine uses PHP with IMAP+SSL to securely fetch email messages containing commands sent from user's cellphone. To provide a scripting environment, we require installation of Apache.&lt;br /&gt;
&lt;br /&gt;
We bought our own domain &lt;a href="http://www.mobremote.com"&gt;www.mobremote.com&lt;/a&gt; and created a website for our project.&lt;br /&gt;
&lt;br /&gt;
After 6 months of coding, testing, debugging, finally we packed everything into a installer and it was ready to be distributed. We uploaded both 32 and 64 bit installer for Windows XP/Vista/7 along with Wampserver (contains Apache for Mobremote to make use of) in the download section of our website &lt;a href="http://www.mobremote.com/download"&gt;www.mobremote.com/download&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Developing Mobremote was truly a learning and fun-filled experience. Of course, there were times when we were so frustrated that we wanted to smash our computer itself, but in the end it worked out well and we were good to go. Mobremote is written in around 5 computer languages all working together to provide remote control facility to the user. Ahead of time, we plan to add more features to Mobremote, including starting/stopping applications, automated downloads, facebook/twitter status updates and the list goes on!&lt;br /&gt;
&lt;br /&gt;
Mobremote was developed with an open mind so it's free to use and re-distribute. However, we do not share our source code with anyone. Developers who are willing to contribute to our project can visit &lt;a href="http://www.mobremote.com/for-devs"&gt;For Devs&lt;/a&gt; for more details.&lt;br /&gt;
&lt;br /&gt;
Technorati Tags: &lt;a href="http://technorati.com/tag/mobremote"&gt;mobremote&lt;/a&gt;, &lt;a href="http://technorati.com/tag/remote"&gt;remote&lt;/a&gt;, &lt;a href="http://technorati.com/tag/sms"&gt;sms&lt;/a&gt;, &lt;a href="http://technorati.com/tag/mobile"&gt;mobile&lt;/a&gt;, &lt;a href="http://technorati.com/tag/cellphone"&gt;cellphone&lt;/a&gt;, &lt;a href="http://technorati.com/tag/software"&gt;software&lt;/a&gt;, &lt;a href="http://technorati.com/tag/free"&gt;free&lt;/a&gt;, &lt;a href="http://technorati.com/tag/txtweb"&gt;txtweb&lt;/a&gt;, &lt;a href="http://technorati.com/tag/remotecontrol"&gt;remote-control&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/WXsGe/~4/xK2rR_mPi4k" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://programmergamer.blogspot.com/feeds/7011358065302443235/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://programmergamer.blogspot.com/2011/09/mobremote-insiders-view.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6412421647806324225/posts/default/7011358065302443235?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6412421647806324225/posts/default/7011358065302443235?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/WXsGe/~3/xK2rR_mPi4k/mobremote-insiders-view.html" title="Mobremote: An insider's view" /><author><name>Programmergamer</name><uri>http://www.blogger.com/profile/10837024763607943216</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="27" height="32" src="http://3.bp.blogspot.com/_5pfi5dIsjvs/S2w_aetHX9I/AAAAAAAAAB4/GWAs7ENd600/S220/IP.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://programmergamer.blogspot.com/2011/09/mobremote-insiders-view.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CEAHSX48eSp7ImA9WhdQEko.&quot;"><id>tag:blogger.com,1999:blog-6412421647806324225.post-7692892763590671691</id><published>2011-08-13T14:38:00.000-07:00</published><updated>2011-08-13T14:58:58.071-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-08-13T14:58:58.071-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="homegroups" /><category scheme="http://www.blogger.com/atom/ns#" term="Windows 7" /><category scheme="http://www.blogger.com/atom/ns#" term="Windows 8" /><category scheme="http://www.blogger.com/atom/ns#" term="operating system" /><category scheme="http://www.blogger.com/atom/ns#" term="magazine" /><category scheme="http://www.blogger.com/atom/ns#" term="article" /><category scheme="http://www.blogger.com/atom/ns#" term="libraries" /><category scheme="http://www.blogger.com/atom/ns#" term="microsoft" /><title>Plunge into Windows 7 and Windows 8 Preview</title><content type="html">&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 13pt; line-height: 115%;"&gt;I've started writing for the technical section (named Tech-Tonic) of our college's e-magazine. Here's the first article published in August.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 13pt; line-height: 115%;"&gt;Windows 7 has been around for quite a while and Windows 8 Beta is around the corner. After the delayed production of Windows Vista (Codenamed Longhorn) which was not as successful as its predecessor, Windows&amp;nbsp; 7 has stood up to the mark when it comes to end user satisfaction, usability and reliability.&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 13pt; line-height: 115%;"&gt;In this edition, I would be highlighting specific features of Windows 7 that you should be aware and make use of so as to harness the full capability of Windows 7.&amp;nbsp; In the “Tips &amp;amp; Tricks” section, this edition will carry some selected shortcuts for better maintaining and managing Windows 7. Finally, I will conclude with the expected feature set and how Windows 8 will differ from current line of operating systems.&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;
&lt;div class="MsoNormal"&gt;&lt;u&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 13pt; line-height: 115%;"&gt;Windows 7 Libraries&lt;/span&gt;&lt;/u&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 13pt; line-height: 115%;"&gt;Libraries serve as virtual folders inside Windows 7. Many of us have various files cluttered all over our hard drive or even on external storage devices. This is time consuming when it comes to finding a particular file that u edited 3 months ago and now have forgotten where u actually saved it! &amp;nbsp;Libraries solve this problem quite efficiently. Users can add folders to a library without copying or creating shortcuts to the folder. The added folder appears under the library which can be accessed the same way as u access a real folder. &amp;nbsp;For example, I capture photos from my Sony Digital Camera and transfer them to my notebook running Windows 7. By default, Sony’s camera creates a folder named 101MSDCF and stores all captured photos in it. When my memory card fills up, I store some photos in the camera’s internal memory, which resides in a different location. Similarly, I also transfer images from a Olympus DigiCam from a relative of mine which has its own folder structure. After a year, I have tens of hundreds of folders all containing the photos I took or transferred but in separate locations. It’s a mess trying to remember which folder was copied to which location and retrieving a single image from a thousand captured from a single trip. This is when Windows 7’s Libraries come to play.&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 13pt; line-height: 115%;"&gt;By default, Windows 7 includes 4 pre-defined libraries: Documents, Pictures, Music and Videos. Users can also create custom libraries to store relevant data according to need. For demonstration purpose, I’m going to create a custom library.&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 13pt; line-height: 115%;"&gt;I open up explorer (Ctrl+E), select Libraries, click on “New library” and enter the library name as “Trip pics”.&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/-lJZvEBHW9m4/TkbqNj6YjpI/AAAAAAAAADk/jhOAgc458Ss/s1600/pic-1.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="180" src="http://4.bp.blogspot.com/-lJZvEBHW9m4/TkbqNj6YjpI/AAAAAAAAADk/jhOAgc458Ss/s400/pic-1.png" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 13pt; line-height: 115%;"&gt;&lt;/span&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 13pt; line-height: 115%;"&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 13pt; line-height: 115%;"&gt;In order to add folders to my Trip pics library, I navigate to each folder and select “Include in Library” drop down menu to select the library in which I want to put the selected folder. Alternatively, I right click the desired folder, select Include in library&amp;gt;Name of library I wish the folder to add to. Note that non-indexed locations, network paths and files from CD/DVD CANNOT be added to a library. To add non-indexed and network locations, use a 3&lt;sup&gt;rd&lt;/sup&gt; party tool named “Win 7 Library Tool”.&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 13pt; line-height: 115%;"&gt;Also note the effects of deleting folders from within a library and from their original location. If files/subfolders change in their original location, these changes are reflected in the library to which they belong. Files or subfolders deleted from their original location do not appear in the library at all. Deleting files or folders from within a library also affects the original folder or files. However, if folders are “removed” by selecting the locations link in a library and clicking on “Remove”, the folder is no longer a part of the library and is temporarily removed WITHOUT affecting files or subfolders in the original location.&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 14pt; line-height: 115%;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 14pt; line-height: 115%;"&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/-5aNBcfShgok/Tkbqz7gQhfI/AAAAAAAAADo/LrHB6je-WZs/s1600/pic-2.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="382" src="http://2.bp.blogspot.com/-5aNBcfShgok/Tkbqz7gQhfI/AAAAAAAAADo/LrHB6je-WZs/s400/pic-2.png" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 14pt; line-height: 115%;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 14pt; line-height: 115%;"&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 13pt; line-height: 115%;"&gt;After adding all the folders that I wish to keep in a separate library, I get something like shown in figure below:&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 14pt; line-height: 115%;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 14pt; line-height: 115%;"&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/-CZ_wFaOOdNg/Tkbq17STFNI/AAAAAAAAADs/tZJKsfa6gok/s1600/pic-3.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="182" src="http://2.bp.blogspot.com/-CZ_wFaOOdNg/Tkbq17STFNI/AAAAAAAAADs/tZJKsfa6gok/s400/pic-3.png" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 14pt; line-height: 115%;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 14pt; line-height: 115%;"&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 13pt; line-height: 115%;"&gt;I now have a clean way to have a quick glance and work with my scattered files from a central location. Yay!&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;u&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 13pt; line-height: 115%;"&gt;Homegroups&lt;/span&gt;&lt;/u&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 13pt; line-height: 115%;"&gt;Homegroups make file and printer sharing between Windows 7 machines fairly simple. However, there are some things u should keep in mind &lt;u&gt;before &lt;/u&gt;getting started with your own homegroups. First and foremost, you should be connected to a network that has its location set to home. Secondly, homegroups require IPv6 to be enabled on your home network. Double check these two pre-requisites from your adapter settings via Network and Sharing Center.&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/-2pv7uO9xIR4/TkbrpcBaI6I/AAAAAAAAAD0/ql-fCwWCZCw/s1600/pic-4.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="208" src="http://4.bp.blogspot.com/-2pv7uO9xIR4/TkbrpcBaI6I/AAAAAAAAAD0/ql-fCwWCZCw/s400/pic-4.png" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 13pt; line-height: 115%;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 13pt; line-height: 115%;"&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 13pt; line-height: 115%;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 13pt; line-height: 115%;"&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 13pt; line-height: 115%;"&gt;After I’ve ensured the above requirements, I open my explorer and select Homegroup. While creating a homegroup, I have the ability to share Pictures, Documents, Music, Printers and Videos [Libraries, not folders]. After making my selections, Windows 7 assigns a password for other Windows 7 machines to connect to your homegroup.&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 13pt; line-height: 115%;"&gt;On other computers, Windows 7 detects existing homegroups and provides you the option to add the computer to the created homegroup. Once this is complete, your libraries, printers as well as media can be accessed from other computers that are a part of the same homegroup. On other computers, navigate to Homegroups and select “Join Now”.&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/-Pmja9dCPdBU/TkbtWoxmCvI/AAAAAAAAAD4/XwWH0PrUdDw/s1600/pic-7.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="268" src="http://1.bp.blogspot.com/-Pmja9dCPdBU/TkbtWoxmCvI/AAAAAAAAAD4/XwWH0PrUdDw/s400/pic-7.png" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 13pt; line-height: 115%;"&gt;&lt;/span&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 13pt; line-height: 115%;"&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 13pt; line-height: 115%;"&gt;To change homegroup settings, such as Turning off password protected sharing (to not force users to type the password), change media sharing options, alter homegroup password, navigate to Control Panel-&amp;gt;Network Internet-&amp;gt;Homegroup. As a side note, other computers should have Network Discovery turned on, as well as File and Printer sharing to take the full advantage of homegroups.&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/-D-NlEhCli_Q/TkbtlBRouzI/AAAAAAAAAD8/-jAa3KGm0mM/s1600/pic-6.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="290" src="http://2.bp.blogspot.com/-D-NlEhCli_Q/TkbtlBRouzI/AAAAAAAAAD8/-jAa3KGm0mM/s400/pic-6.png" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 13pt; line-height: 115%;"&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 13pt; line-height: 115%;"&gt;However, before printing from other computers to a printer attached on a homegroup hosting computer, make sure u double click the printer in Network and Sharing Center-&amp;gt;View computers and devices and the printer will be automatically installed for you to use.&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 13pt; line-height: 115%;"&gt;Homegroups form a mesh-type of sharing where files shared by people in the homegroup are accessible by anyone in the homegroup. For users who shared files via Sharing Tab in folder properties in previous versions of Windows can also share files by Public Folders in Windows 7. However, sharing files/folders via the Public folders method requires a copy of the files to be present in the public folder. Homegroups simplify this procedure by placing links of shared libraries (which in turn use links to real folders) instead of the entire contents.&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 13pt; line-height: 115%;"&gt;If media sharing is enabled (i.e. “Share my pictures, music and videos to all devices on my network” is checked) files from media libraries are available &lt;u&gt;directly&lt;/u&gt; in windows media player of members in the homegroup without having the need to share them explicitly as files.&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 13pt; line-height: 115%;"&gt;To add a custom library to your homegroup, simply navigate to your library via explorer and select the “Share with” option. U can specify nobody (deny), read, read/write or even specific permissions to different users in the homegroup.&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/-z-64djm7FM4/TkbuB1EErmI/AAAAAAAAAEA/VqbiFsLQZhE/s1600/pic-8.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="270" src="http://4.bp.blogspot.com/-z-64djm7FM4/TkbuB1EErmI/AAAAAAAAAEA/VqbiFsLQZhE/s400/pic-8.png" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 13pt; line-height: 115%;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 13pt; line-height: 115%;"&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-left: 0.5in; text-indent: -0.5in;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="MsoNormal" style="margin-left: 0.5in; text-indent: -0.5in;"&gt;&lt;u&gt;&lt;span style="font-family: &amp;quot;Lucida Handwriting&amp;quot;; font-size: 13pt; line-height: 115%;"&gt;Tips &amp;amp; Tricks&lt;/span&gt;&lt;/u&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-left: .5in; text-indent: -.5in;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="MsoNormal" style="margin-left: 0.5in; text-indent: -0.5in;"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 13pt; line-height: 115%;"&gt;Essential Windows 7 management shortcuts for everyday use:&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-left: .5in; text-indent: -.5in;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="MsoNormal" style="margin-left: 0.5in; text-indent: -0.5in;"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 13pt; line-height: 115%;"&gt;1. Win+1,2,3,4…: Launches shortcuts in taskbar bar in order from left&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-left: .5in; text-indent: -.5in;"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 13pt; line-height: 115%;"&gt;2. Win+Alt+1,2,3,4…: Opens up jump list for program in the taskbar in order from left&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-left: .5in; text-indent: -.5in;"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 13pt; line-height: 115%;"&gt;3. Win+Home: Minimizes every other window except the current one&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-left: .5in; text-indent: -.5in;"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 13pt; line-height: 115%;"&gt;4. Win+T: Cycle through programs in taskbar&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-left: .5in; text-indent: -.5in;"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 13pt; line-height: 115%;"&gt;5. Win+B: Select programs in order in the notification area&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-left: .5in; text-indent: -.5in;"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 13pt; line-height: 115%;"&gt;6. Win+Up/Down: Maximize/Minimize the current window&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-left: .5in; text-indent: -.5in;"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 13pt; line-height: 115%;"&gt;7. Win+Left/Right: Moves the current window to the left/right side of the screen&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-left: .5in; text-indent: -.5in;"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 13pt; line-height: 115%;"&gt;8. Ctrl+Shift+Esc: Opens up task manager &lt;u&gt;without&lt;/u&gt; using Ctrl+Alt+Delete&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-left: .5in; text-indent: -.5in;"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 13pt; line-height: 115%;"&gt;9. Ctrl+Shift+N: Creates a new folder in the current directory&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-left: .5in; text-indent: -.5in;"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 13pt; line-height: 115%;"&gt;10. F10: Toggles the menu bar in Windows Explorer&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-left: .5in; text-indent: -.5in;"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 13pt; line-height: 115%;"&gt;11. Shift+F10: Opens the context menu for the current selection&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-left: .5in; text-indent: -.5in;"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 13pt; line-height: 115%;"&gt;12. Alt+Up: Move one folder up in the hierarchy&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-left: .5in; text-indent: -.5in;"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 13pt; line-height: 115%;"&gt;13. Shift+Delete: Delete the current selection permanently, without moving to recycle bin&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-left: .5in; text-indent: -.5in;"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 13pt; line-height: 115%;"&gt;14. Alt+Enter: Opens the properties of the current selection&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="margin-left: .5in; text-indent: -.5in;"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 13pt; line-height: 115%;"&gt;15. F3 or Win+F: Opens up Windows Search&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 13pt; line-height: 115%;"&gt;16. Ctrl+Esc: Opens up start menu (called as Orb in Windows 7)&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 13pt; line-height: 115%;"&gt;17. Alt+Space: Opens up windows system menu (Restore, Move, Size, Minimize, Maximize, Close)&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 13pt; line-height: 115%;"&gt;18. F2: Rename the current selection&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 13pt; line-height: 115%;"&gt;19. Hold current window with mouse and shake left and right quickly several times: Minimizes every other window except the current one (=Win+Home)&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 13pt; line-height: 115%;"&gt;20. Win+Tab/ Win+Shift+Tab: Flip 3D open windows in forward/reverse order&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 13pt; line-height: 115%;"&gt;Previewing Windows 8&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 13pt; line-height: 115%;"&gt;In the past 1-2 years, the Redmond based company is releasing a line of products for home/office use with lightning speed. With the release of Windows 7 and Internet Explorer 9, Microsoft made a mark yet again in both home and enterprise environments. But innovation and creativity does not halt as we already see milestones and newer windows 8 builds being mentioned on the internet.&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 13pt; line-height: 115%;"&gt;The start menu (Orb in Windows 7) was doomed to be changed since Windows Vista. However it was untouched until Windows 7. In windows 8 we see a focus of touch input to control your favorite programs, although the same could be achieved via mouse and keyboard. The applications are now displayed in a larger form of vista gadgets, called as “Tiles” in windows 8. Users can now scroll through program tiles by using hand flicks both to the left and the right. Touch input, much like tablet pc, uses on screen keyboard to deliver keystrokes.&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 13pt; line-height: 115%;"&gt;Microsoft has been considerate to post preview videos titled “Building Windows 8”. Using tiles allows the user to focus on a single application while keeping background tasks unaffected. Also, expanding a tile shows detailed information and allows user interaction.&lt;/span&gt;&lt;/div&gt;&lt;div align="center" class="MsoNormal" style="text-align: center;"&gt;&lt;span style="font-size: 13pt; line-height: 115%;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;span style="font-size: 13pt; line-height: 115%;"&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;object class="BLOGGER-youtube-video" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" data-thumbnail-src="http://2.gvt0.com/vi/p92QfWOw88I/0.jpg" height="266" width="320"&gt;&lt;param name="movie" value="http://www.youtube.com/v/p92QfWOw88I&amp;fs=1&amp;source=uds" /&gt;&lt;param name="bgcolor" value="#FFFFFF" /&gt;&lt;embed width="320" height="266"  src="http://www.youtube.com/v/p92QfWOw88I&amp;fs=1&amp;source=uds" type="application/x-shockwave-flash"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/div&gt;&lt;div align="center" class="MsoNormal" style="text-align: center;"&gt;&lt;span style="font-size: 13pt; line-height: 115%;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;span style="font-size: 13pt; line-height: 115%;"&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 13pt; line-height: 115%;"&gt;The complete User Interface was re-designed when Microsoft transited from Windows XP to Windows Vista. Windows 7 is built on the same kernel with some improvements over the vista kernel.&amp;nbsp;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 13pt; line-height: 115%;"&gt;Rumors are spread throughout the internet with respect to Windows 8 features. Most systems today run on a 32 bit and some on 64 bit operating system. Windows Core development team &lt;u&gt;may&lt;/u&gt; make Windows 8 a 128bit operating system allowing huge amount of allocable memory addresses. Some even say that Windows 8 will be EFI compatible, which is still to replace the current BIOS based systems.&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 13pt; line-height: 115%;"&gt; &lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 13pt; line-height: 115%;"&gt;With every new version of Windows, users expect speed and ease of use. However, providing eye-candy user interface can negatively impacts overall performance. We expect a balance of both system speed along with pleasing UI. Ideally, this is what makes an operating system successful and marketable.&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 13pt; line-height: 115%;"&gt;Have a happy tech-month.&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;; font-size: 13pt; line-height: 115%;"&gt;Technorati Tags: &lt;/span&gt;&lt;a href="http://technorati.com/tag/Windows%208"&gt;Windows 8&lt;/a&gt;,  &lt;a href="http://technorati.com/tag/Windows%207"&gt;Windows 7&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Microsoft"&gt;Microsoft&lt;/a&gt;,  &lt;a href="http://technorati.com/tag/article"&gt;article&lt;/a&gt;, &lt;a href="http://technorati.com/tag/magazine"&gt;Magazine&lt;/a&gt;,  &lt;a href="http://technorati.com/tag/operating%20system"&gt;operating system&lt;/a&gt;,  &lt;a href="http://technorati.com/tag/libraries"&gt;libraries&lt;/a&gt;, &lt;a href="http://technorati.com/tag/homegroup"&gt;homegroups&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/WXsGe/~4/tww7943dHFI" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://programmergamer.blogspot.com/feeds/7692892763590671691/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://programmergamer.blogspot.com/2011/08/plunge-into-windows-7-and-windows-8.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6412421647806324225/posts/default/7692892763590671691?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6412421647806324225/posts/default/7692892763590671691?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/WXsGe/~3/tww7943dHFI/plunge-into-windows-7-and-windows-8.html" title="Plunge into Windows 7 and Windows 8 Preview" /><author><name>Programmergamer</name><uri>http://www.blogger.com/profile/10837024763607943216</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="27" height="32" src="http://3.bp.blogspot.com/_5pfi5dIsjvs/S2w_aetHX9I/AAAAAAAAAB4/GWAs7ENd600/S220/IP.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://4.bp.blogspot.com/-lJZvEBHW9m4/TkbqNj6YjpI/AAAAAAAAADk/jhOAgc458Ss/s72-c/pic-1.png" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://programmergamer.blogspot.com/2011/08/plunge-into-windows-7-and-windows-8.html</feedburner:origLink></entry><entry gd:etag="W/&quot;AkMNRXg9cCp7ImA9WhZaEUs.&quot;"><id>tag:blogger.com,1999:blog-6412421647806324225.post-4166992364061334727</id><published>2011-06-25T11:23:00.000-07:00</published><updated>2011-06-27T02:54:54.668-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-06-27T02:54:54.668-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="rttc" /><category scheme="http://www.blogger.com/atom/ns#" term="mobile" /><category scheme="http://www.blogger.com/atom/ns#" term="internship" /><category scheme="http://www.blogger.com/atom/ns#" term="training" /><category scheme="http://www.blogger.com/atom/ns#" term="bsnl" /><title>Internship @ A Service Provider</title><content type="html">&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;The summer of 2011 was getting stressful than the last semester. As usual, i had a BIG to-do list. One of the task was sorta necessary and i was looking forward to it i.e. a 21 day internship, to be done as a part of our Bachelor of Engineering's course in Computer Science.&lt;br /&gt;
This year, &lt;a href="http://www.bsnl.co.in/"&gt;BSNL&lt;/a&gt; a.k.a. Bharat Sanchar Nigam Limited (India's Largest Internet Service Provider) was hosting training for 2/3 year engineering students of Electronics/Electrical/Computer Science students. The RTTC (Regional Telecom Training Center) which is only one for a particular state was nearby my home. I initially joined their 4 weeks programme.&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://1.bp.blogspot.com/-ELNIJVLWL5o/TfBRx09yT0I/AAAAAAAAADQ/HNRxsnWlnSE/s1600/bsnllogo.gif" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://1.bp.blogspot.com/-ELNIJVLWL5o/TfBRx09yT0I/AAAAAAAAADQ/HNRxsnWlnSE/s1600/bsnllogo.gif" /&gt;&lt;/a&gt;The RTTC is quite big, consisting of 3 floors, equipped with large lecture halls, conference rooms, seminar halls, a library, communication labs along with a separate MSC (Mobile Switching Center) and offices of the instructors (or rather employees of BSNL)&lt;br /&gt;
&lt;br /&gt;
The first day, our mentor (more of a batch in-charge) T. D. Mishra, introduced himself and other senior employees present there. He handed over our schedule to us along with the timings. The four weeks were divided into separate units that include sessions, labs as well as visits to telephone exchanges. The lectures started with the overview of telecom networks and job opportunities for engineering students in the field of telecommunication. In the first week, we covered &lt;a href="http://en.wikipedia.org/wiki/Pulse-code_modulation"&gt;The PCM Principle&lt;/a&gt; along with &lt;a href="http://searchnetworking.techtarget.com/definition/digital-switch"&gt;Digital Switching&lt;/a&gt;. These topics demonstrate how every bit of your voice that u speak in your telephone reaches from point A to point B within no time via a huge network starting from the local loop(the line from your home which connects to the service provider's nearest exchange) to the ISP's switching modules, trunk lines (hopping from one exchange to the other) via copper or optical fibers to the correct exchange which further routes the signal to the nearest exchange the called person is connected to and finally transmitting it via another local loop to the correct telephone which decodes the signal back to comprehensible voice that the other person is able to hear and respond to in a similar manner.&lt;br /&gt;
&lt;u&gt;&lt;b&gt;&lt;br /&gt;
&lt;/b&gt;&lt;/u&gt;&lt;br /&gt;
&lt;u&gt;&lt;b&gt;&lt;i&gt;Fun Fact&lt;/i&gt;&lt;/b&gt;&lt;/u&gt;: A mobile number generally is over &lt;b&gt;100&lt;/b&gt; digits long! This includes all codes and identification numbers that can be used to pin-point a particular SIM card uniquely in the entire world. But when limited to within a country and considering the large amount of Service providers present, subscribers need to only remember 10 digits.&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;The second week was fun, conceptually as well as physically. We had a fiber optic systems session, coupled with &lt;a href="http://en.wikipedia.org/wiki/Synchronous_Digital_Hierarchy"&gt;SDH&lt;/a&gt; and &lt;a href="http://en.wikipedia.org/wiki/DWDM#Dense_WDM"&gt;DWDM&lt;/a&gt; concepts. Then two labs relating to fiber optics, where we understood how practically SDH systems are laid out in a large service provider's network, how they actually work and in what manner are they easy to troubleshoot.&lt;br /&gt;
&lt;br /&gt;
&lt;u&gt;&lt;i&gt;&lt;b&gt;Fun fact&lt;/b&gt;&lt;/i&gt;&lt;/u&gt;: A single optical fiber can be used to such an extent that it can facilitate simultaneous &lt;b&gt;1,25,000 calls&lt;/b&gt; via wavelength windows and loads of multiplexing. This is the reason why tariffs exist that reduce calls costs to only a few cents per minute.&lt;br /&gt;
&lt;br /&gt;
Following this, the most interesting lab was where we got to join two optical fibers by &lt;a href="http://www.thefoa.org/tech/ref/termination/fusion.html"&gt;fusion spilicing&lt;/a&gt;. The week ended with our first exchange visit where we got to enter all the rooms that stated "No Entry" or "Not Allowed" :-) including the MDF (Main Distribution Frame) Room, Switching and Power/Backup rooms. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td style="text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/-75p9qmVAdPA/TgYbKN30WSI/AAAAAAAAADc/5RrDVaLSfVI/s1600/IMAG0136.jpg" imageanchor="1" style="margin-left: auto; margin-right: auto;"&gt;&lt;img border="0" height="400" src="http://1.bp.blogspot.com/-75p9qmVAdPA/TgYbKN30WSI/AAAAAAAAADc/5RrDVaLSfVI/s400/IMAG0136.jpg" width="236" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class="tr-caption" style="text-align: center;"&gt;Side View of MDF room (Click to view Full size image)&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;
The third week seemed small to me, but it had great sessions, especially  the GSM and CDMA parts as well as the visit to the Mobile Switching  Center. I could not manage to get pictures of the inside of the MSC, but  it was fascinating how it served millions of subscribers simultaneously.&lt;br /&gt;
&lt;br /&gt;
&lt;u&gt;&lt;i&gt;&lt;b&gt;Fun Fact&lt;/b&gt;&lt;/i&gt;&lt;/u&gt;: GSM is the most widely used mobile communication standard, because of which it is termed as "Global Systems for Mobile Communications" &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td style="text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/-U8yXJmAyTW8/TgYbsw9YeeI/AAAAAAAAADg/eNkZELr8Utg/s1600/IMAG0132.jpg" imageanchor="1" style="margin-left: auto; margin-right: auto;"&gt;&lt;img border="0" height="320" src="http://4.bp.blogspot.com/-U8yXJmAyTW8/TgYbsw9YeeI/AAAAAAAAADg/eNkZELr8Utg/s320/IMAG0132.jpg" width="190" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class="tr-caption" style="text-align: center;"&gt;(Click to view full size  image) &lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container"&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class="tr-caption" style="text-align: center;"&gt;Fig: A section of the MDF installed in an exchange. The mesh of wires  terminating into vertical white boxes(called as modules) interconnect  the subscriber's landline to the exchange's switching system&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;The final week was the best of them all as it included the concept of Intelligent Networks (seriously, that was a wow!), how &lt;a href="http://www.tekelec.com/ss7/members/ssp.asp"&gt;SSP's&lt;/a&gt;, &lt;a href="http://en.wikipedia.org/wiki/Service_Control_Point"&gt;SCP's&lt;/a&gt; and &lt;a href="http://www.telecomspace.com/ss7-in.html"&gt;SMP's&lt;/a&gt; work together in a secure manner to provide amazing services throughout the country. The last visit was to the biggest exchange in the city. Except for WiMAX, every other technology was implemented, including the 16Mbps-100Mbps fiber lines that provided high end connectivity to subscribers (IIRC it was implemented by using a HUAWEI box). Further, the exchange had separate 2G (more in number) and 3G racks (comparatively less in number) which were mostly implemented by Ericsson. The CDMA division was implemented by ZTE's BTS's (Base Trans-Receive Station, what is referred to as a "mobile tower" by the general public) and a software named Netnumen provided all possible controls for both physical and radio configurations. Amongst all these, the MSC's HLR's and VLR's were held in their own server racks (MSC is a collective term consisting of all mobile related registers). HLR or the "Home Location Register" (is populated with cell phone numbers local to a resident area) and VLR or the "Visitor Location Register" (temporary register, which is populated by roaming cellphone numbers) is an integral part of every MSC. By registers i mean to imply databases with focus on regular backups.&lt;br /&gt;
&lt;br /&gt;
&lt;u&gt;&lt;i&gt;&lt;b&gt;Fun Fact&lt;/b&gt;&lt;/i&gt;&lt;/u&gt;: BSNL's NIB (National Internet Backbone) consists of five Cisco 12416 routers interconnected in a mesh, each costing nearly 1 million dollars (~5 Crores INR)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The meaning of internship is not limited to going to a company and performing a task for a specified period of time, rather it involves regular learning, hands on experience along with the huge amount of life lessons that u get in a very short period of time. Special thanks to Mr. T.D. Mishra for sticking by me and answering even the most stupid question i had. After the completion of my training, everytime i move around and see cellphone towers(technically called as BTS's) it reminds me of my days at BSNL.&lt;br /&gt;
&lt;br /&gt;
Technorati Tags: &lt;a href="http://technorati.com/tag/BSNL"&gt;BSNL&lt;/a&gt;,  &lt;a href="http://technorati.com/tag/internship"&gt;internship&lt;/a&gt;, &lt;a href="http://technorati.com/tag/mobile"&gt;mobile&lt;/a&gt;,  &lt;a href="http://technorati.com/tag/rttc"&gt;rttc&lt;/a&gt;, &lt;a href="http://technorati.com/tag/training"&gt;training&lt;/a&gt;,  &lt;a href="http://technorati.com/tag/GSM"&gt;GSM&lt;/a&gt;, &lt;a href="http://technorati.com/tag/CDMA"&gt;CDMA&lt;/a&gt;,  &lt;a href="http://technorati.com/tag/NIB"&gt;NIB&lt;/a&gt;, &lt;a href="http://technorati.com/tag/server"&gt;server&lt;/a&gt;,  &lt;a href="http://technorati.com/tag/telecommunication"&gt;telecommunication&lt;/a&gt;&amp;nbsp; &lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/WXsGe/~4/CLJuS20_gHg" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://programmergamer.blogspot.com/feeds/4166992364061334727/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://programmergamer.blogspot.com/2011/06/internship-service-provider.html#comment-form" title="2 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6412421647806324225/posts/default/4166992364061334727?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6412421647806324225/posts/default/4166992364061334727?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/WXsGe/~3/CLJuS20_gHg/internship-service-provider.html" title="Internship @ A Service Provider" /><author><name>Programmergamer</name><uri>http://www.blogger.com/profile/10837024763607943216</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="27" height="32" src="http://3.bp.blogspot.com/_5pfi5dIsjvs/S2w_aetHX9I/AAAAAAAAAB4/GWAs7ENd600/S220/IP.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/-ELNIJVLWL5o/TfBRx09yT0I/AAAAAAAAADQ/HNRxsnWlnSE/s72-c/bsnllogo.gif" height="72" width="72" /><thr:total>2</thr:total><feedburner:origLink>http://programmergamer.blogspot.com/2011/06/internship-service-provider.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CUUDRX86fCp7ImA9Wx9XE04.&quot;"><id>tag:blogger.com,1999:blog-6412421647806324225.post-8512239747944465418</id><published>2011-01-06T05:21:00.000-08:00</published><updated>2011-01-06T09:01:14.114-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-01-06T09:01:14.114-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="routing" /><category scheme="http://www.blogger.com/atom/ns#" term="networks" /><category scheme="http://www.blogger.com/atom/ns#" term="protocols" /><title>Tid-Bits of Routing</title><content type="html">&lt;style type="text/css"&gt;
p { margin-bottom: 0.08in; }
&lt;/style&gt;  &lt;br /&gt;
&lt;div style="margin-bottom: 0in;"&gt;The most fascinating part about networks is Routing. As the term indicates Routing describes the path a data packet takes to reach its destination. The term seems simple enough, but I will go step by step to describe the complex bits and bytes of the process of routing.  &lt;/div&gt;&lt;div style="margin-bottom: 0in;"&gt;Every network device (for example a router, a computer, multilayer switches) contains a pre-configured routing table. On a host computer, this can be viewed by typing the “netstat –r” command or simply “route print” at the command line (in case of windows systems) and the “route” command for linux based systems.&lt;/div&gt;&lt;div style="margin-bottom: 0in;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0in;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0in;"&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/_5pfi5dIsjvs/TSXI_Q91yHI/AAAAAAAAACw/_8B6dSUFoU0/s1600/routing+table.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://1.bp.blogspot.com/_5pfi5dIsjvs/TSXI_Q91yHI/AAAAAAAAACw/_8B6dSUFoU0/s1600/routing+table.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0in;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0in;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0in;"&gt;In general, an IPv6 routing table and an interface list (in a case of a computer) will accompany the IPv4 table when u view the routing table of a device that supports both protocols. The routing table is composed of 6 parts as follows:-&lt;/div&gt;&lt;ol&gt;&lt;li&gt;&lt;div style="margin-bottom: 0in;"&gt;&lt;b&gt;Network Destination&lt;/b&gt;: The IP  address of the network of the device listed as the final destination  for a packet.&lt;/div&gt;&lt;/li&gt;
&lt;li&gt;&lt;div style="margin-bottom: 0in;"&gt;&lt;b&gt;Netmask&lt;/b&gt;: Commonly termed as  “Subnet Mask”. Separates the Network ID with the host ID.&lt;/div&gt;&lt;/li&gt;
&lt;li&gt;&lt;div style="margin-bottom: 0in;"&gt;&lt;b&gt;Gateway&lt;/b&gt;: The router through which  the packet has to travel to reach to its destination.&lt;/div&gt;&lt;/li&gt;
&lt;li&gt;&lt;div style="margin-bottom: 0in;"&gt;&lt;b&gt;Interface&lt;/b&gt;: The IP address of the  network adapter from which the packet originated (the local  computer)&lt;/div&gt;&lt;/li&gt;
&lt;li&gt;&lt;div style="margin-bottom: 0in;"&gt;&lt;b&gt;Metric&lt;/b&gt;: A term which relates  indirectly to the cost involved for the packet to reach to its  destination if it takes the specified route. The lesser the metric,  the better and faster the transfer of a packet.&lt;/div&gt;&lt;/li&gt;
&lt;li&gt;&lt;div style="margin-bottom: 0in;"&gt;&lt;b&gt;Persistent Routes&lt;/b&gt;: Manually added  routes are termed as “Persistent” which stay even if the device  reboots.&lt;/div&gt;&lt;/li&gt;
&lt;/ol&gt;&lt;div style="margin-bottom: 0in;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0in;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0in;"&gt;Let’s take an example route from the above routing table. The 6&lt;sup&gt;th&lt;/sup&gt; entry in the routing table is shown as follows:-&lt;/div&gt;&lt;div style="margin-bottom: 0in;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0in;"&gt;192.168.91.0 &amp;nbsp; &amp;nbsp;&amp;nbsp;  255.255.255.0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;  On-link&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;   192.168.91.1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;  4501&lt;/div&gt;&lt;div style="margin-bottom: 0in;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0in;"&gt;The “On-link” in the gateway column specifies that the packet can be directly forwarded to the specified network destination without any routing (i.e. the destination is on the local subnet)&lt;/div&gt;&lt;div style="margin-bottom: 0in;"&gt;It signifies that in order for a packet to travel from the interface with an IP address of 192.168.91.1 to the 192.168.91.0 network with a subnet mask of 255.255.255.0 it can to be directly forwarded to the network i.e. no routing required, with a cost of 4501.&lt;/div&gt;&lt;div style="margin-bottom: 0in;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0in;"&gt;If a gateway was specified e.g. 192.168.1.1 then the packet had to travel through it to reach the mentioned network destination. Complex algorithms are employed to determine each metric. Another thing to note here is the network destination specified as 0.0.0.0. This denotes &lt;u&gt;all other&lt;/u&gt; network destinations other than the ones listed in the routing table.&lt;/div&gt;&lt;div style="margin-bottom: 0in;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0in;"&gt;By default, there are no persistent routes. But they can be added via command line.&lt;/div&gt;&lt;div style="margin-bottom: 0in;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0in;"&gt;To add a route manually type at the command line:-&lt;/div&gt;&lt;div style="margin-bottom: 0in;"&gt;route add “network destination” mask “netmask” “gateway”&lt;br /&gt;
e.g. route add 192.168.1.0 mask 255.255.255.0 192.168.1.1 &lt;/div&gt;&lt;div style="margin-bottom: 0in;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0in;"&gt;To add a persistent route, type:&lt;/div&gt;&lt;div style="margin-bottom: 0in;"&gt;route add “network destination” mask “netmask” “gateway” –p&lt;/div&gt;&lt;div style="margin-bottom: 0in;"&gt;e.g. route add 192.168.1.0 mask 255.255.255.0 192.168.1.1 -p&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/_5pfi5dIsjvs/TSXLK8_5WeI/AAAAAAAAAC0/TL0xyFXRch8/s1600/proute.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://2.bp.blogspot.com/_5pfi5dIsjvs/TSXLK8_5WeI/AAAAAAAAAC0/TL0xyFXRch8/s1600/proute.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0in;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0in;"&gt;If no metric is specified, it can be automatically calculated by the device.&lt;/div&gt;&lt;div style="margin-bottom: 0in;"&gt;&lt;br /&gt;
To delete a route type:&lt;/div&gt;&lt;div style="margin-bottom: 0in;"&gt;route delete “network destination”&lt;/div&gt;&lt;div style="margin-bottom: 0in;"&gt;route delete 192.168.1.0&lt;br /&gt;
&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0in;"&gt;Routing can be broadly classified into two categories: Static and Dynamic&lt;/div&gt;&lt;div style="margin-bottom: 0in;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0in;"&gt;&lt;b&gt;Static Routing&lt;/b&gt;: Network devices have to be configured and updated manually.&lt;/div&gt;&lt;div style="margin-bottom: 0in;"&gt;&lt;b&gt;Dynamic Routing&lt;/b&gt;: Network devices communicate with each other to share their routing information.&lt;/div&gt;&lt;div style="margin-bottom: 0in;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0in;"&gt;Routing is governed by Routing Protocols which can also be divided into two categories: Distance Vector Routing and Link State Routing Protocol.&lt;/div&gt;&lt;div style="margin-bottom: 0in;"&gt;&lt;b&gt;&lt;br /&gt;
&lt;/b&gt;&lt;/div&gt;&lt;div style="margin-bottom: 0in;"&gt;&lt;b&gt;Distance Vector Routing Protocols&lt;/b&gt;: Each router communicates all the networks it knows about to other routers to which it is directly attached. Communication takes place on a regular basis.&lt;/div&gt;&lt;div style="margin-bottom: 0in;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0in;"&gt;&lt;b&gt;Link State Routing Protocols&lt;/b&gt;: Each router generates a network map. A router communicates information about the networks it is connected to through LSAs i.e. Link State Advertisements. But communication, unlike distance vector routing protocols, takes places only when a change is made to the network.&lt;/div&gt;&lt;div style="margin-bottom: 0in;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0in;"&gt;Distance Vector Protocols include RIP(Routing Information Protocol), RIPv2 and BGP(Border Gateway Protocol).&lt;/div&gt;&lt;div style="margin-bottom: 0in;"&gt;RIP and RIPv2 both support a maximum of 15 hops(1 hop= 1 jump from a router) and updates every 30 seconds. RIP uses broadcast communication whereas RIPv2 uses multicast communication for obtaining updates. Also, RIPv2 supports authentication whereas RIP does not.&lt;/div&gt;&lt;div style="margin-bottom: 0in;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0in;"&gt;Link State Protocols include OSPF (Open Shortest Path First) and IS-IS (Intermediate System to Intermediate System) Protocols.&lt;/div&gt;&lt;div style="margin-bottom: 0in;"&gt;&lt;br /&gt;
OSPF is used in medium-large networks which gives preferences to certain paths based upon metrics.   &lt;/div&gt;&lt;div style="margin-bottom: 0in;"&gt;IS-IS is designed with the OSI model. Interestingly, IS-IS is another name for a router.&lt;/div&gt;&lt;div style="margin-bottom: 0in;"&gt;&lt;br /&gt;
&lt;b&gt;Hybrid Routing Protocol&lt;/b&gt; includes Cisco’s EIGRP(Extended Interior Gateway Routing Protocol). It uses the Diffusing Update Algorithm (DUAL) whereby each router keep a copy of it’s neighbor’s routing table and it periodically checks the state of its neighbors by sending a packet.&lt;br /&gt;
&lt;br /&gt;
Technorati Tags: &lt;a href="http://technorati.com/tag/networks"&gt;Networks&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Protocols"&gt;Protocols&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Routing"&gt;Routing&lt;/a&gt; &lt;/div&gt;&lt;div style="margin-bottom: 0in;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/WXsGe/~4/0qEW5D9z01Q" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://programmergamer.blogspot.com/feeds/8512239747944465418/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://programmergamer.blogspot.com/2011/01/tid-bits-of-routing.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6412421647806324225/posts/default/8512239747944465418?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6412421647806324225/posts/default/8512239747944465418?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/WXsGe/~3/0qEW5D9z01Q/tid-bits-of-routing.html" title="Tid-Bits of Routing" /><author><name>Programmergamer</name><uri>http://www.blogger.com/profile/10837024763607943216</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="27" height="32" src="http://3.bp.blogspot.com/_5pfi5dIsjvs/S2w_aetHX9I/AAAAAAAAAB4/GWAs7ENd600/S220/IP.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/_5pfi5dIsjvs/TSXI_Q91yHI/AAAAAAAAACw/_8B6dSUFoU0/s72-c/routing+table.png" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://programmergamer.blogspot.com/2011/01/tid-bits-of-routing.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DkIDQXw4eyp7ImA9Wx5RFko.&quot;"><id>tag:blogger.com,1999:blog-6412421647806324225.post-6416403636391439206</id><published>2010-07-19T23:02:00.000-07:00</published><updated>2010-08-24T11:29:30.233-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-08-24T11:29:30.233-07:00</app:edited><title>Holidays and stuff...</title><content type="html">Yeah, summer time, vacation time. The second semester ended and it was a huge relief as with that, the first year of Engineering also came to an end. I had a BIG TO-DO list for the upcoming 2 months.&lt;br /&gt;
&lt;br /&gt;
After 2 semesters, my CGPA stood at 9.52 on a ten point scale. The semester contained much ups and downs at random intervals. Anyways, that didn't change my music listening. This time i was trying out indie-electro bands, like &lt;a href="http://www.last.fm/music/Death+Cab+for+Cutie"&gt;Death Cab for Cutie&lt;/a&gt;, &lt;a href="http://www.last.fm/music/The+Postal+Service"&gt;The Postal Service&lt;/a&gt; and &lt;a href="http://www.last.fm/music/Owl+City"&gt;Owl City&lt;/a&gt;. These bands had some amazing tracks like Marching bands of Manhattan, Soul Meets Body, Such Great Heights, Fireflies, Saltwater Room and many more.&lt;br /&gt;
&lt;br /&gt;
Other thing that i would like to mention here is about a clear-type font called Calibri. Calibri is of Sans-serif typeface now widely adopted by Microsoft as default font in their applications. My liking for calibri began while i was reading through blogs. It's currently my default font in Windows, IE, Firefox and other applications.&lt;br /&gt;
&lt;br /&gt;
Regarding gaming, i think i mentioned in some previous posts that my integrated video chip could not handle much, so i got some games for my Playstation 2. I got &lt;a href="http://www.gamespot.com/ps2/driving/needforspeedundercover/index.html"&gt;NFS Undercover&lt;/a&gt; (yes i know it's too late but i can't help it), &lt;a href="http://www.gamespot.com/ps2/sports/internationaltennispro/index.html"&gt;Tennis&lt;/a&gt; (A new version), and &lt;a href="http://www.gamespot.com/ps2/driving/granturismo4/index.html"&gt;Gran Turismo 4&lt;/a&gt; (Long awaited :)) The PS2 has been around for 10 years since it's release in 2000 and these were some of the last games to exist on this platform.&lt;br /&gt;
&lt;br /&gt;
Technorati Tags: &lt;a href="http://technorati.com/tag/technology"&gt;technology&lt;/a&gt;, &lt;a href="http://technorati.com/tag/holidays"&gt;holidays&lt;/a&gt;, &lt;a href="http://technorati.com/tag/gaming"&gt;gaming&lt;/a&gt;, &lt;a href="http://technorati.com/tag/fonts"&gt;fonts&lt;/a&gt;, &lt;a href="http://technorati.com/tag/racing"&gt;racing&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Playstation+2"&gt;Playstation 2&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/WXsGe/~4/IrW3AouP62c" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://programmergamer.blogspot.com/feeds/6416403636391439206/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://programmergamer.blogspot.com/2010/07/holidays-and-stuff.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6412421647806324225/posts/default/6416403636391439206?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6412421647806324225/posts/default/6416403636391439206?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/WXsGe/~3/IrW3AouP62c/holidays-and-stuff.html" title="Holidays and stuff..." /><author><name>Programmergamer</name><uri>http://www.blogger.com/profile/10837024763607943216</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="27" height="32" src="http://3.bp.blogspot.com/_5pfi5dIsjvs/S2w_aetHX9I/AAAAAAAAAB4/GWAs7ENd600/S220/IP.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://programmergamer.blogspot.com/2010/07/holidays-and-stuff.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DkIARHc9eCp7ImA9Wx5RFko.&quot;"><id>tag:blogger.com,1999:blog-6412421647806324225.post-5553366911812870096</id><published>2010-06-17T08:08:00.000-07:00</published><updated>2010-08-24T11:29:05.960-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-08-24T11:29:05.960-07:00</app:edited><title>After an year</title><content type="html">Today, 17th June 2010, my ebook celebrates it's first anniversary. I would like to give it a thumbs-up from myside as it currently has 3085 downloads (that rounds up to 1 download every 3 hours) from famous file hosting sites like rapidshare and mediafire. Nearly 500 downloads were from torrents.&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://rapidshare.com/files/245437101/Speed_Up_Your_PC.rar"&gt;http://rapidshare.com/files/245437101/Speed_Up_Your_PC.rar&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://www.mediafire.com/?naygmn2zzdn"&gt;http://www.mediafire.com/?naygmn2zzdn&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
I've had many comments, especially on forums, largely with thanks, some with improvements and a few with suggestions. I resisted from making a video out of the tips i wrote about in the book just to make it a more practical "DIY" for users. I hope that the screenshots posted in the book helped in implementing the discussed topic.&lt;br /&gt;
&lt;br /&gt;
The best part was that i had no dedicated website of my own and neither did i invest in paying a famous website to advertise this ebook. Nearly all downloads were out of the self-interest of users.&lt;br /&gt;
&lt;br /&gt;
I would like to extend my gratitude and huge amounts of thanks to all the people who supported my during the creation and publicizing of this book. I hope the downloads keep on swelling with time.&lt;br /&gt;
&lt;br /&gt;
Technorati Tags: &lt;a href="http://technorati.com/tag/technology"&gt;technology&lt;/a&gt;,  &lt;a href="http://technorati.com/tag/ebook"&gt;ebook&lt;/a&gt;, &lt;a href="http://technorati.com/tag/rapidshare"&gt;rapidshare&lt;/a&gt;,  &lt;a href="http://technorati.com/tag/mediafire"&gt;mediafire&lt;/a&gt;,  &lt;a href="http://technorati.com/tag/downloads"&gt;downloads&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/WXsGe/~4/CZYOTbMKb4Q" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://programmergamer.blogspot.com/feeds/5553366911812870096/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://programmergamer.blogspot.com/2010/06/after-year.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6412421647806324225/posts/default/5553366911812870096?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6412421647806324225/posts/default/5553366911812870096?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/WXsGe/~3/CZYOTbMKb4Q/after-year.html" title="After an year" /><author><name>Programmergamer</name><uri>http://www.blogger.com/profile/10837024763607943216</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="27" height="32" src="http://3.bp.blogspot.com/_5pfi5dIsjvs/S2w_aetHX9I/AAAAAAAAAB4/GWAs7ENd600/S220/IP.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://programmergamer.blogspot.com/2010/06/after-year.html</feedburner:origLink></entry><entry gd:etag="W/&quot;Dk4AR34zcCp7ImA9Wx5RFko.&quot;"><id>tag:blogger.com,1999:blog-6412421647806324225.post-5276911753643338871</id><published>2009-12-25T05:31:00.000-08:00</published><updated>2010-08-24T11:35:46.088-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-08-24T11:35:46.088-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="vacation" /><category scheme="http://www.blogger.com/atom/ns#" term="change log" /><category scheme="http://www.blogger.com/atom/ns#" term="christmas" /><category scheme="http://www.blogger.com/atom/ns#" term="holidays" /><category scheme="http://www.blogger.com/atom/ns#" term="computing" /><title>Change Log of the past 6 months</title><content type="html">It was after 4.5 months that i returned back home from college. It was a hard time as one has to manage his studies taking care of his routine, food, clothes, and what all is required to leave a healthy life @ any college. The first semester is an important part of the 4 year BE. After the completion of the first sem, i currently have a healthy GPA of 9.38 on a ten point scale.&lt;br /&gt;
&lt;br /&gt;
December is vacation time for most of the college students. I had pre-planned my vacations in all respects. Most of the part dealt with gaming and other computing activities that i could not indulge into while i was at college. To start with, i completed &lt;a href="http://en.wikipedia.org/wiki/Far_Cry"&gt;Farcry&lt;/a&gt;, probably rated as one of the best FPS of all time. Graphics rendering was not good on my notebook, but i should appreciate what the integrated intel chipset could do with 1759MB of shared memory. Today, many people have completed even &lt;a href="http://en.wikipedia.org/wiki/Far_Cry_2"&gt;Farcry 2&lt;/a&gt; , but that can hardly run on my machine. The second game i started with was &lt;a href="http://en.wikipedia.org/wiki/Machinarium"&gt;Machinarium&lt;/a&gt;, a super puzzle game. The biggest thing about this game is that it relies entirely on the flash engine. And &lt;a href="http://www.amanitadesign.com/"&gt;Amanita Designs&lt;/a&gt; have put their heart and soul into creating this amazing piece of adventure.&lt;br /&gt;
&lt;br /&gt;
Regarding computing, i had several things in mind. I wanted to learn Visual C# completely. The confusing part was with the pre-knowledge of C++, Visual C++ was a good second option. It carried great weightage as the new code i had thought of implementing in Firefox was based on Visual C++. I was unfamiliar with &lt;a href="https://developer.mozilla.org/en/Mozilla_Source_Code_%28Mercurial%29"&gt;Mercurial&lt;/a&gt; (and the huge list of hg commands) which were a sort of prerequisite to begin coding for mozilla. During this year, i had succeeded in creating some windows form applications of general use in Visual C#. I finally went with C# and currently in the process of learning. The second thing regarding computing was getting back my data from my old desktop to my notebook. I had two options, direct LAN or WAN. I tried both ways, first LAN, i got a nearly constant speed of 10MBPS. Switching to WAN via my Siemens 802.11 a/b/g Router gave me a maximum of 54Mbps, much slower than what a single LAN wire would easily provide. At the end of nearly 4 hrs, i ended up transferring 150GB of data :)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://3.bp.blogspot.com/_5pfi5dIsjvs/SzTFq3KV4MI/AAAAAAAAABw/ddfLc6UKD4I/s1600-h/hddcpy.jpg"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5419173591786053826" src="http://3.bp.blogspot.com/_5pfi5dIsjvs/SzTFq3KV4MI/AAAAAAAAABw/ddfLc6UKD4I/s400/hddcpy.jpg" style="height: 250px; width: 400px;" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Christmas time one of the most awesome period of the year (Even though i hate cold weather :P). This year, i got for myself a 1600 CPI iball laser mouse and some comic books, including Superman Adventures, Batman, Justice League and Spiderman. My old 800 CPI mouse had a defective scroll wheel. Things at home had changed somewhat. I had shifted to a new temporary home far away from my old place, something that i hardly liked. So meeting old friends was an integral part of this vacation. These holidays are coming to an end in a week's time from now and i'm already waiting for the next semester to be over as soon as possible.&lt;br /&gt;
&lt;br /&gt;
Technorati Tags: &lt;a href="http://technorati.com/tag/change+log"&gt;change log&lt;/a&gt;,  &lt;a href="http://technorati.com/tag/christmas"&gt;christmas&lt;/a&gt;, &lt;a href="http://technorati.com/tag/computing"&gt;computing&lt;/a&gt;,  &lt;a href="http://technorati.com/tag/vacation"&gt;vacation&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/WXsGe/~4/wFcnWtcZ9p8" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://programmergamer.blogspot.com/feeds/5276911753643338871/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://programmergamer.blogspot.com/2009/12/change-log-of-past-6-months.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6412421647806324225/posts/default/5276911753643338871?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6412421647806324225/posts/default/5276911753643338871?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/WXsGe/~3/wFcnWtcZ9p8/change-log-of-past-6-months.html" title="Change Log of the past 6 months" /><author><name>Programmergamer</name><uri>http://www.blogger.com/profile/10837024763607943216</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="27" height="32" src="http://3.bp.blogspot.com/_5pfi5dIsjvs/S2w_aetHX9I/AAAAAAAAAB4/GWAs7ENd600/S220/IP.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/_5pfi5dIsjvs/SzTFq3KV4MI/AAAAAAAAABw/ddfLc6UKD4I/s72-c/hddcpy.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://programmergamer.blogspot.com/2009/12/change-log-of-past-6-months.html</feedburner:origLink></entry><entry gd:etag="W/&quot;D08EQno4eyp7ImA9Wx5RFko.&quot;"><id>tag:blogger.com,1999:blog-6412421647806324225.post-8636612321137438786</id><published>2009-11-21T14:47:00.000-08:00</published><updated>2010-08-24T11:50:03.433-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-08-24T11:50:03.433-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="innovate" /><category scheme="http://www.blogger.com/atom/ns#" term="IP" /><category scheme="http://www.blogger.com/atom/ns#" term="torrent" /><category scheme="http://www.blogger.com/atom/ns#" term="communication" /><category scheme="http://www.blogger.com/atom/ns#" term="IM" /><category scheme="http://www.blogger.com/atom/ns#" term="client" /><title>Basic IM Requirement In Torrent Clients</title><content type="html">The other day, i was uploading to some person from USA having an adsl connection while i was on my tiny data card with a maximum speed of 153.6Kbps. The upload speed was lagging like anything and the adsl guy was losing my connection now and then.&lt;br /&gt;
&lt;br /&gt;
Secondly, it happens sometimes that some old torrent is losing health consistently while you are on the brink of completing your download. And to your bad luck, the entire torrent just stops at 99.9% as the main seeder has been disconnected or he has lost his will to seed further.&lt;br /&gt;
&lt;br /&gt;
In both of these and many other similar cases, there is no facility to communicate to that particular seeding IP to continue a bit further so that the torrent remains alive in the community. What use does displaying an IP:PORT combination have if u cannot do anything about it. And what more, the messaging system via telnet was removed from Windows Vista/7 ( install explicitly; and i miss u too HyperTerminal :-( ) and not many rely on commands like "net send 72.67.66.89" (some text) in order to send a message via command prompt regarding their request.&lt;br /&gt;
&lt;br /&gt;
Thus, a torrent client specifically needs a small instant messenger that can help torrents live longer. The current scheme of the most famous torrent clients that are mostly C based can be modified to suit this need OR a entirely new torrent client can be made with the help of any robust visual language (C# has much to offer). Something innovative is required from the torrent world in the form of client updates!&lt;br /&gt;
&lt;br /&gt;
Technorati Tags: &lt;a href="http://technorati.com/tag/torrent"&gt;torrent&lt;/a&gt;,  &lt;a href="http://technorati.com/tag/innovate"&gt;innovate&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/WXsGe/~4/dF8QmOLttPc" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://programmergamer.blogspot.com/feeds/8636612321137438786/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://programmergamer.blogspot.com/2009/11/basic-im-requirement-in-torrent-clients.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6412421647806324225/posts/default/8636612321137438786?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6412421647806324225/posts/default/8636612321137438786?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/WXsGe/~3/dF8QmOLttPc/basic-im-requirement-in-torrent-clients.html" title="Basic IM Requirement In Torrent Clients" /><author><name>Programmergamer</name><uri>http://www.blogger.com/profile/10837024763607943216</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="27" height="32" src="http://3.bp.blogspot.com/_5pfi5dIsjvs/S2w_aetHX9I/AAAAAAAAAB4/GWAs7ENd600/S220/IP.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://programmergamer.blogspot.com/2009/11/basic-im-requirement-in-torrent-clients.html</feedburner:origLink></entry><entry gd:etag="W/&quot;D0EHRnY_eSp7ImA9Wx5RFko.&quot;"><id>tag:blogger.com,1999:blog-6412421647806324225.post-4016778294334471192</id><published>2009-06-27T00:12:00.000-07:00</published><updated>2010-08-24T11:47:17.841-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-08-24T11:47:17.841-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="ntfs" /><category scheme="http://www.blogger.com/atom/ns#" term="migration" /><category scheme="http://www.blogger.com/atom/ns#" term="mandriva" /><category scheme="http://www.blogger.com/atom/ns#" term="linux" /><category scheme="http://www.blogger.com/atom/ns#" term="update" /><category scheme="http://www.blogger.com/atom/ns#" term="repository" /><category scheme="http://www.blogger.com/atom/ns#" term="ntfs-3g" /><category scheme="http://www.blogger.com/atom/ns#" term="applications" /><title>Adjusting to Mandriva Linux</title><content type="html">I did a clean install of Mandriva Linux (i586) powerpack 2008 yesterday on a separate 25GB partition (ext3 formatted), thereby dual booting with Windows Vista Home Premium.&lt;br /&gt;
&lt;br /&gt;
One of the early problems i faced was regarding writing data on NTFS formatted drives (i had 3 of them!). Thankfully Linux programmers have written out a library known as ntfs-3g to enable write support on the Linux kernel. Fetch the ntfs-3g through "Mandriva Linux Control Center", unmount the NTFS drive through disk drake, switch to "Expert mode", change the type of the drive to "NTFS-3G", uncheck ro (read-only) from options, and re-mount the drive for the changes to take place.&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://3.bp.blogspot.com/_5pfi5dIsjvs/SkXJIQ_ODeI/AAAAAAAAABA/dX6TbFlNQps/s1600-h/snapshot4.png" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5351904876035968482" src="http://3.bp.blogspot.com/_5pfi5dIsjvs/SkXJIQ_ODeI/AAAAAAAAABA/dX6TbFlNQps/s320/snapshot4.png" style="cursor: pointer; height: 240px; width: 320px;" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The same thing can be done through "Configuration Editor".&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Second thing was getting my windows applications to run so that i dont feel like i'm in a no-man's land :)&lt;br /&gt;
&lt;br /&gt;
The default "Software Management" tool was useful in itself but it is not a complete solution. I fetched software info's as well as their main updates from Online Repositories through Konsole. A useful website for this job is :- http://easyurpmi.zarb.org&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://4.bp.blogspot.com/_5pfi5dIsjvs/SkXLDXRT2OI/AAAAAAAAABI/VlKeN-u9iXA/s1600-h/snapshot2.png" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5351906990846367970" src="http://4.bp.blogspot.com/_5pfi5dIsjvs/SkXLDXRT2OI/AAAAAAAAABI/VlKeN-u9iXA/s320/snapshot2.png" style="cursor: pointer; height: 240px; width: 320px;" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The links to the repositories (which are infact Konsole commands) are provided by selecting the appropriate linux, its version as well as its architecture.&lt;br /&gt;
&lt;br /&gt;
To integrate those repositories into the "Software Management", the Konsole commands have to be executed as root.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://2.bp.blogspot.com/_5pfi5dIsjvs/SkXMeVblH8I/AAAAAAAAABQ/eUmb87VM1VM/s1600-h/snapshot3.png" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5351908553720668098" src="http://2.bp.blogspot.com/_5pfi5dIsjvs/SkXMeVblH8I/AAAAAAAAABQ/eUmb87VM1VM/s320/snapshot3.png" style="cursor: pointer; height: 240px; width: 320px;" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Next, i updated my system via "Mandriva Control Center". I had around a 1100 updates (now that figure seems a little big for my 256Kbps connection :) ). After the updation process is complete, switch back to "Software management". Applications are now updated and new ones are added.&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://1.bp.blogspot.com/_5pfi5dIsjvs/SkXWErsDGWI/AAAAAAAAABY/Tdcl-w-iqhM/s1600-h/snapshot5.png" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5351919108135000418" src="http://1.bp.blogspot.com/_5pfi5dIsjvs/SkXWErsDGWI/AAAAAAAAABY/Tdcl-w-iqhM/s320/snapshot5.png" style="cursor: pointer; height: 240px; width: 320px;" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
After doing this much, i felt somewhere near to being @ my home.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The one thing that surprised me in linux was its Konsole being case sensitive, as it is seen here while i was trying to install Nvidia Drivers for my 6200TC:-&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://3.bp.blogspot.com/_5pfi5dIsjvs/SkYKPabxd8I/AAAAAAAAABg/eP7nIfhJYbk/s1600-h/snapshot6.png" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5351976467086538690" src="http://3.bp.blogspot.com/_5pfi5dIsjvs/SkYKPabxd8I/AAAAAAAAABg/eP7nIfhJYbk/s320/snapshot6.png" style="cursor: pointer; height: 202px; width: 320px;" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Technorati Tags: &lt;a href="http://technorati.com/tag/mandriva"&gt;mandriva&lt;/a&gt;,  &lt;a href="http://technorati.com/tag/linux"&gt;linux&lt;/a&gt;, &lt;a href="http://technorati.com/tag/repository"&gt;repository&lt;/a&gt;,  &lt;a href="http://technorati.com/tag/ntfs"&gt;ntfs&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/WXsGe/~4/go6OsfBGrIE" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://programmergamer.blogspot.com/feeds/4016778294334471192/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://programmergamer.blogspot.com/2009/06/adding-windows-applications-to-linux.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6412421647806324225/posts/default/4016778294334471192?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6412421647806324225/posts/default/4016778294334471192?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/WXsGe/~3/go6OsfBGrIE/adding-windows-applications-to-linux.html" title="Adjusting to Mandriva Linux" /><author><name>Programmergamer</name><uri>http://www.blogger.com/profile/10837024763607943216</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="27" height="32" src="http://3.bp.blogspot.com/_5pfi5dIsjvs/S2w_aetHX9I/AAAAAAAAAB4/GWAs7ENd600/S220/IP.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/_5pfi5dIsjvs/SkXJIQ_ODeI/AAAAAAAAABA/dX6TbFlNQps/s72-c/snapshot4.png" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://programmergamer.blogspot.com/2009/06/adding-windows-applications-to-linux.html</feedburner:origLink></entry><entry gd:etag="W/&quot;D0IERn08cSp7ImA9Wx5RFko.&quot;"><id>tag:blogger.com,1999:blog-6412421647806324225.post-6008908905490770597</id><published>2009-06-16T23:36:00.000-07:00</published><updated>2010-08-24T11:45:07.379-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-08-24T11:45:07.379-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="custom" /><category scheme="http://www.blogger.com/atom/ns#" term="first book" /><category scheme="http://www.blogger.com/atom/ns#" term="first ebook" /><category scheme="http://www.blogger.com/atom/ns#" term="pc" /><category scheme="http://www.blogger.com/atom/ns#" term="tips" /><category scheme="http://www.blogger.com/atom/ns#" term="custom vista" /><category scheme="http://www.blogger.com/atom/ns#" term="techniques" /><category scheme="http://www.blogger.com/atom/ns#" term="guide" /><category scheme="http://www.blogger.com/atom/ns#" term="tweaks" /><category scheme="http://www.blogger.com/atom/ns#" term="SPEED UP" /><category scheme="http://www.blogger.com/atom/ns#" term="vista" /><category scheme="http://www.blogger.com/atom/ns#" term="advanced" /><category scheme="http://www.blogger.com/atom/ns#" term="book" /><title>My First Ebook!</title><content type="html">I've completed my first book named as "Speed Up Your PC: Advanced Techniques".&lt;br /&gt;
&lt;br /&gt;
I have tried my level best to put my computing experiences in it so that many users may benefit from it. Creation of a custom Operating System is the starting point of this ebook. Lots of time-saving tips are written out in detail. Some valuable softwares are also reviewed in it. Information about Online security, proxies, DNS servers etc is emphasized upon. The book is available for free at any of these file hosting servers:-&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://www.mediafire.com/?naygmn2zzdn"&gt;http://www.mediafire.com/?naygmn2zzdn&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://rapidshare.com/files/245437101/Speed_Up_Your_PC.rar"&gt;http://rapidshare.com/files/245437101/Speed_Up_Your_PC.rar&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Reader's response and feedback is always welcome. Leave comments on this blog or contact me via any of the methods mentioned in the book itself if u have any innovative ideas or suggestions regarding some improvements in the book!&lt;br /&gt;
Happy Reading!&lt;br /&gt;
&lt;br /&gt;
Technorati Tags: &lt;a href="http://technorati.com/tag/ebook"&gt;ebook&lt;/a&gt;,  &lt;a href="http://technorati.com/tag/windows+vista"&gt;windows vista&lt;/a&gt;, &lt;a href="http://technorati.com/tag/computing+tips"&gt;Computing Tips&lt;/a&gt;,  &lt;a href="http://technorati.com/tag/Techniques"&gt;Techniques&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/WXsGe/~4/whUG-URoKK4" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://programmergamer.blogspot.com/feeds/6008908905490770597/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://programmergamer.blogspot.com/2009/06/my-first-ebook.html#comment-form" title="2 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6412421647806324225/posts/default/6008908905490770597?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6412421647806324225/posts/default/6008908905490770597?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/WXsGe/~3/whUG-URoKK4/my-first-ebook.html" title="My First Ebook!" /><author><name>Programmergamer</name><uri>http://www.blogger.com/profile/10837024763607943216</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="27" height="32" src="http://3.bp.blogspot.com/_5pfi5dIsjvs/S2w_aetHX9I/AAAAAAAAAB4/GWAs7ENd600/S220/IP.jpg" /></author><thr:total>2</thr:total><feedburner:origLink>http://programmergamer.blogspot.com/2009/06/my-first-ebook.html</feedburner:origLink></entry><entry gd:etag="W/&quot;D0ACRHc7cCp7ImA9Wx5RFko.&quot;"><id>tag:blogger.com,1999:blog-6412421647806324225.post-966144599524435957</id><published>2009-04-04T15:07:00.001-07:00</published><updated>2010-08-24T11:49:25.908-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-08-24T11:49:25.908-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Windows Application" /><category scheme="http://www.blogger.com/atom/ns#" term="Web Searcher" /><title>My First Windows Application!</title><content type="html">It's a Web Searcher!&lt;br /&gt;
&lt;br /&gt;
U need to have .NET framework 3.5 installed along with windows installer 3.1 in order to run the application.....&lt;br /&gt;
&lt;br /&gt;
Here's the &lt;a href="http://www.mediafire.com/?s2wmijgr1y8"&gt;LINK&lt;/a&gt; for the software.&lt;br /&gt;
&lt;br /&gt;
Technorati Tags: &lt;a href="http://technorati.com/tag/searcher"&gt;Web Searcher&lt;/a&gt;,  &lt;a href="http://technorati.com/tag/mediafire"&gt;mediafire&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/WXsGe/~4/7D0Ug1OQ81A" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://programmergamer.blogspot.com/feeds/966144599524435957/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://programmergamer.blogspot.com/2009/04/my-first-windows-application.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6412421647806324225/posts/default/966144599524435957?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6412421647806324225/posts/default/966144599524435957?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/WXsGe/~3/7D0Ug1OQ81A/my-first-windows-application.html" title="My First Windows Application!" /><author><name>Programmergamer</name><uri>http://www.blogger.com/profile/10837024763607943216</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="27" height="32" src="http://3.bp.blogspot.com/_5pfi5dIsjvs/S2w_aetHX9I/AAAAAAAAAB4/GWAs7ENd600/S220/IP.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://programmergamer.blogspot.com/2009/04/my-first-windows-application.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CUcMQHwzfip7ImA9WxBSFko.&quot;"><id>tag:blogger.com,1999:blog-6412421647806324225.post-6788825132799322634</id><published>2009-04-04T15:05:00.000-07:00</published><updated>2009-12-24T08:44:41.286-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-12-24T08:44:41.286-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="India" /><category scheme="http://www.blogger.com/atom/ns#" term="ISSC" /><category scheme="http://www.blogger.com/atom/ns#" term="Thailand" /><category scheme="http://www.blogger.com/atom/ns#" term="Software" /><title>International Students Software Competition ( ISSC 2007) At Bangkok, Thailand</title><content type="html">I with my 2 friends( team of three) represented our nation at Bangkok in International Students Software Competition, which consisted of programming ( problem solving). We stood first at the All India Level after qualifying the state level. We programmed on Java, rest teams like Sri lanka used C++, Thailand folks themselves used Java, Taiwan team worked on C++ as well, etc. There were 2 rounds on two separate days, trials and finals, we stood fourth overall. Its a great pride to represent your motherland, that was the most amazing thing that we experienced. Rest details can also be found at &lt;a href="http://www.jaipuria.com/"&gt;this site&lt;/a&gt; in the achievements of last 6 years list. Some Pics of Bangkok of our trips taken by my taiwan friend, Danny, can be seen &lt;a href="http://www.flickr.com/photos/20131503@N07/sets/72157603497031253/"&gt;here&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/WXsGe/~4/qnQsvF8n4QE" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://programmergamer.blogspot.com/feeds/6788825132799322634/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://programmergamer.blogspot.com/2009/04/international-students-software.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6412421647806324225/posts/default/6788825132799322634?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6412421647806324225/posts/default/6788825132799322634?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/WXsGe/~3/qnQsvF8n4QE/international-students-software.html" title="International Students Software Competition ( ISSC 2007) At Bangkok, Thailand" /><author><name>Programmergamer</name><uri>http://www.blogger.com/profile/10837024763607943216</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="27" height="32" src="http://3.bp.blogspot.com/_5pfi5dIsjvs/S2w_aetHX9I/AAAAAAAAAB4/GWAs7ENd600/S220/IP.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://programmergamer.blogspot.com/2009/04/international-students-software.html</feedburner:origLink></entry></feed>
