SShortSingh.
Back to feed

Engineer builds DIY mmWave radar system for material classification

0
·2 views

A developer named Gauthier Lechevalier has built a millimeter-wave (mmWave) radar system capable of classifying different materials. The project is documented on his personal website, where he shares technical details of the build. mmWave radar operates at high frequencies and can detect material properties beyond simple motion or distance sensing. The project has garnered attention on Hacker News, reflecting growing hobbyist interest in advanced radar technology.

Read the full story at Hacker News

This is an AI-generated summary. ShortSingh links to the original source for the complete article.

Discussion (0)

Log in to join the discussion and vote.

Log in

Related stories

0
ProgrammingDEV Community ·

Why Institutional Memory Is a Hidden but Critical Layer in Financial Systems

Distributed financial systems are typically described through code, databases, and architecture diagrams, but a significant portion of how they actually operate depends on knowledge held by engineers, analysts, and operators. This unwritten knowledge — covering edge cases, provider quirks, reconciliation anomalies, and recovery procedures — is what experts call institutional memory. When a system's correctness or recoverability relies on people remembering the right things at the right time, that memory effectively becomes part of the infrastructure. The danger arises when this knowledge is never formally encoded, leaving systems vulnerable whenever key personnel are unavailable or move on. The article argues that organizations must transform such fragile, undocumented assumptions into explicit, auditable, and resilient system design.

0
ProgrammingDEV Community ·

Tutorial: Build a Box Plot Calculator Using Vanilla JavaScript and SVG

A developer tutorial published on DEV Community walks readers through creating a fully functional box plot calculator using only vanilla JavaScript and SVG, with no external libraries such as D3 or Chart.js. The guide covers computing quartiles via linear interpolation (method 7, consistent with NumPy and pandas), detecting outliers using Tukey's fences, and rendering the chart as raw SVG elements. The tutorial emphasizes that choosing the wrong quartile method is a common mistake, noting at least nine different percentile computation approaches exist. The author also references a free companion tool, aiboxplot.com, which extends the concept with AI analysis, multi-dataset comparison, and export options.

0
ProgrammingDEV Community ·

NFL Teams Leave Wins on the Table by Ignoring 4th-Down Analytics, Data Shows

An analysis of 5,847 fourth-down situations across NFL seasons from 2018 to 2023 found that teams attempt conversions only 31% of the time in high-probability scenarios where math favors going for it. In situations such as 4th-and-2 or shorter within opponent territory before the fourth quarter, historical conversion rates range from 64% to 73%, making the expected value of attempting a conversion significantly higher than punting. Teams that follow data-backed conversion decisions gain approximately 2.3 additional wins per season, potentially turning an 8-9 record into a 10-7 finish. Across all 32 NFL franchises, analysts estimate this conservative play-calling costs the league roughly 40 wins per season in aggregate. Despite every NFL organization now employing dedicated analytics staff, a gap persists between what the data recommends and what coaches actually call on game day.

0
ProgrammingDEV Community ·

Three MCP Servers That Extend Claude Desktop With Files, GitHub, and Databases

A developer has shared three Model Context Protocol (MCP) servers they actively use with Claude Desktop for daily workflows. The filesystem server allows Claude to read project files directly, eliminating the need to manually copy-paste code into the chat. The GitHub server enables Claude to review pull requests, check issues, and browse repositories within the same conversation. A PostgreSQL server grants Claude direct database query access, letting users retrieve data without switching tools. Each server can be installed via the mcp-hub CLI in roughly two minutes, though users are cautioned to restrict filesystem paths carefully to avoid exposing their entire disk.