Daniel G.

Results 8 issues of Daniel G.

The ChangeNotifier class currently assumes that it is receiving as parameter a non-bound database. If that is not the case, it fails. This patch supports both cases: bound and non-bound...

It would be nice if you could add in the examples a showcase of how to use your addon for [templating](http://select2.github.io/select2/#templating) on Select2. At least the issue with SafeStrings must...

In my json decoder, I usually use `json.loads(json_str, object_pairs_hook=OrderedDict)`, so that key-ordering is preserved. But the json_schema_generator does not support this: `json_schema_generator.schema_types.JsonSchemaTypeNotFound: There is no schema type for .`

``` from datetime import datetime from freezegun import freeze_time now = datetime.now() epochtime1 = now.timestamp() with freeze_time(now): epochtime2 = datetime.now().timestamp() print(epochtime2 - epochtime1) ``` The output is: ``` 3600.0 ```...

This is what I usually do to render a file with pystache: txt = open(filename, 'r').read() print pystache.render(txt, context).encode('utf-8') ("context" is my mapping) But now I have to render very...

I had a problem with dynamic generated content, and had to workaround it (see discussion here: http://stackoverflow.com/questions/7982493/event-listeners-for-dynamic-content-in-evently) I have only patched jquery.evently.js. Maybe other files are also of interest. I...

As far as I understand, the hooks that you are providing in `EmberSockets` allow to update some properties in the controllers. What about this (I think quite generic and useful)...