##Create a new repository on the command line
REPO="REPO_NAME_HERE"
curl -u 'USER' https://api.github.com/user/repos -d '{"name":"$REPO"}'
touch README.md
git init
#!/usr/bin/env bash | |
# Install Nano (www.nano-editor.org) with syntax highlighting (MacOS) | |
VERSION="4.1" | |
NANO_SHORT="nano-$VERSION" | |
NANO_SRC="$NANO_SHORT.tar.gz" | |
NANO_URL="https://www.nano-editor.org/dist/v4" | |
NANO_EXTRA="https://github.com/scopatz/nanorc" |
#!/usr/bin/env bash | |
# Install Bash 5.0 (MacOS) | |
VERSION="5.0" | |
BASH_SHORT="bash-$VERSION" | |
BASH_SRC="$BASH_SHORT.tar.gz" | |
BASH_URL="https://ftp.gnu.org/gnu/bash" | |
BASH_PREFIX="/usr/local" | |
BASH_PATH="$BASH_PREFIX/bin/bash" |
#import "MemPatcher.h" | |
vm_object_offset_t calcAddress(vm_object_offset_t offset) | |
{ | |
const struct mach_header *mach; | |
mach = _dyld_get_image_header(0); | |
if (mach->flags & MH_PIE) | |
{ | |
vm_object_offset_t slide = _dyld_get_image_vmaddr_slide(0); |
/* | |
Runtime MemPatcher - by Arthur da Paz | |
Completely based on the famous writeData.h | |
created by Razzile & HackJack for iOSGods.com | |
Copyright 2016 Arthur da Paz, AP Security Inc | |
This code is licensed under the GTFC LICENSE, which means | |
██████╗ ██╗██╗ ██╗███████╗ ████████╗██╗ ██╗███████╗ |