Sunday 2 February 2014

Fix all Windows7 problems and errors with a single software

Many users after many days of installation of Operating System will be experiencing problems in the operation of their computers.Even windows7 fall into same category.

The problems might arise due to registry problems, installing toolbars that reduce performance and viruses,malwares that are changing system functionalities.

So,your operating system starts popping up many error messages.Many people will go for reinstalling of operating system.but it is not recommended unless it is the severe condition.

7QuickFix is the tiny software that enables you to solve most common problems with a click of single button.


The tool doesn't require any installation, so that means it is portable. Your Windows registry keys will not change and you can also place 7 Quick Fix on a removable device and run it on any computer.

You can also use this software if your computer is taking lot of time to shutdown or thumbnails are slowly displayed.

Happy Tweaking your system :)

Thank You :)

Saturday 1 February 2014

Make free calls from your computer to any mobile

Everyone of us make calls daily to our family members,friends and many other persons.

What if we could make free calls to everyone??Yes,you heard it correct only.FREE CALLS.

There is an online service that allows you to make calls for free just as we send SMS from way2sms.

It is NumberTank .

NumberTank allows you to make calls to any mobile(India,US,Canada) for free. You can make calls directly to the mobiles by simply entering the number.But the other party also should be signed up with NumberTank. Receiver need not be connected to internet.

Also there is no unnecessary processing done in connecting your call like the system calling the other person and keeping him in hold and calling you and connecting both of you as done in SITE2SMS.

Receiver receives the call just as you have called from your mobile.



All you need to do is signup with your email id and verify your mobile number. For signing up,you require invite from an existing customer or from the service itself.Existing customer invites are processed within seconds.

You will get 30 minutes of free talktime daily. And the unused minutes will be added upto the next day.
But at any point of time you can have only 100 minutes of talktime in your account.

All you need is your computer with a microphone connected to it!!! :)

Also one doesn't have to recharge their mobiles forever if they could manage with the free minutes of talktime offered by this.

People living out of INDIA can also signup for this and they can call their family members or friends directly without they having internet connection,asking them to come on to skype.  :)

Now that NumberTank has released their app for Android, they have shut down their website to make calls.

NUMBERTANK ANDROID APP

Please share the post with your friends.... :)

Happy Free Calling!!! :)

ThankYou :)

StumbleUpon's New Initiative 5by

StumbleUpon has come up with a new initiative of offering the best videos on the internet to stumble for you called 5by .

5by is the personalized,curated video application that lets you go through the best videos in your favorite category based on time and mood. You definitely become addicted to the videos... :) . It is awesome and free. :)

Now you can get loads of entertainment and lot of learning too!!!






Now this has come into Play Store and Itunes also.

5by on Desktop

DOWNLOAD FROM PLAYSTORE

DOWNLOAD FROM ITUNES

Thank You :)

Prank to Restart your Windows Computer repititively

We all know that we can shutdown or restart any computer by executing simple run commands.
But how would it be if we are going to use the same commands to do something unnatural altering your computer's performance.

We are going to use the run commands to play a prank on a computer to automatically shutdown after booting or restart after booting.

We achieve this by writing a simple batch file. A Batch file (filename.bat) is a file  containing instructions that are directly executed on command prompt. So we keep the instructions that we want to execute in a simple notepad file and going to save it with some file name. Now our work is to place the file into startup folder of your windows operating system.

Steps to follow:

  1. Open notepad
  2. copy and paste the follow the following code in bold letters
@echooff
shutdown -r -f -t 300 -c "Message"

In the above code -r stands for restarting, -f for force shutting down the computer, -t for time in seconds, -c for comments where in you can embed your own message to surprise your friend.

Instead of -r attribute, -s can be used to shutdown the computer.

Now save the file as shutdown.bat and place it in the startup folder of your computer. The items in startup items will be run automatically whenever the computer starts.

DOWNLOAD THE FILE FROM HERE

Startup item locations:

  • WINDOWS XP : C:\Documents and Settings\(user)\Start Menu\Programs\Startup
  • WINDOWS 7 & 8 : C:\Users\(User-Name)\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup

To remove that startup item you may have to go to same folder and delete it. So, be careful when giving the time attribute and give appropriate time so that you can navigate to that folder and remove it. Else you have to restart your computer in safe mode and remove that file.

Thank You :)

Thursday 23 January 2014

Improve Web Browsing Experience with OneTab for Chrome

We all browse internet everyday for exploring information and we go through a lot of websites and in addition we are logged into our social network accounts like Facebook , Google + .

After opening a no of tabs in our browser the memory used by it increases and the browser slows down. But actually we will be on a single tab any instance of time.

OneTab is an extension for chrome that groups all the opened tabs into a single tab in a list form. By this it reduces almost 95% of memory used by web-browser.

As tabs are grouped into a single page as list , no scripts will be running when in background. This also improves the performance of your system when it is resuming from sleep mode.

You can also share all the links as a webpage instead of copying and pasting each and every link !!!!!!

It is free and no signup is required. Your data is not sent anywhere. So you need not worry about privacy.


OneTab Extension for Chrome



Hope this post helps improving your browsing experience... :)

Thank You :)

Wednesday 22 January 2014

Euclidean Algorithm to compute GCD of 2 numbers

Euclidean Algorithm

Here we assume that a is greater than b

(a>b)

gcd_euclid(int a, int b)
{
         if( b is 0) return a
     
        else
            {
              set value of a as b
              set value of b as a modulo b
            }
}

When 2 prime no's are taken,GCD is usually 1 and it can be seen from below example.... 

  1. gcd_euclid(19,5)
  2. gcd_euclid(5,19%5)
  3. gcd_euclid(5,4)
  4. gcd_euclid(4,5%4)
  5. gcd_euclid(4,1)
  6. gcd_euclid(1,4%1)
  7. gcd_euclid(1,0)
return 1; //as b is 0.



GCD when 2 non prime no's are taken.....

  1. gcd_euclid(30,5)
  2. gcd_euclid(5,30%5)
  3. gcd_euclid(5,0)
return 5; // as b is 0


Programmatic Implementation:

int euclid(int a, int b)
{
   while (b!=0)
   {
       int temp = b;
       int b = a%b;
       int a = temp;
   }

return a;
}

Thank You :)

Thursday 26 December 2013

Bug in Windows Calculator

  


  • Open calculator. (win + r -> calc )
  • Take any number.
  • Find its square root. (  )
  • Subtract the result from obtained value.
  • Actually you have to get '0' as value,but you get some long number.





Thank You :)