Skip to content
View DiegoSalazar's full-sized avatar

Block or report DiegoSalazar

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

    HTML5 Canvas implementation of Conway's Game of Life - Cellular Automata

    JavaScript 23 8

  2. color_adjuster color_adjuster Public

    Module mixin with methods to manipulate hex colors

    Ruby 22

  3. DefRetry DefRetry Public

    Add retry logic to your methods/objects

    Ruby 22

  4. CircleWaves CircleWaves Public

    Circle wave animation in Javascript and HTML

    JavaScript 22 3

  5. action_cable_subscription_adapter action_cable_subscription_adapter Public

    Easily use any Redis client for ActionCable

    Ruby 5

  6. Luhn algorithm in Javascript. Check ... Luhn algorithm in Javascript. Check valid credit card numbers
    1
    // Takes a credit card string value and returns true on valid number
    2
    function valid_credit_card(value) {
    3
      // Accept only digits, dashes or spaces
    4
    	if (/[^0-9-\s]+/.test(value)) return false;
    5