Archive for the 'web' Category

4 make a comment

tags:

New Skin

It’s 2009. Time for an updated look to this log that I never post to. I’m also using that new spiffy HTML 5 doctype:

<!DOCTYPE html>

I also just realized there were two addresses for the RSS feed. Hopefully you are subscribed to the correct one.

2 make a comment

tags:

Startup Weekend

Columbus Startup Weekend was fantastic. Here is the project I am involved with: JoeMetric

0 make a comment

tags:

Email Standards Project

Tables and spacer GIFs bad. CSS good.
http://www.email-standards.org

1 make a comment

Uploading and MIME types in CodeIgniter

I just ran into a nasty issue when uploading MP3 files with the CodeIgniter PHP framework. Apparently an MP3 can either be ‘audio/mpeg’ or ‘audio/mpg’. CodeIgniter is only set to accept ‘audio/mpeg’; OS X seems to use ‘audio/mpg’.

This can be fixed by editing the mimes.php file located in:

system/application/config/mimes.php

Search for the line:

'mp3' => 'audio/mpeg'

And replace it with this:

'mp3' => array('audio/mpeg', 'audio/mpg')

4 make a comment

Helperoo Released

My homeboys at meticulo have released Helperoo!

What is Helperoo you ask? Well, it’s a hosted email support desk with easy in mind. It’s simple, it’s light, and it’s fast. We think it’s especially perfect for all you 1-5 man shops.

Helperoo - Email support ticket system

2 make a comment

Silly Season

Play with your vendor-specific runtimes. Don’t call me when you wake up one morning with a pink line in the round window and your BFF vendor won’t return your calls.

Well put

2 make a comment

tags:

CAPTCHA

We don’t take security as seriously as we should at work; issues are handled when they come up. Recently a spam bot was abusing the contact form on our site. So we went out on the intraweb, searched on Google for CAPTCHA, and probably installed the first solution we came across.

However, I dislike the idea of CAPTCHA; images not accessible to everyone. So on our latest project, I used a simple logic field (1+1 = ?). I think this is a better solution, but not everyone agrees. Does anyone else have a better solution?

2 make a comment

tags:

HTML5, XHTML2

A nice run down of future markup languages.

Categories

Archives

Buddies

More

Jerry Nummi is a web designer working in Columbus, Ohio with the great Ruby hackers at EdgeCase. You can follow him on Twitter and Flickr. You can also check out his sweet side projects Expo and JoeMetric.