Skip to main content

Connect 2 Computers using USB to USB cable

A very easy way to connect two PCs is to use
a USB-USB cable. By connecting two PCs with a cable like this, you can transfer files from one PC to another, and even build a small network and share your Internet connection with a second PC.
The first thing you should be aware of is that there are several different kinds of USB-USB cables on the market. The one used to connect two PCs is called “bridged” (or “USB networking cable”), because it has a small electronic circuit in the middle allowing the two PCs to talk to each other.

Cable without a bridge connector are called A/A USB cables and cannot be used to connect two PCs. In fact, if you use an A/A USB cable, you can burn the USB ports of your computers or even their power supplies. So, these A/A USB cables are completely useless. A/B USB cables are used to connect your computer to peripherals such as printers and scanners, so they also won’t meet your needs.

As for speed, the bridge chip can be USB 2.0 (480 Mbps). The standard Ethernet network works at 100 MBps, so the USB 2.0 cable will provide a transfer rate almost 5 times higher than a standard network connection.

Comments

Popular posts from this blog

Recipe for chaos in an XP team

Our team failed! We failed in delivering value to the client, value to our users as well as we failed in showing the benefits of XP - eXtreme Programming to not only other teams but our managers as well. So here I am listing some of the factors which I think lead to the fall of the project, the practices and eventually the team itself. We were quite fine an year ago. We used to pair, practice TDD, interview users frequently and release awesome features to production almost weekly. I would not go to the extent of saying we were living in perfect times, since we faced some very common problems - Some people felt that TDD made them slow. Management kept questioning whether pair programming is really "fast enough" and not slowing us down. This gave birth to some "Duct Tape Programmers" in the team. (That's a real term! Google it.) "The Duct Tape Programmer is someone who is able to cobble together software that solves the immediate problem, but witho...

Re-usability vs Readability

Recently while developing some features for a client's React app I faced this dilemma: What to prefer over another - Readability or Re-usability. My first reaction to it was what any other great developer in the history of web applications would have done - "Google it out". I found some good articles and blogs around it but still I had my doubts, since at many such places the examples used were heavily dependent on the individual's situation. So, my next move was to consult a peer or another dev from the community whom I trust, and who is better to trust then random people on twitter! I would admit that I did not expect some of those answers but it really taught me one most important thing in software development - "Everything is situational". In other words, I was introduced to "anti-patterns" in real life! Good read for the difference between patterns and anti-patterns . <*Insert a funny gif related to anti-patterns here(if you find one...

Download Youtube videos right from your Terminal or Command Prompt

I am sure that everyone of you had a moment in your life where you googled for "Download YouTube Videos" and may have got yourself victimized by some trials which become a pain when they start "requesting" for money. Right? Here I am referring a nice and easy tool to download those videos - youtube-dl. Its an open source tool with a very good team at support at their IRC server. First download youtube-dl: sudo apt-get install youtube-dl OR download the .exe counterpart for windows from  http://rg3.github.io/youtube-dl/ Then go to YouTube and grab the address of the video that you want. Once copied, type this in terminal or cmd to start downloading: youtube-dl  (paste the address here) Example: youtube-dl  https://www.youtube.com/watch?v=AbC12Aetc After it's finished downloading, check your Home folder, it should be there. The file name is usually the same as the address i.e. V2y92H2kiIM.mp4 By adding the -f option after the link in terminal or ...