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.


Languages I Built

Aether (v1.0 — production ready)

Systems programming language — memory-safe, ABI-stable, C++-competitive performance

  • Memory model: ARC — no GC pauses, no borrow checker overhead
  • ABI stability: guaranteed binary compatibility across versions
  • Toolchain: build, test, bench, profile, LSP, formatter, linter
  • Targets: Linux (x86_64, AArch64) · macOS (x86_64, AArch64) · Windows (x86_64)
  • Stdlib: std.core · std.io · std.net · std.json · std.crypto · std.concurrent
  • FFI: direct C interop · task-based concurrency · defer for deterministic cleanup
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


Super Compiled Security Assembler (SCSA) (v1.0.4)

Deterministic, security-first systems language with formal verification guarantees

Not for beginners. Not for prototypes. Built for mission-critical environments where correctness is non-negotiable.

  • Architecture: hybrid register/stack VM · 50+ microcoded opcodes · constant-time execution
  • Memory: linear type system · region-based allocation · hostile-by-default zeroization on every boundary
  • Cryptography: AES-256-GCM · ChaCha20-Poly1305 · Kyber KEM · Dilithium · SPHINCS+ (post-quantum throughout)
  • Verification: 89.3% of critical security properties verified via Coq + TLA+ model checking
  • Security: BORE firewall · capability-based access control · taint propagation · proof-carrying bytecode
  • Toolchain: monolithic single-binary — compiler, optimizer, verifier, VM — zero external dependencies
  • Scale: 71 cryptographically verified modules across kernel, memory, network, security, distributed systems
scsa --compile file.scsa   # compile to hardened bytecode
scsa --run file.scsa       # compile + execute with runtime integrity verification
scsa --audit file.scsa     # formal security analysis
scsa --verify artifact.sc  # cryptographic signature check

Repo: github.com/D3LTA2033/Super-Compiling-Security-Assemblor


Modular Libraries

Production-ready modules. Clean APIs, tested, drop-in.

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

Comprehensive set of production modules organized by category. Each module is self-contained with its own setup, examples, and tests.

Categories: caching · logging · async workers · rate limiters · event buses · state managers · memory managers · security modules

Performance baselines: >1M cache ops/sec · >10M log writes/sec · >5M events/sec · <1% memory overhead

ModularX/
├── cpp/        ├── rust/       ├── js/
├── python/     ├── ruby/       ├── assembly/
└── modularx/   └── docs/

Built with: @mcs.s


High-performance C++ caching library

#include "SmartCache.h"
SmartCache<std::string, std::string> cache(1000);
cache.set("key", "value");
auto value = cache.get("key");

API rate limiting and throttling module

Pluggable rate limiting with configurable windows and burst handling. Part of the ModularX ecosystem.


Modular configuration loader for Node.js

Multiple sources and formats, seamless fallback to defaults, flexible validation. Drop-in for any Node.js project.


Operating Systems

Modular hybrid kernel OS built from scratch — x86 (i686) and x86_64

Security-first, production-oriented design with clean separation between architecture-dependent and architecture-independent subsystems.

arch/x86/   kernel/   include/   user/   config/grub/   scripts/

Custom OS (in development)


Contributions

Project Description
emexOS Contributed to emexOS — 160+ commits
HexiumOS Contributed to HexiumOS — custom OS built from scratch

Portfolio

Website d3lta2033.nl · backup
Kernel work kernel_tut.md
Main portfolio portfolio.md
Extended portfolio portfolio_2.md
AI evaluation ai_opinion.md

I work on an older laptop. Hardware is not the bottleneck. Yes i have a Desktop too.

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

  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++