Skip to content
View gavvvr's full-sized avatar
πŸ₯·
Taming complexity
πŸ₯·
Taming complexity
Block or Report

Block or report gavvvr

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

Hi there πŸ‘‹

I am a well-grounded Kotlin/Java backend developer with 8 years of commercial experience. For application development I prefer Kotlin now and would only use Java where I do not want to bring in kotlin-stdlib as a dependency.

  • πŸ“• I like reading books and I make notes using Obsidian to focus my attention on crucial tings
  • 🌱 When I have a time, I work on Obsidian Imgur plugin here on GitHub
  • πŸ”­ I’m interested in:
    • any DevOps tools, which help me to automate my flow and deliver faster
    • Domain-Driven Design
    • practical functional programming techniques
    • asynchronous programming
    • monitoring and observability
  • πŸ’¬ Ask me about: git, testing, clean design, CI/CD, Gradle, Docker & Kubernetes and CLI tools
  • πŸ’» I work on MacBook ο£Ώ, here are my .dotfiles
  • πŸ“« You can find my contacts and CV here
  • πŸ˜„ Pronouns: he/him
  • ⚑ Fun fact: "Simplicity is prerequisite for reliability"

Pinned

  1. obsidian-imgur-plugin obsidian-imgur-plugin Public

    Pastes images right to imgur.com

    TypeScript 180 48

  2. dotfiles dotfiles Public

    πŸ’» My dotfiles managed with https://yadm.io [Mirror]

    Shell 3 1

  3. Migrate UUID values from legacy bina... Migrate UUID values from legacy binary type 3 to standard
    1
    ## MongoDB migration: From legacy UUID represenation (binary type 3) to standard (type 4)
    2
    
                  
    3
    You may face the need to migrate your data, because legacy format was a default choice for a long time in Spring Boot/Data MongoDB and the official MongoDB driver itself (more details [here](https://github.com/spring-projects/spring-boot/issues/33532)). 
    4
    
                  
    5
    So, here is the Java solution based on utilitites from Mongo's `org.bson:bson` to perform the migration.