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
Live Experiments
View allProjects
View all
Live
AI Conversation Interface
Experimental voice-first interface for human-AI collaboration on creative tasks.
Live
Generative Art Engine
Procedural art system creating unique compositions from algorithmic rules.
Beta
Real-time Dashboard
Dynamic visualization framework for streaming data with adaptive layouts.
Dev
Future Journal
AI-assisted reflection prompts with predictive journaling features.
Changelog
View allJan 28
Feature
Neural Style Transfer now supports batch processing
Upload multiple images and process them all at once with consistent style parameters.
Jan 22
Post
Vibe Coding: When the Process Becomes the Product
Exploring what happens when intuition drives technical decisions.
Jan 15
Update
Color Palette API v2.0 released
New mood parameters, accessibility scores, and export formats.
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"]