Morning.dev
My Feed Popular
Login
Hacker News: Front Page • 2026-04-29 21:50

Gooseworks (YC W23) Is Hiring a Founding Growth Engineer

Article URL: https://www.ycombinator.com/companies/gooseworks/jobs/ztgY6bD-founding-growth-engineer Comments URL: https://news.ycombinator.com/item?id=47955226 Points: 0 # Comments: 0

0 0
1m read
HackerNoon • 2026-04-29 21:50

The Agentic SQL Architect: Engineering Databases That Reason

In the age of Agentic AI, our job as SQL Architects has changed. We are no longer the ones writing every single JOIN and GROUP BY. Instead, we are the ones building the world in which the Agents live.

0 0
1m read
LIV Golf Reportedly Loses Funding From Saudi Arabia
newest submissions : multi • 2026-04-29 21:50

LIV Golf Reportedly Loses Funding From Saudi Arabia

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

0 0
1m read
DEV Community • 2026-04-29 21:50

Are LLMs Capable of Original Thought?: A Critical Analysis of Generative AI Creativity

The Question Everyone Is Asking (But Few Define Clearly) "Can large language models think?" has become a shorthand for a deeper and more nuanced question: are these systems capable of generating genuinely original ideas, or are they merely sophisticated remix engines? The distinction matters - not just philosophically, but practically for how we evaluate research, deploy systems, and in...

0 0
5m read
DEV Community • 2026-04-29 21:50

Kiwi-chan's Log: Birch, Boredom, and Bug Fixes! 🥝

Another four hours down in the Minecraft world with Kiwi-chan, and it's been a steady, if slightly repetitive, climb! We're still firmly focused on the core survival loop: get wood, build a base. However, Kiwi-chan is very insistent on finding oak logs, even when they aren't around. The "OAK OBSESSION BAN" rule is getting a workout, forcing the AI to switch to birch logs when oak proves elusive. ...

0 0
2m read
DEV Community • 2026-04-29 21:49

Building a DDoS Bouncer: Anomaly Detection with Python & Z-Score

The Mission At cloud.ng, security isn't just a feature; it's a necessity. I was tasked with deploying a secure Nextcloud instance and building a custom Anomaly Detection Engine to protect it from DDoS attacks and suspicious traffic. The Architecture I deployed Nextcloud and Nginx using Docker. Nginx acts as the gatekeeper, logging every request in JSON format. My detection engine, built in Python,...

0 0
2m read
newest submissions : multi • 2026-04-29 21:47

Looking for a simple multi-track-with-fader audio player

Hi, I'm looking for a media player where I can load in two separate audio tracks and do a slider fade from one to the other while both play.. My use case is basically to do a seamless comparison between two audio files to see the difference between two mixes of the same audio, or raw and mixed versions. Requirements: free. easy to use. allows during-play mixing of two files in a quick and smoot...

0 0
1m read
DEV Community • 2026-04-29 21:46

How I used FFmpeg.wasm to build a browser-based audio remover

I had a recurring frustration: I needed to mute a video before sharing it. Every tool I found either uploaded the file to a server, added a watermark, or required me to create an account. I know a single FFmpeg command handles this in milliseconds. But most people are not going to open a terminal for something like this. So I built Remove Audio — a free, browser-based tool that strips the audio ...

0 0
2m read
DEV Community • 2026-04-29 21:45

How I Built a Real-Time DDoS Detection Engine from Scratch

If someone floods your web server with thousands of requests per second, what happens? Your server slows down, legitimate users can't get through, and eventually everything crashes. This kind of attack is called a DDoS — a Distributed Denial of Service attack. In this post, I'll walk you through exactly how I built a tool that watches incoming traffic in real time, learns what "normal" looks like...

0 0
13m read
Experienced Devs • 2026-04-29 21:45

How do you fill empty time as a tech lead?

A typical sprint is: Meetings meetings meetings Occasional PR reviews Occasional RFC / ADR reviews More meetings Delegating work When I’m not doing something I feel guilty, but sometimes I don’t feel like there’s much to do. PMs and designers are off ideating, engineers are off working on their tickets, I’m kind of there as the liaison between those two worlds. Should I be doing deep dives on h...

0 0
1m read
DEV Community • 2026-04-29 21:44

Compute Anxiety, Not Collapse: OpenAI Revenue 2026

OpenAI revenue 2026 is under a real pressure test. In the last 30 days, the dominant story has been a Reuters report, citing the Wall Street Journal, that OpenAI fell short of internal revenue and user targets while wrestling with the cost of future compute commitments. That has been easy to turn into a collapse narrative. The actual record is less dramatic and more interesting: OpenAI is missing...

0 0
8m read
newest submissions : multi • 2026-04-29 21:42

Rate Limiters Are System Boundaries

Most rate limiting discussions focus on algorithms: token bucket, leaky bucket, sliding window. But in real systems I’ve noticed the algorithm often matters less than where the limiter sits in the request path. If a limiter is placed too late, the system already carried the work too far and you end up with 503 Service Unavailable instead of controlled 429 responses. I wrote a short piece about thi...

0 0
1m read
Google signs classified Pentagon AI deal but exits $100 million drone swarm program — report claims employees revolted over ethical fears, delivered letter to CEO Pichai
newest submissions : multi • 2026-04-29 21:41

Google signs classified Pentagon AI deal but exits $100 million drone swarm program — report claims employees revolted over ethical fears, delivered letter to CEO Pichai

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

0 0
1m read
Hacker News: Front Page • 2026-04-29 21:41

Vera: a programming language designed for machines to write

Article URL: https://github.com/aallan/vera Comments URL: https://news.ycombinator.com/item?id=47955118 Points: 3 # Comments: 0

0 0
1m read
Concurrency Models in Practice: Node.js vs Go vs Python
DEV Community • 2026-04-29 21:41

Concurrency Models in Practice: Node.js vs Go vs Python

Most systems don’t fail because of syntax — they fail because of how they handle flow. At scale, software is no longer just about executing logic. It’s about orchestrating movement: requests, data, and work units flowing through a system under pressure. Different runtimes don’t just process tasks — they shape how work moves. And those choices define whether your system degrades gracefully… or c...

0 0
2m read
DEV Community • 2026-04-29 21:40

How I Built a Real Time DDoS Detection Engine from Scratch

Imagine you run a cloud storage platform. Thousands of users upload files, share documents, and log in every day. Then one afternoon, traffic suddenly spikes thousands of requests per second hammering your server from a single IP address. Your server slows down. Legitimate users can't log in. You're under attack. The traditional answer is Fail2Ban a tool that watches logs and blocks IPs. But wha...

0 0
10m read
newest submissions : multi • 2026-04-29 21:37

significant whitespace-friendly Rust parser generator ?

Hello I don't know if questions like this are accepted here. If they're not, please let me know. I have been playing around with writing a tiny compiler to WASM. The syntax I have in mind is roughly something like this fn div_rem(x: int, y: int) (int, int) let div, rem = x / y, x % y return div, rem Now, I don't want to commit too hard into a specific syntax or grammar, so so far I have been just...

0 0
1m read
Taylor Swift deepfakes are pushing scams on TikTok
newest submissions : multi • 2026-04-29 21:36

Taylor Swift deepfakes are pushing scams on TikTok

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

0 0
1m read
DEV Community • 2026-04-29 21:35

DuckDB 1.5.2, PostgreSQL Linux 7.0 Regression, & SQLite Formal Verification

DuckDB 1.5.2, PostgreSQL Linux 7.0 Regression, & SQLite Formal Verification Today's Highlights This week's highlights include DuckDB's latest patch release, addressing bugs and boosting performance, alongside a critical dive into how Linux 7.0 impacted PostgreSQL stability. We also explore SQLite's rigorous approach to formal verification, ensuring its foundational reliab...

0 0
4m read
DEV Community • 2026-04-29 21:35

FlashQLA Kernels Accelerate AI; NVIDIA & AMD Unveil New GPUs

FlashQLA Kernels Accelerate AI; NVIDIA & AMD Unveil New GPUs Today's Highlights This week, Qwen introduced FlashQLA, high-performance attention kernels offering significant speedups for AI inference and training. Concurrently, both NVIDIA and AMD have unveiled new GPU hardware, with Framework's RTX 5070 module detailing VRAM costs and Sapphire launching the Radeon RX 9070...

0 0
3m read
Previous Next

Showing page 476 of 2044

Previous 476 Next