Showing posts with label funny tricks. Show all posts
Showing posts with label funny tricks. Show all posts

Saturday 10 January 2015

Facebook Shortcuts.....!!!!

Shortcuts for operating Facebook



In today time everyone want shortcuts whether while operating system ,or while studying,solving any problem and many more.
so today you'll get to know some shortcuts that you can use while accessing your Facebook account.

Keyboard Shortcut


You can press these buttons on your keyboard to use Facebook
faster.
j , k -   Scroll between News Feed stories
p -       Post a new status
1 -       Like or unlike the selected story
c -       Comment on the selected story
s -       Share the selected story
o -       Open attachment of the selected story
enter - See More of the selected story
/  -       Search
q -       Search chat contacts 
? -       Show this help dialog

Ctrl + Alt + 0 -  Help
Ctrl + Alt + 1 -  Home
Ctrl + Alt + 2 -  Timeline
Ctrl + Alt + 3 -  Friends
Ctrl + Alt + 4 -  lnbox
Ctrl + Alt + 5 -  Notifications
Ctrl + Alt + 6 -  Settings
Ctrl + All: + 7 - Activity Log
Ctrl + Alt + 8 -  About
Ctrl + Alt + 9 -  Terms
Ctrl + Alt + m - New Message







Monday 1 September 2014

How to Write a Batch File

            How to Write a Batch File



           A batch file contains a series of DOS commands, and is commonly written to automate frequently performed tasks.A batch file may contain any command the interpreter accepts interactively at the command prompt. A batch file may also have constructs (IFGOTOLabels, CALL, etc.) that enable conditional branching and looping within the batch file.
.bat: The first filename extension used by Microsoft for batch files. This extension runs with MS-DOS and all versions of Windows, under COMMAND.COM or cmd.exe, despite the different ways the two command interpreters execute batch files.
Writing a batch file is easier than it looks; the difficult part is making sure that everything happens in the right order. Well-made batch files can save you a lot of time over the long run, especially if you deal in repetitive tasks.

Batch files run a series of DOS commands, so the commands that you can use are similar to DOS commands. Some of the more important ones include:
 ECHO - Displays text on the screen 
@ECHO OFF - Hides the text that is normally output 
START - Run a file with it's default application
REM - Inserts a comment line in the program 
MKDIR/RMDIR - Create and remove directories 
DEL - Deletes a file or files 
COPY - Copy a file or files 
XCOPY - Allows you to copy files with extra options
FOR/IN/DO - This command lets you specify files

steps to make a bat file

  1. open notepad 
  2. save it as any name you want like virus.bat


@echo off cls :start echo This is a loop set choice= set /p choice="Do you want to restart? Press 'y' and enter for Yes: " if not '%choice%'=='' set choice=%choice:~0,1% if '%choice%'=='y' goto start






save it and run it as a administrater and see what happens....!!!!!

for more tricks and diffferent visit us to scaleable.in