Skip to content
View D3LTA2033's full-sized avatar
:octocat:
working on venoly
:octocat:
working on venoly

Block or report D3LTA2033

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
D3LTA2033/README.md

mcss / D3LTA2033

Systems programmer. Low-level implementation focus. Execution over presentation.

C · C++ · Rust · JS/TS · Python · x86 asm d3lta2033.nl · Discord @mcs.s


Languages I Built

Aether (v1.0)

Systems programming language — ARC memory management, ABI stability by design, performance targets in C++ territory

  • ~19k lines of C++ — full pipeline in one repo: lexer → parser → HIR → semantic analysis → optimizer → codegen / VM
  • Toolchain in-tree: build · test · bench · profile · LSP · formatter · linter · package registry
  • Memory model: ARC — no GC pauses, no borrow checker overhead
  • Stdlib: std.core · std.io · std.net · std.json · std.crypto · std.concurrent
  • FFI: direct C interop · task-based concurrency · defer for deterministic cleanup
  • Targets: Linux · macOS · Windows
fn divide(a: int, b: int) -> Result[int, string] {
    if b == 0 { return err("division by zero"); }
    return ok(a / b);
}

Install: curl -sSf https://install.aether-lang.org | sh


Security-oriented assembler + VM in a single C file. One binary, no dependencies beyond OpenSSL.

  • ~1.2k-line C core, ported per platform: Linux · macOS · Windows
  • 56-instruction hybrid register/stack ISA — arithmetic, control flow, structs, enums, try/catch, threads, GC
  • Built-in primitives: file I/O · networking (NET_BIND / LISTEN / CONNECT / SEND / RECV) · AES-256 ENCRYPT / DECRYPT via OpenSSL
  • 70+ example modules in-repo
  • Ecosystem: scsa_compiler · scsa-vscode
scsa --compile file.scsa   # compile to bytecode
scsa --run file.scsa       # compile + execute
scsa --modular file.scsa   # run with module system

Modular Libraries

Cross-language module collection — C++, Rust, JS/TS, Python, Ruby, Assembly

Self-contained modules, each with its own setup, examples, and tests.

C++: SmartCachePP · SmartLoggerPP · AsyncWorkerPP JS/TS: eventbusx · smart-ratelimiterx · statemanagerx · ucl Plus Python, Rust, Ruby, and Assembly modules

Standalone

Repo What it is
SmartCachePP C++ caching library — drop-in header + impl
SmartRateLimiter Node.js rate limiting — configurable windows, burst handling
universal-config-loader Node.js config loader — multi-source, fallback defaults, validation
#include "SmartCache.h"
SmartCache<std::string, std::string> cache(1000);
cache.set("key", "value");
auto value = cache.get("key");

Operating Systems

Modular hybrid-kernel OS built from scratch — x86

~13k lines of C and assembly. Clean separation between architecture-dependent (arch/x86/ — boot, linker script) and architecture-independent subsystems (kernel/, user/). GRUB config and build scripts in-tree.

Forks & Experiments

Repo
emexOS Fork of Voxi0/emexOS1 — my working branch
HexiumOS Fork of Abdallah-Alwarawreh/HexiumOS — Rust OS from scratch

Also Building

Venoly — communication platform: chat, communities, voice/video. (venoly-desktops)

More on the profile: Neoarc-engine · Security-Recovery-Core · secureforge · +20 more


Portfolio

Website d3lta2033.nl · backup
Kernel notes kernel_tut.md
Portfolio portfolio.md · portfolio_2.md

Hardware is not the bottleneck.

Pinned Loading

  1. Security-Recovery-Core-SRC Security-Recovery-Core-SRC Public

    SRC is a production-ready firmware recovery system that runs before BIOS/UEFI, providing automatic firmware backup and recovery capabilities. It protects against permanent bricking while preserving…

    C 2

  2. Super-Compiling-Security-Assemblor Super-Compiling-Security-Assemblor Public

    C 1 1

  3. SmartCachePP SmartCachePP Public

    SmartCashePP is a high-performance, modular caching library for C++. It supports LRU (Least Recently Used) eviction, metrics tracking, optional disk persistence, and asynchronous cleanup with a thr…

    C++