Said Kadrioski
Said Kadrioski
Using the [nnn](https://github.com/jarun/nnn) file manager, I can't use the 'preview-tabbed' script without constantly losing focus. It's a script that constantly invokes other programs and nests it in [tabbed](https://tools.suckless.org/tabbed/) Reference: -...
Hello, this is _kind of_ a **DUPLICATE** since there's already draft #1367 that attacks issue / discussion #1000, but it hasn't seen any updates since more than a month! So...
Mempool calls the wrapped allocator N times when preheating it with N items. I think it is more appropriate, if it only allocates one time. This should be faster and...
The EGCD is used for cryptographic purpose, for example to find the inverse of a number mod a prime. I have implemented an iterative version of this algorithm. The existing...
Sometimes it is crucial to convert types without evaluating the value. For example, like this: ```scala implicit def toB[R](x: => A[R]): B[R] = B(myFun(x)) ``` There exists no equivalent `given`...