Vincent Woo

Results 71 comments of Vincent Woo

Advocating for this again - the way devise_invitable saves without validation is subtly breaking parts of my app over and over again - anytime you use a before_validation to ensure...

The contents of the tab are blank, and are unresponsive while kiwi seems to be doing some background processing. Eventually page elements rerender. This is more severe if the computer...

I believe this can be addressed by changing the return value of `throttled?` to something like false if not throttled, true if throttled without an ETA for clearing up, or...

@marijnh any thoughts on this one?

That sounds promising. Can you clarify a little bit? I thought condense was just for individual files. How would you condense, say, the lodash library (composed of many small files)?...

That thought occurred to me as well but didn't quite work: ``` coderpad@0e5e2b78b930:~$ ./node_modules/tern/bin/condense --plugin node node_modules/lodash/index.js { "!name": "node_modules/lodash/index.js" } ``` And the contents of `index.js` here is simply...

I should add that condensing single-file libs like `underscore` or `q` seems to work okay - it's just that perhaps it's lodash in particular. Is there something quirky about the...

Is it possible that tern behaves differently during normal vs condense operation on expressions like: ``` js /** Detect free variable `exports`. */ var freeExports = (objectTypes[typeof exports] && exports...

I did some more experimenting, and hopefully this can help people out in the future. Perhaps this info can be incorporated into the manual too. Let's say you're trying to...

However, problematically, sometimes you can't condense without supplying the `node` plugin: ``` vwoo:autocomplete vwoo$ ./node_modules/tern/bin/condense node_modules/q/q.js { "!name": "node_modules/q/q.js" } vwoo:autocomplete vwoo$ ./node_modules/tern/bin/condense --plugin node node_modules/q/q.js { "!name": "node_modules/q/q.js", "!define":...