Skip to content
View jcaromiq's full-sized avatar
👨‍💻
👨‍💻

Organizations

@apiumhub

Block or report jcaromiq

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
jcaromiq/README.md

👋 Hi! I'm Joaquín Caro

I'm a software engineer with a focus on building tools and solutions that enhance efficiency and automation. I work with various technologies, including Rust and Clojure. Notable projects include goku, an HTTP load testing tool in Rust, and adh-rust, a Docker helper.

💻 I'm passionate about observability, metrics, and distributed systems, always seeking to learn and contribute to open-source projects.

Feel free to explore my repositories, and let's collaborate on something awesome!

Pinned Loading

  1. goku goku Public

    Goku is an HTTP load testing application written in Rust

    Rust 115 3

  2. adh-rust adh-rust Public

    ADH: Docker 'Useful Commands' Helper

    Rust 5

  3. tarifa_luz tarifa_luz Public

    🔋💰Comprueba el precio de la electricidad en la franja actual

    TypeScript 3 1

  4. Mars-Rover-Kata-Clojure Mars-Rover-Kata-Clojure Public

    My solution to Mars Rover kata in Clojure

    Clojure

  5. Score-Keeper-Clojure Score-Keeper-Clojure Public

    Clojure

  6. FoldableBoolean.kt FoldableBoolean.kt
    1
    fun <R> Boolean.fold(whenFalse: R, whenTrue: R) = when (this) {
    2
        true -> whenTrue
    3
        false -> whenFalse
    4
    }
    5