Discover gists
#!/bin/bash | |
### usage ./convert.sh game | |
## where game is baseName of the export | |
if [ ! "$1" ]; then | |
read -p 'Game name: ' game | |
else | |
game="$1" | |
fi |
feat: new feature
fix(scope): bug in scope
feat!: breaking change
/feat(scope)!: rework API
chore(deps): update dependencies
build
: Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)ci
: Changes to CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)chore
: Changes which doesn't change source code or tests e.g. changes to the build process, auxiliary tools, libraries
List of freely available resources to study computer graphics programming.
- Creative Coding for Beginners [video]
- Learn C++ [book]
- Essence of Linear Algebra [video] [article]
- 3D Math Primer for Graphics and Game Development [book]
- How do Video Game Graphics Work? [video]
For some reason, it is surprisingly hard to create a bootable Windows USB using macOS. These are my steps for doing so, which have worked for me in macOS Monterey (12.6.1) for Windows 10 and 11. After following these steps, you should have a bootable Windows USB drive.
You can download Windows 10 or Windows 11 directly from Microsoft.
After plugging the drive to your machine, identify the name of the USB device using diskutil list
, which should return an output like the one below. In my case, the correct disk name is disk2
.
#!/usr/bin/env python3 | |
import hashlib | |
import sys | |
import apkrepotool | |
from pathlib import Path | |
for apk in sys.argv[1:]: | |
certs, _ = apkrepotool.get_signing_certs(Path(apk)) |
How did you find this place? | |
You had the coordinates for this facility marked on your map. Where did you get them? | |
How did you find us? | |
All here, Mr Cooper. Plenty of slaves for my robot colony. | |
I have a cue light I can turn on when I’m joking, if you like. | |
You can use it to find your way back to the ship after I blow you out the airlock. | |
One hundred percent. | |
Ninety percent. | |
Absolute honesty isn’t always the most diplomatic, or safe form of communication with emotional beings. | |
Eight months to Mars, then counter-orbital slingshot around. |
A newer version of this info is available at https://badcfe.org/how-to-paxton-with-rfidler/
Paxton fobs and readers are popular in the UK especially the Net2 system where the fobs look like this with a blue ring:
Paxton readers often look like this:
DISCLAIMER: I am not an expert on UE4SS or lua modding. In fact, Palworld is the first game I've done any UE4SS modding. I self-taught myself from the UE4 docs, discord convos and brute force. I might not always do things the best way. But I have made a handful of mods and I think I have at least a decent understanding of the basics and overall process, and that's what I'm going to try and cover in this guide.
Hi, so I'm Teh, as some of you might know me from Nexus, or also im.null
on Discord.
Lets set some ground rules so you don't complain about me wasting your time:
- This is a Lua-only tutorial. I will not be covering BPs, BP interoperability, asset swapping or anything of the like. This will be pure, untainted Lua 😎. Some concepts will definitely transfer over, but if you want BP stuff, this aint it
- I'm not going to cover Lua basics, like syntax or