alias xcbuild=$(xcode-select -p)/../SharedFrameworks/XCBuild.framework/Versions/A/Support/xcbuild
# THIS DOESNT WORK YET: xcbuild openIDEConsole # … then switch to Xcode ➡️
xcbuild showSpecs
xcbuild build <foo.pif> [—target <target>]
This file contains 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
class "Apple-Intel-Netboot" { | |
# Limit this class to only Intel Apple machines | |
match if substring (option vendor-class-identifier, 0, 14) = "AAPLBSDPC/i386"; | |
option dhcp-parameter-request-list 1,3,17,43,60; # Send these options to the client (possibly forcing it, if the client didn't request it) | |
# From: http://www.iana.org/assignments/bootp-dhcp-parameters/bootp-dhcp-parameters.xml | |
# 1 - Subnet Mask | |
# 3 - Router | |
# 17 - Root Path | |
# 43 - Vendor Specific | |
# 60 - Class ID |
This file contains 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/bash | |
gdb -p "$1" -batch -ex 'set {short}$rip = 0x050f' -ex 'set $rax=231' -ex 'set $rdi=0' -ex 'cont' |
This file contains 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
DJANGO_API_URL=https://127.0.0.1 | |
DJANGO_WS_URL=wss://127.0.0.1 | |
DJANGO_ALLOWED_HOSTS="*" | |
DJANGO_JWT_SECRET_KEY=mysecretkey | |
DJANGO_DEBUG=False | |
DB_NAME=mydb | |
POSTGRES_DB=mydb | |
DB_USER=myuser | |
POSTGRES_USER=myuser | |
DB_PASSWORD=mypassword |
OlderNewer