my window on the web

Blogs

Sorting the garden out

My dad came over today to help sort our garden out. We wanted to open the end of the garden up to grow some colourful plants and maybe add a few solar lights. The end of the garden was previously segmented into smaller pieces, with a raised patch with a few shrubs and some fenced off stones.

End of the garden before

End of the garden before

Here you can see we started to knock the wall down before but had to put it off for a while as the foundation of the wall went quite deep. Quite satisfying work, knocking a wall down!

End of the garden before

Half way through

Once we broke into the wall foundations we managed to pull large chunks of the wall up without any problems. All that's left to do is tidy up!

Finished the end of the garden

Finished the end of the garden

Here's the finished result - a nice patch of soil ready for a few layers of colourful plants and some solar lights.

Foursquare Vs. Gowalla

With recent news about Facebook’s new ‘Places’ feature it looks like location based social networking could become the next big thing over the next couple of years. In case you can’t wait for this to be fully rolled out and you want to give one of the established location based social networks a try, here’s some background info.

Book Review: CodeIgniter 1.7 Professional Development by Adam Griffiths (Packt Publishing)

CodeIgniter 1.7 Professional Development by Adam Griffiths is a great introduction to CodeIgniter - and the Model-View-Controller (MVC) design pattern in general - for intermediate and advanced PHP developers. I was asked to write a review of this book by Packt Publishing and this is now my third CodeIgniter specific book which I've studied. I’ve been working with CodeIgniter on several projects for over two years now so I’ve become quite familiar with the framework, but I’m always interested to see how other people approach problems and use the libraries available. There’re always a few hidden gems which are waiting to be discovered!

Another CodeIgniter book review on the way

CodeIgniter 1.7 Professional Development book frontI'll be posting another CodeIgniter book review for Packt Publishing shortly: 'CodeIgniter 1.7 Professional Development' by Adam Griffiths.

I'm really looking forward to reading this book, in particular the chapter on user authentication through Twitter and Facebook Connect.

Sample chapter

Beautiful time lapse video of Tokyo

I just saw this great time lapse video of Tokyo! I especially like 1:56 when the planes are coming in. Great choice of music too! Nice work!

Get up and go from Stefan Werc on Vimeo.

Android 2.1 (Eclair) for T-Mobile G2 Touch (HTC Hero) possibly coming soon?

Well, it's now April and many T-Mobile G2 Touch owners are waiting for the Android 2.1 update for their handsets, although all is still quiet on the news front. The last update from T-Mobile I saw was back in February when T-Mobile announced that they will be releasing "a firmware upgrade in April for the T-Mobile G2 Touch". We're all hoping that this will indeed be the Android 2.1 Eclair update we've been waiting for. There are some rumours out there as to the exact date and content of this release, but none of these are confirmed, so all we can do is play the waiting game for now.

I'll be checking the Android Updates section on the T-Mobile website throughout the month to see if anything appears, Eclair or otherwise.

Trying out Mollom for Drupal

I've decided to give the web service, Mollom, a try since my CAPTCHA, which I kept tweaking to the point where I nearly couldn't read it, was letting me down. The problem with CAPTCHA is it logs how many form submissions it blocks, which is great, but this doesn't necessarily mean SPAM submissions; it could be frustrated people not being able to post a comment on your blog. Mollom works by analysing the form submission for SPAM patterns, then determining whether it is suitable or not. It's quite strange to see my forms without a CAPTCHA underneath, but I should know soon enough how well the service works as I have many form submissions blocked by CAPTCHA each day.

Mollom is available for Drupal, Wordpress, Joomla! and many more CMSs. It also has developer libraries for PHP, Java, Ruby, Python and many more.

Book review: CodeIgniter 1.7 by Jose Argudo Blanco and David Upton (Packt Publishing)

The CodeIgniter framework is a secret weapon for many web developers as it allows you to quickly build complex web applications in a structured and organised way. I started using CodeIgniter over a year ago now so I've approached Packt's CodeIgniter 1.7 by Jose Argudo Blanco and David Upson as a way of expanding upon when I've already learnt from the user guide, forums and a book which I had previously read from Wrox called Professional CodeIgniter by Thomas Myer.

Drupal Editor for Android

I've just installed the Drupal Editor app for Android and this is my first 'test post' if you will. It's quite a simple app that connects to your Drupal site through the core blog api module. It then shows a list of all Drupal blogs and allows you to view, edit or delete the posts. You can also post new entries and assign taxonomy terms to them. It's simple and gets the job done!
To install this app search for 'Drupal Editor' on the Android Market. Enjoy!

'PHP Nature' missing from 'Project Natures' in Aptana Studio 2.0

For some reason, even though I have the PHP Development Tools (PDT) installed in Aptana Studio (2.0), I'm not able to select 'PHP nature' in the 'Project natures' of an imported project. I can start a new PHP Project which will have the 'PHP nature' selected as primary nature, but this doesn't even appear as an option in imported projects. The only two natures that are available are 'Remote Nature' and 'Web Nature'. The 'PHP nature' adds some really useful functions, like grouping my @todos into Aptana's Tasks view and also other handy things like auto-completing PHP docblocks.

To get the 'PHP nature' associated with your imported project you can manually edit the .project file which Aptana creates in your imported project directory so that it contains the 'PHP nature'. To do this, add the following code between the <natures> tags in your .project file:

<natures>
   <nature>org.eclipse.php.core.PHPNature</nature>     
</natures>

You may need to re-load Aptana to refresh the project but you should now find that your imported project has a primary 'PHP nature' set.

Note: Please do this at your own risk; although it worked fine for me I don't know if it will cause any side effects to the project or Aptana.