close
Skip to content
View hartz89's full-sized avatar

Block or report hartz89

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.

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. on-writing-code on-writing-code Public

    Personal code style and best practices

    4

  2. product-search product-search Public

    Walmart product search API implemented with hapi

    JavaScript

  3. Implementation of a binary insertion... Implementation of a binary insertion sort in es6.
    1
    export const getInsertPosition = (value, target) => {
    2
      if (target.length === 0) {
    3
        return 0;
    4
      }
    5
      if (value < target[0]) {
  4. JSnake JSnake Public

    The classic snake game, written in modular, object-oriented JavaScript (ES5)

    JavaScript 1

  5. angular-cli-todo-list angular-cli-todo-list Public

    A simple ToDo list application built using Angular-CLI and Angular2

    TypeScript 2