The binary format for Fallout 4 PC save files. This document was created by reverse-engineering files from version 1.2.37.0 of the game.
Note: This document is incomplete!
| extern crate hyper; | |
| extern crate url; | |
| static HOST: &'static str = "www.google.com"; | |
| macro_rules! ret_err( | |
| ($e:expr) => {{ | |
| match $e { | |
| Ok(v) => v, | |
| Err(e) => { println!("Line {}: {}", line!(), e); return; } |
The binary format for Fallout 4 PC save files. This document was created by reverse-engineering files from version 1.2.37.0 of the game.
Note: This document is incomplete!
Before:
NONE_TYPE = type(None)
union_params = type_hint.__args__ # this was __union_params__ in python3.5, but __args__ in 3.6+
assert union_params
is_optional = NONE_TYPE in union_params
if len(union_params) == (2 if is_optional else 1):
# None is the first/second one, the actual type has to be the other.
raise ValueError('MEhhhh')This is a writedown of how I installed my raspberry pi(s).
The base is a Proxmox, so I don't have to worry about reformat the SD card every time I wanna try out something new, as I can start VMs and LXC containers, as well as Docker containers once it's configured properly.
Note: Those files are versioned, so you can always look what changed from time to time.
I can confirm that the ETRX357USB-LRS+8M can be flashed with an appropriate EZSP firmware without the use of any programming hardware. So, without any guarantees (you might -but probably won’t- brick your device), here’s how:
sudo apt-get install minicom, installs lrzsz, too) Run it and configure it (sudo minicom -s) to use the fake serial port (/dev/ttyUSB0) at 19200 baud 8N1. Disable both hardware (RTS/CTS) and software (XON/XOFF) flow control.| #!/bin/bash | |
| declare gnomeExtensionsList=( | |
| #"[email protected]" # Dash to Dock | |
| "[email protected]" # Dash to Panel | |
| "[email protected]" # Desktop Icons NG - introduces a working Drag N Drop for Desktop Icons | |
| ) | |
| function installExtensions(){ | |
| declare host="https://extensions.gnome.org/download-extension" | |
| for extensionUUID in "${gnomeExtensionsList[@]}"; do |
| #!/bin/bash | |
| # SCRIPT TO KILL PROCESSES IF MEMORY IS UNDER THRESHOLD | |
| # USER SETTINGS: free_needed, max_lines | |
| # licence: MIT, (c) 2025 luckydonald | |
| # Declare an associative array for memory limits | |
| declare -A free_needed free_needed_bytes |