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

Organizations

@sequra
Block or Report

Block or report bismarkhenao

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
bismarkhenao/README.md

Hi, I'm Bismark 👋

  • 🔭 Working on some nice stuff
  • 💬 Ask me about JavaScript & TypeScript
  • 🌱 Learning Ruby, Java and Rust
  • 👷 I’m looking to collaborate on open source projects
  • ⚡ Fun facts: I'm an Open Water Diver 🤿 and a CrossFitter 🏋️

Pinned

  1. advent-of-code-2022 advent-of-code-2022 Public

    The advent of code puzzles written in ES6 - https://adventofcode.com/

    JavaScript

  2. dotfiles dotfiles Public

    zsh, oh-my-zsh, vim and brew configuration

    Vim Script

  3. eslint-config-friendly eslint-config-friendly Public

    Yet Another Eslint Configuration

    JavaScript

  4. create-react-app-moth create-react-app-moth Public

    Node CLI for fast react, redux, thunks, react-router boilerplate

    JavaScript

  5. String.indexOf implementation String.indexOf implementation
    1
    const test = require('tape');
    2
    
                  
    3
    String.prototype.indexOf = function (searchValue, fromIndex = 0) {
    4
        const str = this.slice(0);
    5
        let arr = [];