PS: There are poeple who say that Cisco now sells furniture also. Yes, they say that you need special type of furniture and Cisco sells it as a bundle along with telepresence. (I didnt read this from any trustable source).
Sunday, March 9, 2008
Cisco's new telepresence systems
PS: There are poeple who say that Cisco now sells furniture also. Yes, they say that you need special type of furniture and Cisco sells it as a bundle along with telepresence. (I didnt read this from any trustable source).
Wireless Power Transmission
It seems to me that our sons or grandsons would see efficient wire-free transmission of electricity. I read couple of articles
related to this topic recently and got astonished after knowing what MIT has achieved few months ago.
MIT team experimentally demonstrated wireless power transfer, potentially useful for powering cell phones, gaming devices, hand held devices, PDAs, laptops without power cords. MIT researchers were able to light a 60W light bulb that is seven feet away; there was no physical connection! The MIT team have christened their technique, WiTricity.
The MIT design consists of two copper coils. One, attached to the power source, is the sending unit. It fills the space around it with a magnetic field oscillating at a particular frequency. The second copper coil is designed to resonate with that oscillating magnetic field. A copper coil within an oscillating magnetic field generates a current, enough, in MIT's case, to power a light bulb.
Do you think its safe to live in this type of magnetic field?
Sunday, December 2, 2007
IndLinux - A computer for Indians
There are many companies that are providing proprietary software solutions for Indian languages (including Microsoft). But IndLinux is a project started by Prakash Advani and Venkatesh Hariharan in Dec 1999, that localizes tools used for Linux and other free software environments into Indian languages.
Currently there are teams for Assamese, Bengali, Gujarati, Hindi, Kannada, Malayalam, Marathi, Oriaya, Punjabi, Tamil and Telugu. The task of localization involves writing I/O modules, development of fonts, kernel enablement, word translation etc., The project always looks for volunteers to help them. Are you one of them? then go here.
For more details on IndLinux project visit: http://indlinux.org/
Saturday, November 24, 2007
Are there any Indian software product companies?
What are Indian best tech companies? Infosys, TCS, Wipro, Satyam and HCL. How many of these tech companies influenced the technology world? Answer is none.
The evident difference between these companies is that the former are service companies and later are mainly product companies. I am not undermining any Indian IT services companies. They achieved a lot so far. They helped build an Indian brand, brought global work cultures, introduced corporate governance. They are globally successful companies. But my point is they are not innovating enough.
Well, some of you might be wondering, what is the difference between service company and product company. Service company sells service. It creates software that is for a specific situation with relatively low level of leverage and reuse. Product company builds products that are useful for wide range of customers.
I agree that there are few software product companies in
But product companies are risky (normally only 4% succeed). Product companies need a higher level of innovation, higher technical abilities. But bigger risks always leads to bigger rewards.
Saturday, November 17, 2007
GPS navigation launched in India
Global Positioning System (GPS) is a system that communicates with satellite to trace the location and position of vehicles on earth (This technology is widely used in mobile phones also).
How is it useful in cars?
A GPS enabled simple, smart and sleek gadget can be mounted on a car that determines your current location. This gadget accepts any destination and the navigator in the gadget will guide you, turn-by-turn, with graphical map instructions supported by voice prompts. Search for points of interest (nearest ATM, nearest shopping centre, nearest petrol pump, nearest attraction etc.,) will be available.
Where is it available in India?
MapmyIndia Navigator is currently available in two hardware models: Delphi and AMAX. These devices comes with pre-loaded maps that give complete coverage of streets and points of interest in 18 major cities.
"MapmyIndia Navigator" is currently available with car accessory and consumer electronics dealers in major cities. It is also available online via Indiatimes and MapmyIndia.com.
Want to know how it looks?
How much does it cost?
Techtree reported that in Delhi, the device costs Rs 21,000 while in other states, it comes for Rs 22,000.
Indiatimes is showing price range as Rs. 16000-19000 for online buying.
Is it worth in India?
In countries like USA, where there are names for each road, number for each block (building) the GPS gadget may be most reliable, intuitive and accurate. I doubt how much this will be useful in India, where roads dont have names. Even there are names for some roads, they change if government changes. Also, in India wherever you are, there are local people (or) auto-wallah who can tell you the best way to reach certain destination. I know most of us prefer that way, because roads become unusable or change (two-way to one-way) frequently in India and only local people will know better.
If you are a gadget savvy and have a car, tryout one.
courtesy: techtree, mapmyindia
Sunday, November 11, 2007
Forgot Linux ‘root’ password? How to reset?
This is a common question asked by people especially if they didn’t boot their computer (with Linux) for a while. Here I am giving a way on how to reset root password from a Linux system.
Please note that you can not perform this remotely. You must be physically at the computer.
- reboot the system
- When you first start the computer, the GRUB screen appears. Select Linux that you want to boot into, but press the ‘e’ key instead of ‘Enter’ (to stop the grub).

- Hit ‘e’ again and you will go to different screen
- Select ‘kernel’ as choice, and hit ‘e’ on your key board.
- Type ‘single’ (or 1 in some versions) to enter ‘single user’ mode and then enter ‘b’ to boot. ( now your system is in single user mode as root)
- Now you can change the root password by using ‘passwd’ command
Wednesday, November 7, 2007
DNA Computing - The future of computing
Instead of traditional silicon based computing, DNA computing uses DNA molecules that has the potential to perform calculations many times faster than the worlds fastest computer. Also DNA computers will be capable of storing billions of times more data than the traditional PC.
The computing capability of DNA is first demonstarted by Leonard Adleman by solving the famous traveling salesman problem.
So is the silicon computer gone? No. The DNA computer may be able to solve NP-Hard problems efficiently , but the PCs (and traditional silicon based computers) are most practical and can let you play games and browse Internet!!!
Exited?? Want to know more about DNA computing?
Wikipedia
How Stuff Works
How to sleep using select() call
/*
* sleepms(): sleep (msecs granularity) using select.
*/
int sleepms(int msecs)
{
struct timeval timeout;
if(msecs == 0)
{
return 0;
}
timeout.tv_sec = msecs/1000; /* in secs */
timeout.tv_usec = (msecs % 1000) * 1000; /* in micro secs */
if((select(0,NULL,NULL,NULL,&timeout))==-1)
{
perror("select failed\n");
return -1;
}
return 0;
} /* sleepms()*/