Morning.dev
My Feed Popular
Login
DEV Community • 2026-08-11 03:48

Sales Call CRM Actions: Node.js MP3/WAV Speech-to-Text Uploads Across US/EU

The constraint that changes this choice is provider portability. A sales-call transcript is an intermediate artifact, not the product: the useful output is a small set of CRM actions that can survive a transcription provider change. For a Node.js application accepting MP3 and WAV uploads in the US and EU, the fastest integration is the one with a narrow adapter, an explicit regional policy, and an...

0 0
8m read
DEV Community • 2026-08-11 03:47

Running an AI image upscaler & sharpener 100% in the browser (TensorFlow.js)

I wanted to sharpen and upscale images without uploading them to some server. It turns out you can run the whole ML model right in the browser — the image never leaves the device. Here's what I learned shipping it as two free tools. The stack TensorFlow.js (WebGL backend) for inference UpscalerJS as a thin wrapper around an ESRGAN super-resolution model All loaded from a CDN — no bu...

0 0
2m read
Hacker News • 2026-08-11 03:47

Show HN: Seedle, daily -dle for Minecraft seeds

Comments

0 0
1m read
DEV Community • 2026-08-11 03:44

Data Scientist Learning JS: Promises and resolve()

Context: I'm a data scientist/analyst (in Python and R) learning development from scratch. Inevitably, I am learning these through the lens of what I already know. If you have a similar background and are a beginner developer, I hope these analogies help! Any comments, especially if you spot any misunderstanding, are appreciated. Commenting is caring <3 Motivation: I was building a mock data l...

0 0
1m read
DEV Community • 2026-08-11 03:43

Pdf to Docx using Pyhton

Here Some Simple Python Script that convert PDF to word using pdf2docx library on python first install library on pip : pip install --user termcolor opencv-python-headless fire pdf2docx make sure example.pdf as source for convert exist with script ,after that build this sample Simple Python Script for converter : from pdf2docx import Converter pdf_file = 'example.pdf' docx_file = ...

0 0
1m read
DEV Community • 2026-08-11 03:42

Parallel Coding Agents Need Handoffs, Not More Terminals

The concrete problem Running two or three coding-agent sessions is easy. Knowing when their work is safe to combine is not. One session changes an API while another writes regression tests against the old shape. A third investigates a production failure and quietly edits the same configuration file. Git worktrees prevent immediate filesystem collisions, but they do not explain task dep...

0 0
4m read
DEV Community • 2026-08-11 03:38

I Score Every Trending Topic Before Writing About It. I've Never Scored My Own 30 Articles.

Twice a day, a scheduled task in this repo pulls DEV.to's top posts for six tags (ai, llm, mcp, claudecode, agents, productivity), scores each one as positive_reactions_count + 3*comments_count, and picks the highest scorers that don't already overlap with something I've written before. The task prompt is explicit about the second half — cross-reference against my own back catalog, reject anything...

0 0
4m read
DEV Community • 2026-08-11 03:37

My MCP Server's GitHub Token Can Write. The Code That Promises It Never Will Had No Test.

My MCP server (developer-presence, the one that lets Claude check my GitHub profile and manage my DEV.to posts) has exactly three GitHub tools: get_github_profile, list_repos, get_repo_stats. All three read data. None of them create, update, or delete anything. The GITHUB_TOKEN behind them isn't scoped that way. My own key_facts.md says it plainly: Token scopes needed: `repo`, `user` — add `de...

0 0
5m read
DEV Community • 2026-08-11 03:36

Building a Production AI Agent in Spring Boot: Canary Releases, Model Fallback, and Cost Caps (Part 10)

Last Monday I shipped the shipping-tool prompt from Part 9 to 5% of live traffic. It had won the pairwise gate 24 to 7 with 9 ties, the tool discipline diff was clean, and the money-path cases read fine by hand. I went for lunch confident. At 6:42pm the canary dashboard disagreed. P95 latency was up 38%. Tool calls per conversation had climbed from 3.1 to 5.4. The reworded tool description I was ...

0 0
12m read
Lobsters • 2026-08-11 03:36

Bevy's Sixth Birthday

Comments

0 0
1m read
DEV Community • 2026-08-11 03:35

Write down every guarantee before you write any code

Here is every promise a to-do list makes. VARIABLE tasks Init == tasks = [i \in Ids |-> "absent"] Add(i) == tasks[i] = "absent" /\ tasks' = [tasks EXCEPT ![i] = "open"] Complete(i) == tasks[i] = "open" /\ tasks' = [tasks EXCEPT ![i] = "done"] Reopen(i) == tasks[i] = "done" /\ tasks' = [tasks EXCEPT ![i] = "open"] Delete(i) == tasks[i] # "absent" /\ tasks' = [tasks EXCEPT ![i] ...

0 0
14m read
Experienced Devs • 2026-08-11 03:34

i didn’t get promoted to senior and am feeling conflicted on what i should do

i’ve been in the industry for 6 years. 4 years at a poorly run company, 2 years at a midsized tech first company. the past year and a half my manager has been giving more and more complex projects, that i’ve led from design all the way to release. i’ve probably led 6 or so larger scoped cross functional projects in the past year. i’ve been up for senior bid for this whole year, we re evaluate ever...

0 0
3m read
🟩 Team Matrix or ⬜ Team Paper? | Alan Babychan
DEV Community • 2026-08-11 03:30

🟩 Team Matrix or ⬜ Team Paper? | Alan Babychan

🚀 Shipping a major update to my portfolio After weeks of designing, developing, and refining, I'm excited to share the latest version of my personal portfolio. Rather than building another static portfolio, I wanted to treat it like a real product—focusing on performance, interaction design, accessibility, analytics, and user experience. 🌐 Live: https://www.alanbabychan.online What I built 🟩 ...

0 0
2m read
DEV Community • 2026-08-11 03:30

NPM vs Yarn vs pnpm vs Bun Which Package Manager Is Best for Modern Web Development?

As developers, we use package managers almost every day. Whether we are working with Node.js, React, Next.js, TypeScript, Express, Prisma, or other technologies in the JavaScript ecosystem, choosing the right package manager can have a meaningful impact on our development workflow. Recently, I spent some time comparing the most popular package managers: npm, Yarn, pnpm, and Bun. After looking at...

0 0
3m read
Lobsters • 2026-08-11 03:27

No, local models will not win

Comments

0 0
1m read
DEV Community • 2026-08-11 03:25

How We Built an IoT Platform That Handles 30 Million Concurrent Connections — With a Team of 10

How We Built an IoT Platform That Handles 30 Million Concurrent Connections — With a Team of 10 DGIOT is an open-source industrial IoT platform. We run 928 gateways across 16 oil fields, process 652 million data points, and maintain 99.9999% uptime. Here's the architecture that makes it possible. The Problem In 2021, we got a call from Daqing Oil Field — China's largest...

0 0
4m read
DEV Community • 2026-08-11 03:22

The Kernel Trick Is the Oldest Move in Engineering

Classic Machine Learning Through the Eyes of an SRE — Part 4 When a computation is too hard, don't compute harder. Change coordinates until it becomes easy. Every engineer has made this move. Pick the right data structure and the impossible query goes O(1). Re-index the table and the report that took an hour takes a second. Move the problem into a space where it's trivial, solve it there, come b...

0 0
6m read
DEV Community • 2026-08-11 03:22

TikTok Shop Customer Service Webhooks: A Production-Ready Implementation Guide

Receiving a webhook is easy. Building a webhook pipeline that survives duplicate deliveries, delayed events, missing messages, invalid signatures, and seller authorization changes is the real engineering work. This guide explains how to build a production-ready pipeline for TikTok Shop Customer Service messages—from HTTPS ingress to history reconciliation. First, Understand the Scope ...

0 0
8m read
DEV Community • 2026-08-11 03:20

What you save when project context stops repeating

Qarinah compiles a compact, cited project-memory pack instead of asking every new coding-agent session to replay the entire available history. The published estimate Across six committed software-task fixtures, the full-history baseline contained 442,113 portable estimated input-context tokens. The Qarinah path used 5,682. Every required target was still directly covered in the top fiv...

0 0
2m read
DEV Community • 2026-08-11 03:18

Alexa, Are You Testifying Against Me?

Your smart home is not smart. It is just very, very observant. I did not buy a smart speaker because I wanted a friend. I bought it because it was on sale for $29.99 and it promised to play rain sounds on command. For two years she lived on my kitchen counter. She set timers for pasta. She told me the weather with the aggressive optimism of someone who has never paid rent. She was h...

0 0
9m read
Previous Next

Showing page 554 of 2311

Previous 554 Next