Tuesday, 10 November 2015

How to logout from every account from your computer at "ONCE"??

Ever wondered if there is any tool which can make you logout from every account you sign in through your computer at "once" . No !!!
So this blog is for you guys !!!.

This site is called SUPERLOGOUT.
Here is how it looks



If you use multiple accounts and want to simplify the process just go to this site and you will be automatically get logout from your gmail,amazon,skype etc.

But Unluckily you will not get logout from your facebook account.Because it is not included.

 So chill!! and use logout option from your facebook account .Thats it!!!!...

Monday, 9 November 2015

How to make bootable USB drive????

There are many tools that are present to make bootable USB drive, so that you can boot your operating system through USB pendrives or make an live USB OS. But My favorite one is "RUFUS".

You can use "Rufus" to make installable media from bootable ISO's for Windows,linux,UEFI etc.

Now lets start making a USB bootable drive!!!!...

1. At first Go to the site  https://rufus.akeo.ie/ .




2. Scroll down and you will see a download option. Just download the latest version.


3.Now double Click on the downloaded file. You will see like this.




4.Now just Click on the DVD icon and browse the ISO file of your OS.The Click on "START".




5.After few minutes your USB bootable media will be Created.

Other tools which you can use for making USB bootable drive are

  1. WINtoFLASH(only WINDOWS)   https://wintoflash.com/home/en/
  2. UNIVERSAL USB INSTALLER(Only for LInux)    http://www.pendrivelinux.com/universal-usb-installer-easy-as-1-2-3/
  3. UNetbootin    https://unetbootin.github.io/ 

Thanks....

Sunday, 19 April 2015

Tutorials on Programming for microprocessor 8086

  1. Addition of two 8 BIT numbers:-

        MOV SI,2000h ---
             MOV DI,3000h
             MOV AL,[SI]
            INC SI
            MOV BL,[SI]
            ADD AL,BL
            MOV [DI],AL
            HLT

2.Subtraction of two 8 BIT numbers:-

            MOV SI,2000h ---
             MOV DI,3000h
             MOV AL,[SI]
            INC SI
            MOV BL,[SI]
            SUB AL,BL
            MOV [DI],AL
            HLT