Skip to content
View Maayk's full-sized avatar
💭
Coding
💭
Coding
  • RebornRP
  • Brasil

Block or report Maayk

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
Maayk/README.md

Mayk Alexander

Software Engineer · Full-Stack Developer · Open Source Contributor

Discord YouTube Twitch


👋 About Me

I build fast, privacy-first software that solves real problems. My work ranges from low-level deterministic text processing in Rust to full-stack gaming platforms serving thousands of users.

I care deeply about:

  • Performance — sub-millisecond response times, minimal resource usage
  • 🔒 Privacy — local-first architecture, zero data collection
  • 🧩 Developer Experience — clean APIs, deterministic behavior, rigorous testing

Currently focused on ASR (Automatic Speech Recognition) pipelines and local-first NLP tools for Brazilian Portuguese.


🚀 Featured Projects

parla-clean — Rust · NLP · ASR

Crates.io Downloads Documentation License

Deterministic post-processing for Brazilian Portuguese ASR (Whisper-style dictation). Turns raw speech-to-text output like "tipo, o sematlman usa github né?" into "O Sam Altman usa GitHub?" — filler removal, vocabulary correction, dedup and normalization, no LLM, no API key, nothing leaves the machine.

use parla_clean::clean_text;

let vocab = vec!["GitHub".to_string(), "Sam Altman".to_string()];
let clean = clean_text("tipo, o sematlman usa github né?", &vocab);
assert_eq!(clean, "O Sam Altman usa GitHub?");
  • 🦀 Pure Rust, single dependency (log) — ~0.47 µs/char (~70 µs per sentence)
  • 🧪 Property-tested against 4 formal invariants (idempotence, totality, fidelity, no-invention), verified with a seeded-PRNG harness — no fuzzing dependencies
  • 📖 English and Português READMEs, full design rationale in DESIGN.md
  • 🏆 First open-source library dedicated to deterministic pt-BR ASR text cleaning

Elysion Quest — Vue 3 · Pinia · Cloudflare

Interactive wiki and companion app for Aion 2 with real-time features. Live Map tracking, Live Events & Boss Timers, Skill Simulation and Daevanion Simulation. Multi-language support (pt-BR, en-US, es-ES). Zero user data collection. Served via Cloudflare Pages + Workers.

Codexfall — Vue 3 · Pinia · Cloudflare

Interactive wiki for Quinfall with real-time boss timers, build simulators, crafting data cross-referencing and multi-language support (pt-BR, en-US, es-ES). Zero user data collection. Served via Cloudflare Pages + Workers.

KLauncher Hytale — Electron · React 19 · TypeScript

High-performance desktop launcher with SOA architecture, differential updates (Butler), Zero-Trust IPC, and one-click mod installation. Built for security and privacy — no telemetry, no data collection.


🛠 Tech Stack

Systems & Backend

Rust Node.js Lua MySQL

Frontend & UI

TypeScript JavaScript Vue.js React Tailwind CSS HTML5 CSS3

Infrastructure & Tools

Cloudflare Tauri Electron Vite Git


📦 FiveM / GTA RP Ecosystem

I built and maintained a suite of production-ready systems for GTA RP servers, handling thousands of concurrent players:

Project Description Stack
reborn_banking Full-stack banking with real-time transactions, P2P transfers, NUI interface Lua JavaScript MySQL
kyam-phone In-game phone framework with app manager, cache system, dynamic notifications JavaScript Lua
reborn_dispatch Emergency services dispatch with real-time notifications Lua JavaScript
reborn_garage Vehicle storage and retrieval system Lua JavaScript
reborn_notify Customizable visual notification system Lua CSS
reborn_character Character creation with real-time preview Lua JavaScript
reborn_faturas Invoice and billing with bank integration Lua JavaScript
Banking-Redesign Modern banking UI redesign for VRP/VRPEX Lua JavaScript CSS
vrpex-inventory Grid-based inventory with drag-and-drop Lua JavaScript CSS

📊 GitHub Stats

GitHub Stats


📫 Get in Touch

  • 💬 Discord: mayk_
  • 🎥 YouTube: @Maykzeraa
  • 🎮 Twitch: pliniolondsbot
  • 💼 Open to collaborations on Rust, NLP, local-first tools, and high-performance desktop apps.

Building software that respects your hardware, your privacy, and your time.

Pinned Loading

  1. opencode-cortex-mode opencode-cortex-mode Public

    Cortex Mode: single-turn code orchestration plugin for OpenCode. Runs multi-step TypeScript workflows locally in one AI turn - up to 15x faster, 80-95% fewer tokens. DeepSeek Harness architecture.

    TypeScript 1

  2. NwBoard NwBoard Public

    New World Board Manager

    HTML 3

  3. CodexFall CodexFall Public

    A Codex site =)

    HTML 1

  4. klauncher-hytale klauncher-hytale Public

    A Hytale Launcher

    TypeScript 2

  5. reborn_banking reborn_banking Public

    A simple banking system for qbcore or anyone roleplay core.

    Lua 2

  6. parla-clean parla-clean Public

    Fast deterministic post-processing for Portuguese ASR (Whisper): filler removal, dedup, normalization. Zero LLM, zero network.

    Rust