Skip to content
View bk973's full-sized avatar
🎯
Self teaching
🎯
Self teaching
Block or Report

Block or report bk973

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

Hi there! My name is Bennjamin Kalungi and I am a world-class developer with over four years of experience in the industry. I specialize in fullstack development and cloud engineering and have a strong background in shipping large-scale applications.

I am passionate about solving complex problems and always strive to improve my skills and knowledge. On GitHub, you can find a selection of my personal projects and contributions to open-source projects. I am always open to collaborating and learning from others, so feel free to reach out and connect with me.

Thank you for visiting my profile. I look forward to working with you and making an impact together!

Pinned

  1. useClickAwayHandler.tsx useClickAwayHandler.tsx
    1
    import { RefObject, useEffect } from 'react';
    2
    
                  
    3
    type Event = MouseEvent | TouchEvent | KeyboardEvent;
    4
    
                  
    5
    const isKeyboardEvent = (event: Event): event is KeyboardEvent => {
  2. django-rest-api django-rest-api Public

    Rest APIs backend example using Django and python. (Includes tips, tricks and best practices)

    Python

  3. flask-rest-api flask-rest-api Public

    Restful APIs backend built using Python and Flask... (Tips, Tricks and Best Practices)

    Python

  4. express-graphql-server express-graphql-server Public

    An express server that uses graphql

  5. python-coding-challenges python-coding-challenges Public

    Common computer science challenges solved using Python

  6. useDebounce.ts useDebounce.ts
    1
    import { useEffect, useState } from "react";
    2
    
                  
    3
    export default function useDebounce(value:string, delay:number) {
    4
        const [debouncedValue, setDebouncedValue] = useState(value);
    5