Skip to content
View robireton's full-sized avatar

Block or report robireton

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. list of 20 random 4–12 character words list of 20 random 4–12 character words
    1
    #!/usr/bin/env bash
    2
    
                  
    3
    egrep "^[^']{4,12}$" /usr/share/dict/words | sort --random-sort | head -20
    4
    
                  
    5
    # My Mac doesn’t have a “shuf” command, but the following is much faster for Linux:
  2. generate a random strong password generate a random strong password
    1
    #!/usr/bin/env bash
    2
    
                  
    3
    echo $(dd if=/dev/random bs=1 count=3 2>/dev/null | base64):$(dd if=/dev/random bs=1 count=3 2>/dev/null | base64):$(dd if=/dev/random bs=1 count=3 2>/dev/null | base64):$(dd if=/dev/random bs=1 count=3 2>/dev/null | base64)
  3. chrono chrono Public

    date/time related helpers

    JavaScript

  4. meeus meeus Public

    ES6 implementations of algorithms from Astronomical Algorithms by Jean Meeus

    JavaScript 1

  5. zgm053uka zgm053uka Public

    get readings from ZGm053UKA Mini CO₂ Monitor

    JavaScript 1

  6. math-capstone math-capstone Public

    University of Cincinnati Undergraduate Capstone Project in Mathematics

    Jupyter Notebook