Joined June 2012
·

Brad Greenwald

Minneapolis
·
·

Thanks @kevinsuttle & @sejeff!

Posted to Coderwall - Markdown Cheat Sheet over 1 year ago

Why isn't there a standard reference page for this? I clicked around CoderWall for a well. Left CoderWall completely. Searched for "CoderWall Comment Reference" and wound up back at this post. Seems silly.

Posted to A quicker Mkdir over 1 year ago

Here's a version I've been using with fish shell - http://fishshell.com/.

function newdir
  mkdir $argv
  cd $argv
end
Posted to Don't fight the CSS cascade. over 1 year ago

Haha, did not see that coming. Thx.

Posted to Don't fight the CSS cascade. over 1 year ago

Hi Eric, caught one of your presentations at a Mpls AEA. Great work.

Another thing I notice A LOT in CSS PreProcessors is when developers abuse the nesting system and consequently have complex cascades as a result.

A great tip would be to avoid unnecessary nesting of CSS selections, and keep classes and IDs at the root of the cascade as much as possible.

For example:
.box {
}
.box-p {
}

  • is far more maintainable than -

.box {
.box-p {
}
}

I push this a lot at my agency.

Achievements
15 Karma
0 Total ProTip Views
Interests & Skills