Alexander Goussas
Alexander Goussas
When running the `shadowJar` task, it fails with the following error:  Here is my `build.gradle` ```groovy plugins { id 'io.vertx.vertx-plugin' version '1.3.0' } repositories { mavenCentral() } def vertxVersion...
I could not find a `template` tag. I think it would be a good idea to add one.
I find myself needing the combination of StripPrefix + ToLower very often because apis return fields in camelCase. It would be nice to add something like PrefixedCamelCase or something like...
This snippet of code: ``` while (i < 1000000) { i = i + 1; } ``` Takes 6 seconds to run, as seen in the following screenshot:  In...
Hi everyone! I'm creating this issue so that you can comment new book sources you'd like to have in Alexandria. I think it's better this way instead of having multiple...
When I want to abstract over the type of Monad (for example when using tagless final) I end up having to write code like this: ```typescript export const register =...
For example, in Haskell I can do something like: ```haskell string "Game " >> digits ... ``` I tried using `ignore`, but it doesn't seem to do what I want:...
It would be nice being able to play voice messages directly in this application.
How I imagined this plugin would work: ``` WorkspacesAdd w1 dir1 WorkspacesAdd w1 dir2 ``` Then, opening nvim in either directory would activate the workspace. In terms of implementation, this...