Skip to content
View mkpanq's full-sized avatar

Block or report mkpanq

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

Iโ€™m a fullstack developer from Warsaw, Poland ! ๐Ÿ‡ต๐Ÿ‡ฑ

  • โš™๏ธ My daily stack: React, TypeScript, Ruby on Rails โ€” but I like picking the right tool for the job and love to learn a new things!
  • ๐Ÿ’ผ I'm currently looking for new job opportunities - let's connect !
  • ๐Ÿ–๏ธ Outside of work, Iโ€™m into Formula 1 ๐ŸŽ๏ธ, the NBA ๐Ÿ€ (go Heat ๐Ÿ”ฅ), sim racing ๐Ÿ›ž and the occasional PS5 session ๐ŸŽฎ
  • ๐Ÿ“ซ Reach me via email or on LinkedIn, GitHub, or Bluesky
  • ๐Ÿ‘‹๐Ÿป See my website - mkpanq.com

Last update: October 17th 2025

Pinned Loading

  1. mkpanq.com mkpanq.com Public

    Source code for my personal website

    TypeScript

  2. cama cama Public

    "Control All My Assets" Personal Finance App

    TypeScript

  3. Dockerfile with the newest asdf inst... Dockerfile with the newest asdf installed, which takes .tool-version from the current folder, installs plugins, and all versions.
    1
    # syntax=docker/dockerfile:1
    2
    FROM ubuntu:latest
    3
    
                  
    4
    LABEL maintainer='Marek Pankowski <mkpanq.com>'
    5
    LABEL last-update='2025-08-03'
  4. Small JS script to scan the whole co... Small JS script to scan the whole codebase for TODOs and save it to the separate TODO.md file - makes it easier for me to track all the todos, without any IDE plugins
    1
    const fs = require("fs");
    2
    const path = require("path");
    3
    const crypto = require("crypto");
    4
    const { execSync } = require("child_process");
    5