Highlights
Block or Report
Block or report guizmaii
Contact GitHub support about this user’s behavior. Learn more about reporting abuse.
Report abusePinned
-
-
Colisweb/scala-distances Public
WIP - Preferably, don't use it in production until you've read the code. The API is not yet stable.
-
safe-libphonenumber Public
Forked from Colisweb/safe-libphonenumber
Exceptions don't compose!
Scala 1
-
sbt-datadog Public
Forked from Colisweb/sbt-datadog
Add the Datadog Java APM agent in your sbt project
Scala
-
Helper to write Excel files as fast as possible with a constant RAM use in JRuby programs
2,699 contributions in the last year
Activity overview
Contribution activity
February 2022
Created 8 commits in 4 repositories
Created 1 repository
- guizmaii/kafka Java
Created a pull request in conduktor/zio-kafka that received 17 comments
Opened 11 other pull requests in 4 repositories
conduktor/zio-kafka
6
merged
conduktor/kafka-stack-docker-compose
2
merged
zio/zio-kafka
2
merged
ghostdogpr/caliban
1
merged
Reviewed 10 pull requests in 6 repositories
zio/zio-kafka
3 pull requests
conduktor/zio-kafka
3 pull requests
dream11/zio-http
1 pull request
embeddedkafka/embedded-kafka
1 pull request
conduktor/kafka
1 pull request
zio/zio
1 pull request
Created an issue in ghostbuster91/scalafix-unified that received 2 comments
Replaces the Nil in pattern matching
I was having something like this in my code:
args match { case a :: b :: Nil => .. ... }
And the plugin replaced the Nil by List.empty:
args match { …