Skip to content
View alysson-pina's full-sized avatar

Block or report alysson-pina

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. AdvancedReduxCode AdvancedReduxCode Public

    Forked from StephenGrider/AdvancedReduxCode

    JavaScript

  2. alysson-pina.github.io alysson-pina.github.io Public

  3. minimal-react-webpack-babel-setup minimal-react-webpack-babel-setup Public

    Forked from rwieruch/minimal-react-webpack-babel-setup

    The minimal React, Webpack, Babel Setup. You want to get beyond create-react-app?

    JavaScript

  4. mobile-messenger-app mobile-messenger-app Public

    Messenger app for Mobile using Ionic / Cordova / Angular 1.4

    JavaScript 1

  5. Calculate Binary of a given number (... Calculate Binary of a given number (in base 10)
    1
    /**
    2
      * Calculate binary form of a given number n. 
    3
      *
    4
      * Recursive implementation to calculate binary number for a given number. 
    5
      * Algorithm is O(log(N)) on both performance and memory consumption.
  6. Flatten Array Of Integers without us... Flatten Array Of Integers without using .flat or .flatMap (also provided v2 that accepts arrays of any primitive value)
    1
    /**
    2
     * Exports function to flatten array of nested arrays into a single level array
    3
     * @param {Array} array of arrays of integers (any depth)
    4
     * @return {Array} array of integers (one level)
    5
     */