Category Archives: Development

SRC10 – Breaking things with Ruby talk

Presenter: Rory McCune The breaking things with Ruby session was all about penetration testing and security. It was one of the best sessions I attended while at SRC. A couple of tools and techniques were demonstrated, and the Pen testing … Continue reading

Posted in Conferences, Development, Security, SRC10 | Tagged , , | Leave a comment

Automatically generating a sitemap in rails

I recently had the need to generate a sitemap using a cron job on a regular basis (nightly) for my ruby on rails app. I found the excellent plugin from Chrisian Hellsten at http://github.com/christianhellsten/sitemap-generator. Which did the trick very nicley. … Continue reading

Posted in Development, Ruby / Rails | Leave a comment

IE fixed width select input bug

IE truncates options within a select if the options are longer than the width of the select control. Somehow EVERY OTHER BROWSER manages to expand the options while keeping the select at the fixed width, another reason why ie sucks!!! … Continue reading

Posted in Development, Javascript | Leave a comment

jQuery storing data in a tag using internals

I had a problem where I needed to store the old name of an input tag so that I could reference what it used to be called. I used the rel attribute to store this (as is common practice) but … Continue reading

Posted in Development, Javascript | Leave a comment

How to make a wordpress plugin

So I had my first exposure to writing a wordpress plugin yesterday. It was such a pleasant and easy experience that I thought I better give a little back. So here’s my step by step guide to creating a very … Continue reading

Posted in Development, PHP, Wordpress | Leave a comment