I hereby claim:
- I am madars on github.
- I am madars (https://keybase.io/madars) on keybase.
- I have a public key whose fingerprint is C309 96DA 5A59 8BEE DEFB 6B12 0D73 7D1D B376 22C3
To claim this, I am signing this object:
# NAT6 + masquerading firewall script | |
# https://github.com/akatrevorjay/openwrt-masq6 | |
# trevorj <[email protected]> | |
# | |
# You can configure in /etc/config/firewall per zone: | |
# * IPv4 masquerading | |
# option masq 1 | |
# * IPv6 masquerading | |
# option masq6 1 | |
# * IPv6 privacy extensions |
#!/bin/sh | |
# To be used with something like this in sshd_config: | |
# | |
# Match User public-tmux | |
# X11Forwarding no | |
# AllowTcpForwarding no | |
# PasswordAuthentication yes | |
# ForceCommand /usr/bin/tmux -S /tmp/public-tmux-socket attach -r -t public | |
# |
#!/bin/sh | |
FILE=`mktemp -t vga-align-XXX.html` | |
cat > $FILE <<EOF | |
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>VGA auto-align pattern</title> | |
<style type='text/css'> | |
html, body { margin: 0; padding: 0; } | |
body { background: url('data:image/gif;base64,R0lGODdhAgACAPAAAAAAAP///ywAAAAAAgACAAACA0QCBQA7') repeat; } |
*.o | |
*.so | |
main |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env python | |
# | |
# Author: Madars Virza <[email protected]> | |
# License: MIT | |
# | |
import random | |
import operator | |
def ext_gcd(a, b): |