Skip to content

Instantly share code, notes, and snippets.

View ithinkandicode's full-sized avatar

Darkly77 ithinkandicode

  • UK
View GitHub Profile
@lynn
lynn / deltarune-code.csx
Last active April 1, 2022 11:28
Deltarune code extraction script for UndertaleModTool
// Maybe you need to tweak this DLL path for your .NET framework version.
#r "C:\Windows\Microsoft.NET\Framework\v4.0.30319\System.Text.RegularExpressions.dll"
using System.Text.RegularExpressions;
EnsureDataLoaded();
static var Lang = new Dictionary<string, string>();
public static class Operands {
public static IEnumerable<string> Or(Match m) {
yield return m.Groups[1].Value;
@mlocati
mlocati / win10colors.cmd
Last active June 16, 2024 17:49
ANSI Colors in standard Windows 10 shell
@echo off
setlocal
call :setESC
cls
echo %ESC%[101;93m STYLES %ESC%[0m
echo ^<ESC^>[0m %ESC%[0mReset%ESC%[0m
echo ^<ESC^>[1m %ESC%[1mBold%ESC%[0m
echo ^<ESC^>[4m %ESC%[4mUnderline%ESC%[0m