Sit back, relax, and enjoy the code.

Quick Hits: Sass demands syntax perfection!

Posted: January 25th, 2010 | Author: abel | Filed under: Quick Hits, Rails | Tags: | No Comments »

Just a quick note about sass.  Let’s say you had the following in /public/stylesheets/sass/foo.sass:

body
  line-height:1.2em

h1
  color:red

This would render a blank document for /public/stylesheets/foo.css.  You won’t get an error about it, you’ll just get a blank document.  Here’s the thing, when you’re declaring a CSS property, you MUST put a space after the colon.  Failing to do so will just wind up in parsing errors on the sass side.

I hope I’ve saved you some head scratching. :-)

  • Share/Bookmark

I LOVE MonoTouch

Posted: January 24th, 2010 | Author: abel | Filed under: MonoTouch | Tags: , , | 1 Comment »

Don’t get me wrong, XCode is great…in it’s own way…but as a .Net dev coming to the iPhone platform, MonoTouch rocks my world!

For the other devs in my shoes looking to play with MonoTouch, here are some things to keep in mind: Read the rest of this entry »

  • Share/Bookmark