<?xml version="1.0"?>
<rss version="2.0"><channel><title>News: General News</title><link>https://nsaneforums.com/news/general-news/page/29/?d=2</link><description>News: General News</description><language>en</language><item><title>DeepMind&#x2019;s robotic ballet: An AI for coordinating manufacturing robots</title><link>https://nsaneforums.com/news/general-news/deepmind%E2%80%99s-robotic-ballet-an-ai-for-coordinating-manufacturing-robots-r31512/</link><description><![CDATA[<h3>
	An AI figures out how robots can get jobs done without getting in each other's way.
</h3>

<p>
	A lot of the stuff we use today is largely made by robots—arms with multiple degrees of freedom positioned along conveyor belts that move in a spectacle of precisely synchronized motions. All this motion is usually programmed by hand, which can take hundreds to thousands of hours. Google’s DeepMind team has developed an AI system called RoboBallet that lets manufacturing robots figure out what to do on their own.
</p>

<h2>
	Traveling salesmen
</h2>

<p>
	Planning what manufacturing robots should do to get their jobs done efficiently is really hard to automate. You need to solve both task allocation and scheduling—deciding which task should be done by which robot in what order. It’s like the famous <a href="https://en.wikipedia.org/wiki/Travelling_salesman_problem" rel="external nofollow">traveling salesman problem</a> on steroids. On top of that, there is the question of motion planning; you need to make sure all these robotic arms won’t collide with each other or with all the gear standing around them.
</p>

<p>
	 
</p>

<p>
	At the end, you’re facing myriad possible combinations where you’ve got to solve not one but three computationally hard problems at the same time. “There are some tools that let you automate motion planning, but task allocation and scheduling are usually done manually,” says Matthew Lai, a research engineer at Google DeepMind. “Solving all three of these problems combined is what we tackled in our work.”
</p>

<p>
	 
</p>

<p>
	Lai’s team started by generating simulated samples of what are called work cells, areas where teams of robots perform their tasks on a product being manufactured. The work cells contained something called a workpiece, a product on which the robots do work, in this case something to be constructed of aluminum struts placed on a table. Around the table, there were up to eight randomly placed <a href="https://franka.de/" rel="external nofollow">Franka Panda robotic arms</a>, each with 7 degrees of freedom, that were supposed to complete up to 40 tasks on a workpiece. Every task required a robotic arm’s end effector to get within 2.5 centimeters of the right spot on the right strut, approached from the correct angle, then stay there, frozen, for a moment. The pause simulates doing some work.
</p>

<p>
	 
</p>

<p>
	To make things harder, the team peppered every work cell with random obstacles the robots had to avoid. “We chose to work with up to eight robots, as this is around the sensible maximum for packing robots closely together without them blocking each other all the time,” Lai explains. Forcing the robots to perform 40 tasks on a workpiece was also something the team considered representative of what’s required at real factories.
</p>

<p>
	 
</p>

<p>
	A setup like this would be a nightmare to tackle using even the most powerful reinforcement-learning algorithms. Lai and his colleagues found a way around it by turning it all into graphs.
</p>

<h2>
	Complex relationships
</h2>

<p>
	Graphs in Lai’s model comprised nodes and edges. Things like robots, tasks, and obstacles were treated as nodes. Relationships between them were encoded as either one- or bi-directional edges. One-directional edges connected robots with tasks and obstacles because the robots needed information about where the obstacles were and whether the tasks were completed or not. Bidirectional edges connected the robots to each other, because each robot had to know what other robots were doing at each time step to avoid collisions or duplicating tasks.
</p>

<p>
	 
</p>

<p>
	To read and make sense of the graphs, the team used graph neural networks, a type of artificial intelligence designed to extract relationships between the nodes by passing messages along the edges of the connections among them. This decluttered the data, allowing the researchers to design a system that focused exclusively on what mattered most: finding the most efficient ways to complete tasks while navigating obstacles. After a few days of training on randomly generated work cells using a single Nvidia A100 GPU, the new industrial planning AI, called RoboBallet, could lay out seemingly viable trajectories through complex, previously unseen environments in a matter of seconds.
</p>

<p>
	 
</p>

<p>
	Most importantly, though, it scaled really well.
</p>

<h2>
	Economy of scale
</h2>

<p>
	The problem with applying traditional computational methods to complex problems like managing robots at a factory is that the challenge of computation grows exponentially with the number of items you have in your system. Computing the most optimal trajectories for one robot is relatively simple. Doing the same for two is considerably harder; when the number grows to eight, the problem becomes practically intractable.
</p>

<p>
	 
</p>

<p>
	With RoboBallet, the complexity of computation also grew with the complexity of the system, but at a far slower rate. (The computations grew linearly with the growing number of tasks and obstacles, and quadratically with the number of robots.) According to the team, these computations should make the system feasible for industrial-scale use.
</p>

<p>
	 
</p>

<p>
	The team wanted to test, however, whether the plans their AI was producing were any good. To check that, Lai and his colleagues computed the most optimal task allocations, schedules, and motions in a few simplified work cells and compared those with results delivered by RoboBallet. In terms of execution time, arguably the most important metric in manufacturing, the AI came very close to what human engineers could do. It wasn’t better than they were—it just provided an answer more quickly.
</p>

<p>
	 
</p>

<p>
	The team also tested RoboBallet plans on a real-world physical setup of four Panda robots working on an aluminum workpiece, and they worked just as well as in simulations. But Lai says it can do more than just speed up the process of programming robots.
</p>

<h2>
	Limping along
</h2>

<p>
	RoboBallet, according to DeepMind’s team, also enables us to design better work cells. “Because it works so fast, it would be possible for a designer to try different layouts and different placement or selections of robots in almost real time,” Lai says. This way, engineers at factories would be able to see exactly how much time they would save by adding another robot to a cell or choosing a robot of a different type. Another thing RoboBallet can do is reprogram the work cell on the fly, allowing other robots to fill in when one of them breaks down.
</p>

<p>
	 
</p>

<p>
	Still, there are a few things that still need ironing out before RoboBallet can come to factories. “There are several simplifications we made,” Lai admits. The first was that the obstacles were decomposed into cuboids. Even the workpiece itself was cubical. While this was somewhat representative of the obstacles and equipment in real factories, there are lots of possible workpieces with more organic shapes. “It would be better to represent those in a more flexible way, like mesh graphs or point clouds,” Lai says. This, however, would likely mean a drop in RoboBallet’s blistering speed.
</p>

<p>
	 
</p>

<p>
	Another thing is that the robots in Lai’s experiments were identical, while in a real-world work cell, robotic teams are quite often heterogeneous. “That’s why real-world applications would require additional research and engineering specific to the type of application,” Lai says. He adds, though, that the current RoboBallet is already designed with such adaptations in mind—it can be easily extended to support them. And once that’s done, his hope is that it will make factories faster and way more flexible.
</p>

<p>
	 
</p>

<p>
	“The system would have to be given work cell models, the workpiece models, as well as the list of tasks that need to be done—based on that, RoboBallet would be able to generate a complete plan,” Lai says.
</p>

<p>
	 
</p>

<p>
	Science Robotics, 2025. DOI: <a href="https://doi.org/10.1126/scirobotics.ads1204" rel="external nofollow">10.1126/scirobotics.ads1204</a>
</p>

<p>
	 
</p>

<p>
	<a href="https://arstechnica.com/science/2025/09/deepminds-robotic-ballet-an-ai-for-coordinating-manufacturing-robots/" rel="external nofollow">Source</a>
</p>

<hr class="ipsHr">
<p>
	<span style="font-size:12px;"><em>Hope you enjoyed this news post. Feedback welcome.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>Posted Friday 26 September 2025 at 3:50 am AEST (my time).</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>News posts... 2023: 5,800+ | 2024: 5,700+ | 2025 (till end of August): 4,048</em></span>
</p>

<p>
	<strong><span style="font-size:12px;"><a href="https://nsaneforums.com/topic/459202-remember-matrix/" rel="">RIP Matrix</a></span></strong>
</p>
]]></description><guid isPermaLink="false">31512</guid><pubDate>Thu, 25 Sep 2025 17:50:59 +0000</pubDate></item><item><title>The crew of Artemis II will fly on Integrity during mission to the Moon</title><link>https://nsaneforums.com/news/general-news/the-crew-of-artemis-ii-will-fly-on-integrity-during-mission-to-the-moon-r31503/</link><description><![CDATA[<h3>
	Integrity, this is Houston, you are go for the Moon...
</h3>

<p>
	The first astronauts set to fly to the Moon in more than 50 years will do so in <em>Integrity</em>.
</p>

<p>
	 
</p>

<p>
	NASA's <a href="https://www.collectspace.com/news/news-092425a-artemis-2-integrity-orion-spacecraft-name.html" rel="external nofollow" target="_blank">Artemis II crew revealed <em>Integrity</em></a> as the name of their Orion spacecraft during a news conference on Wednesday at the Johnson Space Center in Houston.
</p>

<p>
	 
</p>

<p>
	"We thought, as a crew, we need to name this spacecraft. We need to have a name for the Orion spacecraft that we're going to ride this magical mission on," said Reid Wiseman, commander of the <a href="https://www.collectspace.com/news/news-073125a-artemis-2-mission-patch-double-side-collectors.html" rel="external nofollow" target="_blank">Artemis II mission</a>.
</p>

<p>
	 
</p>

<p>
	During Apollo, the previous NASA program to send astronauts to the Moon, the crews chose names to distinguish their pair of spacecraft—the command and service module and the lunar module—while they were in separate flights. As later vehicles, such as NASA's space shuttle orbiters and SpaceX's Dragon capsules, became reusable, names were used to help engage the public and impart a sense of character to each craft.
</p>

<p>
	 
</p>

<p>
	With Artemis, Wiseman wanted a name that would not only reflect their mission but would also define their success.
</p>

<p>
	 
</p>

<p>
	"We're bringing together the world," he said. "We're bringing together an amazing workforce, and they are bringing together an amazing vehicle."
</p>

<h2>
	Name game
</h2>

<p>
	As it turned out, the crew had no shortage of ideas.
</p>

<p>
	 
</p>

<p>
	Sequestering themselves in the same facility where they would be quarantined before their scheduled launch in early 2026, Wiseman, pilot Victor Glover, and mission specialists Christina Koch and Jeremy Hansen, as well as their backups, Andre Douglas and Jenny Gibbons, found their integrity.
</p>

<p>
	 
</p>

<p>
	"We had all kinds of things," Koch said in an interview. "We had sentences, phrases, we had light-hearted [monikers], we had mantras. We had names, we had geography. Everything was on the table. We really wanted it to be a completely open forum."
</p>

<p>
	 
</p>

<p>
	"There were names that I loved," said Wiseman, "there were names that Christina loved. We all had our little pet names."
</p>

<figure class="ars-wp-img-shortcode id-2118967 align-center">
	<div>
		<img alt="Three men and one woman, all in orange pressure suits, stand in front of a silver-coated space capsule in an overhead view" class="center medium" decoding="async" height="360" loading="lazy" sizes="auto, (max-width: 640px) 100vw, 640px" srcset="https://cdn.arstechnica.net/wp-content/uploads/2025/09/news-092425a-lg-640x360.jpg 640w, https://cdn.arstechnica.net/wp-content/uploads/2025/09/news-092425a-lg-1024x576.jpg 1024w, https://cdn.arstechnica.net/wp-content/uploads/2025/09/news-092425a-lg-768x432.jpg 768w, https://cdn.arstechnica.net/wp-content/uploads/2025/09/news-092425a-lg-1536x864.jpg 1536w, https://cdn.arstechnica.net/wp-content/uploads/2025/09/news-092425a-lg-384x216.jpg 384w, https://cdn.arstechnica.net/wp-content/uploads/2025/09/news-092425a-lg-1152x648.jpg 1152w, https://cdn.arstechnica.net/wp-content/uploads/2025/09/news-092425a-lg-980x551.jpg 980w, https://cdn.arstechnica.net/wp-content/uploads/2025/09/news-092425a-lg-1440x810.jpg 1440w, https://cdn.arstechnica.net/wp-content/uploads/2025/09/news-092425a-lg.jpg 1920w" width="640" src="https://cdn.arstechnica.net/wp-content/uploads/2025/09/news-092425a-lg-640x360.jpg">
	</div>

	<figcaption>
		<div class="caption font-impact dusk:text-gray-300 mb-4 mt-2 inline-flex flex-row items-stretch gap-1 text-base leading-tight text-gray-400 dark:text-gray-300">
			<div class="caption-content">
				<em>The Artemis II crew (from the right): Reid Wiseman, Victor Glover, Christina Koch and Jeremy </em>
			</div>

			<div class="caption-content">
				<em>Hansen pose in front of their Orion spacecraft, which they have named "Integrity." <span class="caption-credit mt-2 text-xs"><em> </em></span></em>
			</div>

			<div class="caption-content">
				<em><span class="caption-credit mt-2 text-xs"><em>Credit: NASA/Rad Sinyak </em></span> </em>
			</div>
		</div>
	</figcaption>
</figure>

<h2>
	Whole and undivided
</h2>

<p>
	Ultimately, <em>Integrity</em> was inspired by something one of their instructors said while on a team-building trip to Iceland.
</p>

<p>
	 
</p>

<p>
	"He coined this for us, and we held on to it," said Hansen, who, unlike <a href="https://www.collectspace.com/news/news-040323a-nasa-names-artemis-2-moon-crew.html" rel="external nofollow" target="_blank">his NASA crewmates</a>, is a <a href="https://www.collectspace.com/news/news-020924a-hansen-canadian-artemis-2-mission-patch.html" rel="external nofollow" target="_blank">Canadian Space Agency astronaut</a>. "It was this idea that you're not a person who has integrity, you're a person who strives to be in integrity. Sometimes you're out of integrity, and sometimes you're in your integrity. That was profound for all of us."
</p>

<p>
	 
</p>

<p>
	For Glover, it boiled down to the definition.
</p>

<p>
	 
</p>

<p>
	"The Latin root means 'whole.' It's a very simple concept, and it's about being whole. This <a href="https://www.collectspace.com/news/news-040423a-artemis-2-moon-crew-firsts-records.html" rel="external nofollow" target="_blank">crew comes together</a> as pieces—the four of us and our backups—but the six of us make up a whole team. The vehicle, the pieces come together and make up a whole spacecraft," he said.
</p>

<p>
	 
</p>

<p>
	"What people anecdotally say is that integrity is what you do when no one's watching. That, and truth, honor, and integrity matter," said Glover. "There are so many layers to that name and what it means and what it inspires."
</p>

<h2>
	Integrating <em>Integrity</em>
</h2>

<p>
	Integrity is one of the tenets of the Astronaut Code of Professional Responsibility. It is also one of the Canadian Space Agency's core values.
</p>

<p>
	 
</p>

<p>
	"We all strive to be in integrity all of the time, but integrity isn't an absolute that you either have or don't have," said Koch. "So this helps us give grace and build trust with each other."
</p>

<p>
	 
</p>

<p>
	"I hope that people hearing [the name] over the 10 days of the mission appreciate all of the different things that it means, from a whole ship, a whole crew, to a wholeness and wellness that I think humanity just needs. We need to hear more of that togetherness and wholeness," said Glover.
</p>

<figure class="ars-wp-img-shortcode id-2118968 align-center">
	<div>
		<img alt="Three men and a woman, all in blue flight suits, pose for a photograph backdropped by images of the moon and Mars" class="center medium" decoding="async" height="360" loading="lazy" sizes="auto, (max-width: 640px) 100vw, 640px" srcset="https://cdn.arstechnica.net/wp-content/uploads/2025/09/news-092425c-lg-640x360.jpg 640w, https://cdn.arstechnica.net/wp-content/uploads/2025/09/news-092425c-lg-1024x576.jpg 1024w, https://cdn.arstechnica.net/wp-content/uploads/2025/09/news-092425c-lg-768x432.jpg 768w, https://cdn.arstechnica.net/wp-content/uploads/2025/09/news-092425c-lg-1536x864.jpg 1536w, https://cdn.arstechnica.net/wp-content/uploads/2025/09/news-092425c-lg-384x216.jpg 384w, https://cdn.arstechnica.net/wp-content/uploads/2025/09/news-092425c-lg-1152x648.jpg 1152w, https://cdn.arstechnica.net/wp-content/uploads/2025/09/news-092425c-lg-980x551.jpg 980w, https://cdn.arstechnica.net/wp-content/uploads/2025/09/news-092425c-lg-1440x810.jpg 1440w, https://cdn.arstechnica.net/wp-content/uploads/2025/09/news-092425c-lg.jpg 1920w" width="640" src="https://cdn.arstechnica.net/wp-content/uploads/2025/09/news-092425c-lg-640x360.jpg">
	</div>

	<figcaption>
		<div class="caption font-impact dusk:text-gray-300 mb-4 mt-2 inline-flex flex-row items-stretch gap-1 text-base leading-tight text-gray-400 dark:text-gray-300">
			<div class="caption-content">
				<em>NASA's Artemis II crew (from the left) Victor Glover, Reid Wiseman, Christina Koch, and Jeremy </em>
			</div>

			<div class="caption-content">
				<em>Hansen at the Johnson Space Center in Houston on Wednesday, September 24, 2025. <span class="caption-credit mt-2 text-xs"><em> </em></span></em>
			</div>

			<div class="caption-content">
				<em><span class="caption-credit mt-2 text-xs"><em>Credit: <a class="caption-credit-link text-gray-400 no-underline hover:text-gray-500" href="https://www.collectspace.com/news/news-092425a-artemis-2-integrity-orion-spacecraft-name.html" target="_blank" rel="external nofollow"> collectSPACE.com </a> </em></span> </em>
			</div>
		</div>
	</figcaption>
</figure>

<p>
	Now that it has been announced, next up is for <em>Integrity</em> to be used as the crew's possible call sign.
</p>

<p>
	 
</p>

<p>
	"We waited to make sure the whole enterprise was ready for us to announce it before we even used it," said Glover. "I think we'll start using it in sims: 'Houston, <em>Integrity</em>. <em>Integrity,</em> Houston.' That's the plan.
</p>

<p>
	 
</p>

<p>
	"But if someone doesn't like that, then we won't, and we can say Orion," he said.
</p>

<p>
	 
</p>

<p>
	<a href="https://arstechnica.com/space/2025/09/introducing-integrity-artemis-ii-astronauts-name-their-orion-ride-to-the-moon/" rel="external nofollow">Source</a>
</p>

<hr class="ipsHr">
<p>
	<span style="font-size:12px;"><em>Hope you enjoyed this news post. Feedback welcome.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>Posted Thursday 25 September 2025 at 6:09 pm AEST (my time).</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>News posts... 2023: 5,800+ | 2024: 5,700+ | 2025 (till end of August): 4,048</em></span>
</p>

<p>
	<strong><span style="font-size:12px;"><a href="https://nsaneforums.com/topic/459202-remember-matrix/" rel="">RIP Matrix</a></span></strong>
</p>
]]></description><guid isPermaLink="false">31503</guid><pubDate>Thu, 25 Sep 2025 08:10:13 +0000</pubDate></item><item><title>&#x201C;Screwworm is dangerously close&#x201D;: Flesh-eating parasites just 70 miles from US</title><link>https://nsaneforums.com/news/general-news/%E2%80%9Cscrewworm-is-dangerously-close%E2%80%9D-flesh-eating-parasites-just-70-miles-from-us-r31502/</link><description><![CDATA[<h3>
	The detection was along a heavily trafficked commercial thoroughfare, USDA says.
</h3>

<p>
	Texas officials are telling residents to check their pets and livestock, and insisting on immediate use of pesticide bait after officials in Mexico confirmed an infection with the flesh-eating New World Screwworm (NWS) less than 70 miles from the US border.
</p>

<p>
	 
</p>

<p>
	<a href="https://arstechnica.com/health/2025/05/screwworms-are-coming-and-theyre-just-as-horrifying-as-they-sound/" rel="external nofollow">NWS is a horrifying parasitic fly</a> that attacks warm-blooded animals, laying hundreds of eggs in any openings or wounds, even minute ones. The resulting larvae both look and act like screws, boring and twisting into the animal while feasting on its living flesh. The ravenous larvae create ghastly wounds that can be deadly to livestock and wild animals.
</p>

<p>
	 
</p>

<p>
	Long ago, this ferocious fly was endemic in the US and stymied the livestock industry. However, in the 1950s, eradication efforts using sterile male flies and livestock monitoring began to push the fly population southward. By around 1966, it was cleared from the US, and Mexico zapped the population in the 1980s. By 2006, it was pushed out of Central America, with Panama declaring it eradicated and holding the flies at bay at the Darién Gap at the border with Colombia. However, in 2022, the gap was breached, and the flies have been steadily moving northward.
</p>

<p>
	 
</p>

<p>
	In July, Mexican officials found an NWS case in Veracruz, 370 miles from the US border. On Sunday, Mexico’s National Service of Agro-Alimentary Health, Safety, and Quality (SENASICA) confirmed the closest NWS case so far, in Sabinas Hidalgo, located in the state of Nuevo León, less than 70 miles from the US-Mexico border.
</p>

<h2>
	“Serious concern”
</h2>

<p>
	<a href="https://www.usda.gov/about-usda/news/press-releases/2025/09/21/mexico-confirms-case-new-world-screwworm-nuevo-leon" rel="external nofollow">According to the US Department of Agriculture</a>, SENASICA reported that the infected animal— an 8-month-old cow—had recently been moved to a certified feedlot in Nuevo León from a region in southern Mexico with known active NWS cases. In addition to the proximity, the USDA highlighted that "Sabinas Hidalgo is located near the major highway from Monterrey, Nuevo Leon, to Laredo, Texas, which is one of the most heavily trafficked commercial thoroughfares in the world."
</p>

<p>
	 
</p>

<p>
	In a press release on Tuesday, Texas Agriculture Commissioner Sid Miller called for an aggressive response. "The screwworm is dangerously close," Miller said. "It nearly wiped out our cattle industry before; we need to act forcefully now. That’s why I insist we start using pesticide bait immediately."
</p>

<p>
	 
</p>

<p>
	In addition to using the bait, Texas officials advise residents of southern Texas to check their pets and livestock for screwworm larvae.
</p>

<p>
	 
</p>

<p>
	Look for draining or enlarging wounds, as well as signs of discomfort. Also look for screwworm larvae (maggots) and eggs in or around body openings, such as the nose, ears, and genitalia, or the navel of newborn animals.
</p>

<p>
	 
</p>

<p>
	While NWS can infect humans—and <a href="https://arstechnica.com/health/2025/08/screwworm-larvae-eat-their-way-into-us-via-overseas-travelers-flesh/" rel="external nofollow">those cases are grisly</a>—it is relatively rare.
</p>

<p>
	 
</p>

<p>
	The US has halted imports of cattle, bison, and horses from Mexico to try to keep the parasite out. Officials have also set up nearly 8,000 traps across Texas, Arizona, and New Mexico. Among 13,000 screening samples, so far, none have turned up NWS.
</p>

<p>
	 
</p>

<p>
	"The recent case found only 70 miles south of our border should trigger serious concern," Miller said. "Although it hasn't crossed into our territory yet, its proximity means we must get ready for its potential arrival."
</p>

<p>
	 
</p>

<p>
	<a href="https://arstechnica.com/health/2025/09/flesh-eating-parasite-just-70-miles-from-us-check-pets-texas-officials-say/" rel="external nofollow">Source</a>
</p>

<hr class="ipsHr">
<p>
	<span style="font-size:12px;"><em>Hope you enjoyed this news post. Feedback welcome.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>Posted Thursday 25 September 2025 at 6:08 pm AEST (my time).</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>News posts... 2023: 5,800+ | 2024: 5,700+ | 2025 (till end of August): 4,048</em></span>
</p>

<p>
	<strong><span style="font-size:12px;"><a href="https://nsaneforums.com/topic/459202-remember-matrix/" rel="">RIP Matrix</a></span></strong>
</p>
]]></description><guid isPermaLink="false">31502</guid><pubDate>Thu, 25 Sep 2025 08:08:59 +0000</pubDate></item><item><title>Newly found ancient Egyptian port may lead to Cleopatra&#x2019;s tomb</title><link>https://nsaneforums.com/news/general-news/newly-found-ancient-egyptian-port-may-lead-to-cleopatra%E2%80%99s-tomb-r31501/</link><description><![CDATA[<h3>
	NatGeo documentary Cleopatra's Final Secret chronicles archaeologist Kathleen Martinez's 20-year search
</h3>

<div class="ipsEmbeddedVideo" contenteditable="false">
	<div>
		<iframe allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen="" frameborder="0" height="113" referrerpolicy="strict-origin-when-cross-origin" src="https://www.youtube-nocookie.com/embed/xhHxNLNJ_4o?feature=oembed" title="Cleopatra’s Final Secret | Official Trailer | National Geographic" width="200"></iframe>
	</div>
</div>

<p>
	 
</p>

<p>
	Doomed Egyptian queen <a href="https://en.wikipedia.org/wiki/Cleopatra" rel="external nofollow">Cleopatra</a> has captured the imaginations of people all over the world for centuries. Archaeologists have long sought to locate <a href="https://en.wikipedia.org/wiki/Tomb_of_Antony_and_Cleopatra" rel="external nofollow">her tomb</a>, which she shared with her lover, Mark Antony, per popular legend. Thus far, the search has been unsuccessful, although many believe she would have been buried near the royal palace in Alexandria, Egypt.
</p>

<p>
	 
</p>

<p>
	National Geographic explorer Kathleen Martinez thinks she might be on the verge of locating Cleopatra's final resting place at a site called <a href="https://en.wikipedia.org/wiki/Taposiris_Magna" rel="external nofollow">Taposiris Magna</a>. Her 20-year journey (and counting) to prove her hypothesis—and the <a href="https://www.nationalgeographic.com/history/article/cleopatra-tomb-port-taposiris-magna" rel="external nofollow">exciting new discovery</a> of a submerged ancient port several miles off the Mediterranean shore that was likely once part of that temple—are chronicled in <em>Cleopatra's Final Secret</em>, a new documentary film from National Geographic.
</p>

<p>
	 
</p>

<p>
	Martinez has a degree in archaeology but initially became a criminal lawyer. She brought that legal training to bear on the question of the location of Cleopatra's tomb, treating it as she would a forensic case. "I tried to understand her personality, who were her friends, who were her enemies," Martinez told Ars. "She was a strategist and she always had a Plan A and a Plan B." It simply made sense to her that Cleopatra would have brought that same strategic thinking to orchestrating her death. Martinez suggested that the queen arranged for loyal subjects to transport her body through secret tunnels to a hidden final resting place.
</p>

<p>
	 
</p>

<p>
	Martinez knows firsthand how difficult it can be for inmates to receive food and other items from family and friends, all of which are searched before reaching the intended recipient. Cleopatra was imprisoned in her palace, and legend has it that an ally brought her a basket of figs, and hidden within was the cobra that gave the Egyptian queen that fatal bite. Martinez pondered why Cleopatra would have bothered with an actual cobra when all she needed was the venom, mixed in with food or drink.
</p>

<p>
	 
</p>

<p>
	Martinez believes it was because the cobra is associated with Isis in Egyptian mythology, and Cleopatra had fashioned her image as being a human representation of the goddess. "It was the symbolism," said Martinez. "She was dying, but she was dying as Isis, as a goddess, not as a prisoner. And this is how she became a legend, a myth." It stood to reason, then, that given the choice, Cleopatra could have arranged for her body (and that of Antony) to be buried in a temple of Isis—a conclusion supported by Petrarch's writings, among other sources.
</p>

<h2>
	A temple fit for a queen
</h2>

<div class="ars-lightbox align-fullwidth my-5">
	<div class="ars-gallery-1-up my-5">
		<div class="ars-lightbox-item relative block h-full w-full overflow-hidden rounded-sm">
			<img alt="Kathleen Martinez at the temple at Taposiris Magna." aria-labelledby="caption-2118224" class="ipsImage" decoding="async" height="720" width="720" src="https://cdn.arstechnica.net/wp-content/uploads/2025/09/cleopatra12-1024x684.jpg">
			<div class="pswp-caption-content" id="caption-2118224">
				<em>Kathleen Martinez at the temple at Taposiris Magna. </em>

				<div class="ars-gallery-caption-credit">
					<em><em>National Geographic </em></em>
				</div>

				<div class="ars-gallery-caption-credit">
					 
				</div>
				<em> </em>
			</div>
		</div>
	</div>

	<div class="flex flex-col flex-nowrap gap-5 py-5 md:flex-row">
		<div style="flex-basis: calc(50% - 10px);">
			<div class="ars-lightbox-item relative block h-full w-full overflow-hidden rounded-sm">
				<img alt="Excavators at Taposiris Magna." aria-labelledby="caption-2118227" class="ipsImage" decoding="async" height="720" width="720" src="https://cdn.arstechnica.net/wp-content/uploads/2025/09/cleopatra7-1024x512.jpg">
				<div class="pswp-caption-content" id="caption-2118227">
					<em>Excavators at Taposiris Magna. </em>

					<div class="ars-gallery-caption-credit">
						<em><em>National Geographic </em></em>
					</div>
					<em> </em>
				</div>
			</div>

			<div class="md:hidden">
				 
			</div>
		</div>

		<div class="flex-1">
			<div class="ars-lightbox-item relative block h-full w-full overflow-hidden rounded-sm">
				<img alt="Excavators at Taposiris Magna work in silhouette against a rising sun" aria-labelledby="caption-2118228" class="ipsImage" decoding="async" height="720" width="720" src="https://cdn.arstechnica.net/wp-content/uploads/2025/09/cleopatra8-1024x512.jpg">
				<div class="pswp-caption-content" id="caption-2118228">
					<em>A scene straight out of Indiana Jones. </em>
				</div>
			</div>

			<div class="md:hidden">
				 
			</div>
		</div>
	</div>

	<div class="ars-gallery-thumbnails grid grid-cols-4 gap-3 sm:grid-cols-6">
		<div class="aspect-square">
			<div class="ars-lightbox-item relative block h-full w-full overflow-hidden rounded-sm">
				<img alt="Martinez cheers after a big discovery." aria-labelledby="caption-2118226" class="ipsImage" decoding="async" height="720" width="720" src="https://cdn.arstechnica.net/wp-content/uploads/2025/09/cleopatra6-1024x683.jpg">
				<div class="pswp-caption-content" id="caption-2118226">
					<em>Martinez cheers after a big discovery. </em>

					<div class="ars-gallery-caption-credit">
						<em><em>Kenneth Garrett </em></em>
					</div>

					<div class="ars-gallery-caption-credit">
						 
					</div>
					<em> </em>
				</div>
			</div>
		</div>

		<div class="aspect-square">
			<div class="ars-lightbox-item relative block h-full w-full overflow-hidden rounded-sm">
				<img alt="Martinez and her team post with various artifacts unearthed at the site." aria-labelledby="caption-2118225" class="ipsImage" decoding="async" height="720" width="720" src="https://cdn.arstechnica.net/wp-content/uploads/2025/09/cleopatra1-1024x686.jpg">
				<div class="pswp-caption-content" id="caption-2118225">
					<em>Martinez and her team pose with various artifacts unearthed at the site. </em>

					<div class="ars-gallery-caption-credit">
						<em><em>National Geographic </em></em>
					</div>

					<div class="ars-gallery-caption-credit">
						 
					</div>
					<em> </em>
				</div>
			</div>
		</div>

		<div class="aspect-square">
			<div class="ars-lightbox-item relative block h-full w-full overflow-hidden rounded-sm">
				<img alt="Close-up of one of the artifacts: a carved head believed to depict Cleopatra." aria-labelledby="caption-2118233" class="ipsImage" decoding="async" height="720" width="720" src="https://cdn.arstechnica.net/wp-content/uploads/2025/09/cleopatra3-1024x1536.jpg">
				<div class="pswp-caption-content" id="caption-2118233">
					<em>Close-up of one of the artifacts: a carved head believed to depict Cleopatra. </em>

					<div class="ars-gallery-caption-credit">
						<em><em>Kenneth Garrett </em></em>
					</div>

					<div class="ars-gallery-caption-credit">
						 
					</div>
					<em> </em>
				</div>
			</div>
		</div>
	</div>
</div>

<p>
	The next step was to create a map of ancient Alexandria marking the locations of the temples that weren't too distant from the royal quarters where Cleopatra was a prisoner. Of those, Taposiris Magna—located in the coastal town of Borg El Arab, about 30 miles west of Alexandria—was the only temple for which scholars have almost no information: who built it, whether it ever functioned as a temple, to whom the temple was dedicated, and so forth. "That was a red light, not for the archaeologist, but for the lawyer in me," said Martinez.
</p>

<p>
	 
</p>

<p>
	Thus began Martinez's two decades of work to excavate Taposiris Magna. Among her more significant findings were the discovery in 2006 of foundation plates dedicating the temple to Isis, along with royal artifacts and many coins bearing Cleopatra's likeness. Last year her team unearthed burial shafts with mummies, tunnels, and another trove of artifacts—including a delicately carved head Martinez believes is a likeness of Cleopatra, although this has yet to be confirmed. All this strengthened Martinez's conviction that she was on the right track for locating Cleopatra's tomb—particularly since one 4,300-foot tunnel led directly out to the Mediterranean Sea.
</p>

<p>
	 
</p>

<p>
	Martinez concluded that perhaps part of the original temple site was now submerged underwater—and Cleopatra's tomb might be among those submerged structures. That said, "It's one thing to have an idea and another to make the discovery," she said. "We already have archaeological evidence that important trade and commercial activities were taking place in Taposiris Magna. But having this information doesn't mean that we will make the discovery. When I was standing a few years ago in front of the Mediterranean Sea, I was really scared that I would not ever be able to make the discovery. It's open sea, which is very dangerous, and I didn't have any experience searching underwater."
</p>

<p>
	 
</p>

<p>
	One of her team members suggested she contact someone who <em>did</em> have experience searching underwater: famed oceanographer <a href="https://en.wikipedia.org/wiki/Robert_Ballard" rel="external nofollow">Robert Ballard</a>, best known for his 1985 discovery of the submerged <a href="https://en.wikipedia.org/wiki/Wreck_of_the_Titanic" rel="external nofollow">wreck of the HMS <em>Titanic</em></a>. Ballard accepted Martinez's invitation to join the project, came to Egypt to check out the site, and immediately told her he thought she was on the right track with her search. That didn't make the undertaking an easy one, but the Egyptian Navy also pitched in to help.
</p>

<h2>
	A submerged ancient port
</h2>

<div class="ars-lightbox align-fullwidth my-5">
	<div class="flex flex-col flex-nowrap gap-5 py-5 md:flex-row">
		<div style="flex-basis: calc(50% - 10px);">
			<div class="ars-lightbox-item relative block h-full w-full overflow-hidden rounded-sm">
				<img alt="Martinez during the underwater survey" aria-labelledby="caption-2118229" class="ipsImage" decoding="async" height="720" width="720" src="https://cdn.arstechnica.net/wp-content/uploads/2025/09/cleopatra2-1024x684.jpg">
				<div class="pswp-caption-content" id="caption-2118229">
					<em>Martinez during the underwater survey. </em>

					<div class="ars-gallery-caption-credit">
						<em><em>Kenneth Garrett </em></em>
					</div>
					<em> </em>
				</div>
			</div>

			<div class="md:hidden">
				 
			</div>
		</div>

		<div class="flex-1">
			<div class="ars-lightbox-item relative block h-full w-full overflow-hidden rounded-sm">
				<img alt="cleopatra5-1024x684.jpg" aria-labelledby="caption-2118231" class="ipsImage" decoding="async" height="720" width="720" src="https://cdn.arstechnica.net/wp-content/uploads/2025/09/cleopatra5-1024x684.jpg">
				<div class="pswp-caption-content" id="caption-2118231">
					<em>Martinez (left) enlisted the help of <em>Titanic</em> discoverer Robert Ballard (right). </em>

					<div class="ars-gallery-caption-credit">
						<em><em>Kenneth Garrett </em></em>
					</div>
					<em> </em>
				</div>
			</div>

			<div class="md:hidden">
				 
			</div>
		</div>
	</div>

	<div class="flex flex-col flex-nowrap gap-5 py-5 md:flex-row">
		<div style="flex-basis: calc(50.031230480949% - 10px);">
			<div class="ars-lightbox-item relative block h-full w-full overflow-hidden rounded-sm">
				<img alt="Martinez, Ballard, and the team look at seafloor scans." aria-labelledby="caption-2118230" class="ipsImage" decoding="async" height="720" width="720" src="https://cdn.arstechnica.net/wp-content/uploads/2025/09/cleopatra4-1024x683.jpg">
				<div class="pswp-caption-content" id="caption-2118230">
					<em>Martinez, Ballard, and the team look at seafloor scans. </em>

					<div class="ars-gallery-caption-credit">
						<em><em>Kenneth Garrett </em></em>
					</div>
					<em> </em>
				</div>
			</div>

			<div class="md:hidden">
				 
			</div>
		</div>

		<div class="flex-1">
			<div class="ars-lightbox-item relative block h-full w-full overflow-hidden rounded-sm">
				<img alt="Martinez gazes out onto the water as divers prepare to search for evidence of manmade structures underwater." aria-labelledby="caption-2118232" class="ipsImage" decoding="async" height="720" width="720" src="https://cdn.arstechnica.net/wp-content/uploads/2025/09/cleopatra13-1024x684.jpg">
				<div class="pswp-caption-content" id="caption-2118232">
					<em>Martinez gazes out onto the water as divers prepare to search for evidence of manmade structures underwater. </em>

					<div class="ars-gallery-caption-credit">
						<em><em>Kenneth Garrett </em></em>
					</div>
					<em> </em>
				</div>
			</div>

			<div class="md:hidden">
				 
			</div>
		</div>
	</div>
</div>

<p>
	Still, the clock was winding down for that excavation season. Then divers found manmade stone pockets, once used to store fishing gear, a sign that this might have been a shoreline in Cleopatra's time. Sonar revealed ancient relics along the sea floor, including a series of colossal structures standing 20 feet high and arranged in rows, as well as several anchors and amphora. When the first anchor was found, Martinez recalled, one of the cameramen became so excited he jumped right into the water. And that 4,300-foot tunnel pointed directly at the submerged site. Divers also uncovered a basalt base that may have been a pedestal for a statue, as well as three pillars they dubbed the "Three Sisters."
</p>

<p>
	 
</p>

<p>
	The discovery of the port suggests that Taposiris Magna was both a significant religious center and a maritime trading hub. Now that Martinez and Ballard and the rest of the team have successfully mapped the area and identified five areas showing clear signs of human activity, the next step is to explore further with actual excavations. That's a major undertaking given that the structures are buried beneath thousands of years of sediment, and that sediment must be removed to find out exactly what is underneath.
</p>

<p>
	 
</p>

<p>
	But Martinez is game and plans to start with the "Salam 5" feature, consisting of several tall rectangular stone structures. While none of this is definitive proof, "nobody can tell me that Cleopatra is not at Taposiris Magna," <a href="https://www.nationalgeographic.com/history/article/cleopatra-tomb-port-taposiris-magna" rel="external nofollow">Martinez told National Geographic</a>. "To say that, you have to excavate the whole area and not find her. I'm not going to stop. For me, it is a matter of time."
</p>

<p>
	 
</p>

<p>
	<em>Cleopatra's Final Secret</em> premieres on September 25 on National Geographic and will be available for streaming the next day on Disney+ and Hulu.
</p>

<p>
	 
</p>

<p>
	<a href="https://arstechnica.com/science/2025/09/is-this-archaeologist-on-the-verge-of-finding-cleopatras-tomb/" rel="external nofollow">Source</a>
</p>

<hr class="ipsHr">
<p>
	<span style="font-size:12px;"><em>Hope you enjoyed this news post. Feedback welcome.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>Posted Thursday 25 September 2025 at 6:07 pm AEST (my time).</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>News posts... 2023: 5,800+ | 2024: 5,700+ | 2025 (till end of August): 4,048</em></span>
</p>

<p>
	<strong><span style="font-size:12px;"><a href="https://nsaneforums.com/topic/459202-remember-matrix/" rel="">RIP Matrix</a></span></strong>
</p>
]]></description><guid isPermaLink="false">31501</guid><pubDate>Thu, 25 Sep 2025 08:08:18 +0000</pubDate></item><item><title>A &#x201C;cosmic carpool&#x201D; is traveling to a distant space weather observation post</title><link>https://nsaneforums.com/news/general-news/a-%E2%80%9Ccosmic-carpool%E2%80%9D-is-traveling-to-a-distant-space-weather-observation-post-r31500/</link><description><![CDATA[<h3>
	"It’s like a bus. You wait for one and then three come at the same time."
</h3>

<p>
	Scientists loaded three missions worth nearly $1.6 billion on a SpaceX Falcon 9 rocket for launch Wednesday, toward an orbit nearly a million miles from Earth, to measure the supersonic stream of charged particles emanating from the Sun.
</p>

<p>
	 
</p>

<p>
	One of the missions, from the National Oceanic and Atmospheric Administration (NOAA), will beam back real-time observations of the solar wind to provide advance warning of geomagnetic storms that could affect power grids, radio communications, GPS navigation, air travel, and satellite operations.
</p>

<p>
	 
</p>

<p>
	The other two missions come from NASA, with research objectives that include studying the boundary between the Solar System and interstellar space and observing the rarely seen outermost layer of our own planet's atmosphere.
</p>

<p>
	 
</p>

<p>
	All three spacecraft were mounted to the top of a Falcon 9 rocket for liftoff at 7:30 am EDT (11:30 UTC) on Wednesday from NASA's Kennedy Space Center in Florida. The rocket arced on a trajectory heading east from Florida's Space Coast, shed its reusable first stage booster for a landing offshore, then fired its upper stage engine twice to propel the trio of missions into deep space.
</p>

<p>
	 
</p>

<p>
	A few minutes later, each of the spacecraft separated from the Falcon 9 to begin a multi-month journey toward their observing locations in halo orbits around the L1 Lagrange point, a gravitational balance point roughly 900,000 miles (1.5 million kilometers) from Earth toward the Sun. The combined pull from the Earth and Sun at this location provides a stable region for satellites to operate in, and a good location for instruments designed for solar science.
</p>

<figure class="ars-wp-img-shortcode id-2118868 align-fullwidth">
	<div>
		<img alt="f9_imap-1024x683.jpg" class="ipsImage" decoding="async" height="720" width="720" src="https://cdn.arstechnica.net/wp-content/uploads/2025/09/f9_imap-1024x683.jpg">
	</div>

	<figcaption>
		<div class="caption font-impact dusk:text-gray-300 mb-4 mt-2 inline-flex flex-row items-stretch gap-1 text-base leading-tight text-gray-400 dark:text-gray-300">
			<div class="caption-content">
				<em>Liftoff of IMAP and its two co-passengers on a Falcon 9 rocket. <span class="caption-credit mt-2 text-xs"><em> </em></span></em>
			</div>

			<div class="caption-content">
				<em><span class="caption-credit mt-2 text-xs"><em>Credit: SpaceX </em></span> </em>
			</div>
		</div>
	</figcaption>
</figure>

<h2>
	Seeing the big picture
</h2>

<p>
	The primary mission launched on Wednesday is called the Interstellar Mapping and Acceleration Probe (IMAP). The spin-stabilized IMAP spacecraft is shaped like a donut, with a diameter of about 8 feet (2.4 meters) and 10 science instruments looking inward toward the Sun and outward toward the edge of the heliosphere, the teardrop-shaped magnetic bubble blown outward by the solar wind.
</p>

<p>
	 
</p>

<p>
	At the edge of the heliosphere, the solar wind runs up against the interstellar medium, the gas, dust, and radiation in the space between the stars. This boundary remains a poorly understood frontier in space science, but it's important because the heliosphere protects the Solar System from damaging galactic cosmic rays.
</p>

<p>
	 
</p>

<p>
	"IMAP is a mission of firsts," said Nicky Fox, associate administrator of NASA's science mission directorate. "It’ll be the first spacecraft dedicated to mapping the heliosphere’s outer boundary, a key piece in the heliophysics puzzle about the Sun’s influence on our Solar System. To do this, IMAP will spin every 15 seconds to measure the invisible using a very comprehensive suite of revolutionary instruments."
</p>

<p>
	 
</p>

<p>
	During each rotation, IMAP's sensors will scoop up all sorts of stuff: ions traveling 1 million miles per hour in the solar wind, interstellar dust particles, and energetic neutral atoms kicked back into the Solar System from the edge of the heliosphere.
</p>

<p>
	 
</p>

<p>
	"These energetic neutral atoms act as cosmic messengers," said David McComas, IMAP's principal investigator from Princeton University. "They’re unaffected by magnetic fields so they can propagate all the way in from the boundaries to Earth’s orbit and be measured by IMAP."
</p>

<p>
	 
</p>

<p>
	Tracking these energetic neutral atoms will allow scientists to map the boundary of the heliosphere and what shapes it. The Sun's movement through the Milky Way galaxy forms a shock wave on the front side of the heliosphere, similar to the wave created by the bow of a ship moving through water.
</p>

<figure class="ars-wp-img-shortcode id-2118869 align-fullwidth">
	<div>
		<img alt="imapillustration.jpg" class="ipsImage" decoding="async" height="720" width="720" src="https://cdn.arstechnica.net/wp-content/uploads/2025/09/imapillustration.jpg">
	</div>

	<figcaption>
		<div class="caption font-impact dusk:text-gray-300 mb-4 mt-2 inline-flex flex-row items-stretch gap-1 text-base leading-tight text-gray-400 dark:text-gray-300">
			<div class="caption-content">
				<em>Artist's illustration of the IMAP spacecraft in orbit. <span class="caption-credit mt-2 text-xs"><em> </em></span></em>
			</div>

			<div class="caption-content">
				<em><span class="caption-credit mt-2 text-xs"><em>Credit: NASA </em></span> </em>
			</div>
		</div>
	</figcaption>
</figure>

<p>
	"We ended up with this fabulous observatory that measures everything," McComas said. "The particles coming out from the Sun are moving out in the solar wind to get to the outer heliosphere. Some fraction of them become neutralized and come right back, and we observe them a few years later as ENAs (energetic neutral atoms). So, we’re really observing the entire life cycle of this particle energization and how it interacts at the boundaries of the heliosphere."
</p>

<p>
	 
</p>

<p>
	IMAP follows a much smaller mission, named IBEX, that carried just two instruments to begin probing the edge of the heliosphere in 2008. IBEX discovered an unexpected ribbon-like pattern of energetic neutral emissions coming from the front of the heliosphere. Scientists have developed several theories to explain the ribbon signature. One of the theories postulates that the ribbon represents a group of particles that somehow leaked from the heliosphere and bounced around interstellar space before returning to the Solar System.
</p>

<p>
	 
</p>

<p>
	"It was found that interstellar matter, particles, and neutrals streaming in from outside the Solar System, actually... have a significant effect in how the entire heliosphere behaves," said Shri Kanekal, IMAP's mission scientist at NASA's Goddard Space Flight Center.
</p>

<p>
	 
</p>

<p>
	IBEX's discoveries fueled enthusiasm among space scientists for a more sophisticated follow-up mission like IMAP. NASA selected IMAP for development in 2018, and the $782 million mission will spend at least two years conducting scientific observations. The spacecraft was built at the Johns Hopkins University Applied Physics Laboratory in Laurel, Maryland.
</p>

<figure class="ars-wp-img-shortcode id-2118871 align-fullwidth">
	<div>
		<img alt="ibex_ribbon.jpg" class="ipsImage" decoding="async" height="720" width="720" src="https://cdn.arstechnica.net/wp-content/uploads/2025/09/ibex_ribbon.jpg">
	</div>

	<figcaption>
		<div class="caption font-impact dusk:text-gray-300 mb-4 mt-2 inline-flex flex-row items-stretch gap-1 text-base leading-tight text-gray-400 dark:text-gray-300">
			<div class="caption-content">
				<em>The ribbon remains one of IBEX’s biggest discoveries. It refers to a vast, diagonal swath of energetic neutrals, </em>
			</div>

			<div class="caption-content">
				<em>painted across the front of the heliosphere. <span class="caption-credit mt-2 text-xs"><em> </em></span></em>
			</div>

			<div class="caption-content">
				<em><span class="caption-credit mt-2 text-xs"><em>Credit: NASA/IBEX </em></span> </em>
			</div>
		</div>
	</figcaption>
</figure>

<h2>
	“Immense value”
</h2>

<p>
	Two years after NASA approved IMAP for development, the agency's heliophysics division selected another mission to head for the L1 Lagrange point. This smaller spacecraft, called the Carruthers Geocorona Observatory, hitched a ride to space with IMAP on Wednesday.
</p>

<p>
	 
</p>

<p>
	The $97 million Carruthers mission carries two co-aligned ultraviolet imagers designed for simultaneous observations of Earth's exosphere, a tenuous cloud of hydrogen gas that fades into the airless void of outer space about halfway to the Moon. The hydrogen atoms in the exosphere generate a faint glow called the geocorona, which is only detectable in ultraviolet light at great distances. Images of the entire geocorona can't be collected from a satellite in Earth orbit.
</p>

<p>
	 
</p>

<p>
	The mission is named for George Carruthers, an engineer and solar physicist who developed an ultraviolet camera placed on the Moon by the Apollo 16 astronauts in 1972. This camera captured the first view of the geocorona, a term coined by Carruthers himself.
</p>

<p>
	 
</p>

<p>
	The 531-pound (241-kilogram) Carruthers observatory was built by BAE Systems, with instruments provided by the University of California Berkeley’s Space Sciences Lab.
</p>

<p>
	 
</p>

<p>
	There's a lot for scientists to learn from the Carruthers mission, because they know little about the exosphere or geocorona.
</p>

<p>
	 
</p>

<p>
	"We actually don’t know exactly how big it is," said Lara Waldrop, the mission's principal investigator from the University of Illinois Urbana-Champaign. "We don’t know whether it’s spherical or oval, how much it changes over time or even the density of its constituent hydrogen atoms."
</p>

<p>
	 
</p>

<p>
	What scientists do know is that the exosphere plays an important role in shaping how solar storms affect the Earth. The exosphere is also the path by which the Earth is (very) slowly losing atomic hydrogen from water vapor lofted high into the atmosphere. "This process is extremely slow at Earth, and I’m talking billions of years. It is certainly nothing to worry about," Waldrop ensures.
</p>

<figure class="ars-wp-img-shortcode id-2118873 align-fullwidth">
	<div>
		<img alt="swfo-l1-1024x576.jpg" class="ipsImage" decoding="async" height="720" width="720" src="https://cdn.arstechnica.net/wp-content/uploads/2025/09/swfo-l1-1024x576.jpg">
	</div>

	<figcaption>
		<div class="caption font-impact dusk:text-gray-300 mb-4 mt-2 inline-flex flex-row items-stretch gap-1 text-base leading-tight text-gray-400 dark:text-gray-300">
			<div class="caption-content">
				<em>This image illustrates the location of the Sun-Earth L1 Lagrange point, where IMAP, Carruthers, and SWFO-L1 will operate. <span class="caption-credit mt-2 text-xs"><em> </em></span></em>
			</div>

			<div class="caption-content">
				<em><span class="caption-credit mt-2 text-xs"><em>Credit: NOAA </em></span> </em>
			</div>
		</div>
	</figcaption>
</figure>

<p>
	The final spacecraft aboard Wednesday's launch is the world's first operational satellite dedicated to monitoring space weather. This $692 million mission is called the Space Weather Follow On-L1, or SWFO-L1, and serves as an "early warning beacon" for the potentially devastating effects of geomagnetic storms, said Irene Parker, deputy assistant administrator for systems at NOAA's <span class="s1">National Environmental Satellite, Data, and Information Service.</span>
</p>

<p>
	 
</p>

<p>
	NOAA's previous satellites peer down at Earth from low-Earth orbit or geosynchronous orbit, gathering data for numerical weather models and tracking the real-time movement of hurricanes and severe storms. Until now, NOAA has relied upon a hodgepodge of research satellites to monitor the solar wind upstream from Earth. SWFO-L1, also built by BAE Systems, is the first mission designed from the start for real-time, around-the-clock solar wind observations.
</p>

<p>
	 
</p>

<p>
	"We’ll use SWFO-L1 to buy power grid, airline, and satellite operators precious time to act before billion-dollar storms strike," said Clinton Wallace, <span class="s1">director of NOAA's Space Weather Prediction Center.</span>
</p>

<p>
	 
</p>

<p>
	Once on station around the L1 Lagrange point, the satellite will be renamed SOLAR-1 before NOAA declares it operational in mid-2026. The platform hosts four instruments, one of which is a coronagraph to detect the massive eruptions from the Sun that spark geomagnetic storms. The other instruments will sample solar particles as they pass over the spacecraft about a half-hour before they reach our planet.
</p>

<p>
	 
</p>

<p>
	These instruments are akin to weather satellites that detect a hurricane's formation over the remote ocean and hurricane hunters that take direct measurements of the storm to assess its intensity before landfall, NOAA said.
</p>

<p>
	 
</p>

<p>
	Bundling IMAP, Carruthers, and SWFO-L1 onto the same rocket saved at least tens of millions of dollars in launch costs. Normally, they would have needed three different rockets.
</p>

<p>
	 
</p>

<p>
	Rideshare missions to low-Earth orbit are becoming more common, but spacecraft departing for more distant destinations like the L1 Lagrange point are rare. Getting all three missions on the same launch required extensive planning, a stroke of luck, and fortuitous timing.
</p>

<p>
	 
</p>

<p>
	"This is the ultimate cosmic carpool," said Joe Westlake, director of NASA's heliophysics division. "These three missions heading out to the Sun-Earth L1 point riding along together provide immense value for the American taxpayer."
</p>

<p>
	 
</p>

<p>
	"It’s like a bus," Fox said. "You wait for one and then three come at the same time."
</p>

<p>
	 
</p>

<p>
	<a href="https://arstechnica.com/space/2025/09/a-cosmic-carpool-is-traveling-to-a-distant-space-weather-observation-post/" rel="external nofollow">Source</a>
</p>

<hr class="ipsHr">
<p>
	<span style="font-size:12px;"><em>Hope you enjoyed this news post. Feedback welcome.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>Posted Thursday 25 September 2025 at 6:06 pm AEST (my time).</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>News posts... 2023: 5,800+ | 2024: 5,700+ | 2025 (till end of August): 4,048</em></span>
</p>

<p>
	<strong><span style="font-size:12px;"><a href="https://nsaneforums.com/topic/459202-remember-matrix/" rel="">RIP Matrix</a></span></strong>
</p>
]]></description><guid isPermaLink="false">31500</guid><pubDate>Thu, 25 Sep 2025 08:06:57 +0000</pubDate></item><item><title>Why does OpenAI need six giant data centers?</title><link>https://nsaneforums.com/news/general-news/why-does-openai-need-six-giant-data-centers-r31494/</link><description><![CDATA[<h3>
	OpenAI's new $400 billion announcement reveals both growing AI demand and circular investments.
</h3>

<p>
	On Tuesday, OpenAI, Oracle, and SoftBank <a href="https://openai.com/index/five-new-stargate-sites/" rel="external nofollow">announced</a> plans for five new US AI data center sites for <a href="https://arstechnica.com/ai/2025/01/trump-announces-500b-stargate-ai-infrastructure-project-with-agi-aims/" rel="external nofollow">Stargate</a>, their joint AI infrastructure project, bringing the platform to nearly 7 gigawatts of planned capacity and over $400 billion in investment over the next three years.
</p>

<p>
	 
</p>

<p>
	The massive buildout aims to handle ChatGPT's 700 million weekly users and train future AI models, although critics question whether the investment structure can sustain itself. The companies said the expansion puts them on track to secure the full $500 billion, 10-gigawatt commitment they announced in January by the end of 2025.
</p>

<p>
	 
</p>

<p>
	The five new sites will include three locations developed through an OpenAI and Oracle partnership: Shackelford County, Texas; Doña Ana County, New Mexico; and an unspecified Midwest location. These sites, along with a 600-megawatt expansion near the flagship Stargate site in Abilene, Texas, can deliver over 5.5 gigawatts of capacity, which means the computers on site will be able to draw up to 5.5 billion watts of electricity when running at full load. The companies expect the sites to create over 25,000 onsite jobs.
</p>

<p>
	 
</p>

<p>
	Two of the sites will be developed through a partnership between SoftBank and OpenAI. One site in Lordstown, Ohio, where SoftBank has broken ground, is on track to be operational next year. The second site in Milam County, Texas, will be developed with SB Energy, a SoftBank Group company. These two sites may scale to 1.5 gigawatts over the next 18 months.
</p>

<p>
	 
</p>

<p>
	The new sites will join the flagship Stargate campus in Abilene, Texas. Oracle began delivering Nvidia hardware to that site in June, and OpenAI has already begun training (building new models) and inference (running ChatGPT) using the data center.
</p>

<p>
	 
</p>

<p>
	Here's a rundown of those announced Stargate sites so far:
</p>

<p>
	 
</p>

<ul>
	<li>
		Abilene, Texas: Flagship campus, already operational with Nvidia GB200 racks, plus planned 600-megawatt expansion
	</li>
	<li>
		Shackelford County, Texas: New Oracle-developed site
	</li>
	<li>
		Doña Ana County, New Mexico: New Oracle-developed site
	</li>
	<li>
		Midwest location (undisclosed): New Oracle-developed site
	</li>
	<li>
		Lordstown, Ohio: New SoftBank-developed site, operational next year
	</li>
	<li>
		Milam County, Texas: New SoftBank/SB Energy site
	</li>
</ul>

<p>
	 
</p>

<p>
	The <a href="https://arstechnica.com/ai/2025/07/openai-and-partners-are-building-a-massive-ai-data-center-in-texas/" rel="external nofollow">July agreement</a> between OpenAI and Oracle to develop up to 4.5 gigawatts of additional Stargate capacity represents a partnership worth over $300 billion between the two companies over five years. The companies say they selected the five new sites after reviewing over 300 proposals from more than 30 states in a nationwide process launched in January.
</p>

<h2>
	Why OpenAI wants massive computing power
</h2>

<p>
	The kind of numbers OpenAI and friends throw around—10 gigawatts here, $500 billion there—are somewhat staggering and mind-boggling in scope for the layperson who might not be familiar with the massive scale of Internet infrastructure. For example, ten gigawatts is <a href="https://arstechnica.com/ai/2025/09/openai-and-nvidias-100b-ai-plan-will-require-power-equal-to-10-nuclear-reactors/" rel="external nofollow">equivalent</a> to the output of roughly 10 nuclear reactors, which is enough electricity to power millions of homes. But what does OpenAI really need those data centers for? It all goes back to OpenAI CEO Sam Altman's dream of providing intelligence as a service to billions of people.
</p>

<p>
	 
</p>

<p>
	"AI can only fulfill its promise if we build the compute to power it," OpenAI CEO Sam Altman said in the announcement. "That compute is the key to ensuring everyone can benefit from AI and to unlocking future breakthroughs."
</p>

<p>
	 
</p>

<p>
	Altman's statement reflects optimism about the usefulness of future AI systems, but despite warnings of an AI bubble and criticism of the underlying technology, there is still actual <a href="https://arstechnica.com/ai/2025/06/openai-signs-surprise-deal-with-google-cloud-despite-fierce-ai-rivalry/" rel="external nofollow">unmet demand</a> for generative AI capacity today. ChatGPT serves 700 million weekly active users, more than double the US population, who <a href="https://arstechnica.com/ai/2025/09/seven-things-we-learned-from-openais-first-study-on-chatgpt-usage/" rel="external nofollow">regularly use</a> the AI assistant to develop software, provide personal advice, and compose or edit correspondence and reports. While the outputs <a href="https://arstechnica.com/information-technology/2025/07/ai-coding-assistants-chase-phantoms-destroy-real-user-data/" rel="external nofollow">may be imperfect</a> at times, people apparently still want them.
</p>

<p>
	 
</p>

<p>
	OpenAI regularly faces severe capacity constraints to produce those outputs, which leads to limits on how often its users can query the chatbot. ChatGPT Plus subscribers frequently encounter these usage limits, particularly when using more compute-intensive features like image generation or simulated reasoning models. Free users, who represent a gateway for future subscriptions, face even stricter limitations. OpenAI lacks the computing capacity to meet current demand, let alone room for future growth.
</p>

<p>
	 
</p>

<p>
	Training next-generation AI models compounds the problem. On top of running existing AI models like those that power ChatGPT, OpenAI is constantly working on new technology in the background. It's a process that requires thousands of specialized chips running continuously for months.
</p>

<h2>
	The circular investment question
</h2>

<p>
	The financial structure of these deals between OpenAI, Oracle, and Nvidia has drawn scrutiny from industry observers. Earlier this week, Nvidia <a href="https://arstechnica.com/ai/2025/09/openai-and-nvidias-100b-ai-plan-will-require-power-equal-to-10-nuclear-reactors/" rel="external nofollow">announced</a> it would invest up to $100 billion as OpenAI deploys Nvidia systems. As Bryn Talkington of Requisite Capital Management <a href="https://www.cnbc.com/2025/09/22/nvidia-openai-data-center.html" rel="external nofollow">told</a> CNBC: "Nvidia invests $100 billion in OpenAI, which then OpenAI turns back and gives it back to Nvidia."
</p>

<p>
	 
</p>

<p>
	Oracle's arrangement <a href="https://arstechnica.com/ai/2025/07/openai-and-partners-are-building-a-massive-ai-data-center-in-texas/" rel="external nofollow">follows</a> a similar pattern, with a reported $30 billion-per-year deal where Oracle builds facilities that OpenAI pays to use. This circular flow, which involves infrastructure providers investing in AI companies that become their biggest customers, has <a href="https://www.nytimes.com/2025/08/27/business/economy/ai-investment-economic-growth.html" rel="external nofollow">raised eyebrows</a> about whether these represent genuine economic investments or elaborate accounting maneuvers.
</p>

<p>
	 
</p>

<p>
	The arrangements are becoming even more convoluted. The Information <a href="https://www.theinformation.com/articles/openai-megadeal-nvidia-discusses-new-business-model-chip-leasing" rel="external nofollow">reported</a> this week that Nvidia is discussing leasing its chips to OpenAI rather than selling them outright. Under this structure, Nvidia would create a separate entity to purchase its own GPUs, then lease them to OpenAI, which adds yet another layer of circular financial engineering to this complicated relationship.
</p>

<p>
	 
</p>

<p>
	"NVIDIA seeds companies and gives them the guaranteed contracts necessary to raise debt to buy GPUs from NVIDIA, even though these companies are horribly unprofitable and will eventually die from a lack of any real demand," <a href="https://bsky.app/profile/edzitron.com/post/3lz7dmjwers2v" rel="external nofollow">wrote</a> tech critic Ed Zitron on Bluesky last week about the unusual flow of AI infrastructure investments. Zitron was referring to companies like CoreWeave and Lambda Labs, which have raised billions in debt to buy Nvidia GPUs based partly on contracts from Nvidia itself. It's a pattern that mirrors OpenAI's arrangements with Oracle and Nvidia.
</p>

<p>
	 
</p>

<p>
	So what happens if the bubble pops? Even Altman himself <a href="https://arstechnica.com/information-technology/2025/08/sam-altman-calls-ai-a-bubble-while-seeking-500b-valuation-for-openai/" rel="external nofollow">warned</a> last month that "someone will lose a phenomenal amount of money" in what he called an AI bubble. If AI demand fails to meet these astronomical projections, the massive data centers built on physical soil won't simply vanish. When the dot-com bubble burst in 2001, fiber optic cable laid during the boom years eventually found use as Internet demand caught up. Similarly, these facilities could potentially pivot to cloud services, scientific computing, or other workloads, but at what might be massive losses for investors who paid AI-boom prices.
</p>

<p>
	 
</p>

<p>
	<a href="https://arstechnica.com/ai/2025/09/why-does-openai-need-six-giant-data-centers/" rel="external nofollow">Source</a>
</p>

<hr class="ipsHr">
<p>
	<span style="font-size:12px;"><em>Hope you enjoyed this news post. Feedback welcome.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>Posted Thursday 25 September 2025 at 3:44 am AEST (my time).</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>News posts... 2023: 5,800+ | 2024: 5,700+ | 2025 (till end of August): 4,048</em></span>
</p>

<p>
	<strong><span style="font-size:12px;"><a href="https://nsaneforums.com/topic/459202-remember-matrix/" rel="">RIP Matrix</a></span></strong>
</p>
]]></description><guid isPermaLink="false">31494</guid><pubDate>Wed, 24 Sep 2025 17:45:40 +0000</pubDate></item><item><title>For One Glorious Morning, a Website Saved San Francisco From Parking Tickets</title><link>https://nsaneforums.com/news/general-news/for-one-glorious-morning-a-website-saved-san-francisco-from-parking-tickets-r31492/</link><description><![CDATA[<h3>
	The serial website builder Riley Walz launched a project that tracked San Francisco parking enforcement in real time—until the public data feed was cut off.
</h3>

<p>
	<span class="lead-in-text-callout">Car owners in</span> <a href="https://www.wired.com/tag/san-francisco/" rel="external nofollow">San Francisco</a> fed up with parking tickets had a brief moment of respite on Tuesday thanks to a website called <a class="external-link" data-event-boundary="click" data-event-click='{"pattern":"ExternalLink"}' data-in-view='{"pattern":"ExternalLink"}' data-include-experiments="true" data-offer-url="https://walzr.com/sf-parking/" href="https://walzr.com/sf-parking/" rel="external nofollow" target="_blank">Find My Parking Cops</a>. The site kept tabs on where city workers were issuing tickets, showing the locations of parking control officers on a city map in real time.
</p>

<p>
	 
</p>

<p>
	I’m using the past tense to tell you about it because shortly after the site went live, the real-time data feed powering it went dark.
</p>

<p>
	 
</p>

<p>
	Before that sad turn of events, and while the buzz around the site was still high, I spoke to the creator, Riley Walz, about how he put it together. Walz is a <a href="https://www.wired.com/tag/software/" rel="external nofollow">software</a> engineer known for building <a class="external-link" data-event-boundary="click" data-event-click='{"pattern":"ExternalLink"}' data-in-view='{"pattern":"ExternalLink"}' data-include-experiments="true" data-offer-url="https://walzr.com/" href="https://walzr.com/" rel="external nofollow" target="_blank">stunty websites</a>. He got the idea for this one after looking at all of the information listed on the parking tickets issued by the San Francisco Municipal Transportation Agency. Each ticket shows the make of the car, the license number, and so on. But right at the top is the ticket’s citation number.
</p>

<p>
	 
</p>

<p>
	“I figured out that the ticket numbers are predictable,” Walz says, “which means I can efficiently scrape them.”
</p>

<p>
	 
</p>

<p>
	Walz’s website looked quite similar to Apple’s <a href="https://www.wired.com/story/apple-find-my-cryptography-bluetooth/" rel="external nofollow">Find My feature</a>, a tool sometimes used by <a href="https://www.wired.com/tag/ios/" rel="external nofollow">iOS</a> owners to track the location of family and friends. But rather than people you know IRL, this site showed the trail of tickets issued by parking enforcers as they zipped around San Francisco in their tiny single-seaters.
</p>

<p>
	 
</p>

<p>
	The website quickly <a class="external-link" data-event-boundary="click" data-event-click='{"pattern":"ExternalLink"}' data-in-view='{"pattern":"ExternalLink"}' data-include-experiments="true" data-offer-url="https://x.com/rtwlz/status/1970536901733130741" href="https://x.com/rtwlz/status/1970536901733130741" rel="external nofollow" target="_blank">went viral</a> on social media Tuesday, the same day as its initial release. It enjoyed a few good hours, before the site’s functionality vanished: City officials appear to have cut off the sources of data that Walz was using to track parking enforcement.
</p>

<p>
	 
</p>

<p>
	“In rare lightning speed, the SF government changed their site within hours of this site going live,” reads an announcement Walz added to Find My Parking Cops on Tuesday afternoon. “I can’t get data from it anymore.”
</p>

<p>
	 
</p>

<p>
	“Citations are a tool to ensure compliance with parking laws, which help keep our streets safe and use our limited curb space efficiently and fairly,” an SFMTA representative said in an emailed statement on Tuesday afternoon, after Walz’s site was no longer functional. “We welcome creative uses of technology to encourage legal parking, but we also want to make sure that our employees are able to do their jobs safely, and without disruption.”
</p>

<h2 class="paywall">
	Ticket Master
</h2>

<p>
	The idea for Find My Parking Cops was first sparked when Walz’s roommate got a parking fine. Walz noticed the nine-digit identification number on the ticket and started looking for patterns. By using publicly available information, he believed he cracked the code.
</p>

<p>
	 
</p>

<p>
	“It seems each possible ticket number follows a pattern: add 11, except add 4 if the last digit is 6. So, no ticket can end in 7, 8, or 9,” Walz wrote in a <a class="external-link" data-event-boundary="click" data-event-click='{"pattern":"ExternalLink"}' data-in-view='{"pattern":"ExternalLink"}' data-include-experiments="true" data-offer-url="https://walzr.com/sf-parking/about/" href="https://walzr.com/sf-parking/about/" rel="external nofollow" target="_blank">blog post</a> explaining the site. “So, the ticket after 984,946,606 is actually 984,946,610, and after that is 984,946,621.”
</p>

<p>
	 
</p>

<p>
	He suspected this absurd-seeming pattern was due to limitations baked into the software used by parking control officers. Whatever its reason for existing, the pattern of sequential ticket IDs, paired with parking officers likely claiming batches of ticket numbers, meant Walz was able to track their routes by plotting each parking ticket on a map as soon as it was entered into the system. A car owner could look at the activity of the officers currently out on patrol and see if any of them were slowly descending on their neighborhood.
</p>

<p>
	 
</p>

<p>
	Last year, parking officials in San Francisco issued <a class="external-link" data-event-boundary="click" data-event-click='{"pattern":"ExternalLink"}' data-in-view='{"pattern":"ExternalLink"}' data-include-experiments="true" data-offer-url="https://sfstandard.com/2024/12/27/san-francisco-parking-ticket-hotspots/" href="https://sfstandard.com/2024/12/27/san-francisco-parking-ticket-hotspots/" rel="external nofollow" target="_blank">over a million tickets</a> within city limits, which amounted to over $100 million in fines for car owners. “I actually don't have a car, but I have plenty of friends that talk about it,” says Walz. Like most costs in San Francisco, these tickets can quickly add up. For example, forgetting to move your car during the weekly street sweeping—an error my household has made more than once—will cost you $90 every time.
</p>

<h2 class="paywall">
	Dude, Where’s My Parking Cop?
</h2>

<p>
	The website’s live updates were pulled from the city government’s website and visualized on an Apple Map. Find My Parking Cops tracked the routes of individual parking control officers, giving them each unique visual identifiers, as well as their cadence of tickets.
</p>

<p>
	 
</p>

<p>
	On Tuesday, for example, the site displayed one officer seemingly starting their shift around 10:30 am and handing out 35 tickets over the next few hours as they patrolled a neighborhood in Lower Pacific Heights. The citations logged were primarily for expired meters, which costs $107 per ticket, and not having a residential permit, which costs $108 per ticket. In total, the fines racked up by that one officer over a few hours amounted to almost $4,000.
</p>

<p>
	 
</p>

<p>
	Who’s handing out the most tickets each week? Walz included a leaderboard on the website that ranked just how much in fines each officer handed out. While officers were only identified on the map by a number and their initials, their cumulative ticket cost was tracked. When WIRED was last able to check Walz’s website on Tuesday, the top fine giver had issued 157 tickets so far, handing out over $16,000 in fees for violations.
</p>

<p>
	 
</p>

<p>
	Prior to Find My Parking Cops, Walz created another San Francisco–specific website. This one used a phone, placed on a street corner in the Mission District, to identify what songs people were listening to in public. He then uploaded a live feed of the songs, captured and identified through the Shazam app, onto the <a class="external-link" data-event-boundary="click" data-event-click='{"pattern":"ExternalLink"}' data-in-view='{"pattern":"ExternalLink"}' data-include-experiments="true" data-offer-url="https://sfstandard.com/2024/10/01/bop-spotter-shazam-the-mission/" href="https://sfstandard.com/2024/10/01/bop-spotter-shazam-the-mission/" rel="external nofollow" target="_blank">Bop Spotter website</a>. It provided a little peek into what neighborhood residents were bumping at the time while also slyly nodding at the abundance of surveillance in the city. He’s also previously built a site, <a href="https://www.wired.com/story/riley-walz-the-guy-behind-the-most-nostalgic-sites-on-the-internet/" rel="external nofollow">called IMG_0001,</a> to surface old <a href="https://www.wired.com/tag/youtube/" rel="external nofollow">YouTube</a> clips uploaded by everyday people in the platform’s early days. Those grainy, private videos stand in stark contrast to the stuff that dominates the platform today.
</p>

<p>
	 
</p>

<p>
	The parking ticket tracker was another side project for Walz. “I worked in my free time on the weekends the last few weeks to make it happen,” he says.
</p>

<p>
	 
</p>

<p>
	While Walz's websites sometimes come with a dose of social commentary, he didn’t envision this project as making some kind of grand, sweeping statement about parking tickets or what it means to drive in 2025. Rather, it's another entry in his repertoire of cool websites powered by unique data sources.
</p>

<p>
	 
</p>

<p>
	“I'm not ‘pro’ parking cop. I'm not ‘anti’ parking cop,” says Walz. “It's just data I was able to unearth, and I thought it would be cool to visualize it.”
</p>

<p>
	 
</p>

<p>
	And now it’s gone. Representatives for <a href="https://www.wired.com/tag/apple/" rel="external nofollow">Apple</a> did not respond to immediate requests for comment. I reached out to Walz after the city’s data feed was cut off, but he didn’t pick up.
</p>

<p>
	 
</p>

<p>
	<a href="https://www.wired.com/story/san-francisco-find-my-parking-cops/" rel="external nofollow">Source</a>
</p>

<hr class="ipsHr">
<p>
	<span style="font-size:12px;"><em>Hope you enjoyed this news post. Feedback welcome.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>Posted Wednesday 24 September 2025 at 1:08 pm AEST (my time).</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>News posts... 2023: 5,800+ | 2024: 5,700+ | 2025 (till end of August): 4,048</em></span>
</p>

<p>
	<strong><span style="font-size:12px;"><a href="https://nsaneforums.com/topic/459202-remember-matrix/" rel="">RIP Matrix</a></span></strong>
</p>
]]></description><guid isPermaLink="false">31492</guid><pubDate>Wed, 24 Sep 2025 03:09:33 +0000</pubDate></item><item><title>Scientists catch a shark threesome on camera</title><link>https://nsaneforums.com/news/general-news/scientists-catch-a-shark-threesome-on-camera-r31476/</link><description><![CDATA[<h3>
	"It was over quickly for both males, one after the other. The first took 63 seconds, the other 47."
</h3>

<div class="ipsEmbeddedVideo" contenteditable="false">
	<div>
		<iframe allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen="" frameborder="0" height="113" referrerpolicy="strict-origin-when-cross-origin" src="https://www.youtube-nocookie.com/embed/N7cH7v2aN_s?feature=oembed" title="Leopard shark mating captured in the wild" width="200"></iframe>
	</div>
</div>

<p>
	 
</p>

<p>
	It's a rare occurrence for scientists to witness sharks mating in the wild. It's even rarer to catch three leopard sharks—two males and one female—engaging in what amounts to a threesome in the wild on camera, particularly since they are considered an endangered species. But that's just what one enterprising marine biology team achieved, describing the mating sequence in careful, clinical detail in <a href="https://link.springer.com/article/10.1007/s10164-025-00866-4" rel="external nofollow">a paper</a> published in the Journal of Ethology.
</p>

<p>
	 
</p>

<p>
	It's not like scientists don't know anything about leopard shark mating behavior; rather, most of that knowledge comes from studying the sharks in captivity. Whether the behavior is identical in the wild is an open question because there hadn't been any documented observations of leopard shark mating practices in the wild—until now.
</p>

<p>
	 
</p>

<p>
	Hugo Lassauce, a postdoctoral researcher at the University of the Sunshine Coast (UniSC) in Australia, was working with the Aquarium des Lagons in Nouméa, New Caledonia, to monitor sharks off the coast of that South Pacific territory. Lassauce has been snorkeling daily with sharks for a year as part of that program—always with an accompanying boat for safety purposes—and had seen bits of the leopard shark mating behavior before, but never the entire sequence. Then he spotted a female shark on the sand below with two males hanging onto her pectoral fins—classic pre-copulation (courtship) behavior observed in captive leopard sharks.
</p>

<p>
	 
</p>

<p>
	“I told my colleague to take the boat away to avoid disturbance, and I started waiting on the surface, looking down at the sharks almost motionless on the sea floor," <a href="https://www.usc.edu.au/about/unisc-news/news-archive/2025/september/leopard-shark-sex-tape-a-scientific-first" rel="external nofollow">said Lassauce</a>. “I waited an hour, freezing in the water, but finally they started swimming up. It was over quickly for both males, one after the other. The first took 63 seconds, the other 47. Then the males lost all their energy and lay immobile on the bottom while the female swam away actively.” (Add your own salacious jokes here. You know you're thinking them.)
</p>

<h2>
	Three sharks, two cameras
</h2>

<figure class="ars-wp-img-shortcode id-2118282 align-none">
	<div>
		<img alt="Three leopard sharks mating - near surface" class="ipsImage" decoding="async" height="720" width="720" src="https://cdn.arstechnica.net/wp-content/uploads/2025/09/shark2-1024x679.jpg">
	</div>

	<figcaption>
		<div class="caption font-impact dusk:text-gray-300 mb-4 mt-2 inline-flex flex-row items-stretch gap-1 text-base leading-tight text-gray-400 dark:text-gray-300">
			<div class="caption-content">
				<em>Moving the action closer to the surface. <span class="caption-credit mt-2 text-xs"><em> Credit: Hugo Lassauce/UniSC-Aquarium des Lagons </em></span> </em>
			</div>
		</div>
	</figcaption>
</figure>

<p>
	Lassauce had two GoPro Hero 5 cameras ready at hand, albeit with questionable battery life. That's why the video footage has two interruptions to the action: once when he had to switch cameras after getting a "low battery" signal, and a second time when he voluntarily stopped filming to conserve the second camera's battery. Not much happened for 55 minutes, after all, and he wanted to be sure to capture the pivotal moments in the sequence. Lassauce succeeded and was rewarded with triumphant cheers from his fellow marine biologists on the boat, who knew full well the rarity of what had just been documented for posterity.
</p>

<p>
	 
</p>

<p>
	The lengthy pre-copulation stage involved all three sharks motionless on the seafloor for nearly an hour, after which the female started swimming with one male shark biting onto each of her pectoral fins. A few minutes later, the first male made his move, "penetrating the female's cloaca with his left clasper." Claspers are modified pelvic fins capable of transferring sperm. After the first male shark finished, he lay motionless while the second male held onto the female's other fin. Then the other shark moved in, did his business, went motionless, and the female shark swam away. The males also swam away soon afterward.
</p>

<p>
	 
</p>

<p>
	Apart from the scientific first, documenting the sequence is a good indicator that this particular area is a critical mating habitat for leopard sharks, and could lead to better conservation strategies, as well as artificial insemination efforts to "rewild" leopard sharks in Australia and several other countries. “It’s surprising and fascinating that two males were involved sequentially on this occasion,” <a href="https://www.usc.edu.au/about/unisc-news/news-archive/2025/september/leopard-shark-sex-tape-a-scientific-first" rel="external nofollow">said co-author Christine Dudgeon</a>, also of UniSC, adding, “From a genetic diversity perspective, we want to find out how many fathers contribute to the batches of eggs laid each year by females.”
</p>

<p>
	 
</p>

<p>
	Journal of Ethology, 2025. DOI: <a href="http://dx.doi.org/10.1007/s10164-025-00866-4" rel="external nofollow">10.1007/s10164-025-00866-4</a> (<a href="http://arstechnica.com/science/news/2010/03/dois-and-their-discontents-1.ars" rel="external nofollow">About DOIs</a>).
</p>

<p>
	 
</p>

<p>
	<a href="https://arstechnica.com/science/2025/09/scientists-catch-a-shark-threesome-on-camera/" rel="external nofollow">Source</a>
</p>

<hr class="ipsHr">
<p>
	<span style="font-size:12px;"><em>Hope you enjoyed this news post. Feedback welcome.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>Posted Wednesday 24 September 2025 at 5:04 am AEST (my time).</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>News posts... 2023: 5,800+ | 2024: 5,700+ | 2025 (till end of August): 4,048</em></span>
</p>

<p>
	<strong><span style="font-size:12px;"><a href="https://nsaneforums.com/topic/459202-remember-matrix/" rel="">RIP Matrix</a></span></strong>
</p>
]]></description><guid isPermaLink="false">31476</guid><pubDate>Tue, 23 Sep 2025 19:05:21 +0000</pubDate></item><item><title>NASA targeting early February for Artemis II mission to the Moon</title><link>https://nsaneforums.com/news/general-news/nasa-targeting-early-february-for-artemis-ii-mission-to-the-moon-r31475/</link><description><![CDATA[<h3>
	"There is a desire for us to be the first to return to the surface of the Moon."
</h3>

<p>
	NASA is pressing ahead with preparations for the first launch of humans beyond low-Earth orbit in more than five decades, and officials said Tuesday that the Artemis II mission could take flight early next year.
</p>

<p>
	 
</p>

<p>
	Although work remains to be done, the space agency is now pushing toward a launch window that opens on February 5, 2026, officials said during a news conference on Tuesday at Johnson Space Center.
</p>

<p>
	 
</p>

<p>
	The Artemis II mission represents a major step forward for NASA and seeks to send four astronauts—Reid Wiseman, Victor Glover, Christina Koch, and Jeremy Hansen—around the Moon and back. The 10-day mission will be the first time astronauts have left low-Earth orbit since the Apollo 17 mission in December 1972.
</p>

<h2>
	Hardware nearing readiness
</h2>

<p>
	The mission’s Space Launch System rocket has been stacked and declared ready for flight. The Orion spacecraft is in the final stages of preparation and will be attached to the top of the rocket later this year.
</p>

<p>
	 
</p>

<p>
	Early next year, the combined stack will roll out to the vehicle’s launch site at Kennedy Space Center, said Charlie Blackwell-Thompson, Artemis launch director. At the pad, the rocket and spacecraft will be connected to ground systems, and after about two weeks, it will undergo a “wet dress rehearsal.”
</p>

<p>
	 
</p>

<p>
	During this fueling test, the first and second stages of the rocket will be fully loaded with liquid hydrogen and oxygen, and the countdown will be taken down to T-29 seconds. After this test, the rocket will be de-tanked and turned around for launch.
</p>

<p>
	 
</p>

<p>
	Due to the orbits of Earth and the Moon and various constraints on the mission, there are launch windows each month that last four to eight days. In February, that window opens on the fifth, and it would be an evening launch, Blackwell-Thompson said.
</p>

<p>
	 
</p>

<p>
	After launching, the Orion spacecraft will separate from the upper stage of the SLS rocket a little more than three hours after liftoff. It will spend about 24 hours in orbit around Earth, during which time the four astronauts on board will perform various checkouts to ensure the vehicle’s life support systems, thrusters, and other equipment are performing nominally.
</p>

<p>
	 
</p>

<p>
	If everything looks good, the spacecraft will perform a burn of its main engine to put it into a free return trajectory around the Moon. On this course, which would bring Orion back to Earth regardless of any problems with its propulsion system, the spacecraft would fly to the Moon and beyond it by 5,000 to 9,000 miles before returning to our planet.
</p>

<h2>
	Testing the heat shield
</h2>

<p>
	There, after 10 days, Orion will begin its descent. One of the most important objectives for this flight involves testing the heat shield of the spacecraft during its fiery reentry. Although the heat shield did not fail during the Artemis I test flight in 2022, significant pieces of the charred material unexpectedly broke off during flight. NASA spent the better part of two years investigating this issue before declaring that it had understood the problem.
</p>

<p>
	 
</p>

<p>
	During reentry, the ablative material decomposes and emits gases. These were intended to dissipate through the porous heat shield. However, during Artemis I—which carried no astronauts—the gases built up more rapidly than expected, and these pressures liberated chunks of the heat shield. After studying and testing the problem, NASA engineers decided that if they modified Orion's reentry path, they could create an environment in which the gases did not build up as much.
</p>

<p>
	 
</p>

<p>
	"The confidence we have in Artemis II is built upon numerous tests over the course of a couple of years," said Rick Henfling, Artemis II entry flight director. "I have the utmost confidence" in the engineers who performed this analysis, he added.
</p>

<p>
	 
</p>

<p>
	The NASA officials said Tuesday they did not feel pressure, or "go fever," to push forward with Artemis II as soon as possible. The mission is a stepping stone toward Artemis III, which seeks to land two astronauts on the Moon near the South Pole. In doing so, NASA is competing with China to reach the Moon and explore it for water ice and other resources.
</p>

<p>
	 
</p>

<p>
	"The administration has asked us to acknowledge that we are, indeed, in what is commonly called a second space race," said Lakiesha Hawkins, acting deputy associate administrator, Exploration Systems Development Mission Directorate. "There is a desire for us to be the first to return to the surface of the Moon. With that being said, NASA's objective is to do so safely."
</p>

<p>
	 
</p>

<p>
	<a href="https://arstechnica.com/space/2025/09/nasa-targeting-early-february-for-artemis-ii-mission-to-the-moon/" rel="external nofollow">Source</a>
</p>

<hr class="ipsHr">
<p>
	<span style="font-size:12px;"><em>Hope you enjoyed this news post. Feedback welcome.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>Posted Wednesday 24 September 2025 at 5:03 am AEST (my time).</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>News posts... 2023: 5,800+ | 2024: 5,700+ | 2025 (till end of August): 4,048</em></span>
</p>

<p>
	<strong><span style="font-size:12px;"><a href="https://nsaneforums.com/topic/459202-remember-matrix/" rel="">RIP Matrix</a></span></strong>
</p>
]]></description><guid isPermaLink="false">31475</guid><pubDate>Tue, 23 Sep 2025 19:04:17 +0000</pubDate></item><item><title>OpenAI and Nvidia&#x2019;s $100B AI plan will require power equal to 10 nuclear reactors</title><link>https://nsaneforums.com/news/general-news/openai-and-nvidia%E2%80%99s-100b-ai-plan-will-require-power-equal-to-10-nuclear-reactors-r31466/</link><description><![CDATA[<h3>
	"This is a giant project," Nvidia CEO said of new 10-gigawatt AI infrastructure deal.
</h3>

<p>
	On Monday, OpenAI and Nvidia jointly <a href="https://openai.com/index/openai-nvidia-systems-partnership/" rel="external nofollow">announced</a> a letter of intent for a strategic partnership to deploy at least 10 gigawatts of Nvidia systems for OpenAI's AI infrastructure, with Nvidia planning to invest up to $100 billion as the systems roll out. The companies said the first gigawatt of Nvidia systems will come online in the second half of 2026 using Nvidia's <a href="https://arstechnica.com/ai/2025/03/nvidia-announces-rubin-ultra-and-feynman-ai-chips-for-2027-and-2028/" rel="external nofollow">Vera Rubin</a> platform.
</p>

<p>
	 
</p>

<p>
	"Everything starts with compute," said Sam Altman, CEO of OpenAI, in the announcement. "Compute infrastructure will be the basis for the economy of the future, and we will utilize what we're building with NVIDIA to both create new AI breakthroughs and empower people and businesses with them at scale."
</p>

<p>
	 
</p>

<p>
	The 10-gigawatt project represents an astoundingly ambitious and as-yet-unproven scale for AI infrastructure. Nvidia CEO Jensen Huang <a href="https://www.cnbc.com/2025/09/22/nvidia-openai-data-center.html" rel="external nofollow">told</a> CNBC that the planned 10 gigawatts equals the power consumption of between 4 million and 5 million graphics processing units, which matches the company's total GPU shipments for this year and doubles last year's volume. "This is a giant project," Huang said in an interview alongside Altman and OpenAI President Greg Brockman.
</p>

<p>
	 
</p>

<p>
	To put that power demand in perspective, 10 gigawatts equals the output of <a href="https://www.hoganlovells.com/en/publications/whats-really-going-on-with-data-centers-and-nuclear" rel="external nofollow">roughly</a> 10 nuclear reactors, which typically output about 1 gigawatt per facility. Current data center energy consumption <a href="https://www.energy.gov/ne/articles/advantages-and-challenges-nuclear-powered-data-centers" rel="external nofollow">ranges</a> from 10 megawatts to 1 gigawatt, with most large facilities consuming between 50 and 100 megawatts. OpenAI's planned infrastructure would dwarf existing installations, requiring as much electricity as multiple major cities.
</p>

<p>
	 
</p>

<p>
	The partnership follows OpenAI's rapid user growth to 700 million weekly active users. Nvidia's stock rose nearly 4 percent on Monday following the announcement, adding roughly $170 billion to its market capitalization. The partnership establishes Nvidia as OpenAI's preferred strategic compute and networking partner, alongside OpenAI's existing relationships with Microsoft, Oracle, SoftBank, and the recently announced <a href="https://arstechnica.com/ai/2025/07/openai-and-partners-are-building-a-massive-ai-data-center-in-texas/" rel="external nofollow">Stargate</a> project partners.
</p>

<p>
	 
</p>

<p>
	The partnership announcement comes a week after Nvidia <a href="https://arstechnica.com/gadgets/2025/09/nvidia-will-invest-5-billion-in-intel-co-develop-new-server-and-pc-chips/" rel="external nofollow">disclosed</a> a $5 billion investment in Intel, taking a 4 percent stake in its longtime competitor as the two companies plan to co-develop custom data center and PC products.
</p>

<p>
	 
</p>

<p>
	Bryn Talkington, managing partner at Requisite Capital Management, noted the circular nature of the investment structure to CNBC. "Nvidia invests $100 billion in OpenAI, which then OpenAI turns back and gives it back to Nvidia," Talkington told CNBC. "I feel like this is going to be very virtuous for Jensen."
</p>

<h2>
	Racing for nuclear power
</h2>

<p>
	In an August earnings call, Huang <a href="https://seekingalpha.com/article/4817272-nvidia-q2-results-just-made-me-more-bullish-on-the-business-not-on-the-stock" rel="external nofollow">told</a> investors that building one gigawatt of data center capacity costs between $50 billion and $60 billion, with about $35 billion going toward Nvidia chips and systems. At that rate, the 10 gigawatt project could require total investment exceeding $500 billion.
</p>

<p>
	 
</p>

<p>
	While the companies did not specify power sources in their announcement, the massive energy requirements have driven other tech giants to nuclear partnerships for similar projects. In September 2024, Microsoft <a href="https://arstechnica.com/ai/2024/09/re-opened-three-mile-island-will-power-ai-data-centers-under-new-deal/" rel="external nofollow">signed</a> a 20-year agreement to restart a Three Mile Island reactor for 835 megawatts, while in May of this year, Amazon Web Services <a href="https://www.ans.org/news/article-5842/amazon-buys-nuclearpowered-data-center-from-talen/" rel="external nofollow">purchased</a> a data center next to Pennsylvania's Susquehanna nuclear plant with plans to use up to 960 megawatts.
</p>

<p>
	 
</p>

<p>
	Other massive AI infrastructure projects are emerging across the US. In July, officials in Cheyenne, Wyoming, <a href="https://arstechnica.com/information-technology/2025/07/ai-in-wyoming-may-soon-use-more-electricity-than-states-human-residents/" rel="external nofollow">announced</a> plans for an AI data center that would eventually scale to 10 gigawatts—consuming more electricity than all homes in the state combined, even in its earliest 1.8 gigawatt phase. Whether it's connected to OpenAI's plans remains unclear.
</p>

<p>
	 
</p>

<p>
	Altman's ambition for mega-sized datacenter deals now <a href="https://arstechnica.com/information-technology/2024/02/report-sam-altman-seeking-trillions-for-ai-chip-fabrication-from-uae-others/" rel="external nofollow">stretches back</a> over a year. In September of last year, Constellation Energy CEO Joe Dominguez <a href="https://www.bloomberg.com/news/articles/2024-09-24/openai-pitched-white-house-on-unprecedented-data-center-buildout" rel="external nofollow">told</a> Bloomberg he had heard Altman wanted five to seven data centers of 5 gigawatts each. Alex de Vries of Digiconomist <a href="https://fortune.com/2024/09/27/openai-5gw-data-centers-altman-power-requirements-nuclear/" rel="external nofollow">told</a> Fortune that seven 5-gigawatt units would have "twice the power consumption of New York State combined."
</p>

<p>
	 
</p>

<p>
	The planned infrastructure buildout would significantly increase global energy consumption, which also raises environmental concerns. The International Energy Agency <a href="https://www.nature.com/articles/d41586-025-01113-z" rel="external nofollow">estimates</a> that global data centers already consumed roughly 1.5 percent of global electricity in 2024. OpenAI's project also faces practical constraints. Existing power grid connections <a href="https://www.datacenterfrontier.com/hyperscale/article/55021675/the-gigawatt-data-center-campus-is-coming" rel="external nofollow">represent</a> bottlenecks in power-constrained markets, with utilities struggling to keep pace with rapid AI expansion that <a href="https://www.iea.org/news/ai-is-set-to-drive-surging-electricity-demand-from-data-centres-while-offering-the-potential-to-transform-how-the-energy-sector-works" rel="external nofollow">could push</a> global data center electricity demand to 945 terawatt hours by 2030, according to the International Energy Agency.
</p>

<p>
	 
</p>

<p>
	The companies said they expect to finalize details in the coming weeks. Huang told CNBC the $100 billion investment comes on top of all Nvidia's existing commitments and was not included in the company's recent financial forecasts to investors.
</p>

<p>
	 
</p>

<p>
	<a href="https://arstechnica.com/ai/2025/09/openai-and-nvidias-100b-ai-plan-will-require-power-equal-to-10-nuclear-reactors/" rel="external nofollow">Source</a>
</p>

<hr class="ipsHr">
<p>
	<span style="font-size:12px;"><em>Hope you enjoyed this news post. Feedback welcome.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>Posted Tuesday 23 September 2025 at 12:22 pm AEST (my time).</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>News posts... 2023: 5,800+ | 2024: 5,700+ | 2025 (till end of August): 4,048</em></span>
</p>

<p>
	<strong><span style="font-size:12px;"><a href="https://nsaneforums.com/topic/459202-remember-matrix/" rel="">RIP Matrix</a></span></strong>
</p>
]]></description><guid isPermaLink="false">31466</guid><pubDate>Tue, 23 Sep 2025 02:24:30 +0000</pubDate></item><item><title>Three crashes in the first day? Tesla&#x2019;s robotaxi test in Austin.</title><link>https://nsaneforums.com/news/general-news/three-crashes-in-the-first-day-tesla%E2%80%99s-robotaxi-test-in-austin-r31459/</link><description><![CDATA[<h3>
	Tesla's crash rate is orders of magnitude worse than Waymo's.
</h3>

<p>
	These days, Austin, Texas feels like ground zero for autonomous cars. Although California was the early test bed for autonomous driving tech, the much more permissive regulatory environment in the Lone Star State, plus lots of wide, straight roads and mostly good weather, ticked enough boxes to see companies like Waymo and Zoox set up shop there. And earlier this summer, <a href="https://arstechnica.com/cars/2025/06/tesla-launches-robotaxi-service-in-austin/" rel="external nofollow">Tesla added itself to the list</a>. Except things haven't exactly gone well.
</p>

<p>
	 
</p>

<p>
	According to Tesla's crash reports, <a href="https://www.forbes.com/sites/bradtempleton/2025/09/18/tesla-robotaxi-reports-3-crashes-in-austin-on-july-1-details-hidden/" rel="external nofollow">spotted by Brad Templeton over at Forbes</a>, the automaker experienced not one but three crashes, all apparently on its first day of testing on July 1. And as we learned from Tesla CEO Elon Musk later in July during the (<a href="https://arstechnica.com/cars/2025/07/tesla-q2-2025-sell-fewer-cars-and-carbon-credits-make-less-money/" rel="external nofollow">not-great</a>) quarterly earnings call, by that time, Tesla had logged a mere 7,000 miles in testing.
</p>

<p>
	 
</p>

<p>
	By contrast, Waymo's crash rate is more than two orders of magnitude lower, with 60 crashes logged <a href="https://arstechnica.com/cars/2025/03/after-50-million-miles-waymos-crash-a-lot-less-than-human-drivers/" rel="external nofollow">over 50 million miles of driving</a>. (Waymo has now logged more than 96 million miles.)
</p>

<p>
	 
</p>

<p>
	Two of the three Tesla crashes involved another car rear-ending the Model Y, and at least one of these crashes was almost certainly not the Tesla's fault. But the third crash saw a Model Y—with the required safety operator on board—collide with a stationary object at low speed, resulting in a minor injury. Templeton also notes that there was a fourth crash that occurred in a parking lot and therefore wasn't reported. Sadly, most of the details <a href="https://docs.google.com/spreadsheets/d/1YZqqfdUbZETa-DgVgD-O-rA6ZP4J_birjMq-aTrurb0/edit?gid=0#gid=0" rel="external nofollow">in the crash reports</a> have been redacted by Tesla.
</p>

<p>
	 
</p>

<p>
	Unlike every other autonomous vehicle developer, Tesla relies on a handful of monocular cameras rather than fusing the inputs from cameras, lidar, and radar.
</p>

<h2>
	But wait, there’s more
</h2>

<p>
	Ars would never make the mistake of calling Tesla's "FSD" system autonomous—it's a partially automated driving system that requires the driver to provide situational awareness. The human driver is also responsible for not hitting anything. For almost a decade, Musk has claimed that FSD is capable of driving coast to coast unaided, despite Tesla never actually attempting such a feat publicly.
</p>

<p>
	 
</p>

<p>
	Well, a couple of Tesla owners appear to have given it a try, with a plan to drive a Model Y from Los Angeles to Jacksonville, Florida, operating under FSD the entire way.
</p>

<p>
	 
</p>

<p>
	At least, that was their plan. <a href="https://electrek.co/2025/09/21/tesla-influencers-tried-elon-musk-coast-to-coast-self-driving-crashed-before-60-miles/" rel="external nofollow">In reality,</a> they crashed into road debris after just 60 miles, breaking the car's suspension.
</p>

<p>
	 
</p>

<p>
	<a href="https://arstechnica.com/cars/2025/09/teslas-robotaxi-test-three-crashes-in-only-7000-miles/" rel="external nofollow">Source</a>
</p>

<hr class="ipsHr">
<p>
	<span style="font-size:12px;"><em>Hope you enjoyed this news post. Feedback welcome.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>Posted Tuesday 23 September 2025 at 4:00 am AEST (my time).</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>News posts... 2023: 5,800+ | 2024: 5,700+ | 2025 (till end of August): 4,048</em></span>
</p>

<p>
	<strong><span style="font-size:12px;"><a href="https://nsaneforums.com/topic/459202-remember-matrix/" rel="">RIP Matrix</a></span></strong>
</p>
]]></description><guid isPermaLink="false">31459</guid><pubDate>Mon, 22 Sep 2025 18:01:21 +0000</pubDate></item><item><title>Largest black hole ever discovered and it's bigger than you may have ever imagined</title><link>https://nsaneforums.com/news/general-news/largest-black-hole-ever-discovered-and-its-bigger-than-you-may-have-ever-imagined-r31458/</link><description><![CDATA[<p>
	Astronomers from the University of Portsmouth in the UK, working with researchers at the Universidade Federal do Rio Grande do Sul in Brazil, have found what could be the most massive black hole ever measured. It sits at the centre of a "Cosmic Horseshoe" galaxy, which is so large that it bends spacetime and warps the light of a more distant galaxy into a horseshoe-shaped ring called the Einstein Ring.
</p>

<p>
	 
</p>

<p>
	The black hole is estimated to have a mass of 36 billion Suns, making it about 10,000 times heavier than the one at the centre of the Milky Way. This puts it close to the upper limit of how big black holes are thought to get in the universe. For comparison, the Milky Way’s central black hole has a mass of about 4 million Suns.
</p>

<p>
	 
</p>

<p>
	Scientists know that supermassive black holes (SMBHs) exist at the centre of nearly every large galaxy. Their growth is linked to the growth of their host galaxies over billions of years. In massive elliptical galaxies, the mass of the black hole is usually tied to how fast stars move around in the galaxy’s centre, a property called stellar velocity dispersion. Until now, most measurements of black hole mass have been made in nearby galaxies, because it is very hard to study the central regions of galaxies that are farther away.
</p>

<p>
	 
</p>

<p>
	The Cosmic Horseshoe gave researchers a rare chance to push beyond that limit. They combined two methods: stellar dynamics, which looks at how stars move, and gravitational lensing, which studies how the galaxy bends light. Using Multi Unit Spectroscopic Explorer (MUSE) integral-field spectroscopy and sharp images from the Hubble Space Telescope, they modelled both the galaxy’s radial arc, which is sensitive to the inner mass, and the motion of stars in the host galaxy. This allowed them to pin down the central mass distribution and the black hole’s size.
</p>

<p>
	 
</p>

<p>
	The results were checked using Bayesian model comparison, which confirmed the presence of an ultramassive black hole. The outcome was consistent across different tests, giving the team confidence in the measurement. The Cosmic Horseshoe black hole was found to sit above the expected relation between black hole mass and stellar velocity dispersion. This matches a trend seen in the most massive galaxies, where the relationship appears steeper than in smaller systems. It suggests that at the very highest masses, black holes and galaxies may grow together in a different way.
</p>

<p>
	 
</p>

<p>
	The black hole’s presence was detected in two clear ways. It bent the path of light passing nearby, and it caused stars in the inner regions of its galaxy to move at nearly 400 kilometres per second. Together, these effects gave a reliable measurement of its mass.
</p>

<p>
	 
</p>

<p>
	The Cosmic Horseshoe is about 5 billion light-years from Earth. Scientists think that mergers of galaxies over time can lead to the growth of ultramassive black holes, and such a process is expected when the Milky Way and Andromeda galaxies collide in about 4.5 billion years.
</p>

<p>
	 
</p>

<p>
	The discovery came while researchers were studying the galaxy’s dark matter. Now that the method has been shown to work, they hope to use data from the European Space Agency’s Euclid space telescope to find more supermassive black holes across a wider range of distances and sizes. These results could help explain how black holes shape the growth of galaxies throughout cosmic history.
</p>

<p>
	 
</p>

<p>
	Source: <a automate_uuid="44ade4a5-e05b-46df-8491-bd98dbcbe360" href="https://www.port.ac.uk/news-events-and-blogs/news/university-of-portsmouth-helps-discover-most-massive-black-hole-ever" rel="external nofollow">University of Portsmouth</a>, <a automate_uuid="a5f28ff2-950f-45e1-a23e-344cf6c19033" href="https://academic.oup.com/mnras/article/541/4/2853/8213862" rel="external nofollow">Royal Astronomical Society</a> | <em>Image via <a automate_uuid="7d17c7ee-c389-4e60-af4d-1984e0eae007" href="https://depositphotos.com" rel="external nofollow">Depositphotos</a></em>
</p>

<p>
	 
</p>

<p style="font-size:small">
	<em>This article was generated with some help from AI and reviewed by an editor. Under <a automate_uuid="405a8b12-b380-4a06-9906-53e8a593cf77" href="https://www.copyright.gov/fair-use/" rel="external nofollow">Section 107 of the Copyright Act 1976</a>, this material is used for the purpose of news reporting. Fair use is a use permitted by copyright statute that might otherwise be infringing.</em>
</p>

<p>
	 
</p>

<p>
	<a href="https://www.neowin.net/news/largest-black-hole-ever-discovered-and-its-bigger-than-you-may-have-ever-imagined/" rel="external nofollow">Source</a>
</p>

<hr class="ipsHr">
<p>
	<span style="font-size:12px;"><em>Hope you enjoyed this news post. Feedback welcome.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>Posted Tuesday 23 September 2025 at 3:58 am AEST (my time).</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>News posts... 2023: 5,800+ | 2024: 5,700+ | 2025 (till end of August): 4,048</em></span>
</p>

<p>
	<strong><span style="font-size:12px;"><a href="https://nsaneforums.com/topic/459202-remember-matrix/" rel="">RIP Matrix</a></span></strong>
</p>
]]></description><guid isPermaLink="false">31458</guid><pubDate>Mon, 22 Sep 2025 17:58:49 +0000</pubDate></item><item><title>F1 in Azerbaijan: This sport is my red flag</title><link>https://nsaneforums.com/news/general-news/f1-in-azerbaijan-this-sport-is-my-red-flag-r31457/</link><description><![CDATA[<h3>
	Baku is a mashup of Monaco and Monza, 90 meters below sea level.
</h3>

<p>
	<img alt="GettyImages-2236547758.jpg" class="ipsImage" data-ratio="75.10" height="480" width="720" src="https://cdn.arstechnica.net/wp-content/uploads/2025/09/GettyImages-2236547758.jpg">
</p>

<p>
	<em>The distance between the start line and turn 1 is shorter at Baku than any other F1 circuit I can think of. <span class="caption-credit mt-2 text-xs"> </span></em>
</p>

<p>
	<em><span class="caption-credit mt-2 text-xs">Credit: Clive Rose/Getty Images </span></em>
</p>

<p>
	 
</p>

<p>
	Almost a decade old now, the Azerbaijan Grand Prix is part of the modern breed of Formula 1 street circuits. Set on the shores of the Caspian Sea, the anti-clockwise layout manages to combine some of F1's highest top speeds with a rather fiddly section through the old city, all of it lined with walls and barriers to punish mistakes. It's a low-downforce track, with mostly slow corners, similar to Montreal and Monza.
</p>

<p>
	 
</p>

<p>
	Despite the questionable record of the hosting country—something all too many F1 races can also offer, including the three held in the US—I have a soft spot for watching Baku, with its interesting mix of old and new architecture, and it usually puts on a good race. I particularly love the helicopter and drone shots that follow the action with a God's eye view, giving you a glimpse behind the building facades and into this city by the sea.
</p>

<p>
	 
</p>

<p>
	Friday's practice sessions gave the Ferrari-supporting <em>Tifosi</em> something to look forward to, with Lewis Hamilton and Charles Leclerc topping the times for FP2. Hamilton, who has looked at sea this year after his switch to Ferrari, was made the bubbliest we've seen him all season when being interviewed on Friday, and his teammate Leclerc has four pole positions to his name at Baku, further stoking the hope.
</p>

<h2>
	Qualifying chaos
</h2>

<figure class="ars-wp-img-shortcode id-2118163 align-fullwidth">
	<div>
		<img alt="BAKU, AZERBAIJAN - SEPTEMBER 20: Charles Leclerc of Monaco and Scuderia Ferrari climbs out of his damaged car after a crash during qualifying ahead of the F1 Grand Prix of Azerbaijan at Baku City Circuit on September 20, 2025 in Baku, Azerbaijan." class="ipsImage" decoding="async" height="720" width="720" src="https://cdn.arstechnica.net/wp-content/uploads/2025/09/GettyImages-2236410595-1024x683.jpg">
	</div>

	<figcaption>
		<div class="caption font-impact dusk:text-gray-300 mb-4 mt-2 inline-flex flex-row items-stretch gap-1 text-base leading-tight text-gray-400 dark:text-gray-300">
			<div class="caption-content">
				<em>Pole was not in the cards for Charles Leclerc this year. <span class="caption-credit mt-2 text-xs"><em> </em></span></em>
			</div>

			<div class="caption-content">
				<em><span class="caption-credit mt-2 text-xs"><em>Credit: Joe Portlock/Getty Images </em></span> </em>
			</div>
		</div>
	</figcaption>
</figure>

<p>
	Saturday's qualifying session didn't pan out for the red cars. A good time for Hamilton in Q1 was not matched in Q2, and the seven-time world champion, who is yet to step on the podium this year (<a href="https://arstechnica.com/cars/2025/03/driver-intrigue-v10-rumors-and-a-good-sprint-weekend-f1-in-shanghai/" rel="external nofollow">other than his Sprint win in China</a>), was knocked out in Q2 and relegated to starting 12th. His was not the only hard day that saw a record six red flags interrupt the session, which took more than two hours to complete.
</p>

<p>
	 
</p>

<p>
	Strong, random gusts of wind caught out plenty, suddenly changing grip levels and even braking points and littering the track with leaves and branches. Williams' Alex Albon clipped his front left wheel on the apex of turn 1 on only his second lap, ending his day almost before it started.
</p>

<p>
	 
</p>

<p>
	A tailwind caught out Alpine's Pierre Gasly in Q1, and his rookie teammate Franco Colapinto hit the wall at the same corner shortly after. Sauber's Nico Hulkenberg also crashed, although not badly enough that he couldn't return to the pit under his own steam. As mentioned, Hamilton went no further than Q2, and Haas rookie Oliver Bearman was responsible for one of those six red flags when he collided with a wall.
</p>

<p>
	 
</p>

<p>
	Q3 was interrupted by light rain, just after Carlos Sainz had set a fantastic time in the other Williams. Had more rain arrived, Sainz would surely have started on pole position for Sunday's race. But things cleared up enough for the other drivers to complete some laps.
</p>

<figure class="ars-wp-img-shortcode id-2118158 align-fullwidth">
	<div>
		<img alt="BAKU, AZERBAIJAN - SEPTEMBER 21: Max Verstappen of the Netherlands driving the (1) Oracle Red Bull Racing RB21 leads Carlos Sainz of Spain driving the (55) Williams FW47 Mercedes on track during the F1 Grand Prix of Azerbaijan at Baku City Circuit on September 21, 2025 in Baku, Azerbaijan." class="ipsImage" decoding="async" height="720" width="720" src="https://cdn.arstechnica.net/wp-content/uploads/2025/09/GettyImages-2236546022-1024x683.jpg">
	</div>

	<figcaption>
		<div class="caption font-impact dusk:text-gray-300 mb-4 mt-2 inline-flex flex-row items-stretch gap-1 text-base leading-tight text-gray-400 dark:text-gray-300">
			<div class="caption-content">
				<em>The old city section. </em>
			</div>

			<div class="caption-content">
				<em><span class="caption-credit mt-2 text-xs"><em>Credit: James Sutton - Formula 1/Formula 1 via Getty Images </em></span> </em>
			</div>
		</div>
	</figcaption>
</figure>

<p>
	Or try to, at least. With only four times on the board, Leclerc crashed heavily at turn 15, the third time in recent years. Championship leader Oscar Piastri also found the wall in his McLaren, putting the pair in ninth and eighth for the race. Lando Norris, in the other McLaren, was only able to secure seventh on the grid—like Canada and Monza, the McLaren does not have an advantage at low-downforce circuits.
</p>

<p>
	 
</p>

<p>
	On the other hand, cold temperatures and low downforce play well to the Mercedes' strength, and its drivers George Russell and Kimi Antonelli would start fourth and fifth. As we saw at Monza, Red Bull has unlocked some speed on tracks with these characteristics, too, and Yuki Tsunoda put in one of his best qualifying performances all year to grab sixth for the start.
</p>

<p>
	 
</p>

<p>
	Liam Lawson, who started the season at Red Bull before swapping seats with Tsunoda to move to the Racing Bulls, had an even better day, snagging third. Sainz would still start on the front row, but next to Max Verstappen, who demonstrated his mastery of car control in changeable conditions and uncertain grip to get pole position.
</p>

<h2>
	Almost no chaos in the race
</h2>

<p>
	If Saturday was bad for McLaren, Sunday was worse. Piastri jumped the start, then got swamped on the grid after his anti-stall system kicked in. He made it as far as turn 5 before locking up his front tires and finding the wall, heavily. The championship leader would watch the rest of the race from behind the crash fencing.
</p>

<figure class="ars-wp-img-shortcode id-2118154 align-fullwidth">
	<div>
		<img alt="BAKU, AZERBAIJAN - SEPTEMBER 21: Oscar Piastri of Australia and McLaren looks on after crashing out during the F1 Grand Prix of Azerbaijan at Baku City Circuit on September 21, 2025 in Baku, Azerbaijan." class="ipsImage" decoding="async" height="720" width="720" src="https://cdn.arstechnica.net/wp-content/uploads/2025/09/GettyImages-2236551119-1024x682.jpg">
	</div>

	<figcaption>
		<div class="caption font-impact dusk:text-gray-300 mb-4 mt-2 inline-flex flex-row items-stretch gap-1 text-base leading-tight text-gray-400 dark:text-gray-300">
			<div class="caption-content">
				<em>Oscar Piastri would have to have at least two more DNFs and another bunch of bad races, plus Verstappen </em>
			</div>

			<div class="caption-content">
				<em>would have to win a lot, for Verstappen to be an actual threat this year. <span class="caption-credit mt-2 text-xs"><em> </em></span></em>
			</div>

			<div class="caption-content">
				<em><span class="caption-credit mt-2 text-xs"><em>Credit: Rudy Carezzevoli/Getty Images </em></span> </em>
			</div>
		</div>
	</figcaption>
</figure>

<p>
	The combination of cold temperatures, low downforce, and low cornering speeds meant that the Pirelli tires didn't really degrade, helping out the teams that, unlike McLaren, don't look after their tires well when the situation is reversed. Up front, Verstappen was never really in any threat. Sainz did his best to hang onto second but eventually claimed third—and his first podium for Williams. Second went to Russell, who had to bring his A game to beat Sainz, overcutting him in with a late pit stop. Antonelli came home in fourth, with Lawson a fine fifth place and Tsunoda in sixth.
</p>

<p>
	 
</p>

<p>
	The sole McLaren of Norris had a rather mid-field day, without the top speed to pass, even with the drag-reduction system. A botched pit stop by his team and poor tire choice didn't help, leaving him to finish seventh. The Ferraris of Hamilton and Leclerc could do no better than eighth and ninth, with Isack Hadjar taking the final point in the other Racing Bull.
</p>

<p>
	 
</p>

<p>
	With Norris' seventh and Piastri's DNF (his first for 43 races), McLaren fans online appeared to have a crisis of faith, flooding social media with laments that Red Bull and Verstappen were now a real threat. To them, I say, "Calm down and have a cup of tea and a nice biscuit." Piastri has a 69-point lead over Verstappen (a win is worth 25), and Norris is 44 points ahead. Every driver will make a few mistakes during a season, and it's better for Piastri to make them all this weekend than spread them out. Like Canada and Monza, Baku is an outlier—if the Red Bull manages to be this competitive at high-downforce Singapore (our next race), <em>then</em> you can think about panicking.
</p>

<figure class="ars-wp-img-shortcode id-2118155 align-fullwidth">
	<div>
		<img alt="BAKU, AZERBAIJAN - SEPTEMBER 21: Race winner Max Verstappen of the Netherlands and Oracle Red Bull Racing Second placed George Russell of Great Britain and Mercedes AMG Petronas F1 Team Third placed Carlos Sainz of Spain and Williams and Paul Monaghan, Head of Car Engineering of Oracle Red Bull Racing celebrate on the podium with Champagne during the F1 Grand Prix of Azerbaijan at Baku City Circuit on September 21, 2025 in Baku, Azerbaijan." class="ipsImage" decoding="async" height="720" width="720" src="https://cdn.arstechnica.net/wp-content/uploads/2025/09/GettyImages-2236563807-1024x683.jpg">
	</div>

	<figcaption>
		<div class="caption font-impact dusk:text-gray-300 mb-4 mt-2 inline-flex flex-row items-stretch gap-1 text-base leading-tight text-gray-400 dark:text-gray-300">
			<div class="caption-content">
				<em>It must be rather galling to Ferrari President John Elkann that the driver he forced out of the team for Lewis </em>
			</div>

			<div class="caption-content">
				<em>Hamilton has secured a podium for Williams before Hamilton has done the same at Ferrari. <span class="caption-credit mt-2 text-xs"><em> </em></span></em>
			</div>

			<div class="caption-content">
				<em><span class="caption-credit mt-2 text-xs"><em>Credit: Joe Portlock/Getty Images </em></span> </em>
			</div>
		</div>
	</figcaption>
</figure>

<p>
	2025 is not like seasons past, where teams developed their cars all year. <a href="https://arstechnica.com/cars/2024/06/lighter-nimbler-more-hybrid-power-he-f1-car-of-2026/" rel="external nofollow">With such a big rule change coming for 2026</a> and the limited resources of the cost cap, upgrades are few and far between, and there's little reason to think the McLaren will suddenly be at a disadvantage for most of the remaining circuits. Then again, Murray Walker used to say that F1 spelled backward is "if"...
</p>

<p>
	 
</p>

<p>
	<a href="https://arstechnica.com/cars/2025/09/f1-in-azerbaijan-this-sport-is-my-red-flag/" rel="external nofollow">Source</a>
</p>

<hr class="ipsHr">
<p>
	<span style="font-size:12px;"><em>Hope you enjoyed this news post. Feedback welcome.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>Posted Tuesday 23 September 2025 at 3:53 am AEST (my time).</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>News posts... 2023: 5,800+ | 2024: 5,700+ | 2025 (till end of August): 4,048</em></span>
</p>

<p>
	<strong><span style="font-size:12px;"><a href="https://nsaneforums.com/topic/459202-remember-matrix/" rel="">RIP Matrix</a></span></strong>
</p>
]]></description><guid isPermaLink="false">31457</guid><pubDate>Mon, 22 Sep 2025 17:55:02 +0000</pubDate></item><item><title>A Cyberattack on Jaguar Land Rover Is Causing a Supply Chain Disaster</title><link>https://nsaneforums.com/news/general-news/a-cyberattack-on-jaguar-land-rover-is-causing-a-supply-chain-disaster-r31455/</link><description><![CDATA[<h3>
	The UK-based automaker has been forced to stop vehicle production as a result of the attack—costing JLR tens of millions of dollars and forcing its parts suppliers to lay off workers.
</h3>

<p>
	For almost three weeks, the production lines at <a href="https://www.wired.com/story/jlr-jaguar-land-rover-electric-vehicle-factory-halewood/" rel="external nofollow">global car giant Jaguar Land Rover</a> have stood still. Usually busy turning out an estimated 1,000 vehicles per day, staff at multiple JLR factories across Britain have been told to stay at home as the automotive firm responds to a damaging cyberattack. But as its recovery has stretched from days to weeks, the knock-on impacts are being felt at the hundreds of companies that supply JLR with parts and materials and risk turning the attack into a full-blown crisis.
</p>

<p>
	 
</p>

<p>
	On Friday, the UK government <a class="external-link" data-event-boundary="click" data-event-click='{"pattern":"ExternalLink"}' data-in-view='{"pattern":"ExternalLink"}' data-include-experiments="true" data-offer-url="https://www.gov.uk/government/news/joint-statement-on-government-industry-supplier-meeting-regarding-jaguar-land-rover-cyber-incident" href="https://www.gov.uk/government/news/joint-statement-on-government-industry-supplier-meeting-regarding-jaguar-land-rover-cyber-incident" rel="external nofollow" target="_blank">admitted</a> that the cyberattack against JLR was having a “significant impact” on the company and on the “wider automotive supply chain.” The concession came as unions and officials have increasingly warned that <a href="https://www.bbc.co.uk/news/articles/cwyrqxj3eqqo" rel="external nofollow">thousands</a> of jobs in JLR’s sprawling supply chain could be lost, and some smaller companies could go bankrupt. Reports claim JLR itself may be <a href="https://www.bbc.co.uk/news/articles/c784nwvj1l3o" rel="external nofollow">losing up to £50 million ($67 million) per week</a> in the shutdown. Some firms have reportedly already laid off staff, with the <a class="external-link" data-event-boundary="click" data-event-click='{"pattern":"ExternalLink"}' data-in-view='{"pattern":"ExternalLink"}' data-include-experiments="true" data-offer-url="https://www.unitetheunion.org/news-events/news/2025/september/jlr-supply-chain-workers-being-told-to-apply-for-universal-credit-in-wake-of-cyberattack" href="https://www.unitetheunion.org/news-events/news/2025/september/jlr-supply-chain-workers-being-told-to-apply-for-universal-credit-in-wake-of-cyberattack" rel="external nofollow" target="_blank">Unite union claiming</a> that workers in the JLR supply chain “are being laid off with reduced or zero pay.” Some have been told to “sign up” for government benefits, the union claims.
</p>

<p>
	 
</p>

<p>
	“It seems unprecedented in the UK to have that level of disruption because of a cyberattack or ransomware attack,” says <a class="external-link" data-event-boundary="click" data-event-click='{"pattern":"ExternalLink"}' data-in-view='{"pattern":"ExternalLink"}' data-include-experiments="true" data-offer-url="https://www.rusi.org/people/maccoll" href="https://www.rusi.org/people/maccoll" rel="external nofollow" target="_blank">Jamie MacColl</a>, a senior research fellow in the cyber and tech research group at the security and defence think tank RUSI. That thousands of jobs could be put at risk, either temporarily or permanently, is “a different order of magnitude” to previous incidents, MacColl says.
</p>

<p>
	 
</p>

<p>
	JLR, which is owned by India’s Tata Motors, is one of the UK’s biggest employers, with around 32,800 people directly employed in the country. Stats on the company’s <a class="external-link" data-event-boundary="click" data-event-click='{"pattern":"ExternalLink"}' data-in-view='{"pattern":"ExternalLink"}' data-include-experiments="true" data-offer-url="https://www.jlr.com/uk-impact-report" href="https://www.jlr.com/uk-impact-report" rel="external nofollow" target="_blank">website</a> also claim it supports another 104,000 jobs through its UK supply chain and another 62,900 jobs “through wage-induced spending.” Many other suppliers are also based outside of the UK, as well as some overseas factories.
</p>

<p>
	 
</p>

<p>
	At the start of September, JLR <a class="external-link" data-event-boundary="click" data-event-click='{"pattern":"ExternalLink"}' data-in-view='{"pattern":"ExternalLink"}' data-include-experiments="true" data-offer-url="https://media.jaguarlandrover.com/news/2025/09/statement-cyber-incident" href="https://media.jaguarlandrover.com/news/2025/09/statement-cyber-incident" rel="external nofollow" target="_blank">confirmed</a> it had been “impacted” by a cyberattack and that the company was taking “immediate action” and “proactively shutting down our systems,” effectively grinding its factories and production processes to a halt. As the company investigated the attack, it <a class="external-link" data-event-boundary="click" data-event-click='{"pattern":"ExternalLink"}' data-in-view='{"pattern":"ExternalLink"}' data-include-experiments="true" data-offer-url="https://media.jaguarlandrover.com/news/2025/09/statement-cyber-incident-1" href="https://media.jaguarlandrover.com/news/2025/09/statement-cyber-incident-1" rel="external nofollow" target="_blank">revealed</a> that “some data” has been “affected” but did not specify what that data is.
</p>

<p>
	 
</p>

<p>
	Despite efforts to get systems back online, the company confirmed on Wednesday that its “pause” in production has been <a class="external-link" data-event-boundary="click" data-event-click='{"pattern":"ExternalLink"}' data-in-view='{"pattern":"ExternalLink"}' data-include-experiments="true" data-offer-url="https://media.jaguarlandrover.com/news/2025/09/statement-cyber-incident-2" href="https://media.jaguarlandrover.com/news/2025/09/statement-cyber-incident-2" rel="external nofollow" target="_blank">extended</a> to Wednesday, September 24. “We have taken this decision as our forensic investigation of the cyber incident continues, and as we consider the different stages of the controlled restart of our global operations, which will take time,” JLR said in a statement on Wednesday. “We are very sorry for the continued disruption this incident is causing and we will continue to update as the investigation progresses.”
</p>

<p>
	 
</p>

<p>
	JLR did not respond to questions from WIRED about what systems were disrupted, the financial cost of the cyberattack to suppliers, nor any measures the company was looking at to support businesses.
</p>

<p>
	 
</p>

<p>
	Almost immediately after the cyberattack, a group on Telegram called Scattered Lapsus$ Hunters, <a href="https://www.bbc.co.uk/news/articles/c4gqepe5355o" rel="external nofollow">claimed responsibility</a> for the hack. The group name implies a potential collaboration between three loose hacking collectives— <a href="https://www.wired.com/story/scattered-spider-most-imminent-threat/" rel="external nofollow">Scattered Spider</a>, <a href="https://www.wired.com/story/lapsusdollar-uber-rockstar-breach-multifactor-authentication-weaknesses/" rel="external nofollow">Lapsus$</a>, and <a href="https://www.wired.com/story/shinyhunters-hacking-group-data-breach-spree/" rel="external nofollow">Shiny Hunters</a>—that have been behind some of the most high-profile cyberattacks in recent years. They are often made up of <a href="https://www.wired.com/story/scattered-spider-most-imminent-threat/" rel="external nofollow">young, English-speaking, cybercriminals who target major businesses</a>.
</p>

<p>
	 
</p>

<p>
	Building vehicles is a hugely complex process. Hundreds of different companies provide parts, materials, electronics, and more to vehicle manufacturers, and these expansive supply chain networks <a class="external-link" data-event-boundary="click" data-event-click='{"pattern":"ExternalLink"}' data-in-view='{"pattern":"ExternalLink"}' data-include-experiments="true" data-offer-url="https://www.projectmanagementoffice.org.uk/automotive/driving-transformation-at-jaguar-land-rover/" href="https://www.projectmanagementoffice.org.uk/automotive/driving-transformation-at-jaguar-land-rover/" rel="external nofollow" target="_blank">often rely</a> <a class="external-link" data-event-boundary="click" data-event-click='{"pattern":"ExternalLink"}' data-in-view='{"pattern":"ExternalLink"}' data-include-experiments="true" data-offer-url="https://mag.toyota.co.uk/just-in-time/" href="https://mag.toyota.co.uk/just-in-time/" rel="external nofollow" target="_blank">upon</a> “just-in-time” manufacturing. That means they order parts and services to be delivered in the specific quantities that are needed and exactly when they need them—large stockpiles of parts are unlikely to be held by auto makers.
</p>

<p>
	 
</p>

<p>
	“The supplier networks that are supplying into these manufacturing plants, they’re all set up for efficiency—economic efficiency, and also logistic efficiency,” says <a class="external-link" data-event-boundary="click" data-event-click='{"pattern":"ExternalLink"}' data-in-view='{"pattern":"ExternalLink"}' data-include-experiments="true" data-offer-url="https://www.swansea.ac.uk/staff/s.a.shaikh/" href="https://www.swansea.ac.uk/staff/s.a.shaikh/" rel="external nofollow" target="_blank">Siraj Ahmed Shaikh</a>, a professor in systems security at Swansea University. “There’s a very carefully orchestrated supply chain,” Shaikh adds, speaking about automotive manufacturing generally. “There’s a critical dependency for those suppliers supplying into this kind of an operation. As soon as there is a disruption at this kind of facility, then all the suppliers get affected.”
</p>

<p>
	 
</p>

<p>
	One company that makes glass sun roofs has started laying off workers, according to a report in the <a class="external-link" data-event-boundary="click" data-event-click='{"pattern":"ExternalLink"}' data-in-view='{"pattern":"ExternalLink"}' data-include-experiments="true" data-offer-url="https://www.telegraph.co.uk/business/2025/09/18/jaguar-land-rover-supplier-puts-jobs-at-risk-cyber-hack/" href="https://www.telegraph.co.uk/business/2025/09/18/jaguar-land-rover-supplier-puts-jobs-at-risk-cyber-hack/" rel="external nofollow" target="_blank">Telegraph</a>. Meanwhile, another firm told the <a href="https://www.bbc.co.uk/news/articles/czdjn0lv64ro" rel="external nofollow">BBC</a> it has laid off around 40 people so far. French automotive company <a class="external-link" data-event-boundary="click" data-event-click='{"pattern":"ExternalLink"}' data-in-view='{"pattern":"ExternalLink"}' data-include-experiments="true" data-offer-url="https://www.opmobility.com/en/" href="https://www.opmobility.com/en/" rel="external nofollow" target="_blank">OPmobility</a>, which employs 38,000 people across 150 sites, told WIRED it is making some changes and monitoring the events. “OPmobility is reconfiguring its production at certain sites as a consequence of the shutdown of its production by one of its customers based in the United Kingdom and depending on the evolution of the situation,” a spokesperson for the firm says.
</p>

<p>
	 
</p>

<p>
	While it is unclear which specific JLR systems have been impacted by the hackers and what systems JLR took offline proactively, many were likely taken offline to stop the attack from getting worse. “It’s very challenging to ensure containment while you still have connections between various systems,” says <a class="external-link" data-event-boundary="click" data-event-click='{"pattern":"ExternalLink"}' data-in-view='{"pattern":"ExternalLink"}' data-include-experiments="true" data-offer-url="https://fticommunications.com/fti-consulting-expands-cybersecurity-data-privacy-communications-practice-in-emea-with-appointment-of-orla-cox/" href="https://fticommunications.com/fti-consulting-expands-cybersecurity-data-privacy-communications-practice-in-emea-with-appointment-of-orla-cox/" rel="external nofollow" target="_blank">Orla Cox</a>, head of EMEA cybersecurity communications at FTI Consulting, which responds to cyberattacks and works on investigations. “Oftentimes as well, there will be dependencies on different systems: You take one down, then it means that it has a knock on effect on another.”
</p>

<p>
	 
</p>

<p>
	Whenever there’s a hack in any part of a supply chain—whether that is a manufacturer at the top of the pyramid or a firm further down the pipeline—digital connections between companies may be severed to stop attackers from spreading from one network to the next. Connections via VPNs or APIs may be stopped, Cox says. “Some may even take stronger measures such as blocking domains and IP addresses. Then things like email are no longer usable between the two organizations.”
</p>

<p>
	 
</p>

<p>
	The complexity of digital and physical supply chains, spanning across dozens of businesses and just-in-time production systems, means it is likely that bringing everything back online and up to full-working speed may take time. MacColl, the RUSI researcher, says cybersecurity issues often fail to be debated at the highest level of British politics—but adds this time could be different due to the scale of the disruption. “This incident has the potential to cut through because of the job losses and the fact that MPs in constituencies affected by this will be getting calls,” he says. That breakthrough has already begun.
</p>

<p>
	 
</p>

<p>
	“This cyberattack is not some mere flicker on a screen, it is fast becoming a cyber-shockwave ripping through our industrial heartlands,” Liam Byrne, a member of Parliament and chair of the House of Commons’ Business and Trade committee <a class="external-link" data-event-boundary="click" data-event-click='{"pattern":"ExternalLink"}' data-in-view='{"pattern":"ExternalLink"}' data-include-experiments="true" data-offer-url="https://x.com/liambyrnemp/status/1968240209859842175" href="https://x.com/liambyrnemp/status/1968240209859842175" rel="external nofollow" target="_blank">said</a> on X. “If government stands back, that shockwave is going to destroy jobs, businesses, and pay packets across Britain.” Other lawmakers have also <a class="external-link" data-event-boundary="click" data-event-click='{"pattern":"ExternalLink"}' data-in-view='{"pattern":"ExternalLink"}' data-include-experiments="true" data-offer-url="https://www.birminghammail.co.uk/news/midlands-news/emergency-intervention-plea-birmingham-jlr-32495851" href="https://www.birminghammail.co.uk/news/midlands-news/emergency-intervention-plea-birmingham-jlr-32495851" rel="external nofollow" target="_blank">expressed concerns</a> after speaking with impacted JLR suppliers, and the Unite union has said the British government should intervene with a <a class="external-link" data-event-boundary="click" data-event-click='{"pattern":"ExternalLink"}' data-in-view='{"pattern":"ExternalLink"}' data-include-experiments="true" data-offer-url="https://www.theregister.com/2025/09/15/covidstyle_furlough_schemes_for_jlr/" href="https://www.theregister.com/2025/09/15/covidstyle_furlough_schemes_for_jlr/" rel="external nofollow" target="_blank">“furlough” scheme to support workers</a>.
</p>

<p>
	 
</p>

<p>
	“The recent cyber incident is having a significant impact on Jaguar Land Rover and on the wider automotive supply chain,” the UK’s Department for Business and Trade <a class="external-link" data-event-boundary="click" data-event-click='{"pattern":"ExternalLink"}' data-in-view='{"pattern":"ExternalLink"}' data-include-experiments="true" data-offer-url="https://www.gov.uk/government/news/joint-statement-on-government-industry-supplier-meeting-regarding-jaguar-land-rover-cyber-incident" href="https://www.gov.uk/government/news/joint-statement-on-government-industry-supplier-meeting-regarding-jaguar-land-rover-cyber-incident" rel="external nofollow" target="_blank">said in a statement</a> on Friday, following a meeting with automotive industry groups. “The Government, including government cyber experts, are in contact with the company to support the task of restoring production operations, and are working closely with JLR to understand any impacts on the supply chain.”
</p>

<p>
	 
</p>

<p>
	The attack is likely <a href="https://www.wired.com/story/notpetya-cyberattack-ukraine-russia-code-crashed-the-world/" rel="external nofollow">another incident</a> that demonstrates how fragile supply chains can be when they are faced with disruption. “We do need to shift to a more resilient supply chain and a resilient operation when it comes to things like manufacturing,” says Shaikh, from Swansea University.
</p>

<p>
	 
</p>

<p>
	Meanwhile, MacColl says that as global tensions are high—with multiple countries taking steps to make sure they <a class="external-link" data-event-boundary="click" data-event-click='{"pattern":"ExternalLink"}' data-in-view='{"pattern":"ExternalLink"}' data-include-experiments="true" data-offer-url="https://www.telegraph.co.uk/news/2025/09/09/europe-war-footing-russia-ukraine-nato-defence-putin/" href="https://www.telegraph.co.uk/news/2025/09/09/europe-war-footing-russia-ukraine-nato-defence-putin/" rel="external nofollow" target="_blank">are prepared</a> <a href="https://www.bbc.co.uk/news/articles/cpqnlxr43zdo" rel="external nofollow">for war</a>—the attack indicates how production can be forced to grind to a halt. “If this is the effect just that criminals can have on our supply chains, then it's quite worrying to think about how unprepared we are for, say, a more coordinated and sustained attack from a potential state adversary,” MacColl says.
</p>

<p>
	 
</p>

<p>
	<a href="https://www.wired.com/story/jlr-jaguar-land-rover-cyberattack-supply-chain-disaster/" rel="external nofollow">Source</a>
</p>

<hr class="ipsHr">
<p>
	<span style="font-size:12px;"><em>Hope you enjoyed this news post. Feedback welcome.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>Posted Monday 22 September 2025 at 4:54 pm AEST (my time).</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>News posts... 2023: 5,800+ | 2024: 5,700+ | 2025 (till end of August): 4,048</em></span>
</p>

<p>
	<strong><span style="font-size:12px;"><a href="https://nsaneforums.com/topic/459202-remember-matrix/" rel="">RIP Matrix</a></span></strong>
</p>
]]></description><guid isPermaLink="false">31455</guid><pubDate>Mon, 22 Sep 2025 06:55:33 +0000</pubDate></item><item><title>Just like Bill Gates, Zoom's CEO now says that AI could enable a 3-day workweek &#x2014; at the cost of entry-level jobs</title><link>https://nsaneforums.com/news/general-news/just-like-bill-gates-zooms-ceo-now-says-that-ai-could-enable-a-3-day-workweek-%E2%80%94-at-the-cost-of-entry-level-jobs-r31430/</link><description><![CDATA[<h3>
	Eric Yuan says employees might soon enjoy longer weekends as AI gains broad adoption at work, taking over mundane tasks.
</h3>

<p id="40e8c698-3730-4824-8daa-765d765c8be1">
	As we edge closer to the end of the year, I dread having the "end-of-year fatigue" conversations with friends. Most people often complain about having to clock in at work for 40 hours a week, leaving them with little time for resting, connecting with friends and family, and, at the very least, <em>touching grass</em>.
</p>

<p>
	 
</p>

<p>
	In June, Microsoft released a special Work Trend Index report, which revealed that most employees feel like they are trapped in <a data-analytics-id="inline-link" data-before-rewrite-localise="https://www.windowscentral.com/software-apps/work-productivity/microsoft-discovers-employees-feel-trapped-in-infinite-workday" href="https://www.windowscentral.com/software-apps/work-productivity/microsoft-discovers-employees-feel-trapped-in-infinite-workday" rel="external nofollow"><em>"the infinite workday."</em></a><em> </em>The report suggested that a typical workday for an employee starts at 6 AM while they are still in bed.
</p>

<p>
	 
</p>

<p>
	<a data-hl-processed="none" data-url="" href="" id="elk-seasonal" referrerpolicy="no-referrer-when-downgrade" target="_blank" rel=""></a>
</p>

<p id="40e8c698-3730-4824-8daa-765d765c8be1-2">
	However, the cycle doesn't end at 5/6 PM as expected. Most employees wind up carrying work back home, leaving them with little time for personal things. The same goes for the weekend, with Sunday feeling like the new Monday since it is often used to prep for Monday's meetings and leftover tasks from the previous week.
</p>

<p>
	 
</p>

<p id="ed0e60b2-022c-48ae-b8f5-4e21951b2156">
	Microsoft indicated that the integration of <a data-analytics-id="inline-link" data-auto-tag-linker="true" data-before-rewrite-localise="https://www.windowscentral.com/artificial-intelligence" data-before-rewrite-redirect="https://www.windowscentral.com/tag/artificial-intelligence" href="https://www.windowscentral.com/artificial-intelligence" rel="external nofollow">AI</a> into workflows not only boosts an employee's morale and performance index but also provides ample time for more daunting and important tasks.
</p>

<p>
	 
</p>

<p>
	It remains to be seen if organizations will warm up to the idea, but companies like <a data-analytics-id="inline-link" data-auto-tag-linker="true" data-before-rewrite-localise="https://www.windowscentral.com/tag/salesforce" href="https://www.windowscentral.com/tag/salesforce" rel="external nofollow">Salesforce</a> are already knee-deep into the approach. At the beginning of the year, CEO <a data-analytics-id="inline-link" data-before-rewrite-localise="https://www.windowscentral.com/software-apps/work-productivity/salesforce-is-seriously-debating-software-engineer-hires-in-2025" href="https://www.windowscentral.com/software-apps/work-productivity/salesforce-is-seriously-debating-software-engineer-hires-in-2025" rel="external nofollow">Marc Benioff indicated</a> that the company was seriously debating hiring software engineers while citing incredible productivity gains from agentic AIs. The executive later revealed that <a data-analytics-id="inline-link" data-before-rewrite-localise="https://www.windowscentral.com/software-apps/marc-benioff-ai-is-doing-30-50-percent-of-work-at-salesforce" href="https://www.windowscentral.com/software-apps/marc-benioff-ai-is-doing-30-50-percent-of-work-at-salesforce" rel="external nofollow">the company uses AI to handle up to 50% of its tasks</a>.
</p>

<p>
	<a data-hl-processed="none" data-url="" href="" id="elk-0fdda0be-1a20-486e-908a-2ea7b9b9c863" referrerpolicy="no-referrer-when-downgrade" target="_blank" rel=""></a>
</p>

<h2 id="a-3-day-workweek-might-be-possible-with-ai-but-its-not-that-glamourous-3">
	A 3-day workweek might be possible with AI, but its not that glamourous
</h2>

<div>
	<div>
		<p>
			<picture data-new-v2-image="true"> <source sizes="(min-width: 1000px) 970px, calc(100vw - 40px)" srcset="https://cdn.mos.cms.futurecdn.net/Jau8dveuQbfukkcLAinnfc-1200-80.jpg.webp 1200w, https://cdn.mos.cms.futurecdn.net/Jau8dveuQbfukkcLAinnfc-1024-80.jpg.webp 1024w, https://cdn.mos.cms.futurecdn.net/Jau8dveuQbfukkcLAinnfc-970-80.jpg.webp 970w, https://cdn.mos.cms.futurecdn.net/Jau8dveuQbfukkcLAinnfc-650-80.jpg.webp 650w, https://cdn.mos.cms.futurecdn.net/Jau8dveuQbfukkcLAinnfc-480-80.jpg.webp 480w, https://cdn.mos.cms.futurecdn.net/Jau8dveuQbfukkcLAinnfc-320-80.jpg.webp 320w" type="image/webp"> <img alt="Zoom founder Eric Yuan speaks before the Nasdaq opening bell ceremony on April 18, 2019 in New York City." class="ipsImage" data-new-v2-image="true" height="720" width="720" src="https://cdn.mos.cms.futurecdn.net/Jau8dveuQbfukkcLAinnfc-1024-80.jpg"> </source></picture>
		</p>

		<p>
			<em><span>Zoom founder Eric Yuan. </span></em>
		</p>

		<p>
			<em><span itemprop="copyrightHolder">(Image credit: Getty Images | Kena Betancur / Stringer)</span></em>
		</p>

		<p>
			 
		</p>

		<p id="940ec7bc-aaf4-40d1-997a-f8cc7ea81d02">
			In a recent interview, Zoom CEO Eric Yuan indicated that the broad adoption of AI could soon present a three-day workweek opportunity for employees (via <a data-analytics-id="inline-link" data-hl-processed="none" data-url="https://fortune.com/2025/09/15/zoom-ceo-eric-yuan-three-day-workweek-ai-automation-human-jobs-replaced-future-of-work/" href="https://fortune.com/2025/09/15/zoom-ceo-eric-yuan-three-day-workweek-ai-automation-human-jobs-replaced-future-of-work/" referrerpolicy="no-referrer-when-downgrade" target="_blank" rel="external nofollow">Fortune</a>). He further claimed that the technology would take over mundane and repetitive tasks, allowing humans to focus on more important tasks.
		</p>

		<p>
			 
		</p>

		<p>
			However, this approach comes with its fair share of setbacks, including job loss. This news comes after Anthropic CEO <a data-analytics-id="inline-link" data-before-rewrite-localise="https://www.windowscentral.com/software-apps/work-productivity/anthropic-ceo-ai-slash-50-percent-entry-level-jobs" href="https://www.windowscentral.com/software-apps/work-productivity/anthropic-ceo-ai-slash-50-percent-entry-level-jobs" rel="external nofollow">Dario Amodei claimed that AI would slash 50% of entry-level white collar jobs</a>, leaving Gen Z out of work.
		</p>

		<p>
			 
		</p>

		<div id="slice-container-newsletterForm-articleInbodyContent-CTdNFnjoNEozYd9aAZ9Y8K">
			<div data-hydrate="true">
				<p>
					Yuan isn't alone in this. Last year, <a data-analytics-id="inline-link" data-before-rewrite-localise="https://www.windowscentral.com/software-apps/microsofts-bill-gates-is-worried-about-losing-his-job-to-ai-though-it-could-potentially-present-a-3-day-workweek-opportunity" href="https://www.windowscentral.com/software-apps/microsofts-bill-gates-is-worried-about-losing-his-job-to-ai-though-it-could-potentially-present-a-3-day-workweek-opportunity" rel="external nofollow">Bill Gates floated the idea of AI creating a 3-day work week</a> for professionals by freeing them from repetitive tasks that would have otherwise consumed a lot of time that can be used for more meaningful things.
				</p>

				<p>
					 
				</p>

				<p>
					Earlier this year, the philanthropic billionaire echoed similar sentiments, suggesting that <a data-analytics-id="inline-link" data-before-rewrite-localise="https://www.windowscentral.com/software-apps/work-productivity/bill-gates-says-ai-will-create-a-2-day-work-week-in-10-years" href="https://www.windowscentral.com/software-apps/work-productivity/bill-gates-says-ai-will-create-a-2-day-work-week-in-10-years" rel="external nofollow">AI might present a 2-day work opportunity within the next 10 years</a>.
				</p>

				<p>
					 
				</p>

				<div>
					<div>
						<p>
							<a href="https://www.windowscentral.com/artificial-intelligence/zoom-ceo-ai-could-enable-3-day-workweek" rel="external nofollow">Source</a>
						</p>

						<hr class="ipsHr">
						<p>
							<span style="font-size:12px;"><em>Hope you enjoyed this news post. Feedback welcome.</em></span>
						</p>

						<p>
							<span style="font-size:12px;"><em>Posted Saturday 20 September 2025 at 3:00 am AEST (my time).</em></span>
						</p>

						<p>
							<span style="font-size:12px;"><em>News posts... 2023: 5,800+ | 2024: 5,700+ | 2025 (till end of August): 4,048</em></span>
						</p>

						<p>
							<strong><span style="font-size:12px;"><a href="https://nsaneforums.com/topic/459202-remember-matrix/" rel="">RIP Matrix</a></span></strong>
						</p>
					</div>
				</div>
			</div>
		</div>
	</div>
</div>
]]></description><guid isPermaLink="false">31430</guid><pubDate>Fri, 19 Sep 2025 17:01:34 +0000</pubDate></item><item><title>Rocket Report: European rocket reuse test delayed; NASA tweaks SLS for Artemis II</title><link>https://nsaneforums.com/news/general-news/rocket-report-european-rocket-reuse-test-delayed-nasa-tweaks-sls-for-artemis-ii-r31429/</link><description><![CDATA[<h3>
	"There’s a lot of interest because of the fear that there’s just not a lot of capacity."
</h3>

<p>
	Welcome to Edition 8.11 of the Rocket Report! We have reached the time of year when it is possible the US government will shut down its operations at the end of this month, depending on congressional action. A shutdown would have significant implications for many NASA missions, but most notably a couple of dozen in the science directorate that the White House would like to shut down. At Ars, we will be watching this issue closely in the coming days. As for Artemis II, it seems to be far enough along that a launch next February seems possible as long as any government closure does not drag on for weeks and weeks.
</p>

<p>
	 
</p>

<p>
	As always, we <a href="https://arstechnica.wufoo.com/forms/launch-stories/" rel="external nofollow">welcome reader submissions</a>, and if you don't want to miss an issue, please subscribe using the box below (the form will not appear on AMP-enabled versions of the site). Each report will include information on small-, medium-, and heavy-lift rockets as well as a quick look ahead at the next three launches on the calendar.
</p>

<figure class="ars-img-shortcode id-1314289 align-center">
	<div>
		<img alt="smalll.png" class="ipsImage" decoding="async" height="720" width="720" src="https://cdn.arstechnica.net/wp-content/uploads/2018/05/smalll.png">
	</div>
</figure>

<p>
	<strong>Rocket Lab to sell common shares</strong>. The space company said Tuesday that it intends to raise up to $750 million by selling common shares, <a href="https://www.msn.com/en-us/money/top-stocks/rocket-lab-shares-drop-following-750-million-at-the-market-offering-announcement/ar-AA1MF4HK" rel="external nofollow">MSN reports</a>. This new at-the-market program replaces a prior agreement that allowed Rocket Lab to sell up to $500 million of stock. Under that earlier arrangement, the company had sold roughly $396.6 million in shares before ending the program.
</p>

<p>
	 
</p>

<p>
	<em>Seeking to scale up</em> ... The program's structure enables Rocket Lab to sell shares periodically through the appointed agents, who may act as either principals or intermediaries. The larger offering indicates that Rocket Lab is aiming to bolster its cash reserves to support ongoing development of its launch services, including the medium-lift Neutron rocket and spacecraft manufacturing operations. The company's stock dropped by about 10 percent after the announcement.
</p>

<p>
	 
</p>

<p>
	<strong>Astra targets mid-2026 for Rocket 4 debut</strong>. Astra is targeting next summer for the first flight of its Rocket 4 vehicle as the company prepares to reenter the launch market, <a href="https://spacenews.com/astra-plans-mid-2026-first-launch-of-rocket-4/" rel="external nofollow">Space News reports</a>. At the World Space Business Week conference in Paris, Chris Kemp, chief executive of Astra, said the company was on track for a first launch of Rocket 4 in summer 2026 from Cape Canaveral, Florida. He highlighted progress Astra is making, such as tests of a new engine the company developed for the vehicle’s first stage that produces 42,000 pounds of thrust. Two of those engines will power the first stage, while the upper stage will use a single Hadley engine produced by Ursa Major.
</p>

<p>
	 
</p>

<p>
	<em>Pricing a launch competitively</em> ... The vehicle will initially be capable of placing about 750 kilograms into low-Earth orbit for a price of $5 million. "That’ll be very competitive," Kemp said in an interview after the presentation, similar to what SpaceX charges for payloads of that size through its rideshare program. The company is targeting customers seeking alternatives to SpaceX in a constrained launch market. “There’s a lot of interest because of the fear that there’s just not a lot of capacity,” he said, particularly for satellites too large to launch on Rocket Lab’s Electron. (submitted by EllPeaTea)
</p>

<p>
	 
</p>

<p>
	<strong>Avio seeks to raise 400 million euros</strong>. Italian rocket builder Avio’s board of directors has approved a 400 million euro ($471 million) capital increase to fund an expansion of its manufacturing capacity to meet rising demand in the global space and defense markets, <a href="https://europeanspaceflight.com/avio-approves-e400m-capital-increase-to-expand-defence-and-rocket-production/" rel="external nofollow">European Spaceflight reports</a>. The company expects to complete the capital increase by the end of the year; however, it is still subject to a shareholder vote, scheduled for October 23.
</p>

<p>
	 
</p>

<p>
	<em>Small rockets, big plans</em> ... The capital raise is part of a new 10-year business plan targeting an average annual growth rate of about 10 percent in turnover and more than 15 percent in core profit. This growth is projected to be driven by a higher Vega C launch cadence, the introduction of the Vega E rocket, continued participation in the Ariane 6 program by providing solid rocket boosters, and the construction of a new defense production facility in the United States, which is expected to be completed by 2028.
</p>

<p>
	 
</p>

<p>
	<strong>Isar working toward second Spectrum launch</strong>. In a briefing this week, Isar Aerospace executives discussed the outcome of the investigation into the March 30 launch of the Spectrum rocket from the Andøya Spaceport in northern Norway, <a href="https://spacenews.com/isar-aerospace-prepares-for-second-spectrum-launch/" rel="external nofollow">Space News reports</a>. The vehicle activated its flight termination system about half a minute after liftoff, shutting down its engines and plummeting into the waters just offshore of the pad. The primary issue with the rocket was a loss of attitude control.
</p>

<p>
	 
</p>

<p>
	<em>Bend it like Spectrum</em> ... Alexandre Dalloneau, vice president of mission and launch operations at Isar, said that the company had not properly characterized bending modes of the vehicle at liftoff. Despite the failure to get to orbit, Dalloneau considers the first Spectrum launch a successful test flight. The company is working toward a second flight of Spectrum, which will take place "as soon as possible," Dalloneau said. He did not give a specific target launch date, but officials indicated they were hoping to launch near the end of this year or early next year. (submitted by EllPeaTea)
</p>

<p>
	 
</p>

<p>
	<strong>Callisto rocket test delayed again</strong>. A new document from the French space agency CNES has revealed that the inaugural flight of the Callisto reusable rocket demonstrator has slipped from 2026 to 2027, <a href="https://europeanspaceflight.com/cnes-call-reveals-inaugural-callisto-flight-test-pushed-to-2027/" rel="external nofollow">European Spaceflight reports</a>. This reusable launch testbed is a decade old. Conceived in 2015, the Cooperative Action Leading to Launcher Innovation in Stage Toss-back Operations (Callisto) project is a collaboration between CNES and the German and Japanese space agencies aimed at maturing reusable rocket technology for future European and Japanese launch systems.
</p>

<p>
	 
</p>

<p>
	<em>Still waiting</em> ... The Callisto demonstrator will stand 14 meters tall, with a width of 1.1 meters and a takeoff mass of 3,500 kilograms. This latest revision to the program’s timeline comes less than a year after JAXA confirmed in October 2024 that the program’s flight-test campaign had been pushed to 2026. The campaign will be carried out from the Guiana Space Centre in French Guiana and will include an integration phase followed by eight test flights and two demonstration flights, all to be completed over a period of eight months. (submitted by EllPeaTea)
</p>

<figure class="ars-img-shortcode id-1314295 align-center">
	<div>
		<img alt="mediuml.png" class="ipsImage" decoding="async" height="720" width="720" src="https://cdn.arstechnica.net/wp-content/uploads/2018/05/mediuml.png">
	</div>
</figure>

<p>
	<strong>Falcon 9 launches larger Cygnus spacecraft</strong>. The first flight of Northrop's upgraded Cygnus spacecraft, called Cygnus XL, launched Sunday evening from Cape Canaveral Space Force Station, Florida, en route to the International Space Station, <a href="https://arstechnica.com/space/2025/09/northrop-grummans-new-spacecraft-is-a-real-chonker/" rel="external nofollow">Ars reports</a>. Without a rocket of its own, Northrop Grumman inked a contract with SpaceX for three Falcon 9 launches to carry the resupply missions until engineers could develop a new, all-domestic version of the Antares rocket. Sunday's launch was the last of these three Falcon 9 flights. Northrop is partnering with Firefly Aerospace on a new rocket, the Antares 330, using a new US-made booster stage and engines.
</p>

<p>
	 
</p>

<p>
	<em>A few teething issues</em> ... This new rocket won't be ready to fly until late 2026, at the earliest, somewhat later than Northrop officials originally hoped. The company confirmed it has purchased a fourth Falcon 9 launch from SpaceX for the next Cygnus cargo mission in the first half of next year, in a bid to bridge the gap until the debut of the Antares 330 rocket. Due to <a href="https://arstechnica.com/space/2025/09/a-record-supply-load-wont-reach-the-international-space-station-as-scheduled/" rel="external nofollow">problems with the propulsion system</a> on the larger Cygnus vehicle, its arrival at the space station was delayed. But the vehicle successfully reached the station on Thursday, carrying a record 11,000 pounds of cargo.
</p>

<p>
	 
</p>

<p>
	<strong>Launch companies still struggling with cadence</strong>. Launch companies are reiterating plans to sharply increase flight rates to meet growing government and commercial demand, even as some fall short of earlier projections, <a href="https://spacenews.com/launch-companies-double-down-on-increasing-flight-rates-despite-setbacks/" rel="external nofollow">Space News reports</a>. Executives speaking at a September 15 panel at the World Space Business Week conference highlighted efforts to scale up flights of new vehicles that have entered service in the last two years. "The key for us is cadence," said Laura Maginnis, vice president of New Glenn mission management at Blue Origin. However, the publication notes, at this time last year, Blue Origin was projecting eight to 10 New Glenn launches this year. There has been one.
</p>

<p>
	 
</p>

<p>
	<em>It's difficult to go from 1 to 100</em> ... Blue Origin is not alone in falling short of forecasts. United Launch Alliance projected 20 launches in 2025 between the Atlas 5 and Vulcan Centaur, but in August, CEO Tory Bruno said the company now expects nine. As recently as June, Arianespace projected five Ariane 6 launches this year, including the debut of the more powerful Ariane 64, with four solid-rocket boosters, but has completed only two Ariane 62 flights, including one in August.
</p>

<figure class="ars-img-shortcode id-1314297 align-center">
	<div>
		<img alt="heavyl.png" class="ipsImage" decoding="async" height="720" width="720" src="https://cdn.arstechnica.net/wp-content/uploads/2018/05/heavyl.png">
	</div>
</figure>

<p>
	<strong>NASA makes some modifications to SLS for Artemis II</strong>. This week, <a href="https://www.nasa.gov/directorates/esdmd/common-exploration-systems-development-division/space-launch-system/nasa-artemis-ii-moon-rocket-ready-to-fly-crew/" rel="external nofollow">the space agency declared</a> the SLS rocket is now "ready" to fly crew for the Artemis II mission early next year. However, NASA and its contractors did make some modest changes after the first flight of the booster in late 2022. For example, the Artemis II rocket includes an improved navigation system compared to Artemis I. Its communications capability has also been improved by repositioning antennas on the rocket to ensure continuous communications with the ground.
</p>

<p>
	 
</p>

<p>
	<em>Not good, but bad vibrations</em> ... Additionally, SLS will jettison the spent boosters four seconds earlier during the Artemis II ascent than occurred during Artemis I. Dropping the boosters several seconds closer to the end of their burn will give engineers flight data to correlate with projections that shedding the boosters several seconds sooner will yield approximately 1,600 pounds of payload to Earth orbit for future SLS flights. During the Artemis I test flight, the SLS rocket experienced higher-than-expected vibrations near the solid rocket booster attachment points that were caused by unsteady airflow. To steady the airflow, a pair of 6-foot-long strakes flank each booster’s forward connection points on the SLS intertank.
</p>

<p>
	 
</p>

<p>
	<strong>Federal judge sides with SpaceX, FAA</strong>. The initial launch of Starship in April 2023 spread debris across a wide area, sending pulverized concrete as far as six miles away as the vehicle tore up the launch pad. After this, environmental groups and other organizations sued the FAA when the federal organization reviewed the environmental impact of this launch and cleared SpaceX to launch again several months later. A federal judge in Washington, DC, ruled this week that the FAA did not violate environmental laws as part of this review, the <a href="https://www.expressnews.com/business/article/spacex-south-texas-faa-starship-environment-ruling-21050751.php" rel="external nofollow">San Antonio Express-News reports</a>.
</p>

<p>
	 
</p>

<p>
	<em>Decision grounded within reason</em> ... In his opinion issued Monday, Judge Carl Nichols determined the process was not capricious, writing, "Most of the (programmatic environmental assessment's) conclusions were well-reasoned and supported by the record, and while parts of its analysis left something to be desired, even those parts fell 'within a broad zone of reasonableness.'" The environmental organizations said they were considering the next steps for the case and a potential appeal. (submitted by RP)
</p>

<h2>
	Next three launches
</h2>

<p>
	<strong>September 13</strong>: Falcon 9 | Starlink 17-12 | Vandenberg Space Force Base, California | 15:44 UTC
</p>

<p>
	<strong>September 21</strong>: Falcon 9 | Starlink 10-27 | Cape Canaveral Space Force Station, Florida | 09:20 UTC
</p>

<p>
	<strong>September 21</strong>: Falcon 9 | NROL-48 | Vandenberg Space Force Base, California | 17:23 UTC
</p>

<p>
	 
</p>

<p>
	<a href="https://arstechnica.com/space/2025/09/rocket-report-european-rocket-reuse-test-delayed-nasa-tweaks-sls-for-artemis-ii/" rel="external nofollow">Source</a>
</p>

<hr class="ipsHr">
<p>
	<span style="font-size:12px;"><em>Hope you enjoyed this news post. Feedback welcome.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>Posted Saturday 20 September 2025 at 2:59 am AEST (my time).</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>News posts... 2023: 5,800+ | 2024: 5,700+ | 2025 (till end of August): 4,048</em></span>
</p>

<p>
	<strong><span style="font-size:12px;"><a href="https://nsaneforums.com/topic/459202-remember-matrix/" rel="">RIP Matrix</a></span></strong>
</p>
]]></description><guid isPermaLink="false">31429</guid><pubDate>Fri, 19 Sep 2025 17:00:05 +0000</pubDate></item><item><title>Meet the 2025 Ig Nobel Prize winners</title><link>https://nsaneforums.com/news/general-news/meet-the-2025-ig-nobel-prize-winners-r31421/</link><description><![CDATA[<h3>
	The annual award ceremony features miniature operas, scientific demos, and the 24/7 lectures.
</h3>

<p>
	Does alcohol enhance one's foreign language fluency? Do West African lizards have a preferred pizza topping? And can painting cows with zebra stripes help repel biting flies? These and other unusual research questions were honored tonight in a virtual ceremony to announce the 2025 recipients of the annual Ig Nobel Prizes. Yes, it's that time of year again, when the serious and the silly converge—for science.
</p>

<p>
	 
</p>

<p>
	Established in 1991, the Ig Nobels are <a data-uri="b76aa749304ed60430d3dfdf9db8dee9" href="https://arstechnica.com/science/2018/09/the-serious-science-of-the-ig-nobel-prizes-will-make-you-laugh-then-think/" rel="external nofollow">a good-natured parody</a> of the Nobel Prizes; they honor "achievements that first make people laugh and then make them think." The unapologetically campy awards ceremony features miniature operas, scientific demos, and the 24/7 lectures whereby experts must explain their work twice: once in 24 seconds and the second in just seven words.
</p>

<p>
	 
</p>

<p>
	Acceptance speeches are limited to 60 seconds. And as the motto implies, the research being honored might seem ridiculous at first glance, but that doesn't mean it's devoid of scientific merit. In the weeks following the ceremony, the winners will also give free public talks, which will be posted on the Improbable Research website.
</p>

<p>
	 
</p>

<p>
	Without further ado, here are the winners of the 2025 Ig Nobel prizes.
</p>

<h2>
	Biology
</h2>

<figure class="ars-wp-img-shortcode id-2117490 align-none">
	<div>
		<img alt="Example of the area of legs and body used to count biting flies on cows." class="ipsImage" decoding="async" height="720" width="720" src="https://cdn.arstechnica.net/wp-content/uploads/2025/09/Screenshot-2025-09-16-at-6.32.16-PM-1024x765.png">
	</div>

	<figcaption>
		<div class="caption font-impact dusk:text-gray-300 mb-4 mt-2 inline-flex flex-row items-stretch gap-1 text-base leading-tight text-gray-400 dark:text-gray-300">
			<div class="caption-content">
				<em><span class="caption-credit mt-2 text-xs"><em>Credit: Tomoki Kojima et al., 2019 </em></span> </em>
			</div>
		</div>
	</figcaption>
</figure>

<p>
	<em>Citation</em>: Tomoki Kojima, Kazato Oishi, Yasushi Matsubara, Yuki Uchiyama, Yoshihiko Fukushima, Naoto Aoki, Say Sato, Tatsuaki Masuda, Junichi Ueda, Hiroyuki Hirooka, and Katsutoshi Kino, <a href="https://journals.plos.org/plosone/article?id=10.1371/journal.pone.0223447" rel="external nofollow">for their experiments</a> to learn whether cows painted with zebra-like striping can avoid being bitten by flies.
</p>

<p>
	 
</p>

<p>
	Any dairy farmer can tell you that biting flies are a pestilent scourge for cattle herds, which is why one so often sees cows throwing their heads, stamping their feet, flicking their tails, and twitching their skin—desperately trying to shake off the nasty creatures. There's an economic cost as well since it causes the cattle to graze and feed less, bed down for shorter times, and start bunching together, which increases heat stress and risks injury to the animals. That results in less milk yield for dairy cows and less beef yields from feedlot cattle.
</p>

<p>
	 
</p>

<p>
	You know who isn't much bothered by biting flies? The zebra. Scientists have long debated the function of the zebra's distinctive black-and-white striped pattern. Is it for camouflage? Confusing potential predators? Or is it to repel those pesky flies? Tomoki Kojima et al. decided to put the latter hypothesis to the test, painting zebra stripes on six pregnant Japanese black cows at the Aichi Agricultural Research Center in Japan. They used water-borne lacquers that washed away after a few days, so the cows could take turns being in three different groups: zebra stripes, just black stripes, or no stripes (as a control).
</p>

<p>
	 
</p>

<p>
	The results: the zebra stripes significantly decreased both the number of biting flies on the cattle and the animals' fly-repelling behaviors compared to those with black stripes or no stripes. The one exception was for skin twitching—perhaps because it is the least energy intensive of those behaviors. Why does it work? The authors suggest it might have something to do with modulation brightness or polarized light that confuses the insects' motion detection system, used to control their approach when landing on a surface. But that's a topic for further study.
</p>

<h2>
	Chemistry
</h2>

<figure class="ars-wp-img-shortcode id-2117494 align-none">
	<div>
		<img alt="Freshly cooked frozen w:blintzes in a non-stick frying pan coated with Teflon" class="ipsImage" decoding="async" height="720" width="720" src="https://cdn.arstechnica.net/wp-content/uploads/2025/09/ignobel2-1024x696.jpg">
	</div>

	<figcaption>
		<div class="caption font-impact dusk:text-gray-300 mb-4 mt-2 inline-flex flex-row items-stretch gap-1 text-base leading-tight text-gray-400 dark:text-gray-300">
			<div class="caption-content">
				<em><span class="caption-credit mt-2 text-xs"><em>Credit: Andrevan/CC BY-SA 2.5 </em></span> </em>
			</div>
		</div>
	</figcaption>
</figure>

<p>
	<em>Citation</em>: Rotem Naftalovich, Daniel Naftalovich, and Frank Greenway, <a href="https://journals.sagepub.com/doi/10.1177/1932296815626726" rel="external nofollow">for experiments to test</a> whether eating Teflon [a form of plastic more formally called "polytetrafluoroethylene"] is a good way to increase food volume and hence satiety without increasing calorie content.
</p>

<p>
	 
</p>

<p>
	Diet sodas and other zero-calorie drinks are a mainstay of the modern diet, thanks to the development of artificial sweeteners whose molecules can't be metabolized by the human body. The authors of this paper are intrigued by the notion of zero-calorie foods, which they believe could be achieved by increasing the satisfying volume and mass of food without increasing the calories. And they have just the additive for that purpose: <a href="https://en.wikipedia.org/wiki/Polytetrafluoroethylene" rel="external nofollow">polytetrafluoroethylene</a> (PTFE), more commonly known as Teflon.
</p>

<p>
	 
</p>

<p>
	Yes, the stuff they use on nonstick cookware. They insist that Teflon is inert, heat-resistant, impervious to stomach acid, tasteless, cost-effective, and available in handy powder form for easy mixing into food. They recommend a ratio of three parts food to one part Teflon powder.
</p>

<p>
	 
</p>

<p>
	The authors understand that to the average layperson, this is going to sound like a phenomenally bad idea—no thank you, I would prefer <em>not</em> to have powdered Teflon added to my food. So they spend many paragraphs citing all the scientific studies on the safety of Teflon—it didn't hurt rats in feeding trials!—as well as the many applications for which it is already being used. These include Teflon-coated stirring rods used in labs and coatings on medical devices like bladder catheters and gynecological implants, as well as the catheters used for in vitro fertilization. And guys, you'll be happy to know that Teflon doesn't seem to affect sperm motility or viability. I suspect this will still be a hard sell in the consumer marketplace.
</p>

<h2>
	Physics
</h2>

<figure class="ars-wp-img-shortcode id-2091363 align-none">
	<div>
		<img alt="Cacio e pepe is an iconic pasta dish that is also frustratingly difficult to make" class="ipsImage" decoding="async" height="720" width="720" src="https://cdn.arstechnica.net/wp-content/uploads/2025/04/cacio1-1024x684.jpg">
	</div>

	<figcaption>
		<div class="caption font-impact dusk:text-gray-300 mb-4 mt-2 inline-flex flex-row items-stretch gap-1 text-base leading-tight text-gray-400 dark:text-gray-300">
			<div class="caption-content">
				<em><span class="caption-credit mt-2 text-xs"><em>Credit: Simone Frau </em></span> </em>
			</div>
		</div>
	</figcaption>
</figure>

<p>
	<em>Citation</em>: Giacomo Bartolucci, Daniel Maria Busiello, Matteo Ciarchi, Alberto Corticelli, Ivan Di Terlizzi, Fabrizio Olmeda, Davide Revignas, and Vincenzo Maria Schimmenti, <a href="https://pubs.aip.org/aip/pof/article/37/4/044122/3345324/Phase-behavior-of-Cacio-e-Pepe-sauce" rel="external nofollow">for discoveries about</a> the physics of pasta sauce, especially the phase transition that can lead to clumping, which can be a cause of unpleasantness.
</p>

<p>
	 
</p>

<p>
	"Pasta alla cacio e pepe" is a simple dish: just tonnarelli pasta, pecorino cheese, and pepper. But its simplicity is deceptive. The dish is notoriously challenging to make because it's so easy for the sauce to form unappetizing clumps with a texture more akin to stringy mozzarella rather than being smooth and creamy. As <a href="https://arstechnica.com/science/2025/04/physics-of-the-perfect-cacio-e-pepe-sauce/" rel="external nofollow">we reported</a> in April, Italian physicists came to the rescue with a foolproof recipe based on their many scientific experiments, according to a new paper published in the journal Physics of Fluids. The trick: using corn starch for the cheese and pepper sauce instead of relying on however much starch leaches into the boiling water as the pasta is cooked.
</p>

<p>
	 
</p>

<p>
	Traditionally, the chef will extract part of the water and starch solution—which is cooled to a suitable temperature to avoid clumping as the cheese proteins "denaturate"—and mix it with the cheese to make the sauce, adding the pepper last, right before serving. But the authors note that temperature is not the only factor that can lead to this dreaded “mozzarella phase." If one tries to mix cheese and water without any starch, the clumping is more pronounced. There is less clumping with water containing a little starch, like water in which pasta has been cooked. And when one mixes the cheese with pasta water "risottata"—i.e., collected and heated in a pan so enough water evaporates that there is a higher concentration of starch—there is almost no clumping.
</p>

<p>
	 
</p>

<p>
	The authors found that the correct starch ratio is between 2 to 3 percent of the cheese weight. Below that, you get the clumping phase separation; above that, and the sauce becomes stiff and unappetizing as it cools. Pasta water alone contains too little starch. Using pasta water "risottata" may concentrate the starch, but the chef has less control over the precise amount of starch. So the authors recommend simply dissolving 4 grams of powdered potato or corn starch in 40 grams of water, heating it gently until it thickens and combining that gel with the cheese. They also recommend toasting the black pepper briefly before adding it to the mixture to enhance its flavors and aromas.
</p>

<h2>
	Engineering Design
</h2>

<figure class="ars-wp-img-shortcode id-2117496 align-none">
	<div>
		<img alt="Experimental set-up (a) cardboard enclosure (b) UV-C tube light (c) SMPS" class="ipsImage" decoding="async" height="720" width="720" src="https://cdn.arstechnica.net/wp-content/uploads/2025/09/ignobel3-1024x531.jpg">
	</div>

	<figcaption>
		<div class="caption font-impact dusk:text-gray-300 mb-4 mt-2 inline-flex flex-row items-stretch gap-1 text-base leading-tight text-gray-400 dark:text-gray-300">
			<div class="caption-content">
				<em><span class="caption-credit mt-2 text-xs"><em>Credit: Vikash Kumar and Sarthak Mittal </em></span> </em>
			</div>
		</div>
	</figcaption>
</figure>

<p>
	<em>Citation</em>: Vikash Kumar and Sarthak Mittal, <a href="https://link.springer.com/chapter/10.1007/978-981-16-2229-8_33" rel="external nofollow">for analyzing</a>, from an engineering design perspective, "how foul-smelling shoes affects the good experience of using a shoe-rack."
</p>

<p>
	 
</p>

<p>
	Shoe odor is a universal problem, even in India, according to the authors of this paper, who hail from Shiv Nadar University (SNU) in Uttar Pradesh. All that heat and humidity means people perspire profusely when engaging even in moderate physical activity. Add in a lack of proper ventilation and washing, and shoes become a breeding ground for odor-causing bacteria called <em>Kytococcus sedentarius</em>. Most Indians make use of shoe racks to store their footwear, and the odors can become quite intense in that closed environment.
</p>

<p>
	 
</p>

<p>
	Yet nobody has really studied the "smelly shoe" problem when it comes to shoe racks. Enter Kumar and Mittal, who conducted a pilot study with the help of 149 first-year SNU students. More than half reported feeling uncomfortable about their own or someone else's smelly shoes, and 90 percent kept their shoes in a shoe rack. Common methods to combat the odor included washing the shoes and drying them in the sun; using spray deodorant; or sprinkling the shoes with an antibacterial powder. They were unaware of many current odor-combatting products on the market, such as tea tree and coconut oil solutions, thyme oil, or isopropyl alcohol.
</p>

<p>
	 
</p>

<p>
	Clearly, there is an opportunity to make a killing in the odor-resistant shoe rack market. So naturally Kumar and Mittal decided to design their own version. They opted to use bacteria-killing UV rays (via a UV-C tube light) as their built-in "odor eater," testing their device on the shoes of several SNU athletes, "which had a very strong noticeable odor." They concluded that an exposure time of two to three minutes was sufficient to kill the bacteria and get rid of the odor.
</p>

<h2>
	Aviation
</h2>

<figure class="ars-wp-img-shortcode id-2117497 align-none">
	<div>
		<img alt="Wing membranes (patagia) of Townsend's big-eared bat, Corynorhinus townsendii" class="ipsImage" decoding="async" height="720" width="720" src="https://cdn.arstechnica.net/wp-content/uploads/2025/09/ignobel4-1024x623.jpg">
	</div>

	<figcaption>
		<div class="caption font-impact dusk:text-gray-300 mb-4 mt-2 inline-flex flex-row items-stretch gap-1 text-base leading-tight text-gray-400 dark:text-gray-300">
			<div class="caption-content">
				<em><span class="caption-credit mt-2 text-xs"><em>Credit: Public domain </em></span> </em>
			</div>
		</div>
	</figcaption>
</figure>

<p>
	<em>Citation</em>: Francisco Sánchez, Mariana Melcón, Carmi Korine, and Berry Pinshow, <a href="https://www.sciencedirect.com/science/article/abs/pii/S0376635710000446?via%3Dihub" rel="external nofollow">for studying</a> whether ingesting alcohol can impair bats' ability to fly and also their ability to echolocate.
</p>

<p>
	 
</p>

<p>
	Nature is rife with naturally occurring ethanol, particularly from ripening fruit, and that fruit in turn is consumed by various microorganisms and animal species. There are occasional rare instances of some mammals, birds, and even insects consuming fruit rich in ethanol and becoming intoxicated, making those creatures more vulnerable to potential predators or more accident-prone due to lessened motor coordination. Sánchez et al. decided to look specifically at the effects of ethanol on Egyptian fruit bats, which have been shown to avoid high-ethanol fruit. The authors wondered if this might be because the bats wanted to avoid becoming inebriated.
</p>

<p>
	 
</p>

<p>
	They conducted their experiments on adult male fruit bats kept in an outdoor cage that served as a long flight corridor. The bats were given liquid food with varying amounts of ethanol and then released in the corridor, with the authors timing how long it took each bat to fly from one end to the other. A second experiment followed the same basic protocol, but this time the authors recorded the bats' echolocation calls with an ultrasonic microphone. The results: The bats that received liquid food with the highest ethanol content took longer to fly the length of the corridor, evidence of impaired flight ability. The quality of those bats' echolocation was also adversely affected, putting them at a higher risk of colliding with obstacles mid-flight.
</p>

<h2>
	Psychology
</h2>

<figure class="ars-wp-img-shortcode id-2117506 align-none">
	<div>
		<img alt="Narcissus (1597–99) by Caravaggio; the man in love with his own reflection" class="ipsImage" decoding="async" height="720" width="720" src="https://cdn.arstechnica.net/wp-content/uploads/2025/09/ignobel7-1024x1149.jpg">
	</div>

	<figcaption>
		<div class="caption font-impact dusk:text-gray-300 mb-4 mt-2 inline-flex flex-row items-stretch gap-1 text-base leading-tight text-gray-400 dark:text-gray-300">
			<div class="caption-content">
				<em><span class="caption-credit mt-2 text-xs"><em>Credit: Public domain </em></span> </em>
			</div>
		</div>
	</figcaption>
</figure>

<p>
	<em>Citation</em>: Marcin Zajenkowski and Gilles Gignac, for <a href="https://www.sciencedirect.com/science/article/pii/S0160289621000799?via%3Dihub" rel="external nofollow">investigating what happens</a> when you tell narcissists—or anyone else—that they are intelligent.
</p>

<p>
	 
</p>

<p>
	Not all narcissists are created equal. There are vulnerable narcissists who tend to be socially withdrawn, have low self-esteem, and are prone to negative emotions. And then there are grandiose narcissists, who exhibit social boldness, high self-esteem, and are more likely to overestimate their own intelligence. The prevailing view is that this overconfidence stems from narcissism. The authors wanted to explore whether this effect might also work in reverse, i.e., that believing one has superior intelligence due to positive external feedback can lead to at least a temporary state of narcissism.
</p>

<p>
	 
</p>

<p>
	Zajenkowski et al. recruited 361 participants from Poland who were asked to rate their level of intelligence compared to other people; complete the Polish version of the Narcissistic Personality Inventory; and take an IQ test to compare their perceptions of their own intelligence with an objective measurement. The participants were then randomly assigned to one of two groups. One group received positive feedback—telling them they did indeed have a higher IQ than most people—while the other received negative feedback.
</p>

<p>
	 
</p>

<p>
	The results confirmed most of the researchers' hypotheses. In general, participants gave lower estimates of their relative intelligence after completing the IQ test, which provided an objective check of sorts. But the type of feedback they received had a measurable impact. Positive feedback enhanced their feelings of uniqueness (a key aspect of grandiose narcissism). Those who received negative feedback rated their own intelligence as being lower, and that negative feedback had a larger effect than positive feedback. The authors concluded that external feedback helped shape the subjects' perception of their own intelligence, regardless of the accuracy of that feedback.
</p>

<h2>
	Nutrition
</h2>

<figure class="ars-wp-img-shortcode id-2117498 align-none">
	<div>
		<img alt="Rainbow lizards eating ‘four cheese’ pizza at a seaside touristic resort in Togo." class="ipsImage" decoding="async" height="720" width="720" src="https://cdn.arstechnica.net/wp-content/uploads/2025/09/ignobel5-1024x674.jpg">
	</div>

	<figcaption>
		<div class="caption font-impact dusk:text-gray-300 mb-4 mt-2 inline-flex flex-row items-stretch gap-1 text-base leading-tight text-gray-400 dark:text-gray-300">
			<div class="caption-icon bg-[left_top_7px] w-[10px] shrink-0">
				 
			</div>

			<div class="caption-content">
				<em><span class="caption-credit mt-2 text-xs"><em>Credit: Daniele Dendi et al, 2022 </em></span> </em>
			</div>
		</div>
	</figcaption>
</figure>

<p>
	<em>Citation</em>: Daniele Dendi, Gabriel H. Segniagbeto, Roger Meek, and Luca Luiselli, for <a href="https://onlinelibrary.wiley.com/doi/10.1111/aje.13100" rel="external nofollow">studying the extent</a> to which a certain kind of lizard chooses to eat certain kinds of pizza.
</p>

<p>
	 
</p>

<p>
	Move over, <a href="https://en.wikipedia.org/wiki/Pizza_Rat" rel="external nofollow">Pizza Rat</a>, here come the Pizza Lizards—rainbow lizards, to be precise. This is a species common to urban and suburban West Africa. The lizards primarily live off insects and arthropods, but their proximity to humans has led to some developing a more omnivorous approach to their foraging. Bread is a particular favorite. Case in point: One fine sunny day at a Togo seaside resort, the authors noticed a rainbow lizard stealing a tourist's slice of four-cheese pizza and happily chowing down.
</p>

<p>
	 
</p>

<p>
	Naturally, they wanted to know if this was an isolated incident or whether the local rainbow lizards routinely feasted on pizza slices. And did the lizards have a preferred topping? Inquiring minds need to know. So they monitored the behavior of nine particular lizards, giving them the choice between a plate of four-cheese pizza and a plate of "four seasons" pizza, spaced about 10 meters apart.
</p>

<p>
	 
</p>

<p>
	It only took 15 minutes for the lizards to find the pizza and eat it, sometimes fighting over the remaining slices. But they only ate the four-cheese pizza. For the authors, this suggests there might be some form of chemical cues that attract them to the cheesy pizzas, or perhaps it's easier for them to digest. I'd love to see how the lizards react to the widely derided Canadian bacon and pineapple pizza.
</p>

<h2>
	Pediatrics
</h2>

<figure class="ars-wp-img-shortcode id-2117502 align-none">
	<div>
		<img alt="Pumped breast milk in bottles" class="ipsImage" decoding="async" height="720" width="720" src="https://cdn.arstechnica.net/wp-content/uploads/2025/09/ignobel6-1024x702.jpg">
	</div>

	<figcaption>
		<div class="caption font-impact dusk:text-gray-300 mb-4 mt-2 inline-flex flex-row items-stretch gap-1 text-base leading-tight text-gray-400 dark:text-gray-300">
			<div class="caption-content">
				<em><span class="caption-credit mt-2 text-xs"><em>Credit: <a class="caption-credit-link text-gray-400 no-underline hover:text-gray-500" href="https://creativecommons.org/licenses/by-sa/3.0/" target="_blank" rel="external nofollow"> ParentingPatch/CC BY-SA 3.0 </a> </em></span> </em>
			</div>
		</div>
	</figcaption>
</figure>

<p>
	<em>Citation</em>: Julie Mennella and Gary Beauchamp, <a href="https://pubmed.ncbi.nlm.nih.gov/1896276/" rel="external nofollow">for studying</a> what a nursing baby experiences when the baby's mother eats garlic.
</p>

<p>
	 
</p>

<p>
	Mennella and Beauchamp designed their experiment to investigate two questions: whether the consumption of garlic altered the odor of a mother's breast milk, and if so, whether those changes affected the behavior of nursing infants. (Garlic was chosen because it is known to produce off flavors in dairy cow milk and affect human body odor.) They recruited eight women who were exclusively breastfeeding their infants, taking samples of their breast milk over a period when the participants abstained from eating sulfurous foods (garlic, onion, asparagus), and more samples after the mothers consumed either a garlic capsule or a placebo.
</p>

<p>
	 
</p>

<p>
	The results: Mothers who ingested the garlic capsules produced milk with a perceptibly more intense odor, as evaluated by several adult panelists brought in to sniff the breast milk samples. The strong odor peaked at two hours after ingestion and decreased fats, which is consistent with prior research on cows that ingested highly odorous feeds. As for the infants, those whose mothers ingested garlic attached to the breast for longer periods and sucked more when the milk smelled like garlic. This could be relevant to ongoing efforts to determine whether sensory experiences during breastfeeding can influence how readily infants accept new foods upon weaning, and perhaps even their later food preferences.
</p>

<h2>
	Literature
</h2>

<figure class="ars-wp-img-shortcode id-2117492 align-none">
	<div>
		<img alt="closeup of a hand with clubbed fingernails" class="ipsImage" decoding="async" height="720" width="720" src="https://cdn.arstechnica.net/wp-content/uploads/2025/09/ignobel1-1024x691.jpg">
	</div>

	<figcaption>
		<div class="caption font-impact dusk:text-gray-300 mb-4 mt-2 inline-flex flex-row items-stretch gap-1 text-base leading-tight text-gray-400 dark:text-gray-300">
			<div class="caption-content">
				<em><span class="caption-credit mt-2 text-xs"><em>Credit: William B. Bean </em></span> </em>
			</div>
		</div>
	</figcaption>
</figure>

<p>
	<em>Citation</em>: The late Dr. William B. Bean, for <a href="https://www.sciencedirect.com/science/article/pii/S0022202X15483861" rel="external nofollow">persistently recording</a> and analyzing the rate of growth of one of his fingernails over a period of 35 years.
</p>

<p>
	 
</p>

<p>
	If you're surprised to see a study on fingernail growth rates under the Literature category, it will all make sense once you read the flowery prose stylings of Dr. Bean. He really did keep detailed records of how fast his fingernails grew for 35 years, claiming in his final report that "the nail provides a slowly moving keratin kymograph that measures age on the inexorable abscissa of time." He sprinkles his observations with ponderous references to medieval astrology, James Boswell, and <em>Moby Dick</em>, with a dash of curmudgeonly asides bemoaning the sterile modern medical teaching methods that permeate "the teeming mass of hope and pain, technical virtuosity, and depersonalization called a 'health center.'"
</p>

<p>
	 
</p>

<p>
	So what did our pedantic doctor discover in those 35 years, not just studying his own nails, but <a href="https://pmc.ncbi.nlm.nih.gov/articles/PMC2249062/" rel="external nofollow">meticulously reviewing</a> all the available scientific literature? Well, for starters, the rate of fingernail growth diminishes as one ages; Bean noted that his growth rates remained steady early on, but "slowed down a trifle" over the last five years of his project. Nails grow faster in children than adults. A warm environment can also accelerate growth, as does biting one's fingernails—perhaps, he suggests, because the biting stimulates blood flow to the area. And he debunks the folklore of hair and nails growing even after death: it's just the retraction and contraction of the skin post-mortem that makes it seem like the nails are growing.
</p>

<h2>
	Peace
</h2>

<figure class="ars-wp-img-shortcode id-2063955 align-none">
	<div>
		<img alt="GettyImages-1458194548-1024x682.jpg" class="ipsImage" decoding="async" height="720" width="720" src="https://cdn.arstechnica.net/wp-content/uploads/2024/11/GettyImages-1458194548-1024x682.jpg">
	</div>

	<figcaption>
		<div class="caption font-impact dusk:text-gray-300 mb-4 mt-2 inline-flex flex-row items-stretch gap-1 text-base leading-tight text-gray-400 dark:text-gray-300">
			<div class="caption-content">
				<em><span class="caption-credit mt-2 text-xs"><em>Credit: <a class="caption-credit-link text-gray-400 no-underline hover:text-gray-500" href="https://www.gettyimages.com/detail/photo/margarita-cocktail-with-ice-lime-and-salt-rimm-royalty-free-image/1458194548?phrase=margarita%20with%20limes%20&amp;adppopup=true" target="_blank" rel="external nofollow"> Getty | chas53 </a> </em></span> </em>
			</div>
		</div>
	</figcaption>
</figure>

<p>
	<em>Citation</em>: Fritz Renner, Inge Kersbergen, Matt Field, and Jessica Werthmann, <a href="https://journals.sagepub.com/doi/10.1177/0269881117735687" rel="external nofollow">for showing</a> that drinking alcohol sometimes improves a person's ability to speak in a foreign language.
</p>

<p>
	 
</p>

<p>
	Alcohol is well-known to have detrimental effects on what's known in psychological circles as "executive functioning," impacting things like working memory and inhibitory control. But there's <a href="https://www.brainscape.com/academy/we-speak-foreign-languages-better-when-drunk/" rel="external nofollow">a widespread belief</a> among bilingual people that a little bit of alcohol actually improves one's fluency in a foreign language, which also relies on executive functioning. So wouldn't being intoxicated actually have an adverse effect on foreign language fluency? Renner et al. decided to investigate further.
</p>

<p>
	 
</p>

<p>
	They recruited 50 native German-speaking undergrad psychology students at Maastricht University in the Netherlands who were also fluent in Dutch. They were randomly divided into two groups. One group received an alcoholic drink (vodka with bitter lemon), and the other received water. Each participant consumed enough to be slightly intoxicated after 15 minutes, and then engaged in a discussion in Dutch with a native Dutch speaker. Afterward, they were asked to rate their self-perception of their skill at Dutch, with the Dutch speakers offering independent observer ratings.
</p>

<p>
	 
</p>

<p>
	The researchers were surprised to find that intoxication improved the participants' Dutch fluency, based on the independent observer reports. (Self-evaluations were largely unaffected by intoxication levels.) One can't simply attribute this to so-called "Dutch courage," i.e., increased confidence associated with intoxication. Rather, the authors suggest that intoxication lowers language anxiety, thereby increasing one's foreign language proficiency, although further research would be needed to support that hypothesis.
</p>

<p>
	 
</p>

<p>
	<a href="https://arstechnica.com/science/2025/09/meet-the-2025-ig-nobel-prize-winners/" rel="external nofollow">Source</a>
</p>

<hr class="ipsHr">
<p>
	<span style="font-size:12px;"><em>Hope you enjoyed this news post. Feedback welcome.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>Posted Friday 19 September 2025 at 12:08 pm AEST (my time).</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>News posts... 2023: 5,800+ | 2024: 5,700+ | 2025 (till end of August): 4,048</em></span>
</p>

<p>
	<strong><span style="font-size:12px;"><a href="https://nsaneforums.com/topic/459202-remember-matrix/" rel="">RIP Matrix</a></span></strong>
</p>
]]></description><guid isPermaLink="false">31421</guid><pubDate>Fri, 19 Sep 2025 02:10:25 +0000</pubDate></item><item><title>Your days are indeed getting shorter and scientists now know why</title><link>https://nsaneforums.com/news/general-news/your-days-are-indeed-getting-shorter-and-scientists-now-know-why-r31420/</link><description><![CDATA[<p>
	On Tuesday, August 5, 2025, Earth will complete its rotation 1.33 milliseconds earlier than the standard 24-hour day, making it one of the shortest days of the year at 86,399.99867 seconds. The change is too small to be noticed without highly precise instruments, but it is measurable with modern technology.
</p>

<p>
	 
</p>

<p>
	A sidereal day — Earth’s true rotation period relative to distant stars — lasts 23 hours, 56 minutes, 4 seconds and 90.5 milliseconds. The solar day, which is the basis for civil time, is about four minutes longer because Earth must rotate slightly more than 360 degrees for the Sun to appear in the same position in the sky.
</p>

<p>
	 
</p>

<p>
	On August 5, both the sidereal and solar days will be slightly shorter than average. Scientists attribute this to a combination of factors, including atmospheric winds, ocean currents, movements within Earth’s molten interior, and the gravitational pull of the Moon.
</p>

<p>
	 
</p>

<p>
	Since the 1970s, deviations in Earth’s rotation have been measured using atomic clocks and astronomical observations. In 1973, for example, the cumulative lag over the year was +1,106 milliseconds, prompting the introduction of leap seconds to keep atomic time aligned with Earth’s rotation.
</p>

<p>
	 
</p>

<p>
	Even small deviations matter for systems like GPS. A 1.33 millisecond difference can cause a positional error of about 62 centimetres at the equator. Without corrections, the drift in 1973 would have led to GPS errors of around half a kilometre.
</p>

<p>
	 
</p>

<p>
	To measure Earth’s rotation with such precision, scientists use quasars — extremely bright, distant objects powered by supermassive black holes. Because they are billions of light years away, quasars appear essentially stationary, making them ideal reference points. Radio telescopes track Earth’s position relative to these cosmic beacons, achieving sub-millisecond accuracy.
</p>

<p>
	 
</p>

<p>
	These measurements feed into computer models that account for atmospheric, oceanic, and celestial influences to predict day length. Winds are the largest short-term factor, as they interact with Earth’s surface and can slow its spin. In the northern hemisphere, winds are fastest in winter and slowest in summer, making June to August the period with the shortest days.
</p>

<p>
	 
</p>

<p>
	Long-term changes also affect rotation. Melting polar ice redistributes mass toward the equator, slowing Earth’s spin in the same way a spinning skater slows when extending their arms. Earthquakes and other geological events can also shift mass and alter rotation.
</p>

<p>
	 
</p>

<p>
	The Moon’s tidal pull has been gradually slowing Earth for billions of years. As tidal bulges are carried ahead of the Moon’s orbit, the Moon’s gravity drags them back, transferring rotational energy from Earth to the Moon and causing it to drift away at 3.8 centimetres per year.
</p>

<p>
	 
</p>

<p>
	From 1973 to 2020, Earth’s rotation slowed each year, requiring 27 leap seconds in total. Since 2020, however, Earth has been spinning slightly faster, likely due to interactions between its core and mantle.
</p>

<p>
	 
</p>

<p>
	August 5 was identified in advance as one of the year’s fastest days, along with July 5 and July 22, due to a combination of internal dynamics, seasonal wind patterns, and the Moon’s position reducing tidal drag.
</p>

<p>
	 
</p>

<p>
	While the change will not be perceptible to human senses, “to precision atomic clocks, quasar‐referenced astronomical measurements, it will be obvious.”
</p>

<p>
	 
</p>

<p>
	Source: <a automate_uuid="a55d74ea-e2b0-4349-b9b4-489be11b7457" href="https://theconversation.com/why-on-earth-is-the-planets-day-getting-shorter-260946" rel="external nofollow">The Conversation</a>
</p>

<p>
	 
</p>

<p style="font-size:small">
	<em>This article was generated with some help from AI and reviewed by an editor. Under <a automate_uuid="9a449310-12b3-425b-ace4-b73ef00cd6f6" href="https://www.copyright.gov/fair-use/" rel="external nofollow">Section 107 of the Copyright Act 1976</a>, this material is used for the purpose of news reporting. Fair use is a use permitted by copyright statute that might otherwise be infringing.</em>
</p>

<p>
	 
</p>

<p>
	<a href="https://www.neowin.net/news/your-days-are-indeed-getting-shorter-and-scientists-now-know-why/" rel="external nofollow">Source</a>
</p>

<hr class="ipsHr">
<p>
	<span style="font-size:12px;"><em>Hope you enjoyed this news post. Feedback welcome.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>Posted Friday 19 September 2025 at 12:07 pm AEST (my time).</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>News posts... 2023: 5,800+ | 2024: 5,700+ | 2025 (till end of August): 4,048</em></span>
</p>

<p>
	<strong><span style="font-size:12px;"><a href="https://nsaneforums.com/topic/459202-remember-matrix/" rel="">RIP Matrix</a></span></strong>
</p>
]]></description><guid isPermaLink="false">31420</guid><pubDate>Fri, 19 Sep 2025 02:07:45 +0000</pubDate></item><item><title>A Collision With Another Planet Could Have Allowed for Life on Earth</title><link>https://nsaneforums.com/news/general-news/a-collision-with-another-planet-could-have-allowed-for-life-on-earth-r31408/</link><description><![CDATA[<h3>
	Analysis by researchers at the University of Bern suggests that water and other volatile compounds arrived on Earth from outer space—specifically via a collision with a Mars-sized planet billions of years ago.
</h3>

<p>
	<span class="lead-in-text-callout">the Earth you</span> walk on today might not be the same planet that was born 4.5 billion years ago. Many scientists believe that in its infancy, Earth collided with another world the size of <a class="text link" href="https://www.wired.com/tag/mars/" rel="external nofollow">Mars</a>, and that instead of being destroyed, it was transformed, incorporating the mass of that foreign body to become the planet we know. Recent research adds another layer of relevance to that hypothesized cosmic event: Scientists believe that without that other body, the basic conditions for life to emerge on Earth might never have appeared.
</p>

<p>
	 
</p>

<p>
	A team from the University of Bern in Switzerland argues that, due to its proximity to the sun, the proto-Earth that existed before this potential collision lost the volatile elements essential to form complex molecules. Any hydrogen, carbon, or sulfur, their analysis suggests, evaporated in just the first 3 million years after proto-Earth’s formation. And so if Earth had evolved without external inputs, they say, it would probably be a drier world, more hostile to the development of complex life.
</p>

<p>
	 
</p>

<p>
	On the other hand, if a body formed in the outskirts of the solar system—a region that produces rocks with abundant water and other volatile elements—and this then hit a rocky planet like proto-Earth, then this could have provided the strange chemical richness that characterizes our planet today, even after Earth’s initial aggressive evaporation process. This hypothesis coincides with other proposals that point to an extraterrestrial origin of water, according to which icy meteorites bombarded the primitive Earth and deposited their molecules.
</p>

<p>
	 
</p>

<p>
	In a study published in <a class="text link" href="https://www.science.org/doi/epdf/10.1126/sciadv.adw1280" rel="external nofollow">Science Advances</a>, researchers precisely measured the radioactive decay of two isotopes, manganese-53 to chromium-53, in both terrestrial samples and meteorite fragments found on Earth. Since these space rocks formed at the same time as the sun and the solar system’s planets, analyzing traces of them and their composition is equivalent to opening a time capsule from the past. By calculating the radioactive decay of manganese-53, the researchers revealed the point in time when the planets stopped exchanging material with their environment and fixed the chemical elements they would keep forever.
</p>

<p>
	 
</p>

<p>
	Their results show that proto-Earth sealed its elements just 3 million years after the birth of the solar system. Moreover, they found that the early planet’s ratio of manganese to chromium was very low, suggesting that proto-Earth was an extremely hot world, capable of expelling manganese. Since this element is less volatile than other more important elements, such as hydrogen, carbon, or sulfur, these too must have escaped.
</p>

<p>
	 
</p>

<p>
	“Thanks to our results, we know that the proto-Earth was initially a dry rocky planet. It can therefore be assumed that it was only the collision with Theia that brought volatile elements to Earth and ultimately made life possible there,” Pascal Kruttasch, first author of the report, said in a University of Bern <a class="external-link text link" data-event-boundary="click" data-event-click='{"pattern":"ExternalLink"}' data-in-view='{"pattern":"ExternalLink"}' data-include-experiments="true" data-offer-url="https://mediarelations.unibe.ch/media_releases/2025/media_releases_2025/no_collision_no_life_earth_probably_needed_supplies_from_space/index_eng.html" href="https://mediarelations.unibe.ch/media_releases/2025/media_releases_2025/no_collision_no_life_earth_probably_needed_supplies_from_space/index_eng.html" rel="external nofollow" target="_blank">press release</a>.
</p>

<p>
	 
</p>

<p>
	Theia is the name of the hypothetical body thought to have hit proto-Earth about 4.5 billion years ago. The researchers believe the impact would have occurred between 30 and 100 million years after the beginning of the solar system—that is, several tens of millions of years after the ancestor of our planet was known to be a very dry world.
</p>

<p>
	 
</p>

<p>
	However, the arrival of water and other volatile elements does not equate to the immediate emergence of life. Water alone does not produce life, but it does create a much more favorable chemical and physical environment for other molecules to appear and, with them, the biological processes that underlie cells. In this sense, Theia set the stage but did not ignite the spark.
</p>

<p>
	 
</p>

<p>
	<em>This story originally appeared on</em> <a class="text link" href="https://es.wired.com/articulos/la-vida-en-la-tierra-no-seria-posible-sin-el-choque-cosmico-del-protoplaneta-theia-estudio" rel="external nofollow">WIRED <em>en Español</em></a> <em>and has been translated from Spanish.</em>
</p>

<p>
	 
</p>

<p>
	<a href="https://www.wired.com/story/a-collision-with-another-planet-could-have-allowed-for-life-on-earth/" rel="external nofollow">Source</a>
</p>

<hr class="ipsHr">
<p>
	<span style="font-size:12px;"><em>Hope you enjoyed this news post. Feedback welcome.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>Posted Friday 19 September 2025 at 4:32 am AEST (my time).</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>News posts... 2023: 5,800+ | 2024: 5,700+ | 2025 (till end of August): 4,048</em></span>
</p>

<p>
	<strong><span style="font-size:12px;"><a href="https://nsaneforums.com/topic/459202-remember-matrix/" rel="">RIP Matrix</a></span></strong>
</p>
]]></description><guid isPermaLink="false">31408</guid><pubDate>Thu, 18 Sep 2025 18:32:49 +0000</pubDate></item><item><title>Some dogs can classify their toys by function</title><link>https://nsaneforums.com/news/general-news/some-dogs-can-classify-their-toys-by-function-r31407/</link><description><![CDATA[<h3>
	Come for the science. Stay for the adorable pics of happy pupsters with their favorite toys.
</h3>

<p>
	Certain dogs can not only memorize the names of objects like their favorite toys, but they can also extend those labels to entirely new objects with a similar function, regardless of whether or not they are similar in appearance, according to a <a href="https://www.cell.com/current-biology/fulltext/S0960-9822(25)01079-6" rel="external nofollow">new paper</a> published in the journal Current Biology. It's a cognitively advanced ability known as "label extension," and for animals to acquire it usually involves years of intensive training in captivity. But the dogs in this new study developed the ability to classify their toys by function with no formal training, merely by playing naturally with their owners.
</p>

<p>
	 
</p>

<p>
	Co-author Claudia Fugazza of Eötvös Loránd University in Budapest, Hungary, likens <a href="https://www.eurekalert.org/news-releases/1097925?" rel="external nofollow">this ability</a> to a person calling a hammer and a rock by the same name, or a child understanding that "cup" can describe a mug, a glass, or a tumbler, because they serve the same function. “The rock and the hammer look physically different, but they can be used for the same function," she said. "So now it turns out that these dogs can do the same.”
</p>

<p>
	 
</p>

<p>
	Fugazza and her Hungarian colleagues have been studying canine behavior and cognition for several years. For instance, in 2023, <a href="https://arstechnica.com/science/2023/12/study-smarter-dogs-think-more-like-humans-to-overcome-their-biases/" rel="external nofollow">we reported</a> on the group's experiments on how dogs interpret gestures, such as pointing at a specific object. A dog will interpret the gesture as a directional cue, unlike a human toddler, who will more likely focus on the object itself. It's called spatial bias, and <a href="https://onlinelibrary.wiley.com/doi/10.1111/eth.13423" rel="external nofollow">the team concluded</a> that the phenomenon arises from a combination of how dogs see (visual acuity) and how they think, with "smarter" dog breeds prioritizing an object's appearance as much as its location. This suggests the smarter dogs' information processing is more similar to that of humans.
</p>

<p>
	 
</p>

<p>
	Another aspect of the study involved measuring the length of a dog's head, which prior research has shown is correlated with visual acuity. The shorter a dog's head, the more similar their visual acuity is to human vision. That's because there is a higher concentration of retinal ganglion cells in the center of their field of vision, making vision sharper and giving such dogs binocular depth vision. The testing showed that dogs with better visual acuity, and who also scored higher on the series of cognitive tests, also exhibited less spatial bias. This suggests that canine spatial bias is not simply a sensory matter but is also influenced by how they think. "Smarter" dogs have less spatial bias.
</p>

<p>
	 
</p>

<div class="ars-lightbox align-fullwidth my-5">
	<div class="ars-gallery-1-up my-5">
		<div class="ars-lightbox-item relative block h-full w-full overflow-hidden rounded-sm">
			<img alt="Arya with a much-loved toy" aria-labelledby="caption-2116446" class="ipsImage" decoding="async" height="720" width="720" src="https://cdn.arstechnica.net/wp-content/uploads/2025/09/doggo1-1024x768.jpg">
			<div class="pswp-caption-content" id="caption-2116446">
				<em>Arya with a much-loved toy. </em>

				<div class="ars-gallery-caption-credit">
					<em><em><a href="https://creativecommons.org/licenses/by-sa/4.0/deed.en" target="_blank" rel="external nofollow">Claudia Fugazza/CC BY-SA</a> </em></em>
				</div>
				<em> </em>
			</div>
		</div>
	</div>

	<div class="flex flex-col flex-nowrap gap-5 py-5 md:flex-row">
		<div style="flex-basis: calc(53.106682297773% - 10px);">
			<div class="ars-lightbox-item relative block h-full w-full overflow-hidden rounded-sm">
				<img alt="Gaia's toy makes a fetching hat" aria-labelledby="caption-2116447" class="ipsImage" decoding="async" height="720" width="720" src="https://cdn.arstechnica.net/wp-content/uploads/2025/09/doggo4-1024x1024.jpg">
				<div class="pswp-caption-content" id="caption-2116447">
					<em>Gaia's toy makes a fetching hat. </em>

					<div class="ars-gallery-caption-credit">
						<em><em><a href="https://creativecommons.org/licenses/by-sa/4.0/deed.en" target="_blank" rel="external nofollow">Claudia Fugazza/CC BY-SA</a> </em></em>
					</div>
					<em> </em>
				</div>
			</div>

			<div class="md:hidden">
				 
			</div>
		</div>

		<div class="flex-1">
			<div class="ars-lightbox-item relative block h-full w-full overflow-hidden rounded-sm">
				<img alt="Harvey would like to play" aria-labelledby="caption-2116448" class="ipsImage" decoding="async" height="720" width="720" src="https://cdn.arstechnica.net/wp-content/uploads/2025/09/doggo5-1024x1160.jpg">
				<div class="pswp-caption-content" id="caption-2116448">
					<em>Harvey would like to play. </em>

					<div class="ars-gallery-caption-credit">
						<em><em><a href="https://creativecommons.org/licenses/by-sa/4.0/deed.en" target="_blank" rel="external nofollow">Claudia Fugazza/CC BY-SA</a> </em></em>
					</div>
					<em> </em>
				</div>
			</div>

			<div class="md:hidden">
				 
			</div>
		</div>
	</div>
</div>

<p>
	Most relevant to the current paper is the group's <a href="https://link.springer.com/article/10.1007/s10071-022-01639-z?cjdata=MXxOfDB8WXww&amp;utm_medium=affiliate&amp;utm_source=commission_junction&amp;utm_campaign=CONR_BOOKS_ECOM_PBOK_ALWYS_DEEPLINK_GL&amp;utm_content=textlink&amp;utm_term=PID100017430&amp;CJEVENT=5403bdd6926f11f082de00130a82b839" rel="external nofollow">2022 study</a> that discovered that dogs <a href="https://arstechnica.com/science/2022/07/dogs-rely-on-multiple-senses-to-locate-their-favorite-toys-study-finds/" rel="external nofollow">store key sensory features</a> about their toys—notably what they look like and how they smell—and recall those features when searching for the named toy. Prior studies had suggested that dogs typically rely on vision, or a combination of sight and smell, to locate target objects. A few dogs can also identify objects based on verbal labels, which the authors call "gifted word learner" (GWL) dogs.
</p>

<p>
	 
</p>

<p>
	All the dogs—regardless of whether they were GWL dogs or typical dogs—successfully picked out the target toys in both light and dark conditions, although it took them longer to locate the toys in the dark. Most relied on visual cues, even though dogs possess an excellent sense of smell. However, the dogs sniffed more frequently and longer when searching for the toy in the dark.
</p>

<p>
	 
</p>

<p>
	The GWL dogs were also able to select the named toys when commanded by their owners, with similar reliance on visual cues—what the toy looks like—augmented by their sense of smell (what the toy smells like), particularly in dark conditions. This confirmed that when dogs play with a toy, they record its features using multiple senses, creating a "multistory mental image." They prefer to rely primarily on visual cues, but dogs can incorporate other sensory cues, most notably smell, when the conditions call for it.
</p>

<h2>
	Form and function
</h2>

<p>
	Having shown that the dogs could learn the names of their favorite toys, Fugazzi et al. turned their attention to studying whether the dogs could extend that ability to recognizing the functionality of their toys. In humans, babies rely on words for early perceptual categorization, but preferentially using an object's function over perceptual similarity to classify things doesn't emerge until the toddler or preschool stage. The team tested seven of the GWL dogs (six border collies and one Blue heeler) who had already demonstrated in the prior experiment their ability to learn the names of dozens of toys through everyday play.
</p>

<p>
	 
</p>

<div class="ars-lightbox align-fullwidth my-5">
	<div class="flex flex-col flex-nowrap gap-5 py-5 md:flex-row">
		<div style="flex-basis: calc(49.769938650307% - 10px);">
			<div class="ars-lightbox-item relative block h-full w-full overflow-hidden rounded-sm">
				<img alt="Whisky and a pizza toy" aria-labelledby="caption-2116449" class="ipsImage" decoding="async" height="720" width="720" src="https://cdn.arstechnica.net/wp-content/uploads/2025/09/doggo6-1024x1118.jpg">
				<div class="pswp-caption-content" id="caption-2116449">
					<em>Whisky and a pizza toy. </em>

					<div class="ars-gallery-caption-credit">
						<em><em>Helge O. Svela </em></em>
					</div>
					<em> </em>
				</div>
			</div>

			<div class="md:hidden">
				 
			</div>
		</div>

		<div class="flex-1">
			<div class="ars-lightbox-item relative block h-full w-full overflow-hidden rounded-sm">
				<img alt="Bindi with a pull toy" aria-labelledby="caption-2116450" class="ipsImage" decoding="async" height="720" width="720" src="https://cdn.arstechnica.net/wp-content/uploads/2025/09/doggo7-1024x1108.jpg">
				<div class="pswp-caption-content" id="caption-2116450">
					<em>Bindi with a pull toy. </em>

					<div class="ars-gallery-caption-credit">
						<em><em><a href="https://creativecommons.org/licenses/by-sa/4.0/deed.en" target="_blank" rel="external nofollow">Claudia Fugazza/CC BY-SA</a> </em></em>
					</div>
					<em> </em>
				</div>
			</div>

			<div class="md:hidden">
				 
			</div>
		</div>
	</div>

	<div class="flex flex-col flex-nowrap gap-5 py-5 md:flex-row">
		<div style="flex-basis: calc(46.037099494098% - 10px);">
			<div class="ars-lightbox-item relative block h-full w-full overflow-hidden rounded-sm">
				<img alt="Gadget cuddles with favorite toy" aria-labelledby="caption-2116451" class="ipsImage" decoding="async" height="720" width="720" src="https://cdn.arstechnica.net/wp-content/uploads/2025/09/doggo8-1024x1365.jpg">
				<div class="pswp-caption-content" id="caption-2116451">
					<em>Gadget cuddles with favorite toy. </em>

					<div class="ars-gallery-caption-credit">
						<em><em>Gillian Beltz-Mohrmann </em></em>
					</div>
					<em> </em>
				</div>
			</div>

			<div class="md:hidden">
				 
			</div>
		</div>

		<div class="flex-1">
			<div class="ars-lightbox-item relative block h-full w-full overflow-hidden rounded-sm">
				<img alt="Basket with a pull toy" aria-labelledby="caption-2116453" class="ipsImage" decoding="async" height="720" width="720" src="https://cdn.arstechnica.net/wp-content/uploads/2025/09/doggo9-1024x1165.jpg">
				<div class="pswp-caption-content" id="caption-2116453">
					<em>Basket with a pull toy. </em>

					<div class="ars-gallery-caption-credit">
						<em><em>Elle Baumgartel Austin </em></em>
					</div>
					<em> </em>
				</div>
			</div>

			<div class="md:hidden">
				 
			</div>
		</div>
	</div>
</div>

<p>
	First, the dogs were taught to associate the terms "pull" and "fetch" not with a single toy, but a group of toys that looked different but were used either to pull or to fetch during play sessions. Owners would call out the correct label each time. Once the dogs had demonstrated that they could correctly choose a pull or a fetch toy on command, the dogs moved to a new generalization phase. They were introduced to new toys—also differing in appearance—and owners played with them via pulling or fetching without saying the labels out loud.
</p>

<p>
	 
</p>

<p>
	“For these new toys, they’ve never heard the name, but they have played either pull or fetch, and so the dog has to choose which toy was used to play which game,” <a href="https://www.eurekalert.org/news-releases/1097925?" rel="external nofollow">Fugazza said</a>. “This was done in a natural setup, with no extensive training. It's just owners playing for a week with the toys. So, it’s a natural type of interaction.” Finally, the dogs were asked to select a pull or fetch toy from among the unlabeled items.
</p>

<p>
	 
</p>

<p>
	The results: statistically, the dogs were able to correctly select unlabeled toys more often than they would by pure chance, with no formal training. “We have shown that dogs learn object labels really fast, and they remember them for a long period, even without rehearsing,” Fugazza said. “And I think the way they extend labels also beyond perceptual similarities gives an idea of the breadth of what these labels could be for dogs.” The precise mechanism by which this learning takes place is still unknown, but the results pave the way for further studies into how language-related skills may function in dogs and other animals.
</p>

<p>
	 
</p>

<p>
	Current Biology, 2025. DOI: <a href="http://dx.doi.org/10.1016/j.cub.2025.08.013" rel="external nofollow">10.1016/j.cub.2025.08.013</a>  (<a href="http://arstechnica.com/science/news/2010/03/dois-and-their-discontents-1.ars" rel="external nofollow">About DOIs</a>).
</p>

<p>
	 
</p>

<p>
	<a href="https://arstechnica.com/science/2025/09/some-dogs-can-classify-their-toys-by-function/" rel="external nofollow">Source</a>
</p>

<hr class="ipsHr">
<p>
	<span style="font-size:12px;"><em>Hope you enjoyed this news post. Feedback welcome.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>Posted Friday 19 September 2025 at 4:30 am AEST (my time).</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>News posts... 2023: 5,800+ | 2024: 5,700+ | 2025 (till end of August): 4,048</em></span>
</p>

<p>
	<strong><span style="font-size:12px;"><a href="https://nsaneforums.com/topic/459202-remember-matrix/" rel="">RIP Matrix</a></span></strong>
</p>
]]></description><guid isPermaLink="false">31407</guid><pubDate>Thu, 18 Sep 2025 18:32:03 +0000</pubDate></item><item><title>You can hold on to your butts thanks to DNA that evolved in fish</title><link>https://nsaneforums.com/news/general-news/you-can-hold-on-to-your-butts-thanks-to-dna-that-evolved-in-fish-r31398/</link><description><![CDATA[<h3>
	Making digits seems to involve gene activity that was needed to make a cloaca.
</h3>

<p>
	Evolution has adapted the digits of mammals for an enormous range of uses, from our opposable thumbs to the spindly digits that support bat wings to the robust bones that support the hoofs of horses. But how we got digits in the first place hasn't been entirely clear. The fish that limbed vertebrates evolved from don't have obvious digit equivalents, and the most common types of fish just have a large collection of rays supporting their fins.
</p>

<p>
	 
</p>

<p>
	Despite this uncertainty, we have identified some genes that seem to be essential for both digit formation and the development of rays in the fins of fish, suggesting that there are parallels between the two. But a new study suggests that these parallels are a bit of an accident, and digits come by re-deploying a genetic network that controls a completely different process: the formation of the cloaca, a single organ that handles all of the fish's excretion.
</p>

<h2>
	Hox genes and digits
</h2>

<p>
	One of the key regulators of limb development is a set of genes called homeobox proteins, which attach to DNA and regulate the activity of nearby genes. In animals, many of these homeobox, or hox genes, are formed into clusters. Mammals have four clusters of hox genes, each of which encodes roughly 10 individual homeobox proteins. The cluster helps to organize where the hox genes are active, with the genes at one end of the cluster being active at the front of an embryo, and those at the other end active at the tail.
</p>

<p>
	 
</p>

<p>
	A similar thing seems to happen in limb development, with genes at one end of the cluster active during the formation of bones nearest the shoulder, and others becoming active as limbs closer to the end of the limb are forming. Ultimately, the specification of digits seems to require the hox genes at the far end of the cluster. In mice, eliminating the Hoxa13 and Hoxd13 genes causes the formation of digits to fail entirely.
</p>

<p>
	 
</p>

<p>
	There were some indications that the same thing is true in fish, where the elimination of equivalent hox genes also interfered with the formation of the rays at the ends of fins. This would suggest that digits formed by elaborating on a genetic system that already existed in order to produce fins.
</p>

<p>
	 
</p>

<p>
	However, when a US-French team started looking at the regulation of one set of hox genes in the limbs, things turned out to be a bit more complicated. The hox gene clusters have two chunks of regulatory DNA that help set the activity of the genes within the cluster, one upstream of the genes, one downstream. (For the molecular biologists among us, that's on the 5' and 3' sides of the gene cluster.) And we know that in vertebrates, some of the key regulatory DNA for one of the clusters is on the upstream side, since deleting it left all the genes in the cluster inactive in the region of the limb where digits form.
</p>

<h2>
	Same place, different reasons
</h2>

<p>
	So, the research team behind the new work deleted the equivalent region in a fish (the zebrafish) using the gene editing tool CRISPR. And, deleting the same area that wipes out hox gene activity in the digits in mice did... not very much. The hox gene activity was slightly reduced, but these genes were still active in the right place at the right time to make digits. So, while the activity looked the same, the reasons for the activity seem to be different in fish and mice. Which means that hox activity in the digits isn't the ancestral state; instead, it seems to have evolved separately in the ray-finned fish and vertebrate lineages.
</p>

<p>
	 
</p>

<p>
	So, the researchers asked a simple question: If the regulatory DNA they deleted didn't activate these genes in the limb, where was it needed? So, the researchers looked at where these hox genes were active in fish with and without the deletion. They found one region where it seems to matter: the developing cloaca. In fish, the cloaca is a single orifice that handles excretion (both urine and fecal material) as well as reproduction. So, it's basically the fish equivalent of our rear ends.
</p>

<p>
	 
</p>

<p>
	The team narrowed down the DNA responsible for the cloaca and showed that there were equivalent regions in mice, as well as fish that are more closely related to limbed vertebrates, like the gar. They also showed that deletion of some of the hox genes that are expressed in the digits caused severe defects in both the digestive and urogenital systems near the areas where these exit the bodies. This suggests that a role in the development of this region for hox genes is the ancestral state, and was present prior to the limbed vertebrates diverging from fish.
</p>

<p>
	 
</p>

<p>
	At the same time, the results suggest that the genetic system that produces this gene activity in the limbs was <em>not</em> the ancestral state. Which would mean that its activation in the digits was the product of co-opting the cloacal genetic program and deploying it in the developing limb. In other words, you have digits because a bit of the genetics that help you form your butt was used to activate the right genes where they're needed.
</p>

<p>
	 
</p>

<p>
	The strange thing about this is that a completely different genetic program activates the exact same genes in roughly the same location during the formation of fin rays. It's possible that this was also present in the common ancestor of zebrafish and limbed vertebrates, but wasn't strong or consistent enough to produce the sort of digits we see today, so there was a gradual transition to the sort of system we see today. Since we're unlikely to ever start gene editing lungfish or coelacanths, it may be difficult to ever get a clear picture on this matter.
</p>

<p>
	 
</p>

<p>
	In any case, the work is a great demonstration that the version of Occam's razor that's been adopted by science comes with a key caveat: The simplest explanation <em>that fits the data</em> is probably the right one. For a while, the simplest explanation seemed to be that a single genetic system produces fin rays and digits. But, with more data, that no longer seems as tenable, and we may have to fall back to an explanation that's considerably more complex.
</p>

<p>
	 
</p>

<p>
	Nature, 2025. DOI: <a href="http://dx.doi.org/10.1038/s41586-025-09548-0" rel="external nofollow">10.1038/s41586-025-09548-0</a>  (<a href="http://arstechnica.com/science/news/2010/03/dois-and-their-discontents-1/" rel="external nofollow">About DOIs</a>).
</p>

<p>
	 
</p>

<p>
	<a href="https://arstechnica.com/science/2025/09/distinct-digits-may-have-evolved-by-using-dna-that-makes-the-cloaca/" rel="external nofollow">Source</a>
</p>

<hr class="ipsHr">
<p>
	<span style="font-size:12px;"><em>Hope you enjoyed this news post. Feedback welcome.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>Posted Thursday 18 September 2025 at 5:12 pm AEST (my time).</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>News posts... 2023: 5,800+ | 2024: 5,700+ | 2025 (till end of August): 4,048</em></span>
</p>

<p>
	<strong><span style="font-size:12px;"><a href="https://nsaneforums.com/topic/459202-remember-matrix/" rel="">RIP Matrix</a></span></strong>
</p>
]]></description><guid isPermaLink="false">31398</guid><pubDate>Thu, 18 Sep 2025 07:13:14 +0000</pubDate></item><item><title>Tesla Model Y door handles now under federal safety scrutiny</title><link>https://nsaneforums.com/news/general-news/tesla-model-y-door-handles-now-under-federal-safety-scrutiny-r31383/</link><description><![CDATA[<h3>
	Cars have lost 12 V power, trapping children and dogs in hot cars.
</h3>

<p>
	When Elon Musk's Department of Government Efficiency <a href="https://arstechnica.com/cars/2025/04/car-safety-experts-at-nhtsa-which-regulates-tesla-axed-by-doge/" rel="external nofollow">began wielding its ax</a> at the National Highway Traffic Safety Administration earlier this year, many believed this was done to weaken the agency's oversight over Tesla. But despite the Tesla CEO's <a href="https://arstechnica.com/tech-policy/2025/05/elon-musk-to-exit-government-upset-that-trump-bill-undermines-doges-work/" rel="external nofollow">sometimes-close</a> relationship with the Trump administration, it appears there is still some independence left within NHTSA: earlier this week, the agency opened a new safety investigation into the door handles of the Tesla Model Y.
</p>

<p>
	 
</p>

<p>
	The timing may not be coincidental; last week, <a href="https://arstechnica.com/cars/2025/09/flush-door-handles-are-the-car-industrys-latest-safety-problem/" rel="external nofollow">the safety hazard</a> posed by badly designed retractable door handles entered the spotlight thanks to <a href="https://www.bloomberg.com/features/2025-tesla-dangerous-doors/" rel="external nofollow">a comprehensive report</a> by Bloomberg's Dana Hull. As Hull detailed, Tesla's door handles rely on the car's 12 V battery to work. Should this fail, there is no way to open the doors from the outside, something that has cost lives as first responders have been unable to free occupants from burning Teslas.
</p>

<p>
	 
</p>

<p>
	While front seat passengers have easily accessible interior emergency door releases, some Teslas lack any way of opening the rear doors from the inside after a crash. Other, more recent Models 3 and Y have manual releases located under a panel underneath the rear seat.
</p>

<h2>
	Break window to free child
</h2>

<p>
	NHTSA's Office of Defects Investigation says it has received nine complaints from the owners of model year 2021 Tesla Model Y that have resulted in this investigation. The complaints detail owners' experiences with a 12 V power failure and inoperable doors, trapping children or dogs in cars on hot days. In most cases, the car suffered a power failure after the parent had placed the child in the back seat, and in four instances, the only way to free the trapped occupants was by breaking a window.
</p>

<p>
	 
</p>

<p>
	NHTSA notes that while there are manual emergency door releases, "a child may not be able to access or operate the releases even if the vehicle’s driver is aware of them." To make matters worse, NHTSA says that none of the reported complaints say they saw a low-voltage warning light before the 12 V battery failed. The agency also criticizes the complicated process required to start a Tesla with off-board 12 V power, which "requires applying 12 volts DC from a separate power source to two different points accessible from the vehicle’s exterior," something that "may not be readily available to owners or well known."
</p>

<p>
	 
</p>

<p>
	<a href="https://arstechnica.com/cars/2025/09/tesla-model-y-door-handles-now-under-federal-safety-scrutiny/" rel="external nofollow">Source</a>
</p>

<hr class="ipsHr">
<p>
	<span style="font-size:12px;"><em>Hope you enjoyed this news post. Feedback welcome.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>Posted Thursday 18 September 2025 at 4:25 am AEST (my time).</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>News posts... 2023: 5,800+ | 2024: 5,700+ | 2025 (till end of August): 4,048</em></span>
</p>

<p>
	<strong><span style="font-size:12px;"><a href="https://nsaneforums.com/topic/459202-remember-matrix/" rel="">RIP Matrix</a></span></strong>
</p>
]]></description><guid isPermaLink="false">31383</guid><pubDate>Wed, 17 Sep 2025 18:26:33 +0000</pubDate></item><item><title>This Giant Subterranean Neutrino Detector Is Taking On the Mysteries of Physics</title><link>https://nsaneforums.com/news/general-news/this-giant-subterranean-neutrino-detector-is-taking-on-the-mysteries-of-physics-r31382/</link><description><![CDATA[<h3>
	Located in China, Juno is a 17-country collaboration that will try to detect neutrinos and antineutrinos to learn more about their mass.
</h3>

<p>
	<span class="lead-in-text-callout">Located 700 meters</span> underground near the city of Jiangmen in southern China, a giant sphere—35 meters in diameter and filled with more than 20,000 tons of liquid—has just started a mission that will last for decades. This is <a class="external-link text link" data-event-boundary="click" data-event-click='{"pattern":"ExternalLink"}' data-in-view='{"pattern":"ExternalLink"}' data-include-experiments="true" data-offer-url="https://juno.ihep.cas.cn/" href="https://juno.ihep.cas.cn/" rel="external nofollow" target="_blank">Juno</a>, the Jiangmen Underground Neutrino Observatory, a new, large-scale experiment studying some of the most mysterious and elusive particles known to science.
</p>

<p>
	 
</p>

<p>
	Neutrinos are the <a class="external-link text link" data-event-boundary="click" data-event-click='{"pattern":"ExternalLink"}' data-in-view='{"pattern":"ExternalLink"}' data-include-experiments="true" data-offer-url="https://neutrinos.fnal.gov/whats-a-neutrino/" href="https://neutrinos.fnal.gov/whats-a-neutrino/" rel="external nofollow" target="_blank">most abundant particles</a> in the universe with mass. They are fundamental particles, meaning they don’t break down into smaller constituent parts, which makes them very small and very light. They also have zero electrical charge; they are neutral—hence their name. All of this means that they very often don’t interact with other matter they come into contact with, and can pass right through it without affecting it, making them difficult to observe. It’s for this reason that they’re sometimes referred to as “ghost particles.”
</p>

<p>
	 
</p>

<p>
	They also have the ability to shift (or “oscillate”) between three different forms, also known as “flavors”: electron, mu, and tau. (Note that electron-flavored neutrinos are different from electrons; the latter are a different type of fundamental particle, with a negative charge.)
</p>

<p>
	 
</p>

<p>
	The fact that neutrinos oscillate was proven by the physicists Takaaki Kajita and Arthur Bruce McDonald. In two separate experiments, they observed that electron-flavored neutrinos oscillate into mu- and tau-flavored neutrinos. As a result they demonstrated that these particles have mass, and that the mass of each flavor is different. For this, they won the <a class="text link" href="https://www.nobelprize.org/prizes/physics/2015/summary/" rel="external nofollow">Nobel Prize in Physics in 2015</a>.
</p>

<div class="IframeEmbedContainer-hkaqNE gUkjvs" data-testid="IframeEmbedContainer">
	<div class="CaptionWrapper-jYrTxZ bkfwbX caption" data-testid="caption-wrapper">
		<p>
			<span class="BaseWrap-sc-gzmcOU BaseText-eqOrNE CaptionText-brNLzD deqABF imSbFE hMBSFK caption__text"> </span>
		</p>
	</div>
</div>

<p>
	But an important yet still unknown fact is how these masses are ordered—which of the three flavors has the greatest mass, and which the least. If physicists had a better understanding of neutrino mass, this could help better describe the behavior and evolution of the universe. This is where Juno comes in.
</p>

<h2 class="paywall">
	A Unique Experiment
</h2>

<p>
	Neutrinos can’t be seen with conventional particle detectors. Instead, scientists have to look for the rare signs of them interacting with other matter—and this is what <a class="external-link text link" data-event-boundary="click" data-event-click='{"pattern":"ExternalLink"}' data-in-view='{"pattern":"ExternalLink"}' data-include-experiments="true" data-offer-url="https://www.cnrs.fr/en/press/juno-giant-detector-unravel-mysteries-neutrinos" href="https://www.cnrs.fr/en/press/juno-giant-detector-unravel-mysteries-neutrinos" rel="external nofollow" target="_blank">Juno’s giant sphere</a> is for. Called a scintillator, it’s filled with a sensitive internal liquid made up of a solvent and two fluorescent compounds. If a neutrino passing through this matter interacts with it, it will produce a flash of light. Surrounding the liquid is a massive stainless steel lattice that supports a vast array of highly sensitive light sensors, called photomultiplier tubes, capable of detecting even a single photon produced by an interaction between a neutrino and the liquid, and converting it into a measurable electrical signal.
</p>

<p>
	 
</p>

<p>
	“The Juno experiment picks up the legacy of its predecessors, with the difference that it is much larger,” says Gioacchino Ranucci, deputy head of the experiment and the former head of Borexino, another neutrino-hunting experiment. One of the main features of Juno, Ranucci explains, is that Juno can “see” both neutrinos and their antimatter counterpart: antineutrinos. The former are typically produced in Earth’s atmosphere or by the decay of radioactive materials in Earth’s crust, or else <a class="text link" href="https://www.wired.com/story/the-mysterious-origins-of-the-most-energetic-neutrino-ever-detected/" rel="external nofollow">arrive from outer space</a>—coming from stars, black holes, supernovae, or even the Big Bang. Antineutrinos, however, are artificially produced, in this case by two nuclear power plants located near the detector.
</p>

<div>
	 
</div>

<p>
	“As they propagate, neutrinos and antineutrinos continue to oscillate, transforming into each other,” Ranucci says. Juno will be able to capture all of these signals, he explains, showing how they oscillate, “with a precision never before achieved.”
</p>

<p>
	 
</p>

<p>
	Juno’s primary goal is to find a solution to the neutrino mass-ordering problem. It’s known that the electron-flavored neutrino weighs less than the mu-flavored neutrino, but it’s not yet understood whether the third neutrino flavor, tau, weighs more than the other two (in which case, we would speak of a direct hierarchy) or not (in which case, an inverse hierarchy). By measuring, in very high resolution, the energy spectrum of antineutrinos from the reactors, Juno aims to show whether the hierarchy is normal or inverse. The collaboration expects that after about six years of data collection, it should have something approaching a statistically significant finding in answer to the question.
</p>

<p>
	 
</p>

<div class="AssetEmbedAssetContainer-eEeytc eRSvCP asset-embed__asset-container">
	<span class="SpanWrapper-zEXFr koTknX responsive-asset AssetEmbedResponsiveAsset-cIfZLr fHIkTW asset-embed__responsive-asset"><picture class="ResponsiveImagePicture-cGZhnX jwYQWO AssetEmbedResponsiveAsset-cIfZLr fHIkTW asset-embed__responsive-asset responsive-image" style=""><img alt="The neutrino signal detected by Juno on August 24." class="ipsImage" height="720" width="720" src="https://media.wired.com/photos/68becad82919a9ac7c3e5010/master/w_960,c_limit/W020250827351576993005.png"></picture></span>
</div>

<div class="CaptionWrapper-jYrTxZ bkfwbX caption AssetEmbedCaption-fyuOdR eXMqGf asset-embed__caption" data-event-boundary="click" data-event-click='{"pattern":"Caption"}' data-in-view='{"pattern":"Caption"}' data-include-experiments="true" data-testid="caption-wrapper">
	<em><span class="BaseWrap-sc-gzmcOU BaseText-eqOrNE CaptionText-brNLzD deqABF imSbFE hMBSFK caption__text">The neutrino signal detected by Juno on August 24.</span></em>
</div>

<div class="CaptionWrapper-jYrTxZ bkfwbX caption AssetEmbedCaption-fyuOdR eXMqGf asset-embed__caption" data-event-boundary="click" data-event-click='{"pattern":"Caption"}' data-in-view='{"pattern":"Caption"}' data-include-experiments="true" data-testid="caption-wrapper">
	<em><span class="BaseWrap-sc-gzmcOU BaseText-eqOrNE CaptionCredit-eowWKH deqABF kpqIso kpuElq caption__credit">Image: Juno Collaboration</span></em>
</div>

<p>
	 
</p>

<p>
	But that’s not all that’s in store for the experiment. At a still later stage, it could help solve an even deeper mystery concerning the so-called Majorana neutrino—a theorized particle that has never been observed. (Majorana particles are particles that are simultaneously also their own antiparticles; a Majorana neutrino is therefore both a neutrino and its antineutrino.) Being able to understand whether or not neutrinos are Majorana particles would possibly mean getting to the bottom of one of the most complex questions in modern physics, namely why more matter is observed in the universe than antimatter, for which there is still no complete, coherent, and definitive explanation.
</p>

<p>
	 
</p>

<p>
	<em>This story originally appeared on</em> <a class="text link" href="https://www.wired.it/article/neutrini-esperimento-juno-cina/" rel="external nofollow">WIRED <em>Italia</em></a> <em>and has been translated from Italian.</em>
</p>

<p>
	 
</p>

<p>
	<a href="https://www.wired.com/story/this-giant-subterranean-neutrino-detector-is-taking-on-the-mysteries-of-physics/" rel="external nofollow">Source</a>
</p>

<hr class="ipsHr">
<p>
	<span style="font-size:12px;"><em>Hope you enjoyed this news post. Feedback welcome.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>Posted Thursday 18 September 2025 at 4:23 am AEST (my time).</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>News posts... 2023: 5,800+ | 2024: 5,700+ | 2025 (till end of August): 4,048</em></span>
</p>

<p>
	<strong><span style="font-size:12px;"><a href="https://nsaneforums.com/topic/459202-remember-matrix/" rel="">RIP Matrix</a></span></strong>
</p>
]]></description><guid isPermaLink="false">31382</guid><pubDate>Wed, 17 Sep 2025 18:25:31 +0000</pubDate></item><item><title>RIP Robert Redford</title><link>https://nsaneforums.com/news/general-news/rip-robert-redford-r31368/</link><description><![CDATA[<p>
	RIP Robert Redford <a href="https://news.sky.com/story/hollywood-actor-and-director-robert-redford-dies-at-89-13432112" rel="external nofollow">https://news.sky.com/story/hollywood-actor-and-director-robert-redford-dies-at-89-13432112</a>
</p>
]]></description><guid isPermaLink="false">31368</guid><pubDate>Tue, 16 Sep 2025 12:33:45 +0000</pubDate></item><item><title>The Next Era of Gene Editing Will Be Disease Agnostic</title><link>https://nsaneforums.com/news/general-news/the-next-era-of-gene-editing-will-be-disease-agnostic-r31345/</link><description><![CDATA[<h3>
	At the WIRED Health summit, biochemist David Liu said his lab is on the verge of revealing a new gene-editing technique that could target multiple unrelated diseases.
</h3>

<p>
	<span class="lead-in-text-callout">At the WIRED</span> Health <a href="https://events.wired.com/health2025/home/" rel="external nofollow">summit</a> last week, Harvard biochemist and gene-editing pioneer David Liu said that later this year his lab plans to report on a single gene-editing strategy that could treat many unrelated diseases. He calls it disease-agnostic therapeutic gene editing.
</p>

<p>
	 
</p>

<p>
	“It sounds sort of crazy, but there’s actually a very good molecular biology reason why this could be possible,” he told the audience in Boston, stopping short of details.
</p>

<p>
	 
</p>

<p>
	Gene-editing treatments are currently being developed for several rare and inherited genetic diseases. One gene-editing treatment, called <a href="https://www.wired.com/story/the-worlds-first-crispr-drug-gets-a-slow-start-sickle-cell-beta-thalassemia-vertex/" rel="external nofollow">Casgevy</a>, is approved and available commercially to treat sickle cell disease and a related blood disorder called beta thalassemia. Earlier this year, KJ Muldoon, a baby boy born with an often fatal genetic disease that causes ammonia to build up in his blood, was saved with a <a href="https://www.wired.com/story/a-baby-received-a-custom-crispr-treatment-in-record-time/" rel="external nofollow">customized gene-editing treatment</a>—a medical first.
</p>

<p>
	 
</p>

<p>
	These treatments work by targeting specific mutations related to those diseases. But they can be costly to develop and must be designed for specific patient populations. Sometimes those patient populations can be very small, as in the case of baby KJ. His condition, called CPS1 deficiency, affects just one in 1.3 million live births.
</p>

<p>
	 
</p>

<p>
	Liu envisions a future in which one gene-editing approach could be used on multiple different diseases, regardless of what organ or tissue they affect or their genetic cause. He says this kind of streamlined strategy is needed because collectively, there are so many rare diseases, and it would be impractical to design treatments for each one. Global Genes, a rare disease advocacy organization, estimates that there are at least 10,000 rare diseases that affect more than 400 million people worldwide.
</p>

<p>
	 
</p>

<div class="AssetEmbedAssetContainer-eEeytc eRSvCP asset-embed__asset-container">
	<span class="SpanWrapper-zEXFr koTknX responsive-asset AssetEmbedResponsiveAsset-cIfZLr fHIkTW asset-embed__responsive-asset"><picture class="ResponsiveImagePicture-cGZhnX jwYQWO AssetEmbedResponsiveAsset-cIfZLr fHIkTW asset-embed__responsive-asset responsive-image" style=""><img alt="David Liu on stage being interviewed at WIRED health." class="ipsImage" height="720" width="720" src="https://media.wired.com/photos/68c78aaa38d5c4898423885b/master/w_960,c_limit/WIRED_Health_David-Liu_2.jpg"></picture></span>
</div>

<div class="CaptionWrapper-jYrTxZ bkfwbX caption AssetEmbedCaption-fyuOdR eXMqGf asset-embed__caption" data-event-boundary="click" data-event-click='{"pattern":"Caption"}' data-in-view='{"pattern":"Caption"}' data-include-experiments="true" data-testid="caption-wrapper">
	<em><span class="BaseWrap-sc-gzmcOU BaseText-eqOrNE CaptionCredit-eowWKH deqABF kpqIso kpuElq caption__credit">PHOTOGRAPH: VAIL FUCCI</span></em>
</div>

<div class="CaptionWrapper-jYrTxZ bkfwbX caption AssetEmbedCaption-fyuOdR eXMqGf asset-embed__caption" data-event-boundary="click" data-event-click='{"pattern":"Caption"}' data-in-view='{"pattern":"Caption"}' data-include-experiments="true" data-testid="caption-wrapper">
	 
</div>

<p>
	“Genetic disease as a whole is not so rare. It’s actually many times more prevalent than cancer or HIV/AIDS,” Liu said. “We urgently need these ways to directly treat the root cause of these genetic diseases.”
</p>

<p>
	 
</p>

<p>
	Liu’s lab has developed two such ways to tackle rare diseases: <a href="https://www.wired.com/story/a-more-elegant-form-of-gene-editing-progresses-to-human-testing/" rel="external nofollow">base editing</a> and prime editing. These next-generation versions of <a href="https://www.wired.com/tag/crispr/" rel="external nofollow">Crispr</a> are already being used in around two dozen clinical trials around the world.
</p>

<p>
	 
</p>

<p>
	Base editing involves lab-made proteins that can change one DNA base, or “letter,” in a DNA sequence to another, such as changing a C to a T. They are akin to pencils that can correct single-letter misspellings. Baby KJ’s treatment used a base editor to treat his disease.
</p>

<p>
	 
</p>

<p>
	Prime editing, meanwhile, functions like a search-and-replace system for DNA. While traditional Crispr gene editing creates a double-stranded break in the DNA, prime editing allows for precise additions, deletions, or swaps without making that break. A prime editor, he explained, synthesizes a new segment of DNA and orchestrates repair processes in the cell, so that that new piece of DNA replaces the original sequence. Essentially, it’s a DNA word processor.
</p>

<p>
	 
</p>

<p>
	At WIRED Health, Liu teased that his lab has found a way to use prime editing in a disease-agnostic manner.
</p>

<p>
	 
</p>

<p>
	“Taking advantage of the ability of prime editing to do search-and-replace gene editing raises the possibility that a single composition of matter—potentially, a single drug—might benefit many, many more patients than going after diseases one mutation at a time,” Liu said. “That kind of future for gene editing, I think, will amplify, many-fold its impact and, most importantly, its access to the patients who need these treatments.”
</p>

<p>
	 
</p>

<p>
	<a href="https://www.wired.com/story/the-next-era-of-gene-editing-will-be-disease-agnostic/" rel="external nofollow">Source</a>
</p>

<hr class="ipsHr">
<p>
	<span style="font-size:12px;"><em>Hope you enjoyed this news post. Feedback welcome.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>Posted Tuesday 16 September 2025 at 2:30 am AEST (my time).</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>News posts... 2023: 5,800+ | 2024: 5,700+ | 2025 (till end of August): 4,048</em></span>
</p>

<p>
	<strong><span style="font-size:12px;"><a href="https://nsaneforums.com/topic/459202-remember-matrix/" rel="">RIP Matrix</a></span></strong>
</p>
]]></description><guid isPermaLink="false">31345</guid><pubDate>Mon, 15 Sep 2025 16:32:33 +0000</pubDate></item></channel></rss>
