Skip to content

Instantly share code, notes, and snippets.

View kepeter's full-sized avatar
👽

Peter Eliyahu Kornfeld kepeter

👽
View GitHub Profile
@kepeter
kepeter / ConsoleControls.cs
Created September 4, 2025 17:34
Make fancier terminal output...
namespace System
{
public static class ConsoleControls
{
private static string _escape = "\u001b[{0}m";
public static string Reset => string.Format(_escape, "0");
public static string Bell => "\a";