RailsCasts Pro episodes are now free!

Learn more or hide this

David Backeus's Profile

GitHub User: dbackeus

Comments by David Backeus

Avatar

Am I correct in thinking that I could bypass the credit card payment altogether by manually setting a value to the hidden token field (using javascript console or similar before submitting)?

Avatar

I've been adhering to the "Object Oriented CSS" pattern when writing CSS lately. One of the guiding principles in that is that you never style anything based on its container. Another principle is never style anything based on ids (ids can be used for javascript logic but for styling you use classes for reusability etc).

In effect the example you give of styling based on an id in body is pretty much the most extreme way of breaking the pattern (one thing I've noticed out of experience is that the "further away" the container definition is the more complicated it becomes to make sense of the css logic).

Theres a good video outlining some of the reasons (basically CSS anti patterns) behind OOCSS here:
http://www.youtube.com/watch?v=j6sAm7CLoCQ

Avatar

Great overview of Rails 3.1!

Would prefer Flash being the default and HTML5 video being the fallback for playback though. Fullscreen is kind of crippled in HTML5 (possible with Chromes fullscreen mode activated but noticed that screen dimming and screensaver will still activate).