• Standardize Java Code Formatting {Intellij, VSCode}

    Lately, I have been working on bunch of Java Services that requires code refactoring and the first step to code refactoring is code formatting. The codebase has spotless configured but the formatting is not consistent while working in different...
  • My VS Code Setup & Settings Sync workflow

    Preread: VsCode Multi-root Workspaces Here is my local vscode setup structure. This post is preference based and may not be the right choice for every dev and it’s working for me so far. Goal: Sync all the settings(windows, wsl,...
  • Containerized self-managed FEK stack

    Long story short: I was working on a microservice that’s full of spaghetti codebase(it’s a fact not an opinion, SONAR report says that), architecture and unclear logs. Logs are vital IMHO, thought of starting with improving logs(Not just log...
  • Run DeepSeek:R1(Model) in offline mode

    This post aims to run deepseek-r1 model in offline mode and have an AI agent connected to the offline model through VScode with WSL setup I would be installing this VsCode extension as AI Chat agent that connects to...
  • Containerized Self-Managed SonarQube Setup

    This post will be focus on setting up self-managed SonarQube(Server) Here is my setup steps(includes issues and fixes) Here is my docker-compose.yml file # @author: sairaghava_k services: sonarqube: image: sonarqube:community hostname: sonarqube container_name: sonarqube read_only: true depends_on: db: condition:...