
Emergent | Fullstack App
A product of emergent.sh
@Am3D1eg · X
TCX.LAB A free analytics library for your workouts: drop files, compare them and track your progress step by step Try here:
The full gallery
Tech stack
62 projects

A product of emergent.sh
@Am3D1eg · X
TCX.LAB A free analytics library for your workouts: drop files, compare them and track your progress step by step Try here:


A product of emergent.sh
@WAngaama42602 · X
World Rules down here


AI faceless video generator that writes, voices, and auto-posts videos to TikTok and YouTube.
vijayabhaskar_j · Product Hunt
PassiveShorts AI Faceless Video Generator for TikTok & YouTube

Create and manage databases supporting PostgreSQL, MySQL, Redis, and ClickHouse with serverless infrastructure.
@LayerbaseDB · X
We make all databases accessible to everyone from hardened engineers to vive coders with a free tier so generous that most people never need to upgrade

A dating app without games, ghosting, or performative behavior.
@itumelengadam · X
Check out what I just built with Lovable!

Convert, format, encode, and generate useful outputs locally in your browser. Files are not uploaded by the tools.
@easyissimple · X

A new kind of social space for everyone. Send Stars. Form Constellations. No feed. No scroll. Just real connections.
@rahulvijay81 · X
I’m currently building Constellation ✦ a social network for connecting with random strangers around the world. Still early, so I’d love some feedback, advice, or investor interest.

Upload your resume for AI-powered optimization and tailor it to specific job descriptions.
@Abhidwivedimany · X
We were doing quite well on our costs, startups are supposed to burn some cash - so we launched a free resume builder: If the platform asks you for money to build resume, my engineering team (claude code and me) are hearing it from me.

Play a browser game instantly with no wallet or setup.
@NormiePepeNFT · X
Want to have some fun? 🐸🎮 Try the NOPE game — built entirely with Claude Code. No wallet connection required. No complicated setup. Just jump in and play. Have some fun. Be NOPE. 💚

Make music with webcam hand gestures—chords, harmony, theremin pitch, no signup needed.
lisheng3698 · V2EX
我把摄像头变成了乐器:从手势识别到 Web Audio,分享 5 个真正踩过的坑 最近做了一个有点不一样的浏览器小项目:用摄像头识别双手动作,再把手的位置和姿势映射成和弦、音高、音量和音色。 不需要安装软件,也不需要麦克风。打开网页、允许摄像头后,就可以隔空演奏。 项目地址:[GestureSynth.me]( https://gesturesynth.me/) 建议使用最新版 Chrome 或 Edge 。摄像头画面只在本地处理,不会上传。 ## 真正难的不是“识别到手” 最开始我以为,只要 MediaPipe 能返回手部关键点,剩下的事情就是把坐标转换成音符。 实际做下来发现:**识别出一只手很容易,让它变成一个“能演奏”的控制器才难。** 摄像头每一帧都会返回一组手部关键点,但这些坐标会轻微抖动,偶尔还会丢失。如果直接把原始坐标连接到音高或者音量,听起来会非常不稳定。 最后形成的处理链路大致是: ```text 摄像头 → 手部关键点识别 → 提取手掌位置、距离和手势 → 平滑、死区和状态保持 → 映