Blog


  1. Thoughts on Running an Open Source Project


    I spoke in the unconference at PHPUK last week, on running an open source project. I thought I would collect together my thoughts into one place before I lose the scratty piece of paper I wrote them down on.

    Read more

  2. Using iterator_to_array() in PHP


    Someone watching over my shoulder recently had never seen the ubiquitously-useful `iterator_to_array() <http://uk3.php.net/manual/en/function.iterator-to-array.php>`__ before. I'm sure they weren't alone and since I just typed it again, I thought I'd share a snippet.

    Read more

  3. A Freemium Business Model


    I have an android smartphone, and I have *very* few paid for applications on it. Mostly I have document viewers, the wordpress app, mail/calendar/map from google, and so on - plus a couple of free games. In January I downloaded a new game and I've been playing it pretty regularly since*.

    Read more

  4. Wedding Stationery


    In case you missed it, ours was a small wedding - which means that the majority of our friends and family weren't actually there! We loved our small wedding but I knew that I still wanted to share a small flavour of the day with some of those friends and family, and also get some mementos for our home.

    When browsing the moo.com site (it is usually best to hide all payment cards out of reach before doing this!) I had seen the postcards that they make and decided this would be a great way to send a small selection of photos to a few people. Once we got the "official" photos in, I ordered some postcards, and I think they turned out rather well!

    Wedding Postcards

    Read more

  5. Upcoming PHP Courses


    image1Since becoming freelance 18 months ago, I've taught a number of courses at my excellent local tech training centre, NTI Leeds. Over the next few months we're running some one-day PHP courses (see my course dates page for more detail and the dates, all these are in Leeds although I'd like to run them elsewhere too), targeted at a particular area or set of skills. These are areas that I find myself delivering consultancy or training on frequently, or things I teach when I go places and realise these gaps exist in their knowledge. Does this match your experiences of "things I wish PHP developers knew - including me"?

    Read more

  6. Wordpress Contact Form 7 Without Captcha


    When this blog moved to wordpress, we added a contact form into the footer, which was available on every page. This seems awesome until you see the sheer volume of spam I got from it in the first day or two. I hate captchas, not least because I usually fail them at least once myself, so I was in search of alternatives and found two: akismet and the honeypot plugin.

    Read more

  7. My Winter Wedding


    Although I usually write only about technology on this blog, it's still a personal site and I have some news that I absolutely must share: I got married!!!! I've been waiting for the official photos before I wrote this post ("pics or it didn't happen", as the saying goes) so here is the evidence:

    On the stairs

    Read more

  8. Google OAuth 403 Response


    I had an issue this week on a system which has been working fine for a while, but stopped fetching some data from google's user account API. I was getting a 403 response from the API, which seemed odd. Luckily I was logging OAuth::getLastResponse() to my error logs (this …

    Read more

  9. Speaking at DayCamp for Developers


    I am delighted to announce that I'm speaking at the upcoming DayCamp for Developers in early March. The idea behind the daycamps is to bring important but non-technical skills to developers everywhere - so the sessions are virtual and so are the speakers! This time around the topic is Business, so …

    Read more

  10. Mercurial "Not At A Branch Head" Error


    Although I write and speak a lot about various kinds of source control (git and subversion are the most popular still as far as I can see), my own development projects are on BitBucket under mercurial (bitbucket also offer git hosting these days, and their tools are great). Recently I was working on an upgrade for BiteStats (note shiny new theme, with thanks to @miss_jwo) and I kept getting this error from hg tag

    not at a branch head

    Read more

  11. Building a RESTful PHP Server: Output Handlers


    This is the third installment in my series about writing a RESTful web service in PHP (the previous entries are about understanding the request and routing it. It is probably the last one but there are a few other things I'd like to cover such as error handling, so I might keep adding to it, especially if I get any particular requests or interesting questions in the comments. So far we've covered parsing requests to determine exactly what the user is asking for, and also looked at routing to a controller to obtain the data or perform the action required. This post gives examples of how to return the data to the client in a good way.

    Read more

  12. PHP 5.4 Built In Webserver


    One of the big features arriving with PHP 5.4 is the addition of a built-in basic webserver for use in development environments. Quite a few of the other scripting languages have something like this so I'm very pleased to see it in PHP. Using a server like this makes it easy to quickly try out some scripts without needing to configure apache or really do anything much! I had to look up a few things to get started, so I thought I'd write them down for posterity.

    Read more

32 of 92