View gist:4234127
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
#pbcopy < ~/.ssh/id_rsa.pub | |
#or | |
cat ~/.ssh/id_rsa.pub | pbcopy |
View excuses.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
#!/usr/bin/env bash | |
EXCUSES="/path/to/excuses.txt" | |
awk 'NR=='$((1 + $RANDOM % `nl $EXCUSES | tail -n 1 | awk '{print $1}' `))'{print;exit}' $EXCUSES |
View calendar.go
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
package main | |
import ( | |
"os" | |
"fmt" | |
"time" | |
) | |
func main () { | |
year := 2022 |
View hackermode.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
hackermode() | |
{ | |
if [ "$1" == "on" ]; then | |
shopt -s extdebug | |
analyzer () | |
{ | |
LAST=`fc -ln -1 | cut -d " " -f 2` | |
if which $LAST &> /dev/null; then | |
which $LAST | |
elif type $LAST | grep builtin &> /dev/null; then |
View hotplug.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
#!/usr/bin/env bash | |
LINE="" | |
DRIVES=$(ls /sys/block) | |
for DRIVE in $DRIVES; do | |
if ls /dev/$DRIVE 2>/dev/null >/dev/null && ls /sys/block/$DRIVE/device/delete 2>/dev/null >/dev/null; then | |
SIZE=$(blockdev --getsize64 /dev/$DRIVE | awk '{ split( "B KB MB GB TB" , v ); s=1; while( $1>1024 ){ $1/=1024; s++ } print int($1) v[s] }') | |
LINE="$LINE p $DRIVE $SIZE" | |
fi | |
done | |
BLOCK=$(zenity --list --title "Choose drive to remove" --radiolist --column="Remove" --column="Device" --column="Size" $LINE) |
View reclaimWindows10.ps1
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
########## | |
# Win10 Initial Setup Script | |
# Author: Disassembler <disassembler@dasm.cz> | |
# Version: 1.7, 2016-08-15 | |
# dasm's script: https://github.com/Disassembler0/Win10-Initial-Setup-Script/ | |
# THIS IS A PERSONALIZED VERSION | |
# This script leaves more MS defaults on, including MS security features. | |
# Tweaked based on personal preferences for @alirobe 2016-11-16 - v1.7.1 |
View main.c
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
//*****************************************************// | |
// welder.c // | |
// 2016-4-11 // | |
// Written By David Holdeman // | |
// Miller Bobcat 225G Idle Solenoid Controller // | |
//*****************************************************// | |
// ATtiny45/85 | |
// +-------+ | |
// !RESET |* | VCC |
View brute.go
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
package main | |
import ( | |
"bufio" | |
"fmt" | |
"os" | |
"time" | |
) | |
func main() { |
View vcardparse.js
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
importClass(Packages.com.sun.star.uno.UnoRuntime); | |
importClass(Packages.com.sun.star.sheet.XSpreadsheetDocument); | |
importClass(Packages.com.sun.star.container.XIndexAccess); | |
importClass(Packages.com.sun.star.table.XCellRange); | |
importClass(Packages.com.sun.star.table.XCell); | |
importClass(Packages.com.sun.star.text.XText); | |
function parseAddress(addr) { | |
var raddr = addr.split(" ").reverse(); | |
var ret = {zip: raddr[0], state: raddr[1], city: raddr[2], street: ""}; |
View vcd.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
#!/usr/bin/env bash | |
I=0 | |
while read t; do | |
I=$((I+1)) | |
ID=$(echo $t | cut -d "|" -f 1 | xargs) | |
FIRST=$(echo $t | cut -d "|" -f 2 | xargs) | |
LAST=$(echo $t | cut -d "|" -f 3 | xargs) | |
ADDRESS=$(echo $t | cut -d "|" -f 4 | xargs) | |
CITY=$(echo $t | cut -d "|" -f 5 | xargs) | |
STATE=$(echo $t | cut -d "|" -f 6 | xargs) |
NewerOlder