Skip to content
View spinofdoom's full-sized avatar
Block or Report

Block or report spinofdoom

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

  1. homebrew-cask homebrew-cask Public

    Forked from Homebrew/homebrew-cask

    🍻 A CLI workflow for the administration of macOS applications distributed as binaries

    Ruby

  2. headlines headlines Public

    Grabs top headlines from NYT, Guardian (U.S.), AJ: English, and WaPo, and displays them as links in a plain HTML page

    Python

  3. batch dig script for unbound batch dig script for unbound
    1
    #!/bin/bash 
    2
    
                  
    3
    # A dumbed-down version of dig-dug by crunchprank, sans csv logging.
    4
    # (A mass domain DiG script.)
    5
    
                  
  4. script for unbound DNS - check total... script for unbound DNS - check total cache hits/misses and ratio
    1
    #!/bin/bash
    2
    
                  
    3
    MISSES=$(unbound-control stats_noreset | grep total.num.cachemiss | grep -Eo '[0-9]{1,8}')
    4
    HITS=$(unbound-control stats_noreset | grep total.num.cachehits | grep -Eo '[0-9]{1,8}')
    5
    PERCENT=$(echo "scale=4; (($MISSES / ($MISSES + $HITS) * 100))" | bc | awk ' sub("\\.*0+$","") ')
  5. A tweaked clone of obihann's macOS i... A tweaked clone of obihann's macOS implementation of archey
    1
    #!/bin/bash
    2
    
                  
    3
    # A tweaked clone of obihann's macOS implementation
    4
    # of archey (https://github.com/obihann/archey-osx/).
    5
    
                  
  6. installs mas, homebrew/cask & apps installs mas, homebrew/cask & apps
    1
    #!/bin/bash
    2
    
                  
    3
    /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" # Install
    4
                                                                                                    # Homebrew
    5
    brew install cask                             # Install Homebrew-Cask