Skip to content
View Poisonlocket's full-sized avatar
🦆
ducks are cool
🦆
ducks are cool

Block or report Poisonlocket

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

Hey random stranger!

A bit about myself

You are in the right place if you want to talk about open source philosophy, get random fun facts you might not have known or to just enjoy some tea while coding. Due to my never ending amount of random niche interests i constantly work on different stuff. One week i might be trying to reinvent the wheel, on another week i might be climbing a mountain. Overall i am just trying to manage my polymath brain and write some code that makes this world just a tiny bit of a better place. The more good impact the better. Thank you for reading all of this, may your journey on this browsing session continiue well and go spread some joy and whimsy in this world.

Stuff i do more regularly

  • Writing Open source stuff.
  • Doing security labs.
  • Managing my infrastructure.
  • Chewing on cookies.
  • Ricing my Arch desktop

For recruiters and interested people, here is my Stack:

  • Astro
  • React / Nextjs
  • Angular
  • Java
  • Kotlin
  • Python
  • Some basic Go
  • Java/Typescript
  • Bash
  • Powershell
  • Docker
  • Kubernetes
  • DevOps / Building CI/CD pipelines

My GitHub Stats

Poisonlocket's GitHub stats

My github activity graph

From: 12 May 2026 - To: 11 June 2026

Total Time: 0 secs

No activity tracked

Pinned Loading

  1. Easier bash navigation rmcd, mkcd. T... Easier bash navigation rmcd, mkcd. This is a small improvement to your dev experience when working with bash, if you want to create a directory and cd into it, you can do that now in one command, same goes for removing and leaving it. To implement this just put it into your .bashrc or .bash_profile file and reload from source
    1
    mkcd() {
    2
    	mkdir -p "$1" && cd "$1"
    3
    }
    4
    
                  
    5
    rmcd() {
  2. QuackStream QuackStream Public

    TypeScript 2

  3. Easier git commands / quality of life Easier git commands / quality of life
    1
    gittouch() {
    2
      touch "$1" && git add "$1"
    3
    }
  4. Poisonlocket Poisonlocket Public

    Config files for my GitHub profile.

  5. password-generator password-generator Public

    Forked from Coerres/password-generator

    A password-generator in Python.

    Python

  6. ddos_demo ddos_demo Public

    90% of the Code has been authored by chatgpt, im justusing this for a school demo and too lazy to spin up everything myself, use at your own risk

    Python