Social Icons

Friday, October 11, 2013

Convert any file online

Convert any file using the free online Zamzar service. This service allows your to convert any image, document, music, video, e-book, or compressed file format into another. Below are some different common examples of how this service could be used.
  • Convert a .jpg image into a .png, .gif, or .bmp, etc.
  • Convert a YouTube video into a .avi, .mov, .3gp, .flac, .m4a, .wmv, etc.
  • Convert a .docx to a .doc, .pdf, .html, etc.
  • Convert a .pdf into an e-book format your e-reader supports.
  • Convert a .rar into a .zip

Compress and uncompress files online

Compress and uncompress computer files through your Internet browser using services such as WobZIP and ezyZip.
WobZIP is a great free online tool that allows you to upload a compressed file such as a .ZIP, .RAR, .CAB, .ISO, and many more file types to a server and then download the contents of those files to your computer. Or take the contents of another compressed file and compress them into a .ZIP file, which can be opened with almost every computer. Visit the WobZIP page to start uncompressing files.
EzyZip is an online tool that uses a Java applet to compress any files into a .ZIP file and uncompress any files in a .ZIP file. Visit the EzyZip web page to start compressing and uncompressing files now or bookmark the page for later

Automate your work with Autohotkey

Autohotkey is a free and powerful tool that allows you to automate almost anything on your Windows computer in any program. Computer Hope uses this tool daily to help answer common questions asked in e-mail quickly and perform other common repetitive tasks. If you do anything daily that requires you to repeat the same actions, we highly recommend using this tool. This page demonstrates some of this programs capabilities.
Caution: This tool can be used to automate tasks in gaming, some online games may consider this cheating and if caught it may result in a ban.
If you want to follow along with this documents examples, please download and install Autohotkeybefore following any of the below steps. Otherwise, skim this document for a better understanding of the program before downloading and installing it on your computer.
Edit Autohotkey scriptEdit the script
After Autohotkey is installed to create and edit a script right-click anywhere on the Desktop or folder, click New, and chooseAutoHotkey script. Name the script whatever you want and then right-click the script file and choose Edit the script.
Tip: If you plan on always using the same scripts you can also load AutoHotkey at startup, right-click the AutoHotkey icon (Autohotkey systray or notification area icon) in the Windows notification area, and click Edit this script. The default script (AutoHotkey.ahk) will open in your default text editor and allow you to add or change your own scripts. Each time Autohotkey loads when your computer starts this default script will load this script.
Script basics
Each script in Autohotkey can also be assigned a keyword (hotstring) or a personalized keyboard shortcut key. When using a keyboard shortcut any shortcut can be used as long as Windows has not already assigned those keys to another task. Each shortcut key can be comprised of the Windows key represented as a "#", an Alt key represented as a "!", a Ctrl represented as a "^", and any other letters, numbers, or other keys on the keyboard followed by two colons (::).
Autohotkey includes two example scripts, the first one (shown below) will open the Autohotkey web page when you press the Windows Key and Z at the same time. Which can be done now if you have Autohotkey installed and the default autohotkey.ahk loaded. Otherwise, this line can be added to a new script, saved, and ran to allow this shortcut to work.
#z::Run www.autohotkey.com
Most scripts will be more than one line. However, in the above example it is only one line and needs no additional commands. In the below script example, the script has multiple lines, and as can be seen must be finalized with the "return" command to prevent anything below this script from being executed.
^!n::
IfWinExist Untitled - Notepad
WinActivate
else
Run Notepad
return
The above script starts with the shortcut key Ctrl + Alt + n, the next four lines are an if elsecommand, which in English translate to "if an untitled Notepad window exists then make that window active, else run a new Notepad."
Creating your first script
With your basic understanding of how this program works lets create your first script to print "Hello World!" anywhere you want. Move the cursor to the end of your new script file or the default Autohotkey.ahk script file and add the below line.
::Hello::Hello World{!} This is my first script. ;Example comment
In this first example, we are not using a shortcut, only the keyword "hello" to execute the script. Also, because "!" is a modifier key command for the Alt key it has been surrounded by curly brackets, which indicates the key, not a command. Finally, this script also contains a comment at the end, which is anything followed by a semicolon. All comments are ignored and used to help explain the code in the script.
Any time you make any changes to a script it must be reloaded or run in order for those changes to work.
To load the script double-click the script file or right-click the script file and choose Run Script. If you're editing the default autohotkey.ahk and Autohotkey is running reload the script by right-click on the Autohotkey icon (Autohotkey systray or notification area icon) in the Windows notification area and choose the Reload This Script option.
Once the script has been loaded you should be able to type "hello" in the below text box and after pressing space or any punctuation the script type out "Hello World! This is my first script."
Tip: If you don't want to have to press the space or punctuation you can add an asterisk between the two first colons.
Next, in the below example we are creating a script that is executed with a shortcut key. Edit the script and add the below three lines to your script.
#F2::
send Hello World{!}
return
After these three lines have been created save the file as the same file name and then reload the script. If done successfully you should be able to click in the below text box and press the Windows Key + the F2 function key at the top of the keyboard to print Hello World!
In addition to sending text any shortcut keys can also be added, data can be copied to and from the clipboard, and the script can sleep for any amount of time. Edit the script again and make the below changes to the script created earlier.
#F2::
send Hello World{!}
send {CTRLDOWN}{SHIFTDOWN}{HOME}{CTRLUP}{SHIFTUP}
send {CTRLDOWN}c{CTRLUP}{END}
example = %clipboard%
StringUpper,example,example
sleep, 1000
send, - new hello = %example%
return
In the above example, lines three and four have introduced how keys can be pressed in the script to perform other keyboard shortcuts. The third line this is pressing Ctrl+Shift+Home to highlight all text before the cursor, and the next line is pressing Ctrl+C to copy the highlighted text. Anytime a key is pressed down (e.g. {CTRLDOWN}) make sure it is let go with up (e.g. {CTRLUP}), otherwise it will remain down and cause problems.
The fourth line introduces a variable and the %clipboard% command which contains anything in yourclipboard. With this line, all contents in the clipboard are assigned to the "example" variable.
The next command is making the example variable all uppercase by using the StringUpper command and assigning the uppercase text back to the example variable. The StringLower command could also be used to make everything lowercase.
Next, the sleep command is a great command for making the script sleep for any length of time. 1000 is equal to 1 second. This command is useful and often necessary if the script has to wait for the computer to open a program or window.
Finally, the last send command will add " - new hello =" with the hello world now all in uppercase. This revised version of the script can be tested again in the below text box.
Scripting the mouse
Window spyAlthough almost anything can be done using keyboard shortcuts, there are still times you may want to click somewhere on the screen. Using the click command you can click on any location of the screen as shown in the below example. To determine what the location of where you want to click use the Window Spy utility that can be opened by right-clicking the Autohotkey icon (Autohotkey systray or notification area icon) and clicking Window Spy. As you move your mouse, the "In Active Window" will display the location of your mouse cursor's current position. Once you've determined where you want to click add the Click command with the location of where you want the mouse to click.
#F2::
Click 980,381
return
With this command once the Windows key + F2 is pressed the mouse will click once at 980,381.
Run a program
If there is a program you run often, opening a program in a script can be as simple as typing run and the name of the file you want to run. Earlier in this document we gave an example of how to run Notepad by typing "run notepad" in the script. If you're familiar with the Windows Run, many of the same commands and ways you run a program or open a file will work in AutoHotkey. Below are some additional examples of what the run command can do in AutoHotkey.
Run, wordpad.exe, C:\My Documents, max
In the first example, this would open WordPad with the default directory C:\My Document, and open the window maximized.
Run, www.tipsandtricksforfree.tk
Any Internet URL can be added after the run command to open that web page in your default browser.
Run, mailto:example@domain.com?subject=My Subject&body=Hello this is a body example.
Finally, this is yet one other example of the run command, which is sending an e-mail using your default e-mail client and sending the e-mail to example@domain.com with the subject "My Subject" and the body of the message having "Hello this is a body example."
Using variables
Like other programming and scripting languages, AutoHotkey supports the use of variables in the script. As seen earlier, we demonstrated copying the clipboard contents to a variable. A variable in AutoHotkey can be either a string or an integer and does not need to be declared like other programming languages.
In our first example, we will be using an integer variable to add two numbers together and display the results in a message box.
#F2::
example := 5+5
msgbox, Example is equal to %example%
return
Autohotkey msgboxIn the above example, "example" is our variable name, := is assigning the integer expression as the value of 5+5 (10). Once the variable has been assigned we are using the msgbox command to open a message box and print its value. Whenever you are sending, printing, or assigning a variable it must begin and end with a percent symbol. After saving and reloading the above script when pressing Windows key + F2 you should see a message box similar to the example shown on this page.
In the next example we are assigning the variable a string value and again having the results displayed in a message box.
#F2::
example := "Nathan"
msgbox, Hello World! My name is %example%
return
In the above example we are assigning the example variable to "Nathan" and because it is a string itmust be surrounded in quotes. When pressing the Windows key + F2 this time the script will open a message box saying "Hello World! My name is Nathan"
If you wanted to have a variable with a string and an integer you can have an expression outside the quotes, as seen in the below example.
#F2::
example := "Example: " 5+5
msgbox, Mixed variable is %example%
return
When executed, the message box will display "Mixed variable is Example: 10"
Conditional statements
Conditional statements are also supported with AutoHotkey and support the operators and (&&), or (||), and not (!). Below are a few examples of how conditional statements can be used.
#F2::
example := 5
if example = 5
msgbox, true
else
msgbox, false
return
In the above example, the variable is assigned a value of 5 and the conditional statement checks to see if the example is equal to 5 because this is true the msgbox will print true. If the example value was not equal to 5, the msgbox would have returned false.
You would think after seeing the first conditional statement example that you could put quotes around a string in the variable and conditional statement; however, this will not work. If you want to match a string, surround your expression with parentheses as shown in the below example.
#F2::
example := "computer"
if (example = "hope")
msgbox, true
else
msgbox, false
return
In the above example, if the example variable is equal to hope, print true, otherwise print false. Because the example variable has been assigned as "computer" this script will return false.
Creating a loop
If there is a script that you want repeat, place the script into a loop, as seen in the below example script.
#F2::
loop, 5
{
send Hello World{!}
sleep 300
}
return
Once the above script has been added and the script has been re-loaded or ran you should be able to click in the below text box and press the Windows key + F2 to print Hello World! five times. The loop can be extended to repeat as many times as you want.
Regular expressions
Like many other scripting languages AutoHotkey also supports the use of regular expressions (Regex), which allows you to replace any text within a string with other text. This is useful for times you may want to change the formatting of text or remove unnecessary data within a string.
#F2::
example := "support@tipsandtricksforfree"
example:= RegExReplace(example, "@.*", "")
msgbox, Username is %example%
return
In this above example, the third line with RegExReplace will replace the @ and everything after it with nothing making the example variable only show the username account of the e-mail address. When Windows key + F2 is pressed the message box will display "Username is support".
Additional information
Although this page contains dozens of examples there are hundreds of other commands that are not covered. Visit the Autohotkey dictionary for a full listing of available Autohotkey commands.

Top 10 Windows 8 tips and tricks

Customize your tiles
Windows 8 tilesMake the most of your Windows Start screen tiles by adjusting the sizes, where they are located, and what is listed.
  • Move any tile by clicking and dragging the tile. While moving a tile, if you need a larger view of the Start screen move the tile towards the top or bottom of the screen to zoom out.
  • Use your mouse wheel to scroll left-to-right through your tiles.
  • Any Desktop shortcut or program can be pinned to the Start screen by right-clicking the icon and choosing Pin to Start.
  • In the bottom right-hand corner of the start screen is a magnifying glass with tiles, click this icon to get a zoomed out view of your Start screen. In this view, if you right-click on a group of tiles you'll be given the option to name group, which can be useful if you have a group of related tiles (e.g. games). In this view, you can also click and drag a group to organize your tile groups.
  • Create a new speed bump between tile groups by moving a tile to a speed bump.
  • Resize any User tile or Live tile by right-clicking the tile and choosing resize.
  • If there is a tile you want on your Taskbar, right-click the tile and choose Pin to taskbar.
  • Show admin applications on the Start screen by clicking Settings in Charms, click Settings, and change the Show administrative tools from No to Yes.
  • In Internet Explorer 10, you can also pin any of your favorite web pages to your Start Screen.
Windows 8 keyboard shortcuts
Knowing at least some of the Windows 8 keyboard shortcuts will make your Windows 8 experience much more enjoyable. Try to memorize these top Windows 8 shortcut keys.
  • Press the Windows key to open the Start screen or switch to the Desktop (if open).
  • Press the Windows key + D will open the Windows Desktop.
  • Press the Windows key + . to pin and unpin Windows apps on the side of the screen.
  • Press the Windows key + X to open the power user menu, which gives you access to many of the features most power users would want (e.g. Device Manager and Command Prompt).
  • Press the Windows key + C to open the Charms.
  • Press the Windows key + I to open the Settings, which is the same Settings found in Charms.
  • Press and hold the Windows key + Tab to show open apps.
  • Press the Windows key + Print screen to create a screen shot, which is automatically saved into your My Pictures folder.
See our Windows shortcuts page for a full listing of all Windows shortcuts.
Know your hot corners
The corners on your screen are hot corners and give you access to different Windows features. Below, is a brief explanation of each of these corners.
Bottom Left-hand corner
The bottom left-hand hot corner of the screen will allow you to access the Start screen, if you're in the Start screen and have the Desktop open, this corner will open the Desktop from the Start screen.
Tip: Right-clicking in the left hand corner will open the power user menu.
Top-left corner of the screen
Moving the mouse to the top-left corner and then down will display all the apps running on the computer. Clicking and dragging any of these apps to the left or right-hand side of the screen will snap that app to that side of the screen. Each of these open app icons can also be right-clicked to close or snap.
Right-hand side of the screen
On the full right-hand side of the screen will be given access to the Windows Charms.
Taking advantage of search
The Search in Windows 8 has been significantly improved when compared to all previous versions of Windows. To search for a file or run a program in Windows 8 from the Start screen just start typing what you're trying to find or want to run.
As you begin typing, the results will start appearing on the left-hand side. In addition to being able to search for files and run programs, the Search also supports limiting the search to apps such as Finance, People, Maps, Photos, Mail, Music, Videos, Weather, and much more. If what you are searching for is not a file or program, click on the app you wish to use as the search. For example, if you were searching for "New York" and selected the Weather App you would be shown the weather in New York, NY.
By default, Search organizes the available Apps by how frequently they are used and then in alphabetical order. If you want to keep your favorite app at the top of the Search list, right-click the app and choose Pin. Pinning the app will lock it in place regardless of how often it is used. If there is an app you don't want (e.g. Finance) you can turn on and off any of the search apps through the PC settings, which is found under the Settings in the Charms.
Bonus tip: The Search is also found through Charms and can also be opened by pressingWindows key + F.
Running two apps side by side
Any app can be pinned to the left or right-hand side of the screen. For example, open the People app and then press the Windows Key + . (period) to move that app to the right-hand side of the screen, pressing the same keys again will move it to the left-hand side, and pressing the same keys again will make it full screen. While an app is pinned, any other app or program can be opened and loaded into the available space on the screen. For example, in the below picture, we've opened a browser window and have the People app running to monitor our social networks.
Windows 8 People
Any open app can also be pinned using your mouse by clicking at the top of the tile and dragging it to the left or right-hand side of the screen.
Bonus tip: The Desktop can also be pinned to the left or right-hand side of the screen.
Note: In order for snap to work properly your resolution must be at least 1,366 x 768.
Windows 8 Task Manager
The Windows 8 Task Manager has been significantly improved over previous versions of Windows. Some of the new changes include showing a total percent usage at the top of your Processes, which makes it easier to determine total memory and CPU usage, improved Performance graphs, a Startup tab to see startup processes and their impact to system performance, and the App history tab (as shown below) that gives you the total resources an app has used over a period of time. Press Ctrl + Shift + Esc to start exploring the new Task Manager.
Windows 8 Task Manager
Use a picture password to log into your computer
Windows 8 includes a new feature called Picture password, which allows you to authenticate with the computer using a series of gestures that include circles, straight lines, and taps. Enable this feature if you want a new way to access your computer or have a hard time with passwords.
  1. Open the Windows Charms.
  2. Click Settings and then More PC settings
  3. In the PC settings window click Users and then select Create a picture password
Bonus tip: A four digit pin password can also be created and used to access your computer.
Take advantage of Windows 8 apps
Windows 8 comes included with several apps to help you get the most from your computer. Below are just a few of the included apps.
People
Microsoft touts the People feature in Windows 8 because they understand how many people are using social networks today. In the People feature you'll be able to connect your Windows computer to all the major social networks including FacebookLinkedIn, and Twitter. Once connected, you can pin the people app and monitor your social network (as shown below), use People in Search to find people, and get an overview of what is happening in all your social networks.
Windows 8 People
Reader
The Reader app will give you PDF support right out of the box.
SkyDrive
The SkyDrive app will give you access to the Microsoft cloud service SkyDrive, which allows you to store your photos, documents, and other files in the cloud and access or share those files with any computer with Internet access.
Store
Take advantage of the Windows Store and install one or more of the thousands of available apps designed for Windows 8. The Store is found in the Start screen, or use Search to search the Store app for any apps that you are trying to find.
Know the answers to common questions
Windows 8 is the biggest change to Microsoft Windows since the introduction of Windows 95, which was released all the way back in 1995. Since so many people have grown up with Windows, it can be difficult to transition to a new way of doing things. Below, is a short list of the most common questions previous Windows users will have.
Know the Jargon
Knowing all the new jargon introduced with Windows 8 will help improve your familiarity with Windows 8 and make it a more enjoyable experience. Below, are just a few links to the most commonly used Windows 8 terms.

ANONYMOUS SURFING : TOR




Tor is a very good and free anonymizer program which hides our IP address and protects our privacy. Tor prevents websites from tracking us. Tor provides the foundation for a range of applications that allow organizations and individuals to share information over public networks without compromising their privacy. It is also available as an firefox addon.


Download from TOR Official Website:

http://www.torproject.org/easy-download.html.en

BINDER SOFTWARE TO HIDE KEYLOGGERS/TROJANS




Simple Binder is a software used to bind or combine two or more files in one file under one name and extension. The files to be binded can have any extension or icon. The user has choice to select the name, icon and various attributes of binded file. If binded file contains an application, the application is also run when the actual binded file is run.

Download here: 

http://www.ziddu.com/download/6977851/SimpleBinder.rar.html 

Password: hackingguide

HACK MSN ACCOUNTS : MESS SPY....!!



With this program, you can turn on the webcam of anyone who is chatting with you on MSN messenger and spy on him/her without his/her knowledge and permission. Just send the "TheUltimate Msn Toolz.exe" file to your victim. When victim runs the application, their webcam will turn on. The freezer and booter will work as normal, so the victim wont know that they are being watched. Even if they shut the application down, it should still run in the background. You then open the (mess-spy) part and enter their IP address. Leave the port set to 4440 and connect.

Download here:

http://www.mediafire.com/download.php?czmzgzxmnyn

Fake MSN Freezer



As the name says, this software do not freeze MSN accounts but you can use it to play pranks on your friends. You can send it to your friend telling him that it freezes people's MSN accounts. When he/she will double-click it, it will shutdown their PC within 30 seconds. You can also bind some keylogger or RAT to it with a binder and crypt it with a crypter if you really wanna hack them.

Download here:

http://www.mediafire.com/download.php?o0wmm2zhtnw

PACKET SNIFFER : TCP DUMP




Tcpdump is the classic IP sniffer which requires fewer system resources. It is great for tracking down network problems or monitoring activity. 

Download here:

http://www.megaupload.com/?d=IGQELRZ3 

NETWORK SCANNING TOOL : NMAP




Nmap ("Network Mapper") is a free and open source utility for network exploration or security auditing. Many systems and network administrators also find it useful for tasks such as network inventory, managing service upgrade schedules, and monitoring host or service uptime. Nmap uses raw IP packets in novel ways to determine what hosts are available on the network, what services (application name and version) those hosts are offering, what operating systems (and OS versions) they are running, what type of packet filters/firewalls are in use, and dozens of other characteristics. It was designed to rapidly scan large networks, but works fine against single hosts.

Download here (Linux Users):

http://nmap.org/dist/nmap-5.00.tar.bz2

Download here (Windows Users):

http://nmap.org/dist/nmap-5.00-setup.exe

Wireshark..!!



Wireshark is a fantastic open source network protocol analyzer for Unix and Windows. It allows you to examine data from a live network or from a capture file on disk. You can interactively browse the capture data, delving down into just the level of packet detail you need. Wireshark has several powerful features, including a rich display filter language and the ability to view the reconstructed stream of a TCP session. It also supports hundreds of protocols and media types.

Download from Wireshark Official Website:

http://www.wireshark.org/download.html

EXPLOIT SCANNER





Exploit Scanner is a tool which scans the website to check if it is vulnerable to attack or not. You just have to enter the URL and it will instantly produce the results as if the website is vulnerable to attack or not.

Download here:

http://www.ziddu.com/download/7040665/exploitscanner.rar.html  

Password: hackingguide
 
 
Safari sam slot betsoft