Matt Broadstone
Matt Broadstone
Given the following example RST: ``` .. method:: db.auth() Allows a user to authenticate to the database from within the shell. The :method:`db.auth()` method can accept either: - the username...
Validations seem to be a little lacking in thinky, I have a few questions/thoughts/proposals: - _make validation messages more consistent_ Currently we just get a string like "One or more...
In this example: ``` var userList = [ { username: 'arthur', email: '[email protected]' }, { username: 'james', email: '[email protected]' }, { username: 'henry', email: '[email protected]' }, { username: 'william', email:...
Hi, I'm attempting to port the ansi C lex grammar [here](https://www.lysator.liu.se/c/ANSI-C-grammar-l.html) and running into issues with the initial definitions, specifically with the sections: ``` FS (f|F|l|L) IS (u|U|l|L)* ``` throwing...
qamqp-ng
Hey, Not sure how to contact you other than here (no email provided, github doesn't allow messages, etc). I've started a fork of this project over [here](http://github.com/mbroadst/qamqp-ng), which includes a...
Hi, I'm using your module to support communication with libvirt using their remote protocol XDR definition and running into issues with their definition. They use types which aren't defined in...
Currently the sender and receiver streams are implemented as wrappers around sender/receiver link instances, mapping their emitted events to the streams api. There is needless overhead here that we can...
Hi, I spent a few hours vendoring folly into a codebase using tcmalloc the other day and ran into a few issues. I noticed reference to [USE_TCMALLOC](https://github.com/facebook/folly/blob/1de3e85fd83b45541903cebe997da2f69e68a93d/folly/memory/Malloc.h#L230) and [FOLLY_ASSUME_NO_TCMALLOC](https://github.com/facebook/folly/blob/1de3e85fd83b45541903cebe997da2f69e68a93d/folly/memory/Malloc.h#L225C13-L225C37) but...