I hereby claim:
- I am mariow on github.
- I am mariowitte (https://keybase.io/mariowitte) on keybase.
- I have a public key whose fingerprint is 1C46 FF8F 661F 69B6 410E 9B1B 1EA5 6B20 BD30 AEA3
To claim this, I am signing this object:
# remember to open port 223 in iptables! | |
/usr/sbin/sshd -Dd -p 223 |
#!/usr/bin/perl | |
my $ssh=`which ssh`; | |
my $mosh=`which mosh`; | |
chomp($ssh); | |
chomp($mosh); | |
my $host; | |
my $unsupported=0; | |
for (my $i=0; $i <= $#ARGV; $i++) { |
ffmpeg -i input.m4a -acodec libmp3lame -ab 320k ouput.mp3 |
cat file | pbcopy |
alias json_pretty="json_xs -f json -t json-pretty" |
# Generate CSR | |
openssl req -out my.csr -new -newkey rsa:2048 -nodes -keyout my.key | |
# convert key to rsa | |
openssl rsa -in my.key -out my.rsa | |
# fetch secondary CA cert (https://forums.aws.amazon.com/thread.jspa?messageID=278399# ) | |
wget https://search.thawte.com/library/VERISIGN/ALL_OTHER/thawte%20ca/SSL123_SecondaryCA.pem | |
# upload to Amazon |
I hereby claim:
To claim this, I am signing this object:
# activate | |
sudo -s launchctl load -w /System/Library/LaunchDaemons/ftp.plist | |
#deactivate | |
sudo -s launchctl load -w /System/Library/LaunchDaemons/ftp.plist |
Verifying that +mariow is my blockchain ID. https://onename.com/mariow |
#!/bin/bash | |
# | |
# WARNING: This script will delete all zones from an account at nsone.net via the API, USE WITH CARE | |
# | |
NSONEKEY="YOURKEYHERE" | |
curl -X GET -H "X-NSONE-Key: $NSONEKEY" https://api.nsone.net/v1/zones > zones.json | |
perl -ane 'while (/zone":"([^"]+?)"/g) { print $1."\n" }' < zones.json > zones-left.txt | |
wc -l zones-left.txt |