Skip to content

Instantly share code, notes, and snippets.

View patpadgett's full-sized avatar
:bowtie:
NERDZ!

Pat Padgett patpadgett

:bowtie:
NERDZ!
View GitHub Profile
@Lerie82
Lerie82 / nmap script list
Created March 9, 2024 13:17
nmap script list
acarsd-info.nse
address-info.nse
afp-brute.nse
afp-ls.nse
afp-path-vuln.nse
afp-serverinfo.nse
afp-showmount.nse
ajp-auth.nse
ajp-brute.nse
ajp-headers.nse
@Tomn94
Tomn94 / wish-it-were-a-script.md
Last active March 27, 2024 06:40
💻 What to do on new macOS installs

Current — March 2024

  1. During Setup Assistant, Choose French as language and France as region.
    Add English (US) as 2nd preferred language (to be able to search for emoji in French+English, etc.), remove any keyboard besides ABC.
    In Vision settings, enable ⌃-2-fingers zoom and automatic switch between Light & Dark mode.
    Don’t import any backup, connect to iCloud, create an account without touching the avatar (guarantees it’ll use iCloud’s), customize data sharing, enable FileVault, add a fingerprint for Touch ID, set up Apple Pay.

  2. Download apps on the Mac App Store:
    Pages, Numbers, Keynote, Pixelmator Pro, Final Cut Pro, Apple Configurator, 1Blocker for Safari, Supercopy for Safari, Messenger, Ivory, Mactracker, Apple Developer, TestFlight, Key Codes, Boop.

@extratone
extratone / draftsredirection.md
Last active April 19, 2024 20:56
Index of davidblue.wtf redirects.
@sanjarcode
sanjarcode / 1-os-installation.md
Last active March 27, 2024 06:35
Computer setup - installing OS, post installation sets - Ubuntu (20.04), or macOS

Installation steps

  1. Windows + Ubuntu dual boot Install Windows first (on the "left" side of the disk, keep any OS agnostic disk parititons in the middle and leave space for Ubuntu on "right side), then install Ubuntu
  2. Windows - Create live USB using ISO with Rufus and install
  3. MacOS - comes installed
  4. Linux - Ubuntu Create live USB using ISO with Rufus (Windows) or Startup Disk Creator (Ubuntu), set up `/` and `/home` and swap spaces and install

Partition sizes

512 GB - dual boot OK

@brucebentley
brucebentley / iOS Shortcuts Catalog.md
Last active April 23, 2024 06:39
This is a public resource designed to help people get started with Siri Shortcuts & the Shortcuts app. It’s made up of the Shortcuts Library, a collection of over 125+ shortcuts grouped into folders, and the Action Directory, a documentation of 125+ of the actions in the Shortcuts app used to build shortcuts.

Bruce's iOS Shortcut Catalog

Hello and welcome to my Shortcuts Catalog!

This is a public resource designed to help people get started with Siri Shortcuts and the Shortcuts app.

It’s made up of the Shortcuts Library, a collection of over 125+ shortcuts grouped into folders, and the Action Directory, a documentation of 125+ of the actions in the Shortcuts app used to build shortcuts.

Enjoy!

@s3rgiosan
s3rgiosan / .macos
Last active March 27, 2024 06:32
macOS Setup
###############################################################################
# General UI/UX #
###############################################################################
HOSTNAME="s3rgiosan"
# Set computer name
sudo scutil --set ComputerName $HOSTNAME
sudo scutil --set HostName $HOSTNAME
sudo scutil --set LocalHostName $HOSTNAME
@JohnTroony
JohnTroony / OpSec
Created April 28, 2017 09:21
Guide for proper Opsec and comsec for the paranoid.
# OPS Info
## Info:
* Google Custom Alerts: http://google.com/alerts/
* Google Reverse Image search instructions: https://support.google.com/websearch/answer/1325808?hl=en
## Antitheft Apps :
* Lookout: https://www.lookout.com/
@varenc
varenc / pet-snippet.toml
Last active May 2, 2024 22:56
description
[[snippets]]
description = "my personal snippets. Relies on many of my own functions. If you're interested in pmset/disabling assertions, see: https://gist.github.com/varenc/627f6be2a5ec9d52dab3cf0d157be62f"
command = ""
output = ""
[[snippets]]
description = "start dev file syncer. uses fswatch to know when to run rsync. does not sync .git file. Sort like a write-through cache network file system with only eventual consistency guarantees."
command = "fswatch -0 --exclude \"\\.git\" --exclude \"\\.xml\" --exclude \"___\" -o /Users/chris/Documents/workspace/lingt_chris_dev_rsync_checkout/myproject | xargs -0 -n 1 -I {} rsync --progress --exclude '*.pyc' --exclude '*.git' --recursive ~/workspace/lingt_chris_dev_rsync_checkout/myproject dev@dev.server:/home/user/webapps/dev_chris/myproject"
output = ""
@bradp
bradp / setup.sh
Last active May 1, 2024 21:34
New Mac Setup Script
echo "Creating an SSH key for you..."
ssh-keygen -t rsa
echo "Please add this public key to Github \n"
echo "https://github.com/account/ssh \n"
read -p "Press [Enter] key after this..."
echo "Installing xcode-stuff"
xcode-select --install