Toby Hede

Results 24 comments of Toby Hede

The plot thickens. If I have a reference to collection.find in my code, everything suddenly works as expected. So the following will do the insert: ``` EventMachine.synchrony do db =...

Thanks for the info. Had me stumped, but eventually had discovered the missing methods and started my own implementation. May progress with this while keeping an eye on these other...

I ran into something similar, looks like black pixels get stripped in the shader code. I worked around this buy making my black a slightly different colour, adding values to...

Thanks @jasonjmcghee ... I was calling `ctx.cls()` in my `tick` function. I think I isolated the issue ... I was using `set` to draw rather than `set_fancy`. It works correctly...

Turns out no, not fixed. Still happening with `cls` and `set_fancy`.

Possibly a related bug, if I use `set_fancy` to draw my glyph is rendered at y-1. As if the y axis is starting at index 1 instead of 0. Will...

semver, how does it even!!?

I am a bit rusty on the node ecosystem but happy to help test a PR.

Works for me too On 27 January 2016 at 18:04, Mads Flensted-Urech [email protected] wrote: > Ok - I have published a 0.4.2 with this workaround. I suspect that the >...

Ran into some prepared statement issues myself. To enable Prepared Statements you need to: - be in `session` mode or - add `prepared_statements_cache_size = {N}` to your config. `prepared_statements_enabled` is...