Skip to content

Instantly share code, notes, and snippets.

View pizzaboxer's full-sized avatar
🐢

pizzaboxer

🐢
  • United Kingdom
  • 07:21 (UTC)
View GitHub Profile
@pizzaboxer
pizzaboxer / minecraft-log-compiler.sh
Last active March 17, 2023 18:04
minecraft server log compiler
#!/bin/bash
# a script i quickly wrote to compile a minecraft server's log history
# place this in the folder of your minecraft server
# after you run it, a 'logs-compiled/' directory should be made
if [[ ! -d "logs-compiled/" ]]
then
mkdir logs-compiled
fi
@pizzaboxer
pizzaboxer / gyazo-downloader.py
Last active July 29, 2023 19:54
python script that downloads all files uploaded to your gyazo account, no pro subscription needed :D
import base64
import filedate
import json
import os
import requests
session = requests.Session()
cookie = input("enter gyazo session cookie: ")
@pizzaboxer
pizzaboxer / errors.md
Last active October 29, 2024 21:39
Documentation of .NET connectivity errors
  • Type: System.Net.Http.HttpRequestException
  • Message: No connection could be made because the target machine actively refused it.
  • HRESULT: 0x80004005
  • Inner Exception:
    • Type: System.Net.Sockets.SocketException
    • Message: Ditto
    • Error code: 10061 (WSAECONNREFUSED)
  • Notes: Likely firewall caused, can be invoked by making a request to a host on a port that's not open or active

@pizzaboxer
pizzaboxer / stuff.md
Last active December 11, 2025 19:16
Research on random technical old Roblox stuff

Research on random technical old Roblox stuff

This primarily aims to document the unknown regarding:

  • Lua APIs whose purpose aren't immediately obvious (especially those removed prior to 2016)
  • Web endpoints that are defunct and/or largely unknown (due to a lack of context and archives)
  • General lesser-known game client functionality and features and stuff

Thanks to Matt for helping out with documenting ScriptInformationProvider.

(07/03/2025) Just remembered I had this lying around, I'm sure this'll be an interesting read for someone. There's so much more info and interesting stuff that I never got around to adding here but ¯\_(ツ)_/¯

@pizzaboxer
pizzaboxer / influxdbv2-migrate.sh
Created September 9, 2025 13:05
Migrate specific InfluxDBv2 buckets of one org from one server to another
#!/bin/bash
# InfluxDBv2 migration script
# Copies specific chosen buckets of one org from one server to another
# Guidance:
# Run this script on a machine running the server with the source data
#
# The Influx CLI ('influx') must be configured with an active
# profile for the remote server. Operator perms are ideal;
# without then you'll need to create the buckets manually