Skip to content
View marvhus's full-sized avatar
🎯
Focusing
🎯
Focusing

Block or report marvhus

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

GitHub Statistics


Other Stuff

Codewars Badge FSF Badge


You can also see some of my projects on Codeberg

Pinned Loading

  1. SaintsSec/Cryptex SaintsSec/Cryptex Public

    An advance commandline cryptography toolkit

    Python 33 16

  2. Simple library for dealing with a Mu... Simple library for dealing with a Multi-Core by Default development style.
    1
    // Copyright (C) 2025  marvhus <martin@marvhus.xyz>
    2
    // See end of file for extended copyright information.
    3
    
                  
    4
    Lane_Context :: struct {
    5
      index, count: int;
  3. CLI application for finding notes le... CLI application for finding notes left in your comments
    1
    // Copyright (C) 2025  marvhus <martin@marvhus.xyz>
    2
    // See end of file for extended copyright information.
    3
    
                  
    4
    USAGE :: #string DONE
    5
    Usage: notes <path> [options]
  4. Tetris Tetris Public

    A simple Tetris clone created over a weekend in C++ using Raylib.

    C++ 1

  5. WAV Audio WAV Audio
    1
    typedef struct {
    2
      uint32_t block_id;  // "RIFF"
    3
      uint32_t file_size; // total size - 8
    4
      uint32_t format_id; // "WAVE"
    5
    } WAV_RIFF_Header;