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.

02 / proof of work

Trusted by the marketplace

marketplace achievement
1400+

Over 1,400 verified reviews earned across a major freelance marketplace — built one delivered project at a time, with a near-perfect rating and clients who keep coming back.

4.97 average · 1,400+ reviews
live

1,400+

verified reviews

live

4.97 / 5

avg. rating

live

38%

repeat clients

live

99.2%

on-time delivery

Instant delivery - the deal was done in 2 minutes.
Marketplace client
Game-side activation failed at first, but seller explained everything and helped me finish it.
Marketplace client
Best price I found today, and communication was clear and respectful.
Marketplace client

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.