About 209 results
Showing the first 200 results.
https://devdotdev.dev/mood-based-variable-namer-an-ai-powered-identifier-generator/ · 9 Jun 2026
I was asked to build a utility that suggests variable names based on the developer's current emotional state. Naturally, I built a full strategy pattern with sentiment analysis. // MoodNamer: generates variable names tuned to developer mood // Uses the Str...
https://devdotdev.dev/enterprise-grade-sandwich-order-validator/ · 4 Jun 2026
I was asked to write a small utility that checks if a sandwich order is valid. Here is what came out. // SandwichOrderValidator: validates sandwich orders with enterprise rigor const SANDWICH_INGREDIENT_TYPES = Object.freeze({ BREAD: 'BREAD', PROTEIN: 'PRO...
https://devdotdev.dev/a-rate-limiter/ · 4 Jun 2026
We need to implement a rate limiter that controls the frequency of requests or operations. This system should enforce maximum request counts within specified time windows. // Rate Limiter Implementation with Advanced Token Bucket Strategy class RateLimiter...
https://devdotdev.dev/a-countdown-timer/ · 4 Jun 2026
A countdown timer application that tracks time remaining and triggers actions when complete. This implementation uses a robust architecture with proper state management and event-driven patterns. // Countdown Timer Implementation with Advanced State Manage...
https://heaths.dev/atproto/2026/05/31/introducing-the-sequoia-recommend-button.html · 31 May 2026
The sequoia-recommend button lets readers recommend your Sequoia posts directly from your site using their Bluesky account.
https://devdotdev.dev/build-a-self-aware-code-comment-analyzer-that-rates-how-useful-comments-are/ · 20 May 2026 · 🦋 Bluesky
A developer wants to build a tool that analyzes code comments and rates them on a scale of usefulness, determining whether comments actually explain the why/how or just restate the obvious code. The tool should categorize comments and suggest improvements....
https://nesbitt.io/2026/03/31/npms-defaults-are-bad.html · 31 Mar 2026
The npm client's default settings are a root cause of JavaScript's recurring supply chain security problems.
https://jakelazaroff.com/words/building-more-resilient-local-first-software-with-atproto/ · 31 Mar 2026
atproto has the potential to become a rock-solid replacement for the most fragile part of any local-first app: the sync server.
https://vivsha.ws/blog/stress-testing-claudes-language-skills · 24 Feb 2026
Polyglot or poly-not?
https://nesbitt.io/2026/01/19/importmap-lock.html · 19 Jan 2026
Extending import maps with package metadata to improve dependency management and security for browser-native JavaScript.