gm fam, what you guys up to today?
Discussion
Brainstorming what to spend time on. What should I do?

I want polls that can get options amended by others. The poll creator should be able to opt out of that.
I had an idea for polls / vote. It would be something like the vote is a dm to a pubkey, that pubkey compiles the results from all the dms. you can verify that a pubkey voted, but not what the vote was...
I guess votes being public for a start is ok. It just should be made clear to the user that that's the case. Also I doubt clients will force users to vote to see results ... or that there is some fancy, non-interactive crypto that could enforce that.
Are there no widely used Schnorr libs in Java or Kotlin already?
Looks like Samourai just wrote their own "lib" https://code.samourai.io/samouraidev/BIP340_Schnorr/-/tree/develop/src/com/samourai/wallet/schnorr
I stole this one. Works pretty well. Had to fiddle with it a bit; but it wasn't difficult.
https://github.com/SamouraiDev/BIP340_Schnorr
>Are there no widely used Schnorr libs in Java or Kotlin already?
Thanks!
I went with [bip-schnorr-java](https://github.com/miketwk/bip-schnorr-java) and am not happy with the verification performance. Less than 20/s. Will give SamouraiDev's version a spin although I have a [strong aversion](https://walletscrutiny.com/android/com.samourai.wallet/).
https://github.com/ACINQ/secp256k1-kmp -- fme way faster than pure JVM impls
You know of any benchmarks? I'll try it out although I indirectly did by working on [kostr](https://github.com/AnonymousGeekDev/kostr) which cost me days hunting a crash bug that left no stacktrace. Test process got killed but no idea by what. My suspect: this dependency.
I hate to admit I'm struggling adding this to [NostrPostr](https://github.com/Giszmo/NostrPostr) library.