Morning.dev
My Feed Popular
Login
John Oliver on AI chatbots: ‘Behind that machine is a corporation trying to extract a monthly fee from you’ - The Last Week Tonight host dug into the many issues with AI chatbots released on the public without proper safety guardrails, from sycophancy to sexualizing children
newest submissions : multi • 2026-04-28 17:45

John Oliver on AI chatbots: ‘Behind that machine is a corporation trying to extract a monthly fee from you’ - The Last Week Tonight host dug into the many issues with AI chatbots released on the public without proper safety guardrails, from sycophancy to sexualizing children

submitted by /u/Just-Grocery-2229 to r/technology [link] [comments]

0 0
1m read
Experienced Devs • 2026-04-28 17:44

Codebase has hundreds of isinstance() and getattr(). How to convince colleague to fix?

codebase is littered with isinstance() and getattr(). I hate both and to me these are hallmarks of LLM generated code + not reviewing the code. getattr() to me should only be used for dynamically generated attributes/attributes whose names you don’t know in advance which is an extremely rare case. you could just do x = inst.attribute for 99% of cases. isinstance is generally atrocious code. like y...

0 0
2m read
DEV Community • 2026-04-28 17:44

Async AutoFill With Caching: Filling Form Fields From External APIs at Runtime

Part 20 of the series: "Extending bpmn-io Form-JS Beyond Its Limits" A form has a "Related Ticket" dropdown. When the user selects a ticket, five fields in the current form should auto-populate with data from that ticket: the assignee, the due date, the priority, the category, and a free-text description. The data lives in an external API. The fields that should be populated depend on configur...

0 0
19m read
The Internet Still Works: SmugMug Powers Online Photography
newest submissions : multi • 2026-04-28 17:43

The Internet Still Works: SmugMug Powers Online Photography

submitted by /u/StraightedgexLiberal to r/technology [link] [comments]

0 0
1m read
Writing Node.js Addons with .NET Native AOT: A Complete Guide
DEV Community • 2026-04-28 17:40

Writing Node.js Addons with .NET Native AOT: A Complete Guide

Ever wished you could write Node.js native addons in C# instead of C++? .NET Native AOT makes it possible—and practical. The Problem with Traditional Node.js Addons If you've ever built a Node.js native addon, you know the pain: C++ required: Even for simple functionality, you need C++ knowledge node-gyp complexity: Build system that's notoriously finicky Python dependency: R...

0 0
7m read
OpenAI Misses Key Revenue, User Targets in High-Stakes Sprint Toward IPO
newest submissions : multi • 2026-04-28 17:40

OpenAI Misses Key Revenue, User Targets in High-Stakes Sprint Toward IPO

submitted by /u/Conscious-Quarter423 to r/technology [link] [comments]

0 0
1m read
DEV Community • 2026-04-28 17:39

Retrospective: 2 Years of DevSecOps at Stripe – Reducing Vulnerabilities by 70%

Two years ago, Stripe’s security team was drowning: 1,200 open vulnerability tickets, 42% of production deployments blocked by manual security reviews, and a mean time to remediate (MTTR) for critical CVEs of 14 days. Today, that’s 360 open tickets, 6% deployment block rate, and 4.2-day MTTR — a 70% reduction in net vulnerabilities across all Stripe codebases, with zero production security inciden...

0 0
20m read
UAE leaves OPEC in blow to global oil producers' group.
newest submissions : multi • 2026-04-28 17:39

UAE leaves OPEC in blow to global oil producers' group.

submitted by /u/aadsarraficionado to r/worldnews [link] [comments]

0 0
1m read
DEV Community • 2026-04-28 17:39

Effortlessness Is a Myth

I was listening to an episode of Founders where they discussed Roger Federer and one line stayed with me: Effortlessness is a myth. Perfection is a myth. That landed hard. From the outside, we often look at people at the top of their game and assume things come naturally to them. We see the clean outcome, not the private repetitions behind it. I know this because I have lived on both sides of ...

0 0
5m read
Brazilian LofyGang Resurfaces After Three Years With Minecraft LofyStealer Campaign
The Hacker News • 2026-04-28 17:39

Brazilian LofyGang Resurfaces After Three Years With Minecraft LofyStealer Campaign

A cybercrime group of Brazilian origin has resurfaced after more than three years to orchestrate a campaign that targets Minecraft players with a new stealer called LofyStealer (aka GrabBot). "The malware disguises itself as a Minecraft hack called 'Slinky,'" Brazil-based cybersecurity company ZenoX said in a technical report. "It uses the official game icon to induce voluntary execution,

0 0
1m read
newest submissions : multi • 2026-04-28 17:38

Agentic Coding is a Trap | Remaining vigilant about cognitive debt and atrophy

submitted by /u/funnybong to r/programming [link] [comments]

0 0
1m read
Now Available: Deconstructive Software Ramblings
DEV Community • 2026-04-28 17:38

Now Available: Deconstructive Software Ramblings

My book, DSR, is now available on Amazon in soft or hardcover. DECONSTRUCTIVE SOFTWARE RAMBLINGS, Essays from the Mind of an Engineering Manager, explores this author's thoughts and feelings about the software industry. Published over seven years, these compositions highlight the author's gripes and praises of software. In between, these essays instruct the uninitiated, explore meta-insights,...

0 0
1m read
Hacker News: Front Page • 2026-04-28 17:38

OpenAI Models on Amazon Bedrock

Article URL: https://aws.amazon.com/bedrock/openai/ Comments URL: https://news.ycombinator.com/item?id=47937768 Points: 8 # Comments: 3

0 0
1m read
I Replaced 2,000 Lines of Go Mocks With 200 Lines of Fakes
DEV Community • 2026-04-28 17:36

I Replaced 2,000 Lines of Go Mocks With 200 Lines of Fakes

Book: Hexagonal Architecture in Go Also by me: Thinking in Go (2-book series) — Complete Guide to Go Programming + Hexagonal Architecture in Go My project: Hermes IDE | GitHub — an IDE for developers who ship with Claude Code and other AI coding tools Me: xgabriel.com | GitHub A team I work with had a Go service with roughly 90 test files. Good coverage numbers. Green CI. The kind of ...

0 0
9m read
Your gRPC Protobuf Types Don't Belong in Your Domain Layer
DEV Community • 2026-04-28 17:36

Your gRPC Protobuf Types Don't Belong in Your Domain Layer

Book: Hexagonal Architecture in Go Also by me: Thinking in Go (2-book series) — Complete Guide to Go Programming + Hexagonal Architecture in Go My project: Hermes IDE | GitHub — an IDE for developers who ship with Claude Code and other AI coding tools Me: xgabriel.com | GitHub You run protoc. It generates Go structs. They have fields that match your domain. So you pass them straight i...

0 0
7m read
DEV Community • 2026-04-28 17:36

Adaptive Rate Limiting with Redis and Lua

Making Rate Limiting Correct Under Concurrency Most rate limiting tutorials stop at the single-instance case. That’s fine for learning, but it breaks quickly in production. Once you have multiple instances and real traffic patterns, the problem changes. It’s no longer just about picking an algorithm — it’s about correctness under concurrency. This article walks through what actually g...

0 0
3m read
Sabbatical #12: Milford Sound
Darek Kay • 2026-04-28 17:36

Sabbatical #12: Milford Sound

A travel journal from my visit to Milford Sound, New Zealand.

0 0
1m read
Go's Implicit Interfaces Are Its Best Architecture Feature
DEV Community • 2026-04-28 17:36

Go's Implicit Interfaces Are Its Best Architecture Feature

Book: Hexagonal Architecture in Go Also by me: Thinking in Go (2-book series) — Complete Guide to Go Programming + Hexagonal Architecture in Go My project: Hermes IDE | GitHub — an IDE for developers who ship with Claude Code and other AI coding tools Me: xgabriel.com | GitHub You hear it every time someone pitches Go. "Goroutines are amazing." "Channels change the way you think about...

0 0
10m read
/r/ReactJS - The Front Page of React • 2026-04-28 17:35

OAuth 2.0 + PKCE Explained — What's Actually Happening When Your React App Does a Login Redirect

If you've wired up OAuth login in a React app using a library like react-oauth/google, oidc-client-ts, or Auth0's React SDK — you've used PKCE without probably realising it. But knowing what's happening under the hood matters — especially when things break in prod or you're making architecture decisions about where to handle auth in your app. The video covers: Why React SPAs are public clients an...

0 0
1m read
Echo JS • 2026-04-28 17:34

SVAR Vue Gantt - Build custom Gantt charts for project scheduling

Comments

0 0
1m read
Previous Next

Showing page 362 of 1848

Previous 362 Next