🏠 HOME 📄 WEB CV 📷 PHOTOS ✏️ BLOG
Developer Notes

Blog Archive

Current Writing

Notes on AI systems, security, software engineering, and the projects shaping how I build. The archive is filterable, readable, and meant to stay clean rather than theatrical.

Total Logs 03 Active documents in the current archive.
Tracks AI / Systems / Security Primary lanes under active observation.
Focus Vector Applied ML Infrastructure Recent emphasis across current work.
Interface Typed + Filterable Query by tag and scan implementation fragments.
Visible Logs: 03 Filter: All sectors visible
  • OCT 24, 2024 ~5 min read Active Study
    AI Web Dev

    Breaking down my recent AI project

    python
    import torch
    from transformers import AutoModelForCausalLM
    
    # Load quantized model for local inference
    model = AutoModelForCausalLM.from_pretrained(
        "meta-llama/Llama-2-7b",
        device_map="auto",
        load_in_4bit=True
    )
  • SEP 12, 2024 ~7 min read Systems Trace
    Systems

    Why C/C++ is still relevant in the age of Rust

    c
    // Custom memory pool allocator
    void* pool_alloc(MemPool* pool, size_t size) {
        if (pool->offset + size > pool->capacity)
            return NULL;
        void* ptr = pool->base + pool->offset;
        pool->offset += ALIGN(size, 16);
        return ptr;
    }
  • AUG 05, 2024 ~4 min read Network Report
    Security

    My homelab setup and network security

    bash
    # Isolate VLAN traffic with iptables
    iptables -A FORWARD -i vlan10 -o vlan20 \
        -m state --state NEW -j DROP
    iptables -A FORWARD -i vlan20 -o vlan10 \
        -m state --state ESTABLISHED,RELATED -j ACCEPT

Quick Filters

Fast ways to scan the archive without opening the full command palette.

Research Map

AI
Systems
Security
Web

Archive Profile

  • Signal StyleTechnical + reflective
  • CadenceProject-driven entries
  • ModeNotes + code fragments
  • OperatorAlex Gaffen
Article

Article Reader

Recovered article summary.

Signal block.