br3nt

Results 9 comments of br3nt

@darrelmiller , it seems query params could be defined in the same way as body objects by specifying a schema for a property. I'll add my thoughts about serialization after...

Ok, I just tested how Rails handle the different array accessors in the query string: ``` ?item=1&item=2&item=3 # { 'item' => '3' } ?item[]=1&item[]=2&item[]=3 # { 'item' => ['1', '2',...

@darrelmiller, picking one format rather than a more versatile solution will do more harm than good. It will alienate the frameworks that don't support whatever format is chosen. Using the...

It seems we could use `var response = db.Execute("CLIENT", "TRACKING", "ON");` to enable client tracking, but how do we then "listen" for the corresponding invalidation messages?

I have managed to enable client tracking manually using `Execute` but I have run into a road block. StackExchange.Redis seems to create two connections: one for the database, and one...

I’ve got reservations about requiring an exact version. Imagine if a gem author used `force_version` And an exact gem version to get around a constraint imposed by one of their...

@rahult, looks like you can do it at the time of merging... https://help.github.com/articles/about-pull-request-merges/

The site is still down. I came here based on comments on Nick Chapsas’s new vid recommending this library. Could always put the docs in GitHubs Wiki? Or store in...

I was hoping the same thing existed already. I came across this while trying to find a way to avoid path manipulation vulnerabilities when combining paths provided by users. What...