sergeych

Results 15 issues of sergeych

It is often a need to keep regular `delay()` behavior with actual delay, for example: - debugging code that uses time-depending libraries that know nothing of virtual time (e.g. `kotlinx.datetime`)...

test

Atmosphere is not a websock. Its a monster. Not working ugly slow buggy monster. At least with scalatra and jetty. Getting random errors like: ~~~ 18:44:41.492 WARN o.a.w.DefaultWebSocketProcessor - Failed...

atmosphere

often we need to show an error bound to an input _after calling some async API_. It does not fit validation model as the error outcome is a result of...

~~~ makeAutocompletable{ contactNamesMatching(it) } ~~~ fails as soon as mouse hovers over combo down arrow button. Everything else works as expected. Removing arrow button from parent look awful but at...

Impossible to correcly connect vertical scrollbar to EditText or BasicEditText. If the scllbar is connected, then when caret goes below the visible part of the text it just disspears. It...

bug
desktop
p:high

In my case: ~~~ [remote "origin"] url = ssh://[email protected]/unikrypto.git fetch = +refs/heads/*:refs/remotes/origin/* [remote "github"] url = https://github.com/sergeych/unikrypto.git fetch = +refs/heads/*:refs/remotes/github/* ~~~ the plugin asked me to specify the platform, and...

### SQLDelight Version 2.0.1 ### SQLDelight Dialect postgres ### Describe the Bug ``` createByChat: INSERT INTO users(firstName,lastName,userName,chatId,accessToken) VALUES(?,?,?,?,?) ON CONFLICT DO NOTHING RETURNING *; ``` causes sqlDelight to not to...

bug

your readme is laconic up to uselessness ;) The prescribed idea to go somewhere to ask somebody for help was great before poor guy Gutenberg's invention ;)

~~~kt assertEquals("${-15.5 % 360.0}", ((-15.5).bd % 360.bd).toStringExpanded()) ~~~ fails: ~~~ Expected :-15.5 Actual :-0.155 ~~~ - was like this at least on JVM. Full test cor convenience: ~~~kt import com.ionspin.kotlin.bignum.decimal.BigDecimal...

**Describe the bug** The result of BigDecimal.divideAndRemainder are incorrect.: ~~~kotlin @Test fun testRemainder() { val full = BigDecimal.fromInt(360) val x = BigDecimal.fromDouble(15.5) + full*5 val (q,r) = x.divideAndRemainder(full) assertEquals("5", q.toStringExpanded())...