Skip to content
View Poisonlocket's full-sized avatar
πŸ¦†
ducks are cool
πŸ¦†
ducks are cool

Organizations

@SwissHub-Development

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.

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

Hi πŸ‘‹ My name is Lori

Fullstack Developer / IT-Student

forthebadge

  • 🌍  I'm based in Switzerland
  • πŸ–₯️  Check out my portfolio at bonomettil.dev
  • πŸ“© Contact me @ [email protected]
  • πŸš€Β  Currently i'm working on Sproutly, my IDPA 🌱
  • 🧠  I'm learning Typescript, GO and playing a bit around with Traefik and Linux
  • 🀝  Feel free to reach out to me if you are looking to build a Project together
  • πŸ›‘οΈ Cybersecurity Fan
  • πŸ‘‘ Pnpm for the Win

Just remember forthebadge

just remember, friday is push to Prod day :)

Skills

GitJavaScriptTypeScript PythonHTML5TailwindCSSCSS3NodeJSMySQLPostgreSQLDockerLinuxRaspberry PiFigma GoReactNextJs

Socials

Badges

My GitHub Stats

Poisonlocket's GitHub stats

My github activity graph

From: 27 February 2025 - To: 29 March 2025

Total Time: 40 hrs 16 mins

TypeScript       28 hrs 29 mins  >>>>>>>>>>>>>>>>>>-------   70.75 %
Python           5 hrs 19 mins   >>>----------------------   13.23 %
JavaScript       3 hrs 38 mins   >>-----------------------   09.04 %
Markdown         32 mins         -------------------------   01.33 %
Docker           19 mins         -------------------------   00.81 %
Go               19 mins         -------------------------   00.79 %
JSON             18 mins         -------------------------   00.77 %
HTML             14 mins         -------------------------   00.61 %
CSS              4 mins          -------------------------   00.19 %

A picture of my current Arch-Gnome Rice

Screenshot from 2024-01-01 00-04-39

Pinned Loading

  1. PRWR-website PRWR-website Public archive

    PRWR-website Project

    HTML 2

  2. baselhack-hay/monorepo baselhack-hay/monorepo Public

    TypeScript 2 1

  3. portfoliowebsitev2 portfoliowebsitev2 Public

    TypeScript

  4. Bernhackt_LEFTOVERLove Bernhackt_LEFTOVERLove Public

    TypeScript 1

  5. Coerres/password-generator Coerres/password-generator Public

    A password-generator in Python.

    Python 1

  6. 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() {