Skip to content
View jackhutson's full-sized avatar

Block or report jackhutson

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
jackhutson/README.md
  • 👋 Hi, I’m @jackhutson
  • 👀 I’m interested in web architecture, microservices, and emerging technologies
  • 🌱 I’m currently learning Go

Pinned Loading

  1. NodeJS script to figure out if a pro... NodeJS script to figure out if a provided string is a panagram
    1
    const remainder = Array.from(Array(26))
    2
      .map((e, i) => i + 65)
    3
      .map((x) => String.fromCharCode(x))
    4
      .filter(
    5
        (letter) => !process.argv[2].toUpperCase().split('').includes(letter)
  2. pokemon-demo pokemon-demo Public

    Light demo show some basic react query

    TypeScript