Product: Sagitta Brutalis 1080 (PN S3480-GTX-1080-2697-128)
Software: Hashcat v3.00-beta-145-g069634a, Nvidia driver 367.18
Accelerator: 8x Nvidia GTX 1080 Founders Edition
Product: Sagitta Brutalis 1080 (PN S3480-GTX-1080-2697-128)
Software: Hashcat v3.00-beta-145-g069634a, Nvidia driver 367.18
Accelerator: 8x Nvidia GTX 1080 Founders Edition
| #!/bin/sh | |
| i=0 | |
| server=$1 | |
| mkdir -p tmp/${server} | |
| while [ $i -lt 100000 ];do | |
| file=`date "+%y%m%d%H%M"`.$i | |
| echo "python ssl.py $1 >tmp/${server}/${file}" | |
| python ssl.py ${server} >tmp/${server}/${file} | |
| sleep 1 |
| #!/bin/bash | |
| # This script is called by udev when you link a bluetooth device with your computer | |
| # It's called to add or remove the device from pulseaudio | |
| # | |
| # | |
| # Output to this file | |
| LOGFILE="/var/log/bluetooth_dev" | |
| # Name of the local sink in this computer |
| # Aliases | |
| alias g='git' | |
| compdef g=git | |
| alias gst='git status' | |
| compdef _git gst=git-status | |
| alias gl='git pull' | |
| compdef _git gl=git-pull | |
| alias gup='git fetch && git rebase' | |
| compdef _git gup=git-fetch | |
| alias gp='git push' |