I hereby claim:
- I am Xenthys on github.
- I am xenthys (https://keybase.io/xenthys) on keybase.
- I have a public key whose fingerprint is 89ED 31A7 8A29 F025 1C75 7249 4ED2 D0AE 449F C57E
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
if [[ -z "$1" ]]; then | |
printf "You need to specify a channel, dumbass.\n" >&2 | |
exit | |
fi | |
printf "/join #%s,0\n" "$(echo "$1"|sha256sum|head -c12)" |
#!/usr/bin/env python | |
# This script shall be distributed under the "who cares" license. | |
# Just leave this note here stating that Polsaker | |
# (https://github.com/Polsaker) created this. | |
# Usage: img2irc.py image.png [-rgb] | |
# With -rgb the script uses RGB to compare colors instead of L*A*B*. | |
# It is faster but it might lead to worse (or better ;D) image quality |
#!/bin/bash | |
# SystemTap workaround for CVE-2016-5195 | |
# Bash script by Dylan Ysmal <[email protected]> | |
# https://security-tracker.debian.org/tracker/DSA-3696-1 | |
# https://bugzilla.redhat.com/show_bug.cgi?id=1384344#c13 | |
# systemtap linux-headers-$(uname -r) linux-image-$(uname -r)-dbg | |
# https://xenthys.blackfields.net/CVE-2016-5195.stp | |
# sudo stap -F -g /path/to/CVE-2016-5195.stp |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
id=$(grep "$1" /etc/pve/.rrd | cut -d'/' -f 2 | cut -d':' -f 1) | |
[[ "$id" == '' ]] && echo "The specified LXC does not exist." && exit 1 | |
node=$(grep "^\"$id\":" /etc/pve/.vmlist | cut -d'"' -f 6) | |
[[ $(hostname) != "$node" ]] && pre="ssh -t $node " | |
echo "Entering LXC $id on node $node..." | |
${pre}pct enter $id |