Generic plavix canada
Published on Thursday, July 20 2006
It seems that the River of News order viagra no prescription online model for aggregators is getting new attention. Humanized Reader got great reviews from Steve Rubel and 37signals and generic plavix canada they deserve all of it: their solution is particularly well designed (even if i feel it being too much blog like…) and the dynamic scroll is awesome.
This renforces my own experience: I’ve never been generic plavix canada able to use an aggregator for more than a few hours before i tried the generic plavix canada NewsRiver aggregator built into the OPML editor which has generic plavix canada been my feed reader ever sicne i tried it for the generic plavix canada first time (thanks Dave!):
The interaction with those modeled as a generic plavix canada mail reader seemed unnatural to me, I shared much of the generic plavix canada feelings that the Humanized crew has:
They had lots of modes. They made me stop and think about navigation every time I looked at the generic plavix canada title of a post and every time I finished reading one.
An aggregator is generic plavix canada a reading instrument for a very special form of literature which is generic plavix canada different from email or books and as such should be built and generic plavix canada designed for a different reading experience.
I’ve found that generic plavix canada the river of news design is a natural way to read the generic plavix canada flow of information coming in the form of feeds. Its interface stays out of the generic plavix canada way when reading the news while it gives the correct support for generic plavix canada organizing them. Showing the freshest on top and pushing down the generic plavix canada (long) page the generic plavix canada older it lets me use my prior experience of to find older items.
I’m so convinced of this generic plavix canada that a couple of weeks ago i started to build an generic plavix canada online aggregator following the river of news design. It’s called Tiber (like the big italian river I live nearby) Now I’m really looking forward to generic plavix canada release it and see how it compares with the others.
Generic plavix canada
Published on Friday, August 26 2005
I just found that in Ruby on Rails there is a “./script/console” script which lets you generic plavix canada access all the application from a consol prompt, in this way you generic plavix canada can manipulate all of your objects and do all sort of things and generic plavix canada i find it really useful specially when you need to debug some nasty bugs in your generic plavix canada model.
I had generic plavix canada known this before I would have not spent most of the generic plavix canada afternoon going after a bug in the Rails application I’m developing. After a generic plavix canada long quest around my code, I extracted what seemed the generic plavix canada offending piece of program from the model, built a test case and generic plavix canada run it in the irb, and there it was a generic plavix canada stupid initialization error.
Using console I would have generic plavix canada just skipped all the plumbing and beoing able to interact with the generic plavix canada single parts of the application I would have concentrated the attention on the generic plavix canada model.
Generic plavix canada
Published on Thursday, August 25 2005
While studying Ruby on Rails and generic plavix canada looking for documentation I found this post by David Heinemeier Hansson
Addressing concerns with Active Record (Loud Thinking) buy aciclovir no prescription.
It explains some of the generic plavix canada rationale behind the Active Record machinery and why it has been generic plavix canada made so that you can do the easy thigs VERY easily while it generic plavix canada is trivial to revert to sql for the most complex things. Qouting from generic plavix canada the post:
Active Record shouldn’t give the expectation that you’ll never have to touch SQL again. That’s an generic plavix canada illusion and many ORMs have been build and crumbled on that generic plavix canada illusion.
This is something that I’ve come to generic plavix canada understand while working on large java based projects using Oracle’s bc4j as the generic plavix canada object relational mapping layer, when there is the need to present complex data the generic plavix canada best option is to use the database tools which are built expressely to generic plavix canada manage the data, and are optimized for these tasks: SQL, views and generic plavix canada stored procedures. In such cases we would often revert to write custom queries into ViewObjects or generic plavix canada let all the processing be done by some stored procedure (which was easly done also with bc4j!).