Category Archives: Web Development

Regular Expression Artwork

For my final year university project I created a tool to visualise regular expressions. The tool visualises a set of algorithms used to compile a regular expression in to a finite state machine (very similar to a flowchart) and then … Continue reading

Share
Posted in Web Development | Tagged , , , , | Leave a comment

Serializing data and databases

I just came across an article “9 Useful PHP Functions and Features You Need to Know“ on Nettuts+. Number 7 mentions using serialization (via PHP’s serialize() or json_encode() functions) to store a complex variable in a database or a text … Continue reading

Share
Posted in Web Development | Tagged , , , | Leave a comment

Inject jQuery into any web page

Now and then I come across a website that could be made easier to use with a couple of lines of jQuery – for example a web mail application with check boxes next to every message but no “select all” … Continue reading

Share
Posted in Web Development | Tagged , , | 2 Comments

Writing to the FireBug console from Flash (and PHP)

I was recently tasked with modifying the behaviour of a ready-made Flash component and for convenience I wanted to interact with the Flash component within FireFox and view live debug output in the FireBug console. It turns out to be … Continue reading

Share
Posted in Web Development | Tagged , , , , , | 1 Comment