Skip to content
View zeeshan1112's full-sized avatar
💭
For you to do something new, you need to stop doing something old.
💭
For you to do something new, you need to stop doing something old.

Block or report zeeshan1112

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 Loading

  1. co2-calculator co2-calculator Public

    A mini project on Node.js project to return the amount of C02-equivalent that will be caused when travelling a given distance using a given transportation method.

    JavaScript

  2. CRM CRM Public

    A project to demonstrate how to build RESTful API's with Node.js and Express and MongoDB as your database.

    JavaScript

  3. Javascript-Fast-Forward Javascript-Fast-Forward Public

    This repository will contain learning resources for Javascript developers. It can be seen as a personal notes to quickly go through all the important concepts of Javascript.

  4. Code snippet to add branch informati... Code snippet to add branch information on your mac terminal
    1
    # Git branch in prompt.
    2
    parse_git_branch() {
    3
        git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/'
    4
    }
    5
    export PS1="\u@\h \W\[\033[32m\]\$(parse_git_branch)\[\033[00m\] $ "