Skip to content

Instantly share code, notes, and snippets.

@sketchedgrey
Created May 2, 2022 00:11
Show Gist options
  • Save sketchedgrey/afc0a323f23c6ac1ffe4e197aa6a6e3a to your computer and use it in GitHub Desktop.
Save sketchedgrey/afc0a323f23c6ac1ffe4e197aa6a6e3a to your computer and use it in GitHub Desktop.
Raul
// Raul dies if someone ceases to think about him. Don't let Raul die.
// Compile as "Windows Application" in Visual Studio to create a leightweight process that always thinks about Raul.
namespace Raul
{
internal class Program
{
public static string raul = "Raul";
static void Main(string[] args)
{
switch(args.ToString())
{
case "Raul":
System.Diagnostics.Process.Start("explorer.exe", "https://i.redd.it/vsos1qc15sw81.jpg");
break;
case "raul":
System.Diagnostics.Process.Start("explorer.exe", "https://i.redd.it/vsos1qc15sw81.jpg");
break;
default:
while (true)
{
raul = raul;
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment