Skip to content
View adrisalas's full-sized avatar
🐤
Rubber duck debugging
🐤
Rubber duck debugging

Block or report adrisalas

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
adrisalas/README.md

Ahoy! 👋

A bit about me

I'm Adri, a tea-loving nerd from Spain. I enjoy hiking, fantasy books, animals, Linux, and coding. 🖥️

gopher dancing

Current adventures

  • Learning Go
  • Studying English
  • Reading Robin Hobb

Pinned Loading

  1. advent-of-code advent-of-code Public

    My solutions for AoC

    Kotlin 2

  2. botanic-garden botanic-garden Public

    Final degree Project. A Botanic Garden's app using IoT Beacons - Android - Webflux - R2DBC - Kotlin - Docker - Angular.

    Kotlin

  3. spring-testcontainer-kafka-mysql spring-testcontainer-kafka-mysql Public

    Example of Spring Boot with testcontainers (Kafka, MySQL)

    Kotlin 1

  4. go-leetcode go-leetcode Public

    Leetcode solutions in Go

    Go 1

  5. Add insert/update to Spring Data R2DBC Add insert/update to Spring Data R2DBC
    1
    @EnableR2dbcRepositories(
    2
        value = ["your.project.basepackage"],
    3
        repositoryBaseClass = CustomR2bcRepository::class
    4
    )
    5
    @Configuration
  6. Add insert/update to Spring Data JPA Add insert/update to Spring Data JPA
    1
    @Configuration
    2
    @EnableJpaRepositories(
    3
        value = ["your.project.basepackage"],
    4
        repositoryBaseClass = CustomJpaRepository::class
    5
    )