Last Friday I was honoured to be invited to speak about the Business of Open Source at the WordPress Bucharest meetup. Continue reading The Business of Open Source – at WordPress Bucharest
Category: Work
All about WordPress Web Addresses
I’ve given this presentation at WordCamp London 2015, and last night at the Manchester WordPress User Group. Essentially the talk title is a trojan horse to talk about rewrite rules and regular expressions, without everyone running out of the room screaming because I put “regex” in the talk title. ;) Continue reading All about WordPress Web Addresses
MWUG notes from Wednesday 21 January 2015
Some notes from last night’s MWUG meeting. Something I don’t get along to often enough, as Mike has mentioned on occasion. :)
Continue reading MWUG notes from Wednesday 21 January 2015
Business and Open Source
At WordCamp Europe 2014, I described how working with Open Source has enabled me to grow in business, and to grow my business. I talked about the tensions between Open Source and traditional business instincts, and shared how giving in to giving stuff away has powered my growth as a consultant working with WordPress.
If you’re interested in exploring these tensions further, and looking into the philosophical underpinnings of the WordPress project and the Open Source movement, I wholeheartedly recommend Siobhan’s talk: “WordPress: Bringing Ideas to Life”. Continue reading Business and Open Source
I have a dream, about development environments (presentation)
This is the presentation I gave today at WordCamp Manchester, 2014. There’s an embed of the slides below, and you can also download the version with my (fairly verbose) speaker notes. Continue reading I have a dream, about development environments (presentation)
A quick and dirty logger for Gravity Forms
Today I noticed pieces of code to hook into a logger scattered throughout Gravity Forms, when I was trying to track down an issue. Here’s some quick and dirty code which hooks into the logging methods and writes to the PHP error log: Continue reading A quick and dirty logger for Gravity Forms
I had a dream
The first post in a series covering how we currently control our development environments at Code For The People.
Back in 2013 I had a dream. I wanted our team at Code For The People to work within a consistent development environment, which we could jointly outfit with tools and functionality to help us do our job better. I wanted us to be able to assemble resources, plugins and themes and code libraries, as we needed them. I wanted us to be able to easily develop and easily deploy. I wanted something which would allow us to engage freelancers, or even clients, and get them started on development without having to go through complex sysadmin procedures. I wanted us to be able to jump in and help each other at short notice.
I think we’re well on the road to meeting these requirements now, and so I’m due to write up the travails which have got us to this point. Continue reading I had a dream
Customising a standard theme for many sites
This is a presentation I made at the New York Times to the WordPress Big Media and Enterprise meetup in New York. Continue reading Customising a standard theme for many sites
Testing HTTP redirects with Curl
We’ve got a really complex redirection setup for the current project at work, a mix of some general rules (http://blog.example.com/ to http://www.example.com/blog/), some oddball domain redirects (http://blog.example.jp/ to http://www.example.co.jp/blog/), and some more esoteric ones thrown in there for luck. I started off briefing my colleague with a description of what I needed, but this very quickly became too complex and I realised I really needed to give him a set of initial URLs and expected results. Why not express these rules in a quick test script? My colleague could run the script against the redirects as he wrote them, and see the successful ones and the failures, along with detail about why they failed. Continue reading Testing HTTP redirects with Curl
Redirection recipes
Some 3,000 Apache redirection rules are getting scrapped by a client (not a bad thing), and I wanted to make sure I had a note before that happened. All 3,000 rules are all variations on the following few types of redirection rule. Continue reading Redirection recipes