View parachute.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""Python Script to solve the perseverence parachute | |
code | |
Output: | |
DARE¿¿¿¿ | |
MIGHTY¿¿ | |
THINGS¿¿ | |
34°11'58'' N 14°118'10'' W | |
""" |
View Debug_DaemonSet.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: apps/v1 | |
kind: DaemonSet | |
metadata: | |
name: debug | |
spec: | |
selector: | |
matchLabels: | |
name: debug | |
template: | |
metadata: |
View LIFE.BAS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/local/bin/cbmbasic | |
10 PRINT "eat " | |
20 PRINT "workout" | |
30 PRINT "sleep " | |
40 GOTO 10 | |
View check_up-time.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#/bin/bash +x | |
# | |
# High dependent on my ssh.config file. | |
# | |
LIST="z0h p0h pz0h apih" | |
LIST="z0 p0 pz0 api" | |
for I in $LIST | |
do | |
# |
View ptr6.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
IPv6=$1 | |
host ${IPv6} | awk '{ip = substr($1,1,31); ptr = substr($1,33); printf("Search for zone:\n%s\n\nAdd Name:\n%s\nWith the requested value\n", ptr, ip);}' |
View infinite_ping.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -x | |
# replace "localhost.example.com" with the domain you may ping. | |
# | |
I="localhost.example.com" | |
while true ; do date; ping -c4 -i10 $I ; echo; done | |
View mtr_loop.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
function quit () | |
{ | |
echo -e "\n*** Exiting by user keystroke ***\n" | |
exit $? | |
} | |
# trap keyboard interrupt (control-c) |
View trace_to-from
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
traceroute code.Lyndell.US; echo; wget -q -O - http://code.lyndell.us/getIP/traceme.php; echo |
View pingLoop.bat
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:: | |
:: | |
:: Name: PingLoop.bat | |
:: Desc: Repeatedly run a 100-count ping. | |
:: URL: https://gist.github.com/lyndell/9b7b9827a8c45ca59a5e2579dbeca5bb | |
:: | |
:: Author: Lyndell Rottmann | |
:: WWW: http://Lyndell.US | |
:: Copyright (c) 2016 Lyndell Rottmann | |
:: |
View pathPingLoop.bat
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:: | |
:: | |
:: Name: pathPingLoop.bat | |
:: Desc: Gather network quality information with built-in Windows commands | |
:: URL: https://gist.github.com/lyndell/48a77ccb954046eb8b9a4659bd07f581 | |
:: | |
:: Author: Lyndell Rottmann | |
:: WWW: http://Lyndell.US | |
:: Copyright (c) 2016 Lyndell Rottmann | |
:: |
NewerOlder