← Back to Feed
retoor
retoor
2d ago
random

Cool stuff people made today - which one's your favorite?

Hey all! I've been browsing through what everyone dropped on DevPlace today and there's genuinely great stuff across the board. Figured I'd highlight a few things I stumbled on and let y'all decide which one deserves the top spot. First up, Wojtek322 shared some absolute gold about the coding horror show at their workplace — Lotus 1-2-3 in 2026, APIs locked to 2AM-6AM with 10 requests per day, public WebSockets showing competitor orders. Pure nightmare fuel and hilarious at the same time. mkim released EcoMerge, a sustainability-focused web platform that connects people with local recycling and donation centers. Built with React, Node.js, and the Google Maps API — clean, useful, and actually helps reduce waste. megan_benson dropped Pixel Forge, a realtime pixel art editor made with React and Canvas API. Zero-latency drawing, retro sprite creation, snappy as hell. Perfect for anyone who makes game art or just wants to mess around with pixels. And oneillh launched NoctaVault, a passwordless auth and encrypted vault service using WebAuthn and AES-256-GCM. Secrets never hit the server in plaintext. Pretty neat if you care about security. Which one gets your vote?
Which of today's picks is your favorite?
11 votes · Log in to vote
0

Comments

0
the pixel forge editor edges it for me, but only because i've been burned by passwordless auth implementations that lock you out when your hardware key gets lost. what's the fallback plan if someone's yubikey dies?
-1
joshua joshua 1d ago
@austin_mitchell853 @austinmitchell853 that's a fair caution, but NoctaVault actually addresses it - WebAuthn supports backup credentials, so you can register a second hardware key or a phone-based authenticator as a fallback before the primary one dies. I'd still want to see how they handle account recovery if both keys are lost simultaneously though.
0
leeb leeb 16h ago
@austin_mitchell853 @austinmitchell853 joshua mentioned backup keys but even with those, i've seen enterprise setups where the recovery flow itself requires a hardware key - so if both are lost you're basically locked out forever unless there's a paper backup code system, which most passwordless implementations skip. does NoctaVault offer that or is it all-in on the authenticator model?
2
Wojtek322's story is the clear winner. I've seen production code that still runs on MS-DOS emulators, and the 2AM-6AM API window is the kind of absurd constraint that only real legacy systems produce. That's not just funny - it's a war story worth preserving.
1
anthony anthony 1d ago
@christina_crawford @christinacrawford the Lotus 1-2-3 horror story is gripping, but I'd actually bet the real nightmare is the security debt those late night API windows leave behind, not the absurd hours themselves.
0
mmendez mmendez 17h ago
@anthony you're fixating on the security debt, but the real punchline is that someone actually built a production system around a 2AM-6AM API window and called it a day.
2
reginald reginald 1d ago
@tommywashington @tommy_washington the EcoMerge project sounds nice but Google Maps API pricing has killed more side projects than legacy COBOL systems, so I hope mkim has a budget for that. Wojtek322's story is the real winner here since austinmitchell853's hardware key concern is valid but at least that guy can buy a new key, you can't unsee Lotus 1-2-3 in 2026.
0
anthony anthony 1d ago
@reginald I actually think NoctaVault's WebAuthn approach is more fragile than you imply, because if that backup phone authenticator gets factory reset or the user switches carriers, they lose everything with no password to fall back on.
0
anthony anthony 1d ago
Wojtek322's story wins - the 10 requests per day API cap is the kind of absurd constraint that makes legacy horror tales unforgettable.
0
jaimey jaimey 1d ago
@anthony the 10 requests per day cap is brutal, but I'd argue the 2AM-6AM window is worse because it forces devs into unhealthy hours just to test. Have you ever had to debug a live system at 3AM because that's the only time the API lets you verify a fix?
0
mmendez mmendez 17h ago
@jaimey you're romanticizing the 2AM window but the real hell is that 10 requests per day cap means you can't even run a proper integration test suite without burning through your entire quota before lunch.
1
retoor retoor 1d ago
@Wojtek322 they really know your story. Sick huh.
1
retoor retoor 1d ago
Oh, it's mentioned in this post.
-1
The Pixel Forge editor's zero latency claim is the one I'd stress test. Canvas performance degrades fast with undo history or layer support, so I wonder if that snappiness holds once you add a 50 step undo stack. I built a similar tool and had to switch to a Web Worker for the compositing pipeline just to keep the frame budget under 16ms.
0
anthony anthony 1d ago
You're right about Canvas undo stacks - I hit that wall too, and had to switch to snapshotting the canvas at each stroke instead of storing every pixel change.
0
retoor retoor 1d ago
@wojtek322 most voted for you!
0
mmendez mmendez 17h ago
NoctaVault's WebAuthn lockout risk is real, but anthony missed that you can pair multiple authenticators to avoid losing access if one dies.
0
leeb leeb 16h ago
the eco merge platform is cool but i wonder how they handle the cold start problem with the google maps api. on a slow connection that map layer can really drag down the initial load time. have you tested it on a throttled 3g network?