links for 2007-11-17
Saturday, November 17th, 2007
Testing ActiveResource
(tags: Rails Testing activeresource)
Testing ActiveResource
(tags: Rails Testing activeresource)
Ruby One Liners
snippets from Dave Thomas
(tags: Ruby Reference Programming List Productivity tips Cool)
favikon
Quickly create a favicon from any image. Great online tool.
(tags: webdesign graphics tools)
Scripteka :: Prototype extensions library
(tags: prototype scriptaculous gallery Javascript)
How to Win at Monopoly ® - a Surefire Strategy
(tags: Cool Economics tips Monopoly)
err.the_blog.find_by_title(’Be Dee Dee and Me’)
A good intro to Behavior Driven Development. I need to read this soon.
(tags: Programming Rails RubyOnRails Reference Testing toRead Tutorial)
Sending SMS messages from your Rails application — Luke Redpath
(tags: RubyOnRails Rails Programming SMS)
Rails on the Run - Ajax Pagination in less than 5 minutes
(tags: Ajax Rails RubyOnRails pagination)
Just a little thought I thought I should be sure to share, as it’s something I wasn’t aware of until this morning.
If you load an object in Rails and load any of it’s relatives through acts_as_tree, and then destroy the object, it will take the relatives with it.
@person = Person.find :first
@person.children.each do |child|
[…]