Friday, June 23, 2017

Some Useful Tips For You...

You Can Search Google Timer In Google For A Timer With Alarm

google-timer

In Your PC Just Create A Folder With The Name Given Below And Access Everything

GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}
godmode

Do You Know You Can Play Mp3, Movie Directly On Chrome Browser, Just Drag Files In Chrome Window

esds

Delete Your Account Permanently From Famous Websites

delete-account


Lost Your Android Phone? You Can Ring Your Phone Even If It Is In Silent Mode, Erase Data, Or Lock Your Smartphone Remotely Using Android Device Manager.


Just Search Find My Phone In Google To Locate Your Phone Instantly


To Share Your Wi-Fi Access With Your Friends Coming To Your House : Generate A QR Code With The Access Details. Print It And Stick It On The Wall.

qrcode-wifi

YouTube Hotkeys

  • To pause a video: Press K.
  • To skip 10 seconds back and forward: Press J and L respectively.

When Visiting Any Video On Youtube Replace Youtube With Following Things Given In Video Url To See The Magic

  1.  Just Replace “youtube” with “listentoyoutube” in the URL and paste it in your address bar to download the audio of the video.
    Just Replace “youtube” with “ssyoutube” in the URL and paste it in your address bar  to download the video in any quality available.
  2. Just Replace “youtube” with “nsfwyoutube” and paste it in your address bar  to bypass age restriction.
  3. Just Replace “youtube” with “youtubeskip” in the URL  and paste it in your address bar and you won’t see ads.
  4. Just Replace “youtube” with “listenonrepeat” in the URL  and paste it in your address bar to repeat the video automatically .
  5. Just Replace “youtube” with “gifyoutube” in the URL  and paste it in your address bar to convert video into gif format .
source:merabheja.com

Thursday, June 22, 2017

Amazing Notepad Tricks for your Computer

Create fake Windows error with Notepad:

This is one of coolest trick of Notepad, which I think everyone should try once to prank with friends without any problem. To, create fake message by notepad, Follow this procedure :
  1. Open Notepad.
  2. Type X=Msgbox(“Put your Message Here”,0+16,”Put Title Here”)
  3. Replace Put your message here and Put title here with your keywords.
  4. Save, this file as error.vbs.
amzing notepad trick

Force CD Drive to Pop out continually:

  • Open Notepad, and Paste this line :
Set oWMP = CreateObject(“WMPlayer.OCX.7″)
Set colCDROMs = oWMP.cdromCollection
do
if colCDROMs.Count >= 1 then
For i = 0 to colCDROMs.Count – 1
colCDROMs.Item(i).Eject
Next
For i = 0 to colCDROMs.Count – 1
colCDROMs.Item(i).Eject
Next
End If
wscript.sleep 5000
loop
  • Save this file as “DreamyTricks.VBS
  • Now, When You will open this file, CD Drive will pop out.

Create Diary in Notepad:

This amazing Notepad trick will allow you to Create a diary Entry in Notepad. I mean, Whenever you will publish any post, It will automatically use Time and Date Stamp. Isn’t it Cool? So, Follow these steps to create Diary in Notepad:
  • First, of all you have to open Notepad trick, as Its a notepad trick ðŸ˜‰
  • Type “.LOG”.
  • Save file as Log.txt.
  • Now, whenever you will write any thing in this file, It will simply put Date and Time Stamp.
create diary using notepad

Open Notepad in your friend’s computer continuously:

Type in Notepad :
@ECHO off
:top
START %SystemRoot%system32notepad.exe
GOTO top
Save it with Filename – DreamyTricks.bat and Send it to your friend.

Make your Keyboard LED to dance:

The LED lights of any Keyboard (Caps Lock Key, Num Lock Key and Scroll Lock). You can force them to dance using this trick. It is one of cool notepad tricks which you must try to have fun.
  • Open Notepad.
  • Paste this code in Notepad :
Set wshShell =wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “{CAPSLOCK}”
wshshell.sendkeys “{NUMLOCK}”
wshshell.sendkeys “{SCROLLLOCK}”
loop
  • Save this File as DreamyTricks.vbs.
  • Now, whenever you will click this File, your LED light will simply dance.
notepad tricks

Test your Antivirus using Notepad:

This is amazing Notepad trick to test antivirus program. Just Follow this method :
  • Open, Notepad and Paste this code :
X5O!P%@AP[4PZX54(P^)7CC)7}$EICAR-STANDARD-ANTIVIRUS-TEST-FILE!$H+H*
  • Save this File as DreamyTricks.exe.
  • Now, if your antivirus is working perfectly, than your Antivirus will force you to delete it.
  • If, nothing happens than Just tighten your paints to buy New Antivirus Program.

Add Matrix effect using Notepad:

To, use this Notepad trick, Follow this method:
  • Open Notepad, Paste the following code in Notepad:
@echo off
color 02
:start
echo %random% %random% %random% %random% %random% %random% %random% %random% %random% %random%
goto start
Save, file as DreamyTricks.bat.
matrix effect

Repeat messages on Screen Continuously:

  • Open your notepad and Paste following code:
@ECHO off
:Begin
msg * Hi
msg * Are you having fun?
msg * I am!
msg * Lets have fun together!
msg * Because you have been o-w-n-e-d
GOTO BEGIN
Save the file as DreamyTricks.bat

Type “You are a fool” Continuously:

To, use this Cool Notepad trick, Simply follow below steps :
Set wshShell = wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “You are a fool.”
loop
Save, File as Dreamytricks.vbs and your are done.
Convert Text to Audio easily.

Force Windows to Shut Down :

This notepad trick, will let your PC shut down your Computer in a single click. SO, If you want to Turn Off your Computer in one click, than follow this method :
  • Open Notepad.
  • Paste @echo off in next line.
  • Paste * Shutdown computer in next line.
  • Paste shutdown -c “Sleep Tight” -s in next line.
  • Save the file as D.bat extension and you are done.
Now, whenever you want to shut down your Windows, just open this file, your PC will shut down automatically.

Trick to Create Password Protected Folder using Notepad :

Now, you dont need to Download Folder Lock folder,as you can create same using Notepad. Isn’t it amazingNotepad Trick.So, follow below method to create password protected folder.
  • Open Notepad and Paste following code :
@ECHO OFF
title Folder Private
if EXIST “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}” goto UNLOCK
if NOT EXIST Private goto MDLOCKER
:CONFIRM
echo Are you sure you want to lock the 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 Private “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}”
attrib +h +s “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}”
echo Folder locked
goto End
:UNLOCK
echo Enter password to unlock folder
set/p “pass=>”
if NOT %pass%== dreamytricks.net goto FAIL
attrib -h -s “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}”
ren “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}” Private
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Private
echo Private created successfully
goto End
:End
  • dreamytricks.net, which is written in red text is password.
  • Save file as private.bat.
  • Now, whenever you will create private.bat a Private folder will get created.
  • Paste those files which you want to lock in that folder.
  • Now, No One will be able to open the file without password.
folder lock by notepad