Install
A constructive and inclusive social network for software developers. With you every step of your journey.
- 10,504articles · 30d
- 1+ hour agolatest article
- Aug 14, 2026earliest in window
- 97%with images
- 292avg words
- software 9,737
- coding 9,525
- development 9,494
- engineering 9,470
- community 9,453
- inclusive 9,415
- ai 7,994
- webdev 5,745
- programming 5,145
- productivity 3,491
- python 2,959
- technology 2,876
- artificial intelligence 2,830
- devops 2,739
- security 2,736
- llm 2,288
- architecture 2,260
- agents 2,169
- tutorial 2,110
- javascript 1,927
- Software Dev. 9,704
- Science & Technology 9,579
- Computers & Electronics 7,435
- Business & Industrial 799
- Internet & Telecom 773
- Economy, Business & Finance 388
- Finance 333
- Arts, Culture, Entertainment & Media 244
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.
News
Kairos 1.0 — a schedule language where "3 business days before month-end" is an expression
14+ 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…...
Migrating from crontab: five everyday schedules, translated into Kairos
14+ min ago (670+ words) If you arrived from the Kairos 1.0 announcement, this is the hands-on one: take a crontab you already have and translate it. First, the honest part: if your jobs are plain fixed-time repeats, stay on cron. "Every hour", "3am daily" — there is…...
Bot Detection False Positives: How to Actually Test Accuracy
43+ 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…...
How I Turned the SAM.gov Public Bulk Dataset Into a Searchable Contractor Database
12+ min ago (718+ words) Working with public government datasets often sounds straightforward until you actually try to turn them into something useful. That was my experience with the SAM.gov public bulk dataset. The data is valuable because it contains a large amount of…...
My parser reported a parse error on a file that was never malformed
13+ 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…...
A deprecated value has to live somewhere, and widening the set was the wrong somewhere
13+ min ago (590+ words) A check refused a row I had just added. The row was a retired signing key, kept so that records signed under it can still be read. The check said: The set of accepted schemes has exactly one element, and…...
ESLint took 4.4s to lint Vue's core. oxlint took 0.24s. Then I turned on the type-aware rules.
37+ 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…...
How to change reasoning effort in Codex CLI: model_reasoning_effort values and one-off overrides
36+ min ago (430+ words) Codex feels slow, or it overthinks a trivial fix. The knob for that is reasoning effort, the Codex counterpart of extended thinking in Claude Code, controlled by the model_reasoning_effort key. In short: set model_reasoning_effort = "high" (or another value) in ~/.codex/config.toml…...
MySQL Overselling: Why SELECT Isn't Enough and How SELECT... FOR UPDATE Solves It
1+ hour, 19+ min ago (431+ words) Imagine you’re running an online store, there’s exactly one item left in stock. Two customers click... Tagged with database, mysql, backend, softwareengineering....
Data Substrate Versus Vector Db Rag
1+ hour, 10+ min ago (1246+ words) This week’s headlines highlight the rapid evolution of AI in China, with models like Qwen and DeepSeek pushing the frontier of capability. But as these models grow more sophisticated, the conversation around how data is stored, queried, and used as…...