Mike Cann
Mike Cann
Hey, thanks for the reply! > In order to ensure events are ordered properly the commit id must be fixed length Why is this? Is it because on [this line](https://github.com/bakerface/dynamodb-event-store/blob/master/index.js#L179)...
This is what I came up with: ```ts /** * Wraps a value between min and max, inclusive. * * e.g. * * expect(wrap(0, 0, 9)).toEqual(0); * expect(wrap(1, 0, 9)).toEqual(1);...
~~Looks like it was due to the WAL replication slots I was also experimenting around with.~~ ~~I have [now deleted those](https://hevodata.com/learn/postgresql-replication-slots/) slots and the error no longer shows.~~ ~~There may...
Interesting idea! I assume you have already considered Proxy's to do this... Probably too much of an overhead (might be worth a perf test or two tho) Another potential option...
@chatziko @redannick Hey guys, could you provide a super simple gist of how this should look on the backend with node and frontend so I can get going. Just getting...
Hi @redannick :) Ye I would love a working example. I have run through the Socket.IO getting started but cant seem to get it to connect, so would love a...
Awesome! Thanks ill be sure to check this out next week! Mike On 21 February 2016 at 05:00, Kostas Chatzikokolakis < [email protected]> wrote: > I just added a simple client...
Agreed! Its a bit of a gotcha
> Can we expect to see a first iteration in the near future, or should we not hold our breath? I am planning to port a few projects to run...
Awesome! Yes definately async / await. I write a lot of chrome extensions so I dont have to worry about ES5 compatibility issues which is nice. Really looking forward to...