Skip to content
View KoenBrouwer's full-sized avatar

Block or report KoenBrouwer

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

Hi there πŸ‘‹

I'm Koen Brouwer, making awesome stuff on the web.
🏑 Based in The Netherlands.

πŸ’¬ Ask me about anything. Happy to help!
⚑ Open for opportunities, get in touch!
πŸ“« Feel free to reach out: @KoenBrouwer on Twitter

πŸŒ™ I prefer dark mode.

Pinned Loading

  1. react-grapple react-grapple Public

    A collection of useful React hooks that I made.

    TypeScript

  2. catchbuddy catchbuddy Public

    Simplify error handling in JavaScript with a lightweight utility that organizes results and errors for both synchronous and asynchronous operations.

    TypeScript

  3. Script that can be used in a pipelin... Script that can be used in a pipeline to ensure that it's been rebased onto master before merging.
    1
    import { execSync } from "child_process";
    2
    import gitlog from "gitlog";
    3
    
                  
    4
    const main = () => {
    5
        const getBase = () => execSync("git merge-base origin/master HEAD").toString().trim();