Skip to content
View pmarreck's full-sized avatar
  • formerly senior engineer @ desk.com, chief engineer @ thredup.com, software engineer @ lifebooker.com. Director of Engineering @ addigence.com, currently available
  • Long Island, NY
  • 00:16 (UTC -05:00)

Sponsoring

@jart
@marcan
@roc-lang
@nixified-ai

Highlights

  • Pro

Block or report pmarreck

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. elixir-snippets elixir-snippets Public

    Just some WIP in Elixir and related experiments

    Elixir 43 5

  2. ixnay ixnay Public

    Ixnay is a Nix shell wrapper that I'm writing as I learn about Nix and how to do various operations.

    Shell 12

  3. tinytestlib tinytestlib Public

    An MVP shell script testing library (currently bash but may include more shells in future) allowing you to assert on stdout, stderr and return codes in your shell script test suites.

    Shell 5

  4. mpnetwork mpnetwork Public

    A real-estate listing site built in Elixir with Phoenix and Postgres.

    HTML 6 6

  5. Example of using regex to check a co... Example of using regex to check a complex password validation requirement ("use at least 1 character from 3 sets of characters out of a total of 4 sets of characters")
    1
          PASSWORD_VALIDATOR = /(      # Start of group
    2
            (?:                        # Start of nonmatching group, 4 possible solutions
    3
              (?=.*[a-z])              # Must contain one lowercase character
    4
              (?=.*[A-Z])              # Must contain one uppercase character
    5
              (?=.*\W)                 # Must contain one non-word character or symbol
  6. Generate a random password or random... Generate a random password or randomized multiple-word dictionary password using Javascript (NO other dependencies!)
    1
    const CHARSET_LOWER = "abcdefghijklmnopqrstuvwxyz";
    2
    const CHARSET_UPPER = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
    3
    const CHARSET_NUM = "0123456789";
    4
    const CHARSET_ALPHA = CHARSET_LOWER + CHARSET_UPPER;
    5
    const CHARSET_ALNUM = CHARSET_ALPHA + CHARSET_NUM;