Jamis Buck

Results 13 comments of Jamis Buck

I'm always uncomfortable with sorting by id, since it's not formally defined as being a monotonically increasing value. I think it might be better to sort events by (occurred_on, created_at),...

I played with this a bit tonight, and it actually makes the dropdowns pretty noise (and a bit confusing) to show the balances right there. Perhaps the better solution would...

Sounds like you've about got it done. :) It's on my plate to implement, as this is a feature I've wanted, too, but I suspect my solution will be much...

As nifty as this sounds, I'm not sure that I would want something like this in BucketWise. However, if it is something you need, please feel free to fork Bucketwise...

I don't remember exactly. :/ However, looking at the diff, I suspect it was an attempt to make the return value consistent, so that it always returns either a worker...

Sorry to be slow to chime in here. Yeah, the "return primary keys" is Postgres-only, and as @mberlanda has pointed out, it's non-trivial to implement in MySQL (or, AFAIK, other...

Hey @flavorjones, this is mostly to facilitate some optimizations we implemented at 37signals to allow faster parsing and processing of emails in [HEY](http://hey.com). We have a library that we developed...

The ActionText::Document API is only intended to be used internally by ActionText (or, perhaps, by libraries that extend ActionText). For clients, they will know what backend they are using (even...

@rafaelfranca -- thanks for the thoughts about this. I've also considered having an opaque wrapper around the nodes, to further abstract that interface, but my initial experiments there found it...

I worked around this by adding the following to AFOpenFlowView: ``` - (void)setDataSource:(id)theDataSource { dataSource = theDataSource; self.defaultImage = [self.dataSource defaultImage]; } ```