Oded Niv

Results 38 comments of Oded Niv

@ysugimoto any objection against switching to [imagemin](https://github.com/imagemin/imagemin)? Have you tried it before and it didn't meet your criteria?

I've been struggling a full day with the `ECONNRESET` error. I narrowed it down to the `reduce` section, without it the error never appears. 3 weird points: 1. `resizes` utilizes...

FYI, until this is resolved (which it totally should!), you can tell NPM to fetch from GitHub (specifying "shahata/angular-viewport-watch" as the version). EDIT: not this one, package.json is not complete...

This has a chance of causing `TypeError: Cannot read property 'destroy' of undefined` if the scope is destroyed before `$applyAsync` is triggered. Not sure when this happens, but it randomly...

I keep getting back here, and I finally found what seems to me the cleanest solution: ``` ruby User.select(User.arel_table[Arel.star]) ``` Or in a scope: ``` ruby scope :with_custom, -> {...

This doesn't work, still getting the error when doing the following: ``` ruby class User < ActiveRecord::Base sifter(:my_sifter) { _(id + 5) } end ``` If only it was that...

I myself was more afraid of copying code from one place to another, felt safer to wrap with a grouping. I bet @ernie would have a much better idea on...

@ernie, this means I have to wrap every use of that sifter with _(sift(...)), while grouping is not really what I wanted to achieve. I just want to be able...

For the above example, I don't count `where{c > 5}` as a complex query, and the "outside" world doesn't know how c is implemented and therefore shouldn't need to know...