Skip to content

Instantly share code, notes, and snippets.

@0x59R11
0x59R11 / README.md
Last active June 24, 2024 23:37
C# Boxing & Unboxing under the hood

Aware! It's Not user-friendly

Source code:

public struct MyStr
{
    public int Age;
    public string Name;
    public ushort Type;
}
@0x59R11
0x59R11 / readme.md
Last active October 26, 2023 10:41
UPDATE Unturned local server with one command

UPDATE Unturned local server with one command

On Linux

  1. Run
steamcmd +login anonymous +app_update 1110390 validate +quit
  1. Wait for completion, Done!

On Windows

  1. Open the directory where Steamcmd is installed
@0x59R11
0x59R11 / test.asm
Created May 17, 2023 19:34
Calling convetions (cdecl, stdcall, fastcall) MSDOS
.8086
data SEGMENT PARA USE16 PUBLIC 'data'
msg DB "Test calling convertions", 24h
data ENDS
code SEGMENT PARA USE16 PUBLIC 'code'
BEGIN:
main PROC C