Open Source

Built in public.
One engineer. Zero shortcuts.

Miransas is a solo engineering studio. Every line of code is written, reviewed, and shipped by one person. These are the tools of the trade.

Technology

The stack.

No bloated frameworks. No dependencies we don't understand. Every tool is chosen for performance, reliability, and long-term maintainability.

Frontend

  • Next.js
  • React
  • TypeScript
  • Tailwind CSS
  • Framer Motion

Backend

  • Go
  • Rust
  • PostgreSQL
  • Redis
  • gRPC

Infrastructure

  • Docker
  • Kubernetes
  • Vercel
  • AWS
  • Cloudflare

Tools

  • Neovim
  • tmux
  • Git
  • Figma
  • Blender

Code

How we think.

Zero-allocation middlewarego
func Middleware(next http.Handler) http.Handler {
    return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
        // Pool-allocated buffers, zero heap escapes
        buf := bufPool.Get().(*bytes.Buffer)
        defer bufPool.Put(buf)
        
        next.ServeHTTP(w, r)
    })
}
Bitboard attack generationrust
pub fn rook_attacks(sq: Square, occ: Bitboard) -> Bitboard {
    let mut attacks = Bitboard(0);
    // Magic bitboard lookup, O(1)
    let magic = ROOK_MAGICS[sq.0 as usize];
    let index = ((occ.0.wrapping_mul(magic.0)) >> magic.shift) as usize;
    ROOK_ATTACK_TABLE[sq.0 as usize][index]
}

Want to collaborate?

Open to interesting problems, open source contributions, and technical discussions. No recruiters, no agencies.