Khurelkhuyag

Results 31 comments of Khurelkhuyag

I know It is 3 years late. But I encountered a similar exception. I expected `Hibernate5Module` will ignore the property if the property is lazy and not loaded yet. Is...

The same problem is here. In stable flutter 3.3.0. Is there any developer who has a workaround? Developers whose native language is not English must be annoyed. Here is the...

Any release since this change?

Only shared clipboard working. Is anyone get a working shared folder?

Oh, I see minimum java requirement is version 1.5. But String.getBytes(Charset) method introduced in 1.6. Can we increase minimum requirement?

Maybe they are now working on ksqlDB.

Easy to use cookie handler: https://github.com/hurelhuyag/dio_cookie_cached_handler

SSE messages must be split by a double new line. Does anyone implement such a splitter?

Based on @vhdrjb's code, I have implemented one more transformer to extract the correct SSE message. But I believe there must be a more efficient transformer. But with my current...

@timower Thanks. This fixes the problem I had. ``` StreamController get _controller { return __controller ??= StreamController( onListen: _startRead, onCancel: _cancelRead, /*onPause: _cancelRead, onResume: _startRead,*/ ); } ```