Gmail Accused of Partisan Spam Filtering: GOP Claims Bias

2025-08-30
Gmail Accused of Partisan Spam Filtering: GOP Claims Bias

FTC Chairman Andrew Ferguson accused Google of using partisan spam filters in Gmail, allegedly sending Republican fundraising emails to spam while delivering Democratic emails to inboxes. Ferguson's letter to Alphabet CEO Sundar Pichai alleges potential FTC Act violations. Google denies the accusations, stating its spam filters are based on objective user signals and apply equally to all senders, regardless of political affiliation. This reignites long-standing Republican complaints previously dismissed by a federal judge and the Federal Election Commission.

Read more
Tech

FCC Rejects Regulatory Fee Proposals Targeting Big Tech

2025-08-30
FCC Rejects Regulatory Fee Proposals Targeting Big Tech

The Federal Communications Commission (FCC) has rejected proposals to impose cable-style regulatory fees on streaming services, tech companies, and broadband providers. Groups like the NAB argued that these companies benefit from FCC resources and should contribute financially. However, the FCC cited administrative difficulties and a lack of evidence showing increased regulatory burdens imposed by tech firms. Telecommunications and tech trade groups opposed the proposals, arguing fees should only cover directly regulated industries. The FCC's decision maintains the existing fee structure, with broadcasters, satellite operators, and licensees bearing the burden through fiscal year 2025.

Read more

Michael Larabel: 20 Years of Linux Hardware Benchmarking

2025-08-30

Michael Larabel, founder and principal author of Phoronix.com, has been enriching the Linux hardware experience since 2004. He's penned over 20,000 articles covering Linux hardware support, performance, graphics drivers, and more. Larabel is also the lead developer behind the Phoronix Test Suite, Phoromatic, and OpenBenchmarking.org automated benchmarking software, significantly contributing to the Linux ecosystem.

Read more
Tech

Battlefield 6's Secure Boot Requirement Sparks Controversy

2025-08-30
Battlefield 6's Secure Boot Requirement Sparks Controversy

EA's decision to require Secure Boot for the Battlefield 6 PC open beta ignited a debate among players. Many were unable to enable it or unwilling to grant kernel-level access to EA's anti-cheat, preventing them from playing. Technical director Christian Buhl defended the decision as a necessary evil to combat cheating, though admitting it wouldn't eliminate it entirely. While Secure Boot enhances anti-cheat capabilities, it also excludes some players.

Read more

Decentralized Mastodon Defies Mississippi's Age Verification Law

2025-08-30
Decentralized Mastodon Defies Mississippi's Age Verification Law

Decentralized social network Mastodon announced its inability to comply with Mississippi's age verification law, the same law that prompted rival Bluesky to leave the state. Mastodon cites its user-tracking limitations and reluctance to employ IP-based blocks as reasons for non-compliance. Founder Eugen Rochko highlighted the importance of true decentralization, stating that no one can unilaterally decide to block Mississippi from the Fediverse. While Mastodon's own servers specify a minimum signup age, its software doesn't support age verification across all servers. Individual server owners must decide on age verification implementation. Mastodon claims it can't directly assist other server operators, suggesting they consult online resources and comply with local laws.

Read more
Tech

China Unveils World's Most Sensitive Neutrino Detector

2025-08-30
China Unveils World's Most Sensitive Neutrino Detector

After over a decade of construction, China has launched the Jiangmen Underground Neutrino Observatory (JUNO), claimed to be the world's most sensitive neutrino detector. Located 700 meters underground, JUNO boasts a 20,000-tonne liquid scintillator detector and over 45,000 photomultiplier tubes. It detects neutrinos from nearby nuclear power plants by capturing the light produced when neutrinos interact with hydrogen atoms in the scintillator. JUNO's success will significantly advance our understanding of neutrino mass hierarchy and types, with international collaboration from scientists across the globe signifying a major leap in China's fundamental science research.

Read more
Tech Detector

XSLT 3.0: A Major Upgrade for XML Transformations

2025-08-30

XSLT 3.0 isn't just an incremental update; it elevates XSLT from an XML transformation tool to a general-purpose transformation language for common data formats like JSON and XML. It introduces JSON support with `json-to-xml()` and `xml-to-json()` functions for seamless conversion. Further improvements include simplified syntax with text value templates (TVTs), dynamic XPath expression evaluation, functions, typed variables, function packages, and exception handling, boosting code readability and maintainability. XSLT 3.0 also supports streaming and performance optimizations, making it ideal for large-scale data streams.

Read more
Development

SQLite Durability: Documentation vs. Reality

2025-08-30

SQLite's durability settings are confusing. The documentation and statements from creator Richard Hipp contradict each other regarding the default durability. This stems from the complex interaction between the `journal_mode` and `synchronous` configuration options, and the differing requirements in different modes. The article analyzes durability requirements in DELETE and WAL modes, concluding that explicitly setting the `synchronous` option is crucial to ensure data persistence, avoiding ambiguity and future changes in defaults. It also cautions about potential issues introduced by third-party libraries and macOS specifics.

Read more
Development

Rust Error Handling: A Hybrid Approach with Snafu

2025-08-30
Rust Error Handling: A Hybrid Approach with Snafu

Error handling in Rust is a hotly debated topic. `anyhow` offers a generic error type for easy debugging, while `thiserror` provides precise enum types for better API design. This article details Iroh's hybrid approach using Snafu, which combines the precision of `thiserror` with the ease of use of `anyhow`, while overcoming Rust's backtrace limitations. It cleverly preserves detailed context and backtraces in error chains. The `n0-snafu` crate further simplifies Snafu usage, particularly in tests. Iroh's choice of Snafu balances precision and usability for efficient error handling.

Read more
Development

Nginx-CGI: Bringing CGI Support to Nginx and Angie

2025-08-30
Nginx-CGI: Bringing CGI Support to Nginx and Angie

The Nginx-CGI plugin adds CGI support to Nginx and Angie web servers, making it easier to build low-frequency applications, resource-constrained systems, and prototypes. It supports various operating systems including Linux, macOS, and BSD. The article details installation, configuration, and usage, showcasing multiple ways to run CGI scripts: chroot, Docker, and FreeBSD jails. It also covers CGI script writing conventions and handling HTTP requests and responses.

Read more
Development

Speed Up Python Code Testing: importlib and pickle Power Combo

2025-08-30
Speed Up Python Code Testing: importlib and pickle Power Combo

This post introduces two techniques to boost Python code testing efficiency. The first leverages the `importlib` library to reload functions for rapid iterative testing. The second combines `pickle` to save and load class objects, avoiding lengthy re-runs, especially beneficial for time-consuming code. These methods drastically reduce debugging time, improving development speed.

Read more

Google's AI Summaries: A Publisher's Nightmare?

2025-08-30
Google's AI Summaries: A Publisher's Nightmare?

Google's new AI-generated summaries in search results often pull content, diverting traffic away from websites. Publishers face a dilemma: blocking summaries reduces visibility, while allowing them means surrendering content control. While EU and UK investigations are underway, effective workarounds remain scarce. The article outlines several options, including the `max-snippet:0` and `nosnippet` meta tags, and the `data-nosnippet` attribute, but none are perfect. Ultimately, it labels this a classic 'dark pattern' design, heavily disadvantaging publishers, and calls for regulatory intervention.

Read more

Baba Yaga: A Minimalist Functional Programming Language

2025-08-30
Baba Yaga: A Minimalist Functional Programming Language

Driven by an aesthetic pursuit of programming languages, the author developed Baba Yaga, a functional programming language. Core features include minimalist syntax, immutability, and a functional-first approach, with pattern matching for control flow. It blends familiar functional programming concepts for ease of use, includes built-in utilities, and offers JavaScript interoperability, aiming for use in games, sketches, and live coding.

Read more
(eli.li)
Development

Rust-based aarch64 JIT Emulator: A 'Hello, World!' Story

2025-08-30

The author built an aarch64 instruction set architecture emulator using Rust and Cranelift's JIT compiler. The article details the journey from virtual machine instructions to native code execution, covering instruction decoding, JIT translation, memory management, and device emulation. A PL011 UART simulation was implemented, and gdbstub enables debugging. The emulator currently runs simple bare-metal programs, with future goals including Linux boot support. Further development will focus on exception handling, timer support, MMU implementation, and an interrupt controller.

Read more
Development

Romania's Olympiad Miracle: A Hyper-Stratified Education System

2025-08-30
Romania's Olympiad Miracle: A Hyper-Stratified Education System

Romania's disproportionate success in international academic Olympiads, despite its average educational performance, is examined. The article delves into its highly stratified education system: top students are paired with top teachers in elite schools, incentivized by substantial rewards. While this produces exceptional Olympiad winners, it also leads to significant brain drain as these talents leave for other countries. The article concludes by suggesting other nations adopt similar strategies to maximize their high-potential students' capabilities.

Read more
Tech olympiads

It's Time to Delete Some Tests

2025-08-30

For decades, the importance of testing has been emphasized, yet developers have developed a misguided belief that 'deleting tests is blasphemy'. This article argues that the purpose of tests is to increase confidence, but failing, redundant, slow, or outdated tests actually decrease confidence. Flaky tests waste time, while overly numerous tests reduce efficiency. The author suggests that to improve efficiency and confidence, tests that decrease rather than increase confidence should be deleted, and new tests should be written for new requirements.

Read more
Development

arXivLabs: Community Collaboration on arXiv Feature Development

2025-08-30
arXivLabs: Community Collaboration on arXiv Feature Development

arXivLabs is an experimental framework enabling collaborators to develop and share new arXiv features directly on the website. Participants, individuals and organizations alike, embrace arXiv's values of openness, community, excellence, and user data privacy. arXiv is committed to these values and only partners with those who share them. Got an idea for a valuable community project? Learn more about arXivLabs!

Read more
Development

15x Power Boost for Solar Thermoelectric Generators via Synergistic Spectral and Thermal Management

2025-08-30
15x Power Boost for Solar Thermoelectric Generators via Synergistic Spectral and Thermal Management

Researchers significantly improved the power output of solar thermoelectric generators (STEGs) by optimizing both hot- and cold-side thermal management. They employed a selective solar absorber (SSA) to maximize solar energy absorption and minimize radiative losses, while using an air film to reduce convective losses on the hot side. On the cold side, a micro-dissipator (μ-dissipator) was designed for efficient heat dissipation through convection and radiation. Experiments demonstrated a 15x peak power enhancement when combining both hot- and cold-side optimizations, enough to power an LED, showcasing the potential for applications in IoT and beyond.

Read more

From Multi-Head to Latent Attention: A Deep Dive into Attention Mechanisms

2025-08-30
From Multi-Head to Latent Attention: A Deep Dive into Attention Mechanisms

This article explores the evolution of attention mechanisms in natural language processing, from the initial Multi-Head Attention (MHA) to more advanced variants like Multi-Latent Head Attention (MHLA). MHA weighs important words in context by calculating query, key, and value vectors; however, its computational and memory complexity grows quadratically with sequence length. To address this, newer approaches like MHLA emerged, improving computational speed and scalability without sacrificing performance – for example, by using KV caching to reduce redundant calculations. The article clearly explains the core concepts, advantages, and limitations of these mechanisms and their applications in models like BERT, RoBERTa, and Deepseek.

Read more
AI

Marco Email App's Offline-First Architecture Evolution

2025-08-29
Marco Email App's Offline-First Architecture Evolution

The Marco email app team embarked on a long journey to build an IMAP-based, cross-platform, and offline-first application. They experimented with various solutions, including WatermelonDB, Triplit, and InstantDB, but abandoned them due to performance bottlenecks or functional limitations. Ultimately, they chose Replicache for its superior performance and flexibility, combining it with Orama for robust indexing and search. This story highlights the challenges and opportunities of building high-performance offline-first applications and foreshadows the future of data synchronization: from shared endpoints to shared databases.

Read more

Thunder Compute: DevRel Engineer Wanted – Build the Future of Affordable GPU Cloud

2025-08-29
Thunder Compute: DevRel Engineer Wanted – Build the Future of Affordable GPU Cloud

Thunder Compute, a rapidly growing seed-funded startup (approaching Series A), is hiring a DevRel Engineer. We're a small, highly effective team building the cheapest and easiest GPU cloud for developers. This role is fully owning DevRel – building community, creating demos and tutorials, gathering product feedback, and reporting directly to the CEO. High autonomy, high impact, and you'll help define our DevRel function from the ground up. Requires excellent writing, community building experience, and strong coding skills (Python preferred). GPU/AI experience a plus.

Read more
Startup GPU Cloud

SeedBox Lite: Stream Torrents Instantly

2025-08-29
SeedBox Lite: Stream Torrents Instantly

SeedBox Lite is a revolutionary torrent streaming platform that lets you instantly watch movies and TV shows without waiting for full downloads. Built with modern web technologies, it offers a Netflix-like experience with powerful torrent capabilities. SeedBox Lite supports multiple formats, features smart caching, subtitle support, and responsive design, working seamlessly across Windows, macOS, and Linux. Deployment is a breeze, taking minutes with either Docker or PM2.

Read more
Development

Cloudflare's Signed Agents: A Path to a Closed Web?

2025-08-29
Cloudflare's Signed Agents: A Path to a Closed Web?

Cloudflare's new "signed agents" system, pitched as a safety measure, is argued to be a dangerous path towards a closed web. The system functions like an allowlist, deciding which agents can access the web, contradicting the open nature of the internet. The author advocates for open, portable, and company-independent authentication based on verifiable chains of delegation and request-level proof, rather than a single company's control. The article draws parallels to historical events, highlighting how open standards consistently beat closed plugins, and calls for an open, verifiable, and decentralized authentication system to manage the increasing number of web agents, ensuring the openness and innovation of the internet. The author even offers to open-source a first cut of their proposed solution.

Read more

AI Coding: How Far Are We From Fully Autonomous Programming?

2025-08-29
AI Coding: How Far Are We From Fully Autonomous Programming?

While AI coding tools demonstrate impressive capabilities in code completion and error correction, a new study reveals that AI still has a long way to go before becoming a true programmer. The research highlights challenges AI faces in handling large codebases, complex logic, and long-term planning, leading to hallucinations and errors. Improving AI-human collaboration, such as enhancing interfaces and enabling AI to better understand and communicate uncertainty, will be crucial. Ultimately, AI's role in coding will likely focus on boosting efficiency and shifting abstraction levels, rather than completely replacing human programmers.

Read more
Development

Breaking into the Game Industry: A Veteran's Advice

2025-08-29

A seasoned game developer shares their journey from learning game development in the 1990s to offering advice for aspiring game developers today. The article stresses the importance of self-learning and leveraging modern tools like ChatGPT for efficient learning. It also advises focusing on mastering a specific skill and shares insights into the challenges and opportunities of indie game development, including platform selection (Steam, Roblox, Fortnite). Finally, it provides career advice, emphasizing showcasing value and proactive job hunting.

Read more
Game

Steam UK Implements Credit Card Age Verification, Bypassing VPN Workarounds?

2025-08-29
Steam UK Implements Credit Card Age Verification, Bypassing VPN Workarounds?

To comply with the UK's Online Safety Act, Steam now requires all UK users to verify their age with a credit card to access mature content and games. This has sparked controversy, as users without credit cards are locked out. Valve claims this maximizes user privacy and prevents age verification circumvention. Weeks after the UK's new age-gating rules were found easily bypassed via VPNs, and following brief exploits of Discord and Reddit's age verification, this move is significant. Microsoft is also rolling out Xbox age verification in the UK, currently optional but mandatory in early 2026.

Read more
Game

SGLang: An Open-Source Implementation Matching DeepSeek LLM's Inference Performance

2025-08-29
SGLang: An Open-Source Implementation Matching DeepSeek LLM's Inference Performance

DeepSeek, a popular open-source large language model (LLM), boasts impressive performance. However, its massive size and unique architecture (using Multi-head Latent Attention and Mixture of Experts) demand a sophisticated system for efficient large-scale serving. This blog details how we achieved near-parity with DeepSeek's inference system performance using SGLang. Our implementation, running on 12 nodes (each with 8 H100 GPUs) in the Atlas Cloud, leverages prefill-decode disaggregation and large-scale expert parallelism (EP), reaching 52.3k input tokens/second and 22.3k output tokens/second per node for 2000-token input sequences. This is, to our knowledge, the first open-source implementation to nearly match DeepSeek's reported throughput at scale, at roughly one-fifth the cost of the official DeepSeek Chat API.

Read more

Private Equity's Predatory Grip on Disability Services: A National Crisis

2025-08-29
Private Equity's Predatory Grip on Disability Services: A National Crisis

Private equity firms are aggressively acquiring group homes and other disability services, leading to widespread reports of abuse, neglect, and even death. Driven by profit maximization, these firms often cut costs, compromising the quality of care. While states like Florida have attempted to sanction companies like Sevita, a major player in the field, enforcement is hampered by the firms' multi-state operations and vast resources. Federal and state regulators struggle to keep pace, highlighting a systemic failure to protect vulnerable populations. Some states are enacting stricter regulations on healthcare mergers and acquisitions, but a comprehensive solution remains elusive.

Read more

Anthropic Updates Claude's Privacy Policy: User Data for Model Improvement

2025-08-29
Anthropic Updates Claude's Privacy Policy: User Data for Model Improvement

Anthropic has updated Claude's Consumer Terms and Privacy Policy, giving users the option to allow their data to be used to improve Claude's capabilities and enhance safety features. Opting in allows your data to be used for model training, improving Claude's coding, analysis, and reasoning skills, but extends data retention to five years. Opting out maintains the existing 30-day retention period. This update applies to Claude Free, Pro, and Max plans, but excludes services under commercial terms. Users can adjust their preferences at any time in their settings.

Read more

Unearthing Hidden Gems on Hacker News

2025-08-29

This tool helps you discover recently posted, high-effort content on Hacker News that hasn't received much attention. It searches the HN API's Ask, Show, and New feeds for posts from the last 3-7 days, ranking them by a 'Passion Score'. This score balances text length against engagement (votes and comments), highlighting substantial posts with minimal recognition – perfect for finding insightful contributions the community might have missed.

Read more
1 2 42 43 44 46 48 49 50 596 597