Vladimir Sitnikov
Vladimir Sitnikov
`java.net.Socket` + `ssl` buffers data, and it seems there's no sensible way to check if the connection holds some data or not (e.g. `server notifications`). That is really painful for...
pgjdbc has recently switched to "ssl by default" for security reasons, and the default buffering in SSL implementation in Java did bite us a couple of times :-/
@yotamberk , I was in the middle of upgrading "10 year old js libraries to 5 year old ones". The case is likely: add 1000 range-items to the timeline, draw...
https://github.com/yotamberk/timeline-plus/blob/06ec1207fca71438081be3c5b51c64f15114db35/lib/DataView.js#L89-L92
Here you go (this is a relevant bit of updated stressPerformance.html): ```js // create a dataset with items var data = []; var items = new timeline.DataSet(); for (var i...
@saharki , thanks for the PR, however it does not seem to work. What would be the output of your algorithm for the case like ``` 0, 2 1, 3...
>Although the last commit piles the items of your example to 3 levels (not 2 as you'd expect) Why item "3" is put on its own lane? It should put...
@saharki , just to clarify: Suppose the algorithm has processed 100 items (out of 1000), and suppose it has allocated 10 rows. Then comes item 101. Where should it put...
> What you described here wouldn't be a greedy algorithm, Why do you think so? >Of course my algorithm doesn't have the best output What is the algorithm exactly? I...
I'm afraid it would take me a while (I'm not much into TypeScript)