HTML9 Responsive Boilerstrap JS

CSS, HTML, JavaScript | Posted by Keefr May 16th, 2012

I tweeted this yesterday, but found it humorous enough that I had to put a link up here on Keefr.com. If you don't find this little site funny, yeah.. you might not like most of the content on Keefr.com

HTML9 Responsive Boilerstrap JS

Font Too Bold on a Mac

CSS, Web Design, Web Development | Posted by Keefr May 15th, 2012

Following up on yesterday's post about fonts not rendering completely properly, here's another fix/tweak for making fonts appear better on OS X:

Hat tip: Bret.

Font Too Bold on a Mac

CSS Properties That Affect Type Rendering

CSS, Web Design | Posted by Keefr May 14th, 2012

A co-worker sent out this article a few minutes ago, and had to post it here. While it's not a cross-browser magic bullet, the -webkit-font-smoothing set to "antialiasing" does wonders for making font-face fonts look better (and the right weight) in Chrome and Safari. Now if there were a "-moz-webkit-font-smoothing" property, or browsers supported the W3 font-smooth property.

CSS Properties That Affect Type Rendering

Application Cache is a Douchebag

Browsers, Web Development | Posted by Keefr May 10th, 2012

Nice post from one of my favorite web design and development sites, A List Apart. Caches in general tend to be an impediment these days a world where more and more Web users are on high speed connections. Application cache is a rare breed of really crappy.

Application Cache is a Douchebag

CSS: The Good Parts

CSS | Posted by Keefr May 3rd, 2012

Nice writeup on the best of CSS. I tend to be a bit biased, and appreciate pretty much everything in the CSS spec. :)

CSS: The Good Parts/a>

A Week With Internet Explorer: Not the Browser You’ve Always Despised

Browsers, Internet Explorer | Posted by Keefr May 2nd, 2012

Nice writeup from over at Lifehacker about spending a week with the modern version of Internet Explorer (IE9). There's no doubt the browser has improved, but I think the main complaint most have is supporting (and having to test) legacy versions of the browser that were just plain horrible.

To me, anyone doing a comparison of multiple modern browsers, IE is never going to be the number one choice.

A Week With Internet Explorer: Not the Browser You’ve Always Despised

Transitions Only After Page Load

CSS | Posted by Keefr May 1st, 2012

Nice little fix/hack to keep CSS transitions from happening prior to a page being fully loading. Seems like this could be futher useful than just with transitions.

Transitions Only After Page Load

Conditional CSS

CSS | Posted by Keefr April 30th, 2012

Nice little hack to fire CSS based on current media queries in use — and it seems to work everywhere except Opera. I'm always a little weary of hack-based stuff, in case something changes when something updates.

Conditional CSS

Start an FTP/SFTP Server in Mac OS X Lion

Web Development, Workflow | Posted by Keefr April 30th, 2012

I missed this for quite awhile, but have been doing a lot of testing with WordPress on my local work box via MAMP Pro. I just realized that in OS X Lion's sharing preference panel, there is no longer an option to enable/disable FTP/SFTP. Found a nice and comprehensive article here on how to do it via the good old Terminal/command line:

Start an FTP/SFTP Server in Mac OS X Lion

How To Find The Full Path to a File Using PHP

PHP, Web Development | Posted by Keefr April 27th, 2012

Was going to write up a little piece on how to find the current file's directory on a webserver, but the little article below does a good job of explaining it. I use this all the time for creating my .htaccess/.htpasswd combo, but can see other times when this would be useful as well.

I've adopted their code snippet for my own TextExpander time saving purposes:

How To Find The Full Path to a File Using PHP