<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Mind Cron</title>
	<atom:link href="https://mindcron.com/feed/" rel="self" type="application/rss+xml" />
	<link>https://mindcron.com</link>
	<description>Think High</description>
	<lastBuildDate>Sun, 07 Jun 2026 04:52:58 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0</generator>

<image>
	<url>https://mindcron.com/wp-content/uploads/2024/02/cropped-mind-cron-4-32x32.png</url>
	<title>Mind Cron</title>
	<link>https://mindcron.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>A $20 Raspberry Pi Keeps DNS Queries Off Google&#8217;s Servers</title>
		<link>https://mindcron.com/raspberry-pi-pihole-unbound-private-dns-google/</link>
					<comments>https://mindcron.com/raspberry-pi-pihole-unbound-private-dns-google/#respond</comments>
		
		<dc:creator><![CDATA[Mason Miller]]></dc:creator>
		<pubDate>Sun, 07 Jun 2026 04:43:12 +0000</pubDate>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Technology]]></category>
		<guid isPermaLink="false">https://mindcron.com/raspberry-pi-pihole-unbound-private-dns-google/</guid>

					<description><![CDATA[Pi-hole and Unbound turn a $20 Raspberry Pi into a private DNS resolver that blocks ads, keeps queries off Google, and adds DNSSEC record validation.]]></description>
										<content:encoded><![CDATA[<p>A Raspberry Pi Zero 2 W running Pi-hole and Unbound can keep your household&#8217;s DNS (Domain Name System) queries off Google&#8217;s, Cloudflare&#8217;s, and your ISP&#8217;s servers for around <strong>$15 to $20</strong> in hardware and about an hour of setup. The DNS resolver your network uses has full visibility into every domain you visit; this setup moves that resolver into your own hardware.</p>
<p>Pi-hole, a network-wide DNS sinkhole, filters ads and tracker domains before any device connects. Unbound, a validating recursive resolver maintained by NLnet Labs, handles the remaining queries by walking the DNS hierarchy from root servers down to authoritative nameservers, with no public resolver involved. DNSSEC (Domain Name System Security Extensions) validation comes built into Unbound&#8217;s configuration.</p>
<h2>The Lookup Your Router Sends to Google</h2>
<p>Every DNS lookup carries three pieces of information the resolver can see: the domain name you queried, the time of the request, and the IP address that made it. Every device on your network that resolves a hostname contributes to that stream: phones, laptops, smart TVs, thermostats. Multiply it across a typical home and the resolver holds a detailed, timestamped record of your household&#8217;s internet activity.</p>
<p>According to <a href="https://developers.google.com/speed/public-dns/privacy" target="_blank" rel="noopener">Google&#8217;s DNS privacy documentation</a>, temporary logs, which include your IP address and your query, are deleted within 24 to 48 hours, and ISP-level and city-level location data is retained longer for service improvement. Google also states it doesn&#8217;t correlate DNS log data with your Google account information. The data still passes through Google&#8217;s infrastructure, and the policy reflects what Google chooses to collect today.</p>
<p>Switching to Cloudflare&#8217;s 1.1.1.1 shifts that trust to Cloudflare, which commits to no durable logging backed by independent KPMG audits. Switching to your ISP&#8217;s resolver puts the data with your ISP, which in the United States has had legal permission to sell customer browsing data since a 2017 Congressional act. None of these changes removes a third party; they change which third party holds the data.</p>
<p>Encrypting DNS queries with DoH (DNS-over-HTTPS) or DoT (DNS-over-TLS) stops network observers from reading those queries in transit, but the resolver itself still sees and processes every request. Encryption protects the channel, not the endpoint.</p>
<blockquote>
<p>Encryption protects the channel, not the endpoint.</p>
</blockquote>
<figure class="wp-block-image aligncenter featured-image" style="margin:1.5em auto;text-align:center;"><img decoding="async" class="aligncenter" src="https://mindcron.com/wp-content/uploads/2026/06/pi-hole-unbound-raspberry-pi-home-dns-privacy-setup.webp" alt="pi-hole unbound raspberry pi home dns privacy setup" style="width:100%;max-width:800px;height:auto;border-radius:8px;display:block;margin:0 auto;" /><figcaption style="text-align:center;font-size:0.85em;color:#888;margin-top:0.5em;">pi-hole unbound raspberry pi home dns privacy setup</figcaption></figure>
<h2>How Pi-hole and Unbound Divide the Work</h2>
<h3>Pi-hole Blocks Before You Connect</h3>
<p>Pi-hole installs on the Raspberry Pi and becomes the DNS server for your entire home network. You configure it by pointing your router&#8217;s DNS setting to the Pi&#8217;s static IP address. When any device asks for a domain, that request hits Pi-hole first.</p>
<p>Pi-hole checks the domain against its blocklists, maintained by the community and covering advertising networks, analytics trackers, and known malware hosts. If a match is found, Pi-hole returns 0.0.0.0, a dead-end address, and the device never makes the connection. The filtering runs at the network layer, so it applies to every device without per-device software installation. A smart TV running its own ad client, an IoT thermostat, a phone with in-app ad calls: all get the same treatment the moment they connect to your Wi-Fi.</p>
<h3>Unbound Resolves Without a Third Party</h3>
<p>Non-blocked queries get forwarded to Unbound, which runs on the same Raspberry Pi at 127.0.0.1, port 5335. Unbound doesn&#8217;t forward those queries further. As the <a href="https://docs.pi-hole.net/guides/dns/unbound/" target="_blank" rel="noopener">Pi-hole project&#8217;s Unbound configuration guide</a> describes, it walks the DNS hierarchy directly: contacting root servers, getting referred to the appropriate TLD (top-level domain) servers, and then querying the authoritative nameservers for the specific domain. Every answer comes from the actual DNS infrastructure, no middleman required.</p>
<p>Results are cached locally. The first lookup for a domain Unbound hasn&#8217;t seen can take hundreds of milliseconds, compared to single-digit milliseconds from a warm public resolver with global caches. Subsequent visits pull quickly from Unbound&#8217;s local store. <a href="https://www.nlnetlabs.nl/projects/unbound/about/" target="_blank" rel="noopener">NLnet Labs, which maintains Unbound</a>, describes the resolver as designed to be fast and lean while incorporating modern open standards, and query name minimisation is among the privacy features built in by default.</p>
<table>
<thead>
<tr>
<th></th>
<th>Pi-hole</th>
<th>Unbound</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Role</th>
<td>DNS sinkhole, ad and tracker filter</td>
<td>Validating recursive resolver, local cache</td>
</tr>
<tr>
<th scope="row">DNSSEC</th>
<td>Disabled (defers to Unbound)</td>
<td>Enabled (cryptographic validation)</td>
</tr>
<tr>
<th scope="row">Filters</th>
<td>Ad, tracker, and malware domains via blocklists</td>
<td>No filtering; resolves all non-blocked queries</td>
</tr>
<tr>
<th scope="row">Query direction</th>
<td>Home network devices in; Unbound via loopback out</td>
<td>Root servers, TLD servers, authoritative nameservers</td>
</tr>
<tr>
<th scope="row">Cached lookup</th>
<td>Delegates to Unbound</td>
<td><strong>1 to 2 milliseconds</strong></td>
</tr>
</tbody>
</table>
<h2>Poisoned Records and the DNSSEC Fix</h2>
<p>DNSSEC adds cryptographic signing to DNS records. When Unbound validates those signatures, it confirms that what it received from an authoritative server wasn&#8217;t altered in transit. If a signature fails, Unbound rejects the response and the connection fails cleanly rather than landing on a malicious clone.</p>
<p>DNS cache poisoning is the attack DNSSEC directly defends against. An attacker who intercepts communication between a resolver and an authoritative server can insert a forged response, rerouting traffic to a malicious clone without any visible warning to the user. Security researcher Dan Kaminsky&#8217;s demonstration of practical cache poisoning at scale is credited as the primary factor behind DNSSEC deployment, showing that standard DNS had no mechanism to verify whether a response came from the legitimate server. The stakes of DNS-level domain attacks are illustrated by a 2016 operation against a Brazilian bank: attackers who seized all 36 of the institution&#8217;s domains for about five hours routed roughly 5 million customers to convincing copies of its online portals, ATMs, and point-of-sale systems. That attack involved registrar compromise rather than cache poisoning, a different vector, but it shows what domain-level failures can produce at scale.</p>
<p>Google&#8217;s 8.8.8.8 also offers DNSSEC validation, so this check isn&#8217;t exclusive to self-hosted setups. Security researchers citing ICANN data put the share of internet users currently protected by DNSSEC validation at <strong>less than 30%</strong> globally, meaning most households using standard ISP-provided DNS receive no cryptographic guarantee on the records they get.</p>
<p>In the Pi-hole and Unbound configuration, Pi-hole&#8217;s own DNSSEC setting is deliberately disabled: that job belongs to Unbound, listening at port 5335. Running both simultaneously creates validation conflicts.</p>
<h2>The Setup Has Real Limits</h2>
<p>A few tradeoffs don&#8217;t get adequate space in most how-to guides:</p>
<ul>
<li><strong>Single point of failure.</strong> The Raspberry Pi is now your home&#8217;s only DNS resolver. A power outage, SD card failure, or physical disruption takes your entire network offline until the Pi recovers, or until you restore a public DNS address in your router settings.</li>
<li><strong>Cold-start latency.</strong> Unbound walks the full DNS tree the first time it encounters any domain. That initial lookup takes hundreds of milliseconds. Repeat visits are near-instant from cache, but the delay on first contact is noticeable, especially on pages that load dozens of third-party hostnames.</li>
<li><strong>ISP visibility persists.</strong> DNS privacy closes one window. Your ISP can still observe the IP addresses your devices connect to, which maps back to domains with reasonable accuracy. A VPN addresses this but sits outside this setup&#8217;s scope.</li>
<li><strong>LAN queries stay unencrypted.</strong> Queries from your devices to Pi-hole travel unencrypted across your local network. Unbound&#8217;s outbound queries to root and authoritative servers are also plain DNS by default. Encrypting client-to-resolver traffic requires additional configuration on both ends.</li>
</ul>
<p>The Pi-hole project&#8217;s current major release, Pi-hole v6, rewrote the FTL (Faster Than Light) engine and shipped a modernized web interface, addressing several longstanding usability complaints. Software updates and blocklist refreshes still need periodic manual attention to stay current.</p>
<h2>A Quiet Drain on Ad-Tech&#8217;s Data Pipeline</h2>
<p>Pi-hole started in 2014 as a project by Jacob Salmela, conceived as an open-source alternative to a hardware ad-blocker called AdTrap. It now runs on ARM single-board computers, x86 home servers, and inside Docker containers, and it has drawn substantial contributor communities to its blocklists and codebase.</p>
<p>The category has grown around it. AdGuard Home ships native DNS-over-HTTPS support without additional configuration. NextDNS offers a cloud-hosted filter with a free tier capped at 300,000 monthly queries. Of the three, Pi-hole&#8217;s community-maintained blocklist ecosystem remains the largest, and that depth is what has kept the project competitive as alternatives have added features.</p>
<p>Browser extensions protect only what passes through a single application. Pi-hole works at the DNS layer, reaching every device that connects through your router regardless of operating system, browser, or installed app. A smart TV running its own ad client, an Android phone&#8217;s in-app tracker calls, firmware telemetry from IoT sensors: all resolve through DNS and hit the same blocklist filter.</p>
<p>The advertising industry has partially adapted. YouTube and Twitch moved to first-party ad delivery, serving ads from the same domain as the content, which sidesteps DNS-based blocking entirely. Third-party analytics calls, tracker pixels, and telemetry from installed apps still resolve through separate hostnames and land on blocklists. Users in the Pi-hole community describe the setup&#8217;s current primary value as controlling the steady, low-level data exhaust that modern software produces, with ad-blocking as a secondary benefit.</p>
<h2>Frequently Asked Questions</h2>
<h3>Does Pi-hole with Unbound Hide My Browsing from My ISP?</h3>
<p>Partially. The setup stops DNS queries from reaching your ISP&#8217;s or Google&#8217;s resolvers, removing that layer of domain-level visibility. Your ISP can still observe the IP addresses your devices connect to, and those addresses map to domains with reasonable accuracy. A VPN running alongside this setup addresses that gap.</p>
<h3>Do I Need a Raspberry Pi, or Will Other Hardware Work?</h3>
<p>No specific hardware is required. Pi-hole installs on most Linux distributions, including Debian, Ubuntu, and Alpine Linux. The Raspberry Pi Zero 2 W, with its quad-core ARM Cortex-A53 processor and 512MB of RAM, is a common choice for its low power draw and price under $20, but any always-on Linux device with a static IP address on your network will work.</p>
<h3>Will Pi-hole Break Any Websites or Apps?</h3>
<p>Some sites detect DNS-based filtering and refuse to load; others break silently. Pi-hole&#8217;s web dashboard shows every blocked domain by device, so identifying and whitelisting a false positive takes a few clicks. Streaming services that serve ads from first-party domains can&#8217;t be filtered at the DNS layer without also blocking the content itself.</p>
<h3>What Happens If the Raspberry Pi Goes Offline?</h3>
<p>Your home network loses DNS resolution and, effectively, internet access until the Pi recovers or you restore a public resolver in your router. Most routers support a secondary DNS address; setting a backup public resolver there means devices switch over automatically when the Pi is unreachable.</p>
<h3>Does This Setup Protect Mobile Devices Without Installing Apps?</h3>
<p>Yes, for any device connected to your home Wi-Fi. The filtering runs at the network level, so phones, tablets, smart TVs, and game consoles all get Pi-hole&#8217;s filtering with no app, profile, or VPN configuration required. Devices on cellular data bypass it entirely.</p>
<h3>Does Unbound&#8217;s DNSSEC Validation Catch All DNS Attacks?</h3>
<p>No. DNSSEC confirms that DNS records weren&#8217;t modified between authoritative servers and your resolver, but it doesn&#8217;t cover registrar-level compromise, BGP rerouting, or DNS hijacking above the resolver. It also provides no encryption of DNS queries in transit. The protection is specific: cryptographic verification of record authenticity, which defends against cache poisoning attacks.</p>
<p><script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "FAQPage",
  "name": "Frequently Asked Questions: Pi-hole and Unbound DNS",
  "mainEntity": [
    {
      "@type": "Question",
      "name": "Does Pi-hole with Unbound Hide My Browsing from My ISP?",
      "acceptedAnswer": {
        "@type": "Answer",
        "text": "Partially. The setup stops DNS queries from reaching your ISP's or Google's resolvers, removing that layer of domain-level visibility. Your ISP can still observe the IP addresses your devices connect to, and those addresses map to domains with reasonable accuracy. A VPN running alongside this setup addresses that gap."
      }
    },
    {
      "@type": "Question",
      "name": "Do I Need a Raspberry Pi, or Will Other Hardware Work?",
      "acceptedAnswer": {
        "@type": "Answer",
        "text": "No specific hardware is required. Pi-hole installs on most Linux distributions, including Debian, Ubuntu, and Alpine Linux. The Raspberry Pi Zero 2 W, with its quad-core ARM Cortex-A53 processor and 512MB of RAM, is a common choice for its low power draw and price under $20, but any always-on Linux device with a static IP address on your network will work."
      }
    },
    {
      "@type": "Question",
      "name": "Will Pi-hole Break Any Websites or Apps?",
      "acceptedAnswer": {
        "@type": "Answer",
        "text": "Some sites detect DNS-based filtering and refuse to load; others break silently. Pi-hole's web dashboard shows every blocked domain by device, so identifying and whitelisting a false positive takes a few clicks. Streaming services that serve ads from first-party domains can't be filtered at the DNS layer without also blocking the content itself."
      }
    },
    {
      "@type": "Question",
      "name": "What Happens If the Raspberry Pi Goes Offline?",
      "acceptedAnswer": {
        "@type": "Answer",
        "text": "Your home network loses DNS resolution and, effectively, internet access until the Pi recovers or you restore a public resolver in your router. Most routers support a secondary DNS address; setting a backup public resolver there means devices switch over automatically when the Pi is unreachable."
      }
    },
    {
      "@type": "Question",
      "name": "Does This Setup Protect Mobile Devices Without Installing Apps?",
      "acceptedAnswer": {
        "@type": "Answer",
        "text": "Yes, for any device connected to your home Wi-Fi. The filtering runs at the network level, so phones, tablets, smart TVs, and game consoles all get Pi-hole's filtering with no app, profile, or VPN configuration required. Devices on cellular data bypass it entirely."
      }
    },
    {
      "@type": "Question",
      "name": "Does Unbound's DNSSEC Validation Catch All DNS Attacks?",
      "acceptedAnswer": {
        "@type": "Answer",
        "text": "No. DNSSEC confirms that DNS records weren't modified between authoritative servers and your resolver, but it doesn't cover registrar-level compromise, BGP rerouting, or DNS hijacking above the resolver. It also provides no encryption of DNS queries in transit. The protection is specific: cryptographic verification of record authenticity, which defends against cache poisoning attacks."
      }
    }
  ]
}
</script></p>
<p>Pi-hole v6, the project&#8217;s current major release, updated the core FTL engine and shipped a new web dashboard. The official setup guide for pairing it with Unbound is maintained at docs.pi-hole.net alongside each release.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://mindcron.com/raspberry-pi-pihole-unbound-private-dns-google/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Section 224 Is Writing Permanent U.S.-Israel Military Ties Into Law</title>
		<link>https://mindcron.com/section-224-ndaa-us-israel-defense-integration-law/</link>
					<comments>https://mindcron.com/section-224-ndaa-us-israel-defense-integration-law/#respond</comments>
		
		<dc:creator><![CDATA[Mason Miller]]></dc:creator>
		<pubDate>Sun, 07 Jun 2026 04:40:21 +0000</pubDate>
				<category><![CDATA[Law]]></category>
		<category><![CDATA[News]]></category>
		<guid isPermaLink="false">https://mindcron.com/section-224-ndaa-us-israel-defense-integration-law/</guid>

					<description><![CDATA[Section 224 of the FY2027 NDAA buries U.S.-Israeli defense integration in must-pass legislation as public opposition to Israel reaches a 20-year high.]]></description>
										<content:encoded><![CDATA[<p>Section 224 of the FY2027 National Defense Authorization Act (NDAA) would establish the United States-Israel Defense Technology Cooperation Initiative, placing a Pentagon executive agent in charge of synchronizing joint research, weapons co-production, and artificial intelligence development between the two countries&#8217; militaries. Critics at the Quincy Institute for Responsible Statecraft say the provision, once embedded in defense procurement contracts, would be functionally impossible to unwind. The House Armed Services Committee (HASC) voted it through on June 4 by voice vote, one day after the full House passed a war powers resolution demanding the Iran war end, <strong>215 to 208</strong>.</p>
<p>A <a href="https://www.pewresearch.org/short-reads/2026/04/07/negative-views-of-israel-netanyahu-continue-to-rise-among-americans-especially-young-people/" target="_blank" rel="noopener">Pew Research Center survey of 3,507 U.S. adults conducted in late March</a> found <strong>60 percent</strong> of American adults view Israel unfavorably, a nearly 20-point increase since 2022. The committee voted the provision through anyway.</p>
<h2>A New Framework in a Must-Pass Bill</h2>
<p>The provision was introduced May 26, 2026, as part of the HASC chairman&#8217;s mark for the FY2027 NDAA, a $1.15 trillion piece of legislation that serves as the annual blueprint for American military spending and policy. Its language derives from the U.S.-Israel FUTURES Act (United States-Israel Framework for Upgraded Technologies, Unified Research, and Enhanced Security Act), a bill co-sponsored by Rep. Ronny Jackson (R-TX) and Sens. Ted Budd and Kirsten Gillibrand that never passed through regular congressional order. Embedding it in the NDAA grants it statutory permanence that an interagency memorandum or stand-alone pilot program would not carry.</p>
<p>The provision requires the Secretary of Defense to designate an executive agent responsible for synchronizing bilateral cooperation across defense technology research, development, testing, evaluation, integration, and industrial partnership. That agent operates under the Secretary&#8217;s authority without requiring Senate confirmation, reducing the number of choke points where a future Congress could intervene.</p>
<p>The FY2027 NDAA as written allocates <strong>$750 million</strong> in U.S.-Israel cooperative programs, according to <a href="https://www.aipac.org/memos/america-israel-defense-ndaa-224" target="_blank" rel="noopener">AIPAC&#8217;s factsheet on this NDAA cooperative funding initiative</a>, broken down across four areas:</p>
<ul>
<li><strong>$500 million</strong> for U.S.-Israel Missile Defense Cooperation</li>
<li><strong>$100 million</strong> for Counter-Unmanned Systems (C-UxS) cooperation</li>
<li>$100 million for Subterranean Operations cooperation</li>
<li><strong>$50 million</strong> for Emerging Technologies cooperation, including artificial intelligence, quantum machine learning, directed energy, and biotechnology</li>
</ul>
<p>The New Republic reported that no other U.S. ally holds a dedicated executive-agent structure of this kind within the Department of Defense, including any NATO partner or AUKUS members the UK and Australia.</p>
<figure class="wp-block-image aligncenter featured-image" style="margin:1.5em auto;text-align:center;"><img decoding="async" class="aligncenter" src="https://mindcron.com/wp-content/uploads/2026/06/section-224-fy2027-ndaa-us-israel-defense-technology-cooperation-initiative.webp" alt="Section 224 FY2027 NDAA US Israel defense technology cooperation initiative" style="width:100%;max-width:800px;height:auto;border-radius:8px;display:block;margin:0 auto;" /><figcaption style="text-align:center;font-size:0.85em;color:#888;margin-top:0.5em;">Section 224 FY2027 NDAA US Israel defense technology cooperation initiative</figcaption></figure>
<h2>Beyond the Annual Aid Check</h2>
<p>Since fiscal year 2019, U.S. military support for Israel has run through a 10-year memorandum of understanding (MOU), negotiated in 2016 during the Obama administration, that provides <strong>$3.3 billion</strong> annually in Foreign Military Financing plus $500 million per year in missile defense funding. The current MOU expires at the end of FY2028. That model is visible: Congress can debate it, the dollar amounts are public, and lawmakers who want to place conditions on aid have a clear procedural vehicle to try.</p>
<p>Ben Freeman, director of the Democratizing Foreign Policy program at the Quincy Institute, argues the provision shifts the relationship into a different channel: Pentagon procurement, licensing agreements, co-production arrangements, and research pipelines where congressional oversight is limited and public accountability is minimal. In a brief titled &#8220;The Disappearing Aid Check,&#8221; Quincy Institute senior fellow Steven Simon put the structural argument plainly: moving support away from foreign-aid votes and into defense acquisition means it no longer appears on the political scoreboard where constituents can hold members accountable.</p>
<blockquote>
<p>The American people don&#8217;t want it. Listen to your constituents, not your lobbyists. Strip out Section 224 from the NDAA.</p>
</blockquote>
<p>Freeman, speaking to Military.com, made his position unambiguous. In his written analysis for the Quincy Institute, he argued that the initiative &#8220;would arguably do more to intertwine the U.S. military with the Israeli military than the more than $200 billion (inflation-adjusted) in military assistance Israel has received from the U.S. since its founding in 1948.&#8221;</p>
<p>Two specific phrases in the provision&#8217;s text drew the most pointed concern from Freeman: &#8220;network integration&#8221; and &#8220;data fusion.&#8221; Both appear without definitions. What they mean in practice, how far any synchronization of military data systems would extend, and whether intelligence data falls in scope are questions the current language does not answer.</p>
<h2>Co-Production and the District Lock</h2>
<p>Supporters of the provision frame it partly in economic terms. AIPAC&#8217;s factsheet says it &#8220;encourages U.S.-based co-production and manufacturing partnerships, strengthens domestic manufacturing, and supports American workers.&#8221; HASC chairman Mike Rogers (R-AL) described the measure as an efficiency improvement that gives American troops access to superior technology. Ranking member Adam Smith (D-WA) called critics&#8217; characterizations &#8220;simply not accurate,&#8221; describing the initiative as a coordination mechanism for existing programs.</p>
<p>Freeman&#8217;s objection to the jobs framing is specific. He calls the co-production incentive the <strong>&#8220;real Trojan horse&#8221;</strong> in the bill: once Israeli-linked defense firms establish co-production facilities and joint ventures inside American congressional districts, those investments create local employment. Jobs become political assets. Lawmakers representing those districts become reluctant to vote against programs connected to local employers, regardless of how public opinion in their constituencies has shifted.</p>
<p>The F-35 program is the relevant model. Lockheed Martin deliberately distributed production across more than 40 states, assembling a coalition of congressional districts with a direct economic stake in keeping the contract funded. Critics of the provision say its co-production framework would replicate that logic specifically for the U.S.-Israel relationship, embedding it in district economies in a way that future floor fights over military assistance would find increasingly costly to disrupt.</p>
<p>AI, quantum machine learning, and advanced cyber research that the U.S. currently restricts even for close partners are also part of the initiative&#8217;s scope. Per the <a href="https://www.anewpolicy.org/the-legislative-tracker/section-224-ndaa" target="_blank" rel="noopener">A New Policy legislative tracker&#8217;s analysis of the provision&#8217;s technology domains</a>, those categories currently accessible only to the UK and Australia under AUKUS Pillar II would be opened to Israeli defense institutions under this framework.</p>
<h2>The Committee Vote and What It Misses</h2>
<p>Khanna offered his amendment at the June 4 HASC markup. The committee rejected it by voice vote. Only Khanna and Rep. Sara Jacobs (D-CA) spoke in favor of removal. Rogers defended the provision from the Republican side; Smith dismissed the critics&#8217; characterizations as inaccurate and described the initiative as a coordination mechanism for programs that already exist.</p>
<p>Smith said he was &#8220;frustrated with Netanyahu&#8217;s leadership&#8221; and with Israel&#8217;s role in drawing the U.S. into the Iran war, but he disagreed that the provision represented Congress &#8220;bowing to what Netanyahu wants.&#8221;</p>
<p>Four days before the June 4 markup, the <a href="https://www.c-span.org/clip/us-house-of-representatives/house-passes-iran-war-powers-resolution-by-215-208-vote/5201182" target="_blank" rel="noopener">House passed the Iran war powers resolution 215 to 208</a>, with four Republicans crossing to support it: Thomas Massie (KY), Brian Fitzpatrick (PA), Tom Barrett (MI), and Warren Davidson (OH). It was the fourth time such a measure came to a vote this year and the first time it cleared the House. Massie has separately committed to offering a floor amendment to strip the provision if it survived committee. It survived.</p>
<p>On the full House floor, members from competitive districts can&#8217;t shelter behind a voice vote; they register a position. That matters in November midterms where the Administration&#8217;s Middle East policy has already produced Republican defection on the Iran war, and where Democratic primary candidates from Michigan to California are running explicitly against U.S. military entanglement with Israel.</p>
<h2>What Massie and Khanna Are Betting On</h2>
<h3>The Polling Numbers Behind the Floor Fight</h3>
<p>The coalition Massie and Khanna have assembled spans the libertarian right and the progressive left, held together by opposition to expanded military integration with Israel and by survey data that has shifted sharply since the Iran war began in February. The March 2026 Pew Research Center survey and the May 2026 New York Times/Siena poll together trace the public opinion landscape the floor vote will enter:</p>
<table>
<thead>
<tr>
<th>Poll / Date</th>
<th>Population Surveyed</th>
<th>Finding</th>
</tr>
</thead>
<tbody>
<tr>
<td>Pew Research Center, March 2026</td>
<td>All U.S. adults</td>
<td>60% hold an unfavorable view of Israel</td>
</tr>
<tr>
<td>Pew Research Center, March 2026</td>
<td>Democrats and Democratic-leaning independents</td>
<td>80% unfavorable</td>
</tr>
<tr>
<td>Pew Research Center, March 2026</td>
<td>Republicans ages 18 to 49</td>
<td>57% unfavorable (up from 50% in 2025)</td>
</tr>
<tr>
<td>NYT/Siena, May 2026</td>
<td>Democrats</td>
<td>74% oppose additional military and economic support to Israel</td>
</tr>
</tbody>
</table>
<p>The 60 percent Pew figure represents a nearly 20-point increase from where American opinion stood in 2022. The share choosing &#8220;very unfavorable&#8221; has nearly tripled, from 10 percent to 28 percent. Among Republicans under 50, a majority now views Israel unfavorably, a reversal of what had been a durable bipartisan foreign policy position for most of the past three decades.</p>
<h3>AIPAC&#8217;s War Chest and the Midterm Math</h3>
<p>AIPAC&#8217;s allied super PAC enters the midterms with nearly $100 million on hand, up from $35 million in 2022, and has spent more than $221 million on congressional races since it began engaging in competitive primaries, according to campaign finance data cited by The Intercept. Those resources have historically gone toward defending pro-Israel incumbents and defeating primary challengers critical of the relationship.</p>
<p>In the Senate, 40 members backed Bernie Sanders&#8217; April 2026 resolution to block a $295 million bulldozer sale to Israel; just 15 voted for a comparable measure a year earlier. In midterm primaries from New York to California and in Midwestern swing districts, U.S. aid to Israel and AIPAC&#8217;s spending in congressional races have emerged as explicit campaign issues, per reporting by the Christian Science Monitor.</p>
<p>Netanyahu weighed in directly on June 1, writing to Rep. Marlin Stutzman to endorse a &#8220;new framework of joint defense cooperation, codevelopment, coproduction and mutual investment&#8221; as a successor to the current aid relationship. His letter landed during a midterm primary season where U.S.-Israel policy is generating constituent pressure across both parties. Responsible Statecraft described the underlying logic of the initiative as transforming Israel &#8220;from a top U.S. aid recipient to a full member of the U.S. defense and intelligence apparatus.&#8221;</p>
<h2>The Senate Pathway and November</h2>
<p>If the provision clears the House floor with the Massie-Khanna amendment defeated, the Senate still has to pass the same language. The agreement between the U.S. and Israel expires at the end of FY2028, creating pressure to formalize the relationship before that framework lapses and before a potentially different Congress takes over in January 2027.</p>
<p>The Arab Center Washington DC, in its analysis of the provision, concluded that even a future Congress committed to a different policy would face, by that point, a set of existing contractual agreements between American and Israeli defense companies, co-production jobs distributed across congressional districts, and Israeli technology embedded in Pentagon acquisition systems. Unwinding each of those structural attachments carries its own political and economic cost.</p>
<p>Whether the Senate&#8217;s documented shift on Israel-related military measures translates to opposition against language embedded in an NDAA is a different question from the arms-sale resolutions that have drawn the clearest votes. Those gave senators a narrow, visible statutory argument; NDAA language does not offer that framing.</p>
<p>Massie&#8217;s floor amendment will be the provision&#8217;s first recorded vote. The midterm election arrives in a political environment where the coalition that wrote Section 224 has shrunk measurably from where it stood when the agreement underpinning U.S. military aid to Israel was negotiated in 2016.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://mindcron.com/section-224-ndaa-us-israel-defense-integration-law/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>The Eight Horror Films That Made Over 100 Times Their Budget</title>
		<link>https://mindcron.com/horror-movies-100x-budget-box-office-ranked/</link>
					<comments>https://mindcron.com/horror-movies-100x-budget-box-office-ranked/#respond</comments>
		
		<dc:creator><![CDATA[Mason Miller]]></dc:creator>
		<pubDate>Sun, 07 Jun 2026 04:32:48 +0000</pubDate>
				<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[News]]></category>
		<guid isPermaLink="false">https://mindcron.com/horror-movies-100x-budget-box-office-ranked/</guid>

					<description><![CDATA[Eight horror films have earned at least 100 times their production budgets globally, from The Blair Witch Project to Obsession, all ranked by multiplier.]]></description>
										<content:encoded><![CDATA[<p>Eight horror movies have crossed the 100x budget-to-box-office threshold in cinema history, achieving return rates that most Hollywood productions cannot claim regardless of budget size. The Blair Witch Project spent <strong>$60,000</strong> on eight days of filming in the Maryland woods and returned $248.6 million globally. Curry Barker&#8217;s Obsession, shot on a $750,000 budget in 20 days, crossed $171 million worldwide by early June 2026, with each of its first three weekends in theaters larger than the one before it. The combined production budgets of all eight films fall short of a single standard Hollywood action picture.</p>
<p>All eight were acquired by distributors at prices that already exceeded their production costs. Ticket sales grew week by week as audiences brought in new audiences. The rankings below cover all eight, with production cost, global gross, and the multiplier each achieved.</p>
<h2>Eight Films, Eight Multipliers</h2>
<p>None of the eight had major studio financing during production. Six were acquired after festival screenings for sums that already dwarfed what the films cost to make. Artisan Entertainment paid $1.1 million for The Blair Witch Project&#8217;s distribution rights at the 1999 Sundance Film Festival; Focus Features paid around $15 million for Obsession at the Toronto International Film Festival (TIFF) in September 2025. Those acquisition costs are separate from the production budgets below, which follow the standard industry convention: cost of making the film against global theatrical revenue.</p>
<table>
<thead>
<tr>
<th>Film</th>
<th>Production Budget</th>
<th>Global Box Office</th>
<th>Multiplier</th>
</tr>
</thead>
<tbody>
<tr>
<td>The Blair Witch Project (1999)</td>
<td>$60,000</td>
<td>$248.6 million</td>
<td>4,133x</td>
</tr>
<tr>
<td>Paranormal Activity (2007)</td>
<td>$215,000</td>
<td>$193 million</td>
<td>897x</td>
</tr>
<tr>
<td>Night of the Living Dead (1968)</td>
<td>$125,000</td>
<td>$30.2 million</td>
<td>264x</td>
</tr>
<tr>
<td>Obsession (2026)</td>
<td>$750,000</td>
<td>$171 million*</td>
<td>228x*</td>
</tr>
<tr>
<td>The Texas Chain Saw Massacre (1974)</td>
<td>$140,000</td>
<td>$30.8 million</td>
<td>220x</td>
</tr>
<tr>
<td>Halloween (1978)</td>
<td>$325,000</td>
<td>$70 million</td>
<td>215x</td>
</tr>
<tr>
<td>Friday the 13th (1980)</td>
<td>$550,000</td>
<td>$59.8 million</td>
<td>108x</td>
</tr>
<tr>
<td>Saw (2004)</td>
<td>$1,000,000</td>
<td>$104 million</td>
<td>104x</td>
</tr>
</tbody>
</table>
<p><em>*Obsession figures as of early June 2026; the film remains in theaters.</em></p>
<p>The eight films span found footage, supernatural horror, slasher, and torture horror subgenres. All eight were produced for under $1.1 million and independently financed before being acquired by a distributor.</p>
<figure class="wp-block-image aligncenter featured-image" style="margin:1.5em auto;text-align:center;"><img decoding="async" class="aligncenter" src="https://mindcron.com/wp-content/uploads/2026/06/horror-movies-that-made-100-times-their-production-budget-box-office.webp" alt="horror movies that made 100 times their production budget box office" style="width:100%;max-width:800px;height:auto;border-radius:8px;display:block;margin:0 auto;" /><figcaption style="text-align:center;font-size:0.85em;color:#888;margin-top:0.5em;">horror movies that made 100 times their production budget box office</figcaption></figure>
<h2>The Slasher Formula, 1968 to 2004</h2>
<h3>Rawness as the Production Decision, 1968-1974</h3>
<p>George A. Romero had spent his early career making documentaries, commercials, and industrial films, including a segment for Mister Rogers&#8217; Neighborhood, before channeling that low-budget discipline into Night of the Living Dead in 1968. Shot for $125,000, the film depicted violence that American theater audiences had no reference for, and its final scene left no ambiguity: Ben (Duane Jones), the film&#8217;s Black protagonist, survives a night of zombie siege only to be shot dead by a misidentifying posse, a <a href="https://mindcron.com/horror-movie-endings-four-types-explained/" target="_blank" rel="noopener">downer horror ending</a> of a kind that had no precedent in mainstream American cinema. That closing image sent audiences out of theaters in a state they had to describe to everyone they knew. The film returned $30.2 million globally on its $125,000 budget.</p>
<p>Six years later, Tobe Hooper made The Texas Chain Saw Massacre for $140,000 and leaned on the same mechanism through a different technique. The film presented itself as based on true events, and enough of the audience believed that framing to spread it by personal testimony. Because it predated the home video market, it cycled through American theaters for years and accumulated its $30.8 million total slowly, with no studio marketing budget behind it.</p>
<h3>Halloween&#8217;s Slow Build to $70 Million</h3>
<p>John Carpenter shot Halloween in 20 days across suburban Los Angeles on a $325,000 budget. To save money, he composed the film&#8217;s score himself. The Michael Myers mask was a Captain Kirk mask purchased for $1.98 and spray-painted white. When the limited prints first toured American cities, ticket sales were weak enough that Carpenter reportedly told producer Debra Hill the film hadn&#8217;t made it. Then Roger Ebert awarded it four stars. <a href="https://www.denofgeek.com/movies/halloween-the-ingredients-of-a-horror-classic/" target="_blank" rel="noopener">The positive word-of-mouth cascade that Ebert&#8217;s review helped build</a> drove Halloween to $70 million worldwide, making it the most profitable independent film of its era, a title it held until 1999.</p>
<p>Sean S. Cunningham watched Halloween&#8217;s trajectory and designed Friday the 13th (1980) around the same economic logic: cheap production, grisly set pieces, no-name cast. The $550,000 film earned $59.8 million globally. James Wan&#8217;s Saw, which premiered at the 2004 Sundance Film Festival and was acquired by Lionsgate, closed out the pre-found-footage era of this list at $1 million in production costs against $104 million at the global box office.</p>
<h2>How Found Footage Remade the Math</h2>
<p>Daniel Myrick and Eduardo S&#225;nchez shot The Blair Witch Project over eight days in October 1997 for $60,000. Before it reached theaters, they had built a promotional website presenting the student filmmakers as genuinely missing, complete with fake police reports and childhood photographs of the actors. IMDb initially listed the cast as &#8220;missing, presumed dead.&#8221; Artisan Entertainment bought distribution rights at Sundance in January 1999 for $1.1 million. <a href="https://www.wrapbook.com/blog/blair-witch-project-budget" target="_blank" rel="noopener">The Blair Witch Project&#8217;s production budget breakdown</a> puts the principal photography cost between $35,000 and $60,000 depending on the accounting; the figure most commonly used is $60,000. Against that spend, the film earned $248.6 million globally.</p>
<p>Ten years later, Oren Peli shot Paranormal Activity in seven days at his own home for $15,000. DreamWorks Pictures acquired the domestic rights for $350,000, then Paramount (which had absorbed DreamWorks) shot a new ending for an additional $200,000, bringing total production costs to $215,000. The marketing campaign invited audiences in selected cities to vote online to &#8220;demand&#8221; a screening, then expanded to a nationwide release after organic interest built through college campuses. The film earned $193 million worldwide.</p>
<p>Both films used pre-release campaigns built on apparent authenticity. Blair Witch&#8217;s missing-persons website reached internet users in an era when online content was new enough to be widely trusted at face value. Paranormal Activity&#8217;s demand-screening model in college towns generated the same kind of pre-sold audience. In both cases, audiences who saw the film early became recruiters for the next wave.</p>
<h2>Obsession&#8217;s Three Growing Weekends</h2>
<p>Curry Barker, a 26-year-old YouTube sketch comedian, shot Obsession in 20 days in Los Angeles in October 2024. The film centers on a young man who breaks a &#8220;One Wish Willow&#8221; wishing tree and finds that the consequences are worse than the wish was worth. Barker told interviewers that the wish element was partly inspired by a Simpsons episode involving a monkey&#8217;s paw. He recorded his own dialogue as a customer service character in the film while editing from his bedroom.</p>
<p>Focus Features acquired Obsession at TIFF for around $15 million after a bidding war that included A24 and Neon. Jason Blum of Blumhouse Productions signed on as executive producer after the festival premiere, announced alongside the film&#8217;s first teaser in December 2025. The $750,000 production opened in American theaters on May 15, 2026, in third place behind two holdovers.</p>
<p>What followed inverted every pattern in wide-release horror. Horror films typically drop 50% or more after their opening weekend. Obsession grew instead:</p>
<ul>
<li><strong>$23.9 million</strong> in weekend two (a 39% increase), the largest second-weekend gain for any wide-release horror film outside the Christmas season on record</li>
<li><strong>$27.4 million</strong> in weekend three (a further 14% increase), making it the first non-holiday release since Steven Spielberg&#8217;s E.T. the Extra-Terrestrial in 1982 to post gains in both its second and third weekends</li>
<li><strong>$171 million</strong> worldwide through early June 2026, with the film still in theaters</li>
</ul>
<p>Barker has a follow-up feature, Anything But Ghosts, already completed and set for release through Focus Features and Blumhouse-Atomic Monster. A24 has separately signed him to write, direct, and produce a new Texas Chain Saw Massacre film.</p>
<h2>The Franchise Penalty</h2>
<p>The clearest comparison between an original and its sequel comes from Paranormal Activity. Oren Peli&#8217;s original cost $215,000 and earned a <strong>897x return</strong> on $193 million globally. Paranormal Activity 2, <a href="https://www.altfg.com/paranormal-activity-2-box-office/" target="_blank" rel="noopener">made on a reported $3 million budget</a>, grossed $177 million worldwide. That is nearly the same box office total. The multiplier was 59x, a drop of 93% from the original&#8217;s return rate.</p>
<p>Halloween generated 13 sequels and remakes after the 1978 original. None approached the 215x return that $325,000 had produced. Saw expanded into a 10-film franchise with production budgets scaling up at each installment. Book of Shadows: Blair Witch 2 (2000) cost dramatically more than its predecessor and earned roughly a quarter of what the original had produced. Every franchise on this list followed the same arc: the box office held reasonably well; the per-dollar return did not.</p>
<p>Paranormal Activity 2 opened to $40.7 million in its first weekend, a record for horror at the time. The slow organic build that had carried the original to nine figures globally took months and ran on audience recruitment. The sequel ran its box office course in two weekends. The multiplier is where the difference shows.</p>
<p>Obsession is still in theaters.</p>
<h2>Frequently Asked Questions</h2>
<h3>What Is the Highest Budget-to-Box-Office Multiplier in Horror?</h3>
<p>The Blair Witch Project holds the top spot at 4,133x, the highest documented return for any horror film with major theatrical distribution. Paranormal Activity comes second at 897x when measured against its full production cost of $215,000. Obsession, still in theaters as of June 2026, sits fourth on the list at approximately 228x and is still climbing.</p>
<h3>How Much Did Paranormal Activity Cost to Make?</h3>
<p>Oren Peli shot the original Paranormal Activity in seven days at his own home for $15,000. DreamWorks Pictures acquired the domestic rights for $350,000, and Paramount, which had absorbed DreamWorks by the time of release, shot a new ending for an additional $200,000. That version, with Paramount&#8217;s ending, is the cut that reached theaters in September 2009.</p>
<h3>How Much Has Obsession Made at the Box Office?</h3>
<p>Obsession had grossed more than $170 million worldwide by early June 2026, roughly three weeks after its May 15, 2026 theatrical release by Focus Features. The film remains in theaters, and its final total will exceed that figure.</p>
<h3>Why Do Horror Sequels Earn Lower Multipliers?</h3>
<p>The Paranormal Activity franchise shows the pattern numerically. The sequel cost $3 million against the original&#8217;s production cost measured in thousands of dollars, and returned 59x against $177 million worldwide. The box office totals were nearly the same. The budget was roughly 14 times higher. Audiences who saw Paranormal Activity and returned for the sequel already knew exactly what kind of film they were attending.</p>
<h3>Who Directed The Blair Witch Project?</h3>
<p>Daniel Myrick and Eduardo S&#225;nchez wrote, directed, and edited The Blair Witch Project together. Both were film school graduates who had conceived the Blair Witch mythology in 1993. Principal photography lasted eight days in October 1997, and the film premiered at Sundance in January 1999, where Artisan Entertainment bought distribution rights for $1.1 million.</p>
<h3>What Do the Films on This List Have in Common?</h3>
<p>All eight were independently produced before being acquired by a distributor and made for under $1.1 million in production costs. Every one saw its box office grow over multiple weeks, driven by audiences recommending the film to people who had not yet seen it. The subgenres vary considerably, from found footage to slasher to supernatural horror, but the growth pattern holds across six decades of releases.</p>
<p><script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "FAQPage",
  "name": "Frequently Asked Questions: Horror Films 100x Budget",
  "mainEntity": [
    {
      "@type": "Question",
      "name": "What Is the Highest Budget-to-Box-Office Multiplier in Horror?",
      "acceptedAnswer": {
        "@type": "Answer",
        "text": "The Blair Witch Project holds the top spot at 4,133x, the highest documented return for any horror film with major theatrical distribution. Paranormal Activity comes second at 897x when measured against its full production cost of $215,000. Obsession, still in theaters as of June 2026, sits fourth on the list at approximately 228x and is still climbing."
      }
    },
    {
      "@type": "Question",
      "name": "How Much Did Paranormal Activity Cost to Make?",
      "acceptedAnswer": {
        "@type": "Answer",
        "text": "Oren Peli shot the original Paranormal Activity in seven days at his own home for $15,000. DreamWorks Pictures acquired the domestic rights for $350,000, and Paramount, which had absorbed DreamWorks by the time of release, shot a new ending for an additional $200,000. That version, with Paramount's ending, is the cut that reached theaters in September 2009."
      }
    },
    {
      "@type": "Question",
      "name": "How Much Has Obsession Made at the Box Office?",
      "acceptedAnswer": {
        "@type": "Answer",
        "text": "Obsession had grossed more than $170 million worldwide by early June 2026, roughly three weeks after its May 15, 2026 theatrical release by Focus Features. The film remains in theaters, and its final total will exceed that figure."
      }
    },
    {
      "@type": "Question",
      "name": "Why Do Horror Sequels Earn Lower Multipliers?",
      "acceptedAnswer": {
        "@type": "Answer",
        "text": "The Paranormal Activity franchise shows the pattern numerically. The sequel cost $3 million against the original's production cost measured in thousands of dollars, and returned 59x against $177 million worldwide. The box office totals were nearly the same. The budget was roughly 14 times higher. Audiences who saw Paranormal Activity and returned for the sequel already knew exactly what kind of film they were attending."
      }
    },
    {
      "@type": "Question",
      "name": "Who Directed The Blair Witch Project?",
      "acceptedAnswer": {
        "@type": "Answer",
        "text": "Daniel Myrick and Eduardo Sanchez wrote, directed, and edited The Blair Witch Project together. Both were film school graduates who had conceived the Blair Witch mythology in 1993. Principal photography lasted eight days in October 1997, and the film premiered at Sundance in January 1999, where Artisan Entertainment bought distribution rights for $1.1 million."
      }
    },
    {
      "@type": "Question",
      "name": "What Do the Films on This List Have in Common?",
      "acceptedAnswer": {
        "@type": "Answer",
        "text": "All eight were independently produced before being acquired by a distributor and made for under $1.1 million in production costs. Every one saw its box office grow over multiple weeks, driven by audiences recommending the film to people who had not yet seen it. The subgenres vary considerably, from found footage to slasher to supernatural horror, but the growth pattern holds across six decades of releases."
      }
    }
  ]
}
</script></p>
]]></content:encoded>
					
					<wfw:commentRss>https://mindcron.com/horror-movies-100x-budget-box-office-ranked/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Intel&#8217;s New Frame Extrapolation Attacks Gaming Latency</title>
		<link>https://mindcron.com/intel-frame-extrapolation-gaming-latency-fix/</link>
					<comments>https://mindcron.com/intel-frame-extrapolation-gaming-latency-fix/#respond</comments>
		
		<dc:creator><![CDATA[Mason Miller]]></dc:creator>
		<pubDate>Sun, 07 Jun 2026 04:31:31 +0000</pubDate>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Technology]]></category>
		<guid isPermaLink="false">https://mindcron.com/intel-frame-extrapolation-gaming-latency-fix/</guid>

					<description><![CDATA[Intel's frame extrapolation predicts player input to generate frames before the GPU renders them, aiming to fix the latency flaw in DLSS 3 and FSR 3 frame generation methods.]]></description>
										<content:encoded><![CDATA[<p>Tom Petersen, an Intel fellow on graphics architecture, sat down with Gizmodo in downtown Taipei last week and described a technology Intel has been building since 2023: <strong>frame extrapolation</strong>, an AI system that predicts where a player will move and synthesizes a display frame before the GPU has finished rendering the real one. The pitch is smoother gameplay without the input-lag penalty that has followed every AI frame-generation system since NVIDIA introduced the interpolation method in 2022.</p>
<p>Every AI frame-generation method in wide use today adds latency by design. The interpolation model underpinning DLSS 3 (NVIDIA&#8217;s Deep Learning Super Sampling frame-generation feature), AMD&#8217;s FSR 3 (FidelityFX Super Resolution 3), and Intel&#8217;s own XeSS MFG (XeSS Multi-Frame Generation, which boosts apparent frames-per-second counts by inserting AI-synthesized frames) requires a second rendered frame before it can generate anything. Extrapolation would skip that wait. Petersen told Gizmodo the technology is &#8220;almost&#8221; ready for a public showcase, but it wasn&#8217;t finished in time for Computex 2026.</p>
<h2>Why Frame Gen Keeps Players Waiting</h2>
<p>Standard frame interpolation requires two genuine rendered frames. The algorithm analyses motion vectors between them and inserts a synthesized image into the display interval. Output frame rate goes up, at least on paper.</p>
<p>Frame one gets rendered and then sits idle while frame two is produced. The player&#8217;s input at the moment of frame one isn&#8217;t reflected on screen until the pair is complete and the interpolated image is ready to display. He quantified the cost for PC Gamer during the same Taipei trip: enabling XeSS MFG picks up roughly <strong>eight milliseconds</strong> of latency purely from that holding period. Hardware Unboxed&#8217;s 2022 testing found DLSS 3 frame generation raised total latency in Cyberpunk 2077 from 47ms to 63ms, a 16ms jump alongside a higher displayed frame count; Digital Foundry, testing concurrently, found DLSS 3 &#8220;inherently adds input latency due to the fact that it holds a frame.&#8221; Hardware Unboxed also recorded an 11ms penalty in F1 2022 under the same conditions.</p>
<p>NVIDIA has partially addressed this with Reflex, a system latency tool that reduces the CPU-to-GPU render queue depth, and more recently with Frame Warp inside DLSS 4, a reprojection technique borrowed from VR headset design that shifts output frames toward a player&#8217;s most recent inputs. Both reduce perceived latency without removing the underlying source, which stays tied to the pace of the base render loop.</p>
<p>AMD officially recommends a 60 FPS baseline before enabling FSR 3 Frame Generation. Below that floor, the latency additions aren&#8217;t masked and players feel every millisecond of the hold. On a gaming mouse in a reflex-heavy shooter, the extra 10 to 15 milliseconds is noticeable. On a controller in a single-player title, the same delay typically falls within the controller&#8217;s own inherent latency, and the player doesn&#8217;t register it.</p>
<p>Gaming handhelds sit at the center of that sensitivity gap. A device running at 35 watts rarely holds 60 native FPS in demanding titles at reasonable quality settings. Frame generation exists for those conditions, and the latency cost that comes with it doesn&#8217;t lift just because the screen is eight inches wide.</p>
<figure class="wp-block-image aligncenter featured-image" style="margin:1.5em auto;text-align:center;"><img decoding="async" class="aligncenter" src="https://mindcron.com/wp-content/uploads/2026/06/intel-frame-extrapolation-technology-gaming-latency-reduction.webp" alt="Intel frame extrapolation technology gaming latency reduction" style="width:100%;max-width:800px;height:auto;border-radius:8px;display:block;margin:0 auto;" /><figcaption style="text-align:center;font-size:0.85em;color:#888;margin-top:0.5em;">Intel frame extrapolation technology gaming latency reduction</figcaption></figure>
<h2>Intel&#8217;s Forward Gamble</h2>
<h3>What Changes with Extrapolation</h3>
<p>Standard frame interpolation needs two rendered frames. Extrapolation needs one. It reads current hardware input alongside that single frame and predicts what comes next. The synthesized frame goes to the display while the GPU works on the genuine next render, eliminating the holding period that interpolation requires.</p>
<table>
<thead>
<tr>
<th>Method</th>
<th>Frames Required</th>
<th>Latency Effect</th>
<th>Primary Risk</th>
</tr>
</thead>
<tbody>
<tr>
<td>Interpolation (DLSS 3, FSR 3, XeSS MFG)</td>
<td>Two rendered frames before synthesis</td>
<td>Adds 8-16ms depending on hardware</td>
<td>Holds input responsiveness behind render pace</td>
</tr>
<tr>
<td>Extrapolation (Intel&#8217;s approach)</td>
<td>One rendered frame plus hardware input data</td>
<td>Designed to add zero additional latency</td>
<td>Misprediction creates visible frame artifacts</td>
</tr>
</tbody>
</table>
<h3>How Petersen Described It</h3>
<blockquote>
<p>I&#8217;ve got one frame. I&#8217;ve rastered it. I&#8217;m showing it to a user. And while I&#8217;m not quite ready to raster a new one, I&#8217;m going to predict where he&#8217;s going to move his mouse.</p>
</blockquote>
<p>Petersen, Intel&#8217;s graphics architecture fellow, gave that description to Gizmodo journalist Kyle Barr at a sit-down in Taipei on the eve of Computex 2026. What he outlined is a real-time input-prediction model embedded in the frame pipeline: velocity, direction, and acceleration from the hardware device go in; a synthesized next moment comes out while the GPU processes the genuine render behind it.</p>
<p>He also used the Gizmodo interview to place blame for player skepticism toward AI frame assistance. The reason gamers have become antagonistic toward the technology, he said, is that NVIDIA &#8220;fucked it up&#8221; during last year&#8217;s Multi-Frame Generation rollout. He served as NVIDIA&#8217;s director of technical marketing until 2019 before joining Intel.</p>
<h2>Handheld Hardware, Where the Stakes Are Highest</h2>
<h3>The Arc G3 Extreme at Computex</h3>
<p>Intel unveiled the <strong>Arc G3 Extreme</strong> at Computex 2026 alongside those interviews. Built on the Panther Lake architecture, it&#8217;s what Intel&#8217;s team called &#8220;a GPU SoC with a CPU inside it,&#8221; meaning the 12 Xe-core Arc B390 GPU takes the design priority and a 14-core CPU cluster works in support. Below 12 watts, the performance CPU cores park entirely, leaving efficiency cores to feed power to the GPU.</p>
<p>MSI&#8217;s Claw 8 EX AI+ is the first device carrying the chip. Acer&#8217;s Predator Atlas 8, also announced during the show week, uses Arc G3 and G3 Extreme processors in a comparable form factor with an 8-inch 1200p 120Hz display and an 80 WHr battery. Intel also introduced Endurance Gaming at the same briefing, a mode that dynamically caps frame rates and adjusts power; in Forza Horizon 6 at 1080p low settings, Intel claimed it extends battery life from under three hours to nearly six.</p>
<ul>
<li><strong>42%</strong>: Intel&#8217;s claimed average performance advantage over AMD Ryzen Z2 Extreme at 35W (Intel internal testing; independent benchmarks pending)</li>
<li><strong>8W to 35W</strong>: Arc G3 Extreme&#8217;s configurable thermal design power range</li>
<li><strong>June 25</strong>: MSI Claw 8 EX AI+ launch date, priced at $1,499</li>
</ul>
<h3>Frame Energy Math on Portable Devices</h3>
<p>One AI-generated frame costs roughly a quarter the energy of rendering an original, Intel&#8217;s team explained at the launch briefing. Four frames can be produced for the energy of about one and a half native renders. On a 35-watt thermal envelope shared between CPU and GPU, that ratio changes what&#8217;s achievable at a given battery level without requiring the full power that native rendering at equivalent frame rates would demand.</p>
<p>&#8220;You need frame gen to get a good experience&#8221; on handheld gaming PCs, he told PC Gamer in Taipei. Visual artifacts from frame generation are also less conspicuous on an 8-inch panel than on a large desktop monitor, which lowers the quality threshold the AI model needs to meet. For the category of <a href="https://mindcron.com/lenovo-legion-y700-2025-gaming-tablet-specs-review/" target="_blank" rel="noopener">compact gaming hardware pushing high refresh rates within tight power budgets</a>, controller players on handhelds are the audience that already leaves frame generation disabled because of the latency cost. Extrapolation&#8217;s design goal is to remove that cost.</p>
<h2>When Prediction Goes Wrong</h2>
<p>The risk is a misprediction the player sees. If the model generates a frame showing the camera tracking right while the player has already moved left, the correcting real frame arrives moments later but the brief visual pop is there. He addressed this in the interview: &#8220;The question really is: how often do people change their choices, and how quickly can you respond to the change of choices?&#8221;</p>
<p>His position is that most player motion is continuous. The AI model, trained on real input sequences, handles straight lines, parabolic arcs, and sustained thumbstick holds cleanly. The failure case is what he called &#8220;a very notable physical change in your hand or your thumb&#8221;: a snap reversal, a sudden stop. On a controller, those inputs are rarer and less abrupt than on a gaming mouse. Handheld controllers already carry more than eight milliseconds of inherent signal latency in their communication chain, which means a brief misprediction can land within the margin players already absorb without perceiving it.</p>
<p>Intel hasn&#8217;t published prediction error rates, compute overhead, or end-to-end latency figures for the consumer version. The 2024 Intel research paper <a href="https://arxiv.org/pdf/2406.18551" target="_blank" rel="noopener">GFFE: G-buffer Free Frame Extrapolation for Low-latency Real-time Rendering</a>, published by Intel engineers on arXiv, describes the engineering method but carries no consumer performance data. A rasterization trade-off also applies: the more AI frames the system generates per rendered one, the more GPU overhead the extrapolation model consumes from the same chip. On a handheld&#8217;s integrated GPU, that overhead competes directly with the render budget frame extrapolation is designed to supplement. How Intel distributes that cost across the Arc G3 Extreme&#8217;s power range hasn&#8217;t been specified publicly.</p>
<p>Desktop gaming with a gaming mouse is a different test entirely. Players in reflex-heavy competitive titles notice latency differences in the two-to-three millisecond range, well below the 8ms floor that interpolation adds to a handheld. Extrapolation introduces its own latency variable in the form of misprediction, and how often that occurs under competitive desktop conditions is one of the questions the technology hasn&#8217;t answered.</p>
<h2>From Sydney to Taipei</h2>
<p>Intel&#8217;s public record on frame extrapolation starts at SIGGRAPH Asia 2023, the graphics research conference held in Sydney that December. There the company introduced ExtraSS, a flow-based neural network that uses a game engine&#8217;s G-buffer data (depth, surface normals, geometry) to guide the extrapolation process. The method works where G-buffers are accessible, which excludes mobile platforms, cloud gaming pipelines, and forward-rendering engines that don&#8217;t expose that data layer.</p>
<p>The GFFE paper addressed that constraint directly. Intel published the work to arXiv in 2024, describing a recurrent neural architecture combined with optical flow and warping techniques that produce extrapolated frames without G-buffer access. The approach handles occluded regions and shading changes that simpler warping methods fail on, the kinds of artifacts that fast-moving elements like particle effects and transparent surfaces tend to reveal. &#8220;G-buffer Free&#8221; extends compatibility to engines and platforms that ExtraSS couldn&#8217;t reach, including mobile and cloud pipelines that most frame-generation research has historically skipped. The paper targets frame quality within what real-time rendering requires, though it carries no consumer-facing performance figures.</p>
<p>Between Sydney and Taipei, Intel stayed quiet on the consumer side. The Taipei interview was the first substantive public update in roughly two and a half years. PC Gamer&#8217;s reporter on the ground noted there had been a real possibility of a live extrapolation demo appearing at the show. It didn&#8217;t make the floor.</p>
<p>No release timeline followed the interview. The next milestone is a full public showcase with benchmark numbers, prediction accuracy data, and a working demonstration. Intel first flagged the technology in 2023. The demonstration hasn&#8217;t followed.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://mindcron.com/intel-frame-extrapolation-gaming-latency-fix/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Evgeny Rylov Retires From Swimming, Four Olympic Medals in Hand</title>
		<link>https://mindcron.com/evgeny-rylov-retirement-olympic-backstroke-swimming/</link>
					<comments>https://mindcron.com/evgeny-rylov-retirement-olympic-backstroke-swimming/#respond</comments>
		
		<dc:creator><![CDATA[Mason Miller]]></dc:creator>
		<pubDate>Sun, 07 Jun 2026 04:21:40 +0000</pubDate>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Sports]]></category>
		<guid isPermaLink="false">https://mindcron.com/evgeny-rylov-retirement-olympic-backstroke-swimming/</guid>

					<description><![CDATA[Rylov, Russian backstroke double-gold medalist at Tokyo 2020, announced his retirement on Friday with four Olympic medals and years of sanctions behind him.]]></description>
										<content:encoded><![CDATA[<p>Evgeny Rylov announced his retirement from competitive swimming on Friday, closing a career of more than a decade that produced four Olympic medals and established him, from 2016 through 2021, as the finest backstroker in Europe. The Russian Swimming Federation posted the announcement jointly with Rylov on Instagram, calling the career a journey of &#8220;grueling training, overcoming challenges, and navigating the highs and lows.&#8221;</p>
<p>World Aquatics lifted its participation restrictions on Russian and Belarusian athletes in April 2026, reopening international competition to Rylov for the first time since 2021. He retired instead, his most recent racing having come at the 2025 Russian Nationals.</p>
<h2>A Career Built in Backstroke</h2>
<p>Rylov registered on the international radar at the 2014 Summer Youth Olympics in Nanjing, winning three golds and a silver and breaking two world junior records within a single afternoon. The 50 backstroke final came less than an hour before a medley relay gold. He was 18 years old.</p>
<p>His first senior World Championships medal arrived the following year in Kazan, on Russian soil: bronze in the 200 backstroke in 1:54.60, a national record at the time. At Rio in 2016, he placed third in the 200 back in 1:53.97, a European record, and sixth in the 100 back in 52.74. Ryan Murphy of the United States won gold in both backstroke events that week.</p>
<p>The 2017 World Championships in Budapest produced his first individual world title. Rylov won the 200 back in 1:53.61, a new European record, with Murphy finishing off the podium. In Gwangju two years later, he defended the title. He entered Tokyo as a back-to-back 200 backstroke world champion with no peer in Europe across either distance.</p>
<ol>
<li>2014 Youth Olympics, Nanjing: three golds, two world junior records</li>
<li>2016 Rio: 1:53.97, European record, 200m backstroke bronze</li>
<li>2017 World Championships, Budapest: 1:53.61, European record, world gold</li>
<li>2019 World Championships, Gwangju: defended 200m backstroke title, back-to-back champion</li>
</ol>
<figure class="wp-block-image aligncenter featured-image" style="margin:1.5em auto;text-align:center;"><img decoding="async" class="aligncenter" src="https://mindcron.com/wp-content/uploads/2026/06/evgeny-rylov-retirement-olympic-backstroke-champion-competitive-swimming.webp" alt="Evgeny Rylov retirement Olympic backstroke champion competitive swimming" style="width:100%;max-width:800px;height:auto;border-radius:8px;display:block;margin:0 auto;" /><figcaption style="text-align:center;font-size:0.85em;color:#888;margin-top:0.5em;">Evgeny Rylov retirement Olympic backstroke champion competitive swimming</figcaption></figure>
<h2>Tokyo&#8217;s Backstroke Double Was His Peak</h2>
<p>Rylov swam 1:53.23 at the 2021 Russian Nationals, a lifetime best and a new European record that qualified him for the Olympic team. At the Tokyo Aquatics Centre, he and his teammates competed under the Russian Olympic Committee (ROC) banner because of a pre-existing WADA ban on Russian sport, the result of an established state-sponsored doping program. His times were his own.</p>
<p>In the 200 backstroke final, he touched in <strong>1:53.27</strong>, an Olympic record. Four days later, in the 100 backstroke, he went <strong>51.98</strong>, a European record. He won both events in a single Games, an achievement the backstroke had not seen in nearly four decades. He also won a silver in the 4x200m freestyle relay, splitting 1:45.26 on the third leg.</p>
<p>Murphy, who took silver in the 200 backstroke, told reporters afterward the race was &#8220;probably not clean,&#8221; then said he meant swimming in general and not Rylov in particular. Murphy&#8217;s qualification did not fully disperse the remark. Back in Russia, Putin awarded Rylov the Order of Russia. A national poll named him the best Russian athlete of the Games.</p>
<p>In November 2021, Rylov traveled to Kazan for the European Short Course Championships. He finished fourth in the 100 backstroke prelims, third among the Russian swimmers in the field, and did not advance to the semifinals under the meet&#8217;s two-per-country selection rule. In the 200 backstroke, he reached the semifinals and placed fourth before withdrawing ahead of the final. It was his last international race.</p>
<h2>After the Luzhniki Rally</h2>
<p>On March 18, 2022, three weeks into Russia&#8217;s invasion of Ukraine, Rylov appeared on stage at a rally at Moscow&#8217;s Luzhniki Stadium. He was one of eight Russian athletes at the event, which was hosted by Putin and built around a speech marking the eighth anniversary of Russia&#8217;s annexation of Crimea. Rylov wore a jacket bearing the letter &#8220;Z,&#8221; the symbol associated with Russian military operations in Ukraine, and stood on stage wearing his Olympic medals. He is a staff sergeant of the Moscow Oblast Police in Lobnya, and multiple reports noted that, as a serving officer, he may have had limited ability to decline the invitation.</p>
<p>Three consequences arrived in the days that followed:</p>
<ul>
<li><strong>Speedo</strong> terminated its sponsorship deal with Rylov with immediate effect and announced the remaining balance of his contract fee would be donated to UNHCR, the United Nations Refugee Agency</li>
<li><strong>Energy Standard</strong>, his International Swimming League (ISL) club, suspended him alongside all Russian athletes and support staff on its roster</li>
<li><strong>FINA</strong>, the international swimming body that rebranded as World Aquatics later that year, opened a disciplinary investigation and issued a nine-month suspension on April 20, 2022, barring him from all internationally sanctioned competition</li>
</ul>
<p>The nine-month ban became academic within weeks, when FINA extended a blanket restriction covering all Russian and Belarusian swimmers and absorbing his personal suspension.</p>
<blockquote>
<p>I don&#8217;t understand what I did, but in the end they filed a complaint against me for that offended the feelings of other athletes. You see, I offended them by simply supporting my country, my president. I don&#8217;t know how to argue with that.</p>
</blockquote>
<p>Rylov gave those comments to Russian sports outlet Sport-Express after Speedo dropped him. He had already announced he would not compete at the 2022 World Championships &#8220;as a sign of support&#8221; for Russian Paralympic athletes banned from that winter&#8217;s Games. FINA announced the comprehensive restriction on all Russian and Belarusian swimmers the same day.</p>
<h2>The Restrictions That Outlasted His Ban</h2>
<p>The broader restrictions on Russian swimmers changed shape several times over four years but never reopened international competition to Rylov specifically. His personal nine-month suspension ended in January 2023. The framework that replaced it came with conditions he had already said he would refuse.</p>
<h3>The Neutral Athlete Framework</h3>
<p>In September 2023, World Aquatics allowed Russian and Belarusian athletes to compete at international events as individual neutrals, subject to background checks and a declaration confirming they had not publicly supported the war. Rylov had told reporters he would not sign any such declaration. He did not race internationally under the neutral framework.</p>
<p>The program expanded in December 2024, when Russian relay teams competed at the Short Course World Championships in Budapest as Neutral Athletes B (NAB), winning three relay golds. At the 2025 World Championships in Singapore, Russia&#8217;s neutral relay squad won two long-course titles.</p>
<table>
<thead>
<tr>
<th>Period</th>
<th>Russian Athlete Status</th>
<th>Rylov</th>
</tr>
</thead>
<tbody>
<tr>
<td>March 2022</td>
<td>Full ban from FINA events</td>
<td>Personal 9-month ban absorbed into blanket ban</td>
</tr>
<tr>
<td>Sept. 2023</td>
<td>Individual neutral (AIN) status permitted</td>
<td>Ineligible; refused to sign anti-war declaration</td>
</tr>
<tr>
<td>Dec. 2024</td>
<td>Neutral relay teams (NAB) permitted; 3 golds at SC Worlds</td>
<td>Racing in Russia only</td>
</tr>
<tr>
<td>April 2026</td>
<td>Full participation; national flag and anthem restored</td>
<td>Eligible to apply; announced retirement</td>
</tr>
</tbody>
</table>
<h3>The April 2026 Restoration</h3>
<p>On April 13, 2026, the <a href="https://www.worldaquatics.com/news/4486715/world-aquatics-bureau-amends-athlete-participation-during-periods-of-political-conflict-guidelines" target="_blank" rel="noopener">World Aquatics Bureau ended the political conflict guidelines for senior Russian and Belarusian athletes</a>, restoring competition rights under national flags, anthems, and uniforms for the first time since 2022. Athletes still needed to pass four successive anti-doping tests and clear background checks with the Aquatics Integrity Unit (AQIU) before competing. &#8220;We are determined to ensure that pools and open water remain places where athletes from all nations can come together in peaceful competition,&#8221; said the governing body&#8217;s president, Husain Al Musallam. European Aquatics asked for a delay in applying the rule within its own competitions until September 1, 2026, to protect the Paris European Championships from immediate effects. The Norwegian Swimming Federation went further, stating it would not host international events if Russian or Belarusian athletes competed under national symbols.</p>
<h2>Records He Once Held</h2>
<p>While Rylov raced exclusively within Russia, two benchmarks he had set in Tokyo passed to other swimmers permanently.</p>
<p>The <a href="https://swimswam.com/thomas-ceccon-shocks-the-field-with-51-60-100-backstroke-world-record/" target="_blank" rel="noopener">2022 World Championships in Budapest produced a world record of <strong>51.60</strong> from Italian swimmer Thomas Ceccon in the 100 backstroke</a> &#8211; the same meet Russian swimmers were banned from attending. Ceccon&#8217;s swim erased Rylov&#8217;s European record of 51.98 from eleven months earlier and moved Rylov from European record holder to third on the all-time list. The world record still stands.</p>
<p>The 200 backstroke took longer to change. Rylov&#8217;s lifetime best of 1:53.23, set at the 2021 Russian Nationals to qualify for the Olympics, held the European record through four years of his absence. Hubert Kos, Hungary&#8217;s Olympic champion in the event at the 2024 Paris Games, swam 1:53.19 at the 2025 World Championships in Singapore, four hundredths faster than Rylov had ever gone. The European record Rylov had lowered six times across his career is now Kos&#8217;s.</p>
<h2>The Open Door in April 2026</h2>
<p>At the 2025 Russian Nationals, Rylov finished 13th in the 50 backstroke, 14th in the 100 backstroke, and 4th in the 200 backstroke.</p>
<p>Under the April 2026 World Aquatics ruling, he could have applied this summer to race under the Russian flag in international competition for the first time since 2021. The anti-war declaration that had previously blocked his neutral-athlete eligibility was no longer required under the full restoration. Anti-doping clearance and an AQIU background check remained as conditions, but the political threshold was gone. His 2025 Nationals results were a separate matter the retirement answers by omission.</p>
<p>The Russian Swimming Federation&#8217;s tribute praised his &#8220;champion&#8217;s spirit&#8221; and wished him well in his &#8220;new chapter of life.&#8221; His final career record: four Olympic medals (<strong>two gold</strong>, one silver, one bronze), eight long-course World Championship medals (two gold, three silver, three bronze), and seven short-course World Championship medals (three gold, two silver, two bronze).</p>
<p>World Aquatics opened the door in April. He walked away in June.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://mindcron.com/evgeny-rylov-retirement-olympic-backstroke-swimming/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Fitbit Air vs. Pixel Watch 4, and Why You Might Want Both</title>
		<link>https://mindcron.com/fitbit-air-vs-pixel-watch-4-google-health-pairing/</link>
					<comments>https://mindcron.com/fitbit-air-vs-pixel-watch-4-google-health-pairing/#respond</comments>
		
		<dc:creator><![CDATA[Mason Miller]]></dc:creator>
		<pubDate>Sun, 07 Jun 2026 04:17:48 +0000</pubDate>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Technology]]></category>
		<guid isPermaLink="false">https://mindcron.com/fitbit-air-vs-pixel-watch-4-google-health-pairing/</guid>

					<description><![CDATA[Google's $99 Fitbit Air and $349 Pixel Watch 4 serve different roles, but since May 2026 the Google Health app can sync both devices on one account at once.]]></description>
										<content:encoded><![CDATA[<p>The Google Fitbit Air is a $99 screenless fitness band with a 7-day battery charge, designed for passive health and sleep tracking. The Pixel Watch 4 starts at <strong>$349</strong> for the 41mm model, runs Wear OS 6, and includes standalone GPS and ECG. Neither device requires a subscription to use its core health features.</p>
<p>The old Fitbit app enforced a one-device limit, requiring users to unpair one tracker before connecting another. Google removed that constraint on May 19, 2026, when it rebranded the Fitbit app as Google Health, and for the first time a Fitbit Air and a Pixel Watch 4 can stay connected to the same Google account at once.</p>
<h2>Two Trackers, One App</h2>
<p>The Fitbit Air is a passive health monitor with no display and no standalone apps. Everything it records feeds into the Google Health app on a connected phone. <a href="https://blog.google/products-and-platforms/devices/fitbit/fitbit-air/" target="_blank" rel="noopener">Google announced the Fitbit Air on May 7, 2026</a>, with retail availability beginning May 26. The oval-shaped pebble tracker measures 34.9 x 17 x 8.3mm and weighs <strong>5.2 grams</strong> without its band, putting it lighter on the wrist than a Whoop strap. It ships with a fabric Performance Loop band at $99.99, or a Stephen Curry Special Edition at $129.99. Accessory Active silicone and Elevated Modern bands start at $34.99.</p>
<p>The Pixel Watch 4 launched October 9, 2025, at $349 for the 41mm Wi-Fi model and $449 for the 41mm LTE version. It runs Wear OS 6 on a Qualcomm Snapdragon W5 Gen 2 chip with a Cortex M55 co-processor, 2GB of RAM, and 32GB of onboard storage. Both size variants (41mm and 45mm) share a 12.3mm case thickness; the 41mm weighs 31 grams without a band. Its Actua 360 AMOLED LTPO display reaches 3,000 nits of peak brightness across both models.</p>
<table>
<thead>
<tr>
<th>Specification</th>
<th>Fitbit Air</th>
<th>Pixel Watch 4 (41mm)</th>
</tr>
</thead>
<tbody>
<tr>
<td>Price</td>
<td>$99.99</td>
<td>$349 Wi-Fi / $449 LTE</td>
</tr>
<tr>
<td>Display</td>
<td>None</td>
<td>1.33&quot; AMOLED LTPO, 3,000 nits</td>
</tr>
<tr>
<td>Battery life</td>
<td>Up to 7 days</td>
<td>30 hrs (AOD) / 48 hrs (Battery Saver)</td>
</tr>
<tr>
<td>Fast charge</td>
<td>5 min = full day</td>
<td>15 min = 50%</td>
</tr>
<tr>
<td>Weight (no band)</td>
<td>5.2 g</td>
<td>31 g</td>
</tr>
<tr>
<td>GPS</td>
<td>None (phone required)</td>
<td>Dual-frequency (standalone)</td>
</tr>
<tr>
<td>OS</td>
<td>None (app-dependent)</td>
<td>Wear OS 6</td>
</tr>
<tr>
<td>iOS compatible</td>
<td>Yes (iOS 16.4+)</td>
<td>No (Android 11+ only)</td>
</tr>
<tr>
<td>Water resistance</td>
<td>50 meters</td>
<td>IP68, 5ATM</td>
</tr>
<tr>
<td>Included trial</td>
<td>3 months Health Premium</td>
<td>3 months Health Premium</td>
</tr>
</tbody>
</table>
<figure class="wp-block-image aligncenter featured-image" style="margin:1.5em auto;text-align:center;"><img decoding="async" class="aligncenter" src="https://mindcron.com/wp-content/uploads/2026/06/fitbit-air-vs-google-pixel-watch-4-sleep-tracking-comparison.webp" alt="Fitbit Air vs Google Pixel Watch 4 sleep tracking comparison" style="width:100%;max-width:800px;height:auto;border-radius:8px;display:block;margin:0 auto;" /><figcaption style="text-align:center;font-size:0.85em;color:#888;margin-top:0.5em;">Fitbit Air vs Google Pixel Watch 4 sleep tracking comparison</figcaption></figure>
<h2>What Each Device Measures</h2>
<h3>The Fitbit Air&#8217;s Sensor Set</h3>
<p>The Fitbit Air carries an optical heart rate monitor running 24/7, red and infrared sensors for SpO2 blood-oxygen readings, a skin temperature sensor, and a three-axis accelerometer with gyroscope. Those sensors enable AFib (atrial fibrillation) heart rhythm alerts, HRV (heart rate variability) tracking, breathing rate monitoring, cardio load and readiness scoring, and automated workout detection. Sleep stages log continuously through the night. A vibration motor handles Smart Wake alarms, and a double-tap gesture blinks an LED to show remaining battery.</p>
<h3>The Pixel Watch 4&#8217;s Additions</h3>
<p>The Pixel Watch 4 carries all the Air&#8217;s sensors plus a cEDA (continuous electrodermal activity, a physiological stress response measure) sensor, ECG capability, an altimeter, barometer, magnetometer, and ambient light sensor, along with a compass. Its dual-frequency GPS combines Galileo, GLONASS, and Beidou signals and tracks outdoor routes without a phone. Five capabilities detailed on <a href="https://store.google.com/product/pixel_watch_4_specs?hl=en-US" target="_blank" rel="noopener">the Pixel Watch 4&#8217;s official specification page</a> aren&#8217;t available on the Fitbit Air:</p>
<ul>
<li>Loss of Pulse Detection: detects when pulse stops and prompts a call to emergency services</li>
<li>Satellite SOS: connects to emergency services via satellite when no cellular or Wi-Fi signal is available (LTE models only)</li>
<li>ECG: on-demand electrocardiogram readings</li>
<li>Fall and Crash Detection: automatically contacts emergency services after a detected fall or crash</li>
<li>Gemini Raise to Talk: hands-free access to Google&#8217;s Gemini AI by lifting the wrist</li>
</ul>
<h2>Google Health&#8217;s New Multi-Device Logic</h2>
<p>Before May 2026, the Fitbit app enforced a one-active-device rule. Pairing a Fitbit Air would displace a Pixel Watch from the account, and vice versa; users had to pick one or manage the swap manually each time. The rebranded Google Health app, which went live on May 19, 2026, dropped that restriction entirely.</p>
<p>The app&#8217;s sync engine now compares timestamps from both devices, merges activity data, and avoids double-counting steps or active minutes when both trackers are on the wrist simultaneously. <a href="https://blog.google/products-and-platforms/products/google-health/connect-data-across-devices/" target="_blank" rel="noopener">Google&#8217;s announcement of the Health platform&#8217;s data approach</a> describes the app as a hub aggregating inputs from wearables, smart scales, and medical records, with data portability as a design principle. That openness extends beyond Google hardware: Apple Watch, Oura Ring, Garmin, and Whoop can all connect through Health Connect or the Google Health APIs.</p>
<p>The Gemini-powered Google Health Coach draws on that aggregated data to generate readiness scores and personalized workout plans. It requires Google Health Premium at <strong>$9.99 per month</strong> or $99.99 per year. Both devices include a three-month trial with purchase. Heart rate monitoring, sleep scores, AFib alerts, and workout detection don&#8217;t require a subscription after the trial ends.</p>
<h2>Does the Fitbit Air Fix the Pixel Watch 4&#8217;s Overnight Gap?</h2>
<p>The Pixel Watch 4&#8217;s battery marks a genuine generational step. The 41mm model runs 30 hours with always-on display active, or 48 hours in Battery Saver mode. The 45mm extends those figures to 40 and 72 hours respectively, and a 15-minute charge delivers 50% battery on the 41mm. For most wearers, overnight charging is still the practical default.</p>
<p>Sleep is where the data gap opens. Overnight skin temperature variation, HRV, sleep stages, and breathing rate all require continuous wrist contact, which the charging window interrupts. The Fitbit Air&#8217;s <strong>7-day</strong> battery removes that scheduling conflict: five minutes on its proprietary charging connector provides a full day of use, and a complete charge takes 90 minutes. The trade-off is a separate cable. The Fitbit Air uses a different connector from the Pixel Watch 4&#8217;s magnetic Quick Charge Dock, so someone running both travels with two chargers rather than one.</p>
<h2>Screenless Trackers Before This One Required a Subscription</h2>
<p>The closest competitor in the screenless fitness band segment is Whoop. Whoop bundles its hardware into a subscription starting at $199 per year, with no option to buy the strap outright. The Fitbit Air at $99.99 is the first widely available screenless tracker in that form factor that doesn&#8217;t require ongoing payment to use its core features.</p>
<p>Both the Fitbit Air and the Pixel Watch 4 include a three-month Google Health Premium trial with purchase. Core health features, including AFib alerts, sleep scoring, and cardio readiness, don&#8217;t lock behind the subscription when the trial ends.</p>
<ul>
<li><strong>$99</strong> &#8211; Fitbit Air, device purchase, no mandatory subscription</li>
<li><strong>$199/year minimum</strong> &#8211; Whoop, subscription-only model, hardware not sold separately</li>
<li>$9.99/month &#8211; Google Health Premium, optional coaching add-on for either device after the free trial</li>
</ul>
<h2>The Pairing Case</h2>
<p>Three situations favor the Fitbit Air on its own. Someone without interest in a smartwatch gets continuous health monitoring, AFib awareness, and sleep scoring for $99. Someone on iOS can pair the Fitbit Air via the Google Health app (iOS 16.4 or later), since the Pixel Watch 4 is Android-only. Someone already wearing a Samsung, Apple, or Garmin watch can add the Air as a dedicated sleep companion without swapping their primary device. The <a href="https://mindcron.com/google-pixel-exclusive-features-worth-buying/" target="_blank" rel="noopener">pattern of Google Pixel hardware building its best features around Android exclusives</a> means the Pixel Watch 4 returns the most to users already running Pixel phones and Android services.</p>
<p>The Pixel Watch 4 is the necessary choice when standalone GPS accuracy matters, when Wear OS app access, Google Wallet, or real-time workout data on a screen are priorities, or when the safety features drive the purchase. Loss of Pulse Detection, Satellite SOS, and Fall and Crash Detection have no equivalent on the Fitbit Air.</p>
<p>For an existing Pixel Watch 4 owner, the addition is a straightforward $99 question. The Air fills the overnight window, charges during the hours the watch already needs power, and the Google Health app consolidates both in a single dashboard. Combined hardware spend comes to around $450 for the 41mm Wi-Fi Pixel Watch 4 and the standard Fitbit Air. Google has built the sync infrastructure to handle both without data gaps or duplicate counts, and that infrastructure is what makes the combination worth considering rather than a simple one-or-the-other pick.</p>
<h2>Frequently Asked Questions</h2>
<h3>Does the Fitbit Air work with iPhone?</h3>
<p>Yes. The Fitbit Air pairs with iOS 16.4 or higher via the Google Health app, and a Google account is required to set up the device. The Pixel Watch 4 requires Android 11 or later and has no iOS support.</p>
<h3>Can the Fitbit Air and Pixel Watch 4 run on the same account at once?</h3>
<p>Yes, as of May 2026. The rebranded Google Health app allows both devices to stay connected to a single Google account simultaneously. The previous version of the Fitbit app enforced a one-device limit and required unpairing before adding a second tracker.</p>
<h3>Is a subscription required to use either device?</h3>
<p>No. Both the Fitbit Air and the Pixel Watch 4 include a three-month Google Health Premium trial with purchase. After that, heart rate monitoring, AFib alerts, sleep scores, and workout detection remain free. Google Health Premium unlocks Gemini-powered coaching at $9.99 per month or $99.99 per year.</p>
<h3>Does the Fitbit Air have GPS?</h3>
<p>No. The Fitbit Air has no GPS hardware. Tracking a run or ride with route mapping requires a connected phone. The Pixel Watch 4 includes dual-frequency GPS that operates independently without a phone present.</p>
<h3>How does the Fitbit Air battery compare to the Pixel Watch 4?</h3>
<p>The Fitbit Air lasts up to 7 days per charge; five minutes on the charger provides a full day of use. The Pixel Watch 4 41mm lasts 30 hours with always-on display active, or 48 hours in Battery Saver mode. The 45mm model extends those figures to 40 and 72 hours respectively.</p>
<h3>What health features does the Pixel Watch 4 have that the Fitbit Air doesn&#8217;t?</h3>
<p>The Pixel Watch 4 adds ECG readings, Loss of Pulse Detection, Fall and Crash Detection, Satellite SOS (LTE models only), Gemini Raise to Talk, a cEDA body response sensor, altimeter, barometer, and dual-frequency GPS. Both devices support AFib alerts, HRV, SpO2, sleep stage tracking, and cardio readiness scoring.</p>
<p><script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "FAQPage",
  "name": "Frequently Asked Questions: Fitbit Air vs Pixel Watch 4",
  "mainEntity": [
    {
      "@type": "Question",
      "name": "Does the Fitbit Air work with iPhone?",
      "acceptedAnswer": {
        "@type": "Answer",
        "text": "Yes. The Fitbit Air pairs with iOS 16.4 or higher via the Google Health app, and a Google account is required to set up the device. The Pixel Watch 4 requires Android 11 or later and has no iOS support."
      }
    },
    {
      "@type": "Question",
      "name": "Can the Fitbit Air and Pixel Watch 4 run on the same account at once?",
      "acceptedAnswer": {
        "@type": "Answer",
        "text": "Yes, as of May 2026. The rebranded Google Health app allows both devices to stay connected to a single Google account simultaneously. The previous version of the Fitbit app enforced a one-device limit and required unpairing before adding a second tracker."
      }
    },
    {
      "@type": "Question",
      "name": "Is a subscription required to use either device?",
      "acceptedAnswer": {
        "@type": "Answer",
        "text": "No. Both the Fitbit Air and the Pixel Watch 4 include a three-month Google Health Premium trial with purchase. After that, heart rate monitoring, AFib alerts, sleep scores, and workout detection remain free. Google Health Premium unlocks Gemini-powered coaching at $9.99 per month or $99.99 per year."
      }
    },
    {
      "@type": "Question",
      "name": "Does the Fitbit Air have GPS?",
      "acceptedAnswer": {
        "@type": "Answer",
        "text": "No. The Fitbit Air has no GPS hardware. Tracking a run or ride with route mapping requires a connected phone. The Pixel Watch 4 includes dual-frequency GPS that operates independently without a phone present."
      }
    },
    {
      "@type": "Question",
      "name": "How does the Fitbit Air battery compare to the Pixel Watch 4?",
      "acceptedAnswer": {
        "@type": "Answer",
        "text": "The Fitbit Air lasts up to 7 days per charge; five minutes on the charger provides a full day of use. The Pixel Watch 4 41mm lasts 30 hours with always-on display active, or 48 hours in Battery Saver mode. The 45mm model extends those figures to 40 and 72 hours respectively."
      }
    },
    {
      "@type": "Question",
      "name": "What health features does the Pixel Watch 4 have that the Fitbit Air doesn't?",
      "acceptedAnswer": {
        "@type": "Answer",
        "text": "The Pixel Watch 4 adds ECG readings, Loss of Pulse Detection, Fall and Crash Detection, Satellite SOS (LTE models only), Gemini Raise to Talk, a cEDA body response sensor, altimeter, barometer, and dual-frequency GPS. Both devices support AFib alerts, HRV, SpO2, sleep stage tracking, and cardio readiness scoring."
      }
    }
  ]
}
</script></p>
]]></content:encoded>
					
					<wfw:commentRss>https://mindcron.com/fitbit-air-vs-pixel-watch-4-google-health-pairing/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Alvarez Hits 192nd Home Run to Reach Sixth in Astros History</title>
		<link>https://mindcron.com/alvarez-altuve-milestone-home-runs-astros-history/</link>
					<comments>https://mindcron.com/alvarez-altuve-milestone-home-runs-astros-history/#respond</comments>
		
		<dc:creator><![CDATA[Mason Miller]]></dc:creator>
		<pubDate>Sun, 07 Jun 2026 04:11:59 +0000</pubDate>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Sports]]></category>
		<guid isPermaLink="false">https://mindcron.com/alvarez-altuve-milestone-home-runs-astros-history/</guid>

					<description><![CDATA[Yordan Alvarez hit his 192nd career homer to reach sixth all-time in Astros history. Jose Altuve's 240th as a 2B passed Lou Whitaker for seventh in MLB.]]></description>
										<content:encoded><![CDATA[<p>Houston Astros slugger Yordan Alvarez hit his 192nd career home run Saturday and Jose Altuve connected on his 240th as a second baseman, with both milestones landing in a single 13-2 blowout of the Athletics at Daikin Park. Alvarez&#8217;s grand slam, the team&#8217;s first of the season and the fifth of his career, moved him past former third baseman Alex Bregman into sixth place on the franchise&#8217;s all-time home run list. Altuve&#8217;s solo shot passed Detroit Tigers legend Lou Whitaker for seventh all-time among MLB second basemen.</p>
<h2>Alvarez Climbs to Sixth in Franchise History</h2>
<p>Alvarez entered Saturday as the AL leader in both home runs and RBIs, carrying a season slash of .316/.430/.654. He went 1-for-3, drew a walk, and scored twice in what became Houston&#8217;s highest run-scoring game since <a href="https://www.mlb.com/news/yordan-alvarez-hits-grand-slam-in-astros-win-over-athletics" target="_blank" rel="noopener">an 18-1 rout of the Los Angeles Dodgers last July 4th</a>.</p>
<p>The 192nd homer as an Astro moves past one specific name on the all-time list: Bregman&#8217;s. Alex Bregman spent his entire career in Houston before signing with the Boston Red Sox in free agency after the 2024 season and is now with the Chicago Cubs. Alvarez passed him in June of his age-28 season.</p>
<p>Next on the franchise list is Jim Wynn, &#8220;The Toy Cannon,&#8221; who accumulated <strong>223 home runs</strong> for Houston between 1963 and 1973. That figure has sat in the record books for more than five decades, and Alvarez needs 31 more to reach it. The Astros-Athletics matchup had looked very different nine months earlier, when <a href="https://mindcron.com/athletics-shut-out-astros-6-0-langeliers-soderstrom-home-runs/" target="_blank" rel="noopener">Oakland shut out Houston 6-0 in Sacramento</a> and both Alvarez and Altuve went hitless as part of a five-game losing streak that damaged Houston&#8217;s 2025 playoff standing.</p>
<p>Above Wynn on the franchise list: Craig Biggio with 291 home runs, Lance Berkman with 326, and franchise leader Jeff Bagwell with 449. Bagwell and Biggio are both in the Baseball Hall of Fame.</p>
<p>Houston third baseman Isaac Paredes hit his 100th career home run earlier in the same week. Alvarez is 28 years old, has played in all but one game in 2026 after missing more than 100 games the year before due to injury, and carries a <strong>career 162-game average of 42 home runs</strong>.</p>
<figure class="wp-block-image aligncenter featured-image" style="margin:1.5em auto;text-align:center;"><img decoding="async" class="aligncenter" src="https://mindcron.com/wp-content/uploads/2026/06/yordan-alvarez-astros-milestone-home-run-franchise-history.webp" alt="Yordan Alvarez Astros milestone home run franchise history" style="width:100%;max-width:800px;height:auto;border-radius:8px;display:block;margin:0 auto;" /><figcaption style="text-align:center;font-size:0.85em;color:#888;margin-top:0.5em;">Yordan Alvarez Astros milestone home run franchise history</figcaption></figure>
<h2>Altuve&#8217;s New Place in Second-Base History</h2>
<p>Altuve&#8217;s home run Saturday was his fourth of 2026. He is batting .246 on the season. The count he passed Saturday is position-specific: only at-bats logged while Altuve is the listed second baseman apply toward the record. DH appearances and pinch-hit slots do not.</p>
<p>Lou Whitaker played 19 seasons alongside Alan Trammell in Detroit, won five All-Star selections and three Gold Gloves, and took home the 1978 AL Rookie of the Year Award. His career WAR of 75.1 places him, <a href="https://bleacherreport.com/articles/10064733-jose-altuve-chase-utley-and-the-25-greatest-second-basemen-in-modern-mlb-history" target="_blank" rel="noopener">per a Bleacher Report ranking of the 25 greatest modern second basemen</a>, among the strongest Cooperstown cases for any player not yet inducted. His position-specific total of 239 home runs at second base had stood as the seventh-best mark since his 1995 retirement. Altuve tied that figure in a late-May game against the Texas Rangers before surpassing it Saturday.</p>
<p>The players ahead of Altuve in the second-baseman ranking include Rogers Hornsby, Joe Morgan (who spent his early career with the Astros), and Ryne Sandberg. Jeff Kent holds the all-time record at <strong>354 home runs</strong> at the position and is set to be inducted into the Baseball Hall of Fame. <a href="https://www.baseball-reference.com/players/a/altuvjo01.shtml" target="_blank" rel="noopener">Altuve&#8217;s Baseball Reference career page</a> lists 259 total career home runs, all accumulated with Houston, with the position-specific 240 as a subset of that figure.</p>
<p>He signed with the Astros as an amateur free agent in 2007 and made his major league debut in July 2011. The longest-tenured current member of the organization, he is the only active Astros player who was with the club when it competed in the National League before the franchise&#8217;s 2013 move to the AL West. His credentials include seven Silver Slugger Awards (tied for the most ever at second base), the 2017 AL MVP, and two World Series rings. He is also one of four second basemen in MLB history to collect both 250 career home runs and 250 career steals, joining Craig Biggio, Joe Morgan, and Ryne Sandberg in that company. The contract he signed in 2025, five years at $125 million, runs through 2029. Four years remain.</p>
<h2>The Record Books After Saturday</h2>
<p>With Saturday&#8217;s games in the books, two active Houston players hold positions in separate all-time lists. Alvarez sits sixth in Astros franchise history. Altuve sits seventh all-time among second basemen in MLB.</p>
<p>The Astros franchise all-time home run leaders, as of June 6, 2026:</p>
<table>
<thead>
<tr>
<th>Rank</th>
<th>Player</th>
<th>Astros Career HRs</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Jeff Bagwell</td>
<td>449</td>
</tr>
<tr>
<td>2</td>
<td>Lance Berkman</td>
<td>326</td>
</tr>
<tr>
<td>3</td>
<td>Craig Biggio</td>
<td>291</td>
</tr>
<tr>
<td>4</td>
<td>Jose Altuve</td>
<td>259</td>
</tr>
<tr>
<td>5</td>
<td>Jim Wynn</td>
<td>223</td>
</tr>
<tr>
<td>6</td>
<td>Yordan Alvarez</td>
<td>192</td>
</tr>
</tbody>
</table>
<p>The second-baseman position HR leaders above Altuve, per MLB.com, include four names with Hall of Fame credentials:</p>
<ul>
<li>Jeff Kent &#8211; <strong>354</strong> (all-time leader at the position)</li>
<li>Ryne Sandberg</li>
<li>Joe Morgan</li>
<li>Rogers Hornsby</li>
</ul>
<p>Altuve&#8217;s 259 total career home runs, all with Houston, place him fourth in the franchise table above. His 240 position-specific HRs are a subset of that career figure, reflecting games in which he appeared as the listed second baseman rather than a DH or pinch hitter.</p>
<h2>How Far Is the Top?</h2>
<h3>Alvarez&#8217;s Path to Bagwell</h3>
<p>Jeff Bagwell&#8217;s 449 home runs as an Astro stretch across 15 seasons from 1991 through 2005. Alvarez needs 257 more to reach that total. At his <a href="https://www.baseball-reference.com/players/a/alvaryo01.shtml" target="_blank" rel="noopener">career 162-game average of 42 home runs</a>, the gap closes in roughly six full seasons, putting the record within reach sometime in his mid-30s assuming consistent availability.</p>
<p>The sourced context from Saturday&#8217;s game notes a lower bar also works: 25 or 26 home runs per year from now through age 38. His current production sits far above that floor. Health was the single largest variable in 2025, when he missed more than 100 games. His near-perfect attendance through early June in 2026 resets the projection.</p>
<p>Between Alvarez and Bagwell sit three more milestones: Wynn at 223, Biggio at 291, and Berkman at 326. At 22 home runs through early June, Alvarez is on a pace that could carry him past Wynn&#8217;s franchise mark before the season closes in October.</p>
<h3>Altuve&#8217;s Contract and Kent&#8217;s Record</h3>
<p>Jeff Kent played 17 seasons across multiple franchises, including a two-year stint with the Astros in 2003 and 2004, before retiring in 2008 with 354 home runs specifically at second base. He won the 2000 NL MVP Award with the San Francisco Giants and is set to enter the Hall of Fame. That position record has stood for nearly two decades. Altuve needs 114 more to match it.</p>
<p>Four contract years remain through 2029. Closing a 114-homer gap in that window requires roughly 28 or 29 home runs per season as a second baseman. Altuve is 36, batting .246 in 2026 with four home runs through early June. His best output came in the 2017-2019 stretch; the years left on his deal will arrive at ages 37 and 38. The math on Kent&#8217;s record requires a return to those levels.</p>
<p>He currently ranks 16th all-time in innings played at second base, behind Craig Biggio. Four more seasons in the position will move that ranking higher regardless of the home run trajectory.</p>
<h2>The AL MVP Picture</h2>
<p>After Saturday&#8217;s win, the manager spoke about what Alvarez brings to the Astros&#8217; offensive performance:</p>
<blockquote>
<p>In big moments, he rises to the occasion and just finds a way to boost our club. Just a really good hitter. But we had a ton of really good at-bats and a lot of people contributed to our win today.</p>
</blockquote>
<p>Joe Espada, Houston&#8217;s manager, said after the game at Daikin Park.</p>
<p>Alvarez&#8217;s 2026 season through Saturday:</p>
<ul>
<li><strong>22</strong> home runs (AL leader)</li>
<li><strong>48</strong> RBIs (AL leader)</li>
<li><strong>.316</strong> batting average</li>
<li><strong>.654</strong> slugging percentage</li>
</ul>
<p>In the second expert MVP poll of the 2026 season, a survey of 35 MLB.com writers and analysts, Alvarez edged Aaron Judge of the New York Yankees as the AL front-runner. That poll was compiled before Saturday&#8217;s grand slam.</p>
<p>The Yankees announced Judge suffered a stress fracture in his right first rib cage in a game at Houston in April and would be re-evaluated in four to six weeks before any return timeline is set. His absence removes the most direct AL competition from the field for a significant stretch of the summer.</p>
<p>Alvarez entered June with the AL lead in home runs and RBIs, his franchise ranking just updated, and five names still above him on the list he has been climbing since his 2019 debut.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://mindcron.com/alvarez-altuve-milestone-home-runs-astros-history/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>&#8216;Dead, White and Blue&#8217; Raids the Government&#8217;s Film Archive</title>
		<link>https://mindcron.com/dead-white-and-blue-government-film-archive-green-movie/</link>
					<comments>https://mindcron.com/dead-white-and-blue-government-film-archive-green-movie/#respond</comments>
		
		<dc:creator><![CDATA[Mason Miller]]></dc:creator>
		<pubDate>Sun, 07 Jun 2026 03:59:18 +0000</pubDate>
				<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[News]]></category>
		<guid isPermaLink="false">https://mindcron.com/dead-white-and-blue-government-film-archive-green-movie/</guid>

					<description><![CDATA[Mike Davis assembled 'Dead, White and Blue' from 300 free government films, no shooting days or clearance fees. The archive belongs to everyone.]]></description>
										<content:encoded><![CDATA[<p><em>Dead, White and Blue</em>, Mike Davis&#8217;s satirical sci-fi comedy now streaming free on Tubi, was assembled from more than <strong>300 U.S. government films</strong> (military training reels, FBI procedurals, anti-drug shorts, nuclear test footage) without a single original shooting day, location permit, or clearance fee. Federal copyright law bars any federal agency from holding copyright on what it produces, which puts the entire archive in the public domain and open to anyone who wants it.</p>
<p>Davis calls the technique a &#8220;green movie.&#8221; His Los Angeles production company, Stag Films, has built three features this way since 2008, and the government&#8217;s archive is nowhere near exhausted. The puzzle is why so few filmmakers followed him into it.</p>
<h2>The Archive That Belongs to Everyone</h2>
<p>The National Archives and Records Administration (NARA, the federal body that preserves U.S. government records) holds more than 360,000 reels of film dating from the 1890s through the late 20th century, assembled under the Federal Records Act, which requires agencies to transfer their non-current records when they&#8217;re retired. Its online catalog describes approximately 200,000 individual items, but only about 35,000 of those have an accessible remote viewing copy. For the remainder, a researcher must travel to Washington, D.C., and work in person in the Motion Picture, Sound and Video Research Room.</p>
<ul>
<li><strong>360,000+</strong> film reels in NARA&#8217;s motion picture holdings, dating from the 1890s</li>
<li><strong>200,000</strong> items catalogued in NARA&#8217;s online database</li>
<li><strong>35,000</strong> with an accessible remote viewing copy</li>
<li><strong>40+ military record groups</strong>, from WWI Army Signal Corps footage through Air Force reels of the 1980s</li>
</ul>
<p>The military collections run deepest. The Army Signal Corps record group alone carries more than 12,000 titles covering maneuvers and battles from the First World War through the 1980s. The U.S. Navy&#8217;s audiovisual holdings (Record Group 428) run to approximately 13,300 reels spanning from before World War I to the early 1980s. Law enforcement and domestic agency records extend the reach further: training films for FBI procedures, civil-order protocols, weapons qualification, and drug-awareness programs that generated their own peculiar visual vocabulary. Davis found Sonny Bono hosting one of the anti-drug productions. He also found footage of nuclear test towns with mannequins melting under simulated blast effects and medical training sequences that exist in a category of their own.</p>
<p>The legal foundation is <strong>17 U.S.C. 105</strong>, which holds that works produced by U.S. federal employees as part of their official duties are not eligible for copyright protection in the United States. <a href="https://www.archives.gov/research/motion-pictures/permissions" target="_blank" rel="noopener">NARA&#8217;s permissions page for its motion picture holdings</a> confirms the agency charges no royalties and does not license its content. Nuances apply: donated materials from private sources within NARA&#8217;s collection may carry restrictions, and the agency cautions that researchers bear responsibility for confirming the status of individual items. For films produced directly by federal agencies, the archive is free.</p>
<p>The International Documentary Association has documented <a href="https://www.documentary.org/feature/taking-stock-national-archives-finding-footage-americas-film-vault" target="_blank" rel="noopener">a steady decline in researchers visiting NARA&#8217;s film reading rooms</a>, even before the COVID-19 disruption. Davis spent two years inside that archive for one movie.</p>
<figure class="wp-block-image aligncenter featured-image" style="margin:1.5em auto;text-align:center;"><img decoding="async" class="aligncenter" src="https://mindcron.com/wp-content/uploads/2026/06/dead-white-and-blue-green-movie-public-domain-government-film-archive.webp" alt="Dead White and Blue green movie public domain government film archive" style="width:100%;max-width:800px;height:auto;border-radius:8px;display:block;margin:0 auto;" /><figcaption style="text-align:center;font-size:0.85em;color:#888;margin-top:0.5em;">Dead White and Blue green movie public domain government film archive</figcaption></figure>
<h2>Making Film in Reverse</h2>
<h3>The Silent Cut</h3>
<p>Davis&#8217;s workflow breaks the standard production sequence entirely. He starts with existing footage, combs through it for anything weird, visually striking, or usable, and assembles a rough visual edit before a word of script is written. The result is something like a silent film: a sequence with a loose beginning, middle, and end but no dialogue, no locked characters, no fixed story. He calls this phase &#8220;making a film backwards.&#8221;</p>
<p>Building a consistent character from government archive material requires creative substitution. Davis identifies someone who appears in multiple government productions, collects every frame of that person he can find, then supplements with stand-ins: other footage shot from behind, or at similar angles, with comparable hair or build, close enough to serve as a cutaway. The cast was assembled this way across a source collection that would ultimately demand far more raw material than working from a feature-length skeleton ever had.</p>
<h3>Writing the Script You Don&#8217;t Have Yet</h3>
<p>Once the rough visual cut exists, Davis writes the script against it. The footage dictates what the story can be. He can&#8217;t write a scene he has no footage for, so he writes into what he already has, and the archive keeps offering material that a clean-sheet process would never arrive at.</p>
<blockquote>
<p>I can&#8217;t imagine something that I don&#8217;t have footage for. So I&#8217;ll come up with a sort of a loose general plotline and then just put all this footage together in a way that makes some kind of sense. Not a lot of sense, but at least could hopefully work as a story with a beginning and middle and an end with somewhat consistent characters.</p>
</blockquote>
<p>Davis, the writer-director behind Stag Films, made the point in an interview with KPBS Cinema Junkie host Beth Accomando.</p>
<p>With the script complete, he brings in voice actors, records the full dialogue track as a standalone audio performance without the footage present, then lays that audio over the existing visual cut, tightening the edit around it. He compares the process to animation production, where voice recording precedes animation and the visuals are built to fit the performance. Here the order reverses: the visuals exist first, the audio is recorded against the script, and the edit reconciles the two. His son worked as editor on the film. The rest of the production was Davis alone, in his home workspace, over roughly two years.</p>
<h2>The Stag Films Green Canon</h2>
<p><em>Sex Galaxy</em> (2008), Davis&#8217;s first green movie, used the 1968 science-fiction film <em>Voyage to the Planet of Prehistoric Women</em> as a structural skeleton: a feature-length spine with consistent characters onto which he grafted government shorts and additional stock footage. <em>President Wolfman</em> (2012) followed the same logic, pulling the 1973 political horror film <em>The Werewolf of Washington</em> as its base and assembling more than 100 additional source films around it.</p>
<table>
<thead>
<tr>
<th>Film</th>
<th>Year</th>
<th>Structural Spine</th>
<th>Source Count</th>
<th>Streaming</th>
</tr>
</thead>
<tbody>
<tr>
<td><em>Sex Galaxy</em></td>
<td>2008</td>
<td><em>Voyage to the Planet of Prehistoric Women</em> (1968)</td>
<td>Not specified</td>
<td>Various VOD</td>
</tr>
<tr>
<td><em>President Wolfman</em></td>
<td>2012</td>
<td><em>The Werewolf of Washington</em> (1973)</td>
<td>100+</td>
<td>Various VOD</td>
</tr>
<tr>
<td><em>Dead, White and Blue</em></td>
<td>2025</td>
<td>None; all-fragment construction</td>
<td>300+</td>
<td>Tubi, Fosum (both free)</td>
</tr>
</tbody>
</table>
<p>For his third film, Davis dropped the spine entirely. Building every scene from fragments without a feature-length anchor required nearly triple the source material of <em>President Wolfman</em>; character continuity came entirely from his editing instincts, with no pre-existing film&#8217;s structure to borrow. The film ran the festival circuit through 2025, appearing across the United States and at the Babylon Kino in Ghent, Belgium. It screens tonight at the Art Theater Long Beach. Tubi carries it for free.</p>
<h2>Birth of a Nation Reversed</h2>
<h3>The KKK as Tech Company</h3>
<p>The plot opens with a racist white cop shooting a Black man. A modernized Ku Klux Klan and the U.S. military both want the incriminating bullet retrieved from the body, and the Klan&#8217;s preferred tool is a high-tech shrink ray. In Davis&#8217;s version, the organization has rebranded as something closer to a Silicon Valley company: slick conference presentations, product launch events, promotional videos. An Atlanta mayor goes missing as the FBI and the military converge on the same case.</p>
<p>Davis has been direct about the political origin. The resurgence of organized white nationalism over the past decade and more, and his anger about it, drove the premise. Blaxploitation cinema of the 1970s provided the tonal register: heightened, funky, knowingly over the top, and committed to its point of view. Government training footage from that same era gave him the visual vocabulary to work with: the grain, the flat institutional lighting, the earnest bureaucratic delivery of people who believed in what they were filming.</p>
<p>Two specific archive sources supply the KKK sequences. Part of the footage comes from D.W. Griffith&#8217;s <em>Birth of a Nation</em>, the 1915 silent film that was both one of cinema&#8217;s technical milestones and an explicit piece of Klan propaganda in which the organization is portrayed as America&#8217;s heroic defenders. The film <a href="https://archive.org/details/dw_griffith_birth_of_a_nation" target="_blank" rel="noopener">sits in the public domain</a>, confirmed through a legal ruling upheld by the Supreme Court in 1976 and under U.S. copyright law for works published before January 1, 1931. The second source is actual federal surveillance documentation: records of Klan activities that government investigators collected, now held in the federal archives.</p>
<p>Davis is using the primary artifact of cinematic white supremacy as raw material for a film mocking it. The choice of source footage is the argument made visible at the level of method.</p>
<h3>Recording Without Watching</h3>
<p>The voice cast records in a studio without footage in front of them. Davis directs line by line, the actors take two passes on each, and he lays the finished audio track over the existing visual cut, tightening the edit around what they gave him. Performers don&#8217;t need to see what their character is doing, he has found. They need the tone and the context of the scene.</p>
<p>The sync is imperfect, and Davis frames this as a deliberate aesthetic choice. Flat-affect, slightly off-timed delivery makes the absurdist writing hit harder. A punchline delivered with clinical government-film deadpan is already funny; dubbed over footage that doesn&#8217;t quite match, it becomes funnier still. The model is Woody Allen&#8217;s <em>What&#8217;s Up, Tiger Lily?</em>, the 1966 comedy in which Allen redubbed a Japanese spy film to entirely different comic effect, a film Davis cites as a direct influence. Once audiences accept the convention in the opening minutes, the gap between audio and image stops reading as error.</p>
<h2>Why Didn&#8217;t Anyone Else Follow?</h2>
<p>Davis has been explicit since the <em>President Wolfman</em> era that part of the goal was to inspire other filmmakers. The premise of <a href="https://stag-films.com/feature-films/" target="_blank" rel="noopener">Stag Films&#8217; green movie catalog</a> is demonstrably sound: build a narrative feature with crowds, explosions, military hardware, and multiple locations without a studio, a budget, or a set. A portion of the government archive is searchable online through <a href="https://archive.org/details/usgovfilms" target="_blank" rel="noopener">the Internet Archive&#8217;s U.S. government film collection</a>, free from any browser, with no trip to Washington required.</p>
<p>The constraint Davis describes is creative, not financial. You need what he called &#8220;a twisted brain&#8221; to hold the method&#8217;s logic together across hundreds of source films while building a story that can only go where the footage permits. That&#8217;s a genuine demand, and it&#8217;s the only meaningful cost in the method.</p>
<p>The production cost Davis very little monetarily but took roughly two years of sustained attention. That trade is the method&#8217;s core offer: time and ingenuity in exchange for production infrastructure. The green movie approach removes the financing dependency entirely, which has been Davis&#8217;s argument since <em>Sex Galaxy</em> proved the concept in 2008.</p>
<p>Davis is already pulling footage for &#8220;Hot Heat Hawaii,&#8221; his next green movie, a drug-smuggling surfing adventure. The government&#8217;s archive isn&#8217;t running out.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://mindcron.com/dead-white-and-blue-government-film-archive-green-movie/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Special Olympics Summer Games Returns to Cal State Long Beach</title>
		<link>https://mindcron.com/special-olympics-southern-california-summer-games-long-beach/</link>
					<comments>https://mindcron.com/special-olympics-southern-california-summer-games-long-beach/#respond</comments>
		
		<dc:creator><![CDATA[Mason Miller]]></dc:creator>
		<pubDate>Sun, 07 Jun 2026 03:54:36 +0000</pubDate>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Sports]]></category>
		<guid isPermaLink="false">https://mindcron.com/special-olympics-southern-california-summer-games-long-beach/</guid>

					<description><![CDATA[Special Olympics Southern California's Summer Games at Long Beach drew hundreds of athletes to seven sports and free health screenings in seven disciplines.]]></description>
										<content:encoded><![CDATA[<p>The Special Olympics Southern California Summer Games returned to Cal State Long Beach this weekend, drawing hundreds of athletes from across the region for three days of competition, free health screenings in seven medical disciplines, and a Young Athletes development program for children as young as two. Law enforcement officers lined the Saturday morning arrival route as competitors checked in for the championship&#8217;s two main competition days, which followed Friday evening&#8217;s cauldron lighting at the LSB Financial Credit Union Pyramid, concluding a 1,100-mile Law Enforcement Torch Run that had started in Chula Vista on May 26.</p>
<h2>Competition Across Seven Events</h2>
<p>The championship ran across seven event categories on Saturday and Sunday, with swimming held at the Monte Nitzkowski Aquatics Center at Long Beach City College, a new venue this year per <a href="https://sosc.org/summergames/information/" target="_blank" rel="noopener">SOSC&#8217;s Summer Games event information</a>. Track and field, basketball, bocce, and flag football filled the main campus grounds at Cal State Long Beach, joined by Unified versions of both bocce and flag football.</p>
<p>Unified Sports puts athletes with intellectual disabilities alongside partners without intellectual disabilities on the same competition team, matched at similar skill levels. <a href="https://media.specialolympics.org/resources/research/unified-sports/SO-Research-Overview-Unified-Sports-06-2018.pdf" target="_blank" rel="noopener">Special Olympics Unified Sports research</a> found that majorities in nine out of ten countries surveyed believed people with intellectual disabilities could not play competitive sport alongside those without them. Unified teams put both groups in the same competitive lineup.</p>
<p>The 2026 Summer Games sport categories:</p>
<ul>
<li>Athletics (track and field)</li>
<li>Basketball</li>
<li>Bocce</li>
<li>Unified Bocce</li>
<li>Flag Football</li>
<li>Unified Flag Football</li>
<li>Swimming</li>
</ul>
<p>Summer Games is the championship of Special Olympics Southern California&#8217;s (SOSC) spring training season, with athletes qualifying through regional competitions held across the preceding months. For many competing at Long Beach this weekend, that path started in county-level programs months ago, coaches calibrating each athlete&#8217;s event roster to match their training progress. <a href="https://mindcron.com/special-olympics-invitational-girard-arrowhead-stadium-2026/" target="_blank" rel="noopener">County-level Special Olympics invitationals</a> run the same qualifying-to-championship structure across the country, including in Girard, Ohio last month where 167 athletes from five counties competed at Arrowhead Stadium under the same format.</p>
<figure class="wp-block-image aligncenter featured-image" style="margin:1.5em auto;text-align:center;"><img decoding="async" class="aligncenter" src="https://mindcron.com/wp-content/uploads/2026/06/special-olympics-southern-california-summer-games-athletes-cal-state-long-beach.webp" alt="Special Olympics Southern California Summer Games athletes Cal State Long Beach" style="width:100%;max-width:800px;height:auto;border-radius:8px;display:block;margin:0 auto;" /><figcaption style="text-align:center;font-size:0.85em;color:#888;margin-top:0.5em;">Special Olympics Southern California Summer Games athletes Cal State Long Beach</figcaption></figure>
<h2>Seven Disciplines, Zero Cost</h2>
<p>The Healthy Athletes stations ran in parallel with competition across the weekend, offering free medical assessments in seven disciplines to SOSC athletes. Volunteer healthcare professionals and students staff the screenings, conducting non-invasive assessments and issuing follow-up referrals when a clinician identifies something worth further evaluation. Coaches could pre-register their teams ahead of the Games to schedule athlete appointments at the stations.</p>
<p>People with intellectual disabilities face multiple barriers to routine healthcare: cost, communication challenges, difficulty finding providers with relevant experience, and a lack of adapted clinical resources in many communities. The Healthy Athletes model addresses several of these at once by bringing screenings to the athlete, in a sports setting they already attend, staffed by volunteer clinicians who accept no payment.</p>
<p>Those barriers carry documented consequences. When Special Olympics first offered on-site health screenings at the 1995 World Games, a significant share of athletes had conditions that day serious enough to require emergency room referrals, a finding that prompted the formal launch of the Healthy Athletes program in 1997.</p>
<h3>What the Screenings Cover</h3>
<p>SOSC&#8217;s event materials named six of the seven disciplines offered at this year&#8217;s Summer Games. Each targets a clinical area where people with intellectual disabilities face elevated rates of undetected or untreated conditions, according to <a href="https://sonc.org/our-programs/health-wellness/health-screenings/" target="_blank" rel="noopener">Special Olympics Northern California&#8217;s clinical program data</a>.</p>
<table>
<thead>
<tr>
<th>Discipline</th>
<th>Area of Health Screened</th>
</tr>
</thead>
<tbody>
<tr>
<td>Fit Feet</td>
<td>Podiatric health; foot and ankle conditions</td>
</tr>
<tr>
<td>FUNfitness</td>
<td>Physical therapy; flexibility, strength, and balance</td>
</tr>
<tr>
<td>Health Promotions</td>
<td>Bone density, blood pressure, and BMI</td>
</tr>
<tr>
<td>Healthy Hearing</td>
<td>Audiology; hearing loss and ear health</td>
</tr>
<tr>
<td>Special Smiles</td>
<td>Dental health and oral care</td>
</tr>
<tr>
<td>Strong Minds</td>
<td>Emotional wellness and mental health</td>
</tr>
</tbody>
</table>
<p>The Fit Feet station addresses podiatric conditions that often go untreated outside a clinical setting. Undetected hearing conditions are another consistent finding at events like Summer Games, where athletes sometimes discover for the first time that routine auditory support could improve how they communicate with coaches and teammates during competition.</p>
<h3>A Training Ground for Clinicians</h3>
<p>The screenings work in both directions. Athletes move through the stations and receive referral paperwork if a clinician flags something worth following up. The volunteer healthcare professionals and students staffing those stations accumulate hands-on clinical experience with a patient population that most medical and dental training programs address minimally. Data published by Special Olympics Northern California shows that <strong>less than 20 percent</strong> of healthcare professionals have specific training to treat patients with intellectual disabilities, which means events like Summer Games serve as one of the few structured environments where that clinical training happens at scale.</p>
<p>Athletes who receive a referral at a Healthy Athletes station are connected to local healthcare providers for follow-up evaluation, giving the program a care-continuity function that extends beyond the competition weekend. The cumulative reach of that work, across events like Summer Games around the country and worldwide, shows up in <a href="https://www.specialolympics.org/what-we-do/inclusive-health/healthy-athletes" target="_blank" rel="noopener">Special Olympics&#8217;s global Healthy Athletes program data</a>:</p>
<ul>
<li><strong>2 million+</strong> free health screenings delivered globally since 1997</li>
<li><strong>300,000</strong> health professionals and students trained to work with patients with intellectual disabilities</li>
<li><strong>50%</strong> of Special Olympics athletes have preventable or treatable foot conditions affecting sport performance</li>
<li><strong>15%</strong> of athletes screened at the 1995 World Games needed urgent emergency care referrals on the day of screening</li>
</ul>
<h2>The Youngest Athletes on Campus</h2>
<p>A designated area of the campus served children <strong>ages 2 to 7</strong> through <a href="https://sosc.org/summergames/" target="_blank" rel="noopener">SOSC&#8217;s Young Athletes program</a>. The activities ran motor skills drills, hand-eye coordination exercises, and sports skills demonstrations, structured as a first experience of organized athletic activity and a preview of what SOSC&#8217;s programs look like as children grow older.</p>
<p>The program is designed specifically for early childhood entry, built on the principle that children with intellectual disabilities benefit from structured physical and social activity at the same developmental stages as children without. Families are integral to the design: parents and caregivers participate alongside their children rather than watching from the sideline, giving the format a joint discovery structure. SOSC frames the area as the earliest rung of the competitive pathway that leads to Summer Games competition.</p>
<p>Children who move through the Young Athletes area begin building the physical habits and familiarity with the Special Olympics format that carry into formal competitive eligibility later on. Summer Games is one of the few events where the full range of SOSC&#8217;s programming appears in one location, and families attending could move between the competition venues, the health screening stations, and the Young Athletes area, with all three running simultaneously across the campus grounds.</p>
<h2>How the Torch Got to Long Beach</h2>
<p>The cauldron that opened Summer Games on Friday evening had covered roughly <strong>1,100 miles</strong> before arriving at the LSB Financial Credit Union Pyramid. The Law Enforcement Torch Run (LETR) for SOSC left Chula Vista on May 26, with more than 300 law enforcement agencies carrying the Flame of Hope in relay legs across Southern California over two weeks. Friday&#8217;s opening ceremony at 5:30 p.m. included the Parade of Athletes before the cauldron lighting, which concluded the relay at its Summer Games destination.</p>
<p>The route that led to Long Beach also served a larger purpose. The relay&#8217;s passage through Los Angeles on June 1, which ran from a pep rally at Crypto.com Arena to the LA Memorial Coliseum, was part of the Final Leg of the 2026 Special Olympics USA Games Torch Run. That national relay is headed to Minnesota&#8217;s Twin Cities, where the 2026 USA Games will open on June 20, uniting 3,000 athletes for competition through June 26.</p>
<p>In Southern California, the <a href="https://sosc.org/letr/" target="_blank" rel="noopener">LETR program raised $1.2 million in 2024</a>, with more than 200 law enforcement agencies and stations involved. Every dollar raised directly covers costs like transportation, uniforms, equipment, and venue fees for athletes, ensuring that participation in SOSC&#8217;s programs remains free. More than 3,000 officers participated in this year&#8217;s Southern California relay.</p>
<p>Those same officers showed up at the Saturday competition, with scores of them positioned along the entry corridor at Cal State Long Beach as athletes arrived for competition day.</p>
<h2>A Festival Beyond the Track</h2>
<p>SOSC organized a family festival alongside the competition, with live music, interactive games, and activity booths run by partner companies and community groups. A fan zone gave supporters materials to make signs and cheer athletes through their events during the day.</p>
<p>An art display featuring work by SOSC athlete Samantha Roman ran across the weekend in a dedicated exhibition area. Roman is the athlete-featured artist for the 2026 Summer Games, and her display ran through both competition days. SOSC merchandise, including hats, water bottles, shirts, and sweatshirts, was also available on site.</p>
<p>Kelly Pond, president and CEO of Special Olympics Southern California, issued a statement for the event.</p>
<blockquote>
<p>The athletes inspire us every day with their energy, determination, confidence and spirit.</p>
</blockquote>
<p>Pond&#8217;s statement described Summer Games as the direct expression of SOSC&#8217;s mission to empower individuals with intellectual disabilities through the life-changing impact of sports.</p>
<h2>The Season That Led Here</h2>
<p>Summer Games closes the spring competitive season for SOSC, which runs 12 sports across four seasons and reaches nearly <strong>25,000 athletes</strong> in community and school-based programs across 11 Southern California counties. More than 50 full-time employees and thousands of volunteers support those programs alongside corporate partners and individual donors.</p>
<p>The organization&#8217;s four seasons cover a year-round calendar, with sports ranging from aquatics and athletics to bocce, basketball, golf, and winter sports. Athletes can enter SOSC&#8217;s programs at any skill level, with training designed to build toward competition across each season.</p>
<p>The next season opens June 13, when bowling begins and runs through August. Admission to all competition venues at this weekend&#8217;s Summer Games was free to the general public.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://mindcron.com/special-olympics-southern-california-summer-games-long-beach/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Gabby Thomas Runs a World-Leading 21.70 in Her &#8216;Fun&#8217; Year</title>
		<link>https://mindcron.com/gabby-thomas-21-70-world-lead-lone-star-grand-prix/</link>
					<comments>https://mindcron.com/gabby-thomas-21-70-world-lead-lone-star-grand-prix/#respond</comments>
		
		<dc:creator><![CDATA[Mason Miller]]></dc:creator>
		<pubDate>Sun, 07 Jun 2026 03:52:37 +0000</pubDate>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Sports]]></category>
		<guid isPermaLink="false">https://mindcron.com/gabby-thomas-21-70-world-lead-lone-star-grand-prix/</guid>

					<description><![CDATA[Gabby Thomas ran 21.70 at the Lone Star Grand Prix in Texas, the fastest women's 200m in the world this year, faster than her Olympic gold-winning run from Paris 2024.]]></description>
										<content:encoded><![CDATA[<p>Gabby Thomas ran <strong>21.70 seconds</strong> for 200 metres at the inaugural USATF Lone Star Grand Prix in College Station, Texas on Saturday, the fastest time any woman has set in the event this year. The reigning Olympic 200m champion said it was supposed to be her year to &#8216;just have fun.&#8217;</p>
<p>That 21.70 beats by 0.13 seconds the mark she ran to win Olympic gold at Paris 2024 and falls 0.10 short of her personal best of 21.60, set in 2023. Fellow American Kayla White finished second in 22.07, with Nigeria&#8217;s Favour Ofili third in 22.15.</p>
<h2>A Time Faster Than Olympic Gold</h2>
<p>The Lone Star Grand Prix was the first US-based <a href="https://worldathletics.org/news/report/lone-star-grand-prix-thomas-rogers-2026" target="_blank" rel="noopener">World Athletics Continental Tour Gold meeting</a> of 2026, a tier below the Diamond League. Saturday&#8217;s programme at Cushing Stadium, Texas A&amp;M&#8217;s 2,200-seat outdoor track venue, excluded events longer than 800 metres. Temperatures reached 88 degrees Fahrenheit with a 77-degree dew point; the wind reading in the women&#8217;s 200m was +0.7 metres per second, legal for records.</p>
<p>The previous 2026 world best in the event had been 21.86, run by Julien Alfred, St. Lucia&#8217;s reigning Olympic 100m champion, on April 30 in Austin. Thomas cut that by 0.16 seconds. Saturday&#8217;s 21.70 was the first sub-21.80 clocking in the women&#8217;s 200m this season. She arrived in College Station five weeks after running 10.95 for 100 metres at the Botswana Golden Grand Prix in Gaborone, the first wind-legal sub-11 clocking of her career. She seized the lead on the bend and held the gap to the line, with White 37 hundredths of a second back.</p>
<blockquote>
<p>I&#8217;m a little surprised by the time, but I&#8217;ve been training hard. I had a great little tour in Africa and now the hard work is paying off. I&#8217;m enjoying having an &#8216;off&#8217; year where there&#8217;s not the pressure of an Olympics or World Championships, so I&#8217;m just having fun this season.</p>
</blockquote>
<p>Thomas&#8217;s coach throughout this comeback has been Tonja Buford-Bailey, who guided her through rehabilitation and back to Saturday&#8217;s start line.</p>
<figure class="wp-block-image aligncenter featured-image" style="margin:1.5em auto;text-align:center;"><img decoding="async" class="aligncenter" src="https://mindcron.com/wp-content/uploads/2026/06/gabby-thomas-200m-world-lead-lone-star-grand-prix-college-station.webp" alt="Gabby Thomas 200m world lead Lone Star Grand Prix College Station" style="width:100%;max-width:800px;height:auto;border-radius:8px;display:block;margin:0 auto;" /><figcaption style="text-align:center;font-size:0.85em;color:#888;margin-top:0.5em;">Gabby Thomas 200m world lead Lone Star Grand Prix College Station</figcaption></figure>
<h2>The Year She Couldn&#8217;t Reach Tokyo</h2>
<p>An Achilles tendon injury that surfaced in May 2025 and was re-aggravated in July defined the whole of last season. Thomas forced herself to a third-place finish at the USATF Outdoor Championships in August, qualifying for the World Athletics Championships in Tokyo by one-thousandth of a second with a time of 21.95. Then she and Buford-Bailey decided the Achilles could not safely carry her through championship rounds; Thomas announced her withdrawal in early September.</p>
<p>While Thomas sat out, Melissa Jefferson-Wooden swept the sprint double at the World Athletics Championships in Tokyo, running 10.61 in the 100m to set the championships record and collecting the 200m title alongside it. Thomas had collected three golds at Paris 2024, the 200m, the 4x100m, and the 4x400m relay, along with a bronze from the Tokyo 2020 Olympics. An individual World Championships title had never arrived; silver in Budapest in 2023 was the closest she had come.</p>
<p>&#8220;The toughest thing about having to drop out of Tokyo last year was just the frustrations of knowing that I worked all year to run really well in Japan,&#8221; Thomas told Athletics Weekly in April. She said the experience had made her more resilient: &#8220;You can bounce back from it and become an even better athlete afterwards.&#8221;</p>
<p>She did not race in any Diamond League events after the USATF Outdoor Championships, ending 2025 ranked fourth in the world at 200m, behind Julien Alfred (21.71), Jefferson-Wooden (21.84), and McKenzie Long (21.93).</p>
<table>
<caption>Gabby Thomas: Best 200m Time by Season</caption>
<thead>
<tr>
<th>Season</th>
<th>Best 200m Time</th>
<th>Context</th>
</tr>
</thead>
<tbody>
<tr>
<td>2023</td>
<td>21.60</td>
<td>Personal best; World Championships silver in Budapest</td>
</tr>
<tr>
<td>2024</td>
<td>21.83</td>
<td>Olympic 200m gold, Paris</td>
</tr>
<tr>
<td>2025</td>
<td>21.95</td>
<td>Achilles injury; withdrew from World Championships, Tokyo</td>
</tr>
<tr>
<td>2026</td>
<td><strong>21.70</strong></td>
<td>2026 world lead, Lone Star Grand Prix</td>
</tr>
</tbody>
</table>
<h2>Rebuilding Across Africa</h2>
<p>Thomas opened 2026 carefully. At the Texas Relays in Austin on April 4, she ran 11.00 seconds for 100 metres, equalling her personal best in the event, and anchored a 4x400m relay leg. She posted afterward that there was &#8220;lots of work to do this season.&#8221;</p>
<p>What followed was her first time competing in Africa, a three-stop circuit she chose to build competition fitness away from the season&#8217;s highest-profile meets before bringing the times home. The legs ran in sequence:</p>
<ol>
<li><strong>Addis Ababa Grand Prix, April 18 (Ethiopia)</strong>: Won the 100m in 11.13 and the 200m in 22.15, both victories at altitude on a new track facility.</li>
<li><strong>Kip Keino Classic, April 24 (Nairobi, Kenya)</strong>: A 1.1 metres-per-second headwind in the 100m held her to 11.01, but she still won the race.</li>
<li><strong>Botswana Golden Grand Prix, April 26 (Gaborone)</strong>: Ran <strong>10.95</strong> for 100m into a slight headwind, her fastest effort of the African leg.</li>
</ol>
<p>American sprinter Cambrea Sturgis, who trained alongside Thomas through the circuit, finished behind her at each stop. Thomas had said she wanted to be fully recovered from the injury before returning to the US circuit; four wins across three African cities later, the Achilles was holding up.</p>
<h2>Tate Taylor and 19.97</h2>
<p>The inaugural Lone Star Grand Prix replaced the USATF NYC Grand Prix, which last ran in 2024. After USATF could not make the finances work in New York, the meeting moved to College Station with Texas beef producer 44 Farms as a lead backer. The programme excluded events longer than 800 metres, a format suited to the Texas summer heat. Saturday was the meet&#8217;s first edition.</p>
<p>Thomas was not the only story at Cushing Stadium. In the men&#8217;s 200m, 18-year-old Tate Taylor ran <strong>19.97</strong> seconds, becoming only the second American high schooler in history to break 20 seconds in the event. The first was Erriyon Knighton, who set his high school best of 19.49 in 2022 before turning professional. Taylor, committed to Texas Tech University for the fall, finished second; Zimbabwe&#8217;s Makanakaishe Charamba, an Olympic 200m finalist, won in a personal best of 19.88. The time moved him to equal sixth on the world under-20 all-time list, and he also holds the US high school 100m record at 9.92.</p>
<p>Elsewhere in the programme, American sprinter Trayvon Bromell won the men&#8217;s 100m in 9.85, but a wind reading of +3.8 metres per second placed the result outside legal record territory. World 100m champion Oblique Seville of Jamaica finished third in that race. Jamaica&#8217;s Sabrina Dockery, 19, won the women&#8217;s 100m in a personal best of 10.92, breaking 11 seconds for the first time.</p>
<h2>Budapest in September</h2>
<p>Thomas confirmed in April that she intends to run the 200m at the World Ultimate Championships in Budapest, scheduled for September. The meet carries a <strong>$10 million</strong> prize pool, with $150,000 for each event winner, and will draw the sprint field that matters most in a season without a World Athletics Championships or Olympics.</p>
<p>The Diamond League circuit occupies the weeks ahead, giving Thomas competitive rounds against world-ranking fields. She also co-owns Athlos, the women-only track league founded with investor Alexis Ohanian, one of several commercial ventures she has built alongside her competitive career. Jefferson-Wooden, the reigning world sprint champion, will almost certainly share the track with Thomas in September.</p>
<p>Her personal best of 21.60 sits 0.10 seconds ahead of Saturday&#8217;s mark. The championships are in September.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://mindcron.com/gabby-thomas-21-70-world-lead-lone-star-grand-prix/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
