![]() |
| Home RSS Directory F.A.Q Suggest A Feed Try Custom Feed Sonneries Portable |
Latest Flows from this sub-category: random selection from this sub-category: |
Click here mom! Fri, 25 Jul 2008 11:12:09 +0200 When I noticed there aren’t many options for translating the text on your (non-CMS) website in a way that gives you ALL the credit, I decided I’d give it a shot by writing my first real PHP script. Here’s how I did it…
First stop was Google Translate to find out how many different languages I [...]
Mon, 02 Jun 2008 12:55:00 +0200 I’ve been wanting to understand how Esrun’s cURL multi socket example php script works and thought the URL/Webpage Analysis tool would be a good sandbox considering how slow it was. I say, “was” because however the cURL multi interface works, it’s ridiculously faster than the tried and true file_get_contents so I updated the tool.
Post from: [...]
Mon, 02 Jun 2008 06:40:27 +0200 I updated two SEO experiments from the SEO section of this site today…
Can I get banned for spammy comments on my blog?
How long does it take to get 1,000 pages indexed?
I haven’t quite hit the “go” button on these experiments yet but I’ll post an update when I do and have something worth writing about.
Post [...]
Sun, 01 Jun 2008 23:09:36 +0200 A very basic implementation of the cURL/PHP that tunnels a URL request through an HTTP proxy. Proxies not included.
<?php function curl_proxy_browse($url) {
$url = "http://adammoro.net/code/php/";
$proxy = "INSERT-PROXY-HERE";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_PROXY, $proxy);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_TIMEOUT, 10);
$data = curl_exec($ch);
curl_close($ch);
return $data;
}
$page = curl_proxy_browse($url);
echo $page;
?>
Post from: AMNET SEO Blog at adammoro.net.
Thu, 22 May 2008 09:25:08 +0200 I added some more features to the URL / Webpage Analysis tool (that name sucks) to take another step towards making it all I need to quickly check a URL on ALL fronts. Unfortunately, the quickly part became an issue with this update as whatever I did made it a whole lot slower than it [...]
Thu, 22 May 2008 06:04:59 +0200 I should warn you that I’m not a PHP developer but a beginner just learning so with that said, these functions may not be written to a professional developer’s standards. In any case, they work so I posted them here in the free PHP code section of this site under, “Free PHP Functions”. I’ll eventually [...]
Mon, 19 May 2008 20:25:08 +0200 I don’t normally jump like this for memes (even for fortune cookies) but I can’t pass up the chance for a link from the infamous Quadszilla. Hey Quads, here’s mine…
Post from: AMNET SEO Blog at adammoro.net.
Sat, 17 May 2008 00:52:13 +0200 If you can’t figure out how it works you probably shouldn’t be using it. I’m not answering any questions about it and I do NOT recommend using it without first reading the disclaimer which is located at the first paragraph of the TweepyCREEP Download Page.
Post from: AMNET SEO Blog at adammoro.net.
Sun, 04 May 2008 22:06:10 +0200 So I guess you’ve all heard the news about Microsoft withdrawing their bid to acquire Yahoo! Thanks @oggin for the tweet linking to the press release. Aside from the withdrawal of course, the part that piqued my interest was what Steve Ballmer, Microsoft’s CEO, said in regards to Yahoo!’s intent to make their company less [...]
Sun, 04 May 2008 02:40:09 +0200 I think I had my first Internet crush when I came across who’s only to be known as Becky C. She describes herself as a, “sapphic post-modern neo-feminist libertarian cyberpunk” and judging by her addictive writing style, I might even say that’s an understatement. Anyway, she’s not an SEO nor is she active in the [...]
|
|
contact |