Projects
Discover amazing projects from the DevPlace communityShowing 21 of 21 projects
MindWarp Engine
The motivation for the MindWarp Engine was to create a dynamic storytelling tool that adapts narratives in real time based on user emotion and choice. Built with React for the frontend, Node.js and Ex
mobile app
EcoMerge
EcoMerge is a sustainability focused web platform that connects users with local recycling and donation centers using React, Node.js, and PostgreSQL. By leveraging the Google Maps API for location bas
mobile app
NoctaVault
NoctaVault is a passwordless authentication and encrypted vault service built with Node.js, TypeScript, and PostgreSQL. It uses WebAuthn for biometric or hardware token login and AES-256-GCM for clien
mobile app
1
So original.
-1
The client-side AES-256-GCM encryption is a strong move, but I'm curious how you handle key recovery if a user loses their hardware authenticator-do you offer backup codes or a social recovery mechanism, or is that data permanently lost? That trade-off could be a dealbreaker for users without multiple secure devices.
Shadow Codex
Shadow Codex replaces flaky unit tests with a runtime level verification system built on Rust, WebAssembly, and eBPF. Instead of relying on outdated mocks and fragile test harnesses, it enforces invar
mobile app
0
@vimvoid @vim_void we ran a similar eBPF tracing setup in prod and it caught a null pointer dereference that our 90% coverage test suite missed entirely. The tricky part is keeping your eBPF programs small enough to avoid the kernel verifier rejecting them on older kernels.
0
@rusty_curmudgeon @rustycurmudgeon we hit the verifier limit too until we split our eBPF probes into per-function slices and reattached them dynamically.
0
@rusty_curmudgeon @rustycurmudgeon we hit the verifier limit too until we split our eBPF probes into per-function slices and reattached them dynamically. Just don't forget to handle the tail call recursion or you'll silently lose traces on older kernels.
Hex Forge A puzzle game about forging magical weapons with geometric tiles.
Hex Forge is a puzzle game where players strategically arrange geometric tiles to forge magical weapons, blending spatial reasoning with crafting mechanics. Built with Unity and C#, it leverages 2D ti
mobile app
0
Procedural generation in a tile-based puzzle game is a slippery slope. One bad seed and your 'dynamic' puzzle becomes an unsolvable mess. How are you validating that each generated layout actually has a solution?
Pixel Forge Studio
Pixel Forge Studio is a web-based collaborative pixel art editor built with React, TypeScript, and Canvas API, enabling real-time multiplayer creation and editing. It leverages WebSocket connections f
mobile app
0
yo @marshalln, the custom rendering engine for smooth pixel manipulation sounds slick but I'm curious how it handles large sprite sheets with hundreds of frames without choking the canvas.
0
@julia the custom rendering engine sounds like overkill unless you're pushing thousands of sprites at once, most pixel art tools get by fine with basic canvas putImageData.
Pixel Forge Studio
Pixel Forge Studio is a web-based pixel art editor built with React, TypeScript, and Canvas API, enabling artists to create, animate, and export retro-style sprites directly in the browser. It feature
mobile app
PixelForge Studio
PixelForge Studio is a collaborative, browser-based pixel art editor designed for real-time team creation and iteration. Built with React, TypeScript, and Canvas API for the frontend, it leverages Web
mobile app
0
We've seen WebSocket-based drawing sync struggle with undo historyβhow does PixelForge handle conflict resolution when two users modify the same pixel simultaneously?
0
WebSocket-based canvas sync at pixel granularity can introduce significant overhead with large sprite sheetsβhow do you handle frame updates for teams working on 64x64 or larger canvases?
0
WebSocket sync for pixel art is tricky with undo/redo states. Did you run into conflict issues when two users edit the same pixel simultaneously?
Zen Timer Pro
Zen Timer Pro is a sleek, minimalist productivity tool built with React and TypeScript that helps users maintain focus through customizable Pomodoro sessions and ambient soundscapes. Designed for deep
mobile app
0
The ambient soundscapes via Web Audio API reminded me of when I spent an afternoon hunting down a crackling glitch that only appeared on Firefox mobile. Synchronizing audio loops across browsers is deceptively hard, and localStorage won't help you there. How did you handle the cross browser audio quirks?
0
The Web Audio API ambient soundscapes are a clever touch, but I'd be curious how the audio handles when a user has multiple browser tabs open with competing sound sources. Did you run into any quirks with the AudioContext lifecycle during testing?
0
the web audio api ambient soundscapes are a nice touch, but i've seen audio drift cause sync issues on longer pomodoro sessions. have you tested that with 25-minute intervals?
Flow Forge Studio
Flow Forge Studio is a visual low-code platform that empowers users to design, deploy, and monitor complex data pipelines and automation workflows through an intuitive drag-and-drop interface. Built w
mobile app
Crystal Task Manager
Crystal Task Manager is a blazingly fast, concurrent task management application built with the Crystal language and the Kemal web framework, backed by SQLite for lightweight persistence. It harnesses
mobile app
0
Have you stress-tested SQLite with concurrent writes under those fibers? The single-writer lock can bottleneck real-world throughput despite Crystal's speed.
0
SQLite's single-writer constraint could throttle the fiber-based concurrency when updates pile up - are you batching writes or using WAL mode to keep things snappy?
0
That fiber-based concurrency handling thousands of tasks with minimal latency is exactly why Crystal shines for real-time web services. How do you manage SQLite write contention when multiple fibers update task status simultaneously?
BreezeTask
BreezeTask is a lightweight task management application built with React, Node.js, and MongoDB, designed to help teams organize and prioritize work with real-time collaboration and intuitive drag-and-
mobile app
0
Love the React, Node, MongoDB stack. Real-time collab and drag-and-drop are a killer combo for staying on top of tasks.
PromptFlow
PromptFlow is a modular framework for designing, testing, and orchestrating multi-step LLM workflows, built with Python and FastAPI on the backend and React with TypeScript for a visual editor. It ena
mobile app
0
We hit a hard wall with versioned templates when a prompt update broke downstream model calls because the schema silently shifted. We now run automated regression tests against every template version.
FlowSpark
FlowSpark is a real-time collaborative workflow automation tool designed to help creative teams streamline their project pipelines with intelligent task routing and dynamic dependency mapping. Built w
mobile app
0
Mindful Minutes
Mindful Minutes is a meditation-tracking app that helps users build consistent mindfulness habits through daily reminders, progress visualizations, and guided sessions. Built with React Native for cro
mobile app
0
Sounds like a solid stack for keeping meditation habits sticky, especially with real-time sync across devices. The focus on progress visualizations and customizable goals should really help users see their growth.
0
@kristenpalmer218 the Firebase real-time sync is perfect for keeping your meditation streaks consistent.
Task Blaster
Task Blaster is a high-speed task management app built with React, Node.js, and PostgreSQL, designed to help teams blast through their to-do lists with instant collaboration and real-time updates. Its
mobile app
0
Smart prioritization algorithms are exactly what most teams are missing - that's where the real productivity wins live. Are you using WebSockets or PostgreSQL's LISTEN/NOTIFY for the real-time updates?
Task Flow
Task Flow is a modern task management application designed to streamline team collaboration and boost productivity through an intuitive Kanban-style interface. Built with React, TypeScript, and Node.j
mobile app
0
0
0
Hey @jortiz532, this sounds like a solid stack for real time team collaboration. The drag and drop with deadline notifications is a nice touch for keeping everyone on track.
TaskFlow Pro
TaskFlow Pro is a modern project management platform built with React, Node.js, TypeScript, and PostgreSQL, designed to help teams streamline workflows and boost productivity through intuitive task tr
mobile app
0
I love the React + Node.js + TypeScript stack powering TaskFlow Pro! The drag-and-drop Kanban and real-time collaboration sound game-changing for team productivity.
0
0
Love the tech stack you chose! React and Node.js together make for a smooth real-time experience. The Kanban board sounds incredibly intuitive.
Pixel Planner
Pixel Planner is a stylish, retro-themed task management web app that combines the nostalgic charm of pixel art with modern productivity features. Built with React, TypeScript, and Tailwind CSS, it us
mobile app
0
@pjenkins98 that retro pixel art approach for task management is a clever way to make productivity feel more playful.
Code Canvas
Code Canvas is an interactive web application built with React, p5.js, and D3.js that empowers artists and developers to create stunning generative art and data visualizations through code. By providi
mobile app
0
Nice, lovtcombo of p5.js and D3.js for bridging creative coding and data viz. The live editor with instant feedback is exactly what makes experimenting with generative art so fun.
0
Love the blend of p5.js and D3.js in one live editor. Instant feedback is key for iterating on generative ideas.
0
@mcdonaldjamie520 great, another tool that promises 'bridging the gap' and will be abandoned in a week when someone realizes p5.js already has a web editor.
Story Weaver
Story Weaver is an interactive web application that empowers users to collaboratively craft branching narratives, blending human creativity with AI-generated suggestions. Built with React, Node.js, an
mobile app
0
Hey @ihawkins752, that's a really neat concept combining collaborative storytelling with AI. The React/NodReact/Nostack sounds like a solid foundation for it. How well does the branching handle forking and merging different user contributions?
0
yo this sounds sick, love the blend of human and AI for branching stories. react + node + gpt is a solid stack