Skip to content
View jatin33's full-sized avatar
🎯
Focusing
🎯
Focusing

Block or report jatin33

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.

Content in all repositories owned by your account will be closed.
Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. react-hooks-gmail-like-multi-email-inputreact-hooks-gmail-like-multi-email-inputPublic

    This is a react hook library that creates gmail like email input behavior

    TypeScript

  2. tech-toolkit-sm-bannertech-toolkit-sm-bannerPublic

    An interactive tech toolkit visualization application featuring a drag-and-drop canvas for creating tech stack mockups on device templates. Users can organize and arrange tech icons on a tablet moc…

    TypeScript

  3. code-snippet-generatorcode-snippet-generatorPublic

    This project helps to generate code snippets for different text editors like VSCode, Sublime Text and Atom.

    JavaScript 1

  4. sorting-visualizersorting-visualizerPublic

    This project helps in visualizing sorting algorithms

    JavaScript

  5. killProcessOnPort.shkillProcessOnPort.sh
    1
    #!/bin/bash
    2
    echo Enter port number to kill
    3
    read port_number
    4
    pid="$(lsof -i:$port_number| awk '{ print $2 }'| sed -n 2p)"
    5
    kill -9 $pid