Sergey Ponomarev

Results 230 comments of Sergey Ponomarev

First of all, SQL has a CAST operator which can be used to convert varchar to number so you’ll be able to use agregated function SUM, MIN etc. But better...

This is not an issue. It looks like uded wanted to use hibernate’s composition mapping which needs for setters. Jadira will help you.

Why not just to remove the releases section from README and use this one instead https://github.com/JavaMoney/jsr354-api/releases ? The only problem I see is that thus we get vendor locking with...

It's ok to create a CHANGELOG file just in sources instead of github pages/wiki. But it still don't have a lot sense for me.

There is a lot of places for improvement here but I guess it will be better to fix all bugs and implement needed features first. From what I saw there...

yes, I can make a PR latter but here I just want to know if this ok to do that or there is some use cases when it'\s better to...

In fact we don't need to do this. The gtksourceview-4 is already widely adopted because GNOME's gedit is using it. It is ported to windows etc. So no need to...

ok, it may be that gtksourceview-4 wasn't released for Windows yet. I thought it already done because I used gedit for Windows which looks like uses the gtksourceview-4 but I'm...

I just checked the [skip2/go-qrcode](https://github.com/skip2/go-qrcode) sources and yes, the Best PNG compression is used: ``` encoder := png.Encoder{CompressionLevel: png.BestCompression} ``` I found that I can use a custom compressor but...

I changed code to use the best compression and for the alphanum json-like string of 641 length: * current 1258 * with best 1215 So the diff is only 43...