Skip to content
View thughe30's full-sized avatar

Block or report thughe30

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. Bash shell script to print stats abo... Bash shell script to print stats about a Raspberry running pihole - Original Credit to robocopAlpha
    1
    #!/bin/bash
    2
    
                  
    3
    # Define colors
    4
    RED='\033[91m'
    5
    RED_solid='\033[101m'
  2. Shell script to allow Raspberry Pi t... Shell script to allow Raspberry Pi to act as a network bridge using WiFi to Ethernet.
    1
    #!/usr/bin/env bash
    2
    
                  
    3
    set -e
    4
    
                  
    5
    [ $EUID -ne 0 ] && echo "run as root" >&2 && exit 1