Skip to content
View rawbytedev's full-sized avatar
:octocat:
Working from home
:octocat:
Working from home

Block or report rawbytedev

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 supported. This note will be visible to only you.
Report abuse

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

Report abuse
rawbytedev/README.md

rawbytedev Portfolio

Stack Overflow Reputation
GitHub Stats
Top Languages
trophy


Summary

I’m a systems-oriented developer passionate about building custom data formats, hashing utilities, and modular tools that solve real-world problems. My hands-on experimentation in Python and Go ranges from a bespoke hashing library to a custom encoding format.


Skills

  • Languages: Python, Go, C#
  • Cryptography & Hashing: custom hash utilities, hash-cracking techniques
  • Data Formats & Encoding: bespoke binary/text formats, integrity checks
  • Concurrency & Performance: threading, goroutines, profiling, benchmarks
  • Tooling & CLI: command-line interfaces, utility scripting, Gists

Featured Projects

AxonHash

Modular hashing library designed for blockchain and cryptographic workflows.

  • Tech: Python core; Go implementation in progress
  • Highlights:
    • Unified interface for multiple hashing algorithms
    • Performance and memory-usage benchmarks
    • Planned goroutine-powered Go port

AxonHash


Fractus

Custom binary/text encoding format with encoder/decoder tooling for P2P data exchange.

  • Tech: Go
  • Highlights:
    • Compact wire format with header checksums
    • CLI for format validation and sample data generation
    • Throughput profiling using Go’s native tools

Fractus


CrossTrace

Schema‑Driven Journaling & NFT Receipt Agent

  • Tech: Go
  • Highlights:
    • Safe Intake Pipeline — Sanitizes and validates raw messages from Coral before processing.
    • Schema‑Driven Events — Enforces structured event formats with YAML‑defined schemas.
    • AI‑Powered Decisions — Uses MistraAI to classify actions (mint, rollback, escalate) and suggest schema evolution. (Not implemented)
    • On‑Chain Anchoring — Stores event checksums on Solana for immutable verification.
    • NFT Receipts — Mints claimable NFT proofs via Crossmint with embedded semantic metadata.
    • Audit & Replay — Journaling engine supports rollback, replay, and integrity checks.

CrossTrace

DataFrame Memory Leak Solution (Gist)

Showcase How to avoid growing RSS when working with Dataframes

  • Tech: Python
  • Use Case: When Processing Dataframes in other to avoid growing RSS and memory waste

DataFrame Memory Leak Solution Gist


Other Experiments & Utilities

A collection of smaller repos where I explore:

  • Interfaces for fast implementation with other DB
  • GossipProtocol designed for faster communication while ensuring security between nodes
  • PoS systems
  • PoC for systems improvements

All Repositories


Community Contributions

  • Shared Gists and open-source issue help to support fellow developers

Contact & Links

Pinned Loading

  1. CrossTrace CrossTrace Public

    CrossTrace is a manifest‑driven Ai agent that transforms raw user or system events into verifiable, on‑chain receipts and NFT proofs. It combines Go‑powered journaling, MistraAI orchestration, and …

    Go

  2. Fractus Fractus Public

    Fractus is a zero-allocation, introspectable encoding framework built for schema-evolving protocols and decentralized systems. Powered by its core engine dbflat, Fractus supports multiple encoding …

    Go 1

  3. Pychannel Pychannel Public

    Go‑style channels in Python — simple, safe, and powerful inter‑process communication. PyChannel brings the elegance of Go’s concurrency model into Python, enabling subprocesses to communicate throu…

    Python

  4. Axonhash Axonhash Public

    AxonHash is a research and prototyping cryptographic hash function based on ARX (Add-Rotate-Xor) permutation and Merkle tree construction. It is designed for educational, experimental, and benchmar…

    Python

  5. hashcrack hashcrack Public template

    Hashwolf an offline hashcracker made with python

    Python 3

  6. df-memory-leak-solution-pyarrow df-memory-leak-solution-pyarrow
    1
    import pyarrow as pa
    2
    import pyarrow.parquet as pq
    3
    import pyarrow.fs as pafs
    4
    from multiprocessing import Process
    5
    import gc