How to: Find hundreds of e-mail adresses

How to: Using Python and Google to find hundreds of e-mail adresses

See how to and code here

Who never received lots of unwanted messages on their e-mail? Certainly, few of us. You probably know it, you should never leave your email address in a web page. To understand why, I propose you to study this small Python script, which will scan the Google search for e-mail addresses. You may be surprised by how much results it will get.

Please note that this article is only a proof of concept and it may only be used for studying and learn how easily spammers can retrieves e-mail adresses by using Google and a simple Python script.

How to steal (copy) a wordpress theme

Copying the whole wordpress theme is not easy task but not too difficult as you think. In this post, I?m going to teach you how to copy the wordpress theme using Firefox and Firefox plugin called Firebug. But I?m afraid that my guideness will lead you to be a thief. Keep in mind that you should consider copyright and respect other?s people work. This tutorial will helps you to improve your knowledge of XHTML, CSS and the wordpress coding.

Before you start you must have Wordpress runing on your local machine, knowledge of XHTML, CSS and programming. And your computer must has Firefox installed and it?s plugin called Firebug.

So, lets get started. First, make a theme folder (name it whatever you like) under /wp-content/themes/. Visit the blog you like to copy it?s theme. Here, I?m using Wordpress?s classic theme. Copy the CSS codes from CSS tab in Firebug Windows .

Select all of CSS codes and paste into text editor (notepad). Put the following codes at the beginning of CSS codes previously copied into notepad. The following codes are used for wordpress theme information.

/*
Theme Name: Your theme name
Theme URI: http://yourthemeURL.com/
Description: Your theme description blah blah blah
Version: 1.1
Author: Your name
Author URI: E-Commerce Hosting
*/

Save it as style.css into theme folder you created under wp-content/themes/.
Firebug?s HTML tab collasped the heading tag and body tag by default. Create a index.php under your theme folder. Write the following codes.

<!DOCTYPE html PUBLIC ?-//W3C//DTD XHTML 1.0 Transitional//EN? ?http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd?>

<html xmlns=?http://www.w3.org/1999/xhtml?>
<head profile=?http://gmpg.org/xfn/11″>

</head>

<body>

</body>
</html>

language_attributes() can be used to add lang, xml:lang and dir attributes to the html tag for your theme. Put this function after xmlns attribute in html tag.

<html xmlns=?http://www.w3.org/1999/xhtml? <?php language_attributes(); ?>>

Understanding BlogInfo functions

BlogInfo returns the information you set in User Profile and General Options from your Wordpress Administration panel. Following codes are the basic information of your wordpress needed for html. Those codes must be inside heading <head> tags.

<meta http-equiv=?Content-Type? content=?<?php bloginfo(?html_type?); ?>; charset=<?php bloginfo(?charset?); ?>? />
<meta name=?generator? content=?WordPress <?php bloginfo(?version?); ?>? />
<link rel=?alternate? type=?application/rss+xml? title=?RSS 2.0″ href=?<?php bloginfo(?rss2_url?); ?>? />
<link rel=?alternate? type=?text/xml? title=?RSS .92″ href=?<?php bloginfo(?rss_url?); ?>? />
<link rel=?alternate? type=?application/atom+xml? title=?Atom 0.3″ href=?<?php bloginfo(?atom_url?); ?>? />
<link rel=?pingback? href=?<?php bloginfo(?pingback_url?); ?>? />
<?php wp_get_archives(?type=monthly&format=link?); ?>
<?php wp_head(); ?>
<style type=?text/css? media=?screen?>
@import url( <?php bloginfo(?stylesheet_url?); ?> );
</style>

Use Better SEO title

<title><?php wp_title(?); ?> <?php if(is_single() || is_page() || is_category){ _e(?»?);}?><?php bloginfo(?name?); ?></title>

Title tag must be inside heading tags.

Let?s start copy the well-formed tag elements
Before you start this lesson, you must have the knowledge about html and wordpress coding. The idea is that we first copy the parent tag elements and then we copy it?s child elements. We repeat the process till all of the tags are copied.
[IMG] adsnews.net/wp-content/images/firebug-html-tags-wordpress.jpg
Expand each tags and try to understand the functions used in the theme

It is important to know the wordpress functions used in the theme which you?re going to copy. First expand the tags and look up and determine what functions are used inside the tags.
[IMG] adsnews.net/wp-content/images/firebug-html-tags-expand.png
An example for code shown in above,

Wordpress has bloginfo function that can generate the basic information of your wordpress I already mentioned. Right now, I?m going to change with the wordpress coding. The following codes will generate the result shown in above.

<h1><a href=?<?php bloginfo(?url?);?>?><?php bloginfo(?title?);?></a></h1>

<div class=?description?><?php bloginfo(?description?);?></div>

Many of wordpress theme creators used default posts query in the theme except custom one. Some used query_posts to make custom query for some purposed. It doesn?t matter. All are in the loop.

Understand the basic structure of Post looping

The Loop is used by WordPress to display each of your posts. Using The Loop, WordPress processes each of the posts to be displayed on the current page and formats them according to how they match specified criteria within The Loop tags. This is the basic structure of the_loop. Inside this we normally put the_title(), the_permalink(), the_content(), etc.

<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>

<?php endwhile; else: ?>
<?php _e(?Sorry, no posts matched your criteria.?); ?>
<?php endif; ?>

If you?re doing programming, you can easily know that the following codes are generated from Loop.
[IMG] adsnews.net/wp-content/images/firebug-html-tags-query.png
The following codes will output shown above

<div id=?post-<?php the_ID(); ?>? class=?post?>

</div>

Expand that div you?ll see the following sub elements
[IMG] adsnews.net/wp-content/images/firebug-post-tags-wordpress-01.jpg
Expand h2 tag element.
[IMG] adsnews.net/wp-content/images/firebug-post-tags-wordpress-02.jpg
the_title and the_permalink

the_title returns the post title and the_permalink returns the permalink of your post. So rewrite with the
php code

<h2>
<a title=?Permanet Link to <?php the_title();?>? rel=?bookmark? href=?<?php the_permalink();?>?>
<?php the_title();?></a>
</h2>

the_time or the_date

the_time returns the all the date of your post. and the_date only returns the date of first post which is published in same day. I prefer you to use the_time

<small><?php the_time(?F d, Y?);?></small>

Check date time format from PHP.net
the_content

the_content returns the content of post. Optional parameter is used for showing read more link if the post used <!?more?>

<div class=?entry?>
the_content (?Read the rest of this entry?);
</div>

the_tags

the_tags function return the tags link of the post. It was implemented in wordpress 2.3. the_tags(?start?, ?seperate?,?end?);

<p class=?postmetadata?>
the_tags (?Tags:?, ?, ?, ?<br />?);
</p>

Wordpress uses header.php, index.php, single.php, page.php, category.php, search.php, comments.php, functions.php and footer.php for theme. Oh! you can use only index.php for your theme. But need to write more complicated codes when you?re using different style for different page. Let?s say, if you want main , single post and page different. You have to choose either conditional_tags or the page.

For example, the following code will show excerpt post while browsing the category, search, tags and main page. It shows full content when browsing ? ? ha ha single post

<?php if (is_category() || is_search() || is_tags() || is_main()) {
the_excerpt();
}else {
the_content();
}
?>

Recommended Hosting Company!

i used some hosting company, here are my reviews.

Bluehost : The best i think

HostMonster : Same as bluehost, its sister site.

Lunarpage : Good hosting if your website don’t use too much CPU

 

Instant Adsense Empire Download

Instant Adsense Empire Download

What if I tell you that you can get 237 pre-built Adsense ready websites fully optimized, with over 26 000 pages full of laser targeted content displaying over 165 000 ads…TODAY!!!

The fact is, it takes an average of 3 hours to build a single Adsense website.

Can you imagine yourself building 237 of these?

Why would you bother anyway? Since you can get them RIGHT NOW!!!…and save 711 hours of work…That is 88 regular days of work…

Your cost only $0.29 per website.

Would you work and spend 3 hours building such a website for $0.29?

I guess not…and if you do let me know, because I might be interested in employing you…

Wouldn’t it be awesome to have 237 websites working for you 24/7?

The reality is, you do not have to feed them.

You don’t have to pay them a salary.

They will not ask for a raise.

They will not complain to the unions.

They will not ask for any holidays.

They will not ask you “how do I do this? How do I do that?”

What each single website does, is generate cash for you and shut up…how about that for the perfect employee?…and you get 237 of them…TODAY!!!

Welcome to the INSTANT ADSENSE EMPIRE mega package website, grab a cup of tea or coffee, sit back and read on, because you will never come across such an opportunity to own so much for so little.

Download links and infos

http://www.instantadsenseempire.net/DATP/
Username: myjaw

Password: hasdropped
And for
http://www.instantadsenseempire.net/NATP/
Username: myniche

Password: ishuge

2008 Godaddy Coupon Code

OYH3 - $3 off / $6.95 any .COM (renewals too… just used it)

BTPS7 - 20% any order of $50 or more

OYH1 - 10% off whatever

OYH2 - $5 off a $30 purchase

BTPS4 - 10% off anything

chill1 - 10% off

chill2 - $5 off $30

chill3 - $6.95 .coms

hash1 - 10% off

hash2 - $5 off $30

hash3 - $6.95 .com registration

gdd1101c - 10% off any order of $40 or more

 

If the code don’t work now, try search “godaddy coupon” in google, it will bring you to newest coupon code.

Blogging Arsenal Package

This is a package of scripts and ebooks related to blog promotion. You may recognize some of the scripts (like the Yahoo360 mass page creator). Others may be new to some of you.

The salesletter (package shared here is the Master Resell Rights License version):
Code:

hxxp://www.nicheprof.com/nicheprofbloggingarsenal.html

Items include:

    * Yahoo360 Mass Article Generator
    * Extreme Live Blog Article Automator
    * Google Page Bomber
    * Viral Traffic Zip
    * Cash Lover’s Guide to Blogging
    * 20 Hot Niche Headers
    * GEO Authority Link Explosion Generator
    * Advanced SEO Techniques
    * Social Bookmarking Quickstart Guide
    * Traffic Strategies for Success
    * Beginners Guide to Niche Marketing
and 7 other items.

Direct link to download :http://www.oo27.com/bloggingpersonal/

 

Make Targeted Adsense Results Easily!

Make Targeted Adsense After-effects Easy

Adsense is a abundant way to accomplish assets for your website if you are accommodating to put up advertisements for added companies. Adsense is aswell a abundant way for a business to acquaint at a low bulk and accomplish added cartage to their site. Regardless of which ancillary of the fence you sit on, it is important that Adsense after-effects are targeted. I will altercate how this allowances both the advertiser and the business that is accomplishing the advertising.

Let say you accept a business and you are acceptance advertisements for added businesses to be acquaint there through Adsense. The alone way you accomplish any money is if the advertisement is targeted arise something the consumers examination your website are absorbed in. It alone makes faculty for the ads to be in the aforementioned ballpark as what you action but not an ad that anon competes with what you are offering.

On the advertisers end, Adsense is a abundant way to get added cartage to their website. They aswell alone pay for anniversary bang that links aback to there website from the ones area the ads are posted. Behind the scenes, a lot of harder plan and time are advance in advertising. What acceptable does it do if no one looks at the ads? There would be no argumentation to commercial sports cars on a website that is for accouchement or commercial amber on a website for diabetic food unless the bonbon is for diabetics, again we accept something to plan with!

Adsense from Google has a abundant arrangement they plan with. The added advice a business gives them if they assurance up either to acquaint or to host advertisements, the bigger the ambition will be met. Google Adsense works harder to bout advertisements with what the assorted websites are alms as able-bodied as the ambition age group. Their abstracts is aswell based on what the consumers out there are searching for. They are actual acquainted of customer trends. The ambition is to get advertisements of the websites that arise accustomed to the consumer. It is aswell out of respect. Who wants to go online for a brace of active shoes and see ads for developed articles and websites?

Keywords are actual important if it comes to Adsense. This helps the arrangement bout up advertisers and advertisement hosts by comparing the keywords. The added keywords you access if you complete your appliance at Adwords, the added matches will be provided. Agreeable on your website is important for accepting advertisements to host on your website. In fact, the added agreeable you accept the added advertisements will appear your way. This is because the robots of the Adsense affairs at Google will aces up on this added content. You can aswell abode added keywords if you accept added content.

Section targeting is aswell a abundant way to get the after-effects you are searching for. This adjustment allows you to advance accurate portions of your argument that is allotment of your website to Google. You can appeal that they accomplish advertisements for your website to host based on that actual and content. Section targeting is actual simple to apparatus as it alone involves abacus assertive html comments to the html cipher of your website. You aswell accept the adeptness to ask Google and the Adsense affairs to avoid accurate portions of actual and agreeable on your website that you do not wish to action advertisements for.

Adsense can plan actual able-bodied for you as an bargain way to get added commercial for your business. This is done by paying added websites to host your advertisements. You will pay them a set bulk anniversary time a customer clicks the ad from their website bond to yours.

Get Google Adwords Free!

 free adwords

Check out http://www.oo27.com/freegoogleadwords/ to know more!

Free To Use Google Adwords

A new advance abstruse is all you now charge in adjustment to get your Google AdWords pay-per-clicks FREE!

A admirer from New York apparent what he calls an “oversight” on the allotment of 99.9% of all marketers that allows him to get contrarily paid-for commercial at Google as able-bodied as all added seek engines that acquiesce sponsored ads.

And no, annihilation about his “secret” is actionable - nor does it crave that you apperceive anyone on the “inside” at Google, Yahoo, MSN, Overture and others.

Instead, the New Yorker boasts proudly “…this is something that I bent assimilate just afore 2000 if there was so abundant seek engine chic active around, and started accomplishing baby just to analysis things at aboriginal … but which I afterwards broadcast on afterwards accepting the adhere of it.”

This aforementioned adolescent went on to alpha and accomplish sixteen abstracted online companies affairs aggregate from pet food, DVDs, children’s toys & games, books, software, and awash not alone his own bogus articles but became an associate for added web businesses - all the while applying his administrator secret.

Over the advance of about eight years the New Englander confesses “I’ve in fact gotten over actor in commercial that application my abstruse I never had to pay for … and the better allotment of which was added afresh in Google pay-per-clicks as able-bodied as added forms of pad commercial at seek engines … all of which I got for chargeless …”

So able is his abstruse that he’s able to absorb any alcove online, and can consistently defended the top exceptional spots just aloft the accepted amoebic after-effects featured at a lot of seek engines.

He still has to set up an annual with the seek engines - but afterwards applying his abstruse he is removed from accepting to pay for all the costs contrarily involved.

Again, annihilation about his abstruse is either actionable or robs from the seek engines.

One agent from one of the a lot of accepted seek engines said amusement afterwards accepting fabricated buried to this amazing abstruse “Wow! Ha! This is absolutely different … and in my able assessment it would alone serve to enhance and accompany added business to us at [name of seek engine withheld for acknowledged & acquaintance reasons] and not could cause us to lose business in the slightest. Amazing!”

The northerner appear that in this about eight years’ aeon of time back applying his abstruse he’s done able-bodied over 0 actor in sales acquirement with a a lot of assorted band of products, and a lot of afresh in the endure two years netted about 6 actor afterwards absolutely “buckling down and acute my abstruse to its fullest potential.”

Now to anybody else’s fortune, the city-limits slicker is absolution his abstruse for accepting an absolute bulk of pay-per-click ads to the accepted public. But he’s not able any of us for how long.

A bit of an eccentric, the admirer says “We’ll see just how continued I can accomplish it accessible afore it saturates things.”

One acclaimed accessible web authority acicular out that although this man may accretion economically added so as a aftereffect of the advertisement of his abstruse “he’s already so amazingly affluent that whether he continues or discontinues its auction will neither accomplish nor breach the man, but not avaricious it for yourself while it’s still accessible could prove adverse for you as you may alone accept one chance, and a actual bound one at that, to get this.”

It is currently accessible at:

http://www.oo27.com/freegoogleadwords/

…so you may wish to arch on over there now and get it.

It’s in a actual calmly clear architecture and is bound and readily accepted and baffled by anyone with even a 4th brand account level.

While you’re there, why not annal down and analysis for yourself the huge successes others are now accepting with this absurd advance in targeted commercial now fabricated advisedly accessible to the blow of us?

To your success,

- Jack

Pay Advertising Better Than Free Advertising?

There are abounding means to bazaar your home business, but some are bigger than others. There are amaranthine opportunities on the internet to acquaint and the bulk varies. There are even chargeless commercial methods accessible that plan abundant as well. No bulk how you bazaar your business some methods are added cost-effective than others.

If your home business is new or you are just starting to advertise, it is apparently not reasonable to absorb a lot of money appropriate away. If you wish to acquaint locally you could abode an advertisement in your bounded bi-weekly or account boards. You could aswell forward out fliers and postcards and book them out at home to save on costs. It is accept to absorb some money on commercial costs, afterwards all a business is an investment, even a home business. Most offline commercial has a baby bulk that have to be accustomed for, whether it be sending out postcards, press fliers, agreement an ad in the bi-weekly or bulletin.

The alone accurate chargeless commercial you will acquisition is chat of aperture and online commercial methods. One anatomy of online commercial is appointment marketing. You can column links to your website in some forums that acquiesce it. Other methods cover announcement to classified sites such as Craigslist, cartage and banderole exchanges, opt-in lists and abounding others. There are abounding chargeless commercial methods, but there aswell abounding paid commercial methods. You can pay a baby fee to column to some classified sites, pay a ancient fee to forward out a abandoned ad in an ezine newsletter, abode a banderole ad on a website or use pay-per-click advertising. Depending on your account and how abundant you are accommodating to pay, your methods of commercial can be limited. It is a acceptable abstraction to try altered methods and mix things up a bit. Once a assertive adjustment works, accumulate application it. A chat of admonishing though, if the acknowledgment you acquire is beneath than the bulk you paid for the advertisement, it isn account it, period. There are affluence of chargeless commercial methods that plan actual well, so you should alpha there first. Once you alpha bringing money into your home business you can reinvest some of it on paid advertising.

If you adopt the offline commercial method, or wish to alpha there, you can analysis your barter and ask them how they begin out about you. This way you will be able to actuate which adjustment is working, and added importantly, profitable. You will aswell be able to get rid of an commercial adjustment that is not assuming as well, extenuative you money. You can again use that money you are extenuative appear the business action that you apperceive is alive well. If you like the abstraction of online marketing, there are abounding means to clue your ads, usually in absolute time. This allows you to analysis your ads and see the after-effects in a few hours, not canicule or months.

Finding the best business adjustment for your home business will yield time, so you have to be accommodating to be accommodating and analysis altered methods. Your best bet may be to try a aggregate of chargeless and paid methods and not absolute yourself to just a individual access of advertising. In any case, you have to acquaint your home business if you apprehend to get any customers. Finding the best commercial band-aid is not difficult but will yield some time and effort, but in the end it is able-bodied account it.

Next Page »