Tag: General
Mobile phones could be charged by the power of speech
by Binod on Jun.09, 2011, under FuN, General, Technology
For mobile phone users, a flat battery or a lost charger are among the frustrations of modern life.
Now new research promises a way to recharge phones using nothing but the power of the human voice.
Electrical engineers have developed a new technique for turning sound into electricity, allowing a mobile to be powered up while its user holds a conversation.
The technology would also be able to harness background noise and even music to charge a phone while it is not in use.
However, there could be a downside to the innovation, if it gives people a new reason to shout into their phones as they attempt to squeeze in every extra bit of power they can.
Dr Sang-Woo Kim, who has been developing the design at the institute of nanotechnology at Sungkyunkwan University in Seoul, South Korea, said: “A number of approaches for scavenging energy from environments have been intensively explored.
“The sound that always exists in our everyday life and environments has been overlooked as a source. This motivated us to realise power generation by turning sound energy from speech, music or noise into electrical power.
“Sound power can be used for various novel applications including cellular phones that can be charged during conversations and sound-insulating walls near highways that generate electricity from the sound of passing vehicles.
“The latter development would have the additional benefit of reducing noise levels near highways by absorbing the sound energy of vehicles.”
The technology uses tiny strands of zinc oxide sandwiched between two electrodes. A sound absorbing pad on top vibrates when sound waves hit it, causing the tiny zinc oxide wires to compress and release. This movement generates an electrical current that can then be used to charge a battery.
A prototype of the technology was able to convert sound of around 100 decibels – the equivalent of noisy traffic – to generate 50 millivolts of electricity.
“This is not enough to charge a phone properly, but Dr Kim and his colleagues hope that by altering the material the wires are made from they will be able to produce more energy at lower sounds levels.
He said: “Our current output performance can be applied to various electronic devices with low-power consumption such as self-powered sensors and body-implantable tiny devices. We believe that we can realise more efficient sound-driven nanogenerators.”
Researchers and some manufacturers have already started looking at using ‘energy scavenging’ as a way of powering portable electronic devices.
Scientists have developed devices that can use the heartbeat to power MP3 players, while Nokia has filed a patent for a device which harvests energy from movement, much like a kinetic energy powered watch.
Source: http://www.telegraph.co.uk
Using XAMPP and IIS together
by Binod on May.23, 2011, under Technology, Tips & Tricks, Web Designing
Today I installed IIS in my windows, it worked…. OMG i just remembered i had installed XAMPP (the windows flavor of Apache, MySQL, Perl and PHP) as well and when i started running it the Apache Server couldn’t get started. When i looked for the issue i could see that IIS uses port 80 for its functioning so Apache of XAMPP couldn’t get started. I guess most of the Web Developers who needs to install both services might be facing this problem, As i did. Today i got a solution for that.
Snap Shots: This is a snapshot when i try to run apache, the service of Apache couldn’t get started. [IIS has already been installed and it doesn't allow to use port 80]
There are two ways to solve this:
-
Either change IIS (the harder way)
-
Change the Apache config (the easier way)
from both way you’ll achieve the same thing. Personally I went the Apache route and here’s how I did it (using XAMPP ).
Only one way Change the Default Port
By default IIS uses ports 80 and 443 for HTTP and HTTPS access respectively. By default, Apache also assumes these same settings. By altering two config files in Apache you can easily over-ride this:
Steps to go:
Firstly find xampp\apache\conf\httpd.conf
-
Find Listen :80 …. Change to 81 [this tells Apache to listen to all IP addresses on port 81]
-
Again find ServerName localhost:80 change it to 81
Secondly find xampp\apache\conf\extra\httpd-ssl.conf
-
Find Listen 443…. Change to 442 [This changes the SSL (HTTPS) port to 442 (or again, your port of choice).]
Snap Shot : I edit the two files as mentioned above.
Finally You are done….Enjoy Both Servers at the same time
The Service had been Started after editing 2 files.
NOTE: When You start the XAMPP in browser type : localhost:81