Skip to content
View jerameel's full-sized avatar
:electron:
:electron:
Block or Report

Block or report jerameel

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. genetic-lab genetic-lab Public

    A lightweight genetic algorithm library for javascript/typescript.

    JavaScript 5

  2. bacon bacon Public

    An open source Bluetooth controller application for mobile devices.

    TypeScript 44 3

  3. sushi sushi Public

    A personal finance management app built with react-native.

    TypeScript 129 30

  4. Custom Bash Prompt with Git branch a... Custom Bash Prompt with Git branch and Node version for NVM support.
    1
    parse_git_branch() {
    2
        OUT=$(git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/\1/')
    3
        if [ -n "$OUT" ]; then
    4
            echo $OUT
    5
        else