Skip to content
View h2xd's full-sized avatar
🍉
Finally fruit season
🍉
Finally fruit season
Block or Report

Block or report h2xd

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

Pinned

  1. exposition exposition Public

    Structure to explain the who, what and where of the API mocking process

    TypeScript 4

  2. hivemq/distributed-mqtt-editor hivemq/distributed-mqtt-editor Public

    TypeScript 4

  3. react-in-vue react-in-vue Public

    Simple example how to wrap React.createRoot within Vue. Maybe this helps with your migration plan.

    Vue

  4. deex deex Public

    Codename: Deex (DX) - Custom Web Application developer tools to allow us to hack ourselfs. Imagine autofilling forms while doing manual testing or flushing data from localStorage without going to t…

    TypeScript

  5. code-gif code-gif Public

    Trying out ffmpeg in the browser, to generate some nice gifs.

    Vue

  6. Generate a random password in JavaSc... Generate a random password in JavaScript; based on your char selection
    1
    const getRandomCharsFromString = (charset, length) =>
    2
      charset.split('')
    3
        .sort(() => Math.random() - 0.5)
    4
        .slice(0, length)
    5
        .join('')