This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Configuration | |
| config checkDefaultsOnLoad true | |
| config defaultToCurrentScreen true | |
| config focusCheckWidthMax 3000 | |
| config nudgePercentOf screenSize | |
| config resizePercentOf screenSize | |
| config secondsBetweenRepeat 0.1 | |
| config undoOps move,resize | |
| #config windowHintsOrder persist |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| ## adopted from https://redmine.openinfosecfoundation.org/projects/suricata/wiki/Basic_Setup | |
| doas pkg_add gcc git libtool pcre jansson libmagic libyaml | |
| ## version strings might change like patchlevel and stuff | |
| doas pkg_add libnet-1.1.2.1p3v0 autoconf-2.69p2 automake-1.14.1p0 | |
| cd | |
| git clone --depth 1 git://phalanx.openinfosecfoundation.org/oisf.git | |
| cd oisf | |
| git clone --depth 1 https://github.com/OISF/libhtp.git -b 0.5.x | |
| export AUTOCONF_VERSION=2.69 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "bridge": { | |
| "name": "CRS Cyber", | |
| "username": "AA:BB:CC:00:11:22", | |
| "port": 51826, | |
| "pin": "000-000-000" | |
| }, | |
| "description": "CRS Cyber Control", | |
| "accessories": [ | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # https://gist.github.com/gretel/34008d667a8a243a9682e5207619ad95 | |
| # 2016 tom hensel <[email protected]> | |
| # `vagrant` on `ubuntu-16.04` can get in conflict with *unattended-upgrade* running and locking the `dpkg` subsystem. this script waits gracefully | |
| # in `Vagrantfile`: | |
| # config.vm.provision 'Wait for unattended-upgrades', type: 'shell', path: './provisioning/wait_unattended_upgrades.sh', args: %w( dpkg apt unattended-upgrade ) | |
| # | |
| function wait_procnames { | |
| while true; do |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #ipv6 | |
| #verbose | |
| connect-timeout=30 | |
| no-sessionid | |
| progress-bar | |
| referer=";auto" | |
| retry-delay=3 | |
| retry=2 | |
| show-error | |
| user-agent="curl/7.9.8 (i686-pc-linux-gnu) libcurl 7.9.8 (OpenSSL 0.9.6b) (ipv6 enabled)" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # $OpenBSD: dot.profile | |
| # | |
| # gretel's sh/ksh initialization | |
| trap '. $HOME/.logout; exit' 0 | |
| escape=$(print '\033') | |
| ctrla=$(print '\001') | |
| PS1=$(print '\001\015') | |
| PS1=$PS1$ctrla$escape'[$(($? ? 31 : 32))m'$ctrla |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0"?> | |
| <!-- https://gist.github.com/gretel/b00af6a15724bd839d37a5622474958b --> | |
| <root> | |
| <devicevendordef> | |
| <vendorname>APPLE_COMPUTER</vendorname> | |
| <vendorid>0x05ac</vendorid> | |
| </devicevendordef> | |
| <deviceproductdef> | |
| <productname>MACBOOK_PRO</productname> | |
| <productid>0x0246</productid> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # https://gist.github.com/gretel/e6cd59fba3d31fe5a4e9a1feea985375 | |
| ### when 'update' is called without arguments these are the defaults: | |
| if not set -q update_funcs | |
| set -x update_funcs \ | |
| xcode_select \ | |
| peru \ | |
| homebrew \ | |
| homebrew_cask \ | |
| apm \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env sh | |
| # https://gist.github.com/gretel/7a76a3fe1e15a8a8e0c37457d18e795a | |
| # 2016 tom hensel <[email protected]> | |
| # this script ensures `python-2.7` gets installed so `ansible` can be (on debian) | |
| # i.e. in a `Vagrantfile`: | |
| # config.vm.provision 'Bootstrap Python', type: 'shell', path: 'scripts/bootstrap_python.sh', args: ['2.7', 'python python-pkg-resources'] | |
| # | |
| find_pyver="$1" | |
| if [ -z "$find_pyver" ]; then |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # $OpenBSD: ~/.profile | |
| # | |
| # gretel's sh/ksh initialization | |
| trap '. $HOME/.logout; exit' 0 | |
| escape=$(print '\033') | |
| ctrla=$(print '\001') | |
| PS1=$(print '\001\015') | |
| PS1=$PS1$ctrla$escape'[$(($? ? 31 : 32))m'$ctrla |