I hereby claim:
- I am chauncey on github.
- I am chauncey (https://keybase.io/chauncey) on keybase.
- I have a public key whose fingerprint is 3D85 F1B1 BB4C E76E 2922 C63B 90ED 6CDA 49E7 C155
To claim this, I am signing this object:
| #!/usr/bin/zsh | |
| export CONF_OPT_PYTHON='--enable-pythoninterp' | |
| export CONF_OPT_GUI='--disable-gui' | |
| export CONF_OPT_NETBEANS='--disable-netbeans' | |
| export CONF_ARGS='--prefix=/usr/local' | |
| make distclean | |
| ./configure $CONF_OPT_PYTHON $CONF_OPT_GUI $CONF_OPT_NETBEANS $CONF_ARGS |
| # requires libevent installed (assuming ~/ prefix) | |
| # assuming installing in /usr/chris | |
| $ ./configure --prefix=/usr/chris CFLAGS="-I$HOME/include" LDFLAGS="-L$HOME/lib" |
| [chauncey@]$ cat config.mak | |
| # git Makefile configuration, included in main Makefile | |
| # @configure_input@ | |
| CC = gcc | |
| CFLAGS = -I/usr/chris/include -I/usr/local/openssl-1.0.1j/include -I/usr/local/include -I/opt/freeware/include | |
| CPPFLAGS = -I/usr/chris/include -I/usr/local/openssl-1.0.1j/include -I/usr/local/include -I/opt/freeware/include | |
| LDFLAGS = -L/usr/chris/lib -L/usr/local/openssl-1.0.1j/lib -L/usr/local/lib -L/opt/freeware/lib | |
| AR = /usr/bin/ar | |
| TAR = /usr/chris/bin/tar |
| # Convert from p12 format to crt with OpenSSL | |
| openssl pkcs12 -in keyname.p12 -nocerts -out keyname.privatekey.key | |
| openssl pkcs12 -in keyname.p12 -clcerts -nokeys -out keyname.crt |
| gifify() { | |
| if [[ -n "$1" ]]; then | |
| if [[ $2 == '--good' ]]; then | |
| ffmpeg -i $1 -r 10 -vcodec png out-static-%05d.png | |
| time convert -verbose +dither -layers Optimize -resize 600x600\> out-static*.png GIF:- | gifsicle --colors 128 --delay=5 --loop --optimize=3 --multifile - > $1.gif | |
| rm out-static*.png | |
| else | |
| ffmpeg -i $1 -s 600x400 -pix_fmt rgb24 -r 10 -f gif - | gifsicle --optimize=3 --delay=3 > $1.gif | |
| fi | |
| else |
I hereby claim:
To claim this, I am signing this object:
| <div class="site-wrapper"> | |
| <div class="site-wrapper"> | |
| <div class="site-wrapper-inner"> | |
| <div class="inner cover"> <h1>Search for policies.</h1> | |
| <p class="lead"> | |
| <a href="#" class="btn btn-lg btn-default" onclick="polsearch();">Policy Search</a> | |
| </p> | |
| <div id="result"> | |
| </div> | |
| </div> |
| <div class="site-wrapper"> | |
| <div class="site-wrapper"> | |
| <div class="site-wrapper-inner"> | |
| <div class="inner cover"> <h1>Search</h1> | |
| <p class="lead"> | |
| <a href="#" class="btn btn-lg btn-default" onclick="polsearch();">Search</a> | |
| </p> | |
| <div id="result"> | |
| </div> | |
| </div> |
| # List of configurations with info on processers, memory, disks and logical volumes | |
| prtconf | |
| # List processors in the machine | |
| /usr/sbin/lsdev -C -c processor | |
| # Query directory size | |
| du -sk * | sort -n | |
| # Query volume size |
| # get the cert | |
| openssl s_client -connect outlook.office365.com:993 -showcerts | openssl x509 -fingerprint -noout -md5 | |
| msmtp --serverinfo --host=<host> --tls=on --tls-certcheck=off |