Tuesday, 29 December 2015

Tiles game in android+code


Tiles game in android+code

software requirements:

1.Eclipse
2.Java

Import the project into the eclipse and start editing.

Game features:
1.Action game
2.High score
3.speed increase
4.Different map

Download game code : Download

Demo apps: https://play.google.com/store/apps/details?id=com.initedit.opps_wrong_tab

Sunday, 1 November 2015

Blink keyboard light - Disco light

As you know there is 3 LED in every keyboard.

1. NUM LOCK
2.CAPS LOCK
3.SCROLL LOCK

Now we are gonna make this light blink using WScript.

Note: before running this program you should know how to close the program.

To close the program open task manager(Ctrl+Alt+Del) and kill wscript.exe

1. Open notepad and write this code.

Set WEBCHILLER =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
WEBCHILLER.sendkeys "{CAPSLOCK}"
WEBCHILLER.sendkeys "{NUMLOCK}"
WEBCHILLER.sendkeys "{SCROLLLOCK}"
loop


2. Save the file as “blink.vbs”

3. Open blink.vps file and see your keyboard LED light.

Wednesday, 7 October 2015

How to see password in password textbox

How to see password in password Textbox

When we type password in any password box it's get encrypted and you will see only ****.
 It is very easy just change the text Input type from password to text.

1. Right click on password text box and go to Inspect element.


2. At below(sometimes right) you will see Inspect tab. <input> Search for type="passoword" .



3. Change input type from type="passoword" to type="text" ..


4. Press Enter key.