Website profile

@Thepracticaldev

A constructive and inclusive social network for software developers. With you every step of your journey.

  • 10,534articles · 30d
  • 30+ min agolatest article
  • Aug 14, 2026earliest in window
  • 97%with images
  • 292avg words
articles per day
Categories
  • Software Dev. 9,732
  • Science & Technology 9,607
  • Computers & Electronics 7,464
  • Business & Industrial 802
  • Internet & Telecom 771
  • Economy, Business & Finance 390
  • Finance 334
  • Arts, Culture, Entertainment & Media 242

Please confirm you are human

This browser or connection looks automated. Press and continuously hold the control for 3 seconds to enable Google-hosted web results and, when separately allowed, AI-assisted answers.

A successful check enables 100 search requests. Interactive access does not authorize scraping, systematic collection, or reuse of search output.

Hold with a pointer, or hold Space or Enter.

News

DEV Community
dev.to > antonioprosperi2svg > inside-beeladybug-a-deep-dive-into-visual-debugging-obb-collision-tracking-and-f2-overlay-14fk

Inside BeeLadybug 🐞: A deep dive into visual debugging, OBB collision tracking, and F2 overlay architecture for the CodePen Challenge! Check out the full Mermaid flowchart and let me know your thoughts 🚀

46+ min ago   (15+ words) Inside BeeLadybug: Visual Logic & Collision Debugging (CodePen Challenge)... Tagged with devchallenge, frontend, javascript....

DEV Community
dev.to > anton_brilliantov > the-env-catalog-is-a-repository-artifact-42ca

The Env Catalog Is a Repository Artifact

2+ hour, 9+ min ago   (901+ words) One service reads 59 environment variables. None of them are documented by hand: a generator writes the catalog, CI runs the same generator with --check, and any drift between the file and the code fails the build. Tagged with go, devops,…...

DEV Community
dev.to > anton_brilliantov > the-manifest-is-the-only-declaration-32cn

The Manifest Is the Only Declaration

2+ hour, 9+ min ago   (884+ words) Daemons, resources, migrations and schedules are declared once in the service manifest. Everything the environment knows about the service - down to the name of every environment variable - follows from that one declaration. What isn't declared doesn't exist. Tagged with go,…...

DEV Community
dev.to > oani > a-z-of-how-the-web-works-1-introduction-1ghb

A-Z of how the web works: #1 Introduction

2+ hour, 12+ min ago   (1546+ words) Two simple words. You probably don't think twice before saying them. In fact, there's a good chance you are online right now. But what does "online" actually mean? Being online has become so normal that we've stopped noticing how remarkable…...

DEV Community
dev.to > devstackhub > the-bug-that-only-happened-on-fridays-38a7

🐛 The Bug That Only Happened on Fridays 📅😱

2+ hour, 42+ min ago   (535+ words) Every Friday afternoon, our checkout service started throwing intermittent 500s. Not all requests, maybe 1 in 50. Not every Friday either. Just most Fridays, starting sometime after 2 pm, and always gone by Monday morning. 😩 The error was unhelpful in the way only database…...

DEV Community
dev.to > thomijasir > i-built-a-secrets-manager-because-sharing-env-files-at-work-was-painful-1eh9

I built a secrets manager because sharing.env files at work was painful!

3+ hour, 29+ min ago   (334+ words) Working in the financial industry means dealing with strict security policies. That is understandable when the systems you work on handle sensitive information, but those policies can also make simple development tasks surprisingly difficult. One example was how we shared....

DEV Community
dev.to > azathothx > kairos-10-a-schedule-language-where-3-business-days-before-month-end-is-an-expression-87i

Kairos 1.0 — a schedule language where "3 business days before month-end" is an expression

3+ hour, 24+ min ago   (268+ words) Today I tagged 1.0 of Kairos, a schedule definition language I've been building — a small DSL where schedules like "3 business days before month-end" or "payday on the 25th, previous business day if it's a holiday" are single expressions. cron can say "the…...

DEV Community
dev.to > webdecoy > bot-detection-false-positives-how-to-actually-test-accuracy-d1o

Bot Detection False Positives: How to Actually Test Accuracy

3+ hour, 53+ min ago   (1443+ words) The fastest way to lose confidence in bot protection is not to miss a bot. It is to block a real customer. A missed scraper costs bandwidth or content. A blocked customer costs a sale, a support escalation, and trust…...

DEV Community
dev.to > mahirhir > my-parser-reported-a-parse-error-on-a-file-that-was-never-malformed-3agi

My parser reported a parse error on a file that was never malformed

3+ hour, 23+ min ago   (554+ words) A build step that reads requirement tables out of a document reported this, every run: reason=parse has an obvious reading. Either the document is malformed or the parser is broken. A person following that reason code goes and looks…...

DEV Community
dev.to > remdore > eslint-took-44s-to-lint-vues-core-oxlint-took-024s-then-i-turned-on-the-type-aware-rules-1fao

ESLint took 4.4s to lint Vue's core. oxlint took 0.24s. Then I turned on the type-aware rules.

3+ hour, 47+ min ago   (515+ words) ESLint took 4.4 seconds to lint 445 TypeScript files. oxlint took 0.24. Turn on the type-aware rules that most projects actually want and ESLint climbs to 12 seconds, while oxlint, doing the type-aware pass too, finishes in under one. I went in expecting to…...