Wednesday 16 October 2013

Activate God Mode in Windows 7

Introuduction

What is God Mode?
If you haven't heard of God Mode then God Mode is a feature in Windows 7 which brings together a long list of customization settings allowing you to change all your settings from one place.
Here's a screen shot of how God Mode looks:

godmode.jpg

Let's Do it

Step 1: Create a folder in your computer.
Step 2: Name your New Folder to this:
GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}

Step 3: Now your folder should look like this:
folder-icon
Now you have succesfully activated the God Mode.
Open the GodMode folder and you can see a huge list of controls!!!

You might also like: How to change Windows Drive Icon

Saturday 12 October 2013

Saturday Links

From the web

Scott H Young
Over 950 articles devoted to one idea:how to get more from life. Whether that involves doubling your reading rate, learning more with less studying, beating procrastination or just understanding other people—and yourself.

From the Archive

How to Change Drive Icon in Windows
Are you bored with your predefined drive icons? If yes then this tutorial will help youChange the Drive Iconin Windows.

Friday 11 October 2013

How to copy Copy Protected files

copy.jpg
You might also like:how to change photoshop splash screen

Introduction

Ever bought a CD of your favourite music and want copy it to your cell phone to listen the music. But when you try to copy it from your computer it says "Can't Copy, Copy Protected !!" or Similar. Now you're doomed!!. But don't worry, every problem has atleast one solution for sure!
To Copy, Copy Protected files, we're going to use a program, called IsoBuster. It is a Data recovery Program
You can download IsoBuster here.

Let's get Started

Step 1

First of all You have to Download and Install IsoBuster.

Step 2

Start IsoBuster and put your CD/DVD into your CD/DVD Drive.

Step 3

Now, In the IsoBuster Window, click on Session 1 on the right hand side and select all of the tracks.

Step 4

Right click on the selected tracks and click Extract Objects. Now browse to the Folder, where you want to Extract the Objects.
Done!!
Now you can copy those files to your phone or any music player!
Note: Altering Copy Protected Files is illegal. So be Careful!!! and Don't get caught!
I'm not responsible for your actions!

Tuesday 8 October 2013

HTML Mini Course


Check this: How to write upside down in facebook and twitter

INTROUDUCTION

HTML, or Hyper Text Markup Language, is used to create a Web site. HTML tells your Web browser what text to display, what images will appear, and what color of texts will appear in the Web Page. HTML pages are created using a text editor such as Notepad or Notepad++. (I would recommend you to go with Notepad ++)
After completing this mini crash course you will be able to create your very first web page!
Good luck!

BASICS

HTML is very easy to learn. Below are the Basics of HTML is explained, keep reading.
HTML is composed of two main parts: the head and the body. You must begin every HTML document with the tag <html> and end every document with </html> .
The basic structure for an HTML file is as follows:
<html> -> Open HTML
<head> -> Open HEAD
</head> -> End HEAD
<body> -> Open BODY
</body> -> End BODY
</html> -> End HTML

HEAD Section

The HEAD section of an HTML document allows you to add title to Web Page and include other pieces of data, such as META tags and scripts.
To add title to your Web Page add the following line in head section:
<title>This is the Title of this page</title>

BODY Section

The BODY section of an HTML document is where all the action occurs (means all the contents of the page are placed here). You can add text, pictures, scripts and also embed videos in body section.

Putting texts in our Web Page

To put texts in the Web Page, we can simply write the text in between the <body> and </body> tags. For example:
<html>
<head>
<title>Title Goes Here</title>
</head>
<body>
This is Sample Text. This tutorial is written by HellBoundGeeks
</body>
</html>

To Change Text Size or Color we use FONT tag. To change the text size we put the "size" parameter in FONT tag:
<font size="5">This is Sample text with size 5</font>

Now To Change text color we use "color" parameter in the FONT tag.
<font size="5" color="blue">This is Sample text with size 5 and color Blue</font>

Output of this code will look like:
This is Sample text with size 5 and color Blue

Displaying Images in Web Page

To display images in our Web Pages we will use the IMG tag. Here is the sample code:
<img src="Image file name goes here">

Here "img" stands for "image" and "src" stands for "source".

Linking to other Pages

It is most important part of the Internet and Web Pages, without links we can not imagine how the Internet would look like.
So, how to create a link? To link to other pages or to other Websites we use A tag. Here is the sample code:
<a href="this is where you place the URL or HTML file name"> this is what will appear in the browser window</a>

An example of linking to other page will look like this:
Click here to go to page 4

Putting it all together

Let's review what we've learned.
<html>
<head>
<title>HellBoundGeeks</title>
</head>
<body>
<font color="blue" size="5">Welcome to HellBoundGeeks</font>
<img src="hell.jpg">
<a href="http://hellboundgeeks.blogspot.com">Click here to go to HBG home page.</a>
</body>
</html>

Output of the above code will look like:

Welcome to HellBoundGeeks

Click here to go to HBG home page.


Did you like it? Comment and Share
See you soon! You might also like: HOW to change windows ICONS

Saturday 5 October 2013

CMD tricks Collection


Awesome CMD tricks

You might also like:Hide File in Photo

For most people command prompt seems boring. But with these command prompt tricks/codes it won't seem that boring as before.
Here is the list of cmd commands:

Title

With this command you can change the current Title of the command prompt window. For exmaple :
title hellboundgeeks

will change the title of the cmd window to "hellboundgeeks".

Color

Sets the default console foreground and background colors. For example:
color [attribute]

Color attributes are specified by TWO hex digits -- the first corresponds to the background; the second the foreground. Each digit can be any of the following values:
0 = Black 8 = Gray
1 = Blue 9 = Light Blue
2 = Green A = Light Green
3 = Aqua B = Light Aqua
4 = Red C = Light Red
5 = Purple D = Light Purple
6 = Yellow E = Light Yellow
7 = White F = Bright White

Example:
COLOR 0a
produces light green on black background.

Watch Star Wars in ASCII

You can watch "Star Wars Episode IV" in command prompt. But it would be of completely in ASCII texts. To watch Star Wars Episode IV, in cmd type the following:
telnet towel.blinkenlights.nl

Note: In Windows 7, by default, you can not watch "Star Wars" because telnet is not activated. You have to activate telnet in order to watch "Star Wars".

Tree

Tree command Graphically displays the folder structure of a drive or path.
TREE [drive:][path] [/F] [/A]

/F Display the names of the files in each folder.
/A Use ASCII instead of extended characters.
Example:
tree c:\



Comments!
If you like this article then please share it!
If you have any questions then put them on comments section!

You might also like:How to change Splash Screen of Photoshop

Awesome websites to Learn Hacking

Awesome Websites to Learn Hacking


You might also like:How to change Splash screen of Photoshop


Are you one of those who are interested in Hacking and want to learn How the Hackers do those stuff? Than the websites mentioned below will help you pull out something and you can do those hacky stuffs too.

Let's move to our list of Awesome Websites to Learn Hacking !

Backtrack

If you have used Backtrack than you must have known it's usefulness in Hacking and Penetration Testing. This website provides many tutorials using Backtrack and they have their own training programs. Visit this Site: Backtrack-Linux.org

Hack This Site!


Hack This Site is one of the best ethical hacking training website. This site provides many hacking and cracking challenges to test your skills. This site also provides vast selections of ethical hacking articles and tools. Visit this Site: HackThisSite.org

HellBound Hackers

HellBound Hackers is a security training website which provides wide range of topics including programming, cracking, encryption etc. This website also provide hacking, cracking, encryption and many challenges too. Visit this Site: HellBoundHackers.org

If you like this article please share it!
If you have any questions put them on comments!

You might also like:How to change Drive Icon in Windows

Friday 4 October 2013

How to Change Drive Icon in Windows

How to Change Drive Icon


You might also like: How to change your drive letter

drive icon

Are you bored with your predefined drive icons? If yes then this tutorial will help you Change the Drive Icon in Windows.

Requirements


1.Notepad or any text editor
2.Icon file

Procedure


STEP 1
Open Notepad and type the following text
[AUTORUN]
icon="myicon.ico"

Note: Here myicon.ico is the name of my icon file, you can change this name as your icon file's name.

STEP 2
Now save the file as autorun.inf (Go to file menu--> Save As..--> then select All files in save as type drop down menu.)

save-as-all-files

STEP 3
Now copy the autorun.inf file and icon file both in the drive, you want to change the Icon.


drive-icon

Now It's Done! Just Restart your Computer and See the Changes!
If you Like this post please Share it and if you have any questions leave a comment!
Thanks!