Everyone knows your location: tracking myself down through in-app ads

https://timsh.org/content/images/size/w160/2025/01/wg21-2.jpg
A user discovered that their iPhone app, Stack, was secretly collecting geolocation data without consent and sharing it with third-party companies like Unity Ads and Moloco. The user found that this data can be bought on data marketplaces like Datarade and used to track individuals, highlighting the risks of data trading and lack of user consent.

The young, inexperienced engineers aiding DOGE

https://media.wired.com/photos/679d0c5342d9dede15f552a9/master/w_2560%2Cc_limit/musk-teens-pol-%25202195703755.jpg
Elon Musk's team of young engineers, some barely out of college, are taking key roles in his Department of Government Efficiency project, despite little government experience. They have access to sensitive information and are raising concerns about regulatory capture and hostile takeover of government machinery.

CDC: Unpublished manuscripts mentioning certain topics must be pulled or revised

https://substackcdn.com/image/fetch/w_520,c_fill,f_auto,q_auto:good,fl_progressive:steep,g_auto/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F286d049f-4bbf-4a2a-a779-7d8e0af7b1c6_1796x2476.png
The CDC has instructed its scientists to retract or pause research manuscripts containing "forbidden terms" such as gender and LGBT. This policy affects many studies, including those on Covid-19, cancer, and heart disease, and is causing fear and chaos among CDC experts.

Ask HN: What is interviewing like now with everyone using AI?

Interviews are becoming less effective due to AI use, but well-designed open-ended interviews can still detect cheating. Companies are shifting focus to assessing candidates' knowledge and problem-solving skills through in-depth discussions about personal and work projects.

Waydroid – Android in a Linux container

https://cms2.mega.nz/b41537c0eae056cfe5ab05902fca322b.png
We have created fully-integrated distros with Waydroid, including Ubuntu 20.04, 22.04, and Debian 12, showcasing community contributions and added tools. Waydroid-Linux supports Intel and AMD GPUs with mesa integration, but recommends software-rendering for Nvidia GPUs and VMs.

Life is more than an engineering problem

This interview is part of The Rules We Live By, a series devoted to asking what it means to be a human living by an ever-evolving set of rules. The series is made up of conversations with those who dictate, think deeply about, and seek to bend or break the rules we live by. “ONCE IN A WHILE,” Ted Chiang tells me, “an idea keeps coming back over a period of months or even years. […] I start ...

Recent results show that LLMs struggle with compositional tasks

https://www.quantamagazine.org/wp-content/uploads/2025/01/TCC-Spot-01.png
Researchers tested transformer-based language models on tasks like Einstein's riddle and found they struggle with compositional reasoning. The models' limitations are due to their inability to solve problems beyond their training data and are mathematically bounded.

GarminDB

https://raw.githubusercontent.com/tcgoetz/GarminDB/master/Screenshots/Screen_Shot_jupyter_daily_sm.jpg
GarminDb is a Python script for parsing health data from Garmin Connect into a SQLite database. It automatically downloads and imports data, creates default views, and allows users to analyze data using Jupyter notebooks.

The legacy of lies in Alzheimer's science

https://static01.nyt.com/images/2025/01/26/opinion/24Piller-02/24Piller-02-facebookJumbo.jpg
Medical advances have reduced mortality rates for cancer and heart disease but Alzheimer's death rates have increased. Despite decades of research, no effective treatment for Alzheimer's has been found due to its complexity and research misconduct.

Show HN: Lume – OS lightweight CLI for MacOS and Linux VMs on Apple Silicon

https://camo.githubusercontent.com/561442573e1c2212a9bfb1ba7e7bb847cfbf6f205c18769dbb73f4ea9cd1dd24/68747470733a2f2f7374617263686172742e63632f7472796375612f6c756d652e7376673f76617269616e743d6164617074697665
lume is a CLI tool for creating and managing macOS and Linux VMs on Apple Silicon with near-native performance. It offers various commands for creating, running, and managing VMs, as well as pulling and serving images.

Costa Rican supermarket wins trademark battle against Nintendo

https://ticotimes.net/wp-content/uploads/2025/01/super-mario-1.jpg
A small Costa Rican supermarket named "Super Mario" won a trademark dispute against Nintendo, claiming exclusive rights to the name for food supplies. The National Registry ruled in favor of the supermarket, stating Nintendo's existing registration doesn't cover food supplies.

Reverse-engineering and analysis of SanDisk High Endurance microSDXC card (2020)

https://ripitapart.com/wp-content/uploads/2020/07/20190816_165209-e1594894137534.jpg?w=300
The user reverse-engineered a SanDisk High Endurance microSD card to determine its internal workings, finding it uses SanDisk/Toshiba 3D TLC Flash and BiCS3 3D TLC NAND Flash. The user was unable to determine the card's controller's SLC caching mechanisms and was met with a proprietary Parameter Page format from SanDisk.

Analyzing the codebase of Caffeine, a high performance caching library

https://upload.wikimedia.org/wikipedia/commons/thumb/8/8c/Caffeine_structure.svg/1920px-Caffeine_structure.svg.png
Caffeine is a high-performance caching library that uses a combination of algorithms, including Window TinyLFU and Segmented LRU, to optimize cache hit ratios. Its adaptive policy adjusts cache configuration based on workload characteristics, allowing it to fine-tune its behavior to specific application needs.

Sniffnet – monitor your Internet traffic

https://raw.githubusercontent.com/GyulyVGC/sniffnet/main/resources/repository/header_repository.png
Sniffnet is free, open-source software for network analysis and inspection. It can be installed from GitHub releases or Nix package, with optional sponsorship for development.

Don't make fun of renowned author Dan Brown (2013)

Dan Brown, a renowned author, woke up angry about critics who mocked his writing style. He spoke with his agent, who reassured him that critics' opinions don't matter, given his millions of fans worldwide.

Spaced repetition can allow for infinite recall (2022)

Andrew's friend uses spaced repetition to memorize facts, reviewing them frequently to retain them. This method can potentially allow an infinitely-long-lived person to recall an infinite number of facts.

F-strings for C++26 proposal [pdf]

This proposal adds string interpolation (so called f-literals) to the C++ language. Each f-literal is transformed by the preprocessor to a token sequence constituting a call to a make_formatted_string function which returns an instance of a new library type basic_formatted_string which has a conversion function to std::basic_string. The preprocessor extracts each ...

The Art of Dithering and Retro Shading for the Web (2024)

https://res.cloudinary.com/dg5nsedzw/image/upload/fl_lossy,f_auto,q_auto/blog/dithering-examples
The user built a custom post-processing effect for their personal website using React Three Fiber and shader techniques, incorporating dithering, color quantization, and pixelization to achieve a retro look. They shared their process and techniques, including ordered dithering, blue noise dithering, and CRT emulation, to create a realistic retro post-processing effect.

Compiling Java into native binaries with Graal and Mill

Graal native images provide faster startup times and lower memory footprints, but are slower to create and have limitations around reflection and dynamic classloading. They can be run without a JVM installed, but require separate binaries for each platform.

Emergence of a second law of thermodynamics in isolated quantum systems

Researchers derive a variant of the second law of thermodynamics for isolated quantum systems, showing entropy increase with respect to observables. This result supports recent findings questioning the necessity of nonintegrability for equilibration in quantum systems.

A loophole used by Shein/Temu to ship packages to US tax-free (2024)

https://i.insider.com/657ccbfa7a3c8094d5ddc402?width=700
Shein and Temu use a tax rule called de minimis to ship millions of packages to the US tax-free. Lawmakers are now scrutinizing this loophole, which opponents argue creates unfair competition and allows banned materials to be imported.

Tools for 2025

The author is excited about three new tools: Oils, a reimplementation of the Bash shell with an incremental upgrade path; Radicle, a decentralized git hosting/sharing solution; and Simplex Chat, a chat app with a unique approach to addresses.

Proposed bill to make it a crime to download DeepSeek in the US

www.congress.gov needs to review the security of your connection before proceeding.

Fixing left and mutual recursions in grammars

To fix the left recursion in the given grammar, we need to make it right recursive. This can be achieved by introducing new non-terminals and rewriting the rules accordingly. The goal is to avoid mutual left recursion and make the grammar right recursive.

'Obelisks', a new class of life living inside humans

https://bgr.com/wp-content/uploads/2020/08/Coronavirus.jpeg?quality=82&strip=all&w=1020&h=574&crop=1
Researchers discovered a new class of life called Obelisks within the human body, found in 10% of human microbiomes, with 30,000 identified types. Obelisks code for a new protein class called Oblins, but their origin and genetic makeup remain unclear.

Smoot–Hawley Tariff Act

https://upload.wikimedia.org/wikipedia/commons/thumb/5/5c/Great_Seal_of_the_United_States_%28obverse%29.svg/140px-Great_Seal_of_the_United_States_%28obverse%29.svg.png
The Smoot-Hawley Tariff Act of 1930 raised US tariffs on 20,000 imported goods, prompting retaliatory tariffs from other countries and contributing to a 67% decline in American exports and imports during the Great Depression. Economists agree that the passage of the Smoot-Hawley Tariff worsened the effects of the Great Depression.

UK betting giant's unlawful marketing kept suicidal gambler hooked

https://i.guim.co.uk/img/media/66feab238ba90b115b818c5274c9e16dc1746b86/0_178_5332_3199/master/5332.jpg?width=445&dpr=1&s=none&crop=none
A man, identified as Sam, was targeted by Sky Betting & Gaming with personalized ads despite being at risk of harm due to his compulsive gambling. The high court ruled that the company's use of his data for marketing was unlawful, potentially having wide-ranging ramifications for the gambling industry.

ScatterBrain: Unmasking the shadow of PoisonPlug's obfuscator

Since 2022, Google Threat Intelligence Group (GTIG) has been tracking multiple cyber espionage operations conducted by China-nexus actors utilizing POISONPLUG.SHADOW. These operations employ a custom obfuscating compiler that we refer to as "ScatterBrain," facilitating attacks against various entities across Europe and the Asia Pacific (APAC) region. ScatterBrain appears to be a ...

Reinforcement Learning: An Overview

https://arxiv.org/static/browse/0.3.4/images/arxiv-logo-fb.png
The manuscript provides an overview of deep reinforcement learning and sequential decision making, covering various topics including value-based RL and policy-gradient methods. It discusses the field's current state and includes a brief discussion of RL+LLMs.

How to Run DeepSeek R1 Distilled Reasoning Models on RyzenAI and Radeon GPUs

DeepSeek R1 models use chain-of-thought reasoning to analyze complex prompts in detail, delivering more thorough results for tasks in scientific research and technical fields. AMD supports various sizes of these models across its processor and graphics card lineup, requiring specific drivers and memory configurations for optimal performance.

Show HN: Modest – musical harmony library for Lua

https://opengraph.githubassets.com/df450e98f51a1bdd50b736d29b91ed3cb4806aca06bb7dd059dcc26bdb25985d/esbudylin/modest
The Modest library supports chord and interval manipulation in Lua, providing flexible parsing and representation of musical notes and chords. It can be used with Lua 5.4 and LuaJIT, and supports various types of chords and intervals.

A Mount Lyell shrew has just been photographed alive

https://s.hdnux.com/photos/01/46/54/65/26922313/3/rawImage.jpg
Three young researchers, Vishal Subramanyam, Prakrit Jain, and Harper Forbes, photographed the first-ever living Mount Lyell shrew in California. The shrew, previously unknown to be photographed, is a small, grayish-brown mammal that feeds on insects and has a pointy snout.

X sues Lego, Nestlé and more brands, accusing them of advertising boycott

https://media.npr.org/assets/img/2022/06/29/juliana-kim_sq-dc63afd3276c8b524e7a4446a414c421bde9351e.jpg?s=100&c=85&f=jpeg
Elon Musk's X expanded a lawsuit against several major brands including Lego, Nestle, and Shell, accusing them of boycotting the platform in 2022. The suit claims the boycott cost X billions of dollars in advertising revenue and violated competitive market principles.

DOGE Staff Had Questions About the 'Resign' Email. Their HR Chief Dodged Them

https://media.wired.com/photos/679e9758d817cb38afac5685/master/w_2560%2Cc_limit/2194353521
USDS employees met with new HR representative Stephanie Holmes about the "Fork in the Road" email offering deferred resignations, but she could not fully answer many questions. The meeting left employees confused about the offer's details, including the agreement process, ahead of the February 6 deadline.

Show HN: Groundhog AI Spring API

https://groundhog-day.com/images/logo.png
The API provides North America's prognosticating animals and yearly weather predictions for business use. It offers OpenAPI schema and an 'add a groundhog' feature for updates and new additions.

USDA inspector general escorted out of her office after defying White House

Please enable JS and disable any ad blocker

Tiny vanes glued to planes promise big savings for US Air Force

https://assets.newatlas.com/dims4/default/0280985/2147483647/strip/true/crop/1200x800+0+50/resize/1200x800!/quality/90/?url=http%3A%2F%2Fnewatlas-brightspot.s3.amazonaws.com%2Ff1%2F33%2F929c9003428b980a4b72fa9552ee%2Fm1.jpg
A simple tweak to the C-17 Globemaster III involves attaching microvanes to its rear fuselage to reduce drag and save fuel. This modification is expected to save the US Air Force $14 million annually and pay for itself in seven months.

Mutool – all purpose tool for dealing with PDF files

mutool is a tool for dealing with document files, offering various subcommands for rendering, extracting, and manipulating PDFs. It supports output formats like PNG, SVG, and text, and allows for customization of rendering options.

AI realtime mock interview tool

https://www.prepin.ai/1200_630.png
Master technical interviews with our AI-powered platform. Practice real-time coding challenges, receive instant feedback, track your progress, and access a vast question bank from top companies. Boost your interview success rate today.

Show HN: I built a full mulimodal LLM by merging multiple models into one

https://raw.githubusercontent.com/JigsawStack/omiai/main/examples/how_it_works.png
OmiAI is a TypeScript AI SDK that auto-picks the best model for prompts and includes built-in reasoning, tools, and multi-modal support. It requires API keys for LLM providers.

Why Is This CEO Bragging About Replacing Humans with A.I.?

https://static01.nyt.com/images/2025/02/02/business/02klarna-illo/02klarna-illo-articleLarge.jpg?quality=75&auto=webp&disable=upscale
Corporate executives like IBM's Arvind Krishna and Klarna's Sebastian Siemiatkowski see AI as freeing up employees for higher-value work. Klarna has reportedly saved $10 million annually using AI for marketing, contracts, and customer service.

Nevada Ivanpah Solar Plant Accidentally Incinerates Up to 6k Birds a Year (2016)

https://www.sciencealert.com/images/2016-09/processed/IvanpahRunningHeader_600.jpg
The Ivanpah Solar Plant in California's Mojave Desert is killing up to 6,000 birds annually due to its concentrated sunlight beams. The plant's design and location along a migratory route make it difficult to find a solution to the problem.

Data-Oriented Exploits via Programming Language Synthesis [pdf]

Data-oriented programming (DOP) is a methodology for em- bedding malicious programs into fixed executable vulnerable binaries. DOP is effective for implementing code reuse at- tacks that exploit memory corruptions without violating many defence techniques, such as non-execute, address space layer randomisation, control flow and code point integrity. Existing approaches for automated exploit ...

I'm Ready for You: On Balzac

https://www.lrb.co.uk/storage/social_image/images/5/0/8/8/30478805-1-eng-GB/b774b810742d-mackenzie-web-1-.jpg
Balzac's novel "The Lily in the Valley" is a romantic and lyrical work that explores themes of love, purity, and repression, set against the backdrop of the Bourbon Restoration in France. The novel is a semi-autobiographical account of Balzac's own experiences with love and loss, and features a complex and nuanced portrayal of the relationships between characters.

Show HN: Language Learning from YouTube content

https://app.fluentsubs.com/logo_og.webp
The service provides accurate video transcriptions and translations using AI models. It also offers vocabulary practice and support for users.

Ask HN: Do the tarrifs impact software/SaaS? If so, how?

Selling software or SaaS across the border between Canada and the US may become more difficult due to tariffs and potential retaliatory measures, but the impact is uncertain and may be mitigated by the ability of digital businesses to operate remotely. The US tariffs on Canadian imports are a complex issue with various perspectives, including concerns about the legality of Trump's actions and ...

Wolves and America's urban-rural divide

https://20627419.fs1.hubspotusercontent-na1.net/hub/20627419/hubfs/Sunday_Wolf_share.png?width=595&height=400&name=Sunday_Wolf_share.png
Colorado reintroduced wolves to stimulate the environment, but they've disrupted a traditional industry and way of life. The reintroduction has created a challenging dynamic between Colorado's rural and urban economies, with benefits mostly going to urban residents and costs to rural residents.

Exploring Nine Simultaneous Transients on April 12th, 1950 (2021)

Nine point sources appeared within half an hour on a region within \(\sim \) 10 arcmin of a red-sensitive photographic plate taken in April 1950 as part of the historic Palomar Sky Survey. All nine sources are absent on both previous and later photographic images, and absent in modern surveys with CCD detectors which go several magnitudes deeper. We present deep CCD images with the 10.4-m ...

The Door Problem (2014)

A game designer's role is to solve everyday practical problems like "The Door Problem" which involves designing how doors open, close, and interact with players and other game elements. This involves collaboration with various teams including art, sound, programming, and writing to create a seamless gaming experience.

Minimum effective dose

https://winnielim.org/wp-content/uploads/2025/02/20250201-IMG_5053.jpg
The writer is recovering from a root canal and hesitant to exercise, but found that doing the minimum at the gym was enough to send a signal to their body. They believe in the concept of the minimum effective dose, which can be applied to many areas of life, including learning and personal growth.

Show HN: How good is your color vision? Find out in my new game

https://vidzert.com/images/play-button.png
Spot the square with a different color in this game to challenge your color perception.

You are asking the wrong question; 3D print business advice [video]

Autothrottle: Resource Management for SLO-Targeted Microservices

Autothrottle is a bi-level resource management framework for microservices that decouples application SLO feedback from service resource control. It achieves superior CPU savings, up to 26.21% over the best baseline and 93.84% over all baselines.

DeepSeek R1's recipe to replicate o1 and the future of reasoning LMs

https://substackcdn.com/image/fetch/w_520,c_fill,f_auto,q_auto:good,fl_progressive:steep,g_auto/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F2f93598d-e3e4-4f7f-8452-c4d5f1501e94_1280x720.png
DeepSeek AI released R1, a reasoning language model trained via a 4-stage RL process, with a friendly MIT license. This marks a major transition in reasoning model research, with huge progress expected in 2025 and more open research.

What Is the Byzantine Generals Problem in Distributed Systems?

https://substackcdn.com/image/fetch/w_520,c_fill,f_auto,q_auto:good,fl_progressive:steep,g_auto/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F7acca489-e8f6-4c9b-89b2-f031cb9f1127_1456x1048.png
The Byzantine Generals Problem is a thought experiment in distributed computing where some nodes may be untrustworthy or unreliable, making it difficult to reach a consensus. It requires at least 2f + 1 loyal nodes to ensure agreement, where f is the number of faulty nodes.

Splitting from Handmade Network

https://handmadecities.com/images/news/ticket_roll_hu13168616666668004411.jpg
Handmade Cities and Handmade Network leadership split amicably due to fundamental disagreements on brand direction. The Handmade movement now has three hubs with no collaborations between them.

Science is political and always has been (2024)

https://jrhawley.ca/assets/data/science-is-political-and-always-has-been/ubc-reasearch-funding.jpg
Science is inherently political because it involves making decisions about funding, research questions, and whose opinions are valued, which are all influenced by societal values and power structures. Acknowledging the political nature of science does not undermine its pursuit of truth, but rather allows for a more nuanced understanding of how scientific knowledge is produced and used.

Calculate the number of language model tokens for a string

https://blog.mastykarz.nl/assets/images/2025/01/banner.png
To calculate language model tokens, divide string characters by 4 for a rough estimate, but use the actual model for accurate results. A Jupyter Notebook can calculate tokens for strings, files, or folders using Hugging Face or OpenAI models.

Solving key challenges in AI-assisted code reviews

https://www.qodo.ai/wp-content/uploads/2025/01/Qodo-Merge-1.0-blog-cover-690x463.png
Qodo Merge 1.0 is a robust code review agent with 14 workflows and features to streamline code reviews, including a focus on problems mode and dynamic learning. It optimizes feedback relevance, enhances adaptability to team-specific coding practices, and ensures a seamless developer experience.

Medical billing firm Medusind discloses breach affecting 360k people

https://www.bleepstatic.com/content/hl-images/2025/01/08/Medusind.jpg
Medusind, a healthcare billing provider, is notifying 360,934 individuals of a data breach that exposed their personal and health information in December 2023. The company is offering two years of free identity monitoring services and warning individuals to monitor their accounts for potential identity theft.

Analyst firm say DeepSeek has 50000 Nvidia GPUs and spent US $6B on buildouts

https://cdn.mos.cms.futurecdn.net/zR8j9PwSx2RcUt6gUCCL7J-1200-80.jpg
DeepSeek, a Chinese AI startup, claims to have trained its model with low compute resources but SemiAnalysis reports $1.6 billion in hardware costs and 50,000 Nvidia GPUs. DeepSeek's success is built on strategic investments, technical breakthroughs, and a competitive workforce.