Skip to content
View DrDrunkenstien-10's full-sized avatar

Block or report DrDrunkenstien-10

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.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

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

Report abuse
DrDrunkenstien-10/README.md

About Me:

Computer Science graduate and Research Associate at ApTSi, building cybersecurity SaaS products with Zero Trust principles. Skilled in Java + Spring Boot, with experience in cloud, and DevSecOps. Passionate about solving real-world problems and delivering impactful software.

Projects

Project Name Description GitHub Repository Live Demo
Deplens A CLI tool that scans project dependencies for licenses, vulnerabilities (CVEs), and version health. GitHub -
Minute-Muse MinuteMuse is an AI-powered tool for automating the generation of meeting minutes and action items from meeting transcriptions. By leveraging advanced audio processing and language models, MinuteMuse simplifies post-meeting workflows and improves productivity. GitHub -
Wealthwise Wealthwise is a modern personal finance manager built with React, Spring Boot, PostgreSQL, and Keycloak. It helps you track income, expenses, savings, receipts, and recurring transactions with a clean dashboard and charts. Front-end / Back-end Live Demo
Portfolio A personal portfolio website built with Astro. Front-end / Back-end Live Demo
Aufgabenliste A simple task management web application built with Spring Boot, PostgreSQL, and a lightweight HTML/CSS/JavaScript frontend. The app supports creating, updating, deleting, and filtering tasks with status and date filters. It’s fully Dockerized for easy setup. GitHub -
WikiSearch Simple search engine using an inverted index applied to a collection of Wikipedia articles. GitHub -
Playfair Cipher Java implementation of the Playfair Cipher encryption algorithm. GitHub -
Patient Management System SaaS product to manage a clinic. Manage doctors, receptionists, book/reschedule/cancel appointments, view dashboards and reports. Work in progress. Front-end / Back-end -

Explorations & Experiments

Project Name Description GitHub Repository Live Demo
One Time Pad (Java) Simple implementation of the One Time Pad encryption algorithm in Java demonstrating symmetric key encryption with theoretically perfect secrecy when used correctly. GitHub -
Brainfuck Interpreter (Java) A minimal Brainfuck interpreter written in Java that parses and executes Brainfuck programs using a tape-based memory model. GitHub -
Caesar Cipher (Brainfuck) A simple Brainfuck program that implements the Caesar Cipher encryption (works for 3 characters). GitHub -

🌐 Socials:

LinkedIn Email Website

Pinned Loading

  1. deplens deplens Public

    CLI tool that scans project dependencies for licenses, vulnerabilities (CVEs), and version health.

    Java 1

  2. minute-muse minute-muse Public

    An AI powered tool to generate meeting minutes from meeting recordings.

    Python 2

  3. wealthwise wealthwise Public

    Backend for Wealthwise – a personal finance manager built with Java and Spring Boot.

    Java 1

  4. advent-of-code-2025 advent-of-code-2025 Public

    Advent of Code 2025 Solutions.

    Java 1

  5. Simple program to implement Caesar C... Simple program to implement Caesar Cipher in Brainfuck (only works for 3 characters).
    1
    ,           Accept the first character and store it in the first cell
    2
    > ,         Move to next cell and accept the second character
    3
    > ,         Move to next cell and accept the third character
    4
    <<          Move back to first cell
    5
  6. This is a simple Brainfuck interpret... This is a simple Brainfuck interpreter written in Java.
    1
    import java.util.Scanner;
    2
    
                  
    3
    public class BrainfuckInterpreter {
    4
    	private static final int CELL_COUNT = 30000;
    5