Discover

Curated articles from sources across the web

4969 articles from 16 sources
Terraform data sources
D
DEV Community · Technology

Terraform data sources

data sources Data sources let you read existing infrastructure without managing it - useful for referencing resources created outside Terraform or in another state file. data "aws_vpc" "main" { filter { name = "tag:Name" values = ["main"] } } resource "aws_subnet" "app"...

Bartłomiej Danek
Read
Every AI Coding CLI in 2026: The Complete Map (30+ Tools Compared)
D
DEV Community · Technology

Every AI Coding CLI in 2026: The Complete Map (30+ Tools Compared)

A sequel to my most-read post. Six months later, the landscape exploded. Here's every tool that matters, what it costs, and what it actually does. The AI coding tool market went from "a few options" to "overwhelming" in about six months. New CLIs weekly. Pricing wars. Open-source alternatives riv...

David Van Assche (S.L)
Read
Terragrunt run-all
D
DEV Community · Technology

Terragrunt run-all

run-all Runs a Terraform command across all units in the current directory tree, respecting dependency order. cd environments/prod terragrunt run-all plan terragrunt run-all apply terragrunt run-all destroy # reverse order dependency-aware ordering environments/pr...

Bartłomiej Danek
Read
Terraform S3 backend with state locking
D
DEV Community · Technology

Terraform S3 backend with state locking

S3 backend with state locking S3 stores the state file, DynamoDB handles locking - prevents two apply runs from corrupting state simultaneously. setup terraform { backend "s3" { bucket = "my-tf-state" key = "prod/terraform.tfstate" region...

Bartłomiej Danek
Read
Parsing phpinfo() in Pure PHP — or, How to Diff Two Containers
D
DEV Community · Technology

Parsing phpinfo() in Pure PHP — or, How to Diff Two Containers

Parsing phpinfo() in Pure PHP — or, How to Diff Two Containers phpinfo() is the most-used PHP debugging tool on earth, and its output format is hostile to every reasonable thing you'd want to do with it. This is a small CLI that parses it into JSON so you can jq it, grep it, and — the re...

SEN LLC
Read
Why Your Kubernetes Pod Keeps Getting Killed — And It's Not an OOMKill
D
DEV Community · Technology

Why Your Kubernetes Pod Keeps Getting Killed — And It's Not an OOMKill

A real-world debugging guide: from mysterious pod terminations to discovering a hidden kernel memory leak consuming 55% of node RAM. The Incident It was a regular morning when we noticed something off. One of our production services — running on an EKS cluster — had been terminated an...

Shreyans Sonthalia
Read
The Download: NASA’s nuclear spacecraft and unveiling our AI 10
M
MIT Technology Review · Science

The Download: NASA’s nuclear spacecraft and unveiling our AI 10

This is today’s edition of The Download, our weekday newsletter that provides a daily dose of what’s going on in the world of technology. NASA is building the first nuclear reactor-powered interplanetary spacecraft. How will it work?  Just before Artemis II began its historic slings...

Thomas Macaulay
Read
H
Hacker News · Technology

Retrofitting JIT Compilers into C Interpreters

Article URL: https://tratt.net/laurie/blog/2026/retrofitting_jit_compilers_into_c_interpreters.html Comments URL: https://news.ycombinator.com/item?id=47777897 Points: 33 # Comments: 9

ltratt
Read
Norwegian group in talks to buy former Liberty Steel works in South Yorkshire
T
The Guardian · World

Norwegian group in talks to buy former Liberty Steel works in South Yorkshire

UK official receiver understood to prefer Blastr as buyer for SSUK’s electric arc furnace in Rotherham and site in StocksbridgeBusiness live – latest updatesUK officials have entered exclusive talks with a Norwegian startup to buy the former Liberty Steel works in South Yorkshire, in a significant s...

Jasper Jolly
Read
Microsoft faces fresh Windows Recall security concerns
T
The Verge · Technology

Microsoft faces fresh Windows Recall security concerns

When Microsoft tried to launch Recall, an AI-powered Windows feature that screenshots most of what you do on your PC, it was labeled a "disaster" for cybersecurity and a "privacy nightmare." After the backlash and a year-long delay to redesign and secure Recall, it's once again facing security and p...

Tom Warren
Read

Reading List