Alexander Goussas

Results 8 issues of Alexander Goussas

When running the `shadowJar` task, it fails with the following error: ![image](https://user-images.githubusercontent.com/84427521/156940626-d21e2744-5d49-4a1a-9b00-f68ff1085ac8.png) 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: ![image](https://github.com/Usbac/borealis/assets/84427521/24156ab1-8b3b-4f9e-a9db-fa51575d5a0e) 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...

enhancement

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:...