Skip to content

Instantly share code, notes, and snippets.

View Gesugao-san's full-sized avatar
💭
⌈Wired Sound for Wired People⌋

Gesugao-san

💭
⌈Wired Sound for Wired People⌋
View GitHub Profile
@choco-bot
choco-bot / 1.RegistrySnapshot.xml
Created September 9, 2023 17:24
ida-free v8.3.0 - Passed - Package Tests Results
<?xml version="1.0" encoding="utf-8"?>
<registrySnapshot xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<user>S-1-5-21-2582430737-656173807-97700463-1000</user>
<keys>
<key installerType="Unknown" displayName="IDA Freeware 8.3" displayVersion="8.3">
<RegistryView>Registry64</RegistryView>
<KeyPath>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\IDA Freeware 8.3</KeyPath>
<DefaultValue />
<InstallLocation><![CDATA[C:\Program Files/IDA Freeware 8.3]]></InstallLocation>
<UninstallString><![CDATA["C:\Program Files\IDA Freeware 8.3\uninstall.exe"]]></UninstallString>
@Spottedleaf
Spottedleaf / Starlight 1.20.md
Last active July 15, 2024 15:54
The future of the Starlight mod

Final change of plans (March 8, 2024)

I don't see that many people are using Starlight on modern versions anymore. As such, I don't see any reason to continue to maintain the mod versions, given that they do have real mod conflict issues with other mods. Starlight is also not neccessary to use on 1.20.x anyways.

Starlight may make a return in a future project of mine, but for now I am ceasing to upload new mod versions and commit updates to the github. If you want Starlight on the server, you will need to use Paper or one of its derivatives.

@Gesugao-san
Gesugao-san / The Imperial Gatekeeper.ct.xml
Last active November 14, 2022 13:19
The Imperial Gatekeeper (v1.75) CE (v7.3) Table. Save as "Game.ct" to associate with game.
<?xml version="1.0" encoding="utf-8"?>
<CheatTable CheatEngineTableVersion="38">
<CheatEntries>
<CheatEntry>
<ID>116</ID>
<Description>"&gt; Игрок (обновляется постоянно)"</Description>
<Options moHideChildren="1"/>
<LastState Value="" RealAddress="00000000"/>
<GroupHeader>1</GroupHeader>
<CheatEntries>
@Gesugao-san
Gesugao-san / openapi_byond.yml
Last active May 5, 2024 21:28
Swagger UI OpenAPI for http://byond.com. How to use: copy content of this file, and insert in https://editor.swagger.io. For working preview use https://mybrowseraddon.com/access-control-allow-origin.html!
openapi: 3.0.0
info:
version: "1.0"
title: BYOND API
description: "Website offer a free API that provides some info for a players and about players, hubs and worlds."
termsOfService: https://www.byond.com/TOS
contact:
name: SS13HUB Team
url: http://discord.gg/HMwbBZyEum
@kennytv
kennytv / readme.md
Last active May 8, 2024 06:32
Signed Chat and Chat Types

Signed chat

This gist intends on clearing up some of the misinformation surrounding signed chat/the reporting feature Mojang has added to Minecraft 1.19.1. Here you can find both technical information as well as a general explanation of how these work.

Profile keys

After joining a server, clients now send a profile key used for verifying a message's authenticity. This key and thus the whole signing process is optional, but by default, servers enforce secure profiles for clients to send chat messages. Whenever the player sends a chat message and has a key associated, the message will be signed using their own private key, which the server then verifies using the public key sent after join. Assuming signature, timestamp, and message contents line up, the message goes through.

On the other end, clients can also require all broadcasted player messages to be signed, disregarding the ones without sender verified signatures.

Message signatures

@regstuff
regstuff / Wayback Machine SPN2 API Docs
Created June 21, 2022 09:42
Wayback Machine SPN2 API Docs
From https://docs.google.com/document/d/1Nsv52MvSjbLb2PCpHlat0gkzw0EvtSgpKHu4mk0MnrA/
Save Page Now 2 Public API Docs Draft
Vangelis Banos, updated: 2022-04-05
Capture a web page as it appears now for use as a trusted citation in the future. Changelog: https://docs.google.com/document/d/19RJsRncGUw2qHqGGg9lqYZYf7KKXMDL1Mro5o1Qw6QI/edit#
Contents
Glossary 1
Basic API Reference 1
Capture request 1
@Gesugao-san
Gesugao-san / README.md
Last active June 21, 2024 10:20
Open in WBM (v5.0, script for Tampermonkey) [BROKEN]
@Gesugao-san
Gesugao-san / README.md
Last active June 21, 2024 10:21
Open in WBM (v4.0, script for Tampermonkey) [BROKEN]
@HugsLibRecordKeeper
HugsLibRecordKeeper / output_log.txt
Created December 14, 2021 11:48
Rimworld output log published using HugsLib
This file has been truncated, but you can view the full file.
Log uploaded on Tuesday, December 14, 2021, 12:47:58 PM
Loaded mods:
Harmony(brrainz.harmony)[mv:1.1.1.0]: 0Harmony(2.1.1), HarmonyMod(1.1.1)
Core(Ludeon.RimWorld): (no assemblies)
Expanded Prosthetics and Organ Engineering(Ykara.EPOE): (no assemblies)
Rimsenal - Security pack(rimsenal.security): (no assemblies)
Storage Solutions(cucumpear.storage): (no assemblies)
Rimsenal - Storyteller pack(rimsenal.storyteller): (no assemblies)
Configurable Mental Breaks(nmeijer.configurablementalbreaks): 0Harmony(av:2.1.1,fv:2.0.0.10), ConfigurableMentalBreaks(1.0.0)
Vanilla Traits Expanded(VanillaExpanded.VanillaTraitsExpanded): VanillaTraitsExpanded(1.0.0.1)
@blluv
blluv / decrypt.py
Last active November 4, 2023 06:39
HighFleet seria_enc decrypt
f = open("./english.seria_enc", "rb")
data = list(f.read())
a = 0
b = 2531011
while a < len(data):
data[a] = (b ^ (b >> 15) ^ data[a]) & 0xff
b += 214013