Prerequisites:
- LAN cards on both the machines – All computers these days have one.
- RJ45 connectors – You can get one from the market, quite inexpensive.
- A basic knowledge of computers, just enough to understand the instructions below.
Here is what you can do step by step to connect two computers with each other:
- Insert Cables: Plug in the cable – having RJ45 ends at both the ends – to the two laptops.
- Change WORKGROUP: Change the WORKGROUP of one of the machines. Here is how you can do that. Right click on My Computer, select Properties and chose Computer Name tab. Click Change button to change the WORKGROUP name. Make sure it should be exactly as the one on other machine.
- LAN Properties: Now go to My Network Places > Click on View Network connections > Right click on "Local Area Connections" and select properties.
- IP Properties: On the next window, scroll down and highlight "Internet Protocol (TCP/IP)". Click Properties.
- Assign static IPs: Now see the screenshot below. For one of the machines, write down the IP address, Subnet Mask and Preferred DNS Server exactly as shown below.
For other machine, keep all the other numerals same except the IP address, change that to 192.168.2.50. - Share Drives or Folders on either of the machines: If sharing drives, right click on the drive name, hit “sharing and security” and under Sharing tab click on “If you understand the risk but still want to share the root of the drive, click here”. As soon as you click the link he same tab will show you a section “Network sharing and security”. Select share this folder on the network and Allow network user to change my files.
- Run and Ping: Go to Start and hit Run. Enter \\192.168.2.50 on the machine where you have assigned the IP 192.168.2.51 OR vice versa. You should be able to see the shared drive/folder of the other machine.
Enjoy!
PS: The steps above are written keeping in mind Windows XP but should be applicable to Win Vista/Windows 7 with some minor modifications.
PPS: Just in case even after doing these steps you are not able to connect, try to disable firewalls of both the computers. (Control Panel > Security Center > Windows Firewall)
Want to get an update as soon as we publish new article? I recommend you to subscribe via RSS Feed. You can also subscribe by email and have new articles sent directly to your inbox. It's absolutely free!
A firewall is essential when it comes to preventing malicious software and hackers from gaining access to your computer. With Windows 7, you can actually fine-tune your firewall settings to match your daily usage while still keep your computer well protected. To access the advanced settings and help you get started right away, follow these next few steps.
First of all, you need to disable your Windows firewall to gain access to recommended settings. To do this, go to Control Panel> System and Security > Windows Firewall and then click on the “Change notification settings” link on the left panel. Disable both private and public network firewall and click apply to continue. At the Windows Firewall control panel page you see after clicking OK, you will notice a new button labeled “Use recommended settings” — this is what we are after — so go ahead and click the button.
A popup will ask for your confirmation, and you can safely click Yes to continue. Windows will analyze your current computer state, along with installed applications, and determine the right firewall settings for your computer. After the process is completed, you can continue with fine-tuning the firewall settings to suit your needs.
To access the advanced settings for Windows 7’s firewall, click “Advanced Settings” on the left panel of the Windows Firewall control panel page. You will see a new page with Inbound Rules, Outbound Rules, Connection Security Rules, and Monitoring links on the left panel. You can disable available rules or create new ones — for Inbound and Outbound Rules, this is essentially important and allows you to set the firewall to work according to your needs — and manage monitoring preferences from here.

Not all web developers understand search engine optimization. The process is actually easy yet complicated at the same time, but these 3 steps I’m about to tell you will get you started right away.
1. Fill Your Site With Quality Unique Contents
The best thing you can do to prepare your site for search engine optimization is to fill your site with quality contents. Write articles, how-to’s, and other informational contents and post them at your site. Not only you will optimize your site for search engine optimization purposes, you will also entertain visitors and keep them coming back. If your site is an online store, you can still add a blog that discuss products you are selling as part of your site. Remember, the contents have to be unique; if you don’t have time to write them hire freelance content writers to do the job for you instead of going to online article directories and copy stuffs.
2. Update, Update, Update!
One of the key to successful SEO campaign is regular site update. Yes, you still have to cope with maintaining updates according to sets of keywords you are using to keep your site optimized, but you should update regularly. Again, this simple step can also be done with the help of freelancers if you don’t have the time or expertise to do it yourself, and it will keep your visitors entertained while your search engine rankings improve.
3. Use Keyword Phrases In Your Title Tag
This may sounds simple, but pages with keyword phrases in their title tags will enjoy better search engine rankings. Don’t push your efforts too far by spreading keywords all over the content or page; just add it as part of the title tag and present some in the actual content. Don’t worry about keyword placements too much, and keep your contents — and pages — readable to visitors.
Simple, right? Go right ahead and optimize your site for search engine crawlers.
List based drop down menu is one of the most popular site ornaments, and a lot of sites are using it as their primary navigation tool. If you want to use list based menu on your site as well, follow this tutorial I’m about to present to you and create your own with CSS/HTML in a matter of minutes.
Let us start with making the list to work with. Use the following HTML code as your guide.
<div id=”nav”>
<ul>
<li class=”first”><a href=”#”>Home</a></li>
<li><a href=”#”>Blog</a></li>
<li><a href=”#”>Services</a>
<ul>
<li><a href=”#”>SEO</a></li>
<li><a href=”#”>Internet Marketing</a></li>
<li><a href=”#”>Web Contents</a></li>
</ul>
</li>
<li><a href=”#”>Contact Us</a></li>
</ul>
</div>
You should notice the “nav” id that will be used in your CSS codes as identifier. Let us continue with setting up some basic CSS codes for your menu. First, set up the basics for #nav to lay down some ground formatting for your list based menu.
*{ margin:0px; padding: 0px; }
#nav {
font-family: arial, sans-serif;
position: relative;
width: 390px;
height:56px;
font-size:14px;
color:#999;
margin: 0 auto;
}
#nav ul {
list-style-type: none;
}
Add the following piece of CSS code to make your list based menu float. This will make integrating the menu to your site a lot easier.
#nav ul li {
float: left
position: relative;
}
Add the following code to your CSS to make the list clickable as a whole — instead of just the text — and add separating borders to the design. Of course, you can change colors and border settings used.
#nav ul li a {
text-align: center;
border-right:1px solid #e9e9e9;
padding:20px;
display:block;
text-decoration:none;
color:#999;
}
The following CSS codes will allow you to format child nodes properly and create a smooth dropdown effect.
#nav ul li ul {
display: none
}
#nav ul li:hover ul {
display: block;
position: absolute;
}
Last but not least, add the following code to your CSS to set the hover state of the nodes.
#nav ul li:hover ul li a {
display:block;
background:#12aeef;
color:#ffffff;
width: 110px;
text-align: center;
border-bottom: 1px solid #f2f2f2;
border-right: none;
}
#nav ul li:hover ul li a:hover {
background:#6dc7ec;
color:#fff;
}
When it comes to integrating the menu to your site, all you have to do is insert the CSS codes into your CSS file and add the HTML list code wherever on the page within a container. The new list based dropdown menu will be a nice addition to your already intuitive design.

A lot of Mac users choose to install Snow Leopard from scratch; this is very good if you are thinking about starting fresh, because you will surely notice the performance difference of a clean install. However, upgrading from the previous OS X version is not bad at all. You can save a lot of time installing Snow Leopard, and you will still be able to enjoy new features and improved performance.
Upgrading to Snow Leopard is actually pretty easy. All you have to do is insert the upgrade disc and hit install. Snow Leopard will select your primary drive, and all you have to do next is to wait for about 45-90 minutes for the upgrade process to be completed. What you need to do before upgrading is what’s important. Why, because there are apps that work fine with Leopard but won’t with Snow Leopard. A crucial step is to make sure you delete iStat Menu and system preferences related applications before installing Snow Leopard; if you skip this step, you will see that Snow Leopard takes forever to boot up and System Preferences will cause errors.
It will also be best to check other installed applications for compatibility issues. The best way to do this is to use SnowChecker to help you. You will be able to spot incompatible applications instantly and check if updates are available; you don’t have to remove them before upgrading to Snow Leopard, but if you see too many incompatible applications then it would be best to wait for updates for the applications before upgrading to Snow Leopard.
Microsoft has just released their latest installment of Windows operating systems. Windows 7, the latest version to carry the long legacy of this OS, is great. It is faster and more user friendly than Vista, and a lot of critiques predict that it will be the best yet. Still, there are some things you can do to improve the overall user experiences using Windows 7.
Adobe Reader Fix
The first thing you would notice about Windows 7 (and, in this case, Internet Explorer 8 ) is its slight incompatibility with Adobe Reader. Some PDFs just won’t open and an error message will pop up. Of course a fix will be out soon, but you can simply solve this problem by telling Adobe Reader not to display PDFs in the browser. Go to Edit > Preferences > Internet, and under the Web Browser Options box deselect the “Display PDF in Browser”. You will have no problem at all opening PDFs from IE8 now.

Windows 7 Control Panel
Control Panel Applets
By default, Windows 7 displays Control Panel items in categories. You can adjust it to complete view by clicking the “All Control Panel Items” button you find at the bottom of the category list. You will have easier access to options and features without having to figure out which category the control you are looking for falls into.
Aero Snap: Do You Really Need Them?
Yes, you need to figure out whether Aero Snap works for you. I personally think this feature is not helping me — I move windows around a lot and I often find my application window getting snapped — so I decided to disable it. If you think about disabling them as well, go to Control Panel > Ease of Access Center, choose Make the Mouse Easier to Use and tick the “Prevent Windows From Being Automatically Arranged When Moved To The Edge Of The Screen” check box before clicking OK.

User Access Control
Windows 7 UAC
Yes, a lot of you are complaining about the User Access Control pop-ups and choose to disable this feature. I find that selecting the option one step higher than completely disabling it (see the picture) is the best option, because your Windows 7 will still be protected but you will not be annoyed by constant pop-ups.
There are lots of things you can do to tweak and personalize your Windows 7, and we will discuss them further soon.
So you have accumulated hundreds (or even thousands?) of Google Toolbar bookmarks over the years and now want to delete the
m all. Well, Google provides a way but for some reason it is undocumented. A very intuitive option should be the Bookmarks menu option of the Google Toolbar but the delete all option is not available there.
Here is a step-by-step procedure of how you can delete all bookmarks from Google at a click of a button:
- Go to Google Bookmarks
- Scroll down. On the left hand side you will see Delete all link.
- Now you know what to do. Enjoy.

A recent post on DBT made me think about my own ‘disaster recovery plans’. I wanted to do this from a long time and had this running at the back of my mind but never took it seriously, partly because I couldn’t find any good synching utilities. Till today I take backup of computer storage in my Ipod Classic 80GB (at irregular intervals) manually and a monthly back up of my websites files and database in my machine.
Now that there was someone to remind me, I started my search on the Big G and came across this utility – Microsoft Synch Toy.
It can help you in saving a lot of time synching between different external hard disks and your machine’s hard disk drive. The external hard disk could also be a hard disk enabled Ipod classic. Earlier when I didn’t have such utility I would first delete the old backup folder from Ipod and then transfer the required folder from my machine. This used to consume a lot of time since my folder ranges around 35 GB.
Now with Microsoft Synch Toy, you need not to do the mundane deletion-transfer task. You just need to select the folders to be synched in the machine and disk drive. While synching the first time, it will consume some time but next time onwards it would happen in a jiffy (unless you make some big changes).
Before synching make sure to click on ‘Preview All’ button to check which files Synch toy has recognized for synching. In case you want to exclude a particular file you can simply uncheck it from preview window.
I sometimes wonder, is there any area of software world that Microsoft has left untouched?
Knowledge of the English language is essential to extensively tap into various resources on the internet and books etc. For someone who isn’t very well versed with the English language, there are a large number of websites that help reach a comfortable position in the use of the language. Chief among them are Yappr and VerbaLearn. If you are a blogger, having English as a 2nd language, these sites can help you hone your skills.
Yappr.com focuses on providing an effective learning atmosphere online by using multimedia for their tutoring purposes. Tutorial videos available on Yappr are sorted
into categories based on the most popular videos, highest rated videos etc. Subtitles are included in the videos to ensure that a person learning English understands the exact words being spoken in the video. Such a method of simultaneous listening and reading text, one can easily understand the context in which certain words have to be used.
Yappr also includes videos which have subtitles in Spanish, French and Korean etc. This provides for an inclusive approach towards learning English. A dedicated bulletin board where users can easily log in and chat with fellow learners and share information and also help each other is also provided. Watch the guided tour to learn more about Yappr.
Along the lines of Yappr, VerbaLearn.com too offers help to non native English speakers to learn the English language. The approach however is slightly different. While the former makes use of videos and subtitles, the latter takes an exercise based approach where there are a large number of interesting features such as games, quizzes etc that make learning a new language a lot more fun. 
VerbaLearn offers a personalized StudyList wherein people learning English can streamline their efforts by making a record of their shortcomings. The mistakes made while attempting any of the exercises are automatically added to the StudyList and thus the person learning the language can focus a lot more on the mistakes made rather than having to track back manually to analyze the same.
VerbaLearn also offers an option to save the StudyList in an MP3 format. This way, one can easily keep track and pay a lot more attention to the mistakes made. Since all the items on the StudyList are automatically synchronized, one can even view the words on their homepage for a quick revision. Such a facility also helps people in their efforts to crack tests such as SAT or GRE. Check this demo video from VerbaLearn.
We have often been culprits of handling our electronic devices without the necessary amount of care. Some of us despite being careful end up dropping or manage to land a scratch or two on our favorite device. It is to save our devices from such undesired events a product called Cliphanger is widely in use.
Cliphanger offers a line of products which allow electronic devices such as cell phones, Handhelds, PDA’s etc to be held securely by attaching these to other objects. Cliphanger binds itself with the electronic device by means of an industrial adhesive affixed to the device or by a screw and nut procedure. Even though, it may seem to be cumbersome, it is absolutely easy to use. The device can be easily detached from Cliphanger with the slightest of efforts.

Cliphanger also be used to hang the device on a peg or a hook. Since the free end of the product is rather flexible, it can be used to attach onto straps or loops also. Thus in effect, Cliphanger is a simple unit which manages to stay with the device for convenience without any bulk.
Since the launch of Cliphanger, the popularity of the product has increased tremendously, so much so that other companies have gone to the extent copying the features of Cliphanger and are selling them under their respective brand names. Needless to say, the quality of the product offered by the original designer and manufacturer far exceeds those of the copied versions available. Apart from these features, the customers of Cliphanger also get dedicated customer service with products tailored to their needs.
In an attempt to reduce the chances of local dealers cheating customers by pushing forward the cheaper, lower quality fake versions of the product, Cliphanger is currently available in only select retail outlets. Customers are also encouraged to order the product via the Cliphanger website or place their orders by calling on the numbers specified on the website.
PS: Use the coupon code PARADE during check-out to get 15% discount.
Go to ClipHanger






