Skip to content

Instantly share code, notes, and snippets.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body, html {
margin: 0;
overflow: hidden;
@mindfulvector
mindfulvector / palworld.bat
Created February 12, 2024 17:07
palworld server startup script
REM This assumes Steam is installed to C:\Bin
REM It also assumes S3Express is installed to C:\Bin\S3Express
REM You need to launch S3Express and run saveauth once to enter your authentication.
REM If you use non-AWS S3 compatible service, configure the endpoint as well in S3Express.
REM
REM The script also assumes that scoop is installed in your user directory
REM and that you have run `scoop install 7zip`
REM
REM Create this directory for backups to work:
REM C:\Backup\palworld\
@mindfulvector
mindfulvector / Notes.cs
Last active May 2, 2024 21:30
A notebook written in Unity IMGUI / C#
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using UnityEngine;
public class Notes : MonoBehaviour
{
public string directoryPath = "C:\\Users\\topfr\\OneDrive\\Documents\\Notes";
private string configFileName = "config.ini";
/*
Copyright 2024. Isaac Raway and Stone Orb Software.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE