Skip to content
View graffhyrum's full-sized avatar
πŸŽ„
Advent of Code (O 3 O)
πŸŽ„
Advent of Code (O 3 O)

Block or report graffhyrum

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

Pinned Loading

  1. pendragon-coding pendragon-coding Public

    This is a portfolio website written in Typescript. It primarily uses Astro

    Astro

  2. jobAppTracker jobAppTracker Public

    A single-user job application tracking system built with TypeScript and Bun, following hexagonal architecture principles

    TypeScript

  3. playwright-json-summary-reporter playwright-json-summary-reporter Public

    Forked from playwrightsolutions/playwright-json-summary-reporter

    Playwright JSON Summary reporter

    TypeScript

  4. Pathrise-Scraper Pathrise-Scraper Public

    A side project to scrape my Pathrise pipeline and fill out unemployment forms for me.

    TypeScript

  5. waitForMutationToStop.ts waitForMutationToStop.ts
    1
    import {Locator} from '@playwright/test';
    2
    
                  
    3
    /**
    4
     * Wait for `elem` to have no mutations for a period of
    5
     * `noMutationDuration` ms. If `timeout` ms elapse without a "no mutation"
  6. recursive_partial.md recursive_partial.md
    1
    The provided TypeScript code defines a utility type `RecursivePartial`. This type is used to create a version of an existing type, but with all of its properties (and their nested properties) made optional and able to be partially provided.
    2
    
                  
    3
    The `RecursivePartial` type is defined as a mapped type that iterates over all properties (`Prop`) of a given type (`Type`):
    4
    
                  
    5
    ```typescript