Tim Vergenz

Results 63 issues of Tim Vergenz

I pretty regularly amend and rebase commits as I work (I usually use `git commit -m "wip"` instead of `git stash` so that it's separated by branch), so it'd be...

According to the readme: > `Bullet.stacktrace_excludes`: ignore paths with any of these substrings in the stack trace, even if they are not in your main app. However the option does...

Addresses httpie/httpie#838 Doesn't have tests yet, nor has anyone else weighed in on approach, naming, etc. But it's simple and is working well for me, so I figured I'd share...

would like to add more detail, but don't have time to at the moment so here's the tl;dw (too long, didn't write): - my Mac system has Python 3 installed...

**TL;DR: No error message gets thrown if you use the wrong field config type. (E.g. `graphql.Fields` instead of `graphql.InputObjectConfigFieldMap`)** --- I was bootstrapping a new GraphQL schema using this library,...

On lines [99](https://github.com/saintedlama/passport-local-mongoose/blob/87d360d5da733fb5d92a6b29af73ecd73dea0ee3/lib/passport-local-mongoose.js#L99), [120](https://github.com/saintedlama/passport-local-mongoose/blob/87d360d5da733fb5d92a6b29af73ecd73dea0ee3/lib/passport-local-mongoose.js#L127), and [127](https://github.com/saintedlama/passport-local-mongoose/blob/87d360d5da733fb5d92a6b29af73ecd73dea0ee3/lib/passport-local-mongoose.js#L127) in [`passport-local-mongoose.js`](https://github.com/saintedlama/passport-local-mongoose/blob/87d360d5da733fb5d92a6b29af73ecd73dea0ee3/lib/passport-local-mongoose.js), the library calls `self.save()` without any callback function to handle errors in saving. This led to a particularly hard-to-track-down bug for me...

enhancement

I'm trying to get set up working on generics (per conversation in #319), but am having issues with Eclipse/Scala IDE. It's complaining in the tests that it can't generate any...

question

Since we're developing out some new features and plan to be changing things, we probably should unit test the code...

enhancement

## Demo See https://gist.github.com/vergenzt/d5685cee2c8f80e9d98bca7ef3845173 for example schema/inputs demonstrating this issue. ## Issue When I pass in a concrete slice value (for instance, a `[]map[string]interface{}`) instead of an `[]interface{}` as the...

Per the spec, [Object][1], [Interface][2], and [Input Object][3] types must define at least one field. This commit makes graphql-go fail to parse any of these types if no fields are...