I hereby claim:
- I am isometry on github.
- I am breathe (https://keybase.io/breathe) on keybase.
- I have a public key ASA0a7C0ik8ec_2ZJk_ymjIkHBJvjKwnSYwdzr9wRV0urQo
To claim this, I am signing this object:
#!/usr/bin/python | |
""" | |
Robin Breathe, 2017 | |
Documentation: https://developer.apple.com/reference/corewlan | |
""" | |
from __future__ import print_function, division | |
import argparse | |
import socket | |
import logging |
I hereby claim:
To claim this, I am signing this object:
#include <stdio.h> | |
#include <stdlib.h> | |
#include <unistd.h> | |
void usage(char *name); | |
int | |
main(int argc, char *argv[]) | |
{ | |
char *rexec; |
%{ | |
#include <sys/types.h> | |
#include <unistd.h> | |
char **files; | |
int cfile, nfile; | |
int dochar = 0, doword = 0, doline = 0; | |
unsigned long charct = 0, wordct = 0, linect = 0; | |
unsigned long tcharct = 0, twordct = 0, tlinect = 0; |
%{ | |
#include <sys/types.h> | |
#include <unistd.h> | |
char **files; | |
int cfile, nfile; | |
int dochar = 0, doword = 0, doline = 0; | |
unsigned long charct = 0, wordct = 0, linect = 0; | |
unsigned long tcharct = 0, twordct = 0, tlinect = 0; |
#!/usr/bin/env python3 | |
""" | |
HOTP/TOTP Secret Generator to enable use of third-party authenticator apps as Soft Tokens with Duo (or similar) | |
""" | |
from base64 import b32encode | |
from secrets import token_bytes | |
from urllib.parse import quote | |