Ryan Curtis

Results 15 comments of Ryan Curtis

try adding `edit` to regex on line 20 of cofmon.coffee so it's `if data.match /^(show|use|it|help|edit)(\s+\S+)?/` and see if that works. If it does feel free to do a PR or...

That would be sweet, but it would be tricky to implement. The best way would be to get the autocomplete from the underlying mongo shell. I'm not sure how that...

Thanks! I like it too. :) Note that, if you’ve been using the “” shortcut I just changed it to use single quotes instead of double as the mongo shell...

Here's an example project to reproduce easily: https://github.com/rbrcurtis/dyngoose-subclass-problem

@seglo sadly your fork doesn't work for me.

Its not unfortunately (work project). Its not doing anything special though; your fix handles the errors but what I think might be happening is that grunt-connect-proxy isn’t handling ssl on...

my local server is not https, but the remote servers I’m proxying to are all https. They’re all on amazon and are not self signed. I tried setting https to...

Here's how I solved this with `pg-cursor`: https://gist.github.com/rbrcurtis/e27cec8e924b9adaa7d0340e20cdb999

Looks like the latest grunt-coffeelint will load custom rules that have been wired up in coffeelint.json. What this means is that if you write your custom rule as a plugin...

It's because redis-mock only supports the callback syntax for redis not async/await, which was removed in the latest major version of the redis package. This works: ``` let redis =...