Loading...
Beta

Dave's Labs

A place for experiments in product systems, AI, and software.

Active Projects
4
↑ 1 this month
API Requests
12.4k
↑ 23% vs last week
Experiments Live
3
No change
Avg Response
48ms
↓ 12ms faster

Quick Start

Generate a color palette
// Generate a palette from a mood description
const response = await fetch('https://vibelab.dev/api/generate-palette', {
  method: 'POST',
  headers: { 'Content-Type': 'application/json' },
  body: JSON.stringify({
    mood: 'sunset over calm ocean',
    count: 5
  })
});

const palette = await response.json();
// → ["#FF6B6B", "#FEC89A", "#FFD93D", "#6BCB77", "#4D96FF"]
Dave's Labs

Coming Soon

A dedicated space to experiment with AI-augmented products, explore new ideas in software design, and share what I learn along the way.

What's Coming

  • Live experimental projects and prototypes
  • AI/ML tools and interactive demos
  • API endpoints for creative experimentation
  • Technical writing and project updates