Skip to main content

Posts

Showing posts from March, 2025

Our Ultimate Guide to Cooking Cauliflower

By Alison Roman from NYT Food https://ift.tt/dp713A6

On the Night Before Eid, Mothers Made the Magic Happen

By Sadiba Hasan and Amir Hamja from NYT Style https://ift.tt/awRjoTS

Life Without Transit? Silicon Valley Had a Glimpse for Nearly 3 Weeks.

By Soumya Karlamangla from NYT U.S. https://ift.tt/cS5Mmo7

New top story on Hacker News: Show HN: Hexi, modern header-only network binary serialisation for C++ hackers

Show HN: Hexi, modern header-only network binary serialisation for C++ hackers 14 by Chaosvex | 2 comments on Hacker News. Over the last few years, I've needed an easy way to quickly serialise and deserialise various network protocols safely and efficiently. Most of the libraries that existed at the time were either quite heavy, had less than stellar performance, or were an abstraction level above what I was looking for. I decided to put together my own class to do the job, starting with an easy, low-overhead way to move bytes in and out of arbitrary buffers. Along the way, it picked up useful bits and pieces, such as buffer structures and allocators that made the byte shuffling faster, often being able to do it with zero allocations and zero copies. Safety features came along to make sure that malicious packet data or mistakes in the code wouldn't result in segfaults or vulnerabilities. It's become useful enough to me that I've packaged it up in its own standalone l...

Trump Threatens Tariffs Against Countries That Buy Venezuelan Oil

By Ana Swanson, Rebecca F. Elliott and Alan Rappeport from NYT U.S. https://ift.tt/40oXCQW

‘Severance’ Finale Raises New Questions, but Were There Any Answers?

By The New York Times from NYT Arts https://ift.tt/yz3ULhR

Man Last Seen With Missing Student Leaves the Dominican Republic

By Amanda Holpuch from NYT World https://ift.tt/PIYqgvi

The Ugly Effect of Fashion Rumors

By Vanessa Friedman from NYT Style https://ift.tt/Qp80G7s

A Cornell graduate student fearing deportation files a pre-emptive lawsuit.

By Stephanie Saul from NYT U.S. https://ift.tt/gcA8PDO

U.S. Launches Broad Attack on Militant Sites in Yemen

By Eric Schmitt and Jonathan Swan from NYT U.S. https://ift.tt/kPpzXin

New top story on Hacker News: Show HN: Pi Labs – AI scoring and optimization tools for software engineers

Show HN: Pi Labs – AI scoring and optimization tools for software engineers 10 by achintms | 0 comments on Hacker News. Hey HN, after years building some of the core AI and NLU systems in Google Search, we decided to leave and build outside. Our goal was to put the advanced ML and DS techniques we’ve been using in the hands of all software engineers, so that everyone can build AI and Search apps at the same level of performance and sophistication as the big labs. This was a hard technical challenge but we were very inspired by the MVC architecture for Web development. The intuition there was that when a data model changes, its view would get auto-updated. We built a similar architecture for AI. On one side is a scoring system, which encapsulates in a set of metrics what’s good about the AI application. On the other side is a set of optimizers that “compile” against this scorer - prompt optimization, data filtering, synthetic data generation, supervised learning, RL, etc. The scoring...

Tiny Love Stories: ‘My First Post-Divorce Girlfriend’

By Unknown Author from NYT Style https://ift.tt/TeBg1Dz

New top story on Hacker News: Show HN: Nuanced – Help AI understand code structure, not just text

Show HN: Nuanced – Help AI understand code structure, not just text 12 by aymandfire | 3 comments on Hacker News. Hi HN! We built Nuanced ( https://ift.tt/jYTlNoc ), an open-source Python library that makes AI coding tools smarter about code structure. The problem: current AI coding assistants see code as just text. They don't understand which functions call which, or how code components depend on each other. This is why they often suggest changes that break dependencies they should have known about. Nuanced solves this by generating call graphs that map these relationships. When you ask "What would break if I change this function?", instead of guessing, the AI can see the actual dependencies. How it works: 1. Run `nuanced init .` to analyze a Python module in your codebase 2. Use `nuanced enrich app/file.py function_name` to get relationship data 3. Include this data in your AI prompts or integrate it into tools We're already working with teams building AI coding ...

Fed in No Hurry to Adjust Rates Amid Trump Policy Uncertainty

By Colby Smith from NYT Business https://ift.tt/syF30WQ

New top story on Hacker News: Show HN: A big tech dev experience for an open source CMS

Show HN: A big tech dev experience for an open source CMS 16 by randall | 9 comments on Hacker News. # Show HN: A big tech dev experience for an open source CMS. Hey HN! We're building an open-source CMS designed to help creators with every part of the content production pipeline. We're showing our tiny first step: A tool designed to take in a Twitter username and produce an "identity card" based on it. We expect to use an approach similar to [Constitutional AI] with an explicit focus on repeatability, testability, and verification of an "identity card." We think this approach could be used to create finetuning examples for training changes, or serve as inference time insight for LLMs, or most likely a combination of the two. The tooling we're showing today is extremely simplistic (and the AI is frankly bad) but this is intentional. We're more focused on showing the dev experience and community aspects. We'd like to make it easier to contribut...

Trump Official Dangles Prospect of Reducing Canada and Mexico Tariffs

By Ana Swanson from NYT U.S. https://ift.tt/Zzvonje

New top story on Hacker News: Show HN: Open-Source Windows AI assistant that uses Word, Excel through COM

Show HN: Open-Source Windows AI assistant that uses Word, Excel through COM 17 by edmgood | 0 comments on Hacker News. This started off as a project to understand how to get LLMs to interface with more traditional desktop softwares. We were especially interested in tools related to schematic drafting and molecular simulation. Decided to explore COM automation for more traditional Windows softwares as a starting point! Been using it to help some friends automate simple excel workflows. Thought we'd share!