Morning.dev
My Feed Popular
Login
Hacker News • 2026-07-31 01:21

Show HN: Widen – Open-source Mac Postgres GUI with local or cloud text-to-SQL

Comments

0 0
1m read
DEV Community • 2026-07-31 01:12

Solon Cache: Three Annotations, One Interface, and a Tags Trick You'll Use Every Day

I've been writing Solon for a while now, and one thing that surprised me early on was how clean the caching layer is. Not because it does anything revolutionary — it doesn't — but because it stays out of your way while still handling the edge cases you actually hit in production. Let me walk through what I've learned. The Three Annotations Solon gives you exactly three annotations for...

0 0
5m read
DEV Community • 2026-07-31 01:11

How to Generate Short Videos from Claude.ai with a Seedance MCP Connector

Sometimes the fastest way to prototype a video idea is not to open a separate generation dashboard, but to let your assistant create and poll the task while you stay in the conversation. This guide shows how the Seedance MCP connector works inside Claude.ai, based on the Ace Data Cloud documentation. The workflow is practical: add one remote MCP URL, authorize with OAuth, ask Claude to list avail...

0 0
4m read
Experienced Devs • 2026-07-31 01:02

How to influence company style guide without much authority?

I'm a senior engineer at my company This company's "coding standards" document is... not exactly au courant Couple random (c++) examples off the top of my head- banning features like auto and using, enforcing 1 single return in all functions Anyone have experience bringing about change to directives like these? Anyone in charge of their company's style guides and could share what sorts o...

0 0
1m read
DEV Community • 2026-07-31 01:02

Your Agent's Deadline Is a Correctness Test, Not an SLO

Ask an engineer to list their agent's failure modes and you'll hear about hallucinations, wrong tool calls, and bad JSON. Ask about time and you get a shrug. Yet the single most common thing a production agent does when it goes wrong is not fail loudly — it just takes too long. It loops. It retries a flaky tool. It waits on a model call that never streams a first token. And your eval suite, which ...

0 0
5m read
Hacker News • 2026-07-31 01:02

Show HN: Great Spectations, the Spec Checker

Comments

0 0
1m read
Experienced Devs • 2026-07-31 00:56

Is anyone truly fulfilled by this career?

I go through days of feeling grateful for the career I have, feeling motivated and looking forward to the work, and then I go through long spells where I just can’t stand it and feel trapped. Days where I truly don’t give a shit about any of it and would have no problem rubber stamping PR’s and just “getting it done”. This isn’t about AI or anything (if anything AI has made it easier to just menta...

0 0
1m read
DEV Community • 2026-07-31 00:56

A league season is not a long tournament: four product bugs my test suite could never catch

I built a football prediction game for the 2026 World Cup. A month long, 104 matches, one winner at the end. It worked, people played, nothing caught fire. Then I pointed the same app at a domestic league: Ligue 1, 306 matches, 34 matchdays, nine months. Same data model, same scoring, same templates. Nothing crashed. Nothing threw. Every test stayed green. And almost every product decision insid...

0 0
5m read
DEV Community • 2026-07-31 00:52

Why I Validate Angular Compatibility Using the Published npm Package (Not the Source Code)

I just published a new article on a lesson I learned while maintaining my open-source Angular library. I used to validate compatibility against my workspace and dist/, but eventually realized that wasn't what developers actually install from npm. That led me to redesign the CI pipeline to validate the published package across multiple Angular versions instead. The article covers: Why testing ...

0 0
1m read
Experienced Devs • 2026-07-31 00:51

Too much architecting and not enough iterating

How does your team and org handle more time spent on architecting or design a new system not enough time building and iterating. We’ve planned to destination multiple times wrote multiple design documents with multiple waypoint how do you know if it’s sufficient to build and iterate with? How do you approach building green field projects that are adaptable as you go? submitted by ...

0 0
1m read
DEV Community • 2026-07-31 00:51

How I Automated Ubuntu Server Hardening with One Script

Securing and Automating a Cloud Server The first time I spun up a cloud server, I thought the hard part was over. It wasn't. The server was open to the world: root login enabled, port 22 broadcasting itself to every scanner on the internet, no firewall, and no certificate. I checked /var/log/auth.log a few hours later and found hundreds of failed login attempts. That was the moment I u...

0 0
3m read
DEV Community • 2026-07-31 00:50

PIVOT Explained — From Paper to Working Code in 10 Minutes

You enabled sparse attention. Your model still chokes at 128K tokens. The indexer is why — and PIVOT fixes it without touching your weights. TL;DR Sparse attention's indexer scores all L tokens per query → still O(L²) PIVOT groups nearby queries (which select ~90% overlapping top-k tokens), runs one proxy scan per group → O(L²/g) Result: 4× indexer speedup, 1.6× end-to-end latency red...

0 0
4m read
DEV Community • 2026-07-31 00:48

The $26 Billion Leak: Why Frameworks Are Making Your Codebase Rot (and How Hexagonal Isolation Fixes It)

According to a 2024 vFunction survey, over 50% of companies watch more than a quarter of their entire IT budget vanish into technical debt. This isn't happening because developers are bad at writing code. It's happening because our architectural boundaries are eroding. We're letting business rules bleed into database models, and HTTP controllers bleed into core logic. The primary culprit? Modern...

0 0
7m read
DEV Community • 2026-07-31 00:38

When a Successful Payment Still Couldn't Schedule a Zoom Meeting

This is a submission for DEV's Summer Bug Smash: Smash Stories powered by Sentry. A payment webhook sounds simple until a successful payment doesn't actually result in the service the customer paid for. That was one of the more interesting bugs I encountered while building The Listening Ear, an appointment and online consultation platform. The requirement was straightforward: A customer pays ...

0 0
8m read
DEV Community • 2026-07-31 00:34

Restaurant Health Inspection Data by City: APIs and Traps

Most large US cities publish restaurant inspections through the same Socrata Open Data API. That uniformity is a trap. The transport is identical; the column names, the score polarity, the row granularity, and the update cadence are not. This guide lists seven municipal datasets and the specific failure modes I hit while querying every one of them live on 2026-07-20. Every number, column name, an...

0 0
11m read
Reviving the Tessel 2 - The Boards in the Drawer
Posts on LINQ to Fail • 2026-07-31 00:30

Reviving the Tessel 2 - The Boards in the Drawer

When I first joined Microsoft, I was doing a lot with JavaScript and hacking around a bit with IoT. Because of this, one of my colleagues sent me a box of Tessel 2 boards and sensors they had lying around. I had never heard of Tessel before, but I was intrigued by the idea of a microcontroller that could be programmed in JavaScript (I’d dabbled a bit with that using NodeMCU in the past). I d...

0 0
5m read
🚤OS July 2026 Recap: From Being Intimidated by GitHub Actions to Building My Own CI Workflows
DEV Community • 2026-07-31 00:29

🚤OS July 2026 Recap: From Being Intimidated by GitHub Actions to Building My Own CI Workflows

When I first started contributing to open source, GitHub Actions felt like a black box. Seeing a failed workflow on my pull requests was intimidating because I didn't really understand what was happening behind the scenes. Well, this month, I decided to change that. What I Worked On I implemented GitHub Actions across three of my project repos. My main focus was: Adding Markdownl...

0 0
1m read
DEV Community • 2026-07-31 00:25

Image verification, one layer below admission

Every admission webhook you rely on has an escape hatch. Nothing scandalous about that, it is just how Kubernetes wires them up. A CNCF post on July 30 pitches a way out: move signature and attestation checking out of the API server and into the container runtime itself, via a Node Resource Interface plugin. The pitch, in one paragraph. The Supply Chain NRI Plugin hooks CreateContainer events on ...

0 0
2m read
DEV Community • 2026-07-31 00:24

CISA KEV catalog: a working sysadmin's guide to actually using it

Most enterprise teams know the CISA Known Exploited Vulnerabilities catalog the same way they know the weather: a headline scrolls past ("CISA adds three vulnerabilities to KEV catalog"), someone forwards it, and everyone nods. That is a waste of the single most operationally useful list in vulnerability management. The KEV is small, machine-readable, updated near-daily, and every entry on it has ...

0 0
11m read
DEV Community • 2026-07-31 00:23

Stopping Runaway AI Loops: Implementing Enterprise FinOps and Observability with PolicyAware

Autonomous agents don't just fail loudly—they fail expensively. A single misconfigured retry loop between an agent and an LLM can generate thousands of redundant tool calls and API requests before anyone notices, turning a minor logic bug into a five-figure cloud bill. PolicyAware is built to be the operational safety net that catches this class of failure before it reaches your finance team's das...

0 0
6m read
Previous Next

Showing page 319 of 1682

Previous 319 Next