December 28th, 2009 — Tech
Just recently Google announced a great feature as part of the Webmaster Tools: you can fetch your site with the Googlebot. At first I thought they would reveal what content gets extracted from the site and how they might proceed from there but they just seem to crawl your site, showing you the HTTP header fields and the site’s content.
In this post I’d like to present some Java code using the latest and greatest version of HttpClient that allows you to crawl any site, have a look at the HTTP header fields, the site’s content and measure how long it took to download the site. It’s almost the same what Google’s feature does.
The Eclipse project with the code for this post can be downloaded as tar.gz or zip. You can browse the code online here.
Continue reading →
December 24th, 2009 — Review
Since I switched to Apple using an early version of the MacBook Pro at the end of 2006, I’ve really enjoyed the features of this fine notebook and working with MacOS in general. After working with Linux almost ten years everything got so much easier without compromising on flexibility.
Now, three years later, I decided to get a new Mac: it should be fast and have a big screen. The 27″ iMac with an i7 processor seemed to be the perfect match. This post is about my first week of using this great computer.
Continue reading →
December 20th, 2009 — Tech
Every once in a while I would like to test whether the current page is a descendant of another page. This is particularly useful if you want to display certain content on a subset of your pages only. Although the Codex suggests a similar is_tree function I would like to present an extended version here.
I’ve packaged the functionality inside a WordPress plugin called is_child that you can download here. Unzip it, upload it to wp-content/plugins and activate the plugin.
Continue reading →
December 18th, 2009 — Tech
If you’re reading a lot of code you may get to the point where you’d like it to be clean, so it’s easier for you to read. There’re a lot of resources about the beauty of code around and in this post I’d like to share some ideas about writing concise if statements.
Although these ideas may apply to a lot of different programming languages I chose to give examples written in Java, PHP or Python. There should be no problem to translate this into other, similar languages.
Continue reading →