Monthly Archives:: May 2008

Bizzare Firefox 3 HR Tag Rendering

Posted by & filed under Random.

I stumbled across this bizare new rendering bug in Firefox 3. CSS: hr { background: url(“bar.gif”) no-repeat; width: 385px; height: 15px; border: 0; } HTML: <hr noshade=“noshade” /> Here’s what it looks like in Firefox 2. Now Firefox 3. It would appear that Firefox 3 is adding a border-radius value to all <hr/> tags. Removing the noshade=“noshade”… HR Tag Rendering">Read more »

How To Round Unixtime To Midnight

Posted by & filed under HowTo, Tips.

This might be pretty obvious to anyone with basic math skills. It took me a few minutes to figure out, so I thought I’d share with the world. To round a unix timestamp to the previous midnight (UTC) use the following function: function unixtime_round_to_midnight ($t) { return $t — ($t%86400); } Thanks to Ian for pointing out my… Read more »

CushyCMS Adds Pro Version

Posted by & filed under Apps.

CushyCMS, the free content management system, is now launching a Pro version of its service. For $28 per month, CushyCMS will provide branding support, a custom logo, colors and domain settings for web publishers that use its tools. via mashable Kinda thought that’s what they where going to do. Still a dumb product, IMHO.

How To Delete All Contacts From Gmail

Posted by & filed under Google, HowTo.

Update October 2010: These instructions are no longer valid. Take a look at voyageurs60’s comment. If you’ve ever tried to delete more than 20 contacts in gmail, you might have noticed an error message informing you that you’re only allowed to delete 20 contacts at a time. I don’t really think of Google as a company that puts abitrary… Read more »