This is a local copy of the commands from:
- http://www.jmknoble.net/keys/#master-key
- http://www.macfreek.nl/mindmaster/Convert_GPG_keys_to_subkeys
- Bootable offline cd with gpg: http://tails.boum.org
This is a local copy of the commands from:
#!/usr/bin/env python | |
import Image | |
from sys import stdin, stdout | |
from StringIO import StringIO | |
for value in list(Image.open(StringIO(stdin.read())).getdata()): | |
stdout.write(chr(value)) |
cat >/etc/apt/sources.list.d/kali.list <<EOF | |
deb http://http.kali.org/kali kali main contrib non-free | |
deb-src http://http.kali.org/kali kali main contrib non-free | |
deb http://security.kali.org/kali-security kali/updates main contrib non-free | |
deb-src http://security.kali.org/kali-security kali/updates main contrib non-free | |
EOF | |
sudo apt-key adv --keyserver pgp.mit.edu --recv-keys ED444FF07D8D0BF6 | |
sudo apt-get update |
#!/bin/bash | |
url=$1 | |
enc_file=$2.enc | |
out_file=$2 | |
id=`echo $url | awk -F '!' '{print $2}'` | |
key=`echo $url | awk -F '!' '{print $3}' | sed -e 's/-/+/g' -e 's/_/\//g' -e 's/,//g'` | |
b64_hex_key=`echo -n $key | base64 --decode --ignore-garbage 2> /dev/null | xxd -p | tr -d '\n'` | |
key[0]=$(( 0x${b64_hex_key:00:16} ^ 0x${b64_hex_key:32:16} )) |
I hereby claim:
To claim this, I am signing this object:
###Disclaimer: All risk is your own. In the best case this will erase everything on the disk forever.
sg_raw
command works.dmsg
)#include <Particle.h> | |
static char* var_str = (char *)"ORIG STR"; | |
static int var_int = 1; | |
static double var_double = 1.23; | |
static double override_double; | |
static const void* static_str_test(const char* name, Spark_Data_TypeDef type, | |
const void* var, void *reserverd) { | |
return "STATIC UPDATE"; |
// ==UserScript== | |
// @name Resolve t.co links on twitter | |
// @namespace Violentmonkey Scripts | |
// @match *://twitter.com/* | |
// @grant GM_xmlhttpRequest | |
// @version 1.1 | |
// @author @jix_ | |
// @homepage https://gist.github.com/jix/e67c127820954e1d1571c1f6f800ac2c | |
// @description Tries to resolve all annoying t.co links on twitter and replaces them with the | |
// target URL. |
--- | |
kind: Cluster | |
apiVersion: kind.x-k8s.io/v1alpha4 | |
# If ipv4 only: | |
#networking: | |
# ipFamily: ipv4 | |
kubeadmConfigPatches: | |
- | | |
apiVersion: kubeadm.k8s.io/v1beta3 | |
kind: InitConfiguration |