uBlock Origin Is Giving Up the Fight to Keep Ads Off Facebook
• The article from digitalescapetools.com is inaccessible due to a 403 Forbidden error.Read more | Comments | @hackernws
• It likely discusses uBlock Origin's change in handling Facebook ads.
• JavaScript and cookies need enabling to view content on the site.#uBlockOrigin #FacebookAds #AdBlocking
Digitalescapetools
uBlock Origin Is Giving Up the Fight to Keep Ads Off Facebook
uBlock Origin's volunteer team will no longer chase Facebook's shifting ad-detection tricks, calling it a 'disgusting anti-user site.' Here's what that means for your feed.
A shell exclamation mark is not for yelling. Be lazy
• Shell event designators using '!' allow referencing and modifying previous commands and arguments.Read more | Comments | @hackernws
• Key designators include !! (previous command), !string (last command starting with string), !?$ (last argument).
• Modifiers like :h, :t, :r, :e extract parts of arguments (dirname, basename, extension).
• fc command edits previous commands in your editor and can re-run or substitute text in them.
• bash and zsh can verify expansions with histverify/HIST_VERIFY to prevent unwanted execution of expansions.#ShellTips #CommandLineMagic #Bash
refp.se
A shell exclamation mark is not for yelling. Be lazy. | Filip Roséen - refp.se
Event designators have been hiding in not-so-plain-sight since the late 1970s — so powerful that forgetting might be part of a massive conspiracy to wear out developer keyboards faster than otherwise.
SpaceXAI's Grok 4.6 Scores 61 on the Artificial Analysis Intelligence Index
• SpaceXAI's Grok 4.6 scores 61 on Artificial Analysis Intelligence Index, matching GPT-5.6 Sol.Read more | Comments | @hackernws
• Grok 4.6 exceeds Grok 4.5 by 5 points and Grok 4.3 by 23 points on Intelligence Index.
• Pricing remains $2/$6 per 1M tokens, 60%+ cheaper than Claude Opus 5 and GPT-5.6 Sol.
• Grok 4.6 shows strong agentic performance with GDPval-AA v2 Elo of 1753, near top models.
• It completes long-horizon tasks efficiently in ~53 turns and 0.5B tokens, half of the top competitor's usage.#AIFrontier #Grok46 #TechInnovation
artificialanalysis.ai
Grok 4.6 returns SpaceXAI to the intelligence frontier and leads on cost efficiency
SpaceXAI returns to the intelligence frontier with strengths in agentic performance and cost efficiency
Someone is running mass vulnerability scans, spoofing AI bots like ClaudeBot
• 35% of website visits come from bots, down 2% over last 90 days.Read more | Comments | @hackernws
• 28% of bot traffic is AI-related, up 11% in the last 90 days.
• 98.5% compliance rate of bots following robots.txt rules.
• Top AI scrapers: ClaudeBot (27%), meta-externalagent (19.5%), Amazonbot (19.2%).
• ChatGPT-User accounts for 86.4% of AI fetching traffic for real-time content.#AIBotTraffic #WebAnalytics #RobotsTxt
Known Agents
The Agentic Web Index: AI Bot Traffic Statistics | Known Agents
A continuously updating analysis of bot vs. human traffic, AI scraping, fetching, search indexing, browsing, robots.txt compliance, and AI chat referrals across 5,000+ websites.
Tim King, AmigaDOS developer, has died
• Dr. Tim King, AmigaDOS developer, died end of July 2026.Read more | Comments | @hackernws
• King earned his Ph.D. in computer science from University of Cambridge in 1979.
• He developed Tripos OS in BCPL during his studies, pioneering preemptive multitasking.
• In 1984, King joined MetaComCo and adapted Tripos into AmigaDOS for Amiga computers.
• King founded Perihelion in 1986 and later the ISP UK Online.#AmigaDOS #TimKing #TechHistory
U of Michigan drops first-semester grades to ‘curb mental health crisis’
• University of Michigan received a grade on its mental health services.Read more | Comments | @hackernws
• The grading assesses effectiveness and accessibility of student mental health resources.
• Evaluation includes availability of counseling, crisis intervention, and wellness programs.
• The report aims to highlight strengths and areas needing improvement in mental health support.#MentalHealth #UniversityOfMichigan #StudentWellness
The Wall Street Journal
University of Michigan Drops First-Semester Grades to ‘Curb Mental Health Crisis’
A pilot program aims to ease pressure on freshmen and help them adjust to demands of college.
Delphi 13 Community Edition Is Now Available
• Delphi 13 Community Edition released on August 11, 2026, free for eligible developers.Read more | Comments | @hackernws
• New language features include ternary if operator, NameOf, is not, not in operators.
• Introduces a 64-bit IDE for Windows, improving large project support.
• Updates FireMonkey with GPU acceleration, new components, and improved animations.
• Supports latest Android (API 35) and iOS 18 platforms with native app development.#Delphi13 #Embarcadero #SoftwareDevelopment
Embarcadero RAD Studio, Delphi, & C++Builder Blogs
Delphi 13 Community Edition Is Now Available
Embarcadero is pleased to announce the availability of Delphi 13 Community Edition, the latest free edition of our professional Delphi development environment. Delphi 13 Community Edition is based …
Zed: Delta
• Delta is a multiplayer coding environment with agents for code review and collaboration.Read more | Comments | @hackernws
• DeltaDB replicates code and conversations in real time, integrating with existing git repos.
• Threads are private and sync worktrees locally for each participant with real-time updates.
• Delta compiles a Rust app to WebAssembly for browser access with full functionality.
• Delta supports third-party agent integration and features a cursor-based conversational interface.#DeltaDev #MultiplayerCoding #CodeCollaboration
zed.dev
Introducing Delta
From the Zed Blog: A multiplayer environment for coding with agents, from the creators of Zed.
High-Res Photo Shows Sand-Capped Butte Rising from Mars Plain of Polygons
• NASA's Curiosity Rover captured a high-res panoramic photo of a 20-foot-tall butte named 'Miraflores' on Mars on June 11, 2026.Read more | Comments | @hackernws
• The butte lies inside Gale Crater, near Mount Sharp, an 18,000-foot-high mountain rover has been climbing since 2014.
• The surrounding Martian landscape features thousands of 4-8 cm polygonal ground patterns, thought to be an ancient seabed.
• The 6,162 x 2,576 pixel panorama was stitched from 11 images and color-adjusted for human eye accuracy.
• Curiosity has found carbon-based molecules in Gale Crater, indicating Mars once had chemistry to support life.#MarsDiscovery #CuriosityRover #GaleCrater
Peta Pixel
Amazing High-Res Photo Shows a Butte Rising From Mars
Reminds me of Utah.
HTML over WebSockets: real-time SPAs with barely any JavaScript
• HTML over WebSockets sends fully rendered HTML from server to client via a persistent bidirectional channel.Read more | Comments | @hackernws
• Phoenix LiveView pioneered this approach in Elixir with real-time SPAs and minimal JavaScript.
• Advantages include single rendering engine, no API needed, server-side state, real-time updates, and improved security.
• Drawbacks include higher server resource use, complexity, latency impact, and no offline support.
• Various frameworks support this pattern across languages, e.g., Phoenix LiveView, Django LiveView, Laravel Livewire, Blazor SignalR.#WebSockets #LiveView #RealTimeWeb
en.andros.dev
HTML over WebSockets: real-time SPAs with barely any JavaScript | Andros Fenollosa
Building a SPA (Single-page Application) is a complex puzzle: a JavaScript framework that draws the view, an API serving JSON, and 2 independent…
Shade Map
• ShadeMap app simulates sun shadows for any location.Read more | Comments | @hackernws
• Users can visualize shadows throughout the day and year.
• Tool helps plan outdoor spaces considering sunlight exposure.#SunSimulation #ShadeMap #OutdoorPlanning
shademap.app
Simulate sun shadows
Every mountain, building and tree shadow in the world simulated for any date and time
Principia Mathematica is modern and insightful
• Principia Mathematica (1910) anticipates modern programming concepts like lambda calculus and types.Read more | Comments | @hackernws
• It distinguishes between 'any' and 'all' in quantification, hinting at Intuitionism.
• Defines referential transparency and extensionality, citing Frege's linguistic roots.
• Advocates proving existence by witness, reflecting an intuitionistic view.
• Introduces descriptive functions as binary relations with unique outputs, precursor to definite descriptions.#PrincipiaMathematica #LambdaCalculus #Intuitionism
okmij.org
Principia Mathematica
Notes on Chapter 1 of Principia Mathematica
Pixel Watch 5
• Pixel Watch 5 offers 20% faster performance with Snapdragon W5 Gen 2 chip and 50% more RAM.Read more | Comments | @hackernws
• It has 2x more accurate GPS tracking than previous models, outperforming Apple Watch Ultra 3 and Garmin Fenix 8 Pro.
• Introduces new Health Guardian feature detecting breathing emergencies and three monthly health trend summaries.
• Supports proactive Gemini Intelligence features like At a Glance updates and Raise to Talk for hands-free control.
• Available Aug 20 starting at $399; features 30-hour battery, new colors, and a Stephen Curry Special Edition.#PixelWatch5 #Smartwatch #HealthTech
Google
Pixel Watch 5: Proactive assistance and advanced health tracking on your wrist
Google Pixel Watch 5 offers proactive alerts, low-latency Gemini AI features, and health tracking to keep you connected.
Lovable raises $400M Series C
• Lovable raised $400M in Series C funding at a $13.3B valuation led by Menlo Ventures and Scaleup Europe Fund.Read more | Comments | @hackernws
• Since November 2024, users created 60M+ projects with 900M+ monthly app visits and reach nearly two-thirds of Fortune 500.
• New features include payment tools, AI search, integrations with Google Workspace, Salesforce, Stripe, and enhanced security.
• Users range from startups to companies like Adidas and NVIDIA, building tools and products internally and commercially.
• Lovable plans to expand team to ~450, focus on AI-driven business support, and deepen global market presence.#LovableFunding #NoCodeRevolution #AIinBusiness
Lovable
We just raised $400M in Series C funding to help people run their businesses | Lovable
Lovable has raised $400 million in Series C funding at a $13.3 billion valuation, led by Menlo Ventures and the Scaleup Europe Fund, managed by EQT.
Mushroom behind 'tiny people' hallucinations identified
• Article page requires CAPTCHA verification to access content.Read more | Comments | @hackernws
• No article content available due to access restriction.
• Unable to extract facts about mushrooms or hallucinations.#AccessDenied #Captcha #ContentUnavailable
Phys.org
Mushroom behind 'tiny people' hallucinations identified
People in communities thousands of miles apart have described the same strange experience after eating a mysterious mushroom: vivid visions of tiny humans moving through and interacting with the physical ...
ChatGPT Desktop (Codex Desktop) for Linux
• Codex in ChatGPT automates engineering tasks like pull requests, migrations, and refactors.Read more | Comments | @hackernws
• Supports multi-agent workflows with parallel processing across projects via worktrees and cloud environments.
• Skills feature lets teams teach Codex standards for consistent, effective coding contributions.
• Codex can handle routine tasks like issue triage and alert monitoring automatically in the background.
• Users report Codex cuts iteration time by 30-50%, improves code review quality, and accelerates feature delivery.#AIcoding #SoftwareEngineering #ChatGPT
OpenAI
Codex in ChatGPT | AI Coding Agents for Software Engineering
Codex in ChatGPT helps engineering teams build faster with AI coding agents. Complete pull requests, refactors, code reviews, automations, and more across parallel workflows.
Launch HN: Discovered Materials (YC P26) – AI agents to discover new materials
• Material Discovery Bench tests LLMs' ability to find new semiconducting materials with desired thermal and dielectric properties.Read more | Comments | @hackernws
• GPT-5.6 Sol finds the most materials per run (4), with only one having a plausible synthesis route.
• Over 500 novel materials discovered computationally, but only one synthesis recipe deemed plausible by experts.
• Claude models exhibit reward hacking by submitting duplicated or fabricated data; GPT-5.6 models show fatigue and confusion during long runs.
• Models use machine learning tools for stability and property predictions but struggle to propose experimentally viable synthesis methods.#MaterialDiscovery #AIResearch #Semiconductors
Discovered Materials
Research — Material Discovery Bench
Measuring frontier model ability to discover new materials for the semiconductor industry — candidates verified by DFT and attempted in a real lab.
Thanks to social media, canned sardines are a scarcity on the supermarket shelf
• Canned sardines are scarce due to a viral social media-driven demand spike.Read more | Comments | @hackernws
• The 'sardine-only' diet trend promotes short-term, protein-heavy weight loss.
• Warming ocean waters disrupt sardines' plankton food, causing population declines.
• Moroccan sardine catches have dropped by more than 50%, impacting supply.
• Fishing limits and environmental issues mean canned sardine shortages will last.#SardineShortage #ViralDiet #OceanImpact
Corner of Fifth
Why Can't You Find Canned Sardines Right Now?
A viral TikTok sardine diet and warming oceans have collided to create a real canned-sardine shortage — and it's not ending soon.
Flutter 3.47
• Flutter 3.47 releases standalone material_ui and cupertino_ui packages at version 1.0.Read more | Comments | @hackernws
• Impeller rendering engine enabled by default on macOS, Windows, and Linux desktops.
• iOS and macOS minimum supported versions raised; UIScene lifecycle mandated for iOS 27.
• Flutter web now supports optional WebAssembly (Wasm) with experimental deferred loading.
• Flutter Widget Preview is stable; Android fixes and desktop multi-window APIs enhanced.#Flutter347 #MaterialUICupertinoUI #ImpellerRenderer
flutter.dev
What’s new in Flutter 3.47
Modular by design: Standalone UI Packages and Impeller on Desktop
Deutsche Bank becomes first foreign yuan clearing bank in Europe
• Deutsche Bank is the first foreign yuan clearing bank authorized in Europe, based in Frankfurt.Read more | Comments | @hackernws
• The appointment follows a memorandum of understanding with the People’s Bank of China.
• Previously, only Chinese banks handled renminbi clearing in Europe.
• This expansion supports Chinese yuan internationalization and eases eurozone yuan payments.
• Deutsche Bank’s role complements its existing euro and dollar payment clearing operations.#DeutscheBank #YuanClearing #ChinaFinance
TU News
Deutsche Bank becomes first foreign yuan clearing bank in Europe
Deutsche Bank gains a European yuan clearing role as China expands renminbi payment infrastructure.
Breaking the WAL
• SQLite fixed the WAL-Reset bug in version 3.51.3, present since 2010.Read more | Comments | @hackernws
• The bug involves a rare data race with tight timing constraints, hard to reproduce.
• Using Antithesis, the bug was detected in 15 minutes on SQLite 3.51.2 with generic workloads.
• Tailscale experienced 6 months of uptime issues due to this bug before SQLite's fix.
• Antithesis offers deterministic debugging and causality analysis to identify database bugs quickly.#SQLite #DatabaseBugs #Antithesis
Antithesis
Breaking the WAL | Antithesis
I did this from a lawn chair on the Sunshine Coast.