Skip to content
View hankadev's full-sized avatar
🦄
being awesome
🦄
being awesome

Organizations

@profiq @cesko-digital @indykite @EddieHubCommunity
Block or Report

Block or report hankadev

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

Hi, I'm Hanka 👋

Software Engineer

I'm a self-taught developer. When I'm not wrangling lines of code, you can find me diving into the worlds of JavaScript, TypeScript, React, NextJS, and Remix. Yes, I do create digital magic, but no, I can't pull a rabbit out of a server... yet.

🌟 Fun fact #1: I have a Baby Yoda tattoo. That's right, I'm not just about the code; I'm a huge Star Wars fan. My quest? To craft software as legendary as the stories from galaxies far, far away.

🏃‍♀️ Fun fact #2: I'm not just running tests, I'm a real-life half marathon conqueror! I've raced through the streets more times than the Millennium Falcon has done the Kessel Run. So whether it's debugging code, sprinting, or running a half marathon, I know how to keep the pace.

📝 I write articles on https://hankadev.com/

🎓 I’m currently learning Go, Docker, GitHub Actions

Where to find me in the galaxy

linkedin twitter instagram

My Beskar Arsenal

javascript typescript react react router nextjs remix nodejs expressjs graphql jest cypress tailwind

My Galactic Speaker's Saga

Why you should give Copilot a try Copilot: Weapon for Laid Back Developers

Pinned

  1. a simple script for pre-commit hook ... a simple script for pre-commit hook that checks if I forgot to remove .only from a test case
    1
    #!/bin/bash
    2
    # pre-commit.sh
    3
    for file in $(git diff --cached --name-only | grep -E '\.(js|jsx|ts|tsx)$'); do
    4
      if grep -q ".only(" "$file"; then
    5
        echo "Error: '.only(' found in $file"
  2. a simple PR workflow that checks if ... a simple PR workflow that checks if I forgot remove .only in any file
    1
    name: PR checks
    2
    on:
    3
      pull_request:
    4
        branches: [main]
    5