currently shippingSafeLoot v2

Timur Khabosha

> Full-stack Developer

I design and build reliable web products end to end - from database schemas and APIs to interfaces people actually trust. Obsessed with performance, clean architecture, and shipping work that holds up under real traffic.

01 / selected work

Projects I've built

featuredproject_01active development

SafeLoot

SafeLoot is an ambitious MVP of a digital goods marketplace, currently in active development. The core product focus is trust: escrow-protected transactions and a dynamic rating model that adapts as users complete deals.

  • Escrow-first deal lifecycle: created -> funded -> delivered -> released/refunded
  • Dynamic reputation system recalculates buyer and seller ratings after each completed or disputed deal
  • MVP scope is intentionally focused on transaction safety and trust mechanics before public scale
  • Current stage: private build with ongoing iteration on edge cases and automated tests
~/safeloot/escrow.ts
type EscrowStatus = "created" | "funded" | "delivered" | "released" | "refunded"

export async function releaseEscrow(dealId: string, buyerId: string) {
  return prisma.$transaction(async (tx) => {
    const deal = await tx.deal.findUniqueOrThrow({ where: { id: dealId } })

    if (deal.status !== "delivered") throw new Error("Deal is not delivered yet")
    if (deal.buyerId !== buyerId) throw new Error("Only buyer can release funds")

    await tx.escrow.update({
      where: { dealId },
      data: { status: "released", releasedAt: new Date() },
    })

    return tx.wallet.update({
      where: { userId: deal.sellerId },
      data: { balance: { increment: deal.amount } },
    })
  })
}
Next.js
Prisma
Tailwind CSS

project_02

More coming soon

Currently heads-down on SafeLoot v2. New case studies land here next.

project_03

Client work

Select freelance engagements - full-stack builds, performance audits, rescue missions.

03 / stack

Tools I reach for

#frontend
  • TypeScript
  • React
  • Next.js
  • Tailwind CSS
  • Zustand
#backend
  • Node.js
  • tRPC
  • Prisma
  • PostgreSQL
  • Redis
#infra
  • Vercel
  • Docker
  • AWS
  • Cloudflare
  • GitHub Actions
#tooling
  • Stripe
  • Resend
  • Sentry
  • Playwright
  • Vitest

04 / contact

Have something worth building?

I take on a small number of projects at a time so I can go deep. If your idea needs a developer who ships - let's talk.