Morning.dev
My Feed Popular
Login
DEV Community • 2026-05-13 19:14

Building related-post recommendations for a Shopify blog — the algorithm, not the app

Shopify gives you product recommendations out of the box. There's a whole /recommendations/products.json endpoint, a recommendations.products Liquid drop, and an entire ML pipeline behind it. For blog posts? Nothing. Zero. There is no /recommendations/articles, no recommendations.articles, no signal. If you run an editorial blog on Shopify — and a lot of stores do now, because content is how you g...

0 0
12m read
Hacker News: Front Page • 2026-05-13 19:14

Making the news available at no cost is a victory

Article URL: https://www.sltrib.com/opinion/commentary/2026/05/12/just-days-tribune-reporting/ Comments URL: https://news.ycombinator.com/item?id=48126156 Points: 7 # Comments: 2

0 0
1m read
DEV Community • 2026-05-13 19:14

Two Retrieval Methods Are Better Than One: Evidence from 500 Clinical Queries

When I set out to evaluate retrieval configurations for Portuguese clinical text, I expected one method to dominate. Instead, I found something more interesting: BM25 and dense retrieval solve different questions. Neither is a substitute for the other. This post summarizes the methodology and results from a 500-query empirical study of hybrid retrieval for clinical question answering. All code is...

0 0
2m read
DEV Community • 2026-05-13 19:14

O(log n) & O(n log n): Search and Sort Masters

Searching and sorting power modern applications. O(log n) and O(n log n) represent optimal efficiency for these tasks. Knowing them is the difference between a search that returns instantly and one that crawls. O(log n): Binary Search Halves the search space each step. Logarithmic growth. To find an element among 1 million sorted items, only ~20 comparisons. func binarySearch(arr []...

0 0
2m read
Page history and credits on a static blog
DEV Community • 2026-05-13 19:13

Page history and credits on a static blog

Original post: Page history and credits on a static blog Series: Part of How this blog was built: documenting every decision that shaped this site. Most blog posts operate on an implicit contract: once published, they don't change. Or if they do change, the change is invisible. This is fine for minor edits, but when you correct something meaningful — a wrong date, a misattributed quote, broken...

0 0
3m read
/r/ReactJS - The Front Page of React • 2026-05-13 19:13

Suggestions on localization engineering infrastructure?

We're scaling our React app to different languages and localization is becoming kinda tricky not just the setup but also the manteinance as our app grows. This is becoming a bit of headache rn for us and I feel like we need a good localization engineering platform to make it manageable. Are you guys using react-i18next, react-intl, Lingo, Lingui, or something else? Are there any good TMS for this...

0 0
1m read
How AI is changing my job as a Staff Engineer: Tracer bullets
DEV Community • 2026-05-13 19:13

How AI is changing my job as a Staff Engineer: Tracer bullets

AI is rapidly changing software engineering, and with any kind of technological evolution, we need to sort the wheat from the chaff. On one side, Claude Code’s creator Boris Cherny says that “coding is largely solved”. On the other, devs like Mario Zechner argue that real software will always require human judgment, restraint and sustainable pace. Amid all the signal and noise, there’s you and me...

0 0
2m read
DEV Community • 2026-05-13 19:12

Evaluating LLM code reviewers: an offline harness for precision, recall, and routing"

If you cannot measure it, you cannot route it. Why offline evaluation is the difference between a code reviewer that improves over time and one the team dismisses within a sprint. Chat evaluations are vibes-based: thumbs-up on "was this helpful?" measured against no particular ground truth. Code review needs something stricter. A reviewer that flags five real bugs and one bogus warning is usefu...

0 0
6m read
DEV Community • 2026-05-13 19:10

onclick is great, actually

For several years, I've been mostly against event handling code in HTML attributes. And for the longest part, it really was a terrible idea. With modules alone, it becomes really hard for onclick handlers to call code. Not without polluting the global namespace, at least. But now I'm starting to warm up to them again: thanks to custom elements, code can live in modules and still be triggered via...

0 0
2m read
Newest questions tagged css - Stack Overflow • 2026-05-13 19:08

How do I reproduce Coding2GO's CSS carousel?

I'm tried making a carousel in HTML/CSS by following exactly Coding2GO's video: https://www.youtube.com/watch?v=KD1Yo8a_Qis In the video, 6 elements are spinning in the carousel. Here is the code I reproduced: https://codepen.io/editor/Zibola/pen/019e229f-dce5-778e-a69a-ddfd2f41f2a1 I put it here too: <!DOCTYPE html> <html lang="en"> <head> <meta charset="...

0 0
1m read
newest submissions : multi • 2026-05-13 19:08

Is it possible to implement latency based sticky routing?

My use case is to maximise cache hits, but still ensure that the request routes to the lowest latency server. The problem is that there is no global cache, each server holds its own cache. submitted by /u/LifeSignificance6978 to r/programming [link] [comments]

0 0
1m read
DEV Community • 2026-05-13 19:06

Anthropic's 'Dangerous' AI and the Hard Reality of Auditing Code

Anthropic's latest model, Claude Mythos, was internally deemed too 'dangerously good' at finding security vulnerabilities for a public release. But when tested against the battle-hardened curl codebase, it exposed the gap between marketing hype and engineering reality, providing a critical lesson for anyone building with AI security tools. The takeaway is not that these models are useless, but tha...

0 0
3m read
newest submissions : multi • 2026-05-13 19:06

Anthropic's Mythos sends US banks rushing to plug cyber holes

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

0 0
1m read
DEV Community • 2026-05-13 19:05

I open-sourced passport photo specs for 100 countries (MIT, JSON, public API)

I open-sourced passport photo specs for 100 countries (MIT, JSON, public API) If you have ever built anything that touches passport or visa photos, you know the boring part is not the face detection or the background segmentation. It is the country specifications. Every country has slightly different size. Different background color. Different file size cap on the upload portal. A diffe...

0 0
6m read
DEV Community • 2026-05-13 19:05

How Slurm Handles Resource Allocation Internally

If you work with HPC clusters, chances are you use slurm every day to submit jobs, monitor queues, and manage compute resources. Most users know commands like sbatch, squeue, and sinfo, but fewer understand what actually happens internally when a job is submitted. This article explains how Slurm handles resource allocation behind the scenes, from job submission to execution on compute nodes. ⸻ ...

0 0
4m read
Newest questions tagged javascript - Stack Overflow • 2026-05-13 19:05

MYSQL JavaScript querys

I am making an online program that connects to a sql server, but need to run some queries like login, how do i run it. All sources don’t work for me. I am using MySQL and vs code in js and i am putting variables into the querie

0 0
1m read
𝚓𝚊𝚟𝚊𝚜𝚌𝚛𝚒𝚙𝚝 • 2026-05-13 19:03

Built a Tetris clone with Phaser 3 + TypeScript — T-spin detection, Web Audio synth, Balatro-style CRT effects

Some interesting bits from the implementation: T-spin detection uses the 3-corner rule — check if 3 of the 4 diagonal cells around the T piece are occupied after rotation. The entire soundtrack is synthesized via Web Audio API using oscillators and gain nodes — no audio files at all. Line clears play a rising arpeggio, Tetris plays a chord, combos escalate in pitch. CRT effects (scanlines, chromat...

0 0
1m read
newest submissions : multi • 2026-05-13 19:01

This is probably a really dumb question but I am not the most knowledgeable in tech. What safe site/software do you actually use to convert a screen recording (mp4 I believe IIRC) to an MP3 on windows?

Let me preface by saying I'm not trying to commit piracy or rip music or anything. I genuinely just need to convert this screen recording I have to an mp3, and trying to find a safe way to do that its really hard to find a good answer online, and I'm super paranoid about viruses. Which has me so lost, as I am sure I'm not the first person who has needed to do this lmao. submitted by ...

0 0
1m read
ALPRs and Facial Recognition: How Retail Stores Are Fueling Mass Tracking
newest submissions : multi • 2026-05-13 18:59

ALPRs and Facial Recognition: How Retail Stores Are Fueling Mass Tracking

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

0 0
1m read
Overworked AI Agents Turn Marxist, Researchers Find
newest submissions : multi • 2026-05-13 18:57

Overworked AI Agents Turn Marxist, Researchers Find

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

0 0
1m read
Previous Next

Showing page 2 of 2313

Previous 2 Next