The power of C programming language, everyone knows!
You can make a program for any use C.

Here is a short example to make a program to create infinite number of folder in its current directory and also a program to overcome it -i.e- recursive deleter, which will delete everyting from its directory.

So, lets start making program that will create the infinite number of folder.
And now, a program which will remove these infinite folders in a second.
  • I've created and compiled the programs to do so. Download the zip from github.
  • Extract it to a directory.



  • Now copy the run and exec folder to the place where you want to do experiment. Say 'Desktop'.
  • NOTE: Copy run and exec both at Desktop.



  • Run the vfolder using terminal or double clicking on it.
  • As soon you run, it will keep creating infinite no of folder in run directory until you press ctrl+c or ctrl+z
Press CTRL+Z to stop the process or you will junk your pc.


  • Now find the vremove file, and double click on it.
  • It will clean everything in that run directory including itself.
Ya! You played well.
You have the code of this program in cpf directory.

Remember, don't use this script to junk any pc!
Wondered to hear, chess on fb.
Ya! You can now play chess with your friend in a private conversation or in a group chat.

To start and play the game, follow these steps:
  • To start game, type @fbchess play in any conversation with whom you want to play and send.
  • It will start the game with random color for you.
  • To start with your own color choice, type @fbchess play white to chose white.
  • In the game, K means king, Q for queen, P for pawn - thes may be used.
  • To make a move, you just have to type @fbchess position of your move printed on displayed board. Eg, @fbchess c1 will move the possible Pawn to 3rd row of column c.
  • It may ask you if more than one move is possible.
  • To see the help, type @fbchess help in the same chat.
  • To see the status of game, type @fbchess status.
  • To quit game, type @fbchess resign.
Enjoy the chess with your friend, or in a group chat.

Password, the word itself invokes the attention of ear.



You may have seen saved passswords in your or others browser. 
This article may be helpful in many circumstances like, "you saved a password for a site in your browser and have forgotten the password", you can see that password using this trick.
Though, there are lots of ways to reveal such passwords, we came with one way of use.

Using Inspect Element feature of Browser

  • First of all, open the website in which you found saved password.

Suppose we have password saved in facebook.
  •  Right Click on password box where password is appearing as asterisk or star.
  • You will find a lot of options there.
  • You have to click on 'inspect' or  'inspect element' depending upon your browser. ( In Chrome, you will have Inspect )





  • Clicking on Inspect will open Developer Tolls below current window highlighting you to a line, which is the html code for password box,
  • That line will look like <input type="password"  
  • You have to double click on the word password, and edit it to any other word,






  • When the word password is changed to other word, press Enter and you will see the asterisks as text.
  • This way, you revealed the saved password.

  • Nowadays we all are discussing about #free basics and #net neutrality.
    But many of us is confused that what are these?
    Today, we are going to explain what are these in simple terms.
    (HOPE YOU ALL LIKE THIS)
    : NET NEUTRALITY :

    IN SIMPLE WORD : WE CAN SAY THAT UNDER NET NEUTRALITY OUR #ISP (INTERNET SERVICE PROVIDER) SHOULD GIVE ACCESS TO ALL OF THE CONTENT OVER INTERNET WITHOUT BLOCKING AND FAVOURING ANY SPECIFIC WEBSITE OR ANY SPECIFIC APPLICATION OR ANY SPECIFIC PRODUCT.
    OUR #ISP SHOULD GIVE EQUAL ACCESS TO ALL THE PRODUCTS OR WEBSITE OVER THE INTERNET REGARDLESS TO THE SOURCE. AND ALSO ACCORDING TO THE FIGURE BELOW , WE HAVE TO PAY ONE INTERNET PACK AMOUNT FOR ALL THE THINGS WE DO OVER INTERNET.
      

    : FREE BASICS :

    IN SIMPLE WORDS : WE CAN SAY THAT #FREE BASICS  IS VERY TALKATIVE TOPIC NOWADAYS BECAUSE OF FACEBOOK. FACEBOOK SUPPORTS THE FREE BASICS ALOT  AND NOWADAYS INSISTING US TO SEND EMAIL THROUGH FACEBOOK ITSELF FOR SUPPORTING FREE BASICS .
    UNDER THE FREE BASICS OUR #ISP SHOULD GIVE ACCESS TO A SPECIFIC WEBSITE OR SPECIFIC PRODUCT OR SPECIFIC APP ON DIFFERENT INTERNET PACK AMOUNT  ; MEANS DIFFERENT INTERNET PACK FOR FACEBOOK,DIFFERENT INTERNET PACK FOR WHATSAPP AND MUCH MORE DIFFERENT PACKS TO AVAIL.AND BY PURCHASING THESE PACKS WE CANNOT ACCESS ANY PRODUCT OR ANY WEBSITE OTHER THAN WE PAY.



    Sometimes you need some privacy for your files in windows and just hiding it is not a good idea!

    You may need a protected place which can't be accessed by others. Here we come with a tutorial to make a locked or protected folder in windows using notepad.



    Actually you're about to create a batch file, which will let you to do so.

    So lets start!

    Step 1:

    Open notepad and paste the following code in it.

    cls
    @ECHO OFF
    title Folder LockedFolder
    if EXIST "tG Locker" goto UNLOCK
    if NOT EXIST LockedFolder goto tGlocker
    :CONFIRM
    echo Do you really wanna lock this folder(Y/N)
    set/p "cho=>"
    if %cho%==Y goto LOCK
    if %cho%==y goto LOCK
    if %cho%==n goto END
    if %cho%==N goto END
    echo Invalid choice.
    goto CONFIRM
    :LOCK
    ren LockedFolder "tG Locker"
    attrib +h +s "tG Locker"
    echo Folder locked
    goto End
    :UNLOCK
    echo Enter password to unlock if you are folder owner
    set/p "pass=>"
    if NOT %pass%== techgoogles goto FAIL
    attrib -h -s "tG Locker"
    ren "tG Locker" LockedFolder
    echo Folder Unlocked successfully
    goto End
    :FAIL
    echo Dont try to access others data
    goto End
    :tGlocker
    md LockedFolder
    echo LockedFolder created successfully
    goto End
    :End
    Set your password by editing highlighted part of code by yours and save it as tGlocker.bat


    Step 2:

    Now place that batch file (tGlocker.bat) to the location where you want to create a protected folder.
    Double click on tGlocker.bat and and a folder named  LockedFolder will be created in same directory.

    Then move your files and folders to be secured in LockedFolder and afterwards double click on tGlocker.bat and press Y to confirm locking it.
    You have sucessfully locked your private files!

    Step 3:


    Now to unlocked folder, double click on tGlocker.bat and enter 'techgoogles' or your password.