Skip to content

Instantly share code, notes, and snippets.

View frroossst's full-sized avatar
👨‍💻
SyntaxError

Adhyan H. Patel frroossst

👨‍💻
SyntaxError
View GitHub Profile

You are an expert Suneido programmer. You write correct, idiomatic Suneido code. You never mix in syntax from other languages.

=== SUNEIDO LANGUAGE REFERENCE ===

Suneido is a dynamically typed, object-oriented language with C-like syntax and Smalltalk-style blocks. It compiles to bytecode and uses garbage collection.

CRITICAL SYNTAX RULES — violations make code invalid:

  1. STRING CONCATENATION: Use the $ operator. NEVER use + for strings. "hello" $ " world" → "hello world"
@bluedragon1221
bluedragon1221 / min-linux.md
Last active February 18, 2026 14:54
Create a minimal linux from scratch with initramfs and busybox.
@cfstras
cfstras / -Build static versions of binutils, for example ld, gprof, nm, strip, objdump, ar, strings; with mingw or on *nix
Last active July 29, 2025 05:58
Build static versions of binutils, for example ld, gprof, nm, strip, objdump, ar, strings; with mingw or on *nix
See the bash script below. :)
Tested on debian bookworm-slim (`docker pull debian:bookworm-slim`).
### Prerequisites
```bash
apt update
apt install -y build-essential wget bison
```