Greg Lowe
Greg Lowe
I've been using the commonmark.js parser combined with react for rendering. Since I am not using the html or xml renderer, it would be great to have a separate js...
https://github.com/OWASP/www-community/blob/master/pages/attacks/CSV_Injection.md Excel is commonly used to edit CSV files. Unfortunately when saving CSVs Excel strips out some of the characters which are inserted to prevent the CSV injection. This is...
Add a simple version of helpers as implemented in handlebars.js. http://handlebarsjs.com/ ``` var t = new Template( '{{ uppercase foo }}', helpers: {'uppercase': (ctx) => ctx.arguments[0].toUppercase()}); t.render({'foo': 'bar'}); // outputs...
https://pub.dartlang.org/packages/postgresql @tomyeh @pisabev @Fox32 Let me know if you have any issues. Change log: A new connection pool with more configuration options. Support for json and timestamptz types. Utc time...
Typeconverter.dart Line: 163 Change to: ``` if (value is num) { ... var n = value.toString(); return "'$n'"; } ``` Also note doc comment is wrong. //FIXME can probably simplify...
https://github.com/brettwooldridge/HikariCP/wiki/Codahale-Metrics
Will throw null error, if sending terminate message throws. ``` Future flushing; try { var msg = new MessageBuffer(); msg.addByte(_MSG_TERMINATE); msg.addInt32(0); msg.setLength(); _socket.add(msg.buffer); flushing = _socket.flush(); } on Exception catch...
Document type use in query substitution syntax, and conversions of pg types to dart types.
Need to check that transaction isolation is cleared after it is returned to the pool. From Hikari FAQ: Q: I am getting strange transaction isolation behavior after changing it, what...