Skip to content

Instantly share code, notes, and snippets.

View xenomancer's full-sized avatar
🔥
work work work

Craig Mansfield xenomancer

🔥
work work work
View GitHub Profile
@ItzLue
ItzLue / main.lua
Created January 21, 2024 22:39
Palworld - Max level mod
NotifyOnNewObject("/Script/Pal.PalGameSetting", function(PalGameSetting)
PalGameSetting.BuildExp = 99999
PalGameSetting.CraftExp = 99999
end)
@arawrshi
arawrshi / 00 - pw - saves.md
Last active January 16, 2025 00:14
Palworld - Convert saves to json and back
@cheahjs
cheahjs / README.md
Last active January 16, 2025 00:15
Converting PalWorld saves to JSON and back
Cheef's Grand APDU List Smartcard Selected Information APDU list
Reference: http://web.archive.org/web/20090630004017/http://cheef.ru/docs/HowTo/APDU.info
#------------+------------------------+------------------------+----------------------+--------------------------------+
|ClaIns P1 P2|Lc Send Data |Le Recv Data | Specification | Description |
+------------+------------------------+------------------------+----------------------+--------------------------------+
| 04 | ISO 7816-9 6.3 | DEACTIVATE FILE |
| A0 04 00 00 00 | 3GPP TS 11.11 | INVALIDATE |
| A0 04 00 00 00 | SAGEM SCT U34 6.15 | INVALIDATE |
+------------+------------------------+------------------------+----------------------+--------------------------------+
@jeetsukumaran
jeetsukumaran / custom_iterator.cpp
Created February 18, 2010 02:33
Sample C++/STL custom iterator
// Sample custom iterator.
// By perfectly.insane (http://www.dreamincode.net/forums/index.php?showuser=76558)
// From: http://www.dreamincode.net/forums/index.php?showtopic=58468
#include <iostream>
#include <vector>
#include <algorithm>
#include <iterator>
#include <cassert>