Skip to content

Instantly share code, notes, and snippets.

@Darkrifts
Darkrifts / How2InvokeUB.cs
Last active August 8, 2016 23:44
This is how to crash a C# application. (Requires Darkrifts's Undefined.dll)
namespace Watch
{
unsafe class MeCrash
{
unsafe public static void Main()
{
while(true)
{
Undefined.Undefined.run();
}
@Darkrifts
Darkrifts / EBF.txt
Last active July 5, 2016 21:10
Documentation for "enhanced" brainf**k
I = Increment the current pointer (Synonym: +)
D = Decrement the current pointer (Synonym: -)
S = Slide the pointer to the right (Synonym: >)
R = Reverse slide to the left (Synonym: <)
L = Begin a loop (Synonym: [)
E = End a loop (Synonym: ])
C = Output the current pointer as a character (Synonym: .)
O = Output the current pointer as a number (No synonym)
N = Output a newline w/o changing the pointer (No synonym)
G = Get a number as a full reading of a line (No synonym) [Allows for inputting 146 in 1 line]