Morning.dev
My Feed Popular
Login
Brazil orders Discord to suspend livestreaming after teen suicide
newest submissions : multi • 2026-08-15 15:59

Brazil orders Discord to suspend livestreaming after teen suicide

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

0 0
1m read
DEV Community • 2026-08-15 15:58

My evidence pipeline was saving Cloudflare block pages as evidence

I build a web service that preserves evidence of harassment on social platforms. The core feature is a single thing: automatically capture a real screenshot of the offending post. There was no substitute for it. I built an alternative that pulled the text through an API and rendered a tidy "evidence card" image, and threw it away. An image you can author freely afterwards proves nothing. Here's...

0 0
4m read
Hacker News: Front Page • 2026-08-15 15:58

Semaglutide linked to 26% lower 5-year predicted dementia risk

Article URL: https://alz-journals.onlinelibrary.wiley.com/doi/10.1002/dad2.70432 Comments URL: https://news.ycombinator.com/item?id=49311651 Points: 12 # Comments: 6

0 0
1m read
Newest questions tagged css - Stack Overflow • 2026-08-15 15:58

How is CSS blur so fast?

I tried to make my own real-time Gaussian blur or box blur in a game, but no matter how i implemented it, applying blur to 2D sprites in runtime made the game too slow to be viable. So i tried how fast Gaussian blur filter is in GIMP, and it took about 3 seconds to apply a 60px radius blur to my test image of 2000×1500 resolution. This verified my own experience of blur being too slow to apply in ...

0 0
1m read
Chris Hansen banned from Roblox live at CrimeCon during child safety demo with Schlep
newest submissions : multi • 2026-08-15 15:56

Chris Hansen banned from Roblox live at CrimeCon during child safety demo with Schlep

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

0 0
1m read
DEV Community • 2026-08-15 15:54

I Spent 3 Months Building a SaaS Nobody Used. Then a 10-Minute Chrome Extension Got 2,000 Users.

It was 2:15 AM on a Tuesday when I launched my dream project: an AI-powered reader dashboard. I had spent 90 days perfecting the tech stack: Next.js 14, Tailwind, Supabase auth, Stripe billing, PostgreSQL, and custom dark mode themes. I posted it on Twitter and Reddit, sat back, and waited for the signups to roll in. Silence. Absolute crickets. In two weeks, I had 12 visits and exactly 0 regist...

0 0
4m read
Pipeline for $165 Billion Oracle Data Center Delayed to Next Year
newest submissions : multi • 2026-08-15 15:54

Pipeline for $165 Billion Oracle Data Center Delayed to Next Year

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

0 0
1m read
DEV Community • 2026-08-15 15:54

Your `if` statements are a database nobody can query

Somewhere in your codebase there is a line that looks like this: if (user.plan === 'enterprise' || user.tenantId === 'acme-corp') { // ... } Nobody remembers who wrote the second half of that condition. It has been there for two years. It is almost certainly still load-bearing. Here is the thing I want to convince you of: that line isn't code. It's data, and it's stored in the worst po...

0 0
7m read
newest submissions : multi • 2026-08-15 15:53

Nvidia Downsizes Plans for $250 Billion Guarantee of OpenAI Data Center

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

0 0
1m read
DEV Community • 2026-08-15 15:50

Jan Sahay: Transforming Healthcare Access with an AI Voice Agent

Introduction Access to healthcare is still a challenge for millions of people, especially those who struggle with language barriers, limited digital literacy, lack of awareness, or difficulty navigating healthcare services. While smartphones and digital health platforms have made healthcare information more accessible, many people still find traditional apps and websites difficult to use. Jan Sa...

0 0
7m read
DEV Community • 2026-08-15 15:49

Overlaying a design on a live page: four things that bit me

I spent the last few weeks building a Chrome extension that puts a design frame on top of a running web page so you can see where the implementation drifted. The idea is old — designers have been dropping semi-transparent mockups over their builds since Photoshop — but doing it inside a browser extension turned out to have a few traps that cost me real time. None of these are exotic. All four are...

0 0
6m read
DEV Community • 2026-08-15 15:46

Why Does Go Have Goroutines? Understanding Go’s Lightweight Concurrency

When I started exploring Go, one feature immediately stood out: go doSomething() Just adding go before a function call can run it concurrently. That got me thinking: what exactly is a goroutine, and why does Go need it? So, I decided to learn the basics. Here's what I found. 👇 First, what is concurrency? Imagine you have multiple tasks: Fetching data from an API Processing...

0 0
3m read
DEV Community • 2026-08-15 15:45

I Built a RAG Pipeline in TypeScript Without LangChain — The Whole Thing in 200 Lines

Every RAG tutorial I found looked like this: const chain = RetrievalQAChain.fromLLM(model, vectorStore.asRetriever()); const res = await chain.call({ query: "what is this document about?" }); Twelve lines, a Pinecone key, a screenshot of it answering one question about one PDF, and a confident closing paragraph about "production readiness." I read four of them and still couldn't have tol...

0 0
23m read
DEV Community • 2026-08-15 15:44

🍽️ Masala Dosa House — A Taste of Home

This is a submission for Frontend Challenge - Comfort Food Edition, Perfect Landing What I Built For the Perfect Landing prompt, I built Masala Dosa House, a warm and modern landing page inspired by one of my favorite comfort foods — South Indian Masala Dosa. 🇮🇳 The idea was to create a fictional restaurant website that feels like stepping into a familiar neighborhood dosa spot. The ...

0 0
3m read
South Korea’s Hanwha Naval Giant Seeks to Buy Struggling US Shipbuilder
newest submissions : multi • 2026-08-15 15:43

South Korea’s Hanwha Naval Giant Seeks to Buy Struggling US Shipbuilder

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

0 0
1m read
DEV Community • 2026-08-15 15:41

CSS Masala Dosa — A Plate of Comfort 🍽️

This is a submission for Frontend Challenge - Comfort Food Edition, CSS Art. Inspiration For my CSS Art submission, I wanted to create something that represents comfort food from South India — Masala Dosa. 🇮🇳 A crispy, golden dosa served with potato masala, coconut chutney, tomato chutney, and a warm bowl of sambar is more than just a meal. It's one of those dishes that immediately fe...

0 0
3m read
Hacker News • 2026-08-15 15:37

Show HN: Between Tokens – an interactive piece where you are the language model

Comments

0 0
1m read
Newest questions tagged javascript - Stack Overflow • 2026-08-15 15:35

How should I handle overnight shifts and break deductions when calculating worked hours in JavaScript?

I'm building a JavaScript working-hours calculator that calculates total worked time from a start time, end time, and break duration. My current approach converts the entered times into minutes, subtracts the break duration, and then converts the result back to HH:MM and decimal hours. The logic works for normal shifts, but I'm running into issues when: A shift crosses midnight (e.g. 22:00 → 06:0...

0 0
1m read
Let AI Explain traceroute with the Laws of Physics
DEV Community • 2026-08-15 15:34

Let AI Explain traceroute with the Laws of Physics

I built and open-sourced PacketVoyage—an Agent Skill & MCP server that turns boring traceroute outputs into fascinating stories about physics, geography, and undersea cables. europeanplaice / packetvoyage MCP server & Agent Skill for educational network traceroute analysis, fiber-optic physics verification, and packet ...

0 0
2m read
DEV Community • 2026-08-15 15:33

Karachi Ki Raatein: A Love Letter to Midnight Street Food

This is a submission for Frontend Challenge - Comfort Food Edition, Perfect Landing What I Built Karachi Ki Raatein ("Karachi's Nights") — a single-page love letter to the street food that keeps my city awake after dark. Instead of a restaurant or a recipe box, I built it around a real pattern from home: Karachi basically runs on an unofficial food schedule. Maghrib means chai and som...

0 0
3m read
Previous Next

Showing page 106 of 2041

Previous 106 Next