Pass is a great command line tool to handle your password, as well in a team.
Add the key into your local GPG base:
$ gpg --keyserver <a specific key server if needed> --search-keys <email address>
<!DOCTYPE html><html><head><title></title><meta charset="utf-8" /><meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" /><style type='text/css'> | |
body { | |
font-family:'Helvetica'; | |
letter-spacing:-5px; | |
background:#000; | |
background-size:100%; | |
color:#fff; | |
margin:0; | |
padding:0; | |
font-weight:bold; |
_ _ _ ____ _ _ | |
| | | | __ _ ___| | __ | __ ) __ _ ___| | _| | | |
| |_| |/ _` |/ __| |/ / | _ \ / _` |/ __| |/ / | | |
| _ | (_| | (__| < | |_) | (_| | (__| <|_| | |
|_| |_|\__,_|\___|_|\_\ |____/ \__,_|\___|_|\_(_) | |
A DIY Guide | |
Pass is a great command line tool to handle your password, as well in a team.
Add the key into your local GPG base:
$ gpg --keyserver <a specific key server if needed> --search-keys <email address>
Log Review Cheatsheet Critical Log Review Checklist for Security Incidents
Hardening GPO Reference UT Windows Hardening Checklist
# for Release Friends | |
ioreg -c BNBMouseDevice | grep BatteryPercent | |
ioreg -c BNBTrackpadDevice | grep BatteryPercent | |
ioreg -c AppleBluetoothHIDKeyboard | grep BatteryPercent |
#!/bin/sh | |
# Create a RAM disk with same perms as mountpoint | |
# Script based on http://itux.idev.pro/2012/04/iservice-speed-up-your-xcode-%D0%BD%D0%B5%D0%BA%D0%BE%D1%82%D0%BE%D1%80%D1%8B%D0%B5-%D1%81%D0%BF%D0%BE%D1%81%D0%BE%D0%B1%D1%8B/ with some additions | |
# Usage: sudo ./xcode_ramdisk.sh start | |
USERNAME=$(logname) | |
TMP_DIR="/private/tmp" | |
RUN_DIR="/var/run" |
#!/bin/bash | |
machine='docker-builder' | |
export AWS_PROFILE='pahud' | |
AWS_ACCESS_KEY_ID=$(aws configure get aws_access_key_id) | |
AWS_SECRET_ACCESS_KEY=$(aws configure get aws_secret_access_key) | |
VPC='vpc-xxxxxx' | |
docker-machine create --driver amazonec2 \ |
'Drink Responsibly, Blackmagic lives here.'; | |
/** | |
* Inject custom script to main page's document.head. | |
* Used for bypassing Chrome Extension's Content-Scripts Sandbox. | |
*/ | |
/** | |
* @param {{type?: string, src?: string, text?: string}} content | |
* @see Microsoft/vscode#22980, "JSDoc comments are ignored for destructured parameters". | |
* @see Microsoft/typescript#11597, "Intellisense for object properties defined in multi-line JSDOC comments". |