Alvaro Lopez Ortega / 2026-07-12 Briefing

Created Sun, 12 Jul 2026 21:42:12 +0000 Modified Mon, 13 Jul 2026 08:08:53 +0000
5819 Words

Hackers hijacked Argentina’s football federation email account to demand “justice” for Egypt over a controversial World Cup loss, escalating sports disputes into cyberattacks. Separately, security researchers exploited a critical SQL injection in Apple’s Book Travel portal to achieve remote code execution. Motorola MR2600 routers are also vulnerable to unauthenticated RCE via malicious firmware uploads, lacking cryptographic signing. Meanwhile, the AI boom is driving extreme boom-bust cycles in memory manufacturing, with warnings of a potential “RAMpocalypse” as demand strains supply.

πŸ”’ Security & Privacy

Hackers hijack Argentina football federation to demand “justice” for Egypt

Hackers hijacked an Argentina Football Federation email account to send mass messages demanding “justice” for Egypt after a controversial World Cup loss, claiming biased officiating and a reversed VAR goal cost Egypt the win. The AFA confirmed the emails were unauthorized, urged recipients to ignore them, and investigated the breach. The incident highlights how sports disputes can trigger cyberattacks targeting institutions.

Motorola MR2600 RCE Vulnerability

The Motorola MR2600 router contains an unauthenticated remote code execution vulnerability. An attacker can upload a malicious firmware image via the /WEBCGI1/prog.fcgi endpoint and then flash it using the LoadFirmwareValidation SOAP endpoint, both without authentication. The firmware lacks cryptographic signing, allowing full device compromise.

Hacking Apple - SQL Injection to Remote Code Execution

Security researchers Harsh Jaiswal and Rahul Maini discovered a critical SQL injection vulnerability in Apple’s Book Travel portal by analyzing the Masa/Mura CMS source code. They built a custom CFM parser to identify unsanitized queries, traced the vulnerable sink to the ContentHistID parameter in the JSON API, and exploited the flaw to achieve Remote Code Execution (RCE).

Since Chrome 148, Math.tanh uses the host system’s math library instead of a bundled implementation, causing its results to vary by OS (Linux, macOS, Windows) on a fraction of inputs. This creates a new browser fingerprinting signal that can reveal the operating system. Only Math.tanh leaks this way; other math functions remain consistent across platforms.

Samsung is pushing users to train AI with their personal health data or lose it

Samsung Health now requires users to consent to sharing personal health dataβ€”including activity, records, medication, and menstrual cyclesβ€”for AI training, or lose the ability to sync data with their Samsung account. Opting out triggers a warning that syncing will stop and data may be deleted. This policy impacts core functionality of the app and compatible devices like the Galaxy Watch.

Croc: Securely transfer files and folders between two computers

croc is a command-line tool that enables secure, end-to-end encrypted file transfers between any two computers via a relay, supporting cross-platform use, multiple files, resumed transfers, and IPv6 without requiring a local server or port forwarding. It can work through proxies like Tor and provides installation instructions for various operating systems and package managers.

What xAI’s Grok build CLI sends to xAI: A wire-level analysis

The Grok Build CLI transmits file contents, including secrets, to xAI via model turns and session trace uploads, and independently uploads the entire repository as a git bundle to a Google Cloud Storage bucket even when told not to read files. This behavior is active by default and persists even when “Improve the model” is disabled. The analysis proves transmission and storage but not that xAI trains on the data.

πŸ€– AI & Machine Learning

InfiniteDiffusion:Bridging Learned Fidelity and Procedural Utility for Open-World Terrain Generation

InfiniteDiffusion is a training-free algorithm that extends diffusion models for unbounded, seed-consistent generation with constant-time random access, resolving the trilemma between infinite extent, stateless generation, and learned realism. Built on this, Terrain Diffusion uses a hierarchical stack of diffusion models and a Laplacian encoding to generate realistic procedural terrain at planetary scales at interactive rates on consumer hardware.

Claude Code rate limit promotion extended

Anthropic has extended access to its Claude Fable 5 model on all paid plans and is maintaining 50% higher weekly rate limits for Claude Code through July 19, 2026, pushing back a previous July 12 deadline by one week. The promotion, automatically applied from May 13 to July 19, covers Pro, Max, Team, and legacy seat-based Enterprise plans but excludes free and consumption-based Enterprise plans. After July 19, limits will revert to standard levels.

The One-Step Trap (In AI Research)

The one-step trap in AI research is the mistaken belief that iterating one-step predictions can reliably produce accurate long-term predictions, but errors compound and computational complexity becomes exponential in stochastic environments. The proposed solution is to use temporally abstract models such as options and general value functions (GVFs).

Claude Code sends 33k tokens before reading the prompt; OpenCode sends 7k

A small study found that Claude Code sends 33,000 tokens before reading the prompt, while OpenCode sends only 7,000, making Claude Code significantly more inefficient in cache strategy and token usage. The research was prompted by anecdotal evidence of higher usage costs when forced to use Claude Code. Logging between the coding tools and Anthropic’s endpoint confirmed the disparity.

W11 Copilot tells you what’s slowing down your PC, while using 1GB RAM itself

Windows 11 is testing a new “PC Insights” feature for Copilot that can analyze system resources like CPU, RAM, and storage to answer performance questions, though Copilot itself consumes up to 1GB of RAM. The feature reads hardware specs, network info, and battery health, and can suggest actions like freeing storage for large games.

Automation Without Understanding

The essay argues that the simultaneous rise of AI-generated mathematics and the weakening of the U.S. human mathematics pipeline is a strategic error, as trained human verification and interpretation of math are crucial infrastructure. It cites the May 2026 AI disproof of an ErdΕ‘s conjecture and federal funding cuts, and proposes requiring AI systems to expose key reasoning in formal, machine-checkable form.

Autoresearch, Claude and Constrained Optimization

The author used Claude Code to test AI agents on file compression, defining success by minimizing file size under constraints of perfect decompression and a 300-second time limit. The experiment evaluates whether AI agents can reliably solve problems traditionally handled by external libraries, potentially reducing supply chain risks.

AI boosts research careers but narrow the span of ideas explored: study

Scientists who use AI publish more papers, gain more citations, and advance faster, but this comes at the cost of narrowing the range of research topics explored and reducing follow-on engagement, according to a study of over 40 million papers. The findings highlight a tension between individual career success and collective scientific progress, as AI tools reward speed and scale over originality.

Anthropic found a hidden space where Claude puzzles over concepts

Anthropic developed the Jacobian lens (J-lens) to reveal hidden words in a model’s “J-space,” showing what an LLM is “thinking” before it speaks. This technique provides the clearest view yet of internal processes, often revealing that the model’s actual reasoning differs from its output. The company claims this offers a new way to understand and control large language models.

What happens between entering the prompt and seeing the first word appear

During inference, an LLM generates responses one token at a time through autoregressive generation: it runs a forward pass on the prompt, samples a token, appends it, and repeats until a stop token is reached. This process is slow because each step re-processes the entire sequence so far, making most computations redundant, though the KV cache mitigates this inefficiency.

πŸ’» Software Development

Closing a three-year-old issue using Rust arenas

A Gleam core team member resolved a three-year-old issue by replacing heap-allocated Box pointers with arena-allocated references in the pretty printer, using the typed_arena crate. This change improved formatter performance and reduced peak memory usage by 10%, accomplished through a large pull request (+2963/-1032 lines).

Evan’s Jujutsu Tutorial

Jujutsu (jj) is a simple and powerful version control system. This tutorial is concise and aimed at readers familiar with Git, with alternative tutorials listed. The content is human-written, with AI used only for error checking.

EF Core 11 makes your split queries faster

EF Core 11 improves split query performance by pruning unnecessary reference navigation joins from collection queries, reducing overhead. Previously, these joins and ORDER BY columns were included in every collection query even when not needed. Benchmarks show a notable speedup compared to EF Core 10.

Ghostel.el Terminal Emulator

Ghostel.el is an Emacs terminal emulator built on libghostty’s VT engine, using a native Zig module for terminal state, rendering, and PTY I/O while Elisp handles keymaps and buffer management. It automatically downloads the native module on first use and supports modern protocols including Kitty keyboard and graphics, OSC 8 hyperlinks, and synchronized output.

Data-directed programming in Haskell (SICP2.4.3)

The article demonstrates a data-directed programming approach in Haskell for complex numbers, where operations like real_part and magnitude are stored in a mutable table keyed by operation name and type tag ("rectangular" or "polar"). This allows generic arithmetic functions to work with either representation without modifying existing code when adding new types.

The Proportional Web

Oskar WickstrΓΆm has released “The Proportional Web,” a CSS stylesheet inspired by Robert Bringhurst’s The Elements of Typographic Style, using Alegreya fonts, justified text, and a root font-size-based sizing system. The open-source project aims to implement print typography principles in the browser, featuring responsive scaling and hyphenation controls.

Tiny Emulators

The website “Tiny Emus” hosts a large collection of interactive emulations for retro systems such as KC85, Amstrad CPC, ZX Spectrum, Commodore, and others. Each entry includes a user interface link for playing classic software and demos. The page lists hundreds of games and demos across multiple platforms.

Shirei, cross-platform GUI framework in native Go

Shirei is a cross-platform GUI framework for Go that uses an immediate mode API, enabling UIs written entirely in Go without HTML or JavaScript. It produces native executables (β‰ˆ10β€―MB) for macOS, Windows, and Linux, with full support for international text, flexible layout, and no external dependencies on Linux. The framework follows a true immediate mode, where developers describe the UI each frame based on data, avoiding manual state management similar to React.

Introducing: Zotfile Agents

Zotfile Agents allow users to bundle agent behavior, skills, requirements, and permissions into a single portable .zot file. This enables easy sharing and deployment of agent configurations across different environments.

Agent Harness Engineering

Agent harness engineering treats the prompts, tools, and execution logic surrounding an AI model as a critical artifact, systematically preventing agents from repeating mistakes. A decent model with a great harness outperforms a great model with a bad one, shifting engineering focus from model selection to designing the agent’s supporting infrastructure.

Kurvengefahr – browser CAD/CAM for pen plotters

A browser-based CAD/CAM tool for pen plotters, Kurvengefahr, allows users to import or create artwork, prepare plotting files, and integrate with hardware via Web Serial. It supports EBB (AxiDraw) and GRBL plotters and includes features like a Logo interpreter and handwriting synthesis. The developer invites feedback from owners of these plotters, as testing was done only with a hardware mock.

Skillscript – A declarative, sandboxed language for tool orchestration

Skillscript is a minimal, declarative language designed to define fixed procedures for local AI agents, ensuring consistent execution without model drift or unnecessary token costs. It allows users to write bounded, sandboxed scripts with named steps, variables, and tool calls that a local model executes directly, rather than interpreting instructions. The project is pre-1.0 and self-hosted, with the author seeking feedback on language design and trust model for agent-authored skills.

Only 1 of 4,356 reachable MCP servers is ready for the 2026-07-28 spec

A tool called mcp-spec-check scanned 4,356 reachable MCP servers and found that only one passes all three required checks for the upcoming 2026-07-28 spec release, which replaces the initialize handshake with a stateless core and mandates routing headers. The scan of 7,850 registry servers showed 90.8% are not ready, indicating minimal adoption ahead of the spec’s publication.

Making Crash Bandicoot (2011)

In 1994, Naughty Dog co-founders conceived a 3D character platformer inspired by Sonic during a road trip after selling their fighting game to Universal. They chose the PlayStation over other consoles and, with new hires, began developing what would become Crash Bandicoot.

Understanding the Odin programming language

“Understanding the Odin Programming Language” by Karl Zylinski teaches both basic and advanced concepts of the Odin language, including manual memory management and data-oriented design, targeting programmers with some experience. The book is praised by the language’s creator and reviewers for its clarity, and is available in HTML and eBook formats with recent updates improving content on strings and fixed-capacity dynamic arrays.

Yt-Dlp Sequence Diagrams

The article presents Ilograph diagrams documenting three system architectures: the Ilograph Serverless back-end on AWS, a containerized load testing system on AWS, and Stack Overflow’s on-premises architecture circa 2016-2019. It also highlights Ilograph Pro features, including unlimited custom icons and a 30-day team workspace trial.

6Γ— faster binary search: from compiled code to mechanical sympathy

The article details how the author improved a binary search implementation used in scikit-learn by 6Γ— through low-level CPU optimizations, such as reducing branch mispredictions and leveraging hardware features. The starting code was already a standard compiled binary search running in parallel.

Mindwalk – Replay coding-agent sessions on a 3D map of your codebase

Mindwalk is a local visualization tool that replays coding-agent sessions (Claude Code, Codex) on a 3D map of a codebase, highlighting files the agent searched, read, or edited to reveal its task understanding. It offers radial tree and treemap views, playback controls, file-inspection history, and session timeline marks, with all processing done locally and no data leaving the machine. The tool separates session traces from repository layouts, enabling comparable replays across different sessions.

A Erlang style pure Scheme Webserver and further

Igropyr is a web server built on Pure Chez Scheme that uses Erlang-style actors and a libuv event loop, enabling automatic crash recovery and hot-swapping of code without downtime. It supports preemption to prevent stuck workers, structured fault communication to clients over persistent connections, and multi-request dialogues as green processes with transactional guarantees. The server also preserves exact numeric types across the wire and defaults to zero-downtime operation via graceful shutdown and SO_REUSEPORT multi-process listening.

πŸ“ˆ Tech Industry & Business

Memory makers are slaves to the boom-bust rollercoaster, and the AI boom is the wildest ride of all

Memory makers are subject to boom-bust cycles, and the current AI-driven surge is proving to be the most volatile yet. The article warns that the “RAMpocalypse” could foreshadow a broader “AIpocalypse” as demand strains supply.

Apple taping out M7 with NPU upgrades, M7 Ultra (1.5TB RAM), M8 for 2028; new Pencils with iPad Pro

Apple’s upcoming M7 chip will feature major NPU upgrades, with the M7 Ultra supporting up to 1.5TB RAM, as part of a roadmap through M8 in 2028 that reflects the company’s AI-driven shift. New Apple Pencil styluses are in development alongside a new iPad Pro, and iPhone’s tap-to-pay feature will be expanded in retail stores.

AirDNA: Airbnb saw 52K+ new listings in US World Cup host cities, hotel bookings underperformed

During the FIFA World Cup group stage, short-term rental platforms like Airbnb saw over 52,000 new listings in U.S. host cities, while hotel bookings fell short of expectations as price-conscious fans opted for homes.

Vendelux, a live B2B event platform, raises $50M Series B led by Tribeca Venture Partners

Vendelux, a live B2B event information platform, raised $50 million in Series B funding led by Tribeca Venture Partners. The company uses AI and data from over 250,000 events to help B2B brands select events and measure ROI, and plans to double its 85-person staff this year.

Bending Spoons (Vimeo, AOL, Evernote) got 800k apps, hired 286

Bending Spoons, the company behind Vimeo, AOL, and Evernote, received 800,000 job applications last year but hired only 286 people, making its acceptance rate lower than that of Harvard. The company’s hiring process is now more selective than America’s most elite colleges.

SpaceX built to separate retail investors from their money

SpaceX (SPCX) shares have dropped roughly 28% from their post-IPO high above $200. Veteran investor George Noble has reiterated his bearish outlook, cautioning that the stock may face significant insider selling in the coming months.

Neocities: Create your own free website

Neocities is a static web hosting service that aims to make the web fun again by giving users control over self-expression, offering an in-browser HTML editor, drag-and-drop uploads, and zero advertising. The platform features community tools like site following and tags, along with a global CDN for fast loading, and is funded through supporter accounts and donations rather than ads or AI data selling. The service is open source, prioritizing user trust and independence.

LARP – Revenue infrastructure for serious founders

LARP is a satirical platform that enables startups to inflate reported revenue by sending $10,000 to another founder, who immediately returns it, creating fake ARR without cash movement or customers. The platform frames this as a joke about accounting fraud but includes disclaimers about compliance, noting that users are responsible for ensuring transactions have economic substance.

Theo de Raadt: “You’ve been smoking something mind altering” (2007)

Theo de Raadt dismisses claims that x86 virtualization provides security benefits, arguing it adds a bug-prone layer atop a flawed architecture. He asserts that developers who cannot write secure operating systems are unable to produce secure virtualization layers.

An explanation of our search results

Google explains that searching for “Jew” yields disturbing results due to automated algorithms and the word’s frequent anti-Semitic usage, not because Google endorses those views. The company states its ranking system is objective and cannot be manually altered by petitions, only by legal requirements or spam interventions. Google apologizes for the upsetting experience and provides resources on the issue.

The Lunduke Computer Operating System

The Lunduke Computer Operating System (LCOS) is a Linux distribution based on Devuan that enforces principles including no AI, no systemd, no online accounts, and a 90s-style UI. It operates as a “monarchy” with total control held by Lunduke to prevent political activism, and is currently in early development with support exclusive to Lunduke Journal subscribers.

IT administrators are “fed up” with Microsoft’s “useless” apps and Windows 11

IT administrators are expressing frustration with Microsoft’s Windows 11 and its apps, citing a security patch that broke Microsoft 365 authentication in RDS environments, poorly designed PowerShell commands, and difficult Windows app deployment. These complaints, shared on Reddit, have garnered strong support from other sysadmins.

Vinod Khosla to Buy Seattle Seahawks for $9.6B

Vinod Khosla and his family have agreed to purchase the Seattle Seahawks from Paul Allen’s estate for $9.6 billion, one of the highest valuations ever for a sports team. His wife, Neeru Khosla, will serve as the team’s control owner, while their son Neal will also hold a leadership role. The deal requires Khosla to sell his minority stake in the San Francisco 49ers.

Firefox 12.58% for Desktop Browser Market Share in North America June 2026

As of June 2026, Chrome dominates the North American desktop browser market with a 60.6% share, while Firefox holds 12.58% and Edge closely follows at 12.19%. Safari, Brave, and Opera account for the remaining shares at 9.56%, 2.46%, and 1.39%, respectively.

A dock that wakes up reliably

After years of Thunderbolt docks failing to reliably wake laptops from sleep, the author’s issue persisted even with a CalDigit TS4 dock. The problem was finally resolved in 2025 by replacing their monitor with an ASUS ROG Swift, though the reason for the fix remains unknown.

πŸ”¬ Science & Health

An orbiting disco ball gave Einstein’s theory its most precise test yet

A team led by Ignazio Ciufolini achieved the most precise measurement of Earth’s frame dragging (Lense-Thirring effect) to date, reducing uncertainty to 0.2%. They used the LARES-2 satellite, a dense sphere with a low area-to-mass ratio, to minimize interference from other forces. This effect, predicted by Einstein’s general relativity, describes how a rotating mass twists spacetime.

Why study Diophantine equations?

The study of Diophantine equations aims to uncover hidden structures in integers, starting with simple linear equations like (Ax = B) that introduce divisibility and modular arithmetic. More complex equations such as (Ax + By = C) lead to the Euclidean algorithm and unique prime factorization. These foundational concepts pave the way for deeper mathematical structures, including those explored in the Langlands program.

The shingles vaccine may reduce the risk of dementia

A study suggests that the shingles vaccine may lower the risk of developing dementia, potentially offering a preventive benefit beyond its primary purpose. The findings add to growing evidence that certain vaccines could have neuroprotective effects. Further research is needed to confirm the mechanisms behind this association.

Experimental drug reverses fatty liver disease by repairing the gut

An experimental drug called DT-109 reversed severe fatty liver disease in animal models by repairing the gut barrier, reducing harmful Clostridium perfringens bacteria and ammonia levels. The treatment prevented toxins from reaching the liver and decreasing inflammation, offering a potential new approach for MASH and possibly other diseases linked to gut health.

Mystery behind Moana: After 1,700 years, why did Polynesians suddenly sail east?

New climate evidence reveals that a severe, prolonged drought in the southwest tropical Pacific between 850 and 1200 AD coincided with rising populations, likely driving ancestral Polynesians to end a 1,700-year pause and undertake massive eastward voyages to settle distant islands like Hawai’i, New Zealand, and Easter Island.

Survival guide: Key advice for what to do if you find yourself in a wildfire

A wildfire in southern Spain has killed at least 12 people and forced evacuations, prompting officials to stress safety guidelines. Key advice includes staying calm, moving sideways from the fire front, and never taking uncoordinated shortcuts, as many victims died after straying from official evacuation routes.

Unexpected Solidlike Fracture in Simple Liquids

Researchers have observed that simple liquids can unexpectedly exhibit solidlike fracture behavior, challenging conventional assumptions about the mechanical properties of liquids under certain conditions.

The Energetic Costs of Cellular Computation (2012)

A 2012 study calculated the energetic costs of a simple two-component cellular network computing ligand concentration, finding that such computations require breaking detailed balance and consuming energy, with greater accuracy demanding more energy. These costs may constrain networks in resource-poor environments like bacterial spore germination.

Autopsy Study Finds Replicating SARS-CoV-2 in the Hearts of Long Covid

A study of 74 decedents with prior COVID-19 found that 11 had evidence of replicating SARS-CoV-2 in their heart tissue; 82% of these individuals had cardiac Long COVID compared to 37% of those without viral persistence. The presence of the virus was associated with left ventricular dilatation, higher heart-weight-to-wall-thickness ratios, and altered expression of 44 inflammation-related genes, particularly IRF4. These findings suggest that persistent viral replication in the heart may drive the structural and immune changes underlying cardiac Long COVID symptoms.

Martha Lillard, last US polio patient using iron lung, dies at 78 in Oklahoma

Martha Lillard, the last U.S. polio patient to rely on an iron lung, died June 26 in Oklahoma at age 78 from complications of long-haul COVID-19 and post-polio syndrome. She contracted polio at age 5 and defied expectations by living independently, marrying, and pursuing creative interests.

🌐 Society & Culture

EU to propose digital rules by year-end to protect consumers from online spending traps

The European Commission plans to propose new digital rules by year-end to protect consumers from online spending traps. EU Justice Commissioner Michael McGrath stated that Big Tech companies could face fines for failing to comply with consumer protection laws. No specific penalty amounts or timelines were provided.

I Learned to Read Again

Sam Kahn describes how his childhood passion for reading declined due to social pressures, school demands, and work, but he later rediscovered recreational reading after college.

Against Usefulness

Folk Computer is an open-source physical computing system where paper serves as a live program in a room-scale environment, enabling collaborative, full-body programming without monitors. The article contrasts this with the current tech monoculture and argues that “useless” research, historically supported by institutions like the ACM, is essential for future useful innovations.

How Ukraine Built a War Fighting State

Ukraine has shifted the war’s momentum by reforming its military command structures, forming larger corps to improve leadership efficiency, and creating a market-based system for drone supplies that rewards effective units with confirmed kills. These changes addressed Soviet-era command inefficiencies and resource allocation problems, allowing Ukraine to better leverage its smaller population and economy against Russia’s larger forces.

The European Oligarchy

European leaders such as Roberta Metsola, Manfred Weber, and Ylva Johansson are accused of operating as an oligarchy by repeatedly overriding democratic votes, exemplified by the Chat Control legislation. The article argues they hypocritically condemn Russian election interference while undermining democracy through strategic voting tactics. It concludes that this system, where citizens’ will is ignored, should be termed a “European Oligarchy” rather than a democracy.

TK, or the secret to effortless writing (2024)

The article introduces the “TK” technique from journalism, where writers insert “TK” (meaning “to come”) as a placeholder to maintain writing momentum instead of stopping to find the right word or fact. Additionally, TK serves as an effective built-in TODO list because it never appears naturally in words, avoiding false positives unlike “TODO” or “TC.”

How to read more books

To read more books, replace screen time by removing social media and streaming apps from your phone and always carrying a book or ebook reader to read during idle moments like waiting or commuting. Reading multiple books simultaneously and alternating between digital and physical copies can help sustain the habit.

The power of collaboration: How we can reduce traffic congestion

A Google Research study published in Nature Cities found that modifying Google Maps to reroute less than 2% of trips away from congested segments in 10 major US cities measurably improved driving speeds and reduced emissions citywide. This first large-scale experiment demonstrates that even small, targeted routing changes can enhance overall network efficiency, moving toward cooperative traffic optimization.

All Watched over by Machines of Loving Grace (2011)

The BBC documentary series “All Watched Over by Machines of Loving Grace” argues that computers have failed to liberate humanity and instead distorted our view of the world. The first episode traces how Ayn Rand’s ideas influenced Alan Greenspan, contributing to the 1997 Asian financial crisis.

Don’t you mean extinct?

In 1993, CGI in Jurassic Park made stop-motion artist Phil Tippett feel “extinct,” mirroring modern programmers’ anxiety over AI replacing their work. The article urges developers to adapt by learning large language models as new tools, emphasizing that problem-solvingβ€”not coding itselfβ€”is the core skill.

Sears Modern Homes

Sears, Roebuck and Co. sold over 70,000 mail-order kit houses from 1908 to 1942, primarily in the East Coast and Midwest. The kits were shipped by rail and assembled by homeowners or local builders. The program ended in the early 1940s, and most sales records were later destroyed, making it difficult to identify surviving homes today.

GINA Gallery, founded in 2003, is the world’s largest institution specializing in NaΓ―ve Art, featuring over 100 artists from more than 30 countries across two floors. It offers a broad perspective on the genre’s diverse cultural expressions and unique artistic styles.

Woman in Brazil enslaved for 55 years by 3 generations of the same family

A woman in Brazil was rescued at age 62 after being enslaved for 55 years by three generations of the same family, working without pay or vacation since age seven. The family agreed to compensate her with a $30,000 apartment and $10,000, though she remains living with them temporarily while authorities search for her relatives.

Sen. Lindsey Graham dies at 71 after ‘brief and sudden illness’

Senator Lindsey Graham (R-S.C.) died at age 71 from an aortic dissection due to arteriosclerotic cardiovascular disease. A close ally of President Trump and chairman of the Senate Budget Committee, his death triggers a special primary by August 11 to replace him as the Republican nominee for the November election, with Governor Henry McMaster appointing an interim successor.

Death of the Status Update: Why 55% of Americans Stopped Posting on Social Media

A survey by Incogni found that over half of Americans now view maintaining a social media presence as work, with 60% of Gen Z feeling this pressure most acutely. Many users are posting less due to algorithm clutter and personal data concerns, while Boomers report feeling less pressure than younger generations.

Growing list of countries move to ban social media for children

More than 20 countries have implemented or proposed restrictions on children’s social media access, targeting those under 15 or 16. Bans are already in force in Australia, Brazil, China, Indonesia, and Malaysia, while the European Union is considering a potential ban, and nations like Greece, Turkey, the UK, and Canada are among those planning or debating similar measures.

Sen. Lindsey Graham dead at 71 after ‘brief and sudden’ illness, office says

Senator Lindsey Graham died at 71 on July 12, 2026, after a brief illness shortly after returning from Ukraine. His death adds uncertainty to the Republican Senate majority, as he was a key ally of Israel, Ukraine, and NATO. World leaders including Trump, Netanyahu, and Zelenskyy paid tribute to his support for Ukraine and global alliances.

Why are US consumers so angry? It’s not just high prices

Nearly 80% of U.S. consumers experienced a product or service problem in 2025, with two-thirds feeling rage driven by overcharges, billing errors, and poor customer service. Factors such as corporate consolidation, AI customer service, and regulatory rollbacks contribute to an estimated $165 billion annual cost to households in the “annoyance economy.” The Guardian plans to further examine the causes and solutions in upcoming reports.