Skip to content
View KitsonBroadhurst's full-sized avatar
:bowtie:
Building!
:bowtie:
Building!
Block or Report

Block or report KitsonBroadhurst

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

Hey I'm Kitson 👋

I'm a Lead Engineer at Kin + Carta - Living and working in London

  • 💙 - I'm a big fan of TypeScript and love to work with Next.js
  • 🤖 - I'm obsessed with building fun apps that use generative AI
  • 🧱 - I recently finished web checkout/payment projects at Tesco
  • 🍿 - I build a lot in my free time

Pinned

  1. openai-functions openai-functions Public

    A simple repo to test out OpenAI's new function calling freature available on newer models.

    Python

  2. useFetcher Hook useFetcher Hook
    1
    import React, { useState, useEffect } from 'react'
    2
    // fetchOptionsGenerator is a bespoke header generator for our use case
    3
    import fetchOptionsGenerator from "./fetchOptionsGenerator"
    4
    
                  
    5
    /**
  3. Form Validation with React Hooks - u... Form Validation with React Hooks - useState and useEffect
    1
    import React, { useState, useEffect, useRef } from 'react'
    2
    
                  
    3
    const SignUpForm = () => {
    4
      // we use the help of useRef to test if it's the first render
    5
      const firstRender = useRef(true)
  4. useWindowSize custom hook useWindowSize custom hook
    1
    import React, { useState, useLayoutEffect } from 'react'
    2
    
                  
    3
    const useWindowSize = () => {
    4
      const [size, setSize] = useState([0, 0])
    5
      
  5. basprintprocess.github.io basprintprocess.github.io Public

    Our basic sprint process - WIP

    1

  6. material-ui-basic-layout material-ui-basic-layout Public

    A basic layout configuration for React with Material-UI

    JavaScript 3 5