Jimmy Aumard

Results 267 comments of Jimmy Aumard

What would be a good use case for this ? because normally what is configured under `spool.ts` is what the spool need to work correctly, so what's the point of...

Agree with this :) might be helpful

Very curious and existed about this :) I don't know shit about distributed system, but one question that popup in my mind is how spool will start ? after that...

I would be interested in PostgreSQL support :) Any tips (steps) on how to start to provide such feature ?

> This appears to me to conform to the spec, please let me know if I'm missing something. The spec say not only authorisation code must be invalidated, but also...

Just tried only serializer involve like this and was able to reproduce ``` import 'package:jaguar_serializer/jaguar_serializer.dart'; void main() { final data = '{"sold":17,"placed":1,"string":1139,"Operated":4,"NOT available":1,"123456":1,"Nonavailable":1,"pending":14,"Not-Operated":10,"available":854,"For sale":1,"Offline":1}'; final repo = JsonRepo(); Map parsedData...

So now `Map` can be parsed without problem thanks @tejainece ! Let's keep this issue to manage `Map` :)

Wrong repo, should be under jaguar_serializer I guess :)

Having an annotation at model level @GenModelHelper or something to override == and hashcode, in addition a clone and toString methods would be just a feature killer for me^^

When using IntelliJ, it can generate those with some shortcut, here is what it generate: ``` @override bool operator ==(Object other) => identical(this, other) || other is CashRegisterState && runtimeType...