Mark Grey
Mark Grey
@le-doude It turns out that this is quite non-trivial to implement. The document API exposes a separate [dynamodb client object](http://docs.aws.amazon.com/AWSJavaSDK/latest/javadoc/com/amazonaws/services/dynamodbv2/document/DynamoDB.html), and the contracts for all the common CRUD opts are...
This should just be coded to the python logging interface with a [custom logger and loglevel](http://stackoverflow.com/questions/2183233/how-to-add-a-custom-loglevel-to-pythons-logging-facility). That way, end users could pass handler implementations to log to various storage backends.
http://stackoverflow.com/a/13638084/215608
Seeing the same, it would be strange if entities intended to be nested in a single form would required their own csrf.
:+1: for this issue. It would be good to know why the object passed to JObject is an ordered type. JSON per the ECMAscript standard is unordered by default (much...
@kmike Thanks! The input was in fact unicode text, so I did as you suggested and did the encoding in my application code before handing it off to readability. We...
@kmike I know you said that you haven't much used this particular module in contrib, but what do you think would be the most desirable handling of unicode here? Should...
Thanks for the excellent writeup, I agree with all your points :+1: I did some experimentation with this yesterday and noticed what you mean. Amending the encoding in the `_setEncoding`...
I agree this change is good and actually went ahead and implemented it in my own fork. Also using minimongo in production and see this as a valuable asset.
Didn't actually realize one could delay configuration like that. This would be handy for swapping collections/dbs for unit testing purposes. Should I omit the hosts from my Model declarations and...