Every time you choose to apply a rule(s), explicitly state the rule(s) in the output. You can abbreviate the rule description to a single word or phrase.
[Brief description ]
- [more description]
- [more description]
- [more description]
#!/usr/bin/env bash | |
# Specify destination for extension rootfs | |
ROOTFS_PATH=/mnt/tank/some/dataset/ext/rootfs | |
# List of packages to install | |
PACKAGES="usbutils" | |
# Download minimal debian base rootfs | |
mkdir -p "$ROOTFS_PATH" | |
curl -L https://github.com/debuerreotype/docker-debian-artifacts/raw/dist-amd64/bookworm/slim/rootfs.tar.xz | tar -xJ -C "$ROOTFS_PATH" --numeric-owner |
https://www.amazon.com/auto-deliveries/subscriptionList?shipId=mpkmmwlssrkq&ref_=mys_nav_op_D
I recently wrestled with the clusterfuck that is iOS code signing, so here's my setup to set up a swift xcodegen project signed with a personal (free) provisioning team. this doesn't require an apple developer account, just a regular apple id.
you'll be able to build whole thing from the command line without ever have to touch xcode ever again.
this was tested with xcode 10.0 (10A255) on High Sierra
#!/usr/bin/env python3 | |
# vim: autoindent tabstop=4 shiftwidth=4 expandtab softtabstop=4 filetype=python | |
# This file is part of Supermicro IPMI certificate updater. | |
# Supermicro IPMI certificate updater is free software: you can | |
# redistribute it and/or modify it under the terms of the GNU General Public | |
# License as published by the Free Software Foundation, version 2. | |
# | |
# This program is distributed in the hope that it will be useful, but WITHOUT |
Tutorials for running live Kali on OSX often require you have networking on your laptop to apt
install the drivers, but without an ethernet adapter you're not going to be able to do that, so this tutorial will cover a method of doing this manually, using another thumbdrive or external data source.
Download the appropriate Kali Linux .iso
I used a 64 bit .iso
image, downloaded via HTTP.
mkdir .jupyterhub
cd .jupyterhub
jupyterhub --generate-config
openssl rand -hex 8 > jupyterhub_cookie_secret
from botocore.credentials import InstanceMetadataProvider, InstanceMetadataFetcher | |
provider = InstanceMetadataProvider(iam_role_fetcher=InstanceMetadataFetcher(timeout=1000, num_attempts=2)) | |
credentials = provider.load() | |
access_key = credentials.access_key | |
secret_key = credentials.secret_key | |
print access_key | |
print secret_key |
#!/bin/vbash | |
# CONFIG | |
wan=dhcp | |
lan=192.168.1.1 | |
lan_segment=192.168.1.0 | |
vpn_segment=192.168.5.0 | |
domain=apertoire.org | |
lease_start=192.168.1.200 | |
lease_stop=192.168.1.245 |