Baba Ramdev Interview amid lockdown

Read More »

How to make your computer press a key every second or in any interval you want.


Did you ever had to press a key in every couple of seconds, or every few minutes? May be during playing a video game or playing an online game. Here is how you can make your computer do it automatically with just a simple script using AutoHotKey.

First you need to download AutoHotKey, to download AutoHotKey click here.

Once you are done downloading, Right click anywhere on your pc and go to New and select AutoHotKey Script. Name the file and edit it with notepad/notepad++ or any other editor.

Here you will have to write a simple script which will make your computer to press a key every X seconds, X being your defined value.

 For example, 

I have made a script to play the Hurdles2012 google doodle game.

#Persistent
SetTimer, PressTheKey, 1
Return

PressTheKey:
Send, {Left}
Send, {Right}
Return

Escape::
ExitApp
Return 



 Here on line number 2 of the program , "1"  is in milliseconds. You can change the value to any other numeric value and that will be in milliseconds too. For example, you want your computer to press any key every 5 minutes then in place of one, you will have to write  3,00,000 miliseconds (2minutes*60seconds*1000milliseconds= 3,00,000 milliseconds).

 Here Left and Right are the keys of the keyboard which I wanted to be pressed automatically every millisecond.
And Escape will be used to stop the script.

You can also visit the AutoHotKey documentation page for more details and names of the different keys.




Read More »

How to Change the Format of Dates and Times in Windows



Just go through the link to get the description with screenshots on "How to Change the Format of Dates and Times in Windows"

http://www.howtogeek.com/247141/how-to-change-the-format-of-dates-and-times-in-windows/



Read More »

Fix problems that programs cannot be installed or uninstalled

Automatically repair issues that block program installation or removal because of corrupted registry keys. 

Go to this link and click run now , run it on your device. And the problem will be solved. 

Read More »

Add All Friends To Facebook Group By Single Click - 2015

 

 

Steps To Add All Friends in Facebook Groups

1) First of all Log in into that whose friends you want to invite.
           
2) Then open your Facebook Group in which you want to add friends. 

3) Now Click F12 button to open debugger and then select console box.

4) Now copy script from below given button. 


5) Press enter and process will start for sending invitation.
Note:- Don't worry about anything this script is totally safe. In case you have too many friends then you may

get blocked for using groups or even your account may get locked. So be careful.


Read More »