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

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.

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

Pinned

  1. code-snippet-generator code-snippet-generator Public

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

    JavaScript

  2. sorting-visualizer sorting-visualizer Public

    This project helps in visualizing sorting algorithms

    JavaScript

  3. 100DaysOfCode 100DaysOfCode Public

    Here I try to code for 100 days by creating projects in javascript

    HTML 1

  4. killProcessOnPort.sh killProcessOnPort.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
  5. fullstack-todo fullstack-todo Public

    Built frontend and backend of todo application

    JavaScript 1