Skip to content
View spacegaucho's full-sized avatar

Block or report spacegaucho

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. Simple bash script for unprivileged ... Simple bash script for unprivileged lxc container
    1
    #!/bin/bash
    2
    # This script must be run as the desired user
    3
    # The container name will be $USER for simplicity
    4
    # For this to work you need to sudo su <user>, else lxc wont work
    5
    
                  
  2. Bash completion for ssh Bash completion for ssh
    1
    # Store in /etc/bash_completion.d/ssh
    2
    # Create a ~/.ssh/hosts file that includes the hostnames you want to autocomplete
    3
    # Example: `Host hostname`
    4
    # Found this idea here https://unix.stackexchange.com/a/181603
    5
    _ssh() 
  3. Script that checks for good ddwrt op... Script that checks for good ddwrt openvpn connection. Sometimes ISPs change IPs, even if my dynDNS system reflects the change openvpn doesn't. This is a quick work around.
    1
    # Set this up as startup script
    2
    sleep 60
    3
    while true; do 
    4
    	if ps | grep -v grep | grep -q openvpn; then
    5
    		if ! ping -qc3 www.xxx.yyy.zzz 2>&1 1>/dev/null; then
  4. convert2mp3 convert2mp3 Public

    From a list of files, spawns an ffpmg process for each till it reaches a thread limit using python.

    Python

  5. postqueue-wrapper postqueue-wrapper Public

    Get message ID for postqueue entries with a simple search tool

    Python