Skip to content
View nathan-cruz77's full-sized avatar

Block or report nathan-cruz77

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

    A range-compatible float number range generator

    Python 2 1

  2. async_bench async_bench Public

    Simple benchmark of asynchronous code

    Makefile 2

  3. uri-parser uri-parser Public

    Extract path, query params, numeric IDs and UUIDs from URIs.

    Elixir

  4. E.164 phone number validator E.164 phone number validator
    1
    import re
    2
    
                  
    3
    # Validates whether a phone number is in E.164 (https://en.wikipedia.org/wiki/E.164)
    4
    # format.
    5
    # 
  5. Equivalent to python's zip_longest f... Equivalent to python's zip_longest function for elixir.
    1
    defmodule Zip do
    2
      @doc """
    3
      Zips corresponding elements from a finite collection of enumerables into one list of tuples.
    4
    5
      The zipping finishes when the longest enumerable is finished. Default padding value is `nil`.