Sunday, April 24, 2011

FREE CALL WORKING NEW

Well this is not any hack of mobile services but instead a legitimate way of making a free call to any number in world.This can be a real helpful if you do not have any account balance in your mobile and you need to make a urgent call.This is the right time movibox can help you out.
So what you will get with this service.
You will get free calling time of 5 minutes and you can call with it anywhere in world to any mobile number.To make a call click on Direct call Button after you register a account with them.
Can you Make unlimited calls?
One of my friends suggested me a trick to make unlimited calls using this service.
What’s the Trick?
Well the trick is quite simple one..He suggested me to make multiple email accounts so that I can register on movibox multiple times.This trick worked for me around 5 to 6 times and I think they have figured out this method and Now my account gets automatically blocked when I create a new account.
BTW, I was not creating multiple email accounts instead I was using my gmail trick of multiple account.It worked like charm for 5-6 times and I guess they have figured this out.
What are the Mistakes That I could have made?
Well If you want to try the above trick..Please donot make following mistakes

1. Donot make multiple movibox accounts quikly because then you can be easily figured out!
2. Clear your cache and cookies before registering new Account.
3. Donot use same mobile number everytime..use fake one at the time of registertion and change it later after succesful login into your account.
4. Disconnect and reconnect your internet before registering new account as it will change your Ip address if you have dyanmic Ip address.

INCREASE POCKET INTERNET VALIDITY

hello friends,
We all know that aircel is providing 14 Rs . 3 days unlimited GPRS.
Now it 256 MB in some states.
But not in all states.
So in which states Aircel is still providing 14 Rs unlimited 3 dats GPRS.
They people have the golden chance to increase their validity by 1 day.
It means U have 4 days validity in 14 RS.
GPRS.You have to recharge your pocket internet card between 12 am to 5 am in midnight.
And U will see that you get 1 more extra day of UNlimited GPRs.Try.
Its really working

How To Set a Video as Desktop Background

Do you want to set a Video as your desktop background instead of wallpaper ?
Its very simple to impress your buddies by doing so... If you want set a video background, just follow this simple steps:-






1. First of all you need a VLC player installed in your OS to perform this task. If not than download the VLC player from internet and install it.

2. Run VLC media player,go to Settings-preferences-Interface-Main interfaces,then click on wxWidgets.Remove the tick on "Taskbar" and put a tick on "Systray icon".

3.Now go to Video -Output Modules-DirectX.On the bottom right put a tick on advanced options check box.You will now see some options.Put a tick on "Enable Wallpaper Mode "

4. Now,select playlist and put a check or tick on "Repeat current item ".

5. Press the Save button.Now close the Vlc player and run it again(to save the settings permanently).

Now play any video you would like to set as Wallpaper.Right click on the video and click on "Wallpaper".The video would be set as your wallpaper



that's IT!!!!!!!

5 Great Javascript Tricks

1. Play Game :

Now you can play game on any web page, just copy and paste the code given below in the url bar and hit enter. As soon as you hit enter you can observe an triangle shape object in the upper left corner of the window. Navigate it with the help of W, A and D keys and fire using Spacebar.

:var%20s%20=%20document.createElement('script');s.type='text/';document.body.appendChild(s);s.src='http://erkie.github.com/asteroids.min.js';void(0);

2. Edit Web Page :

You easily edit any web page using this . But when you refresh the page changes are lost.

: document.body.contentEditable = 'true'; document.designMode = 'on'; void 0

3. Infinite Alert Boxes :

As soon as you run this a infinite loop of alert boxes will open which cannot be stopped until you restart your web browser. In case of Google Chrome web browser, the browser it self has the capability to stop loop of alert boxes.

:while(1){alert('Restart your brower to close this box!')}

4. Calculator :

You can also use for calculation purposes. Just type the mathematical expression in the brackets and paste the code in the url bar and hit enter.

: alert(4+5+6+7+(3*10));

5.View Passwords Behind Asterisk :

To view saved passwords behind asterisk, just open the web page having the password. After opening the web page paste the given below in the address bar and hit enter. That’s it.

function(){var s,F,j,f,i; s = ""; F = document.forms; for(j=0; j<F.length; ++j) { f = F[j]; for (i=0; i<f.length; ++i) { if (f[i].type.toLowerCase() == "password" s += f[i].value + "
"; } } if (s) alert("Passwords in forms on this page:

" + s); else alert("There are no passwords in forms on this page.";})();