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:
# Contributor: Caleb Maclennan <[email protected]> | |
# Contributor: Jacob Mischka <[email protected]> | |
# Maintainer: Manuel Mazzuola <[email protected]> | |
# https://aur.archlinux.org/packages/brave-bin/ | |
pkgname=brave-bin | |
pkgver=0.56.12 | |
pkgrel=1 | |
pkgdesc='Web browser that blocks ads and trackers by default (binary release).' | |
arch=('x86_64') |
Verifying my Blockstack ID is secured with the address 1NsWeGdo5ptXRh9TjyY1DV8pgzpMNXPPNi https://explorer.blockstack.org/address/1NsWeGdo5ptXRh9TjyY1DV8pgzpMNXPPNi |
#!/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 |
Verifying that +mariow is my blockchain ID. https://onename.com/mariow |
# activate | |
sudo -s launchctl load -w /System/Library/LaunchDaemons/ftp.plist | |
#deactivate | |
sudo -s launchctl load -w /System/Library/LaunchDaemons/ftp.plist |
I hereby claim:
To claim this, I am signing this object:
# 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 |
alias json_pretty="json_xs -f json -t json-pretty" |
cat file | pbcopy |
ffmpeg -i input.m4a -acodec libmp3lame -ab 320k ouput.mp3 |