This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 2 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Showing posts with label Tricks. Show all posts
Showing posts with label Tricks. Show all posts

10 February 2014

How To Make Money Online?


Make money online
Everyone likes to make money.If you are an internet surfer then why not make some money online by doing part time jobs.There are different ways of making money online.One of the best and growing method is by displaying ads on your site.So if don't have a site create a free site now.The different ways of making money online are through displaying ads,affiliate marketing,offering help,text link advertising,etc.In this post I will explain these methods in more detailed so that you can decide what to choose for monetizing your blog.

Displaying Ads

This is one of the most popular method used by bloggers.There are many ad networks like Adsense,Chitika,media.net{Yahoo | Bing network},etc.These will allow you to place different ads to your site.The ad network will display the most relevant ads for your site.You earn money either for each click or for every 1000 impressions for your ad in this type of network.Getting approved with Google Adsense can be difficult with no unique content.Only apply for ad networks like this once you have a good amount of visitors per day.Otherwise you will end up optimizing your ads rather than producing unique content.You can also have direct advertising for your site with sites like buysellads.You get  paid for displaying the ad for a specific duration by selling your ad space directly to advertisers.

Affiliate Marketing


How affiliate marketing works?

Affiliate Marketing also means to display ads on your site.But there is a change on how you get paid.You can easily display the company's ads on your site without any site requirements.For example,consider that you are displaying ads of amazon on your site.In this case you will get paid only when a user purchases an item through the ad link.Here there is no CPC or CPM.You get a commission for each sale of the product.
Check this link to learn more about amazon affiliate.There are a lot of sites that offer affiliate marketing.Almost all online stores and web hosting companies has its affiliate program.

Text Link Advertising

Infolinks | A text link advertising network
These are link advertising which means keywords in your article are converted to links that redirects to the advertisers website.These type of ad networks pay either for each click on the link or a fixed amount per month.There are many of these networks such as Viglink,Skimlink,etc.You cam read more about these ad networks and how they pays here.

Get Paid To Offer Your Help Or Assistance

Sites like  Fiverr
The first three methods explained in this post can be done only if you have a site.But this is quite different from other methods.You might not have heard about this way of making money online.You get an amount for offering your assistance.For example" I say I will edit your blog for 5$ ".When someone is interested in this deal they pay me and that is how you earn.It can be of any assistance or help.Some of the sites that allows you to do this are Fiverr,GigBucks,Zeerk,SEOClerks,etc.Check out other top sites like this here.

Have I missed something?What to add further in this post?Tell us in the comments.Out of these what you likes the most and why?Leave your valuable comments below.
                                                       Thank You! Keep Visiting !

Sharing Is Caring

Add Keyboard Navigation In Your Blog For Next/Prev Functions


Add keyboard navigation to blogger posts
Blogger's default template has a next and previous post links at the end of the post.We have already seen different ways to customize this links by either replacing it with an image or give it some styles.In this post you can learn how to add a keyboard functionality to your blog.Once you added this functionality a user can easily jump on to the next or the previous post using the keyboard's right and left navigation buttons.This will make you blog interface more ease.This works with the help of a script that you will see below.

How To Add Keyboard Navigation In Your Blog For Next/Prev Functions?

  1. Go to your Blogger Dashboard > Template > Edit HTML
  2. Search for </body>
  3. Copy-Paste the following code before the above code.
  4. Save the template.
<script type='text/javascript'>
window.onload = function()
{
document.onkeyup = function(event)
{
if (document.activeElement.nodeName == &#39;TEXTAREA&#39; || document.activeElement.nodeName == &#39;INPUT&#39;) return;
event = event || window.event;
switch(event.keyCode)
{
case 37:
var newerLink = document.getElementById(&#39;Blog1_blog-pager-newer-link&#39;);
if(newerLink !=null) window.location.href = newerLink.href;
break;
case 39:
var olderLink = document.getElementById(&#39;Blog1_blog-pager-older-link&#39;);
if(olderLink!=null) window.location.href = olderLink.href;
}
};
};
</script>
  
Once added notify your users about this new feature so that your regular readers know about it.
Will you add this script to your site?Leave you comment below!

Sharing Is Caring

How To Extract All Hyperlinks In A Webpage ?


Sometimes you might need to have the all the hyperlinks from a webpage.For example if you are a developer you might be in need of a javascript or css of a webpage that is hosted externally.Sometimes this trick will also help you extract the download link from survey sites.Whatever might be the reason let us learn to do this.We will learn 3 different ways to extract hyperlinks from a webpage in this post.



Extract Hyperlinks From A Webpage In Chrome

This trick is very simple but is limited to Google chrome users.The trick is performed with  via the Chrome Dev tools.
Steps To Extract Hyperlinks From A Webpage In Chrome
Extract hyperlinks from a webpage in chrome
  1. Go to the page from which you want to extract the hyperlinks.
  2. Click on 'Inspect Element' from the right click menu.
  3. Click on the 'Console tab'.
  4. Now paste the following code in the input field.                                                                                                                                 urls = $$('a'); for (url in urls) console.log ( urls[url].href );
  5. Hit enter.

iWeb Tools's Link Extractor
Extract hyperlinks using iweb tool

This is a web based service which means you don't have to download any software nor it is limited to any users.You can use this tool here.This tool will show the type of file along with the anchor text in the output field.
How To Use This Tool?
Using this tool is very simple.All you have to do is to go the the above url.Enter the webpage url in the input field and hit extract!

BuzzStream Tool

Extract hyperlink from html codes
This is quite different from the other two because in this case we are extracting all the urls from an html code.This trick will not display the output links on the website itself.All the links on that page are exported as a CSV file which automatically downloads to your computer once you hit the create CSV button.The CSV file has three different columns including the actual link,it's original website and the anchor text.
How To Use This Tool?
  1. Go to Buzz Stream Urls Extract Tool
  2. Copy the source code of the webpage from which you want to extract the Url.
  3. Paste it in the tool's input field and hit create CSV.A CSV file containing the hyperlinks will automatically be downloaded to your computer.
How To Get The Source Code Of Webpages?

Chrome:Right click on the webpage and click on view page source or press Ctrl + U
Internet Explorer:Right click from the webpage and click on view source.
Firefox & Netscape:Right click  and click on  view page source or press Ctrl + U
Opera:From the view menu click on source or press Ctrl + F3

Sharing Is Caring

Search With Your Voice In Google {+Top features}


Get Google voice on your PCAre you tired of searching by typing?Then this post is apt for you.Google has recently released Google voice where you can search with your voice.In Google search you can see a tiny little mic icon to the right of the search box.Tap on it and speak what you want to search.
You are ready to go!
You can also get answers to your queries.Below are the different type of queries that you can use in Google to get answers quickly.The main attractive feature is that it speaks out the answers.


How To Get Google Voice On Your PC?

If you can't see the mic icon on Google search box follow the below steps.
  1. Go to Voice search.
  2. Click on Try voice Search Now.

How To Get Spoken Answers?

By default spoken answers is enabled for all users but if you believe that it is not enabled for you follow the below steps to enable it.
  1. Go to Search Preferences
  2. Under Spoken Answers section click on Speak answers for voice search.
  3. Click save.

What You Can do With Google Voice Search?

Time

You can ask Google to find the time by asking "what time is it" or if you want to know the time of a particular country you can use the following syntax "what time is it in New York".

Weather

Just like time you can search for weather details like "how is the weather today".This query will show weather details for your area.But if you want to find the weather of a particular region ask something like "how is the weather in California".

Calculator

You might be aware of Google's calculator but you might not be knowing that you can use this calculator with your voice.For example you can ask "what is 1000 -500".This will show up your answer in a calculator so that you can do further calculations.You can use different mathematical operators in your commands.You can also convert any number into binary,octal or hexadecimal by speaking "convert 20 into binary".

Timer

You might not be knowing that you can set a timer too with your voice.Just say "timer for 30 seconds" to set a count down timer that beeps at zero.This function can also be used without the voice.

Find Movies,Albums,etc. 

This is a very interesting feature that can be used even without the voice.But this feature gets its life with voice.Just ask "find movies starring Johnny Depp" to find all the movies starring Johnny Depp.You can also use this feature to find albums,musics,etc like "find albums of Michael Jackson".

Find Restaurants

You can easily find nearby restaurants by speaking "find nearby restaurants".This will list up nearby restaurants along with a map of their location.

Map

This old feature has now been integrated to Google Voice.Just say "show me my location" or "my current position" to display the map of your current location.You can also get map of other regions by speaking "show me the map of Chicago".

Find Pictures & Videos

With this amazing feature you  can easily search for pictures or videos of a person by simply speaking "find pictures of Ray William Johnson" or "find videos of Ray William Johnson".

Get Word Definitions OR Answers To Common Questions

You can easily get word definitions by speaking "what is a transistor" or "what is meant by transistor".If you want to find answers to common questions just go a head with your questions.For example ask questions like "what is the distance between the earth and the moon" or "who is the founder of Google" or "who is the president of USA".If it could not find the answers it will simply search instead.

Convert Currency

You can easily convert currency values by speaking "how much is 1 dollar worth in India" or "convert dollar to rupees" or "convert 100 dollar to rupees".

Sports

You can  also get sports results by asking "who won yeterdays grand prix" or ask for the sports score itself.

Still more.....
Learn all the search tricks and tips here.

Have I missed any features of Google voice or do you know any other tricks?If so let us know in the comments.

Sharing Is Caring

30 October 2013

The Concept of Cracking



The scene of cracking has exploded, mostly due to the availability of cracking programs and popularity of websites that cost money. The Internet is filled with predictable and Internet dumb users. With these users comes an opportunity for you to take what is not yours by brute force.

This article is meant to guide you to successfully cracking accounts. So let's get on with it.

The Main Principle of Cracking

 One difficult to grasp fact new crackers come to find out is that cracking a particular account is usually difficult. Understanding this fact is a key step in becoming a successful cracker. There's great success in numbers. The more user accounts you have to try and crack, the more likely you'll have success. The reason behind this is simple and logical. If you have a pair of dice, and need to roll snake eyes(two ones), the more tries you have, the better the chance of success.

The main principle of cracking is trying as many valid users(will be covered later) as possible. Despite what others may think, have 10,000 user accounts to try and crack is a much better scenario than having 3 user accounts and 10,000 passwords.

Internet Dumb Users

  Most people on the Internet do not take security seriously. There is a misconceived notion about the Internet that it's secure and anonymous. This lack of concern leads to guessable and common passwords. Patterns, common words, and common names are usually likely passwords. These are usually chosen by these users because they're easy to remember. Another common lapse in judgment is the fact that these users usually use the same password for all things they have a password for; bank or credit card accounts, E-Mail accounts, and pretty much anything else you can imagine.

All About Passwords

 Choosing passwords to crack with is a critical of your success. Using "tert34g" as a password to crack with is not a good idea. Yeah, there's some small chance that you may achieve one successful attempt with it, but it's a waste of time.

Think about it. What do most people have in common? Names, favorite foods, favorite animals, favorite sports teams, favorite colors, etc. Instead of relying on preexisting password lists, try creating your own. Why? Things change. What was popular last year is no longer popular. MySpace as a password was logical two years ago. Now, most people haven't logged into their MySpace in months. Your unique ideas may provide you great success. Think about what's popular now... Justin Bieber, Obama, or the Miami heat. I bet you never thought of "heat" as a password.

Selective passwords are what I call passwords that are applicable only to a single website. If you're attempting to crack Facebook accounts, passwords like facebook, Facebook, or FACEBOOK are likely to be successful. If you'd like to go further, go into why people use Facebook. You can logically come to the conclusion that people use it for friends, buddies, etc. Those are logical passwords. The web site's name is one of the most common passwords used by users because it's easy to remember, and that same logic applies to every site they have an account with.

Passwords are usually lazy. Most people are too lazy to put any effort into a password, so people will rarely capitalize a password. Any part of the password. Usually, passwords cased like Michelle are rarely successful. The extra motion needed to reach the shift key is usually not a desirable motion for most users. Lowercase passwords are by far the most popular. Uppercase passwords like PASSWORD follow in second, and "properly" cased passwords like "Password" are third.

Name as password = success. One of the most successful method for cracking is using the user name as a password. Bobby's password is possibly bobby, and Janet's is likely to be janet. You can go further, and remove numbers with some programs. Bobby1945's password is possibly bobby, or even boby1945. Again, laziness. Most programs support the use of user name as password, and can remove the letters or numbers from the password for added control.


Research the Website You're Cracking

 A lot of sites are becoming critical of their users' passwords. Now, most require a minimum password length, and even have particular rules like they must contain a number. To help with this, I'll explain the most common passwords should these kinds of rule apply.

If a website requires a number, try common passwords, and add a "1", or any other number, on the end. password1, adam1, facebook1 are all quite plausible and lazy(which is what you're going for).

If a website requires a capital letter, try capitalizing the first letter, or all letters: Facebook, Password, PASSWORD, LOVE.

If a website requires a capital letter and a number, try capitalizing the first letter and adding a "1", or any other number, at the end: Password1, Michelle1, Rachel1.

If a website requires a symbol, try an exclamation mark(!) or a period(.) at the end of common passwords: password!, iloveyou., etc.

Research will prevent you from wasting time. If you don't do proper research, and you're cracking a site that requires passwords with a length of more than 4, and you're using "1234" as a password, you're not doing a bit of good other than wasting bits and bytes of bandwidth.

Trying Other Sites with Cracked Accounts
 9 times out of 10, a user has at least two accounts with the same password. An ideal situation is when you crack an account, and look in the account information, then find the user's E-Mail address. It's not even 50% likely, but there's a better chance than usual that you know that E-Mail address's password. If and when you access the E-Mail account, it's probable that all other sites the user has registered on has sent him or her an E-Mail. Not many people clean their E-Mail box.


Don't Crack Air; Use Valid Users
 
 
If a user account doesn't exist, why would you try to crack it other than to waste time? Understand that like passwords, a lot of user names are common words, phrases, or patterns. bobby1 is more likely to exist than bobby10382.

As of this moment, there are a few program available for validating whether or not accounts exist. I will not discuss or list these programs, but do the research; it's well worth it.

Combos(Password Databases)

 Combos, as they are called by most crackers, are lists of user names and passwords that have already been cracked for other sites. These are highly successful, but the success can be short lived if other users have access to the same combo. Programs that search for combos are useful, but as I just stated, the success they give can be short lived. These programs are predictable, by that I mean that they use the same, repetitive collecting mechanism.

Combos are a great asset to cracking, but it can be a gold rush which other users can "steal" your hard work.

Sample List
 
 
Here's a small sample password list off the top of my head that will likely be successful:

123456
123456789
abc123
asdf
asdfghjkl
54321
password
password1
lakers
bieber
michael
chris
jesus
money
green
yellow
blue
tiger
puppy
kitten
kitty
james
brandon
michelle
elizabeth
stacy

As you can see, all passwords are common words, or easy to remember patterns.

In Summary

 
 
Cracking accounts can be easy; and it can be hard. This all depends on your research and effort before cracking. Success is paved with research.

Speed Up Your Internet Connection With A Simple Tweak: Replace your ISP DNS Server with OpenDNS

When we type a web address in our browser [like www.google.com] and hit go, the request goes to our local ISP servers who translate that domain name into a hard-to-remember IP address [like 66.102.7.104]

While this address resolution mechanism is transparent to the average internet user, it can sometimes be the main reason for slow internet access if the DNS servers of your ISP are acting choppy or not working at all.


To overcome these problems, you can consider changing your DNS server name to a more reliable but free service called OpenDNS. There's no software to install, just a small tweak in your internet connection settings. 



We just replaced the default DSN server address of our ISP with the OpenDNS servers which are :

     208.67.222.222
     208.67.220.220




The DNS server can be changed from the TCP/IP Properties section. [Control Panel -> Network Connections -> Local Network Connection -> TCP IP Properties]

Why OpenDNS is good ? Your domain resolution request to OpenDNS is executed from the nearest physical location and the address are also cached at their end. Therefore you notice faster internet browsing. 
Second OpenDNS would auto-correct misspelled domain names [or typos]. For instance, if you type www.gooogle.com by mistake, you'll be redirected to www.google.com without any interventation. The other advantage is that you have a much safer browsing experience since OpenDNS would prevent you from visiting a scam website by error.

Some precautions before using OpenDNS

1. In the extreme situation when OpenDNS servers go down, you should keep the address of your ISP DNS servers handy.

2. You can turn off the phishing protection or auto typo correction by visiting the OpenDNS preferences page.

3. Some users might have privacy concerns with OpenDNS while some dislike seeing ads when they mis-spell domain names. The choice is completely your's here.

OEM Information & Logo - Windows XP

You can import your customized OEM Information and Logo unattended, we'll show you how in this guide.

To do this, you need to create 2 files - oeminfo.ini and oemlogo.bmp
» oeminfo.ini

Open Notepad and Copy and Paste the following example, then edit it accordingly:
[General]
Manufacturer=MSFN Unattended XP CD
Model=
[OEMSpecific]
SubModel=
SerialNo=
OEM1=
OEM2=
[Support Information]
Line1=Support Contact: chandrapalsharma95@gmail.com

Save it as oeminfo.ini
» oemlogo.bmp

Create a new image with a pixel size of 182 x 115 (width x height), customize your logo to how you would want it to look. Name the image file oemlogo.bmp.
NOTE: The MSFN Forums has a lot of discussion about the recommended image size for oemlogo.bmp. This guide used to recommend an image size of 180 x 114 (width x height). The following is quoted directly from the Setup Manager dialog of the Windows XP SP2 OEM Preinstallation Kit (OPK):
Your logo graphic (Oemlogo.bmp) must be no larger than 172 by 100 pixels. Larger graphics will be cropped, and smaller ones will be centered.
One color of the oemlogo.bmp image will be transparent, which means instead of displaying that color, the current System Properties dialog color is used. To designate the transparency color, edit all four corner pixels of oemlogo.bmp to be the exact RGB index (e.g. 0:0:0 for black, 255:255:255 for white, etc) for the desired color. Older Microsoft documentation states that only one pixel: x=0,y=0 (located on the upper left corner) needs to be so colored, some MSFN members (perhaps using different language versions of Windows XP ) have reported that coloring different corner pixels worked for them. To be sure, color all four corner pixels the same RGB index that should be transparent and all bases will be covered—it only costs 4 pixels that most likely do not contain any meaningful part of the image. If image transparency is undesirable, just edit these 4 pixels to use a color that is not used anywhere else in the image, or create a 1-pixel wide border of that color around the image.
NOTE: In order for image transparency to work, the image must be saved as either an 8-bit (256 color) or a 4-bit (128 color) indexed bitmap file. Many digital image editing software applications default to saving bitmap images as 48-bit (also called True Color). While these images will display in the System Properties dialog, the transparency feature will not work with them.
NOTE: The oemlogo.bmp will not work at all without the presence of an oeminfo.ini file.
» Testing your OEM Information & Logo

Copy both files into your Windows System32 Folder (usually C:\Windows\System32\) and open up your System Properties box to see the changes. Edit your files again until you are happy with it.
» Importing your OEM Information & Logo Automatically


We can use the $OEM$ Distribution folders to do this. Create a sub-folder called $$ if one doesn't exist already, then create another sub-folder within $$ called System32. For example:

C:\XPCD\$OEM$\$$\System32\

Copy both oeminfo.ini and oemlogo.bmp to the System32 folder explained above. When Windows XP Setup is run, both of these files will be automatically copied to Windows' System32 directory, no matter what the Windows folder is called.

» Conclusion

If you done everything correctly, your System Properties box should look something like this:

[General]
Manufacturer=MSFN Unattended XP CD
Model=
[OEMSpecific]
SubModel=
SerialNo=
OEM1=
OEM2=
[Support Information]
Line1=Support Contact: chandrapalsharma95@gmail.com

Matrix Falling Code Effect - Notepad CMD (.BAT) Tricks

Inspired by the movie Matrix, this falling code trick is extremely popular on social networking websites. Copy and paste the code given below in Notepad and save the file as "Matrix.bat" or *.bat.

@echo off
color 02
:tricks
echo %random%%random%%random%%random%%random%%random%%random%%random%
echo %random%%random%%random%%random%%random%%random%%random%%random%
echo %random%%random%%random%%random%%random%%random%%random%%random%
goto tricks




Matrix Falling Code Effect - Notepad Trick

Upon running the bat file, you will see the "Matrix falling code" effect.

Make Your Keyboard Type (Any) Message Continuously - VBS Trick

This VBS trick can make any of your friend's keyboard type any message continuously. Open Notepad, copy the code given below and save the file as Tricks.vbs or *.vbs.


Set wshShell = wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "This is a Virus. You have been infected."
loop






Send this file to your friends as an email attachment to see the fun

Make your Computer Welcome You

Do you watch movies? Have you always loved the way how Computers in movies welcome their users by calling out their names? I bet that you too would want to know how you can achieve similar results on your PC and have a computer said welcome.

Then you are at the right place, this article describes exactly how you can make your computer welcome you like this.

With this trick, you can make your Computer welcome you in its computerized voice instead of having a human said Welcome. You can make your Windows based computer say "Welcome to your PC, Username."

Make Windows Greet you with a Custom Voice Message at Startup

To use this trick, follow the instructions given below:-
  1. Click on Start. Navigate to All Programs, Accessories and Notepad.
  2. Copy and paste the exact code given below.
Dim speaks, speech
speaks="Welcome to your PC, Username"
Set speech=CreateObject("sapi.spvoice")
speech.Speak speaks

     3.  Replace Username with your own name.
     4.  Click on File Menu, Save As, select All Types in Save as Type option, and save the file as Welcome.vbs or "*.vbs".
     5.  Copy the saved file.
     6.  Navigate to C:\Documents and Settings\All Users\Start Menu\Programs\Startup (in Windows XP) or to C:\Users\ User-Name\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup (in Windows 7 and Windows Vista) if C: is your System drive.
     7.  Paste the file.

Now when the next time you start your computer, Windows will welcome you in its own computerized voice.

Note: For best results, it is recommended to change sound scheme to No Sounds.
You can change the sound scheme to No Sounds by following the steps given below:-
  1. Go to Control Panel.
  2. Then click on Switch to Classic View.
  3. Then Click on Sounds and Audio Devices.
  4. Then Click on the Sounds Tab.
  5. Select No Sounds from the Sound Scheme option.
  6. If you wish to save your Previous Sound Scheme, you can save it by clicking Yes in the popup menu.
  7. Click on OK.


Try it yourself to see how it works. In my personal opinion, this is an excellent trick. Whenever I start my PC in front of anybody and the PC welcomes me, the fellow is left wondering how brilliant a computer do I have.

Make your Computer Talk

Have you ever wondered how can you make your computer speak whatever you input to it like in the movies. Would it not be fun? If only it was possible! Rejoice, because now it is possible. Well, if you wish to know how to do this, then you have come to the right place. With this trick, you can create a script in Windows which will make your computer speak whatever you input to it.


To create one such talk script, follow the steps given below:-


Steps
  1. Open Notepad.
  2. Copy and paste the exact code given below.
          Dim Message, Speak
          Message=InputBox("Enter text","Speak")
          Set Speak=CreateObject("sapi.spvoice")
          Speak.Speak Message

    3. Click on File Menu, Save As, select All Types in Save as Type option, and save the file as Speak.vbs or "*.vbs".
    4.  Double click on the saved file, a window will open like the one in the image. Enter some text in enter text column and click OK.


Now your Computer will speak / talk what you typed in Step 4. Try it yourself.

Windows Compatibility: This VBS file can be executed on all versions of Windows including Windows XP, Windows Vista and Windows 7.

Personal Experience: I personally showed this trick to many of my friends and they were literally left awestruck. You too can impress your friends by making your PC talk and be the Computer Wiz.