- A List Apart: Articles: Where Am I? — Good navigation tells a story, and good stories have a beginning, middle, and end.
Tagged as: design ia informationarchitecture navigation stories
Ruby on Rails from the other side of the tracks
08 August 2006
I’m going to be speaking tonight at LRUG. The talk is called “Ruby on Rails from the other side of the tracks“, and it’s about how client-side developers fit into Rails, and how you (as a back-end developer) can work with them rather than against them. If that sounds interesting (or, more to the point, you want to hear Tiest talk about Domain Specific Languages, which should be great), do come along.
- JavaScript textarea selection with mozilla — If a problem’s been solved, no point trying to solve it twice.
Tagged as: highlighting javascript mozilla selection ugh
- Nested with_scope — Probably the clearest, most useful explanation of with_scope so far
Tagged as: activerecord howto rails ruby rubyonrails - The Challenge of a Free Architecture — An inquiry into the solutions the architectural profession could offer to the human, psychological implications of the architecture and environments created with technologies which may result from current developments in immersive, interactive computer si
Tagged as: 3d architecture dissertation essay vr - stevenberlinjohnson.com: Five Things All Sane People Agree On About Blogs And Mainstream Journalism (So Can We Stop Talking About Them Now?) — if you’re writing an article or a blog post about this issue, and your argument revolves around one or more of these points — and doesn’t add anything else of substance — STOP WRITING. Pick a new topic. Move on. There’s nothing to see here.
Tagged as: blogging blogs journalism media
- Digerati Consulting: awstats on TextDrive — I’ll need to install this quite soon.
Tagged as: awstats hosting howto stats textdrive - The 11 Most Groundbreaking Controllers of All Time Feature on Gamepro.com — Groundbreaking is hardly the word I’d use; it’s a rather uninspiring list, and the copy is dreadfully average. But into del.icio.us it goes, anyhow…
Tagged as: controllers design games hardware interface ui
Book Review: David Black’s Ruby for Rails
04 August 2006
Didn’t notice this when it happened (because it didn’t necessarily appear on the frontpage) but… my review of David Black’s Ruby for Rails has now gone live over at Vitamin.
My first piece of technical writing. It’s a good book, too – clarified an awful lot about the hierachy of classes within the language, and explained the nuances of Ruby dynamism very well; strongly recommended to anyone coming to Ruby (through Rails) afresh, whether you’re an experienced programmer or not. I hope I conveyed that in the review.
- Adhesive – Red Alt — Make WordPress posts sticky. Useful for pretending it’s a CMS
Tagged as: blog cms plugin wordpress - July 2006 Roadtrip – a photoset on Flickr — James Duncan Davidson’s photos from his July roadtrip are breathtakingly beautiful. Proper geography from the US National Parks.
Tagged as: flickr nationalparks photography travel
Matt posted a really elegant piece of code today that generates Graphviz files (suitable for importing into OmniGraffle) of your Rails ActiveRecord relationships. It’s pretty neat, and certainly handy for getting to know foreign codebases.
There’s one neat trick in there, though, that I wanted to expand on, as Matt breifly chatted to me about the problem earlier today over IM – namely, how you get the actual class object so that you can call reflect_on_all_associations
on it.
In Ruby, it’s easy to dynamically call methods – you can put the name of the method into a string, and then simply run Object.send(methodname)
. Getting the actual Class Object for a particular object – that’s much trickier.
There’s the obvious solution of using eval
. So, to get all the methods on your classname:
classname = 'Integer' eval classname + '.methods'
but that, of course, is pretty nasty and kludgy. This is Ruby, after all; there’s got to be a better solution, right?
There is. If you look in the Pickaxe, you’ll find that Class Names Are Constants:
All the built-in classes, along with the classes you define, have a corresponding global constant with the same name as the class.
So this means that by passing the class name to the const_get
method on the Kernel
module, we’ll confirm if a class exists with that name (eg Integer
). Then, because that constant is really a reference to an object of the same name, by sending a message (the method calal) to the constant, it will be passed on to the object and run (which is the best way I’ve got of explaining this). Job done! To use the previous example:
classname = 'Integer' Kernel.const_get(classname).methods
Which is, you must admit, a bit more elegant and maintainable than the evil that is eval
.
- Zaky Infant Pillow: Child Neglect Accomplice – Gizmodo — One for all the new dads, I feel.
Tagged as: baby ergonomics for:dotcode odd pillow strange