SRWare Iron Chrome Clone

January 13th, 2010

The SRware Iron browser is probably my favorite find in the past few months. It’s a chrome clone without all of the callbacks to Google’s data mining. So basically, you can browse without sending google all your browsing habits.

“Google’s Web browser Chrome thrilled with an extremely fast site rendering, a sleek design and innovative features. But it also gets critic from data protection specialists , for reasons such as creating a unique user ID or the submission of entries to Google to generate suggestions. SRWare Iron is a real alternative. The browser is based on the Chromium-source and offers the same features as Chrome – but without the critical points that the privacy concern.

We could therefore create a browser with which you can now use the innovative features without worrying about your privacy.”

Link Farm Evolution Is Bananas

December 22nd, 2009

So I just got my hands on Link Farm Evolution and I’ve gotta say that it’s pretty damn sweet. I made about 500 blogs last night and even though the numbers of active ones dwindled quite a bit I think it’s still great to have such a huge link farm with targetted keywords.

I’m in the process of making another 1000 blogs with some keyword lists taken from Market Samurai and I’ll be updating the progress and any changes in rankings as I start using this powerful link building program more and more. It’s hard to do things slowly but the slower the more natural all these back links are going to look to the search engines.

If you haven’t already checked it out, GET ON IT.

Automating Twitter

December 13th, 2009

So I’ve been messing with twitter lately. I set up a few of my blogs with wp-to-twitter and I’ve found a nice little tool called Phoenix Twitter Desktop by Pyrogenic Media. It seems to be working pretty well. I’ve only used the friend adder and had some success with getting people to follow me. I’ll do some followups eventually and see if I can drive more traffic to my money sites using this method.

Related Blogs

Simple Proxy Scraper

December 12th, 2009

I’ve been obsessed with all things black hat these days, I really can’t say that’s a big change from what I’ve been all about from day one but I’m really starting to take things seriously and start writing my own tools and get more splogs up as the days go on. It’s a great way to learn the things I want to learn quickly and profit a little bit as I go.

I wrote this up a few days ago to scrape some proxies for use with BookmarkWiz. I will be rewriting this script to write to a file and I’m currently throwing together a tester to get all the working proxies and ditch all the crap ones.

// get url contents
// pretty much any url will work
$url = "http://www.ddday.com/free-proxy-server/anonymous-proxy-server/anonymous-proxy-server-–-updated-2009-12-11/";

//Initialize a cURL session

$ch = curl_init();

curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1); //Return page contents
curl_setopt ($ch, CURLOPT_URL, $url); // Pass URL as parameter
$result = curl_exec($ch); // Grab URL and pass it to the variable
curl_close($ch); // close curl resource and free up sys resources

$regex = '/[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}[:][0-9]{1,5}/';

if (preg_match_all($regex,$result,$matches)) {

foreach ($matches as $proxies) {
foreach ($proxies as $proxy) {
echo $proxy . "
\n";
}
}
} else {
echo "Not an IP address!
\n";
}
?>