<?xml version="1.0"?>
<rss version="2.0"><channel><title>News: Technology News</title><link>https://nsaneforums.com/news/technology-news/page/261/?d=2</link><description>News: Technology News</description><language>en</language><item><title>Intel launches its next-generation neuromorphic processor&#x2014;so, what&#x2019;s that again?</title><link>https://nsaneforums.com/news/technology-news/intel-launches-its-next-generation-neuromorphic-processor%E2%80%94so-what%E2%80%99s-that-again-r2557/</link><description><![CDATA[<header>
	<h2 itemprop="description">
		Intel's Loihi processors have electronics that behave a lot like neurons.
	</h2>

	<div class="ipsEmbeddedVideo" contenteditable="false">
		<div>
			<iframe allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen="" frameborder="0" height="113" id="ips_uid_1833_4" src="https://nsaneforums.com/applications/core/interface/index.html" width="200" data-embed-src="https://www.youtube.com/embed/GN3eSMoJcM8?feature=oembed"></iframe>
		</div>
	</div>

	<p>
		Mike Davies, director of Intel's Neuromorphic Computing Lab, explains the company's efforts in this area. And with the launch of a new neuromorphic chip this week, he talked Ars through the updates.
	</p>
</header>

<section>
	<div itemprop="articleBody">
		<p>
			 
		</p>

		<p>
			Despite their name, neural networks are only distantly related to the sorts of things you'd find in a brain. While their organization and the way they transfer data through layers of processing may share some rough similarities to networks of actual neurons, the data and the computations performed on it would look very familiar to a standard CPU.
		</p>

		<p>
			 
		</p>

		<p>
			But neural networks aren't the only way that people have tried to take lessons from the nervous system. There's a separate discipline called <a href="https://arstechnica.com/science/2017/07/pocket-brains-neuromorphic-hardware-arrives-for-our-brain-inspired-algorithms/" rel="external nofollow">neuromorphic computing</a> that's based on approximating the behavior of individual neurons in hardware. In neuromorphic hardware, calculations are performed by lots of small units that communicate with each other through bursts of activity called spikes and adjust their behavior based on the spikes they receive from others.
		</p>

		<p>
			 
		</p>

		<p>
			On Thursday, Intel released the newest iteration of its neuromorphic hardware, called Loihi. The new release comes with the sorts of things you'd expect from Intel: a better processor and some basic computational enhancements. But it also comes with some fundamental hardware changes that will allow it to run entirely new classes of algorithms. And while Loihi remains a research-focused product for now, Intel is also releasing a compiler that it hopes will drive wider adoption.
		</p>

		<p>
			 
		</p>

		<p>
			To make sense out of Loihi and what's new in this version, let's back up and start by looking at a bit of neurobiology, then build up from there.
		</p>

		<h2>
			From neurons to computation
		</h2>

		<p>
			The foundation of the nervous system is the cell type called a neuron. All neurons share a few common functional features. At one end of the cell is a structure called a dendrite, which you can think of as a receiver. This is where the neuron receives inputs from other cells. Nerve cells also have axons, which act as transmitters, connecting with other cells to pass along signals.
		</p>

		<p>
			 
		</p>

		<p>
			The signals take the form of what are called "spikes," which are brief changes in the voltage across the neuron's cell membrane. Spikes travel down axons until they reach the junctions with other cells (called synapses), at which point they're converted to a chemical signal that travels to the nearby dendrite. This chemical signal opens up channels that allow ions to flow into the cell, starting a new spike on the receiving cell.
		</p>

		<p>
			 
		</p>

		<p>
			The receiving cell integrates a variety of information—how many spikes it has seen, whether any neurons are signaling that it should be quiet, how active it was in the past, etc.—and uses that to determine its own activity state. Once a threshold is crossed, it'll trigger a spike down its own axons and potentially trigger activity in other cells.
		</p>

		<p>
			 
		</p>

		<p>
			Typically, this results in sporadic, randomly spaced spikes of activity when the neuron isn't receiving much input. Once it starts receiving signals, however, it'll switch to an active state and fire off a bunch of spikes in rapid succession.
		</p>

		<p>
			 
		</p>

		<p>
			<img alt="20130314-neuron-300x300.gif" class="ipsImage" data-ratio="100.00" height="300" width="300" src="https://cdn.arstechnica.net/wp-content/uploads/2021/09/20130314-neuron-300x300.gif">
		</p>

		<figure>
			<figcaption>
				<div>
					A neuron, with the dendrites (spiky protrusions at top) and part of the axon (long extension at bottom right) visible.
				</div>

				<div>
					<a href="https://www.nih.gov/news-events/news-releases/backwards-signals-appear-sensitize-brain-cells-rat-study-shows" rel="external nofollow">NIH</a>
				</div>
			</figcaption>
		</figure>

		<p>
			How does this process encode and manipulate information? That's an interesting and important question, and one we're only just starting to answer.
		</p>

		<p>
			 
		</p>

		<p>
			One of the ways we've gone about answering it was via what has been called theoretical neurobiology (or computational neurobiology). This has involved attempts to build mathematical models that reflected the behavior of nervous systems and neurons in the hope that this would allow us to identify some underlying principles. Neural networks, which focused on the organizational principles of the nervous system, were one of the efforts that came out of this field. Spiking neural networks, which attempt to build up from the behavior of individual neurons, is another.
		</p>

		<p>
			 
		</p>

		<p>
			Spiking neural networks can be implemented in software on traditional processors. But it's also possible to implement them through hardware, as Intel is doing with Loihi. The result is a processor very much unlike anything you're likely to be familiar with.
		</p>

		<h2>
			Spiking in silicon
		</h2>

		<p>
			The previous-generation Loihi chip contains 128 individual cores connected by a communication network. Each of those cores has a large number of individual "neurons," or execution units. Each of these neurons can receive input in the form of spikes from any other neuron—a neighbor in the same core, a unit in a different core on the same chip or from another chip entirely. The neuron integrates the spikes it receives over time and, based on the behavior it's programmed with, uses that to determine when to send spikes of its own to whatever neurons it's connected with.
		</p>

		<p>
			 
		</p>

		<p>
			All of the spike signaling happens asynchronously. At set time intervals, embedded x86 cores on the same chip force a synchronization. At that point, the neuron will redo the weights of its various connections—essentially, how much attention to pay to all the individual neurons that send signals to it.
		</p>

		<p>
			 
		</p>

		<p>
			Put in terms of an actual neuron, part of the execution unit on the chip acts as a dendrite, processing incoming signals from the communication network based in part on the weight derived from past behavior. A mathematical formula was then used to determine when activity had crossed a critical threshold and to trigger spikes of its own when it does. The "axon" of the execution unit then looks up which other execution units it communicates with, and it sends a spike to each.
		</p>

		<p>
			 
		</p>

		<p>
			In the <a href="https://arstechnica.com/science/2019/07/brains-scale-better-than-cpus-so-intel-is-building-brains/" rel="external nofollow">earlier iteration of Loihi</a>, a spike simply carried a single bit of information. A neuron only registered when it received one.
		</p>

		<p>
			 
		</p>

		<p>
			Unlike a normal processor, there's no external RAM. Instead, each neuron has a small cache of memory dedicated to its use. This includes the weights it assigns to the inputs from different neurons, a cache of recent activity, and a list of all the other neurons that spikes are sent to.
		</p>

		<p>
			 
		</p>

		<p>
			One of the other big differences between neuromorphic chips and traditional processors is energy efficiency, where neuromorphic chips come out well ahead. IBM, which introduced its TrueNorth chip in 2014, was able to get useful work out of it even though it was clocked at a leisurely kiloHertz, and it used less than .0001 percent of the power that would be required to emulate a spiking neural network on traditional processors. Mike Davies, director of Intel's Neuromorphic Computing Lab, said Loihi can beat traditional processors by a factor of 2,000 on some specific workloads. "We're routinely finding 100 times [less energy] for SLAM and other robotic workloads," he added.
		</p>
	</div>
</section>

<div itemprop="articleBody">
	<h2>
		What’s new in neuromorphics
	</h2>

	<p>
		We'll get back to how asynchronous electronic spikes can actually solve useful problems in a bit. First, we'll take a look at what has changed between Loihi (which we'll call "the original processor" for clarity's sake) and Loihi 2. The difference is informative, because Intel has had hardware in the hands of the research community for a few years, and the company was able to incorporate their feedback into the design decisions. So, the differences between the two, in part, reflect what the people who actually use neuromorphic processors have found is holding them back.
	</p>

	<p>
		 
	</p>

	<p>
		Some of the changes are the obvious things you'd expect in the transition between two generations of chips. Intel's using a more up-to-date manufacturing process, and it can now fit each core in roughly half the space needed in the original processor. Rather than being able to communicate with separate chips via a two-dimensional grid of connections, Loihi 2 can do so in three dimensions, allowing a stack of processing boards to greatly increase the total number of neurons. The number of embedded processors per chip, which help coordinate all the activity, has gone from three to six, and there are eight times as many neurons per chip.
	</p>

	<p>
		 
	</p>

	<p>
		<img alt="LoihiFingertip3000-980x653.jpg" class="ipsImage" data-ratio="75.10" height="479" width="720" src="https://cdn.arstechnica.net/wp-content/uploads/2021/09/LoihiFingertip3000-980x653.jpg">
	</p>

	<figure>
		<figcaption>
			<div>
				Despite containing thousands of individual neurons, Loihi chips aren't especially large.
			</div>

			<div>
				Intel
			</div>
		</figcaption>
	</figure>

	<p>
		But there are also some differences that are specific to Loihi's needs. Intel says it has gone through and optimized all the asynchronous hardware, giving Loihi 2 double the performance when updating a neuron's state and boosting the performance of spike generation ten-fold.
	</p>

	<p>
		 
	</p>

	<p>
		Other changes are very specific to spiking neural networks. The original processor's spikes, as mentioned above, only carried a single bit of information. In Loihi 2, a spike is an integer, allowing it to carry far more information and to influence how the recipient neuron sends spikes. (This is a case where Loihi 2 might be somewhat less like the neurons it's mimicking in order to perform calculations better.)
	</p>

	<p>
		 
	</p>

	<p>
		Another major change is in the part of the processor that evaluates the neuron's state in order to determine whether to send a spike. In the original processor, users could perform a simple bit of math to make that determination. In Loihi 2, they now have access to a simplified programmable pipeline, allowing them to perform comparisons and control the flow of instructions. Intel's Davies told Ars that you can specify these programs down to the per-neuron level, meaning that two neighboring neurons could be running completely different software.
	</p>

	<p>
		 
	</p>

	<p>
		Davies also said that the way each neuron handles its internal memory is more flexible. Rather than specific aspects—like the list of neurons spikes should be sent to—having a fixed allocation, there's a pool of memory that can be divided up more dynamically.
	</p>

	<p>
		 
	</p>

	<p>
		These changes do far more than let Loihi 2 execute existing algorithms more efficiently; they actually let the chip run algorithms that were a poor fit for the original processor.
	</p>

	<p>
		 
	</p>

	<p>
		And that brings us back to the question of how neuromorphic computing gets anything done.
	</p>

	<h2>
		From spikes to solutions
	</h2>

	<p>
		How do you actually solve problems using something like a Loihi chip? You can make some parallels to quantum computing. There, the problem you want to solve gets converted into a combination of how you configure a set of qubits and the manipulations you perform on them. The rules of the system—the physics, in the case of quantum computing—then determine the final state of the system. That final state can then be read out and translated into a solution.
	</p>

	<p>
		 
	</p>

	<p>
		For neuromorphic computing, the problem is set up by configuring the axons, which determine what neurons signal to what targets, as well as the code that determines when a neuron sends spikes. From there, the rules of the system determine how the spiking behavior evolves, either from the initial state or in response to further input. The solution can then be read out by examining the spiking behavior of different neurons. "Computation emerges from the interactions of the neurons," is how Davies put it.
	</p>

	<p>
		 
	</p>

	<p>
		Intel provided a concrete example of this <a href="https://www.researchgate.net/publication/322548911_Loihi_A_Neuromorphic_Manycore_Processor_with_On-Chip_Learning" rel="external nofollow">in a paper</a> it published back in 2018. The example problem it used is finding a set of features that can be used to approximate the content of an image, in the same way that a series of circles can approximate the head of Mickey Mouse. This can be done on Loihi by assigning each neuron a feature that it represents and then having its spiking activity influenced by whether it recognizes that feature in an image. As things proceed, the neurons signal to each other in a way that tones down the activity of anything that isn't recognizing a feature.
	</p>

	<p>
		 
	</p>

	<p>
		The end result of this competition is that the neurons that represent features present in the image will be actively spiking, while those that don't are relatively quiet. This can be read out as a feature list and the process started over again by feeding the system a new image. While it might be faster to reset the whole processor to its initial state before showing a second image, it shouldn't be necessary—the system is dynamic, so changing the input will mean changing the spiking behavior, allowing a new population of neurons to gradually assert itself.
	</p>

	<h2>
		Learning on the fly and more
	</h2>

	<p>
		This dynamic behavior makes for a contrast with trained neural networks, which are very good at recognizing what they've been trained on but not flexible enough to recognize something they weren't trained on. Davies described work they've done with Loihi to recognize gestures based on video input. He said that it's possible to get the system to recognize new gestures, training it on the fly without altering its ability to recognize gestures it was previously trained on. (This training won't tie the gesture to a specific action; the Loihi system just does the recognition and relies on other hardware to take actions based on that recognition.)
	</p>

	<p>
		 
	</p>

	<p>
		Davies says these sorts of abilities have a lot of potential applications in robotics. Mobile robots have to be flexible enough to recognize and adjust to new circumstances when they find themselves facing a new environment. And any robot will see its behavior change as its parts wear down or get dirty, meaning their control systems have to adjust to new performance parameters.
	</p>

	<p>
		 
	</p>

	<p>
		<img alt="Loihi-2-transparent-with-die-980x551.png" class="ipsImage" data-ratio="75.10" height="404" width="720" src="https://cdn.arstechnica.net/wp-content/uploads/2021/09/Loihi-2-transparent-with-die-980x551.png">
	</p>

	<figure>
		<figcaption>
			<div>
				Intel
			</div>
		</figcaption>
	</figure>

	<p>
		Those are the sorts of things that are traditionally associated with AI systems (whether they involve spiking neurons or not). But Davies also said that there are some very different use cases where spiking systems also perform well. One he mentioned was quadratic optimizations, which help with things like managing complex scheduling constraints (think of a nationwide rail system).
	</p>

	<p>
		 
	</p>

	<p>
		These can be solved using traditional computers, but the processing resources rise rapidly with the number of constraints. Loihi has shown promising results on finding optimized solutions with a fraction of the computational resources, and Davies said it's flexible enough to be configured to either find the optimal solution or more quickly find a solution that's within 1 percent of the best.
	</p>

	<p>
		 
	</p>

	<p>
		(Intriguingly, these are the same types of problems that run well on <a href="https://arstechnica.com/science/2019/10/what-problems-can-you-solve-on-a-quantum-annealer/" rel="external nofollow">D-Wave's quantum annealing hardware</a>. Davies said that Los Alamos was preparing a paper comparing the two.)
	</p>

	<h2>
		Waiting for the software
	</h2>

	<p>
		While spiking neural networks can be very effective at solving these sorts of problems, the challenge has often been finding the people who understand how to use them. It is a very different type of programming and requires an equally different way of thinking about algorithm development. Davies said that most of the people who are currently adept in it come from a theoretical neurobiology background (or are still in the field). So far, this has meant that Intel has mostly pushed Loihi into the research community, something that has limited its ability to sell the processor more widely.
	</p>

	<p>
		 
	</p>

	<p>
		But long term, Intel hopes to see Loihi derivatives end up in a broad range of systems, from acting as a co-processor in embedded systems to large Loihi clusters in the data center. For that, however, it will need to be easy for companies to find people who can program for it.
	</p>

	<p>
		 
	</p>

	<p>
		To that end, Intel is coupling the release of Loihi 2 with the release of an open source software framework called Lava. "LAVA is meant to help get neuromorphic [programming] to spread to the wider computer science community," Davies told Ars. He went on to say that, in the past, Intel hasn't provided enough abstraction from the inner workings of Loihi. If you wanted to run software on it, you had to understand spiking systems in detail. LAVA is a way of giving people the ability to work with Loihi-based systems without having to know the details.
	</p>

	<p>
		 
	</p>

	<p>
		LAVA should be accessible today, and the first Loihi 2 boards will be made available to the research community via a cloud service shortly. A board with a single chip is being made available for evaluation purposes, and it will be followed by an eight-chip system called Kapoho point later this year.
	</p>

	<p>
		 
	</p>

	<p>
		Listing image by Aurich Lawson | Getty Images | Intel
	</p>
</div>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://arstechnica.com/science/2021/09/understanding-neuromorphic-computing-and-why-intels-excited-about-it/" rel="external nofollow">Intel launches its next-generation neuromorphic processor—so, what’s that again?</a>
</p>
]]></description><guid isPermaLink="false">2557</guid><pubDate>Thu, 30 Sep 2021 23:54:13 +0000</pubDate></item><item><title>Amazon&#x2019;s indoor camera drone is ready to fly around your house</title><link>https://nsaneforums.com/news/technology-news/amazon%E2%80%99s-indoor-camera-drone-is-ready-to-fly-around-your-house-r2522/</link><description><![CDATA[<header>
	<h2 itemprop="description">
		Amazon announces a million smart home devices.
	</h2>
</header>

<section>
	<div itemprop="articleBody">
		<p>
			Amazon unloaded an entire delivery truck's worth of products at a private event today. Here are some of the many, many smart home products that were announced.
		</p>

		<p>
			 
		</p>

		<p>
			Lookout Nest! Amazon is stepping on Google's turf (and its old thermostat partner, Ecobee) with <a href="https://amzn.to/3m76uND" rel="external nofollow" target="_blank">the Amazon Smart Thermostat</a>. Nest thermostats are a circle, so this thing is a square, with the usual touch controls on the front and an app (the Alexa app) for remote control and usage tracking. "Thermostat Hunches" will let Alexa control the thermostat based on your location, and of course there are Alexa voice commands. Amazon partnered with Honeywell <a href="https://www.honeywell.com/us/en/press/2018/10/honeywell-completes-spin-off-of-resideo-technologies-incpt" rel="external nofollow">spinoff company</a> Resideo to develop the thermostat, and says the device is "made with Honeywell Home Thermostat Technology." Between Amazon's Echo smarts and Honeywell's thermostat experience, there is plenty of expertise here.
		</p>

		<div>
			 
		</div>

		<div>
			<img alt="55-1440x1080.jpg" class="ipsImage" data-ratio="75.10" height="540" width="720" src="https://cdn.arstechnica.net/wp-content/uploads/2021/09/55-1440x1080.jpg">
		</div>

		<div>
			Amazon's thermostat.
		</div>

		<div>
			 
		</div>

		<div>
			<img alt="54-1440x1080.jpg" class="ipsImage" data-ratio="75.10" height="540" width="720" src="https://cdn.arstechnica.net/wp-content/uploads/2021/09/54-1440x1080.jpg">
		</div>

		<div>
			The app.
		</div>

		<div>
			 
		</div>

		<div>
			<img alt="56-1440x1006.jpg" class="ipsImage" data-ratio="75.10" height="503" width="720" src="https://cdn.arstechnica.net/wp-content/uploads/2021/09/56-1440x1006.jpg">
		</div>

		<div>
			How the touch controls work.
		</div>

		<div>
			 
		</div>

		<div>
			<img alt="chrome_KGQWaNWGZT-1440x810.png" class="ipsImage" data-ratio="75.10" height="405" width="720" src="https://cdn.arstechnica.net/wp-content/uploads/2021/09/chrome_KGQWaNWGZT-1440x810.png">
		</div>

		<div>
			A cartoon rendering of the wire mount.
		</div>

		<div>
			 
		</div>
	</div>
</section>

<p>
	The device is $59.99, and <a href="https://amzn.to/3zSDbmR" rel="external nofollow" target="_blank">for $16 more</a> you can get a bundle with a C-Wire Power Adapter, which you might need if your existing thermostat wiring isn't putting out enough power. That is dramatically cheaper than Nest, whose cheapest thermostat <a href="https://store.google.com/product/nest_thermostat?hl=en-US" rel="external nofollow" target="_blank">is $129.99</a>. Amazon is also undercutting its biggest thermostat partner, Ecobee, which ships a thermostat with an entire Alexa speaker and microphone integrated into it, the $229.99 Ecobee 4. This is just a thermostat—but wow is it cheap.
</p>

<h2>
	Some cameras, including that drone indoor camera
</h2>

<div>
	<img alt="58-1440x1080.jpg" class="ipsImage" data-ratio="75.10" height="540" width="720" src="https://cdn.arstechnica.net/wp-content/uploads/2021/09/58-1440x1080.jpg">
</div>

<div>
	Amazon really wants you to just fly this drone around the house.
</div>

<div>
	 
</div>

<div>
	<img alt="ring_always_home_cam.jpg" class="ipsImage" data-ratio="75.10" height="450" width="720" src="https://cdn.arstechnica.net/wp-content/uploads/2021/09/ring_always_home_cam.jpg">
</div>

<div>
	Docked and undocked.
</div>

<div>
	 
</div>

<div>
	<img alt="61MBsOniTL._SL1500_-1440x1440.jpg" class="ipsImage" data-ratio="75.10" height="540" width="540" src="https://cdn.arstechnica.net/wp-content/uploads/2021/09/61MBsOniTL._SL1500_-1440x1440.jpg">
</div>

<div>
	A mesh on the top and bottom should stop it from chopping off any fingers.
</div>

<div>
	 
</div>

<div>
	<img alt="57-1440x1080.jpg" class="ipsImage" data-ratio="75.10" height="540" width="720" src="https://cdn.arstechnica.net/wp-content/uploads/2021/09/57-1440x1080.jpg">
</div>

<div>
	The app.
</div>

<div>
	 
</div>

<p>
	Next up: cameras. Amazon's crazy indoor, flying drone camera—the ambiguously named "Ring Always Home Cam"—is actually for sale now in the US. This was announced <a href="https://arstechnica.com/gadgets/2020/09/new-amazon-hardware-ring-drones-echo-dot-4th-gen-wi-fi-6-eero-and-more/" rel="external nofollow" target="_blank">a full year ago</a>, but now it's available "exclusively by invitation" for $249.99. This is a "Day 1 Edition" (read: a beta product). So Amazon isn't letting just anyone buy it. You can request an invitation to give Amazon money <a href="https://amzn.to/3AS4DCC" rel="external nofollow" target="_blank">on the product page</a>.
</p>

<p>
	 
</p>

<p>
	Like every other Ring camera, you can access the camera feed remotely, via the Ring app. You'll get a 1440 × 1440 video feed that you can zoom in to. You can train the drone with custom flight paths by just holding it up in the air and walking it throughout the house. There will probably be manual remote controls, too, but I get the feeling they will be very limited.
</p>

<p>
	 
</p>

<p>
	It doesn't sound like much is going on in the navigation stack. Amazon notes that "If Always Home Cam encounters an unexpected obstacle, it will pause and return to the charging dock." The drone is also limited to a single story of the house. If you have multiple stories, Amazon recommends multiple drones.
</p>

<p>
	 
</p>

<p>
	The drone lives in a little dock when it's not running, and Amazon says it will only record video when it's flying. The dock also covers the camera, so it couldn't record much while it's not flying, even if it wanted to. It has a flight time of five minutes before it has to recharge, and it should auto-dock itself when you are done with it.
</p>

<p>
	 
</p>

<p>
	This is a quadcopter, so like every other quadcopter, it will be slightly quieter than a flying chainsaw—but not by much. The announcement video did not include a sound recording of the drone, but on Amazon's product page, there's <a href="https://m.media-amazon.com/images/G/01/kindle/2021/3694265/Zs_-_What_s_Next_092621_FINAL.mp4" rel="external nofollow" target="_blank">a video</a> that hints at how much sound this thing will make. Ring President Leila Rouhi explained to <a href="https://www.bbc.com/news/technology-54285692" rel="external nofollow" target="_blank">the BBC</a> last year that, in addition to covering the camera while it's in the dock, the quadcopter is "built to be loud, so it's really privacy that you can hear."
</p>

<p>
	 
</p>

<p>
	If you have any pets, Amazon admits they "may need time to adjust to the noise and motion of Always Home Cam." If your dog is still scared of the vacuum cleaner, imagine if that vacuum cleaner magically came to life when you weren't home and started flying around the room.
</p>

<div>
	 
</div>

<div>
	<img alt="Blink-Doorbell-1440x960.png" class="ipsImage" data-ratio="75.10" height="480" width="720" src="https://cdn.arstechnica.net/wp-content/uploads/2021/09/Blink-Doorbell-1440x960.png">
</div>

<div>
	The Blink Doorbell camera.
</div>

<div>
	 
</div>

<div>
	<img alt="59-1440x1080.jpg" class="ipsImage" data-ratio="75.10" height="540" width="720" src="https://cdn.arstechnica.net/wp-content/uploads/2021/09/59-1440x1080.jpg">
</div>

<div>
	The solar mount for the Blink Outdoor camera.
</div>

<div>
	 
</div>

<div>
	<img alt="60.jpg" class="ipsImage" data-ratio="75.10" height="540" width="720" src="https://cdn.arstechnica.net/wp-content/uploads/2021/09/60.jpg">
</div>

<div>
	The floodlight mount for the Blink Outdoor camera.
</div>

<div>
	 
</div>

<p>
	In other camera news, there is also a doorbell: <a href="https://amzn.to/2XXjEEo" rel="external nofollow" target="_blank">the Blink Doorbell</a>. For $49.99, this doorbell camera does 30 fps, 1080p video with IR night vision and two-way audio. It runs on 2.4 GHz 802.11n Wi-Fi, and if you don't want to power it with a doorbell wire, it can take two AA batteries. Like all the other Blink cameras, this is meant to be simple, cheap, and compatible with the Amazon Alexa ecosystem. There are some local storage capabilities via the Blink Sync Module 2, or you can pay a monthly fee for cloud storage.
</p>

<p>
	 
</p>

<p>
	There are also two accessories for the Blink Outdoor camera: a <a href="https://amzn.to/2XZCFGf" rel="external nofollow" target="_blank">$39.99 Floodlight mount</a> (it adds a motion sensor) and two LEDs (they add 700 lumens of power and motion-activated recording). There's also a <a href="https://amzn.to/2WjoDyO" rel="external nofollow" target="_blank">$129.98 Solar Panel Mount</a> for the Blink Outdoor camera, freeing you from having to run rely on the usual AAs. The solar mount has a single "pre-installed" 18650 battery. Whether or not the battery is user-replaceable is unclear, and how long of a runtime that battery gives you is equally vague.
</p>

<h2>
	The Ring + eero Security System
</h2>

<div>
	<img alt="61.jpg" class="ipsImage" data-ratio="75.10" height="540" width="720" src="https://cdn.arstechnica.net/wp-content/uploads/2021/09/61.jpg">
</div>

<div>
	The Ring Alarm Pro base station. It's so big because it has a battery backup.
</div>

<div>
	 
</div>

<div>
	<img alt="51wiMoT5m9L._SL1000_.jpg" class="ipsImage" data-ratio="75.10" height="540" width="540" src="https://cdn.arstechnica.net/wp-content/uploads/2021/09/51wiMoT5m9L._SL1000_.jpg">
</div>

<div>
	One of the door/window sensors.
</div>

<div>
	 
</div>

<div>
	<img alt="51Of1F-JjzL._SL1000_.jpg" class="ipsImage" data-ratio="75.10" height="540" width="540" src="https://cdn.arstechnica.net/wp-content/uploads/2021/09/51Of1F-JjzL._SL1000_.jpg">
</div>

<div>
	The 8-piece kit.
</div>

<div>
	 
</div>

<p>
	One more product before we go: the Ring Alarm Pro. This is a follow-up to the Ring Alarm home security system from last year. The main difference is that the Alarm Pro combines two of Amazon's acquisitions: a Ring alarm system and an eero WiFi 6 mesh router. This will wirelessly wire up your home with Internet and protect it, all in one big box. The <a href="https://amzn.to/3oidnhF" rel="external nofollow" target="_blank">starter kit is $299.99</a> and gets you eight items: one Alarm Pro Base Station, one Keypad, four Contact Sensors, one Motion Detector, and one Alarm Range Extender.
</p>

<p>
	 
</p>

<p>
	The Base Station seems to be the only different item from last year, with the eero Wi-Fi 6 router functionality as the only new addition. It's fully compatible with the eero mesh system, so just add another mesh point if you need one. The other widgets still use Z-Wave for low-power connectivity. If you have last year's version of the Ring Alarm and want to upgrade to the Wi-Fi version, that'll cost $249 for just the base station. The new Alarm Pro comes out November 3.
</p>

<p>
	 
</p>

<p>
	Note: Ars Technica may earn compensation for sales from links on this post through <a href="https://arstechnica.com/affiliate-link-policy/" rel="external nofollow">affiliate programs</a>.
</p>

<p>
	 
</p>

<p>
	Listing image by <a href="https://www.amazon.com/" rel="external nofollow">Amazon</a>
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://arstechnica.com/gadgets/2021/09/amazon-takes-on-nest-with-an-ultra-cheap-60-smart-thermostat/" rel="external nofollow">Amazon’s indoor camera drone is ready to fly around your house</a>
</p>
]]></description><guid isPermaLink="false">2522</guid><pubDate>Wed, 29 Sep 2021 05:47:02 +0000</pubDate></item><item><title>Amazon Astro is &#x2018;terrible&#x2019; and will &#x2018;throw itself down&#x2019; stairs, developers reportedly claim</title><link>https://nsaneforums.com/news/technology-news/amazon-astro-is-%E2%80%98terrible%E2%80%99-and-will-%E2%80%98throw-itself-down%E2%80%99-stairs-developers-reportedly-claim-r2513/</link><description><![CDATA[<div>
	<div>
		<p>
			<strong>Documents about how it works have also leaked</strong>
		</p>
	</div>
</div>

<div>
	<div>
		<figure>
			<picture data-cdata='{"image_id":69923158,"ratio":"*"}' data-cid="site/picture_element-1632870143_6086_22982"> <source sizes="(min-width: 1221px) 846px, (min-width: 880px) calc(100vw - 334px), 100vw" srcset="https://cdn.vox-cdn.com/thumbor/VRm2Ix1gLDiOZg4zv1r2ubVplsc=/0x0:3000x2000/320x213/filters:focal(1260x760:1740x1240):format(webp)/cdn.vox-cdn.com/uploads/chorus_image/image/69923158/amazon_astro_home_robot_4773_2.0.jpg 320w, https://cdn.vox-cdn.com/thumbor/xTBU3nUvUsATJHZtc6_vCve1dnk=/0x0:3000x2000/620x413/filters:focal(1260x760:1740x1240):format(webp)/cdn.vox-cdn.com/uploads/chorus_image/image/69923158/amazon_astro_home_robot_4773_2.0.jpg 620w, https://cdn.vox-cdn.com/thumbor/Ml07Cx9olf0wYQ_wGka-EmcU538=/0x0:3000x2000/920x613/filters:focal(1260x760:1740x1240):format(webp)/cdn.vox-cdn.com/uploads/chorus_image/image/69923158/amazon_astro_home_robot_4773_2.0.jpg 920w, https://cdn.vox-cdn.com/thumbor/ClGmtBnthvJVMbNJ0NkaF7pb110=/0x0:3000x2000/1220x813/filters:focal(1260x760:1740x1240):format(webp)/cdn.vox-cdn.com/uploads/chorus_image/image/69923158/amazon_astro_home_robot_4773_2.0.jpg 1220w, https://cdn.vox-cdn.com/thumbor/OeS8-B1DnavOGykZvgybc0P17Tg=/0x0:3000x2000/1520x1013/filters:focal(1260x760:1740x1240):format(webp)/cdn.vox-cdn.com/uploads/chorus_image/image/69923158/amazon_astro_home_robot_4773_2.0.jpg 1520w, https://cdn.vox-cdn.com/thumbor/rv9fKwUaEfJAr5WZi1G8wtfqk9Y=/0x0:3000x2000/1820x1213/filters:focal(1260x760:1740x1240):format(webp)/cdn.vox-cdn.com/uploads/chorus_image/image/69923158/amazon_astro_home_robot_4773_2.0.jpg 1820w, https://cdn.vox-cdn.com/thumbor/-eSHSAPkViV8RNcVT3bd5vti4u0=/0x0:3000x2000/2120x1413/filters:focal(1260x760:1740x1240):format(webp)/cdn.vox-cdn.com/uploads/chorus_image/image/69923158/amazon_astro_home_robot_4773_2.0.jpg 2120w, https://cdn.vox-cdn.com/thumbor/ncGXJq3HNhMiw6GDIt__ptv4RFU=/0x0:3000x2000/2420x1613/filters:focal(1260x760:1740x1240):format(webp)/cdn.vox-cdn.com/uploads/chorus_image/image/69923158/amazon_astro_home_robot_4773_2.0.jpg 2420w" type="image/webp"> <img alt="amazon_astro_home_robot_4773_2.0.jpg" data-ratio="75.10" data-upload-width="3000" sizes="(min-width: 1221px) 846px, (min-width: 880px) calc(100vw - 334px), 100vw" srcset="https://cdn.vox-cdn.com/thumbor/el697n0GT89byZrpCvBWRzhwl7U=/0x0:3000x2000/320x213/filters:focal(1260x760:1740x1240)/cdn.vox-cdn.com/uploads/chorus_image/image/69923158/amazon_astro_home_robot_4773_2.0.jpg 320w, https://cdn.vox-cdn.com/thumbor/5X9wadJ5WI9LWYEFkO32Dw_VhgY=/0x0:3000x2000/620x413/filters:focal(1260x760:1740x1240)/cdn.vox-cdn.com/uploads/chorus_image/image/69923158/amazon_astro_home_robot_4773_2.0.jpg 620w, https://cdn.vox-cdn.com/thumbor/iB8cXtqQLN6SDmYKdtsNrpoOcNU=/0x0:3000x2000/920x613/filters:focal(1260x760:1740x1240)/cdn.vox-cdn.com/uploads/chorus_image/image/69923158/amazon_astro_home_robot_4773_2.0.jpg 920w, https://cdn.vox-cdn.com/thumbor/Pl49mCGpfOR8CgUKEI1zezmkKbc=/0x0:3000x2000/1220x813/filters:focal(1260x760:1740x1240)/cdn.vox-cdn.com/uploads/chorus_image/image/69923158/amazon_astro_home_robot_4773_2.0.jpg 1220w, https://cdn.vox-cdn.com/thumbor/Tb1_jKNyg3whFCkQdnpIVJWS32U=/0x0:3000x2000/1520x1013/filters:focal(1260x760:1740x1240)/cdn.vox-cdn.com/uploads/chorus_image/image/69923158/amazon_astro_home_robot_4773_2.0.jpg 1520w, https://cdn.vox-cdn.com/thumbor/QNGWNubhVRptqxyKFkw0YlOJy6w=/0x0:3000x2000/1820x1213/filters:focal(1260x760:1740x1240)/cdn.vox-cdn.com/uploads/chorus_image/image/69923158/amazon_astro_home_robot_4773_2.0.jpg 1820w, https://cdn.vox-cdn.com/thumbor/xKW8D8nVGdD0uMN2h_jxR5TK-sQ=/0x0:3000x2000/2120x1413/filters:focal(1260x760:1740x1240)/cdn.vox-cdn.com/uploads/chorus_image/image/69923158/amazon_astro_home_robot_4773_2.0.jpg 2120w, https://cdn.vox-cdn.com/thumbor/q9Lse2xSbHCQURwn4kkfOwiIuZI=/0x0:3000x2000/2420x1613/filters:focal(1260x760:1740x1240)/cdn.vox-cdn.com/uploads/chorus_image/image/69923158/amazon_astro_home_robot_4773_2.0.jpg 2420w" src="https://cdn.vox-cdn.com/thumbor/ijyUFSVgvRXsOm8am1J5fD_vCz8=/0x0:3000x2000/1200x800/filters:focal(1260x760:1740x1240)/cdn.vox-cdn.com/uploads/chorus_image/image/69923158/amazon_astro_home_robot_4773_2.0.jpg"> </source></picture>

			<figcaption>
				When you see a flight of stairs.
			</figcaption>
			Photo by Dan Seifert / The Verge
		</figure>

		<div>
			<p id="xaEiqf">
				Some of the people building Amazon’s Astro home robot are not impressed with it, <a href="https://www.vice.com/en/article/93ypp8/leaked-documents-amazon-astro-surveillance-robot-tracking" rel="external nofollow">according to a report by Vice</a>. One person who worked on the robot, which <a href="https://www.theverge.com/2021/9/28/22697244/amazon-astro-home-robot-hands-on-features-price" rel="external nofollow">was announced today</a>, reportedly called it a “disaster that’s not ready for release,” while another said it was “terrible,” and the idea that it’d be a useful accessibility device (part of Amazon’s pitch is that Astro can help with elder care) was “absurdist nonsense.” The sources also mentioned that the bot doesn’t handle stairs well, with one even saying that it would “throw itself down” them “if presented the opportunity.”
			</p>

			<p>
				 
			</p>

			<p id="T0wMrR">
				To make matters worse, Vice also reports that the robot is fragile and that several devices had broken. That’s not great news for a $1,000 (or $1,449) robot that lives on the floor, where it’s prone to being stepped on by children, kicked by inattentive adults, or attacked by pets displeased with its presence.
			</p>

			<div>
				<aside id="7Mz2z9">
					<p>
						 
					</p>

					<p>
						<span style="font-size:18px;"><strong>Astro is always watching</strong></span>
					</p>
				</aside>
			</div>

			<p>
				 
			</p>

			<p id="sJBBVd">
				Leaked documents and videos of developer meetings obtained by Vice also show that Astro is doing a lot of surveillance with its facial recognition systems, and the feature where it follows people around if it doesn’t recognize them. Vice’s sources say that it’s not great at actually figuring out who people are, which could lead to Astro annoyingly nipping at the heels of people it should know. One of the people who worked on it called its data collection “a privacy nightmare.”
			</p>

			<p>
				 
			</p>

			<p id="LxlzjV">
				It’s not necessarily surprising that Astro is always watching, though — it comes with a Ring Protect Pro subscription, and Amazon’s own marketing for the robot shows off that it can be used as a security device (but in the context of wild animals entering your home rather than people). The most surprising thing is that we’re seeing leaked documents, videos, and hearing from grudging developers on the same day the device was announced. Someone, or multiple someones, inside Amazon must not be swayed by the robot’s charms.
			</p>

			<p>
				 
			</p>

			<div class="ipsEmbeddedVideo" contenteditable="false">
				<div>
					<iframe allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen="" frameborder="0" height="113" src="https://nsaneforums.com/applications/core/interface/index.html" width="200" data-embed-src="https://www.youtube.com/embed/sj1t3msy8dc?feature=oembed"></iframe>
				</div>
			</div>

			<p>
				 
			</p>

			<p id="yizb2o">
				The leak also somewhat recontextualizes <a href="https://www.theverge.com/2021/9/28/22698401/amazon-astro-invite-preorder-how-to-info-early-access-price" rel="external nofollow">Amazon’s invite-based rollout</a>. You currently can’t just buy the robot, you have to request an invite, a process which requires filling out a survey to indicate whether your house would be a good fit for Astro (which includes a question about what style stairs you have). It’s possible Amazon is trying to put these bots into the best case scenario, to see if they can even survive that.
			</p>
		</div>
	</div>
</div>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.theverge.com/2021/9/28/22699284/amazon-astro-real-world-stairs-fragile-developer-claims-documents-tracking" rel="external nofollow">Amazon Astro is ‘terrible’ and will ‘throw itself down’ stairs, developers reportedly claim</a>
</p>
]]></description><guid isPermaLink="false">2513</guid><pubDate>Tue, 28 Sep 2021 23:23:56 +0000</pubDate></item><item><title>Amazon&#x2019;s Astro Is a Robot Without a Cause</title><link>https://nsaneforums.com/news/technology-news/amazon%E2%80%99s-astro-is-a-robot-without-a-cause-r2512/</link><description><![CDATA[<div>
	<header data-event-boundary="click" data-event-click='{"pattern":"ContentHeader"}' data-in-view='{"pattern":"ContentHeader"}' data-include-experiments="true">
		<div>
			<div>
				<div>
					<strong>It’s the company’s first foray into mobile robots for the home, and likely not its last.</strong>
				</div>

				<div>
					 
				</div>

				<div>
					<img alt="Gear-Amazon-Astro-moving-around-home.jpg" class="ipsImage" data-ratio="75.10" height="540" width="720" src="https://media.wired.com/photos/61538083098d958b61f393dc/master/w_2560,c_limit/Gear-Amazon-Astro-moving-around-home.jpg">
				</div>
			</div>

			<div data-testid="ContentHeaderLeadAsset">
				<figure>
					<figcaption data-event-boundary="click" data-event-click='{"pattern":"Caption"}' data-in-view='{"pattern":"Caption"}' data-include-experiments="true">
						Photograph: Collin Hughes/Amazon
					</figcaption>
				</figure>
			</div>
		</div>
	</header>
</div>

<div data-attribute-verso-pattern="article-body">
	<div data-event-boundary="click" data-event-click='{"pattern":"ChunkedArticleContent"}' data-in-view='{"pattern":"ChunkedArticleContent"}' data-include-experiments="true">
		<div>
			<div>
				<div data-journey-hook="client-content">
					<p>
						What do you get when you mix Amazon’s <a href="https://www.wired.com/gallery/best-alexa-and-amazon-echo-speakers/" rel="external nofollow">Alexa</a> voice assistant with an <a href="https://www.wired.com/gallery/best-smart-displays/" rel="external nofollow">Echo Show</a> tablet, give it a hefty dose of artificial intelligence, integrate it all with <a href="https://www.wired.com/story/ring-hacks-exemplify-iot-security-crisis/" rel="external nofollow">Ring’s home security system</a>, and let it roll around your home autonomously? You get a robot for the sake of a robot.
					</p>

					<p>
						 
					</p>

					<p>
						Actually, you <a href="https://www.wired.com/story/everything-amazon-announced-september-2021/" rel="external nofollow">get Astro</a>, Amazon’s long-rumored home robot. The company has been working on this for nearly four years, and it has plans for Astro. It’s just not quite sure exactly what those are yet, so it’s offering the <a data-event-click='{"element":"ExternalLink","outgoingURL":"https://www.amazon.com/Introducing-Amazon-Astro/dp/B078NSDFSB?tag=w050b-20"}' data-offer-url="https://www.amazon.com/Introducing-Amazon-Astro/dp/B078NSDFSB?tag=w050b-20" href="https://www.amazon.com/Introducing-Amazon-Astro/dp/B078NSDFSB?tag=w050b-20" rel="external nofollow" target="_blank">robot by invitation only</a>, hoping thousands of early customers can help define what it’s for. The 2-foot-tall, 20-pound robot has a 10-inch touchscreen; includes an array of sensors, cameras, and microphones; and can wheel, multi-directionally, around your home. It costs $1,000.
					</p>

					<p>
						 
					</p>

					<p>
						Astro underscores Amazon’s seriousness about robotics, an area the company has invested heavily in for years as part of its warehouse network. It also shows how serious Amazon is about getting its devices—and its services—into every corner of our homes. But Astro, as adorable as it is, is a robot without a cause, at least for now. Amazon’s hardware chief Dave Limp identified a few potential use cases in an interview with WIRED, including eldercare and home security. But ultimately, Limp says, the company wants to get it into customers’ hands so it can identify “unique use cases” for the bot. 
					</p>

					<div aria-level="3" role="heading">
						 
					</div>

					<div aria-level="3" role="heading">
						<span style="font-size:18px;"><strong>Robot Rock</strong></span>
					</div>

					<div aria-level="3" role="heading">
						 
					</div>

					<div aria-level="3" role="heading">
						<img alt="astro_media_animation-gif_01.gif" class="ipsImage" data-ratio="75.10" height="404" width="720" src="https://media.wired.com/photos/61534b8baef2e52736bc9fe1/master/w_1600,c_limit/astro_media_animation-gif_01.gif">
					</div>

					<figure>
						<figcaption data-event-boundary="click" data-event-click='{"pattern":"Caption"}' data-in-view='{"pattern":"Caption"}' data-include-experiments="true">
							Video: Amazon
						</figcaption>
					</figure>

					<p>
						The Astro bot is powered by two Qualcomm chips, with artificial intelligence processing built into the chipset. Its operating system is based on FireOS and Linux. It has five motors to give it some oomph, and it can carry a small payload on the back (anything that weighs less than 5 pounds).
					</p>

					<div data-event-boundary="click" data-event-click='{"pattern":"h"}' data-in-view='{"pattern":"h"}' data-include-experiments="true">
						 
					</div>

					<p>
						Its face is a plain-looking tablet, but this is where you can swipe or tap your way through commands or video chats without having to rely on voice control. It's also where you'll find Astro's eyes, which are meant to give it more life than the cold, glass screens we're used to. Alexa is built into Astro too, so you can also dad-joke with it to your heart’s content.
					</p>

					<div data-attr-viewport-monitor="inline-recirc" data-event-boundary="click" data-event-click='{"pattern":"InlineRecirc"}' data-in-view='{"pattern":"InlineRecirc"}' data-include-experiments="true">
						 
					</div>

					<p>
						Early reports have likened this to a <a href="https://www.wired.com/gallery/best-robot-vacuums/" rel="external nofollow">robot vacuum cleaner</a>, and they’re not wrong, minus the whole clean-your-house part. Astro is battery operated and, when it’s depleted, finds its way back to a fixed charging dock. Even more akin to a robot vacuum cleaner are the array of sensors in the bot: Astro is packed with “ultrasonic sensors, time-of-flight cameras, and other imaging tools that let the robot know what’s around it and where it’s going,” according to <a data-event-click='{"element":"ExternalLink","outgoingURL":"https://www.theverge.com/2021/9/28/22697244/amazon-astro-home-robot-hands-on-features-price"}' data-offer-url="https://www.theverge.com/2021/9/28/22697244/amazon-astro-home-robot-hands-on-features-price" href="https://www.theverge.com/2021/9/28/22697244/amazon-astro-home-robot-hands-on-features-price" rel="external nofollow" target="_blank">The Verge</a>. It also has a periscope camera that extends from the top of the bot.
					</p>
				</div>
			</div>

			<div>
				<div data-journey-hook="client-content">
					<p>
						 
					</p>

					<p>
						This begs the inevitable question of what Astro’s purpose is, and the answer seems to be a little bit of everything. Its 5-megapixel video calling camera can be used for chats with the grandparents. You can teach it to follow you around while it plays music from its tiny speakers. You can use it to transport small goods to someone else on the same floor—Astro doesn’t go up or down stairs—or you can use it to monitor your Ring home security cameras. You can socially engage with it or treat it like another pet.
					</p>

					<div>
						<div data-node-id="fnspz">
							 
						</div>
					</div>

					<p>
						Limp says that over the past year, while he's had Astro in his own home, he's grown accustomed to Astro waiting at the door for him. Astro may not have the humanoid characteristics that catapult it into uncanny valley territory, but Amazon believes it can still be <a href="https://www.wired.com/review/rocki-robot/" rel="external nofollow">like family</a>.
					</p>

					<div aria-level="3" role="heading">
						 
					</div>

					<div aria-level="3" role="heading">
						<span style="font-size:18px;"><strong>Beta Test</strong></span>
					</div>

					<p>
						 
					</p>

					<p>
						Limp wouldn’t say exactly how many robot units the company plans to make available to early customers, or what Amazon's timeline is for a wider release of Astro. He says the team plans to build a “meaningful number” of robots—not millions, but not just hundreds, either. 
					</p>

					<p>
						 
					</p>

					<p>
						“I don’t think we know what the upper bound of what we’re going to build is, either,” Limp says. “It’s a little bit like when we launched the Echo; we really under-forecasted that.”
					</p>

					<p>
						 
					</p>

					<p>
						Limp acknowledges that it’s not an exact parallel. The Echo speakers are much cheaper than Astro and primarily process voice commands (though some devices <a href="https://www.wired.com/gallery/best-alexa-and-amazon-echo-speakers/" rel="external nofollow">also have screens</a>). The challenges with Astro are in some ways more complex; it has to map and navigate physical spaces in addition to processing voice commands and supporting video streams.
					</p>

					<p>
						 
					</p>

					<p>
						And, as with other devices Amazon has designed for the home, products like Astro raise questions about user privacy and consent around recording devices. Another Amazon venture into home robotics, the <a href="https://www.wired.com/story/ring-always-home-cam-september-2021/" rel="external nofollow">Ring Always Home Cam</a> was first announced last September and was met with a <a href="https://www.wired.com/story/ring-always-home-cam/" rel="external nofollow">backlash from privacy advocates</a>. Amazon and Ring delayed the product by a year—Limp says he sometimes has to adopt the role of “chief slowdown officer”—until the company felt it was ready to ship to customers. Even still, the home drone is also available by invite only.
					</p>

					<p>
						 
					</p>

					<p>
						With Astro, all of the map processing and storage is supposed to happen locally on the robot. Facial recognition data is also stored locally. Limp insists that early users will have the ability to delete their voice data, or a map made of their home, daily. “If they receive an invite, it’s not like we’re asking them to sign a document saying they won’t delete their data,” Limp says. 
					</p>

					<div data-attr-viewport-monitor="inline-recirc" data-event-boundary="click" data-event-click='{"pattern":"InlineRecirc"}' data-in-view='{"pattern":"InlineRecirc"}' data-include-experiments="true">
						 
					</div>

					<p>
						But he also hopes some customers will opt to not delete their data, because “that would defeat some of the help in making the product better.” Beta testers, activated.
					</p>
				</div>
			</div>
		</div>
	</div>
</div>

<p>
	 
</p>

<p>
	<a href="https://www.wired.com/story/amazon-astro/" rel="external nofollow">Amazon’s Astro Is a Robot Without a Cause</a>
</p>

<p>
	 
</p>

<p>
	(May require free registration to view)
</p>
]]></description><guid isPermaLink="false">2512</guid><pubDate>Tue, 28 Sep 2021 23:20:57 +0000</pubDate></item><item><title>Amazon announces Echo Show 15, a 15-inch smart display powered by Alexa</title><link>https://nsaneforums.com/news/technology-news/amazon-announces-echo-show-15-a-15-inch-smart-display-powered-by-alexa-r2511/</link><description><![CDATA[<header>
	<div>
		<div>
			<div>
				<img alt="Amazon-Echo-Show-15.jpg" class="ipsImage" data-ratio="75.10" height="526" width="720" src="https://mspoweruser.com/wp-content/uploads/2021/09/Amazon-Echo-Show-15.jpg">
			</div>
		</div>
	</div>
</header>

<p>
	 
</p>

<p>
	Amazon today announced Echo Show 15, a 15.6-inch, 1080p Full HD smart display, powered by Alexa. Echo Show 15 comes with Amazon AZ2 Neural Edge processor, a redesigned home screen with more customization features, new personalization features with visual ID, and several new Alexa experiences.
</p>

<p>
	 
</p>

<p>
	Visual ID enables Alexa to recognize you and personalize the information displayed. If you walk in front of Echo Show 15, Alexa will recognize you and the screen will automatically update to show you a custom greeting, your personal reminders, calendar events, recently played music, or personal notes from others in your home.
</p>

<p>
	 
</p>

<p>
	<strong>Echo Show 15 features:</strong>
</p>

<p>
	 
</p>

<ul>
	<li>
		Alexa can show you even more – With a 15.6” Full HD (1080p) smart display and 5 MP camera, family organization and entertainment will look brilliant. You can choose portrait or landscape orientation.
	</li>
	<li>
		At-a-glance organization – Use Alexa-powered widgets to keep the family on track with shared calendars, personal sticky notes, to-do lists, shopping lists, and assigned reminders.
	</li>
	<li>
		Alexa can help feed the fam – Get daily recipe ideas, cook along hands-free with step-by-step instructions, add ingredients to your shopping cart, or simply order meal kits or takeout.
	</li>
	<li>
		Your smart home at your fingertips – Add your most-used smart devices to the home screen for quick access, and see all compatible devices together on one dashboard.
	</li>
	<li>
		So much entertainment – Catch up on your favorites with Prime Video, Netflix, and more. Or stream radio stations, podcasts, and audiobooks with Amazon Music, Spotify, and Audible.
	</li>
	<li>
		Your memories in full-screen – With the Photo Frame feature, you can use your Echo Show 15 to display your albums from Amazon Photos or Facebook.
	</li>
	<li>
		Your day, your way – Family members can create personal profiles and use visual ID and voice ID to see their specific appointments, reminders, recently played music, and more.
	</li>
	<li>
		Designed to protect your privacy – Amazon is not in the business of selling your personal information to others. Built with multiple layers of privacy controls including a mic/camera off button and a built-in camera shutter.
	</li>
</ul>

<p>
	 
</p>

<p>
	You can pre-order it <a href="http://www.amazon.com/dp/B08MQLDFF6/?tag=wmpowcom-20" rel="external nofollow" target="_blank">here for $249.</a>
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://mspoweruser.com/amazon-echo-show-15-15-inch-smart-display/" rel="external nofollow">Amazon announces Echo Show 15, a 15-inch smart display powered by Alexa</a>
</p>
]]></description><guid isPermaLink="false">2511</guid><pubDate>Tue, 28 Sep 2021 23:15:22 +0000</pubDate></item><item><title>Logitech&#x2019;s MX Keys Mini ditches the numpad for other useful keys</title><link>https://nsaneforums.com/news/technology-news/logitech%E2%80%99s-mx-keys-mini-ditches-the-numpad-for-other-useful-keys-r2493/</link><description><![CDATA[<div>
	<div>
		<p>
			<strong>A more compact option that costs the same $99.99 price as the full-sized MX Keys</strong>
		</p>

		<div>
			 
		</div>

		<div>
			<p>
				<strong>If you buy something from a Verge link, Vox Media may earn a commission. See our <a href="https://www.theverge.com/ethics-statement" target="_blank" rel="external nofollow">ethics statement</a>.</strong>
			</p>
		</div>
	</div>
</div>

<div>
	<div>
		<figure>
			<p>
				<picture data-cdata='{"image_id":69918952,"ratio":"*"}' data-cid="site/picture_element-1632812463_9419_94848"> <source sizes="(min-width: 1221px) 846px, (min-width: 880px) calc(100vw - 334px), 100vw" srcset="https://cdn.vox-cdn.com/thumbor/-SkGhkJIUEWYvZEQxnbfjs9hNf8=/0x0:1570x1047/320x213/filters:focal(660x399:910x649):format(webp)/cdn.vox-cdn.com/uploads/chorus_image/image/69918952/mxkeysminihero.0.jpg 320w, https://cdn.vox-cdn.com/thumbor/tJpbDmD8JaeqaL7Mqo9DY6cb4e4=/0x0:1570x1047/620x413/filters:focal(660x399:910x649):format(webp)/cdn.vox-cdn.com/uploads/chorus_image/image/69918952/mxkeysminihero.0.jpg 620w, https://cdn.vox-cdn.com/thumbor/mwtBgH5O8S1tAHLdO2UMQZ8bKYA=/0x0:1570x1047/920x613/filters:focal(660x399:910x649):format(webp)/cdn.vox-cdn.com/uploads/chorus_image/image/69918952/mxkeysminihero.0.jpg 920w, https://cdn.vox-cdn.com/thumbor/A2pvVU2aNiU1DsJzNUOqW1v-KuY=/0x0:1570x1047/1220x813/filters:focal(660x399:910x649):format(webp)/cdn.vox-cdn.com/uploads/chorus_image/image/69918952/mxkeysminihero.0.jpg 1220w, https://cdn.vox-cdn.com/thumbor/35f9UcjbHvtsBiYLl0jGBmRiVis=/0x0:1570x1047/1520x1013/filters:focal(660x399:910x649):format(webp)/cdn.vox-cdn.com/uploads/chorus_image/image/69918952/mxkeysminihero.0.jpg 1520w, https://cdn.vox-cdn.com/thumbor/OrpO0OVwtmK9FnDXpcMFlca2fw4=/0x0:1570x1047/1820x1213/filters:focal(660x399:910x649):format(webp)/cdn.vox-cdn.com/uploads/chorus_image/image/69918952/mxkeysminihero.0.jpg 1820w, https://cdn.vox-cdn.com/thumbor/HuUQZmhXHWL62soUY9eh3AEYOHk=/0x0:1570x1047/2120x1413/filters:focal(660x399:910x649):format(webp)/cdn.vox-cdn.com/uploads/chorus_image/image/69918952/mxkeysminihero.0.jpg 2120w, https://cdn.vox-cdn.com/thumbor/aX6MYCyyIWAVOetg4IigO16Q9-M=/0x0:1570x1047/2420x1613/filters:focal(660x399:910x649):format(webp)/cdn.vox-cdn.com/uploads/chorus_image/image/69918952/mxkeysminihero.0.jpg 2420w" type="image/webp"> </source></picture>
			</p>

			<p>
				<img alt="mxkeysminihero.0.jpg" class="ipsImage" data-ratio="75.10" height="479" width="720" src="https://cdn.vox-cdn.com/thumbor/mwtBgH5O8S1tAHLdO2UMQZ8bKYA=/0x0:1570x1047/920x613/filters:focal(660x399:910x649):format(webp)/cdn.vox-cdn.com/uploads/chorus_image/image/69918952/mxkeysminihero.0.jpg">
			</p>

			<figcaption>
				The function row has dedicated emoji, voice dictation and mic mute keys.
			</figcaption>
			Image: Logitech
		</figure>

		<div>
			<p id="KNMukU">
				Logitech’s MX Keys Mini is a compact, platform-agnostic wireless keyboard that lacks the numpad <a href="https://www.theverge.com/circuitbreaker/2019/9/4/20848369/logitech-mx-master-3-keys-best-mouse-even-better-magnetic-scroll-wheel" rel="external nofollow">found on the standard MX Keys</a>. It costs the same amount at $99.99 despite its smaller size, yet there might be enough additions to make this one the preferable option (you know, if spending $100 on a keyboard is feasible).
			</p>

			<p>
				 
			</p>

			<p id="dUzvYT">
				Logitech added a dedicated emoji key to the top row of Mini’s function keys that lets you add some personality to your messages, in addition to a voice dictation key and a mic mute key that mutes on a system level, not per application. Joining them on the function row are media and volume keys, along with an option to adjust the brightness of the keyboard backlighting.
			</p>

			<p>
				 
			</p>

			<p id="bs0Lx1">
				The MX Keys Mini charges via USB-C and can flip between three Bluetooth devices via keys that easily let you switch. But something you should know about this model is that it doesn’t ship with Logitech’s unifying USB receiver, and it won’t work with one you might already have. It’s a Bluetooth-only affair, though it is compatible with <a data-cdata='{"rewritten_url":"https://go.redirectingat.com?id=66960X1514734\u0026xs=1\u0026url=https://www.logitech.com/en-us/products/mice/logi-bolt-usb-receiver.956-000007.html\u0026referrer=theverge.com\u0026sref=https://www.theverge.com/2021/9/28/22687565/logitech-mx-keys-mini-wireless-keyboard-features-price-colors\u0026xcust=___vg__p_22451606__m_m-placeholder__s_s-placeholder__t_w__c_c-placeholder__r_r-placeholder__d_d-placeholder","subtag_max_length":50,"subtag_delim_length":3,"subtag_key":"xcust","subtag_data":{"id":"66960X1514734","xs":"1","url":"https://www.logitech.com/en-us/products/mice/logi-bolt-usb-receiver.956-000007.html","referrer":"theverge.com","sref":"https://www.theverge.com/2021/9/28/22687565/logitech-mx-keys-mini-wireless-keyboard-features-price-colors","xcust":"___vg__p_22451606__m_m-placeholder__s_s-placeholder__t_w__c_c-placeholder__r_r-placeholder__d_d-placeholder"},"encode_subtag":false}' href="https://go.redirectingat.com?id=66960X1514734&amp;xs=1&amp;url=https://www.logitech.com/en-us/products/mice/logi-bolt-usb-receiver.956-000007.html&amp;referrer=theverge.com&amp;sref=https://www.theverge.com/2021/9/28/22687565/logitech-mx-keys-mini-wireless-keyboard-features-price-colors&amp;xcust=___vg__p_22451606__t_w__d_D" rel="external nofollow" target="_blank">Logitech’s new $14.99 Bolt USB receiver</a> that <a href="https://www.theverge.com/2021/9/1/22651973/logitech-logi-bolt-usb-dongle-bluetooth-security-le-keyboard-mouse-accessories" rel="external nofollow">lowers latency and adds more security</a>.
			</p>

			<p>
				 
			</p>

			<p id="7xpZxS">
				The MX Keys Mini shares a number of other features in common with the MX Keys. Its concave, matte-textured keys offer a pretty great typing experience. It also has backlighting that kicks on automatically when your hands appear over the keyboard, turning off a few seconds after you pull away.
			</p>

			<figure>
				<p>
					<picture data-cdata='{"asset_id":22873081,"ratio":"*"}' data-cid="site/picture_element-1632812463_4878_94849"> <source sizes="(min-width: 1221px) 846px, (min-width: 880px) calc(100vw - 334px), 100vw" srcset="https://cdn.vox-cdn.com/thumbor/6AhvWN3Nb_UVpkcWOCZcr4iVO5o=/0x0:2040x1360/320x0/filters:focal(0x0:2040x1360):format(webp):no_upscale()/cdn.vox-cdn.com/uploads/chorus_asset/file/22873081/mxkeysminicolors.jpg 320w, https://cdn.vox-cdn.com/thumbor/xbNiib39xq2nUa5JiUrnpWvwp5I=/0x0:2040x1360/520x0/filters:focal(0x0:2040x1360):format(webp):no_upscale()/cdn.vox-cdn.com/uploads/chorus_asset/file/22873081/mxkeysminicolors.jpg 520w, https://cdn.vox-cdn.com/thumbor/2m_59DaZk86bzDct72iIsobydMI=/0x0:2040x1360/720x0/filters:focal(0x0:2040x1360):format(webp):no_upscale()/cdn.vox-cdn.com/uploads/chorus_asset/file/22873081/mxkeysminicolors.jpg 720w, https://cdn.vox-cdn.com/thumbor/mgZm03dRYP5f5CFuunMItKAOXFQ=/0x0:2040x1360/920x0/filters:focal(0x0:2040x1360):format(webp):no_upscale()/cdn.vox-cdn.com/uploads/chorus_asset/file/22873081/mxkeysminicolors.jpg 920w, https://cdn.vox-cdn.com/thumbor/We-jkNiK6fqSGq1D5RWWn8-UhB4=/0x0:2040x1360/1120x0/filters:focal(0x0:2040x1360):format(webp):no_upscale()/cdn.vox-cdn.com/uploads/chorus_asset/file/22873081/mxkeysminicolors.jpg 1120w, https://cdn.vox-cdn.com/thumbor/bcP5T3HIe8v8F8SzLsnTB9XS4-w=/0x0:2040x1360/1320x0/filters:focal(0x0:2040x1360):format(webp):no_upscale()/cdn.vox-cdn.com/uploads/chorus_asset/file/22873081/mxkeysminicolors.jpg 1320w, https://cdn.vox-cdn.com/thumbor/qSOF9Wk2dY4Bl_uEe4hmmsgPu8c=/0x0:2040x1360/1520x0/filters:focal(0x0:2040x1360):format(webp):no_upscale()/cdn.vox-cdn.com/uploads/chorus_asset/file/22873081/mxkeysminicolors.jpg 1520w, https://cdn.vox-cdn.com/thumbor/7IPRNH1KQZ0CgPtrNXb3M5iRMIQ=/0x0:2040x1360/1720x0/filters:focal(0x0:2040x1360):format(webp):no_upscale()/cdn.vox-cdn.com/uploads/chorus_asset/file/22873081/mxkeysminicolors.jpg 1720w, https://cdn.vox-cdn.com/thumbor/uW3Ko2lqWa84mFtlsD9EWX2e6PY=/0x0:2040x1360/1920x0/filters:focal(0x0:2040x1360):format(webp):no_upscale()/cdn.vox-cdn.com/uploads/chorus_asset/file/22873081/mxkeysminicolors.jpg 1920w" type="image/webp"> </source></picture>
				</p>

				<p>
					<img alt="mxkeysminicolors.jpg" class="ipsImage" data-ratio="75.10" height="479" width="720" src="https://cdn.vox-cdn.com/thumbor/mgZm03dRYP5f5CFuunMItKAOXFQ=/0x0:2040x1360/920x0/filters:focal(0x0:2040x1360):format(webp):no_upscale()/cdn.vox-cdn.com/uploads/chorus_asset/file/22873081/mxkeysminicolors.jpg">
				</p>

				<figcaption>
					Available in three colorways. The MX Keys Mini for Mac comes only in the leftmost grey and white option.
				</figcaption>
			</figure>

			<p id="RsHhnY">
				The default version of the MX Keys Mini shows both Windows and macOS commands, and it’s also compatible with Chrome OS, Linux, Android, iOS, and iPadOS. It comes in three colorways: rose, pale gray, and graphite. If you’re a dedicated Apple user who’d rather not have start and alt buttons, Logitech makes a version that’s just for macOS and other Apple products. It’s the same price, but it comes in just the pale grey colorway, which resembles Apple’s older desktop keyboards.
			</p>

			<p>
				 
			</p>

			<p id="pFe3cQ">
				Logitech claims that the MX Keys Mini can deliver up to 10 days of battery life with the backlighting turned on, as it is by default. Though, it can apparently last up to five months with the backlighting off.
			</p>

			<p>
				 
			</p>

			<p id="ZrzbZR">
				You certainly don’t need to spend $99.99 to get a decent wireless keyboard with scissor switches. But the price for the MX Keys Mini might be easier to justify if you use multiple devices at your setup, and especially if you use the MX Master or Anywhere mouse. When used alongside one of those, <a href="https://www.theverge.com/circuitbreaker/2017/6/1/15715236/logitech-mx-master-2s-anywhere-mouse-flow-multiple-computer-support" rel="external nofollow">Logitech’s Flow feature lets you move files between macOS and Windows PCs</a>.
			</p>
		</div>
	</div>
</div>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.theverge.com/2021/9/28/22687565/logitech-mx-keys-mini-wireless-keyboard-features-price-colors" rel="external nofollow">Logitech’s MX Keys Mini ditches the numpad for other useful keys</a>
</p>
]]></description><guid isPermaLink="false">2493</guid><pubDate>Tue, 28 Sep 2021 07:16:07 +0000</pubDate></item><item><title>AMD CEO Lisa Su downplays the company&#x2019;s role in crypto mining</title><link>https://nsaneforums.com/news/technology-news/amd-ceo-lisa-su-downplays-the-company%E2%80%99s-role-in-crypto-mining-r2490/</link><description><![CDATA[<div>
	<div>
		<p>
			<strong>‘Dear Lisa, can you help me get a gaming card?’</strong>
		</p>
		 
	</div>
</div>

<div>
	<div>
		<div>
			<p id="IVIbwI">
				Can’t get a new graphics card for your PC? You might be tempted to blame <a href="https://www.theverge.com/2021/4/7/22372721/amd-radeon-rx-6800-xt-midnight-black-ebay-scalpers" rel="external nofollow">bots, scalpers</a> or cryptocurrency miners for that — but AMD CEO Lisa Su is downplaying the impact of crypto at the <a href="https://voxmediaevents.com/code2021" rel="external nofollow">2021 Code Conference</a> today. When asked about how big a deal crypto is for the chipmaker, she told the audience that it’s a rather small part of AMD’s business, called it “a pretty volatile space,” and suggested that it shouldn’t be a focus for AMD going forward either.
			</p>

			<p>
				 
			</p>

			<p id="wf2klE">
				That’s not a particularly surprising stance for several reasons. First, what upside there was for GPU makers like AMD and Nvidia has drastically shrunk — GPU prices have slowly been dropping amidst <a href="https://www.theverge.com/2021/6/23/22544367/china-crypto-crackdown-bitcoin-mining-sichuan-ban-hydro-cryptocurrency-trading'" rel="external nofollow">China’s cryptocurrency crackdown</a>, which only got stronger this past week as <a href="https://www.theverge.com/2021/9/24/22691472/china-central-bank-cryptocurrency-illegal-bitcoin" rel="external nofollow">China’s central bank officially banned cryptocurrency transactions entirely</a>. There have been reports of mass GPU sell-offs from mining regions going back months, although prices are still quite high.
			</p>

			<p>
				 
			</p>

			<p id="5XNFTH">
				Second, if she were to publicly say she supports AMD chasing crypto sales, that could be a really unpopular look when it comes to AMD’s hyper-vocal audience of gamers who believe that every sale to a crypto miner is a sale at their expense — and who also drive purchases of desktop CPUs and motherboards for AMD.
			</p>

			<p>
				 
			</p>

			<p id="aNbU5L">
				Su made it very clear in her reply at the Code Conference that gamers are top of mind: “We are trying really hard to get more products to gamers; I get so many ‘Dear Lisa, can you help me get a gaming card?’” she said. AMD already took some flak from gamers when it revealed <a href="https://www.pcgamer.com/amd-cryptocurrency-mining-limiter-ethereum/" rel="external nofollow">it wouldn’t block mining workloads with its new GPUs</a>, unlike <a href="https://www.theverge.com/circuitbreaker/2021/2/18/22290362/nvidia-will-not-reduce-3060-ti-3070-3080-3090-eth-mining" rel="external nofollow">Nvidia</a>. “At the end of the day we’re building for sort of consumer applications, and that’s where the focus is.”
			</p>

			<p>
				 
			</p>

			<p id="OB4r5F">
				But third, AMD may just not have a large enough supply of GPUs to tempt miners to begin with. While we don’t know how many current-gen GPUs the company has actually shipped, there are many signs that the company has sold precious few of them compared to its rival Nvidia.
			</p>

			<p>
				 
			</p>

			<p id="c4q0gZ">
				It’s far rarer to see an AMD GPU in stock, there are far fewer of them changing hands on sites like eBay, and not even one AMD GPU has broken into <a href="https://store.steampowered.com/hwsurvey/Steam-Hardware-Software-Survey-Welcome-to-Steam" rel="external nofollow">Steam’s Hardware Survey</a>, which provides a rough glimpse at how many of them have made it into PC gamers’ hands. Over 6 percent of gaming PCs included in the survey have one of the Nvidia 3000-series GPUs, but there isn’t a single recent AMD GPU on the list, which suggests none of them have accumulated more than a 0.15 percent share of Steam gamers. When Su says that crypto is “not a large piece of our business,” it’s possible she also means that new desktop GPUs are not a large piece of AMD’s business. Su did say in May that AMD was having to <a href="https://www.pcmag.com/news/chip-shortage-causes-amd-to-pivot-away-from-lower-end-pc-processors" rel="external nofollow">prioritize some components over others</a>, though she didn’t mention GPUs specifically.
			</p>

			<p>
				 
			</p>

			<p id="CGrFZh">
				Speaking of shortages, Su also addressed <a href="https://www.theverge.com/2021/8/31/22648372/willy-shih-chip-shortage-tsmc-samsung-ps5-decoder-interview" rel="external nofollow">the ongoing global chip shortage</a> onstage, reiterating that supplies will be “tight” this year and “likely tight” the first half of next year, but that “it’ll get better in 2022” as additional production capacity comes online. “It gets better next year, not immediately, but it’ll gradually get better as more plants come up,” she told the attendees at Code Conference.
			</p>

			<p>
				 
			</p>

			<p id="2DhgCq">
				Additional reporting by Dieter Bohn
			</p>
		</div>
	</div>
</div>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.theverge.com/2021/9/27/22697339/amd-crypto-mining-ceo-lisa-su-gpu-code-conference" rel="external nofollow">AMD CEO Lisa Su downplays the company’s role in crypto mining</a>
</p>
]]></description><guid isPermaLink="false">2490</guid><pubDate>Tue, 28 Sep 2021 05:18:05 +0000</pubDate></item><item><title>Need a new monitor for your computer? You can wear one on your face</title><link>https://nsaneforums.com/news/technology-news/need-a-new-monitor-for-your-computer-you-can-wear-one-on-your-face-r2478/</link><description><![CDATA[<p>
	<strong>Forget settling down in front of a computer monitor at work — someday, you might strap on a headset instead.</strong>
</p>

<p>
	 
</p>

<p>
	That might sound a bit like a ’90s cyberpunk fantasy, but it’s not really all that outlandish.
</p>

<p>
	 
</p>

<p>
	Beyond having more screens to work with for multi-tasking, there’s another benefit to wearing your computer’s screen(s) on your face: no one else can look at them. If you frequently work with sensitive files or data, the last thing you’d want is for a nosy neighbor on a plane or at a coffee shop peering over your shoulder. But these kinds of headsets can be cumbersome and in some cases could leave you feeling queasy.
</p>

<p>
	 
</p>

<p>
	More than a few tech companies are convinced that sophisticated screens shoved into glasses could represent the future of work. But they have different visions for how a screen you wear on your face should work.
</p>

<p>
	 
</p>

<p>
	Microsoft has built a chunk of its business around the HoloLens, which can display 2-D or 3-D content in the physical space workers occupy. Facebook is pushing new tools to turn virtual reality headsets like the Oculus Quest into tools employees can use to meet and collaborate in a virtual world. Meanwhile, a crop of headsets from companies like Lenovo and TCL are trying something a little more practical. Rather than thrust you into a world of conferences populated by 3-D avatars, these smart glasses try to replicate the experience of sitting in front of a computer monitor. (Or in some cases, lots of computer monitors.)
</p>

<p>
	 
</p>

<p>
	To be clear, these kinds of specialized gadgets are still far from hitting the mainstream.
</p>

<p>
	 
</p>

<p>
	“The people who are getting these now are technophiles who are willing to say ‘Hey, I’m going to take it, warts and all,’” said Ramon Llamas, a research director at market research firm IDC. “It’s probably not going to be until the third or fourth revision that we start seeing more mass-market interest.”
</p>

<p>
	 
</p>

<p style="text-align:center;">
	<img alt="AAORNoh.img?h=559&amp;w=874&amp;m=6&amp;q=60&amp;o=f&amp;l=f" class="ipsImage" data-ratio="75.10" height="460" width="720" src="https://img-s-msn-com.akamaized.net/tenant/amp/entityid/AAORNoh.img?h=559&amp;w=874&amp;m=6&amp;q=60&amp;o=f&amp;l=f" />
</p>

<p style="text-align:center;">
	<span style="font-size:12px;"><em>They might not look like it, but these glasses can act like a full-size computer monitor.</em></span>
</p>

<p style="text-align:center;">
	 
</p>

<p>
	<strong>How do they work?</strong>
</p>

<p>
	<br />
	Most of the headsets that fall into this category have a lot in common. They generally don’t have any processing power of their own, so they need to be connected to a proper computer — or a smartphone — to get anything done. So far, that means they rely on long USB cables, though companies like chipmaker Qualcomm are working to embed powerful mobile processors directly in these glasses so future models can go cord-free.
</p>

<p>
	 
</p>

<p>
	But what makes these headsets interesting are how they show you your work. Essentially, they put a tiny screen in front of each your eyes, positioned in just the right way to make each little display look like one big one. (If you’ve ever gone birdwatching with a pair of binoculars, you’ve seen this technique in action!) Assuming everything is plugged in correctly and working the way it’s supposed to, you’re able to just pop those glasses on and have a look around.
</p>

<p>
	 
</p>

<p>
	<strong>What can you do with them?</strong>
</p>

<p>
	<br />
	These headsets aren’t meant to lock you in some strange virtual conference room — instead, they basically act as secondary screens you wear instead of putting them on your desk.
</p>

<p>
	 
</p>

<p>
	TCL, a Chinese company best known for producing televisions, makes one such headset. Its Nxtwear glasses can connect to one of the company’s compatible smartphones, which offers a view of a familiar, desktop-like interface where you can browse the Web, watch videos, or fire off emails. (If you do that, the phone’s screen also becomes a big trackpad for moving a mouse cursor around.)
</p>

<p>
	 
</p>

<p>
	When connected to a computer, like a MacBook Pro, the glasses effectively become a replacement monitor that looks much bigger than a typical laptop screen. You could certainly make it your main display, but because the glasses are screens propped up to the top of your line of sight by a set of big nose pads, you’d still be able to easily glance at your laptop.
</p>

<p>
	 
</p>

<p style="text-align:center;">
	<img alt="AAORNom.img?h=532&amp;w=874&amp;m=6&amp;q=60&amp;o=f&amp;l=f" class="ipsImage" data-ratio="73.89" height="438" width="720" src="https://img-s-msn-com.akamaized.net/tenant/amp/entityid/AAORNom.img?h=532&amp;w=874&amp;m=6&amp;q=60&amp;o=f&amp;l=f" />
</p>

<p style="text-align:center;">
	<span style="font-size:12px;"><em>Lenovo's smart glasses let you display up to 5 virtual monitors in front of you.</em></span>
</p>

<p style="text-align:center;">
	 
</p>

<p>
	Some models like Lenovo’s ThinkReality A3 PC Edition, offer a more immersive approach. Hooking it up to a compatible computer with a USB-C cable lets you view and rearrange up to five different screens in a sort of virtual “space” in front of you. As you move your head around, each of those monitors will come into view depending on how you’ve configured them. It’s as though you’re sitting in front of a desk you’ve meticulously arranged multiple monitors on, except you didn’t have to lug those monitors around in the first place.
</p>

<p>
	 
</p>

<p>
	The catch? Because the Lenovo’s headset is designed to show you multiple screens at the same time, it requires a lot more horsepower to work correctly, and not every computer will do. For now at least, you would have to already own — or buy — a compatible, Lenovo Thinkpad laptop if you ever wanted to try building a virtual workstation with the ThinkReality glasses.
</p>

<p>
	 
</p>

<p>
	<strong>Where do we go from here?</strong>
</p>

<p>
	<br />
	These headsets are here, and they work, but let’s be honest: they’re still far from ideal.
</p>

<p>
	 
</p>

<p>
	For one, the companies that make these headsets haven’t completely conquered the issue of comfort. Because they have so many components and sensors packed into them, this current generation of smart glasses just can’t be nearly as flexible as, say, a regular pair of glasses. That could mean people with bigger heads may literally feel the pinch when they try to strap on a wearable display.
</p>

<p>
	 
</p>

<p>
	And while these headsets aren’t all that heavy — Lenovo’s is about a third of a pound — they can still feel cumbersome to use. But as the constellation of component makers continues to shrink their parts, that may change before too long.
</p>

<p>
	 
</p>

<p>
	“If these can be lightweight and comfortable and offer sufficient image quality where I can be productive on multiple screens, that’s the litmus test,” said Ross Rubin, principal analyst at market research firm Reticle Research. “I could see a path to that in the next maybe three years.”
</p>

<p>
	 
</p>

<p>
	Until then, headset makers have something else to tackle: price. Lenovo’s headset costs about $1,500, which is a big ask even if it’s meant for work — and especially one that requires other equipment to work. (Then again, maybe companies will eat the cost to make its workforce more productive; we’ll have to see.) Meanwhile, TCL’s glasses aren’t on sale in the U.S. yet, but models available elsewhere cost the equivalent of about $680.
</p>

<p>
	 
</p>

<p>
	That will change over time, too, as the technology matures and the cost of parts become more reasonable. Until then, though, many of us will just have to make do with the computer monitors we have now.
</p>

<p>
	 
</p>

<p>
	<strong><a href="https://www.msn.com/en-us/news/technology/need-a-new-monitor-for-your-computer-you-can-wear-one-on-your-face/ar-AAOS1bz" rel="external nofollow">Source</a></strong>
</p>
]]></description><guid isPermaLink="false">2478</guid><pubDate>Mon, 27 Sep 2021 17:07:17 +0000</pubDate></item><item><title>The Cybernetics Scare And The Origins Of The Internet</title><link>https://nsaneforums.com/news/technology-news/the-cybernetics-scare-and-the-origins-of-the-internet-r2472/</link><description><![CDATA[<p>
	<span style="font-size:12px;"><em>Published in the printed edition of Baltic Worlds page 32-38, vol II:1, 2009<br />
	Published on Balticworlds.Com on February 11, 2010</em></span>
</p>

<p>
	 
</p>

<p>
	In the late 1950s, as Soviet society began to shed the legacy of Stalinism, science and engineering became new cultural icons. The new, post-Stalin generation was fascinated with Sputnik, nuclear power stations, and electronic digital computers. The popular image of an objective, truth-telling computer became a vehicle for a broad movement among scientists and engineers calling for reform in science and in society at large. Under the banner of cybernetics, this movement attacked the dogmatic notions of Stalinist science and the ideology-laden discourse of the Soviet social sciences.
</p>

<p>
	 
</p>

<p>
	Proposed originally in 1948 by the American mathematician Norbert Wiener as a science of control and communication in the animal and the machine,1 cybernetics acquired a much wider interpretation in the Soviet context. Soviet cyberneticians aspired to unify diverse cybernetic theories elaborated in the West ­— control theory, information theory, automata studies and others — in a single overarching conceptual framework, which would serve as the foundation for a general methodology applicable to a wide range of natural and social sciences and engineering.2
</p>

<p>
	 
</p>

<p>
	The more Soviet society departed from Stalinism, the more radical the cybernetic project became. Step by step, Soviet cyberneticians overturned earlier ideological criticism of mathematical methods in various disciplines, and put forward the goal of “cybernetization” of the entire science enterprise. Under the umbrella of cybernetics, scientific trends that had been suppressed under Stalin began to emerge under new, cybernetic names, and began to defy the Stalin-era orthodoxy. “Biological cybernetics” (genetics) challenged the Lysenkoites in biology, “physiological cybernetics” opposed the Pavlovian school in physiology, and “cybernetic linguistics” (structuralism) confronted traditional comparative philology and historical linguistics. Soviet cybernetics enthusiasts set the goal of achieving a comprehensive “cybernetization” of modern science by representing the subject of every discipline in a unified, formalized way and by moving toward a synthesis of the sciences. They aspired to translate all scientific knowledge into computer models and to replace the ideology-laden, “vague” language of the social and life sciences with the “precise” language of cybernetics.
</p>

<p>
	 
</p>

<p>
	The global aspirations of Soviet cybernetics drew on the rich and seemingly universal cybernetic language, which I call “cyberspeak”. It emerged in the “cybernetics circle” of Wiener and his colleagues, as they met regularly over the course of ten meetings sponsored by the Macy Foundation in 1946–1953. The participants of these meetings included mathematicians, engineers, philosophers, neurophysiologists, psychiatrists, psychologists, biologists, linguists, and social scientists, among them Claude Shannon, John von Neumann, Warren McCulloch, William Ross Ashby, Roman Jakobson, and Gregory Bateson.3
</p>

<p>
	 
</p>

<p>
	<strong>The cyberneticians putforward </strong>a wide range of human-machine analogies: the body as a feedback-operated servomechanism, life as an entropy-reducing device, man as an information source, human communication as transmission of encoded messages, the human brain as a logical network, and the human mind as a computer. This assembly of mathematical models, explanatory frameworks, and appealing metaphors presented a rather chaotic and eclectic picture. What held it together was a set of interdisciplinary connections: the same mathematical theory described feedback in control engineering and noise reduction in communication engineering; information theory was linked to thermodynamics, as information was equated with “negative entropy”; information was interpreted as a measure of order, organization, and certainty, while entropy was associated with chaos, noise, and uncertainty; brain neurons were modeled as logical elements; and thinking was likened to computation.
</p>

<p>
	 
</p>

<p>
	Cyberneticians combined concepts from physiology (homeostasis), psychology (behavior and goal), control engineering (control and feedback), thermodynamics (entropy and order), and communication engineering (code, information, signal, and noise), and generalized each of them to be equally applicable to living organisms, self-regulating machines (such as servomechanisms and computers), and human society. In their view, machines, organisms, and human society were all seen as self-organizing control systems, which, operating in a certain environment, pursued their goals (hitting a target, increasing order, achieving better organization, or reaching the state of equilibrium) by communicating with this environment, that is, sending signals and receiving information about the results of their actions through feedback loops.
</p>

<p>
	 
</p>

<p>
	Upon its publication in 1948, Wiener’s Cybernetics gained enormous popularity. The New York Times called it one of the most influential books of the twentieth century, comparable in significance to the works of Galileo, Malthus, Mill, or Rousseau. Cybernetics promised solutions to a wide range of social, biological, and technological problems through information processing and feedback control. Complex social and biological phenomena looked simpler and more manageable when described in cybernetic terms. Masking the differences in the nature and scale of those phenomena, the common cybernetic language allowed one to use the same mathematical techniques across a wide range of disciplines. When translated into cyberspeak, biological, technological, and social problems all seemed to have similar — cybernetic — solutions. Taking cybernetic metaphors literally, many biologists and social scientists pushed the boundaries of cybernetics even further than Wiener and his colleagues originally envisioned.
</p>

<p>
	 
</p>

<p>
	With the wide introduction of electronic digital computers, Wiener’s original parallels between thinking and analog computing expanded to include digital computers. Speaking of human thought as computation and describing digital computers in anthropomorphic terms as “giant brains”4 became two sides of the same coin, brought into wide circulation by cybernetics. Scientific American published an accessible account of cybernetics under the provocative title “Man Viewed as a Machine”5; and philosopher Frank H. George threw a challenge to the readers of the English journal Philosophy: “you can’t tell me anything that your wife can do that a machine can’t (in principle)”.6 Political scientists spoke of the cybernetic “nerves of government”,7 engineers, economists, and journalists described the bright technological future populated with intelligent robots,8 and business consultants began to sell “management cybernetics”.9
</p>

<p>
	 
</p>

<p>
	<br />
	<strong>Ironically, Wiener, who</strong> was hailed as a prophet of the new age of automatic machinery, held ambivalent views about the social implications of cybernetics. He regarded automatic machines as both “threat and promise”.10 Wiener proclaimed the advent of the “second industrial revolution”, which would bring about fully automated factories running without human agency. This revolution, in his view, carried “great possibilities for good and for evil”.11 Cybernetic techniques and technologies, he argued, “open to us vistas of a period of greater plenty than the human race has ever known, although they create at the same time the possibility of a more devastating level of social ruin and perversion than any we have yet known”.12 Wiener warned that automation was “bound to devalue the human brain”.13 “The skilled scientist and the skilled administrator may survive”, he wrote, but “the average human being of mediocre attainments or less has nothing to sell that it is worth anyone’s money to buy.”14 Wiener was deeply critical of capitalist America. He did not believe in the ability of the “invisible hand” of free market to establish an economic and social equilibrium, or homeostasis in cybernetic terms. His social outlook was overtly pessimistic: “There is no homeostasis whatever. We are involved in the business cycles of boom and failure, in the successions of dictatorship and revolution, in the wars which everyone loses.”15
</p>

<p>
	 
</p>

<p>
	Cybernetics, in Wiener’s view, provided hope for social change. Two years after Cybernetics, he published the book The Human Use of Human Beings: Cyber-netics and Society, in which he developed a cybernetic critique of the pervasive controls over social communication under McCarthyism in America and under Stalinism in Russia. He believed that describing society in cybernetic terms as a self-regulating device would make it clear that controlling the means of communication was “the most effective and most important” anti-homeostatic factor, which could drive society out of equilibrium.16 Wiener noted that on both sides of the Atlantic “political leaders may attempt to control their populations” by manipulating information flows, and argued that “it is no accident that Russia has had its Berias and that we have our McCarthys”.17 His views of capitalism and communism were best summarized by his colleague and friend Dirk Struik: “plague on both your houses”.18
</p>

<p>
	 
</p>

<p>
	It was profoundly ironic — and illustrated the limited power of the creator over his creation — that both of these “houses” became fascinated with cybernetics. The promise of universality of the cybernetic approach was alluring; the unlimited applicability of cybernetics evoked the image of unlimited power. But even greater than the allure of cybernetics was the fear that cybernetics might become a weapon in the hands of the other side in the Cold War.
</p>

<p>
	 
</p>

<p>
	In the early 1950s, on the wave of Stalinist ideological campaigns against Western influence in Soviet science, the Soviet academic and popular press attacked cybernetics as “a modish pseudo-science” and “a reactionary imperialist utopia”. Soviet critics used all tools in their rhetorical arsenal: philosophical arguments (accusing cybernetics of both idealistic and mechanistic deviations from dialectical materialism), sociological analysis (labeling cybernetics “a technocratic theory” whose goal was to replace striking workers with obedient machines), and moral invectives (alleging that cyberneticians aspired to replace conscience-laden soldiers with “indifferent metallic monsters”). Like any propaganda, the anti-cybernetics discourse was full of contradictions. Critics called cybernetics “not only an ideological weapon of imperialist reaction but also a tool for accomplishing its aggressive military plans”, thus portraying it both as a pseudo-science and as an efficient tool in the construction of modern automated weapons.
</p>

<p>
	 
</p>

<p>
	Khrushchev’s political “thaw” after years of Stalin’s rule opened the gates for liberalization in the scientific community, and cybernetics was quickly rehabilitated. Soviet cyberneticians radically expanded the bound-aries of cybernetics to include all sorts of mathematical models and digital computer simulations. Cybernetics became synonymous with computers, and computers synonymous with progress. In October 1961, just in time for the opening of the Twenty-Second Congress of the Communist Party, the Cybernetics Council of the Soviet Academy of Sciences published a volume appropriately entitled Cybernetics in the Service of Communism. This book outlined the great potential benefits of applying computers and cybernetic models to problems in a wide range of fields, from biology and medicine to production control, transportation, and economics.
</p>

<p>
	 
</p>

<p>
	A large number of previously marginalized research trends found a niche for themselves under the aegis of the Academy Council on Cybernetics, including mathematical economics, which was refashioned into “economic cybernetics”. The entire Soviet economy was interpreted as “a complex cybernetic system, which incorporates an enormous number of various interconnected control loops”. Conceptualizing the Soviet economy in cybernetic terms, economic cyberneticians regarded economic planning as a giant feedback system of control. Economic cyberneticians aspired to turn the Soviet economy into a fully controllable and optimally functioning system by managing its information flows. Soviet cyberneticians proposed to optimize the functioning of this system by creating a large number of regional computer centers to collect, process, and redistribute economic data for efficient planning and management. Connecting all these centers into a nationwide network would lead to the creation of “a single automated system of control of the national economy”.19
</p>

<p>
	 
</p>

<p>
	<strong>The new Party Program</strong> adopted at the Twenty-Second Congress included cybernetics among the sciences that were called upon to play a crucial role in the construction of the material and technical basis of communism. The new Program vigorously asserted that cybernetics, electronic computers, and control systems “will be widely applied in production pro-cesses in industry, building, and transport, in scientific research, planning, designing, accounting, statistics, and management”. The popular press began to call computers “machines of communism”.
</p>

<p>
	<br />
	“However unusual this may sound to some conservatives who do not wish to comprehend elementary truths, we will be building communism on the basis of the most broad use of electronic machines, capable of processing enormous amounts of technological, economic, and biological information in the shortest time”, proclaimed Engineer Admiral Aksel’ Berg, Chairman of the Academy Council on Cybernetics in 1962. “These machines, aptly called ‘cybernetic machines’, will solve the problem of continuous optimal planning and control.”20
</p>

<p>
	 
</p>

<p>
	Despite the lofty rhetoric of cybernetics enthusiasts, Soviet government officials remained skeptical about the prospects for a radical nationwide reform of economic management. The potential computerization of economic decision-making threatened the established power hierarchy and faced stubborn opposition at all levels of Soviet bureaucracy. Through an endless process of reviews, revisions, and reorganizations,<br />
	Soviet government agencies were able to slow down the cybernetic reform and eventually brought it to a halt.21 As the idea of an overall economic reform withered away, so did the plans for a nationwide computer network, which no longer had a definite purpose.22
</p>

<p>
	 
</p>

<p>
	<strong>Yet the vociferous media</strong> campaign launched by Soviet cybernetics advocates caused serious concern in Washington. “If any country were to achieve a completely integrated and controlled economy in which ‘cybernetic’ principles were applied to achieve various goals, the Soviet Union would be ahead of the United States in reaching such a state”, wrote an American reviewer of Cybernetics in the Service of Communism. He warned that cybernetics “may be one of the weapons Khrushchev had in mind when he threatened to ‘bury’ the West”.23 The CIA set up a special branch to study the Soviet cybernetics menace.24
</p>

<p>
	 
</p>

<p>
	CIA analysts apparently confused Soviet cyberneticians’ unbridled enthusiasm with actual government policy. The CIA task force on Soviet cybernetics reported that “Soviet policy makers took up the cybernetic methodology on an unprecedented scale”. The task force warned that “tremendous increments in economic productivity as the result of cybernetization of production may permit disruption of world markets” on an unprecedented scale. In August 1961, senior CIA research staff reported that the Soviets were ready to apply cybernetic control techniques “not only for the natural sciences and the economy but for the shaping of society as a whole”.25 The cybernetic methodology of automated education was aimed at bringing up the “New Communist Man”. “The creation of a model society and the socio-economic demoralization of the West will be the added ideological weapon”, concluded CIA analysts.26
</p>

<p>
	 
</p>

<p>
	On October 15, 1962, John J. Ford, head of the special CIA task force on Soviet cybernetics, made an informal presentation to Attorney General Robert F. Kennedy and other top government officials at the house of<br />
	Secretary of Defense Robert S. McNamara. Ford captivated the audience by touting “the serious threat to the United States and Western Society posed by increasing Soviet commitment to a fundamentally cybernetic strategy in the construction of communism”. Everything went well until the presentation was interrupted by the news of Soviet missiles discovered in Cuba.
</p>

<p>
	 
</p>

<p>
	Even as the Cuban Missile Crisis unfolded, top Kennedy administration officials requested more information from Ford on Soviet cybernetics. On October 17, Ford submitted a summary of his unfinished talk to Arthur Schlesinger, Jr., President Kennedy’s Special Assistant. Speaking as a private citizen (the CIA did not take an official position on Soviet cybernetics), Ford warned that “the Communists have a Bloc-wide program devoted to research, development and application of cybernetics to insure the outcome of the East-West conflict in their favor, whereas the U.S. has neither a program, nor a philosophy for developing cybernetics toward attainment of national objectives”. “Persistent disregard of this aspect of Soviet strategy”, concluded Ford, “amounts to arbitrary neglect of the central intentions of the enemy and unwitting compliance with his principal strategy for world communization.”27
</p>

<p>
	 
</p>

<p>
	Three days later, with the missile crisis in full swing, the cybernetics scare crept up the ladder of the Kennedy administration. Schlesinger wrote to Robert F. Kennedy that the “all-out Soviet commitment to cybernetics” would give the Soviets “a tremendous advantage”. Schlesinger warned that “by 1970 the USSR may have a radically new production technology, involving total enterprises or complexes of industries, managed by closed-loop, feedback control employing self-teaching computers”. If the American negligence of cybernetics continues, he concluded, “we are<br />
	finished”.28
</p>

<p>
	 
</p>

<p>
	<strong>In November 1962</strong>, as soon as the missile crisis abated, Schlesinger raised the Soviet cybernetics issue with the President himself. President Kennedy then asked his Science Advisor Jerome Wiesner to set up a cybernetics panel to “take a look at what we’re doing compared to what they’re doing, and what this means for the future”.29
</p>

<p>
	 
</p>

<p>
	Wiesner had headed the Department of Electrical Engineering at MIT; he was well familiar with cybernetics, and regarded Norbert Wiener as his mentor. Wiesner gathered top experts in the field. The prominent MIT biophysicist Walter Rosenblith chaired the panel, which also included physiologist William Ross Adey, psychologist George Miller, electronics engineer John Pierce, mathematician John Tukey, computer scientists Peter Elias and Willis Ware, and mathematical economists Leonid Hurwicz and Kenneth Arrow. The panel met several times in 1963 until the Kennedy<br />
	assassination and Wiesner’s subsequent resignation put an end to this study.30
</p>

<p>
	 
</p>

<p>
	An apocalyptic vision of a fundamental transformation of the Soviet system along the lines of cybernetics was expressed in a manuscript entitled “The Communist Reformation”, which Wiesner received in February 1963. “Cybernetics became officially the primary science in the Soviet Union” and “the veritable spearhead of ‘Communist Reformation’”, claimed the author, the Hungarian émigré George Paloczi-Horvath. “The rise of primacy of cybernetics in all branches of Soviet administration, economy, industry and science started to change the Communist system of governing and control itself.” “If a new crash programme is not adopted very soon”, warned Paloczi-Horvath, “in the late nineteen sixties and the early nineteen seventies instead of the missile gap, American and Western public opinion will be worried by the ‘computer-gap’, and the ‘programmer-gap’.”31 Although Wiesner believed that the idea of an emerging “cybernetics gap” was “ridiculous in the extreme”,32 he did sponsor Paloczi-Horvath’s further research and the publication of his revised manuscript.33
</p>

<p>
	 
</p>

<p>
	<strong>In the meantime</strong>, the CIA continued to sound the alarm. In February 1964, the CIA issued a secret report on Soviet cybernetics, mentioning, among other strategic threats, the Soviet plans to build a “Unified Information Net”. The CIA circulated the report to a hundred people in the Defense Department, the State Department, the Atomic Energy Commission, the National Security Agency, NASA, and other government agencies.34 In November 1964, at a conference at Georgetown University, Ford publicly presented a paper surveying Soviet cybernetics and predicting that the development of new information techniques in government might become the battlefield for “a new kind of international competition during the next 15 years”.35 His public call seriously alarmed some military officials. The Commander of the Foreign Technology Division of the U.S. Air Force Systems Command concluded:
</p>

<p>
	<br />
	“Unless we Americans as a people, and we in the Air Force in particular, understand these momentous trends, we may not have much choice. The system could be imposed upon us from an authoritarian, centralized, cybernated, world-powerful command and control center in Moscow.”36
</p>

<p>
	 
</p>

<p>
	CIA analysts wildly overestimated the Soviet cyber-netics threat. A 1964 CIA report suggested that “archi-tects and engineers are now drawing up technical plans for the center of the USSR’s ‘automated economic information system’ to be located in Moscow on a site already selected”.37 Indeed, the Central Economic Mathematical Institute, created in Moscow in 1963 to develop the concept of a computerized nationwide economic management system, had no building of its own, and its staff was crammed in a few rooms with no computer facilities. The construction of a new building took more than 10 years; it was completed only in the mid-1970s. A 1965 report warned that a decentralized network of “satellite” computer centers was being created, in which the output of information processing in one center was cross-fed into other satellite centers and into a central computer. The report alleged that these satellite centers would be interconnected on a regional basis by 1967.38 A 1966 report claimed that “the Unified Information Network was the most significant planned application of cybernetics discussed during 1965”. The CIA identified 350 computer centers that “might become nodes” in the “‘nervous system’ of the Soviet Government”.39
</p>

<p>
	 
</p>

<p>
	<strong>In fact, the Soviet</strong> Union suffered from acute shortage of computers. In 1968 there were only 9 computers in the entirety of Lithuania.40 The few lucky organizations that managed to obtain a computer held tight control over its use and had no intention to share it with outsiders. The so-called computer centers rarely had more than one machine and were not linked to any network. In 1967 the Central Economic Mathematical Institute received its very first computer, Ural-14B, a slow, unreliable machine with small memory, totally unsuitable for large-scale information processing. Lacking its own building, the Institute installed the computer in a local high school. The first “network” the Institute developed consisted of two computers. This was a forced measure: since the capabilities of Ural-14B were so limited, the Institute linked it to the more powerful BESM-6 computer, located at the Institute’s Leningrad branch, to enable running a few experimental simulations. In the mid-1960s, Soviet cybernetic economists tried to persuade the leadership of the Ministry of Defense, which was building its own network, to convert it to dual use. The reply was curt: “We are getting as much money for technological development as we ask for. You are getting nothing. If we cooperate, neither of us will get any money.”41 With the lack of political and financial support, the Institute soon dropped the<br />
	automated economic management information system from its research agenda and focused on the development of optimal mathematical models. Practical<br />
	reform was supplanted by optimization on paper.
</p>

<p>
	 
</p>

<p>
	Though short-lived, the Wiesner panel made a sober evaluation of Soviet cybernetics. The leading economist on the panel, the future Nobel laureate Kenneth Arrow, dismissed Soviet efforts at mathematical economic planning as “no more that the aggregate of operations research work being done in the United States by industrial corporations”. He stressed that even though the Soviets were collecting extensive economic data, “nobody has really been able to figure out how to make good use of this enormous pile of material”. Arrow was highly skeptical of the claims of computer-based ratio-nality and argued that even if the United States could “computerize our political decision-making”, the<br />
	economy would not achieve “perfect stability”. He concluded that a much more efficient economic policy could be worked out simply by improving intelligence, while computers might serve merely as “a mystical symbol of accuracy”.42 In 1964, soon after leaving his position as President’s Science Advisor, Wiesner visited the Soviet Union to see the fruits of what he called the “cybernetics binge”43 for himself. The only modern automated production facility he could find was a champagne bottling plant.44
</p>

<p>
	 
</p>

<p>
	<strong>Herbert Simon</strong>, another future Nobel laureate in economics and a leading artificial intelligence expert, was also involved in the work of the cybernetics panel. He later recalled how the CIA had submitted a thick report to President Kennedy about an alleged “great Soviet plot to conquer the world with cybernetics. […] Alas, our panel was too honest. If we had reported back to Wiesner that the Soviet cybernetics project was<br />
	genuinely dangerous, American research in artificial intelligence would have had all the funding it could possibly use for years to come. Putting temptation behind us, we reported that the CIA document was a fairy story — as events proved it to be.”45
</p>

<p>
	 
</p>

<p>
	Whether the panelists were able to put the temptation behind or not, U.S. research in artificial intelligence did receive a very significant boost at the time. Starting in 1963, the Information Processing Techniques Office (IPTO) at the Defense Department’s Advanced Research Projects Agency (ARPA) lavishly funded Project MAC at MIT and other artificial intelligence initiatives. “It was heaven”, MIT’s Marvin Minsky recalled. “It was your philanthropic institute run by your students with no constraints and no committees. Of course there was no way to spend that much money, so we built some machines and for the next few years I never had to make any hard decisions whether to fund one project or another because we could just do both.”46
</p>

<p>
	 
</p>

<p>
	The head of IPTO,MIT psychologist J. C. R. Licklider, had a longtime interest in cybernetics. “There was tremendous intellectual ferment in Cambridge after World War II”, he recalled. “Norbert Wiener ran a weekly circle of 40 or 50 people who got together. They would gather together and talk for a couple of hours. I was a faithful adherent to that.” Licklider audited Wiener’s lectures and became part of a faculty group at MIT that “got together and talked about cybernetics”. “I was always hanging onto that”, he remembered. Licklider closely collaborated with George Miller and Walter Rosenblith, future members of Wiesner’s cybernetics panel. While at MIT, Licklider was also very close to Wiesner, and when the latter became President Kennedy’s Science Advisor, Licklider was appointed the head of a panel on scientific and technical communications. Licklider thus divided his time between ARPA and Wiesner’s Office of Science and Technology, to some chagrin on the part of his Pentagon bosses.47
</p>

<p>
	 
</p>

<p>
	Licklider’s combined interest in psychology, computing, and communications helped him conceptualize the computer as a communication device, rather than merely a big calculator. In his 1960 article, “Man-Computer Symbiosis”, he outlined his vision of a network of “thinking centers”, multi-user computer timesharing systems, which would “incorporate the functions of present-day libraries together with anticipated advances in information storage and retrieval and [man-computer] symbiotic functions”.48 Licklider’s biological metaphor of “symbiosis” echoed the cybernetic blurring of human-machine boundaries. As Licklider’s article achieved the status of a “unifying reference point” in computer science and artificial intelligence, it spread the cybernetic vision (without using the term) throughout these disciplines.49
</p>

<p>
	 
</p>

<p>
	The cybernetic concept of communication transcended the boundary between human and machine. In the cybernetic world, people could communicate via and with computers, eventually forming seamless human-computer communication networks. Licklider vigorously promoted human-computer interaction to Pentagon officials. “The problems of command and control were essentially problems of man-computer interaction. I thought it was just ridiculous to be having command control systems based on batch processing”, he recalled. “Every time I had the chance to talk, I said the mission is interactive computing.”50 The IPTO funded a plethora of projects around the United States, and each group developed its own time-sharing computing system, incompatible with others. Licklider jokingly named this conglomerate of research groups the Intergalactic Computer Network. In 1963, he sent a memo to members of this informal social network, urging them to standardize their systems so that data could be communicated from one system to another. “Consider the situation in which several different centers are netted together”, he wrote, arguing that it was important “to develop a capability for integrated network operation”.51
</p>

<p>
	 
</p>

<p>
	In 1968, Licklider co-authored the article “The Computer as a Communication Device” with Robert Taylor, the head of IPTO in 1965–69. Under Taylor, the IPTO took practical steps to unite “digitally isolated” research groups into a “supercommunity” by developing the ARPANET, which eventually evolved into the Internet.52
</p>

<p>
	<br />
	<strong>Historian Paul Edwards</strong> has argued that “cyborg discourse”, which blurred the boundary between human and machine, blended with the Cold War “closed world” discourse, which represented the world as amenable to computer simulation, manipulation, and control. “Cyborg discourse functioned as the psychological/subjective counterpart of closed-world politics”, he writes. “Where closed-world discourse defined the architectures of a political narrative and a technological system, cyborg discourse molded culture and subjectivity for the information age.”53
</p>

<p>
	 
</p>

<p>
	Ironically, cyborg discourse achieved its triumph at the cost of erasing its roots in Wiener’s cybernetic vision. Wiener’s resolute pacifist stance after Hiroshima brought him under close FBI watch and cast a shadow of suspicion over his ideas. The subsequent cybernetics scare in the United States further tinged this field with the red of communism, and set hurdles for federal funding of cybernetics research. “They wanted to chase out cybernetics as fast as they could”, recalled the leading cybernetician Heinz von Foerster. “It was not suppressed, but they neglected it.”54 Although the ARPANET originated in the context of cybernetic analogies between human and computer communication, its cybernetic genealogy was obliterated.
</p>

<p>
	 
</p>

<p>
	While in the Soviet Union cyberspeak dominated scientific discussions, cyborg discourse in the United States seeped through culture and became universally accepted to the point of being invisible. American<br />
	scientists talked in cyberspeak and didn’t even realize it, just as Monsieur Jourdain in Molière’s play did not realize he was speaking in prose. The initial ARPANET goals were very humble — to share computing resources among research groups — and dissociated from the explicit cybernetic vision of society as a feedback-regulated mechanism. Perhaps precisely for this reason it proved feasible, while the grand designs of Soviet cyberneticians to build a nationwide computer network to regulate the entire national economy ran into insurmountable political obstacles.
</p>

<p>
	 
</p>

<p>
	<strong>The Internet</strong> — the ultimate cybernetic machine — has weaved together humans and computers, control and communication, information and free speech. Just as Wiener envisioned, digital communication can be used both to liberate and to control, and authoritarian governments still try to limit free circulation of information. Artificial organs, online avatars, and ubiquitous computing have made cybernetic human-machine metaphors almost literal. Wiener’s cybernetic vision of society based on free exchange of information has become (cyber)reality on the World Wide Web.
</p>

<p>
	<br />
	This story is profoundly ironic: America rejected cybernetics but implemented the cybernetic vision, while the Soviet Union did just the opposite: it paid lip service to cybernetics and stalled practical cybernetic projects. The cybernetics scare both focused the attention of U.S. science administrators on human-machine interaction and made explicit cybernetic references ideologically suspect. As a result, Americans pursued a narrowly defined but viable technical project, while the Soviets aimed at a utopian grand reform. This teaches us something about the power of discourse: it resides not so much in overt declarations but in subtle metaphors that change our mode of thinking and ultimately reshape our world. ≈
</p>

<p>
	 
</p>

<p>
	<strong>Acknowledgments</strong>
</p>

<p>
	<br />
	I wish to thank the organizers of the 2008 conference “Thinking and Making Connections: Cybernetic Heritage in the Social and Human Sciences” at the Nobel Museum and Södertörn University, where an early version of this paper was presented. I am very grateful to Flo Conway, Jim Siegelman, and Ben Peters for kindly sharing their archival findings with me. I also appreciate the helpful comments and suggestions by Rebecka Letteval and an anonymous reviewer of Baltic Worlds.   
</p>

<p>
	 
</p>

<p style="text-align:right;">
	Slava Gerovitch
</p>

<p>
	 
</p>

<p>
	<strong>REFERENCES</strong>
</p>

<p>
	 
</p>

<ol>
	<li>
		<span style="font-size:12px;"><em>Norbert Wiener, Cybernetics, or Control and Communication in the Animal and the Machine, Cambridge, Mass. 1948.</em></span>
	</li>
	<li>
		<span style="font-size:12px;"><em>See Slava Gerovitch, From Newspeak to Cyberspeak: A History of Soviet Cybernetics, Cambridge, Mass. 2002.</em></span>
	</li>
	<li>
		<span style="font-size:12px;"><em>See Heims, Constructing a Social Science for Postwar America: The Cybernetics Group, 1946–1953, Cambridge, Mass. 1993.</em></span>
	</li>
	<li>
		<span style="font-size:12px;"><em>See Edmund C. Berkeley, Giant Brains, or Machines that Think, New York 1949.</em></span>
	</li>
	<li>
		<span style="font-size:12px;"><em>See John G. Kemeny, “Man Viewed as a Machine”, Scientific American, vol. 192 (April 1955), pp. 58–67.</em></span>
	</li>
	<li>
		<span style="font-size:12px;"><em>Frank H. George, “Could Machines Be Made to Think?”, Philosophy, vol. XXXI, no. 118 (July 1956), p. 252.</em></span>
	</li>
	<li>
		<span style="font-size:12px;"><em>See Karl W. Deutsch, The Nerves of Government: Models of Political Communication and Control, London 1963.</em></span>
	</li>
	<li>
		<span style="font-size:12px;"><em>See Automatic Control, New York 1955.</em></span>
	</li>
	<li>
		<span style="font-size:12px;"><em>See Stafford Beer, Cybernetics and Management, New York 1959, and Decision and Control: The Meaning of Operational Research and Management Cybernetics, London 1966.</em></span>
	</li>
	<li>
		<span style="font-size:12px;"><em>Norbert Wiener, “The Machine as Threat and Promise” (1953), in Wiener, Collected Works, vol. IV, pp. 673–78.</em></span>
	</li>
	<li>
		<span style="font-size:12px;"><em>Wiener, Cybernetics, p. 28.</em></span>
	</li>
	<li>
		<span style="font-size:12px;"><em>Wiener, “The Machine as Threat and Promise”, p. 677.</em></span>
	</li>
	<li>
		<span style="font-size:12px;"><em>Wiener, Cybernetics, p. 27.</em></span>
	</li>
	<li>
		<span style="font-size:12px;"><em>Ibid., p. 28.</em></span>
	</li>
	<li>
		<span style="font-size:12px;"><em>Ibid., p. 159.</em></span>
	</li>
	<li>
		<span style="font-size:12px;"><em>Ibid., p. 160.</em></span>
	</li>
	<li>
		<span style="font-size:12px;"><em>Norbert Wiener, The Human Use of Human Beings: Cybernetics and Society [1950, 1954], New York, pp. 181, 192.</em></span>
	</li>
	<li>
		<span style="font-size:12px;"><em>Quoted in Steve J. Heims, John von Neumann and Norbert Wiener: From Mathematics to the Technologies of Life and Death, Cambridge, Mass., p. 311.</em></span>
	</li>
	<li>
		<span style="font-size:12px;"><em>Anatolii Kitov, “Kibernetika i upravlenie narodnym khoziaistvom”, in Aksel’ Berg, ed., Kibernetiku — na sluzhbu kommunizmu, vol. 1, Moscow and Leningrad: Gosenergoizdat, 1961, pp. 207, 216.</em></span>
	</li>
	<li>
		<span style="font-size:12px;"><em>Aksel’ Berg, “Kibernetika i nauchno-tekhnicheskii progress”, in Aleksandr Kuzin, ed., Biologicheskie aspekty kibernetiki, Moscow 1962, p. 14 (emphasis in original).</em></span>
	</li>
	<li>
		<span style="font-size:12px;"><em>Gerovitch, From Newspeak to Cyberspeak, chap. 6. — On the frustrated attempts to introduce automated management systems into economic governance in Lithuania, see Egle Rindzevičiute, Constructing Soviet Cultural Policy: Cybernetics and Governance in Lithuania after World War II, Ph.D. dissertation, Linköping University, Sweden, 2008, pp. 125–148.</em></span>
	</li>
	<li>
		<span style="font-size:12px;"><em>Slava Gerovitch, “InterNyet: Why the Soviet Union Did Not Build a Nationwide Computer Network”, History and Technology 24:4 (December 2008), pp.335–350.</em></span>
	</li>
	<li>
		<span style="font-size:12px;"><em>D.G. Malcolm, Review of Cybernetics at Service of Communism, vol. 1, Operations Research 11 (1963), p. 1012.</em></span>
	</li>
	<li>
		<span style="font-size:12px;"><em>Flo Conway and Jim Siegelman, Dark Hero of the Information Age: In Search of Norbert Wiener, the Father of Cybernetics, New York, p. 391.</em></span>
	</li>
	<li>
		<span style="font-size:12px;"><em>CIA, Senior Research Staff on International Communism, “Soviet Communism in the Sixties: Some Notes on Its New Dimensions”, 1 August 1961, p. 8.</em></span>
	</li>
	<li>
		<span style="font-size:12px;"><em>John J. Ford to Arthur Schlesinger, Jr., 17 October 1962; Schlesinger Personal Papers, John F. Kennedy Library, Boston, Mass., box WH-7, “Cybernetics”.</em></span>
	</li>
	<li>
		<span style="font-size:12px;"><em>Ibid.</em></span>
	</li>
	<li>
		<span style="font-size:12px;"><em>Arthur Schlesinger, Jr., to Robert F. Kennedy, 20 October 1962; Schlesinger Personal Papers, box WH-7, “Cybernetics”.</em></span>
	</li>
	<li>
		<span style="font-size:12px;"><em>John F. Kennedy, Dictating Memorandum, 28 November 1962; Presidential Recordings, John F. Kennedy Library, Boston, Mass., cassette J, dictabelt XXX.A.</em></span>
	</li>
	<li>
		<span style="font-size:12px;"><em>1963 reports; Office of Science and Technology Papers, John F. Kennedy Library, Boston, Mass., roll 64.</em></span>
	</li>
	<li>
		<span style="font-size:12px;"><em>György Pálóczi-Horváth, “The Communist Reformation”, unpublished manuscript; Schlesinger Personal Papers, box WH-7, “Cybernetics”.</em></span>
	</li>
	<li>
		<span style="font-size:12px;"><em>Spurgeon Keeny, Jr., “The Search for Soviet Cybernetics”, in Jerry Wiesner: Scientist, Statesman, Humanist: Memories and Memoirs, ed. Walter Rosenblith, Cambridge, Mass. 2003, p. 84.</em></span>
	</li>
	<li>
		<span style="font-size:12px;"><em>George Paloczi-Horvath, The Facts Rebel: The Future of Russia and the West, London 1964.</em></span>
	</li>
	<li>
		<span style="font-size:12px;"><em>Conway and Siegelman, Dark Hero, pp. 318, 330.</em></span>
	</li>
	<li>
		<span style="font-size:12px;"><em>John J. Ford, “Soviet Cybernetics and International Development”, in The Social Impact of Cybernetics, ed. Charles R. Dechert, New York 1966, p. 189.</em></span>
	</li>
	<li>
		<span style="font-size:12px;"><em>Colonel Raymond S. Sleeper, “Cybernetics in the Service of Communism”, Air University Review (March-April 1967) (http://www.airpower.maxwell.af.mil/airchronicles/aureview/1967/mar-apr/sleeper.html).</em></span>
	</li>
	<li>
		<span style="font-size:12px;"><em>CIA Office of Scientific Intelligence, “The Meaning of Cybernetics in the USSR”, Intelligence Memorandum No. 0757/64, 26 February 1964, p. 9.</em></span>
	</li>
	<li>
		<span style="font-size:12px;"><em>CIA Office of Scientific Intelligence, “The Features of the Soviet Cybernetics Program Through 1963”, Research Source Book No. OSI-RA/65-2, 5 January 1965, p. 13.</em></span>
	</li>
	<li>
		<span style="font-size:12px;"><em>CIA Office of Scientific Intelligence, “Major Developments in the SovBloc Cybernetics Programs in 1965”, Scientific and Technical Intelligence Report No. OSI-RA/66-29, 3 October 1966, pp. 2, 24.</em></span>
	</li>
	<li>
		<span style="font-size:12px;"><em>Rindzeviciute, Constructing Soviet Cultural Policy, p. 146.</em></span>
	</li>
	<li>
		<span style="font-size:12px;"><em>Nikolai Fedorenko, Vspominaia proshloe, zagliadyvaiu v budushchee, Moscow 1999, pp. 179, 228.</em></span>
	</li>
	<li>
		<span style="font-size:12px;"><em>Kenneth J. Arrow to Walter W. Heller, 1 November 1962; Schlesinger Personal Papers, box WH-7, “Cybernetics”.</em></span>
	</li>
	<li>
		<span style="font-size:12px;"><em>Jerome Wiesner to Arthur Schlesinger, Jr., 25 February 1963; Schlesinger Personal Papers, box WH-7, “Cybernetics”.</em></span>
	</li>
	<li>
		<span style="font-size:12px;"><em>Keeny, Jr., “Search for Soviet Cybernetics”, p. 86.</em></span>
	</li>
	<li>
		<span style="font-size:12px;"><em>Herbert A. Simon, Models of My Life, New York 1991, pp. 295–296.</em></span>
	</li>
	<li>
		<span style="font-size:12px;"><em>Quoted in Conway and Siegelman, Dark Hero, p. 321. — On IPTO funding of AI, see Arthur Norberg and Judy O’Neill, Transforming Computer Technology: Information Processing for the Pentagon, 1962–1986, Baltimore, Md. 1996.</em></span>
	</li>
	<li>
		<span style="font-size:12px;"><em>J.C.R. Licklider, OH 150. Oral history interview by William Aspray and Arthur L. Norberg, 28 October 1988, Cambridge, Massachusetts. Charles Babbage Institute, University of Minnesota, Minneapolis. (http://www.cbi.umn.edu/oh/pdf.phtml?id=180).</em></span>
	</li>
	<li>
		<span style="font-size:12px;"><em>J.C.R. Licklider, “Man-Computer Symbiosis”, IRE Transactions on Human Factors in Electronics, vol. HFE-1 (March 1960), p. 7.</em></span>
	</li>
	<li>
		<span style="font-size:12px;"><em>Paul N. Edwards, Closed World: Computers and the Politics of Discourse in Cold War America, Cambridge, Mass. 1996, p. 266.</em></span>
	</li>
	<li>
		<span style="font-size:12px;"><em>J.C.R. Licklider, OH 150.</em></span>
	</li>
	<li>
		<span style="font-size:12px;"><em>Quoted in Katie Hafner and Matthew Lyon, Where Wizards Stay Up Late. New York 1996, p. 38.</em></span>
	</li>
	<li>
		<span style="font-size:12px;"><em>Janet Abbate, Inventing the Internet. Cambridge, Mass. 1999, p. 44; J.C.R. Licklider and Robert W. Taylor, “The Computer as a Communication Device”, Science and Technology (April 1968), p. 31 (http://gatekeeper.dec.com/pub/DEC/SRC/publications/taylor/licklider-taylor.pdf).</em></span>
	</li>
	<li>
		<span style="font-size:12px;"><em>Edwards, Closed World, pp. 2–3.</em></span>
	</li>
	<li>
		<span style="font-size:12px;"><em>Quoted in Conway and Siegelman, Dark Hero, p. 321.</em></span>
	</li>
</ol>

<p>
	 
</p>

<p>
	<strong><a href="https://balticworlds.com/the-cybernetics-scare-and-the-origins-of-the-internet/" rel="external nofollow">Source</a></strong>
</p>
]]></description><guid isPermaLink="false">2472</guid><pubDate>Mon, 27 Sep 2021 16:07:20 +0000</pubDate></item><item><title>Some students don't understand the concept of computer files and folders</title><link>https://nsaneforums.com/news/technology-news/some-students-dont-understand-the-concept-of-computer-files-and-folders-r2466/</link><description><![CDATA[<p>
	<span style="font-size:20px;"><strong>Thanks to modern technology</strong></span>
</p>

<p>
	 
</p>

<p>
	<strong><span style="color:#2980b9;">WTF?!</span></strong> To readers of this site, the idea that some students on courses ranging from engineering to physics don’t know what files and folders are might seem strange, but it’s true. According to a new report, the fault lies with popular modern operating systems and devices that include all-encompassing search functions or hide file structures from plain view.
</p>

<p>
	 
</p>

<p>
	Those of us of a certain age will be familiar with maintaining a nested hierarchy of files, having grown up with the likes of Windows 3.1 and relying on MS-DOS. But as highlighted in a new report by The Verge, the advent of smartphones, tablets, search functions, and cloud storage made the need to understand what a directory is less critical.
</p>

<p>
	 
</p>

<p>
	“The first internet search engines were used around 1990, but features like Windows Search and Spotlight on macOS are both products of the early 2000s. Most of 2017’s college freshmen were born in the very late ‘90s,” writes the publication. “While many of today’s professors grew up without search functions on their phones and computers, today’s students increasingly don’t remember a world without them.”
</p>

<p>
	 
</p>

<p style="text-align:center;">
	<img alt="2021-09-27-image-2-j.webp" class="ipsImage" data-ratio="75.10" height="450" width="720" src="https://static.techspot.com/images2/news/bigimage/2021/09/2021-09-27-image-2-j.webp" />
</p>

<p style="text-align:center;">
	 
</p>

<p>
	Saavik Ford, a professor of astronomy at the Borough of Manhattan Community College, said it best: “I grew up when you had to have a file; you had to save it; you had to know where it was saved. There was no search function.” She added that among her students, “There’s not a conception that there’s a place where files live. They just search for it and bring it up. They have a laundry basket full of laundry, and they have a robot who will fetch them every piece of clothing they want on demand.”
</p>

<p>
	 
</p>

<p>
	Generational issues are not something new, of course. Peter Plavchan, an associate professor of physics and astronomy at George Mason University, noted that while some of his students have over 1,000 files in the same directory, one of his own professors was amazed that people didn’t know how to solder a chip onto a motherboard. This writer, meanwhile, recalls a 1990's lecturer who thought all GUIs were the devil's work.
</p>

<p>
	Plavchan is considering offering an entire course based solely on directory structure, but is such a thing even worth it? “I imagine what’s going to happen is our generation of students [...] they’re going to grow up and become professors, they’re going to write their own tools, and they’re going to be based on a completely different approach from what we use today.”
</p>

<p>
	 
</p>

<p>
	Addressing fellow educators who look on aghast at students unable to comprehend filing systems, Plavchan warns, “This is not gonna go away. You’re not gonna go back to the way things were. You have to accept it. The sooner that you accept that things change, the better.”
</p>

<p>
	 
</p>

<p>
	<strong><a href="https://www.techspot.com/news/91434-students-dont-understand-concept-computer-files-folders.html" rel="external nofollow">Source</a></strong>
</p>
]]></description><guid isPermaLink="false">2466</guid><pubDate>Mon, 27 Sep 2021 14:59:04 +0000</pubDate></item><item><title>Microsoft Weekly: New Surface hardware, Windows 11 in Release Preview, and gaming</title><link>https://nsaneforums.com/news/technology-news/microsoft-weekly-new-surface-hardware-windows-11-in-release-preview-and-gaming-r2456/</link><description><![CDATA[<p>
	It’s been an eventful week in the world of Microsoft. There is a new Windows 11 build for the Dev channel with a bunch of bug fixes, Release Preview Insiders received their first taste of Windows 11 in the way of an optional update to the new OS, the Redmond company announced a bunch of new Surface hardware bringing much-needed upgrades to most of the product line, and much more. Check all this out and more in our weekly Microsoft digest for the week of September 19 – September 25.
</p>

<h3>
	Windows 11 in Release Preview, new Dev channel build, more
</h3>

<p>
	<img alt="1632320691_windows_11_release_preview_st" class="ipsImage" data-ratio="59.31" height="405" width="720" src="https://cdn.neow.in/news/images/uploaded/2021/09/1632320691_windows_11_release_preview_story.jpg">
</p>

<p>
	 
</p>

<p>
	As is now the case every week, there was a new Dev channel build. <a href="https://www.neowin.net/news/windows-11-build-22463-for-the-dev-channel-fixes-misaligned-taskbar-icons-and-more/" rel="external nofollow">Build 22463 brought a bunch of bug fixes</a>, including a fix for the issue that caused the taskbar icons to align incorrectly. While the branch from which new Dev channel builds are being served is not tied to a specific Windows 11 version, the firm has said that many fixes being made will also be brought to the Windows 11 version releasing next month. It does note that newer features for the Dev channel are a while away.
</p>

<p>
	 
</p>

<p>
	As the OS begins to near <a href="https://www.neowin.net/news/windows-11-will-ship-to-new-and-existing-pcs-on-october-5/" rel="external nofollow">its October 5 rollout date</a>, Release Preview Insiders finally got their first taste of Windows 11, thanks to the <a href="https://www.neowin.net/news/windows-11-build-22000194-now-available-to-insiders-in-the-release-preview-channel/" rel="external nofollow">rollout of build 22000.194</a>. The rollout, just like how recent feature updates have been, is currently optional for eligible users. It will not be surprising to see mainstream users begin receiving the same build when the OS launches on October 5, with there being a few day-one updates bringing bug fixes. Considering that the rollout is staggered, not many eligible users will see the update on day one, which gives the firm time to polish the offering further before expanding the rollout. For those who want to perform a fresh install, the firm also released ISO images for this build.
</p>

<p>
	 
</p>

<p>
	However, for those trying to install the new <a href="https://www.neowin.net/news/microsoft-officially-adds-some-7th-gen-intel-processors-to-its-list-of-windows-11-supported-cpus/" rel="external nofollow">OS on unsupported hardware</a>, the company is supposedly planning to get those users to sign an acknowledgment, agreeing that they are installing the OS with the knowledge that they might not receive critical security updates or support. There has been an ongoing discussion about whether the firm will serve updates to users running its latest OS on unsupported hardware. Talking about hardware compatibility, the firm also released the <a href="https://www.neowin.net/news/microsoft-restores-pc-health-check-app-for-windows-11-compatibility/" rel="external nofollow">updated PC Health Check app for Insiders</a>, bringing much-needed improvements to the Windows 11 compatibility checking tool.
</p>

<p>
	 
</p>

<p>
	Continuing the topic of updates, Edge Dev users <a href="https://www.neowin.net/news/final-edge-95-build-for-the-dev-channel-brings-windows-11-style-visuals-and-more/" rel="external nofollow">received their final Edge 95 build</a> which brought the new Windows 11-style visual updates by default. As expected, some elements such as the Mica material are exclusive to those running the offering on Windows 11. Another significant addition was the ability to pick up PDF documents where users last left them.
</p>

<p>
	 
</p>

<p>
	The Microsoft Teams desktop client is also slated to receive a new capability that <a href="https://www.neowin.net/news/microsoft-will-allow-users-to-join-team-meetings-anonymously-via-the-desktop-app/" rel="external nofollow">will allow adding anonymous users to Teams meetings</a>. This brings another way for users to conduct meetings with vendors or users from different organizations. The rollout of the feature is slated for October, as spotted on the Microsoft 365 Roadmap.
</p>

<h3>
	Brand new Surface hardware
</h3>

<p>
	<img alt="1632609806_surface-family-3_story.jpg" class="ipsImage" data-ratio="59.31" height="405" width="720" src="https://cdn.neow.in/news/images/uploaded/2021/09/1632609806_surface-family-3_story.jpg">
</p>

<p>
	Source: Microsoft
</p>

<p>
	 
</p>

<p>
	Microsoft held its much-awaited hardware event this week, announcing a bunch of new hardware. <a href="https://www.neowin.net/news/microsoft-unveils-the-surface-pro-8-with-a-new-120hz-display-thunderbolt-4-ports-and-more/" rel="external nofollow">The Surface Pro 8 brought the first major redesign</a> for the 2-in-1 in over five years. The display is now a 13-inch unit that sports a 120Hz high refresh rate. The device sports two Thunderbolt 4 ports, making it the first Surface PC to support a Thunderbolt port. There is also a new Slim Pen 2 that brings haptic feedback and a new design. The stylus can is housed in the new carbon-fiber sporting Signature keyboard.
</p>

<p>
	 
</p>

<p>
	As for internals, the device sports Intel’s 11th-gen Tiger Lake chips and can be configured with 32GB of RAM and 1TB of removable SSD storage. The Surface Laptop Studio is available in "select markets" for an asking price starting at $1599.99.
</p>

<p>
	 
</p>

<p>
	The <a href="https://www.neowin.net/news/microsoft-announces-surface-duo-2-with-better-cameras-5g-and-more/" rel="external nofollow">Android-powered Surface Duo 2</a> also brings welcome improvements. These include slightly larger 5.8-inch displays that now curve into the hinge area, making for a glanceable notifications panel when the device is closed. There is now a new triple-camera array at the back, bringing ultra-wide, wide, and telephoto lenses, improving greatly on its predecessor. The phone also features support for the Surface Slim pen that can be magnetically attached to the back.
</p>

<p>
	Internals have also seen a significant upgrade, with the top-tier Snapdragon 888 SoC bringing 5G support. NFC is also being added. The Surface Duo 2 is priced at $1499.99 and is available for pre-order in select markets.
</p>

<p>
	 
</p>

<p>
	The star of the show, however, was <a href="https://www.neowin.net/news/microsofts-surface-laptop-studio-brings-a-new-form-factor-with-powerful-internals/" rel="external nofollow">the Surface Laptop Studio</a>, a new device in the Surface lineup that replaces the Surface Book brand. Unlike the Book’s detachable top section, the Laptop Studio features a swiveling display that can be placed in Laptop or Studio modes, mimicking devices like the Acer ConceptD Ezel laptops.
</p>

<p>
	 
</p>

<p>
	The offering features Intel 11th-gen H35 chips and RTX graphics, making it the most powerful Surface device to date. Just like the Surface Pro 8, the Laptop Studio comes with a high refresh rate display and Thunderbolt 4 ports. The stepped design also allows for the Slim Pen 2 to be attached – and charged – magnetically under the keyboard deck. The laptop can be maxed out with 32GB of RAM and 2TB of SSD storage. The Surface Laptop Studio is available for “select markets" for an asking price starting at $1599.99.
</p>

<p>
	 
</p>

<p>
	There were a few minor upgrades to some devices as well. <a href="https://www.neowin.net/news/microsoft-announces-surface-go-3-powered-by-the-new-intel-cpus/" rel="external nofollow">The Surface Go 3 was updated</a> with new Intel chips, with the tablet now available with a 10th-gen Core i3 processor. The ARM-powered Surface Pro X, on the other hand, can now be had in Wifi-only flavor for a lower asking price. There were also new peripherals like the Ocean Plastic Mouse made from 20% recycled ocean plastic.
</p>

<h3>
	Halo Infinite preview, Sea of Thieves Season Four, and more
</h3>

<p>
	<img alt="1632469636_1120x630_haloinfinite_behemot" class="ipsImage" data-ratio="59.31" height="405" width="720" src="https://cdn.neow.in/news/images/uploaded/2021/09/1632469636_1120x630_haloinfinite_behemoth_honeydew_07-5995e457897c4d4388e55ff3dce786cb_story.jpg">
</p>

<p>
	 
</p>

<p>
	Starting off this week’s gaming news is – unsurprisingly – Halo Infinite. As <a href="https://www.neowin.net/news/next-halo-infinite-playtest-is-open-across-two-weekends-offering-arena-and-btb/" rel="external nofollow">announced earlier this week</a>, 343 Industries opened the next round of technical tests for its upcoming title. The <a href="https://www.neowin.net/news/first-weekend-of-halo-infinites-latest-multiplayer-testing-rounds-is-now-live/" rel="external nofollow">first weekend of the double Technical Preview drop</a> this week brings access to player versus player Arena from the get-go, including Bot Arena from the previous flights. However, Social Arena playlist opens matchmaking only at pre-set times to stress test the servers. You can find the schedule <a href="https://www.neowin.net/news/first-weekend-of-halo-infinites-latest-multiplayer-testing-rounds-is-now-live/" rel="external nofollow">in the news article here</a>.
</p>

<p>
	 
</p>

<p>
	The first preview closes on Tuesday, the 27th of September, and opens back up on Friday, October 1. The second drop will contain the overhauled 12 versus 12 Big Team Battle (BTB) mode. It must be noted that Bot Arena, Training Mode, Weapon Drills, and Battle Pass elements are accessible through both weekends.
</p>

<p>
	 
</p>

<p>
	Moving on, Rare announced this week the <a href="https://www.neowin.net/news/sea-of-thieves-is-introducing-underwater-vaults-and-strongholds-to-plunder/" rel="external nofollow">next major content update for Sea of Thieves</a>, Season Four, which <a href="https://www.neowin.net/news/sea-of-thieves-season-four-now-live-vastly-expands-the-ocean-floor/" rel="external nofollow">began rolling out on September 23</a>. The update takes players under the waves this time around, bringing new undersea adventures such as new Siren Shrine and Siren Treasury destinations. The studio is also introducing a treasure storage method to transport entire loot stacks from the bottom of the sea to save players from taking multiple trips to transport their loot. The new season also brings 100-level battle pass levels to climb for free and a refreshed premium Plunder Pas.
</p>

<p>
	 
</p>

<p>
	Those waiting for Alan Wake Remastered were <a href="https://www.neowin.net/news/alan-wake-remastered-comparison-trailer-reveals-significant-visual-upgrades/" rel="external nofollow">also treated to a comparison trailer</a> showing off the visual upgrades made to the title against the original Xbox 360 version. Unsurprisingly, there is higher resolution rendering, accompanied by better textures, lighting, and more. The title launches on October 5, 2021, and features the base game and The Signal and The Writer story expansions.
</p>

<p>
	 
</p>

<p>
	Rounding off gaming news this week are the <a href="https://www.neowin.net/news/halo-and-star-wars-get-major-discounts-in-this-weeks-deals-with-gold/" rel="external nofollow">Deals with Gold discounts</a>. Titles from the Assassin’s Creed, Halo, Forza, and Star Wars franchises are receiving major discounts. However, some discounts noted in the piece are exclusive to Xbox Live Gold members.
</p>

<p>
	 
</p>

<p>
	Lastly, <a href="https://www.neowin.net/news/xbox-series-xs-and-xbox-one-september-update-focuses-on-remote-play-and-game-discovery/" rel="external nofollow">Xbox Series X|S and Xbox One September update was announced this week</a>. The release notes mention the recently announced support for Remote Play and cloud gaming on PC via the updated Xbox app. The update also brings an update to the new Chromium-based Edge browser to improve performance and more.
</p>

<h3>
	Dev channel
</h3>

<ul>
	<li>
		Chrome 94 <a href="https://www.neowin.net/news/chrome-94-is-coming-today-with-support-for-controversial-idle-detection-api/" rel="external nofollow">launches on Windows with controversial idle detection API</a>
	</li>
	<li>
		Xbox 360 Gamerpics <a href="https://www.neowin.net/news/select-insiders-can-now-go-back-to-using-xbox-360-gamerpics-on-xbox-one-and-xbox-series-xs/" rel="external nofollow">available for select Xbox One and Xbox Series X|S users</a>
	</li>
	<li>
		VaxApp is a <a href="https://www.neowin.net/news/vaxapp-is-microsofts-teams-app-for-organizations-to-manage-vaccination-attestation/" rel="external nofollow">new Microsoft Teams app to help organizations manage vaccination attestation</a>
	</li>
	<li>
		<a href="https://www.neowin.net/news/microsoft-and-sse-form-partnership-to-make-energy-more-sustainable/" rel="external nofollow">Microsoft and SSE form a partnership</a> to make energy more sustainable
	</li>
	<li>
		Latest <a href="https://www.neowin.net/news/latest-chrome-and-edge-stable-channel-builds-fix-critical-memory-uaf-security-vulnerability/" rel="external nofollow">Chrome and Edge updates fix critical memory UAF security vulnerability</a>
	</li>
</ul>

<h3>
	Logging off
</h3>

<p>
	<img alt="1632041603_capture_story.jpg" class="ipsImage" data-ratio="59.31" height="405" width="720" src="https://cdn.neow.in/news/images/uploaded/2021/09/1632041603_capture_story.jpg">
</p>

<p>
	 
</p>

<p>
	We continue with the <a href="https://www.neowin.net/news/tags/closer_look/" rel="external nofollow">Closer Look series</a> where we provide a detailed view of the various new components in Windows 11, a comparison of the equivalent feature in Windows 11 – where applicable, and a run-down of the good and the bad. This week, we looked at not one but two areas of the OS – the <a href="https://www.neowin.net/news/closer-look-file-explorer-in-windows-11/" rel="external nofollow">new File Explorer</a> and the <a href="https://www.neowin.net/news/closer-look-context-menus-in-windows-11/" rel="external nofollow">updated Context menus</a>. Check out our complete comparison and let us know your thoughts.
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.neowin.net/news/microsoft-weekly-new-surface-hardware-windows-11-in-release-preview-and-gaming/" rel="external nofollow">Microsoft Weekly: New Surface hardware, Windows 11 in Release Preview, and gaming</a>
</p>
]]></description><guid isPermaLink="false">2456</guid><pubDate>Sun, 26 Sep 2021 02:05:54 +0000</pubDate></item><item><title>More Alder Lake-S Core i9-12900K benchmarks leak, splendid performance but maybe not always</title><link>https://nsaneforums.com/news/technology-news/more-alder-lake-s-core-i9-12900k-benchmarks-leak-splendid-performance-but-maybe-not-always-r2443/</link><description><![CDATA[<p>
	Intel's Alder Lake-S and the Z690 platform are <a href="https://www.neowin.net/news/more-affordable-alder-lake-s-motherboards-likely-not-coming-before-2022-suggests-eec-leak/" rel="external nofollow">probably launching pretty soon</a> which is why we have been having plenty of performance leaks in the last few months.
</p>

<p>
	 
</p>

<p>
	Back in July, it was reported that Intel's Alder Lake-S flagship SKU, the upcoming Core i9-12900K, was <a href="https://www.neowin.net/news/16c24t-intel-core-i9-12900k-alder-lake-s-reportedly-batters-the-16c32t-ryzen-9-5950x/" rel="external nofollow">besting AMD's Ryzen 9 5950X in Cinebench R20</a>. Although unconfirmed, this sounded impressive as Cinebench, and rendering in general, has been one of the stronger areas of performance for Ryzen.
</p>

<p>
	 
</p>

<p>
	Today, a screenshot showing the alleged performance of the i9-12900K in Cinebench R23 has leaked. The image was posted by <a href="https://twitter.com/9550pro/status/1441211138788581391" rel="external nofollow">HXL</a> on Twitter and the processor apparently has scored around ~2,050 points in the single-core test.
</p>

<p>
	 
</p>

<p>
	<img alt="1632484619_cb_r23_12900k_st_(source-_hxl" class="ipsImage" data-ratio="74.56" height="340" width="456" src="https://cdn.neow.in/news/images/uploaded/2021/09/1632484619_cb_r23_12900k_st_(source-_hxl_twitter).jpg">
</p>

<p>
	 
</p>

<p>
	That's not all though as another Twitter user <a href="https://twitter.com/hw_reveal/status/1438492746847715328" rel="external nofollow">REHWK</a> posted another image of an alleged Cinebench R23 run for the Core i9-12900K, though this time, it was showing the performance of the CPU in the multi-core test. Alongside the Cinebench R23 application, this image also has CPU-Z and the Task Manager open, giving the image more credibility.
</p>

<p>
	 
</p>

<p>
	<img alt="1632484511_cb_r23_12900k_(source-_rehwk_" class="ipsImage" data-ratio="59.31" height="405" width="720" src="https://cdn.neow.in/news/images/uploaded/2021/09/1632484511_cb_r23_12900k_(source-_rehwk_twitter)_story.jpg">
</p>

<p>
	 
</p>

<p>
	In terms of how these compare, the single-core number is around 20% faster than the Ryzen 9 5950X while the multi-core score is only slightly better. Since the multi-core number appears to be more believable, it's probably not very wrong to add that the score is indeed impressive as the Core i9-12900K is (8+8) CPU part. The (8+8) indicates eight powerful P-cores and eight smaller E-cores. The design is similar to Arm's big.LITTLE and Chipzilla is calling it the Performance Hybrid architecture.
</p>

<p>
	 
</p>

<p>
	And since only the P-cores are hyper-threaded, the i9-12900K is essentially a 16-core, 24-thread (16C/24T) SKU and it is able to match a Ryzen 9 5950X that has 32 threads. Gaming performance of the Core i9-12900K is also looking mighty impressive as seen <a href="https://www.neowin.net/news/intel-alder-lake-s-core-i9-12900k-trounces-the-ryzen-9-5950x-in-aots-with-ease/" rel="external nofollow">from the recent AotS:E leak</a>.
</p>

<p>
	 
</p>

<p>
	However, the new <a href="https://www.neowin.net/news/microsoft-and-intel-confirm-windows-11-is-optimized-for-alder-lakes-biglittle-design/" rel="external nofollow">Performance Hybrid approach that Intel is going with Alder Lake</a> might have its downsides too in many applications as even Intel's own instructions per clock (IPC) numbers also suggest. The image below shows IPC gains in Alder Lake against last-gen Rocket Lake architecture and it is clear that Alder Lake loses out in quite a few tests despite the overall 19% average improvement.
</p>

<p>
	 
</p>

<p>
	<img alt="1629606672_alder_lake_ipc_story.jpg" class="ipsImage" data-ratio="59.31" height="405" width="720" src="https://cdn.neow.in/news/images/uploaded/2021/08/1629606672_alder_lake_ipc_story.jpg">
</p>

<p>
	 
</p>

<p>
	Also surfacing today was a SiSoft Sandra score of the Core i9-12900K. It was dug up by <a href="https://twitter.com/TUM_APISAK/status/1441340651782565898" rel="external nofollow">APISAK</a> from the SiSoftware database and the performance is rather poor as compared to the Ryzen 9 5950X. The i9 has scored 1,414.01Mpix/s overall compared to the 5950X's 2,004.98Mpix/s.
</p>

<p>
	 
</p>

<p>
	<img alt="1632484692_5950x_sandra.jpg" class="ipsImage" data-ratio="75.10" height="412" width="720" src="https://cdn.neow.in/news/images/uploaded/2021/09/1632484692_5950x_sandra.jpg">
</p>

<p>
	 
</p>

<p>
	<img alt="1632484685_12900k_sandra.jpg" class="ipsImage" data-ratio="75.10" height="412" width="720" src="https://cdn.neow.in/news/images/uploaded/2021/09/1632484685_12900k_sandra.jpg">
</p>

<p>
	 
</p>

<p>
	Of course, it is entirely possible that the tested part here wasn't at its best which could explain the especially poor showing in this instance. But this isn't the only time where the Core i9-12900K has performed poorly. Adobe After Effects numbers for the upcoming Intel flagship <a href="https://www.neowin.net/news/alder-lake-s-core-i9-12900k-leak-suggests-performance-might-be-underwhelming/" rel="external nofollow">leaked last month</a> and it too showed lower improvements.
</p>

<p>
	 
</p>

<p>
	Regardless though, it should always be kept in mind for all such performance leaks that the numbers could be very different from finished retail products as a lot of variables, like clock speeds, active cores, among other things, are often unknown.
</p>

<p>
	 
</p>

<p>
	Source: SiSoftware (<a href="https://ranker.sisoftware.co.uk/show_run.php?q=c2ffcee889e8d5edd8e0d1e6d0f684b989afcaaf92a284f7caf2&amp;l=en" rel="external nofollow">1</a>), (<a href="https://ranker.sisoftware.co.uk/show_run.php?q=c2ffcee889e8d5edd8e0d4e4d7f183be8ea8cda895a583f0cdf5&amp;l=en" rel="external nofollow">2</a>)
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.neowin.net/news/more-alder-lake-s-core-i9-12900k-benchmarks-leak-splendid-performance-but-maybe-not-always/" rel="external nofollow">More Alder Lake-S Core i9-12900K benchmarks leak, splendid performance but maybe not always</a>
</p>
]]></description><guid isPermaLink="false">2443</guid><pubDate>Fri, 24 Sep 2021 23:23:22 +0000</pubDate></item><item><title>More affordable Alder Lake-S motherboards likely not coming before 2022 suggests EEC leak</title><link>https://nsaneforums.com/news/technology-news/more-affordable-alder-lake-s-motherboards-likely-not-coming-before-2022-suggests-eec-leak-r2426/</link><description><![CDATA[<p>
	<img alt="1629390095_features_story.jpg" class="ipsImage" data-ratio="59.31" height="405" width="720" src="https://cdn.neow.in/news/images/uploaded/2021/08/1629390095_features_story.jpg">
</p>

<p>
	 
</p>

<p>
	Intel's <a href="https://www.neowin.net/news/microsoft-and-intel-confirm-windows-11-is-optimized-for-alder-lakes-biglittle-design/" rel="external nofollow">Alder Lake is the company's upcoming 12th gen Core processor family</a> and in the recent few weeks, there have been <a href="https://www.neowin.net/news/intel-alder-lake-s-core-i9-12900k-trounces-the-ryzen-9-5950x-in-aots-with-ease/" rel="external nofollow">plenty of performance leaks</a> for the <a href="https://www.neowin.net/news/tags/i9-12900k/" rel="external nofollow">desktop flagship Core i9-12900K</a> Alder Lake-S SKU. It is rumored that Alder Lake-S will be unveiled on November 19 which means Intel, as well as its motherboard partners, are likely testing, validating, and certifying these parts.
</p>

<p>
	 
</p>

<p>
	Today VideoCardz spotted multiple socket LGA1700-based 600-series chipset entries that will accompany Intel's Alder Lake-S CPUs. They are:
</p>

<p>
	 
</p>

<ul>
	<li>
		H670
	</li>
	<li>
		B660
	</li>
	<li>
		H610,
	</li>
</ul>

<p>
	 
</p>

<p>
	and will form the more affordable mainstream and entry-level LGA1700 options as opposed to the flagship Z690 chipset.
</p>

<p>
	 
</p>

<p>
	<img alt="1632382676_intel_mobo_h670_b660_h610_lea" class="ipsImage" data-ratio="59.31" height="405" width="720" src="https://cdn.neow.in/news/images/uploaded/2021/09/1632382676_intel_mobo_h670_b660_h610_leak_(source-_eec)_story.jpg">
</p>

<p>
	 
</p>

<p>
	Interestingly, the filings are very fresh and have been done by Intel itself which means motherboards based on these chipsets are likely still some distance away. That's because chipset and motherboard leaks when they are closer to launch generally involve one or more of Intel's or AMD's vendor partners instead of the companies themselves.
</p>

<p>
	 
</p>

<p>
	This gives some more credibility to an earlier report which claimed that Intel's plans for the Alder Lake-S launch only involve <a href="https://www.neowin.net/news/only-top-end-alder-lake-s-and-z690-parts-allegedly-landing-this-year-says-report/" rel="external nofollow">the top-end Z690-based motherboards</a>. The report also added that these more affordable chipset-based boards are reserved for CES next year.
</p>

<p>
	 
</p>

<p>
	While this is speculative, H670, B660, and H610 motherboards will likely also have both DDR4 and DDR5 options to choose from, as spotted by <a href="https://twitter.com/momomo_us/status/1440624441394806792" rel="external nofollow">@momomo_us</a> in another EEC leak that contains Gigabyte's potential Z690 motherboard lineup.
</p>

<p>
	 
</p>

<p>
	Source: <a href="https://portal.eaeunion.org/sites/odata/_layouts/15/Portal.EEC.Registry.UI/DisplayForm.aspx?ItemId=78077&amp;ListId=d84d16d7-2cc9-4cff-a13b-530f96889dbc" rel="external nofollow">EEC</a> via <a href="https://twitter.com/VideoCardz/status/1440937006314446850" rel="external nofollow">VideoCardz (Twitter)</a>
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.neowin.net/news/more-affordable-alder-lake-s-motherboards-likely-not-coming-before-2022-suggests-eec-leak/" rel="external nofollow">More affordable Alder Lake-S motherboards likely not coming before 2022 suggests EEC leak</a>
</p>
]]></description><guid isPermaLink="false">2426</guid><pubDate>Thu, 23 Sep 2021 22:26:17 +0000</pubDate></item><item><title>Everything Microsoft Announced, Including a Wacky, Flippy Laptop</title><link>https://nsaneforums.com/news/technology-news/everything-microsoft-announced-including-a-wacky-flippy-laptop-r2408/</link><description><![CDATA[<div>
	<header data-event-boundary="click" data-event-click='{"pattern":"ContentHeader"}' data-in-view='{"pattern":"ContentHeader"}' data-include-experiments="true">
		<div>
			<div>
				<div>
					<strong>The new hardware includes an updated Surface Duo 2, which you can finally call a phone, and a cute eco-friendly mouse.</strong>
				</div>
			</div>

			<div>
				 
			</div>
		</div>
	</header>
</div>

<div data-attribute-verso-pattern="article-body">
	<div data-event-boundary="click" data-event-click='{"pattern":"ChunkedArticleContent"}' data-in-view='{"pattern":"ChunkedArticleContent"}' data-include-experiments="true">
		<div>
			<div>
				<div data-journey-hook="client-content">
					<p>
						A week has passed since Apple dropped a <a href="https://www.wired.com/story/everything-apple-announced-september-2021/" rel="external nofollow">deluge of hardware</a>, but brace yourselves—it's Microsoft's turn. Today, the company announced new Surface laptops, accessories, and a phone, at a virtual event. From a wacky folding laptop to the new and improved Surface Duo 2, there's plenty to choose from if you've been <a href="https://www.wired.com/story/microsoft-surface-buying-guide/" rel="external nofollow">holding out for an upgrade</a>. 
					</p>

					<p>
						 
					</p>

					<p>
						All the hardware below is available for preorder starting today at <a data-event-click='{"element":"ExternalLink","outgoingURL":"https://cna.st/affiliate-link/7re9KwwwA6BvGSeHKYtNbkS1DSXERdHkooxpk8fJWdAHtqTxQJ71PJX9gnVmSASDWdXMUtso3fFMfY7H5VEYXqenMLwFA?cid=614a0042a61c3e890f31fc3f"}' data-offer-url="https://www.microsoft.com/en-us/surface" href="https://cna.st/affiliate-link/7re9KwwwA6BvGSeHKYtNbkS1DSXERdHkooxpk8fJWdAHtqTxQJ71PJX9gnVmSASDWdXMUtso3fFMfY7H5VEYXqenMLwFA?cid=614a0042a61c3e890f31fc3f" rel="external nofollow" target="_blank">Microsoft.com</a>, and they'll officially launch on October 5 (except for the Duo 2, which launches October 21). Here's everything Microsoft announced.
					</p>

					<blockquote data-event-boundary="click" data-event-click='{"pattern":"BlockquoteEmbed"}' data-in-view='{"pattern":"BlockquoteEmbed"}' data-include-experiments="true">
						<div>
							<p>
								If you buy something using links in our stories, we may earn a commission. This helps support our journalism. <a href="https://www.wired.com/2015/11/affiliate-link-policy/" rel="external nofollow">Learn more</a>.
							</p>
						</div>
					</blockquote>

					<div aria-level="3" role="heading">
						<span style="font-size:18px;"><strong>Surface Laptop Studio</strong></span>
					</div>

					<figure>
						<div>
							<img alt="Gear-Microsoft-Surface-Laptop-Studio-1.j" class="ipsImage" data-ratio="75.10" height="540" width="720" src="https://media.wired.com/photos/614a7ac5e2126c059c23269e/master/w_1600,c_limit/Gear-Microsoft-Surface-Laptop-Studio-1.jpg">
						</div>

						<figcaption data-event-boundary="click" data-event-click='{"pattern":"Caption"}' data-in-view='{"pattern":"Caption"}' data-include-experiments="true">
							Photograph: Microsoft
						</figcaption>
					</figure>

					<p>
						If the <a href="https://www.wired.com/review/microsoft-surface-book-3/" rel="external nofollow">Surface Book</a> and <a href="https://www.wired.com/review/microsoft-surface-studio-2/" rel="external nofollow">Surface Studio</a> had a baby, it would be the Surface Laptop Studio. The 14.4-inch touchscreen laptop comes with <a href="https://www.wired.com/story/high-refresh-rate-explained/" rel="external nofollow">a 120-Hz refresh rate</a>, but the display can adjust depending on what you need to do. There's Laptop Mode, with full access to the keyboard and touchpad; Stage Mode, where you can pull the display toward you to watch movies or play games; and Studio Mode (aka Tablet Mode), for drawing and writing. This is all possible thanks to a dual-hinge design embedded into the center, back behind the display and the base. The screen doesn't fold, but the casing behind it does. 
					</p>

					<div data-event-boundary="click" data-event-click='{"pattern":"h"}' data-in-view='{"pattern":"h"}' data-include-experiments="true">
						 
					</div>

					<p>
						It comes equipped with a 1080p front-facing camera and an 11th-gen Intel processor. (You can choose between Core i5 or Core i7.) It's compatible with Microsoft's new <a data-event-click='{"element":"ExternalLink","outgoingURL":"https://cna.st/affiliate-link/2oUDuR8JhC2m28E29faNiLM7HesCjogtdYYcziF5VaYyDXAdgUwo57wYLCAuwxzL6ppkxj7p3BiKPycqtKquWmtH6E7jR5iSexGvHDd6QnJb9UNjsYFHs5ddF5sny7twPiyoGMAyQ2bTLXddayqTJwUr4d8axKR9NYrrVMWbqF2Vttz4Vf?cid=614a0042a61c3e890f31fc3f"}' data-offer-url="https://www.microsoft.com/en-us/d/surface-slim-pen-2/8TB9XW8RWC14?rtc=1&amp;activetab=pivot%3aoverviewtab" href="https://cna.st/affiliate-link/2oUDuR8JhC2m28E29faNiLM7HesCjogtdYYcziF5VaYyDXAdgUwo57wYLCAuwxzL6ppkxj7p3BiKPycqtKquWmtH6E7jR5iSexGvHDd6QnJb9UNjsYFHs5ddF5sny7twPiyoGMAyQ2bTLXddayqTJwUr4d8axKR9NYrrVMWbqF2Vttz4Vf?cid=614a0042a61c3e890f31fc3f" rel="external nofollow" target="_blank">Surface Slim Pen 2</a>, also announced today and sold separately, which adds haptic feedback for a more interactive experience and low latency. The latter means it should feel more responsive when you write or sketch. It attaches magnetically to the bottom edge of the laptop, below the trackpad, similar to <a href="https://www.wired.com/review/apple-ipad-pro-2021/" rel="external nofollow">Apple's iPad Pro</a>. The Surface Laptop Studio <a data-event-click='{"element":"ExternalLink","outgoingURL":"https://cna.st/affiliate-link/2DU3NNvw6BXFjm9hie8kKygjM9ety9wP5cbdYNRQjQ9RX75hwVJdGbUsXgDcb7M517cP4RCvYLouZSy85jEQvECrS8JTL2BtE6cyPQpzQXmuVZrxxfxQpddAacaojMZNL4cnfnofsmZdbACHfyAM3kALxBrTiopQnKDGqk1ob8QRrZ?cid=614a0042a61c3e890f31fc3f"}' data-offer-url="https://www.microsoft.com/en-us/d/surface-laptop-studio/8srdf62swkpf?activetab=pivot%3aoverviewtab" href="https://cna.st/affiliate-link/2DU3NNvw6BXFjm9hie8kKygjM9ety9wP5cbdYNRQjQ9RX75hwVJdGbUsXgDcb7M517cP4RCvYLouZSy85jEQvECrS8JTL2BtE6cyPQpzQXmuVZrxxfxQpddAacaojMZNL4cnfnofsmZdbACHfyAM3kALxBrTiopQnKDGqk1ob8QRrZ?cid=614a0042a61c3e890f31fc3f" rel="external nofollow" target="_blank">starts at $1,600</a>. 
					</p>

					<div aria-level="3" role="heading">
						 
					</div>

					<div aria-level="3" role="heading">
						<span style="font-size:18px;"><strong>Surface Pro X</strong></span>
					</div>

					<figure>
						<div>
							<img alt="Gear-Microsoft-Surface-Pro-X.jpg" class="ipsImage" data-ratio="75.10" height="540" width="720" src="https://media.wired.com/photos/614a784ea680b1f2086efef4/master/w_1600,c_limit/Gear-Microsoft-Surface-Pro-X.jpg">
						</div>

						<figcaption data-event-boundary="click" data-event-click='{"pattern":"Caption"}' data-in-view='{"pattern":"Caption"}' data-include-experiments="true">
							Photograph: Microsoft
						</figcaption>
					</figure>

					<p>
						This time around, Microsoft is offering a Wi-Fi-only model of the Surface Pro X in addition to the LTE version. The starting price has also dipped by $100, making it a bit more <a data-event-click='{"element":"ExternalLink","outgoingURL":"https://cna.st/affiliate-link/4cnpy7ZU58KLWLLWQmq4iDMBYtr3eRas9NR2HW8apc6PQPPvBNGVGKRXQURQVqyDwBDmZv5nTdth93bs9v5Hp31PYMWewC7stuTJavy58JAyXd1VBAHC4XBmHDYc25g2CuffFZHL9LbZzGczDZiH2huXs5F1AotuXjChsRZadxu?cid=614a0042a61c3e890f31fc3f"}' data-offer-url="https://www.microsoft.com/en-us/d/surface-pro-x/8xtmb6c575md?rtc=1&amp;activetab=pivot%3aoverviewtab" href="https://cna.st/affiliate-link/4cnpy7ZU58KLWLLWQmq4iDMBYtr3eRas9NR2HW8apc6PQPPvBNGVGKRXQURQVqyDwBDmZv5nTdth93bs9v5Hp31PYMWewC7stuTJavy58JAyXd1VBAHC4XBmHDYc25g2CuffFZHL9LbZzGczDZiH2huXs5F1AotuXjChsRZadxu?cid=614a0042a61c3e890f31fc3f" rel="external nofollow" target="_blank">affordable at $899</a>. The Surface Pro X comes with improvements to Windows on ARM too, with a variety of optimized apps including Adobe Lightroom, Photoshop, Microsoft Office, and Microsoft Teams.
					</p>

					<p>
						 
					</p>
				</div>
			</div>

			<div>
				<div data-journey-hook="client-content">
					<p>
						Just like <a href="https://www.wired.com/review/microsoft-surface-pro-x/" rel="external nofollow">its predecessor</a>, the Surface Pro X includes a 13-inch touchscreen display, up to 15 hours of battery life, up to 16 GB of RAM, and runs on Microsoft's very own custom processors. 
					</p>

					<div aria-level="3" role="heading">
						 
					</div>

					<div aria-level="3" role="heading">
						<span style="font-size:18px;"><strong>Surface Pro 8</strong></span>
					</div>

					<figure>
						<div>
							<img alt="Gear-Microsoft-Surface-Pro-8.jpg" class="ipsImage" data-ratio="75.10" height="540" width="720" src="https://media.wired.com/photos/614a7850aef2e52736bc9f5d/master/w_1600,c_limit/Gear-Microsoft-Surface-Pro-8.jpg">
						</div>

						<figcaption data-event-boundary="click" data-event-click='{"pattern":"Caption"}' data-in-view='{"pattern":"Caption"}' data-include-experiments="true">
							Photograph: Microsoft
						</figcaption>
					</figure>

					<p>
						The Surface Pro 8, on the other hand, brings improvements to both the inside and out. Its 13-inch display is bigger and brighter than the <a href="https://www.wired.com/review/microsoft-surface-pro-7-2019/" rel="external nofollow">Surface Pro 7</a>. Like the Surface Laptop Studio, it packs a <a href="https://www.wired.com/story/high-refresh-rate-explained/" rel="external nofollow">120 Hz screen</a>, Thunderbolt 4 ports, and works with the Slim Pen 2 (sold separately). You can also charge and store the pen on the detachable keyboard (also not included). Microsoft made some improvements to its cameras too, adding better low-light capabilities for when you're Zooming in the dark. 
					</p>

					<div>
						<div data-node-id="h3tjwj">
							 
						</div>
					</div>

					<p>
						Internally, Microsoft says the Pro 8 is more than twice as fast as its predecessor, offering 40 percent higher CPU performance and 74 percent faster graphics. That's thanks to the 11th-gen Intel Core i5 processor or i7 processor. It <a data-event-click='{"element":"ExternalLink","outgoingURL":"https://cna.st/affiliate-link/56DCwaYCX4ZXnmMBwVwyLZhX5BdyQLosiJ3B8wBn3TjHbyEiKQCw4WvkLCbLq1MKnD7uyDxqUHJ3smrxwcJWs4TWMZ4w8YnrQrzphfQpVaqJ262s3NfmNd1G2uBSMwgy1S?cid=614a0042a61c3e890f31fc3f"}' data-offer-url="https://www.microsoft.com/en-us/d/surface-pro-8/8qwcrtq8v8xg?rtc=1" href="https://cna.st/affiliate-link/56DCwaYCX4ZXnmMBwVwyLZhX5BdyQLosiJ3B8wBn3TjHbyEiKQCw4WvkLCbLq1MKnD7uyDxqUHJ3smrxwcJWs4TWMZ4w8YnrQrzphfQpVaqJ262s3NfmNd1G2uBSMwgy1S?cid=614a0042a61c3e890f31fc3f" rel="external nofollow" target="_blank">starts at $1,100</a>. 
					</p>

					<div aria-level="3" role="heading">
						 
					</div>

					<div aria-level="3" role="heading">
						<span style="font-size:18px;"><strong>Surface Go 3</strong></span>
					</div>

					<figure>
						<div>
							<img alt="Gear-Microsoft-Surface-Go-3.jpg" class="ipsImage" data-ratio="75.10" height="540" width="720" src="https://media.wired.com/photos/614a784fe2126c059c23269c/master/w_1600,c_limit/Gear-Microsoft-Surface-Go-3.jpg">
						</div>

						<figcaption data-event-boundary="click" data-event-click='{"pattern":"Caption"}' data-in-view='{"pattern":"Caption"}' data-include-experiments="true">
							Photograph: Microsoft
						</figcaption>
					</figure>

					<p>
						The Surface Go 3 isn't all that different from <a href="https://www.wired.com/review/microsoft-surface-go-2/" rel="external nofollow">last year's model</a> on the outside. It still has the <a data-event-click='{"element":"ExternalLink","outgoingURL":"https://cna.st/affiliate-link/RTBwSQLjvVS7L8gk41caGMQyhDKY4ZYywGpg5NRHpP3akZXHUZ3yhEmrpfZ61ecCU7AUJwydBfMZBwcSkHdoc1fbYjrri7kgnwcwvkshZ6fiRiaRVaLL3uoK?cid=614a0042a61c3e890f31fc3f"}' data-offer-url="https://www.microsoft.com/en-us/d/surface-go-3/904h27d0cbwn" href="https://cna.st/affiliate-link/RTBwSQLjvVS7L8gk41caGMQyhDKY4ZYywGpg5NRHpP3akZXHUZ3yhEmrpfZ61ecCU7AUJwydBfMZBwcSkHdoc1fbYjrri7kgnwcwvkshZ6fiRiaRVaLL3uoK?cid=614a0042a61c3e890f31fc3f" rel="external nofollow" target="_blank">same $400 price</a>, the same 10.5-inch display, a kickstand on the back, a 5-megapixel selfie camera coupled with an 8-megapixel rear camera, and an attachable keyboard (sold separately). The main upgrades can be found under the hood. You now have the choice between a dual-core Intel Pentium Gold 6500Y processor or a 10th-gen Intel Core i3 processor. This tiny laptop/tablet hybrid also gets an additional hour of battery life, bringing the total up to 11 hours.
					</p>

					<div aria-level="3" role="heading">
						 
					</div>

					<div aria-level="3" role="heading">
						<span style="font-size:18px;"><strong>Surface Duo 2</strong></span>
					</div>

					<figure>
						<div>
							<img alt="Gear-Microsoft-Surface-Duo-2-1.jpg" class="ipsImage" data-ratio="75.10" height="540" width="720" src="https://media.wired.com/photos/614a7851b3ae0554099a3ab3/master/w_1600,c_limit/Gear-Microsoft-Surface-Duo-2-1.jpg">
						</div>

						<figcaption data-event-boundary="click" data-event-click='{"pattern":"Caption"}' data-in-view='{"pattern":"Caption"}' data-include-experiments="true">
							Photograph: Microsoft
						</figcaption>
					</figure>

					<p>
						The first Surface Duo, Microsoft's dual-screened portable device, didn't exactly <a href="https://www.wired.com/review/microsoft-surface-duo/" rel="external nofollow">sell like hotcakes</a>. But this time around, the company has leaned into the whole phone element of the Surface Duo (which had phone-call capabilities from the beginning). The Surface Duo 2 has been upgraded to include a rear camera module—with wide, ultrawide, and telephoto cameras—and will be powered by Qualcomm's Snapdragon 888 5G chip platform. That's the top-end smartphone chip found on most flagship Android phones today. It ships with Android 11, and in demonstrations of the foldable, Microsoft eschewed productivity hacks for more fun features: photo snapping, game playing, and TikTok browsing. 
					</p>
				</div>

				<div>
					 
				</div>
			</div>

			<div>
				<div data-journey-hook="client-content">
					<p>
						No doubt, the Surface Duo 2 is a smartphone. Its <a data-event-click='{"element":"ExternalLink","outgoingURL":"https://cna.st/affiliate-link/56DCwaYCX4ZXnmMBwVwyLZhX5BdyQLosiJ3B8wBn3TjHbyEiKQCw4WvkLCbLq1MKnD7uyDxqUHJ3smrxwcJWs4TWMZ4w8YnrQquSBodNuxbb3z2ULp6TPRfgJweinkbr2t?cid=614a0042a61c3e890f31fc3f"}' data-offer-url="https://www.microsoft.com/en-us/d/surface-duo-2/9408kgxp4xjl?rtc=1" href="https://cna.st/affiliate-link/56DCwaYCX4ZXnmMBwVwyLZhX5BdyQLosiJ3B8wBn3TjHbyEiKQCw4WvkLCbLq1MKnD7uyDxqUHJ3smrxwcJWs4TWMZ4w8YnrQquSBodNuxbb3z2ULp6TPRfgJweinkbr2t?cid=614a0042a61c3e890f31fc3f" rel="external nofollow" target="_blank">starting price of $1,500</a> might make you wince, though. You can read <a href="https://www.wired.com/story/microsoft-surface-duo-2" rel="external nofollow">more about it here</a>.
					</p>

					<div aria-level="3" role="heading">
						 
					</div>

					<div aria-level="3" role="heading">
						<span style="font-size:18px;"><strong>Additional Accessories</strong></span>
					</div>

					<p>
						 
					</p>

					<p>
						Alongside the new <a data-event-click='{"element":"ExternalLink","outgoingURL":"https://cna.st/affiliate-link/2oUDuR8JhC2m28E29faNiLM7HesCjogtdYYcziF5VaYyDXAdgUwo57wYLCAuwxzL6ppkxj7p3BiKPycqtKquWmtH6E7jR5iSexGvHDd6QnJb9UNjsYFHs5ddF5sny7twPiyoGMAyQ2bTLXddayqTJwUr4d8axKR9NYrrVMWbqF2Vttz4Vf?cid=614a0042a61c3e890f31fc3f"}' data-offer-url="https://www.microsoft.com/en-us/d/surface-slim-pen-2/8TB9XW8RWC14?rtc=1&amp;activetab=pivot%3aoverviewtab" href="https://cna.st/affiliate-link/2oUDuR8JhC2m28E29faNiLM7HesCjogtdYYcziF5VaYyDXAdgUwo57wYLCAuwxzL6ppkxj7p3BiKPycqtKquWmtH6E7jR5iSexGvHDd6QnJb9UNjsYFHs5ddF5sny7twPiyoGMAyQ2bTLXddayqTJwUr4d8axKR9NYrrVMWbqF2Vttz4Vf?cid=614a0042a61c3e890f31fc3f" rel="external nofollow" target="_blank">Surface Slim Pen 2 ($130)</a>, Microsoft has another new accessory to go along with many of these Surface laptops: an environmentally-friendly mouse. The new <a data-event-click='{"element":"ExternalLink","outgoingURL":"https://cna.st/affiliate-link/Lkx5GxxgQ14eVXjQMwt6iQ23m3Gpa6twJ8aSHqi9ZEEJcYHVDBbwsRXiZKXa115du8YhYsnJ1rsux4vAYDZSenYnNutnpD2Bvay1f7sYhtq5xghXkcMQw9aEpThbX5ttQXDEBnkoUXn57GLELU?cid=614a0042a61c3e890f31fc3f"}' data-offer-url="https://www.microsoft.com/en-ww/accessories/sustainability/ocean-plastic-mouse" href="https://cna.st/affiliate-link/Lkx5GxxgQ14eVXjQMwt6iQ23m3Gpa6twJ8aSHqi9ZEEJcYHVDBbwsRXiZKXa115du8YhYsnJ1rsux4vAYDZSenYnNutnpD2Bvay1f7sYhtq5xghXkcMQw9aEpThbX5ttQXDEBnkoUXn57GLELU?cid=614a0042a61c3e890f31fc3f" rel="external nofollow" target="_blank">Ocean Plastic Mouse</a> is made of 20 percent recycled ocean plastic and 100 percent recyclable packaging. As for its features, it comes equipped with left and right click buttons, a built-in scroll wheel, fast-tracking sensors, and Bluetooth connectivity (with up to a year of battery life). It costs $25.
					</p>

					<div data-attr-viewport-monitor="inline-recirc" data-event-boundary="click" data-event-click='{"pattern":"InlineRecirc"}' data-in-view='{"pattern":"InlineRecirc"}' data-include-experiments="true">
						 
					</div>

					<p>
						Microsoft also showed off an inexpensive sticker-and-lanyard pack to help people with disabilities navigate their hardware. Called the Surface Adaptive Kit, the sticker pack includes 16 tactile, adhesive buttons. There are also high-contrast keycap labels for people with low vision, as well as port labels that can be applied to both a cable and corresponding port on a laptop. And a lanyard tab offers an attachable loop that helps people with limited motor skills open up laptops more easily.
					</p>

					<div aria-level="3" role="heading">
						 
					</div>

					<div aria-level="3" role="heading">
						<span style="font-size:18px;"><strong>Windows 11 Is Coming</strong></span>
					</div>

					<div aria-level="3" role="heading">
						 
					</div>

					<div aria-level="3" role="heading">
						<img alt="gear_windows11.jpg" class="ipsImage" data-ratio="75.10" height="479" width="720" src="https://media.wired.com/photos/60d502dce0265e00c03a4016/master/w_1600,c_limit/gear_windows11.jpg">
					</div>

					<figure>
						<figcaption data-event-boundary="click" data-event-click='{"pattern":"Caption"}' data-in-view='{"pattern":"Caption"}' data-include-experiments="true">
							Windows 11 will be free to everyone who owns Windows 10, this fall.Photograph: Microsoft
						</figcaption>
					</figure>

					<p>
						Wednesday's event was extremely hardware-focused, but most of the devices revealed today are premium vehicles for Microsoft's newest operating system: <a href="https://www.wired.com/story/most-important-things-microsoft-announcement-windows-11-android-apps/" rel="external nofollow">Windows 11</a>. First revealed this past June and shipping on October 5, Windows 11 is Microsoft's first major OS update in several years. Its notable features include a repositioned Start button (which can be moved back to its traditional placement if you prefer), a new Windows Store, and support for Android apps, among other things. Some of these features will be rolled out in phases, and beta versions of Win11 have been buggy. But you can bet that Microsoft—and other PC makers who license the company's OS—will be racing to get their machines buyer-ready by the holiday season.
					</p>
				</div>
			</div>
		</div>
	</div>
</div>

<p>
	 
</p>

<p>
	<a href="https://www.wired.com/story/everything-microsoft-announced-september-2021/" rel="external nofollow">Everything Microsoft Announced, Including a Wacky, Flippy Laptop</a>
</p>
]]></description><guid isPermaLink="false">2408</guid><pubDate>Wed, 22 Sep 2021 22:22:56 +0000</pubDate></item><item><title>Flying cars could soon be ready for take off</title><link>https://nsaneforums.com/news/technology-news/flying-cars-could-soon-be-ready-for-take-off-r2394/</link><description><![CDATA[<p>
	While the idea of hovering motor vehicles might once have been considered farfetched, it's certainly not the case today.
</p>

<p>
	 
</p>

<p>
	Companies around the world are reaching new heights to develop flying cars that could one day be flown by commuters to work or even over longer distances for leisure travel.
</p>

<p>
	 
</p>

<p>
	UNSW aerospace design expert, Dr. Sonya Brown from the School of Mechanical and Manufacturing Engineering, says the aim of these vehicles is to eventually provide another means of urban air mobility to help reduce congestion on the road.
</p>

<p>
	 
</p>

<p>
	"Long-term, flying cars will offer us another means for short and personalized travel," she says.
</p>

<p>
	 
</p>

<p>
	"We're starting to see an emergence of flying car variants in development around the world, and even here in Australia, as more companies are investing in these vehicles.
</p>

<p>
	 
</p>

<p>
	"Some early adopters of this technology include rideshare companies and emergency services, given some vehicles are being designed to be more versatile than traditional aircraft and helicopters."
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<strong>What exactly are they?</strong>
</p>

<p>
	 
</p>

<p>
	Flying cars resemble a cross between a drone and a small aircraft, so most will have wings and typically include between four to eight rotors.
</p>

<p>
	They can fly a few hundred to a few thousand meters above the ground, occupying the air space above where you'd expect to see drones flying but below standard flying commercial aircrafts.
</p>

<p>
	 
</p>

<p>
	While it probably won't get someone from Sydney to Melbourne on one battery charge, flying cars could potentially travel up to 250 kilometers in one ride.
</p>

<p>
	 
</p>

<p>
	"The underlying technology that's so important with flying cars is the ability to both take off and land vertically and fly horizontally as well. This makes the mechanics much more complex than a helicopter which primarily has vertical propulsion," says Dr. Brown.
</p>

<p>
	 
</p>

<p>
	"And that's why we're calling them flying cars because they resemble the type of travel we would do with cars."
</p>

<p>
	 
</p>

<div class="ipsEmbeddedVideo">
	<div>
		<iframe allowfullscreen="" frameborder="0" height="113" width="200" data-embed-src="https://www.youtube.com/embed/u-OgzJSdD_Y?feature=oembed"></iframe>
	</div>
</div>

<p>
	 
</p>

<p>
	<strong>A win for the environment</strong>
</p>

<p>
	 
</p>

<p>
	Prototypes of flying cars are currently being designed with electrically powered rotors meaning they can be battery operated. As long as the batteries are recharged in a sustainable manner, for example using wind or solar energy, the flying cars won't emit any harmful emissions into the environment.
</p>

<p>
	 
</p>

<p>
	"Ideally, the aim is to design these green vehicles so that they reduce emissions whilst reducing traffic congestion on the ground as well," says Dr. Brown.
</p>

<p>
	 
</p>

<p>
	"With growing research in the renewable energy sector, I think there's huge potential to consider other alternative energy sources, such as hydrogen, to power the flying cars in the future."
</p>

<p>
	 
</p>

<p>
	<strong>Keeping the hand brake up for now</strong>
</p>

<p>
	 
</p>

<p>
	Slow down—flying cars won't take off just yet. There are a few bumps to get over first.
</p>

<p>
	 
</p>

<p>
	Some of the challenges the industry is looking to solve are around regulation and traffic control. Similar to commercial flights, flying cars will need traffic control rules, corridors and flight paths to establish right of way to avoid any potential collisions.
</p>

<p>
	 
</p>

<p>
	"There's a lot of work going into developing collision avoidance systems, particularly focusing on how these vehicles are going to communicate with each other to make real-time decisions on things such as right of way," says Dr. Brown.
</p>

<p>
	 
</p>

<p>
	"There's also an appetite from industry to make them pilotless or remotely piloted."
</p>

<p>
	 
</p>

<p>
	She says even though future flying car models could be autonomous, users may need much more experience than a simple driver's license to get behind the wheel of one.
</p>

<p>
	 
</p>

<p>
	"If we take a closer look at some of the flying cars in development, they are flown by highly trained and qualified pilots. But if we want to make them more accessible, then we need to bring the licensing requirements down," says Dr. Brown.
</p>

<p>
	 
</p>

<p>
	"It will be up to regulators and managing Government bodies around the world to work out what licensing category it fits into it—because currently there isn't one."
</p>

<p>
	 
</p>

<p>
	Flying cars also bring technical challenges such as battery life, particularly how many times it can be recharged before the battery duration starts to decline. Also, many of these vehicles can have up to eight rotors—which can be very noisy.
</p>

<p>
	 
</p>

<p>
	"More acoustic studies need to be done to try to minimize the noise of the propeller inside these rotors," says Dr. Brown.
</p>

<p>
	 
</p>

<p>
	"In the future, if there are going to be hundreds or even thousands of these occupying the skies above highly populated areas, it's important that we consider the impact the noise will have for people in their homes below."
</p>

<p>
	 
</p>

<p>
	<strong><a href="https://techxplore.com/news/2021-09-cars-ready.html" rel="external nofollow">Source</a></strong>
</p>
]]></description><guid isPermaLink="false">2394</guid><pubDate>Wed, 22 Sep 2021 14:47:17 +0000</pubDate></item><item><title>Intel Alder Lake-S Core i9-12900K trounces the Ryzen 9 5950X in AotS with ease</title><link>https://nsaneforums.com/news/technology-news/intel-alder-lake-s-core-i9-12900k-trounces-the-ryzen-9-5950x-in-aots-with-ease-r2387/</link><description><![CDATA[<p>
	Multiple Ashes of the Singularity: Escalation (AotS:E) benchmarks have leaked in the past few hours for Intel's upcoming Alder Lake-S flagship Core i9-12900K SKU. The processor is a 16 core, 24 thread (16C/24T) part, and it seems Intel or its motherboard vendor partners have been testing these upcoming processors.
</p>

<p>
	 
</p>

<p>
	One such benchmark run has been done using the 1440p High preset paired with an Nvidia GeForce RTX 3080, and a comparable system with a 16C/32T AMD Ryzen 9 5950X is easily defeated by the upcoming Intel desktop CPU.
</p>

<p>
	 
</p>

<p>
	The i9-12900K appears to be around ~40% faster than the AMD flagship SKU on average across all batches as it hits 146.6 fps against the Ryzen 9 5950X's 104.6. The latter is one of the fastest CPUs in AotS:E currently available for purchase.
</p>

<p>
	 
</p>

<p>
	<img alt="1632205202_5950x.jpg" class="ipsImage" data-ratio="75.10" height="412" width="720" src="https://cdn.neow.in/news/images/uploaded/2021/09/1632205202_5950x.jpg">
</p>

<p>
	 
</p>

<p>
	<img alt="1632205209_12900k.jpg" class="ipsImage" data-ratio="75.10" height="412" width="720" src="https://cdn.neow.in/news/images/uploaded/2021/09/1632205209_12900k.jpg">
</p>

<p>
	 
</p>

<p>
	It is noteworthy here that the title recently received an update with v3.1 that now allows the game to utilize up to 24 threads whereas previously, it was limited to 16 threads. This means the Core i9-12900K was likely fully saturated if the new optimization works as it says. And the Ryzen 9 5950X probably had some gas left in its tank as it is a 32 thread processor.
</p>

<p>
	 
</p>

<p>
	There are also plenty of other new feature additions to AotS:E with update v3.1 that you can read <a href="https://forums.ashesofthesingularity.com/506735/ashes-of-the-singularity-escalation-v31-optimizes-game-with-faster-load-tim" rel="external nofollow">about here</a>.
</p>

<p>
	 
</p>

<p>
	Source: AoTS:E benchmark database (<a href="https://www.ashesofthesingularity.com/benchmark#/benchmark-result/341d4240-0a61-45e3-864e-ca0a76545f54" rel="external nofollow">1</a>), (<a href="https://www.ashesofthesingularity.com/benchmark#/benchmark-result/5a8b9ab6-d751-4741-ac10-a0e0d1970290" rel="external nofollow">2</a>) via <a href="https://twitter.com/9550pro/status/1440112452780257283" rel="external nofollow">HXL (Twitter)</a>
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.neowin.net/news/intel-alder-lake-s-core-i9-12900k-trounces-the-ryzen-9-5950x-in-aots-with-ease/" rel="external nofollow">Intel Alder Lake-S Core i9-12900K trounces the Ryzen 9 5950X in AotS with ease</a>
</p>
]]></description><guid isPermaLink="false">2387</guid><pubDate>Tue, 21 Sep 2021 22:57:17 +0000</pubDate></item><item><title>HP takes on Microsoft Surface Go with the new 11-inch Tablet PC</title><link>https://nsaneforums.com/news/technology-news/hp-takes-on-microsoft-surface-go-with-the-new-11-inch-tablet-pc-r2386/</link><description><![CDATA[<p>
	<img alt="HP-11-inch-Tablet-PC.jpg" class="ipsImage" data-ratio="75.10" height="476" width="720" src="https://mspoweruser.com/wp-content/uploads/2021/09/HP-11-inch-Tablet-PC.jpg">
</p>

<p>
	 
</p>

<p>
	HP today revealed the new HP 11 inch Tablet PC, a thin and light PC that will compete with devices like Microsoft Surface Go. The main highlight of the HP 11 inch Tablet PC is its rotatable 13 MP camera. You can go from selfie mode to a world-view mode in an instant. It also comes with an innovative built-in kickstand. With the optional detachable magnetic keyboard, you can work in portrait and landscape mode. This Tablet PC also supports HP Rechargeable Tilt Pen and HP Palette software. It also comes with SuperSpeed USB Type-C port for seamless connectivity. This device will be powered by an Intel Pentium Silver N6000 processor and 4GB RAM.
</p>

<p>
	 
</p>

<p>
	<img alt="HP-11-inch-Tablet-PC-new.jpg" class="ipsImage" data-ratio="75.10" height="401" width="720" src="https://mspoweruser.com/wp-content/uploads/2021/09/HP-11-inch-Tablet-PC-new.jpg">
</p>

<p>
	 
</p>

<p>
	The HP 11 inch Tablet PC will be available in December at HP.com for $599. It is also expected to be available at Best Buy in December.
</p>

<p>
	 
</p>

<p>
	Source: <a href="https://press.hp.com/us/en/press-releases/2021/hp-announces-consumer-pc.html" rel="external nofollow" target="_blank">HP</a>
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://mspoweruser.com/hp-microsoft-surface-go-new-11-inch-tablet-pc/" rel="external nofollow">HP takes on Microsoft Surface Go with the new 11-inch Tablet PC</a>
</p>
]]></description><guid isPermaLink="false">2386</guid><pubDate>Tue, 21 Sep 2021 22:54:27 +0000</pubDate></item><item><title>Microsoft Surface Pro 7 gets September 2021 firmware update</title><link>https://nsaneforums.com/news/technology-news/microsoft-surface-pro-7-gets-september-2021-firmware-update-r2369/</link><description><![CDATA[<article>
	<p>
		Microsoft is now pushing the September 2021 firmware <a href="https://support.microsoft.com/en-us/surface/surface-pro-7-update-history-bbf79137-eb4f-417e-f243-a64d894818d0" rel="external nofollow" target="_blank">update</a> to Surface Pro 7 devices. The new firmware update adds no new features, as you’d expect. But it does addresses system hang and shut down issues, and unfortunately, that’s all you’ve got in the latest firmware update. You can read the full official changelog below.
	</p>

	<h2>
		Changelog
	</h2>

	<table border="1px solid black;">
		<thead>
			<tr>
				<th>
					Windows Update History
				</th>
				<th>
					Device Manager
				</th>
			</tr>
		</thead>
		<tbody>
			<tr>
				<td>
					Surface – Firmware – 13.0.1763.7
				</td>
				<td>
					Surface ME – Firmware
				</td>
			</tr>
		</tbody>
	</table>

	<p>
		 
	</p>

	<p>
		The September 2021 update has recently been rolled out to <a href="https://mspoweruser.com/microsoft-surface-go-2-september-2021-system-update/" rel="external nofollow">Surface Go 2</a> and <a href="https://mspoweruser.com/surface-book-3-september-firmware-update/" rel="external nofollow">Surface Book 3</a>, adding fixes for the critical security vulnerabilities, improvements to the USB-C and system performance and stability.
	</p>

	<p>
		 
	</p>

	<p>
		The September update is now rolling out and should be available for your Surface Pro 7. You can go to Settings&gt;Update and Security&gt;Windows Update to download and install the update.
	</p>
</article>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://mspoweruser.com/surface-pro-7-gets-september-update/" rel="external nofollow">Microsoft Surface Pro 7 gets September 2021 firmware update</a>
</p>
]]></description><guid isPermaLink="false">2369</guid><pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate></item><item><title>Microsoft&#x2019;s Surface hardware event: rumors, news, and announcements</title><link>https://nsaneforums.com/news/technology-news/microsoft%E2%80%99s-surface-hardware-event-rumors-news-and-announcements-r2366/</link><description><![CDATA[<div>
	<div>
		<div>
			<p>
				The event kicks off at 11AM ET / 8AM PT on September 22nd 
			</p>
		</div>
	</div>
</div>

<div>
	<p>
		 
	</p>

	<p id="epbR7Z">
		September 22nd officially marks the first day of fall, and with it gadget season. Like in previous years, Microsoft is getting into the mix with its <a href="https://www.theverge.com/2021/9/1/22651859/microsoft-surface-event-date" rel="external nofollow">forthcoming Surface event</a>, where we anticipate the company will announce a slew of products during its livestream presentation on Wednesday at 11AM ET / 8AM PT.
	</p>

	<p>
		 
	</p>

	<p id="O1u7z3">
		Microsoft has been building up plenty of momentum recently with the impending launch of <a href="https://www.theverge.com/2021/7/29/22600261/windows-11-beta-release-insider-microsoft-download-test" rel="external nofollow">Windows 11</a>. And with the new operating system <a href="https://www.theverge.com/2021/8/31/22649940/windows-11-release-date-features-devices-free-upgrade" rel="external nofollow">set to launch on October 5th</a>, it’s only natural to showcase it with new devices.
	</p>

	<p>
		 
	</p>

	<p id="BdDxfF">
		The reports and leaks seem to indicate that we may see updates to Microsoft’s Surface Pro, Surface Book, Surface Go, and Surface Duo lines. Many details of the <a href="https://www.theverge.com/2021/9/19/22682271/surface-pro-8-120hz-display-thunderbolt-support-leak-rumors" rel="external nofollow">Surface Pro 8 have already leaked</a>, including its new Intel 11th Gen processor, 120Hz display, and switch to Thunderbolt ports. While less early info has surfaced on the Book and Go refreshes, the former is <a href="https://www.theverge.com/2021/9/13/22671271/microsoft-surface-event-pro-8-surface-book-4-rumors" rel="external nofollow">slotted to have a significant design overhaul</a> while the latter will most likely see its changes happen on the inside.
	</p>

	<p>
		 
	</p>

	<p id="6Vvsf0">
		Beyond Windows 11 devices, Microsoft is expected to announce a successor to the dual-screen <a href="https://www.theverge.com/21428763/microsoft-surface-duo-review" rel="external nofollow">Surface Duo</a>. The <a href="https://www.theverge.com/2021/7/26/22593992/microsoft-surface-duo-2-triple-camera-leak-photos" rel="external nofollow">leaks for the Duo 2 began earlier in the summer</a>, promising an internal spec bump and a new triple-camera setup in addition to some smaller design tweaks. The big questions around the Duo 2 are in software and support, as the original Duo’s stagnation — it’s still stuck on Android 10 when Android 12 is around the corner — and slow sales have <a href="https://www.theverge.com/good-deals/2021/5/13/22433893/microsoft-surface-duo-hori-split-pad-pro-nintendo-switch-anker-sale-deal" rel="external nofollow">landed it in the clearance sections of many retailers</a>.
	</p>

	<p>
		 
	</p>

	<p id="uoWh9B">
		Regardless of whether Microsoft actually proves its Android chops with the Duo 2 or launches any surprises with its new flagships for Windows 11, we’ll be watching live and keeping you updated here as new products are announced.
	</p>
</div>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.theverge.com/22683714/microsoft-surface-event-announcements-news-products" rel="external nofollow">Microsoft’s Surface hardware event: rumors, news, and announcements</a>
</p>
]]></description><guid isPermaLink="false">2366</guid><pubDate>Mon, 20 Sep 2021 21:25:36 +0000</pubDate></item><item><title>Report: GPU prices creeping back up after a promising dip in cost last quarter</title><link>https://nsaneforums.com/news/technology-news/report-gpu-prices-creeping-back-up-after-a-promising-dip-in-cost-last-quarter-r2365/</link><description><![CDATA[<p>
	Last quarter, we reported that the prices for graphics cards were coming down as the trend showed an <a href="https://www.neowin.net/news/gamers-rejoice-graphics-cards-are-finally-getting-cheaper/" rel="external nofollow">apparent downward movement of retail GPU prices</a>. Sadly, however, it seems things haven't quite materialized the way it was thought.
</p>

<p>
	 
</p>

<p>
	Latest pricing data from 3DCenter gathered from the same major German retail outlets are now showing a slow but steady rise in the asking price of the graphics cards from both the Green (Nvidia) and Red (AMD) camps.
</p>

<p>
	 
</p>

<p>
	<img alt="1632123432_amd_nvidia_retail_price_trend" class="ipsImage" data-ratio="71.67" height="290" width="720" src="https://cdn.neow.in/news/images/uploaded/2021/09/1632123432_amd_nvidia_retail_price_trend_2021_v7_jan_to_sept_(source-_3dcenter).jpg">
</p>

<p>
	 
</p>

<p>
	In fact, after the last quarterly report, there was an even steeper decline in prices during late June and early July. This trend however did not continue as the prices settled for around this level for the next month. Since August though, the retail GPU prices have started to creep back up slowly.
</p>

<p>
	 
</p>

<p>
	Currently, the average pricing for AMD Radeon and Nvidia GeForce cards are 74% and 70% above their respective official MSRPs.
</p>

<p>
	 
</p>

<p>
	Multiple factors could be affecting the prices of the GPUs. First, there is the existing global chip shortage crisis which has also started to <a href="https://www.neowin.net/news/very-high-gddr6-costs-blamed-for-such-high-gpu-prices/" rel="external nofollow">adversely influence GDDR6 memory chip prices</a> as well, which is in turn affecting the prices of the graphics cards for this generation.
</p>

<p>
	 
</p>

<p>
	There are also reports of fresh COVID outbreaks in China that are seemingly affecting <a href="https://www.neowin.net/news/gpu-shipments-might-be-even-lower-in-september-due-to-new-covid-outbreaks/" rel="external nofollow">the factory production output levels of GPUs</a>.
</p>

<p>
	 
</p>

<p>
	Source and image: <a href="https://www.3dcenter.org/news/hardware-und-nachrichten-links-des-1819-september-2021" rel="external nofollow">3DCenter</a>
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.neowin.net/news/report-gpu-prices-creeping-back-up-after-a-promising-dip-in-cost-last-quarter/" rel="external nofollow">Report: GPU prices creeping back up after a promising dip in cost last quarter</a>
</p>
]]></description><guid isPermaLink="false">2365</guid><pubDate>Mon, 20 Sep 2021 21:23:19 +0000</pubDate></item><item><title>Microsoft maybe readying a new Windows 11-powered Surface Pro X</title><link>https://nsaneforums.com/news/technology-news/microsoft-maybe-readying-a-new-windows-11-powered-surface-pro-x-r2363/</link><description><![CDATA[<article class="singa">
	<p>
		Microsoft is confirmed to hold its Surface event on September 22, and we might see some surprise announcements at the event. One of the surprise announcements could be the launch of a new Surface Pro X device, designed to run Windows 11.
	</p>

	<p>
		 
	</p>

	<p>
		A new Surface Pro X with model number 2010 has recently been spotted on the Energy Star certifications website, hinting that the launch could be imminent. The certification site reveals some information about the processor it’ll use and the RAM. According to the listing, the new Pro X will feature 16GB of RAM and will be based on Snapdragon SQ 2 processor. For the sake of comparison, last year’s Surface Pro X is also based on the SQ2 processor. Unfortunately, the certification site doesn’t reveal anything exciting beyond RAM and processor.
	</p>

	<p>
		 
	</p>

	<p>
		A few days ago, a new Surface device with model number 2010 cleared the <a href="https://mspoweruser.com/microsoft-next-gen-surface-fcc/" rel="external nofollow">FCC</a> certification, but little did we know that it’s the new Surface Pro X. But thanks to the new Energy Star Certification site, we not only know about the existence of the new Pro X but also can safely assume that it’ll launch very soon, probably at the upcoming Surface event.
	</p>

	<p>
		 
	</p>

	<p>
		Meanwhile, the September 22 event will see a new Surface Pro 8, Surface Laptop 5, Surface Duo 2, Surface Go 3, and the rumored <a href="https://mspoweruser.com/microsofts-surface-book-studio-rendered/" rel="external nofollow">Surface Book “studio,”</a> the cost of which could exceed the <a href="https://mspoweruser.com/new-3000-surface-device-coming-this-week/" rel="external nofollow">$3,000</a> price mark. You will be able to watch the Surface event live <a href="https://www.microsoft.com/en-us/event/" rel="external nofollow" target="_blank">here</a>.
	</p>

	<p>
		 
	</p>

	<p>
		via <em><a href="https://www.windowslatest.com/2021/09/20/a-new-microsoft-surface-pro-x-is-coming-with-windows-11/" rel="external nofollow" target="_blank">Windows Latest</a></em>
	</p>
</article>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://mspoweruser.com/microsoft-readying-surface-pro-x-windows-11/" rel="external nofollow">Microsoft maybe readying a new Windows 11-powered Surface Pro X</a>
</p>
]]></description><guid isPermaLink="false">2363</guid><pubDate>Mon, 20 Sep 2021 21:18:09 +0000</pubDate></item><item><title>More specs of Microsoft Surface Pro 8 leaked by retailer</title><link>https://nsaneforums.com/news/technology-news/more-specs-of-microsoft-surface-pro-8-leaked-by-retailer-r2354/</link><description><![CDATA[<article>
	<p>
		Microsoft will be launching their new Surface line in 3 days, on the 22nd of September. This meant more retailers have had their hands on the specs of the device, inevitably resulting in leaks.
	</p>

	<p>
		 
	</p>

	<p>
		The latest has been Twitter user Sam, who came across hero display for the Surface Pro 8.
	</p>

	<p>
		 
	</p>

	<div class="ipsEmbeddedOther" contenteditable="false">
		<iframe allowfullscreen="" class="ipsEmbed_finishedLoading" data-controller="core.front.core.autosizeiframe" data-embedid="embed8118965716" scrolling="no" src="https://nsaneforums.com/index.php?app=core&amp;module=system&amp;controller=embed&amp;url=https://twitter.com/Shadow_Leak/status/1439546343190638597?ref_src=twsrc%255Etfw%257Ctwcamp%255Etweetembed%257Ctwterm%255E1439546343190638597%257Ctwgr%255E%257Ctwcon%255Es1_%26ref_url=https://mspoweruser.com/more-specs-of-microsoft-surface-pro-8-leaked-by-retailer/" style="overflow: hidden; height: 924px;"></iframe>
	</div>

	<p>
		 
	</p>

	<p>
		Some of the specs were expected, such as the Intel’s 11th-generation Core processor, but having the 120Hz High Refresh Rate Narrow Border Screen, Dual Thunderbolt Interfaces and Replaceable SSD Hard Drives confirmed is very good news.
	</p>

	<p>
		 
	</p>

	<p>
		The FCC had earlier confirmed the device will have WIFI 6.
	</p>

	<p>
		 
	</p>

	<p>
		The rumoured line-up is as follows:
	</p>

	<p>
		 
	</p>

	<ul>
		<li>
			Core i3, 4GB RAM, 128GB SSD OR Core i3, 8GB RAM, 128GB SSD.
		</li>
		<li>
			Core i5, 8GB RAM, 128GB SSD / 256GB SSD
		</li>
		<li>
			Core i7, 16 GB RAM – 32GB RAM and 256 GB SSD, 512 GB SSD or 1TB SSD storage
		</li>
	</ul>

	<p>
		 
	</p>

	<p>
		We should have a lot more details in the next few days, so keep an eye on the site.
	</p>

	<p>
		 
	</p>

	<p>
		via <a href="https://www.theverge.com/2021/9/19/22682271/surface-pro-8-120hz-display-thunderbolt-support-leak-rumors" rel="external nofollow" target="_blank">the Verge</a>
	</p>
</article>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://mspoweruser.com/more-specs-of-microsoft-surface-pro-8-leaked-by-retailer/" rel="external nofollow">More specs of Microsoft Surface Pro 8 leaked by retailer</a>
</p>
]]></description><guid isPermaLink="false">2354</guid><pubDate>Sun, 19 Sep 2021 22:59:48 +0000</pubDate></item><item><title>Microsoft Weekly: Patch Tuesday, Windows 11 update blocks for VMs, and Office 2021</title><link>https://nsaneforums.com/news/technology-news/microsoft-weekly-patch-tuesday-windows-11-update-blocks-for-vms-and-office-2021-r2353/</link><description><![CDATA[<div itemprop="articleBody">
	<p>
		With the passage of another week, it’s time to look at all the Microsoft stories that happened September 12 through September 18. As usual, there were new Windows 11 builds for the Dev and Beta channels, but they came with them some bad news for users running the OS on certain VMs. Considering that this week brought the second Tuesday of the month, Microsoft also released the monthly Patch Tuesday updates for all supported Windows versions. These updates were accompanied with new apps, Office LTSC and Office 2021 release dates, and much more.
	</p>

	<h3>
		Windows 11 builds, update blocks for VMs, Patch Tuesday, more
	</h3>

	<p>
		<img alt="1629635534_w11-changes_story.jpg" class="ipsImage" data-ratio="59.31" height="405" width="720" src="https://cdn.neow.in/news/images/uploaded/2021/08/1629635534_w11-changes_story.jpg">
	</p>

	<p>
		 
	</p>

	<p>
		As is the case every second Tuesday of the month, Microsoft released cumulative updates for all supported Windows versions. These included <a href="https://www.neowin.net/news/windows-10-patch-tuesday-updates-begin-rolling-out-heres-the-complete-changelog/" rel="external nofollow">supported Windows 10 versions</a> – including for specific SKUs, <a href="https://www.neowin.net/news/windows-7-and-windows-81-patch-tuesday-updates-are-now-live/" rel="external nofollow">Windows 8.1 users and those on Windows 7</a> that opted for Extended Security Updates (ESUs). The updates fixed a <a href="https://www.neowin.net/news/microsoft-acknowledges-windows-zero-day-that-leverages-office-files-for-attacks/" rel="external nofollow">Windows zero-day vulnerability</a> discovered earlier this month and brought other quality improvements. While the improvements were welcome for most users, the firm posted an advisory acknowledging that the August patches that contained fixes for <a href="https://www.neowin.net/news/tags/printnightmare/" rel="external nofollow">the PrintNightmare vulnerability</a> were <a href="https://www.neowin.net/news/microsofts-printnightmare-patch-breaks-printing-for-some-again/" rel="external nofollow">breaking the ability for some users to print without admin credentials</a>. This impacts commercial customers than any other, considering end users do not have access to admin credentials.
	</p>

	<p>
		 
	</p>

	<p>
		As for Windows 11, new builds were released for both Dev and Beta channel Insiders. The <a href="https://www.neowin.net/news/windows-11-build-22458-for-the-dev-channel-brings-a-sign-in-options-link-to-the-power-menu/" rel="external nofollow">Dev channel was served build 22458</a> that brought a few fixes. While a new ‘Sign-in options’ link in the power menu was mentioned, it was made available with build 22454, but missed being noted in the changelog. <a href="https://www.neowin.net/news/windows-11-build-22000194-adds-update-block-for-virtual-machines-in-beta-channel/" rel="external nofollow">Beta channel users received build 22000.194</a> that brought a bunch of new in-box apps that Dev channel users have been testing. These include the new Clock app with Focus Sessions, Calculator, and the unified Snipping Tool experience. More are on the way, though, such as the <a href="https://www.neowin.net/news/microsoft-teases-an-updated-paint-app-for-windows-11/" rel="external nofollow">new Paint</a> and <a href="https://www.neowin.net/news/windows-11-is-getting-a-new-photos-app-soon/" rel="external nofollow">Photos apps</a>.
	</p>

	<p>
		 
	</p>

	<p>
		What did come as a surprise for Insiders was the inability for those running these builds in certain VMs – including on supported hardware – to update to the new builds, thanks to the enforcement of TPM requirements for virtual machines as well. This means that those running Windows 11 preview builds on anything but VMWare Workstation Pro or Hyper-V Manager included with Pro and Enterprise editions of Windows will be blocked from receiving future updates. Currently, <a href="https://www.neowin.net/news/windows-11-may-work-with-virtualbox-as-oracle-apparently-preps-a-passthrough-driver-for-tpm/" rel="external nofollow">Oracle seems to be readying a passthrough driver</a> for TPM for VirtualBox, making its offering suitable to run Windows 11 builds.
	</p>

	<p>
		 
	</p>

	<p>
		Additionally, there was some news concerning those that were running Windows 11 builds on M1-powered MacBooks through solutions like Parallels Desktop. The Redmond giant has said to The Register that <a href="https://www.neowin.net/news/microsoft-running-windows-11-on-m1-macs-is-not-a-supported-scenario/" rel="external nofollow">running Windows 11 on M1 Macs is not a “supported scenario”</a>, casting doubt on whether there will be future blocks that render it difficult to run Microsoft’s latest OS on M1-powered machines.
	</p>

	<p>
		 
	</p>

	<p>
		Lastly, Microsoft announced that users can <a href="https://www.neowin.net/news/you-no-longer-need-a-password-to-sign-in-to-microsoft-account/" rel="external nofollow">now delete their Microsoft account passwords</a> to completely rely on alternate forms of authentication, further making the case for a password-less world. While the ability is available for consumer accounts now, the company aims to bring it to accounts that use Azure Active Directory (AAD) as well.
	</p>

	<h3>
		Office 2021, Office LTSC, new apps, and app updates
	</h3>

	<p>
		<img alt="1598192183_productivity_story.jpg" class="ipsImage" data-ratio="59.31" height="405" width="720" src="https://cdn.neow.in/news/images/uploaded/2020/08/1598192183_productivity_story.jpg">
	</p>

	<p>
		 
	</p>

	<p>
		The biggest news this week relating to new apps came in the way of the <a href="https://www.neowin.net/news/microsoft-office-2021-is-coming-on-october-5-ltsc-available-today/" rel="external nofollow">announcement of Office 2021’s release date</a>. The perpetual version of Microsoft’s productivity suite of offerings for consumers will be made available starting October 5, coinciding with the release of Windows 11. The version for commercial customers, Office LTSC, is now generally available. The LTSC versions differs from the consumer variant in some ways, one of which includes the support lifecycle. What both have in common though, is that they will not receive new features like the Microsoft 365 versions.
	</p>

	<p>
		 
	</p>

	<p>
		The start of the week also saw the <a href="https://www.neowin.net/news/movies-anywhere-app-launches-today-for-xbox-series-xs-and-xbox-one-consoles/" rel="external nofollow">arrival of the Movies Anywhere app for Xbox Series X|S and Xbox One users</a>, bringing a native solution for watching purchased Movies Anywhere content in addition to the Movies &amp; TV app. Another <a href="https://www.neowin.net/news/powertoys-is-coming-to-the-microsoft-store-in-windows-11/" rel="external nofollow">potential app expected to make it to the Microsoft Store is the firm’s own PowerToys suite</a>, a listing for which was spotted this week. However, it seems like the listing will only introduce an installer for the app that then pulls in the suite of tools. <a href="https://www.neowin.net/news/powertoys-0460-experimental-adds-video-conference-mute-utility-and-some-fixes/" rel="external nofollow">PowerToys experimental version 0.46 also made it to testers</a>, bringing a bunch of fixes. Another Microsoft app to receive an update was Edge, as <a href="https://www.neowin.net/news/todays-edge-dev-build-adds-a-quick-way-to-hide-the-extensions-button-and-more/" rel="external nofollow">Edge Dev users received a new build</a> that brought a quick way to hide the extensions button from the menu from the address bar along with a bunch of bug fixes.
	</p>

	<p>
		 
	</p>

	<p>
		Talking about browsers, it was discovered that the <a href="https://www.neowin.net/news/mozilla-bypasses-microsoft-makes-it-easier-to-set-firefox-as-default-browser-in-windows/" rel="external nofollow">latest version of Firefox allows users to directly change their default browser preference</a> without going through the cumbersome steps to do so, which is a welcome change. It is not clear if this will be mirrored by more apps and browsers going forward, but the Redmond company has <a href="https://www.neowin.net/news/windows-11-default-apps-settings-for-browsers-is-facing-backlash-from-rivals/" rel="external nofollow">received backlash from browser rivals</a> for making the process complicated and less user-friendly.
	</p>

	<p>
		 
	</p>

	<p>
		Mozilla also announced that it will <a href="https://www.neowin.net/news/microsofts-bing-might-soon-replace-google-as-the-default-firefox-search-engine/" rel="external nofollow">begin setting Bing as the default search engine on Firefox</a> as part of a test. This will apply to just one percent of desktop users and the test is expected to conclude in early 2022.
	</p>

	<h3>
		Xbox Game Pass additions, Remote Play on Windows, and more
	</h3>

	<p>
		<img alt="1631632052_remote-play-key-art_story.jpg" class="ipsImage" data-ratio="59.31" height="405" width="720" src="https://cdn.neow.in/news/images/uploaded/2021/09/1631632052_remote-play-key-art_story.jpg">
	</p>

	<p>
		 
	</p>

	<p>
		This week, Microsoft announced the <a href="https://www.neowin.net/news/subnautica-below-zero-aragami-2-sable-and-more-head-to-xbox-game-pass/" rel="external nofollow">titles being added for Xbox Game Pass subscribers</a>, which is the second drop for the month. There are 13 games being added, with eight of them being day-one launches. The list includes Aragami 2, Sable, SkateBird, I Am Fish, and many more. Additionally, there are 11 more games that have touch controls enabled when they are streamed through the cloud. There are five titles leaving the service, which happens on September 31.
	</p>

	<p>
		 
	</p>

	<p>
		If those wanting to run these games on Xbox Series X|S consoles are looking for additional storage and do not want to shell upwards of $200 on an expansion card, a <a href="https://www.neowin.net/news/possible-500gb-xbox-series-xs-storage-expansion-card-spotted-at-retailers/" rel="external nofollow">500GB option might be on its way</a>, at least if a listing spotted in France is to be believed. However, if you have one of those consoles and wish to stream it to your PC, you can now do so using the <a href="https://www.neowin.net/news/xbox-cloud-gaming-and-remote-play-comes-to-the-xbox-app-on-windows/" rel="external nofollow">updated Xbox app on Windows</a>. The app also brings cloud gaming, giving users another way to use the service in addition to doing so from the web.
	</p>

	<p>
		 
	</p>

	<p>
		Xbox Game Pass Ultimate and Xbox Live Gold members are <a href="https://www.neowin.net/news/games-with-gold-mulaka-and-samurai-shodown-ii-are-now-free/" rel="external nofollow">also receiving a second round of games</a> for the month, with Games with Gold bringing Mulaka for Xbox One and Samurai Shodown II for Xbox 360. Lastly, there are a <a href="https://www.neowin.net/news/assassins-creed-and-watch-dogs-receive-huge-discounts-in-this-weeks-deals-with-gold/" rel="external nofollow">bunch of discounts as part of Deals with Gold</a>, bringing discounts for titles from the Assassin's Creed, Halo, Forza, and other franchises.
	</p>

	<p>
		 
	</p>

	<p>
		There doesn’t seem a week that goes by without Halo Infinite news. While minor, this week <a href="https://www.neowin.net/news/halo-infinite-brutes-get-much-needed-makeover-in-leaked-images/" rel="external nofollow">brought leaked images of Craig the Brute</a>, showing off some visual improvements. This also hints towards the possible arrival of new gameplay that might show off the visual improvements being made.
	</p>

	<p>
		 
	</p>

	<p>
		Moving on, Call of Duty fans might be interested to learn that Call of Duty 2022 – possible called Call of Duty Modern Warfare 2 – <a href="https://www.neowin.net/news/call-of-duty-modern-warfare-2-may-launch-in-2022/" rel="external nofollow">might launch next year</a>. Call of Duty: Vanguard, on the other hand, is slated to launch in November this year.
	</p>

	<p>
		 
	</p>

	<p>
		Rounding off gaming news is the announcement of a <a href="https://www.neowin.net/news/age-of-empires-iv-is-having-a-beta-this-weekend-everyone-is-invited/" rel="external nofollow">new beta build of Age of Empires IV being made available</a> this weekend. The invites for the beta included almost anyone who wished to try it out. Improvements made thanks to feedback from testers include a further zoom out distance, balance tweaks for English and Chinese civilizations, and a bunch of bug fixes.
	</p>
</div>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.neowin.net/news/microsoft-weekly-patch-tuesday-windows-11-update-blocks-for-vms-and-office-2021/" rel="external nofollow">Microsoft Weekly: Patch Tuesday, Windows 11 update blocks for VMs, and Office 2021</a>
</p>
]]></description><guid isPermaLink="false">2353</guid><pubDate>Sun, 19 Sep 2021 22:57:14 +0000</pubDate></item><item><title>What is Proton?</title><link>https://nsaneforums.com/news/technology-news/what-is-proton-r2344/</link><description><![CDATA[<p>
	You may have seen lots of mentions of Proton with the upcoming launch of the Steam Deck handheld game console, but what is it, and how does it work?
</p>

<p>
	 
</p>

<p>
	Proton is a piece of software created by Valve and CodeWeavers that acts as a compatibility layer that allows games designed for the Windows 10 and Windows 11 operating systems to run in Linux with a minimal impact on performance. Proton is based on the existing WINE tool, which allowed Windows applications to run in Linux, with Valve and CodeWeavers taking the tech and using it to specifically run games.
</p>

<p>
	 
</p>

<p>
	This is incredibly useful, as the vast majority of games are coded for Windows, due to the sheer popularity of Microsoft’s operating system.
</p>

<p>
	 
</p>

<p>
	Linux, a free and open-source operating system, is relatively niche, which meant that many game developers couldn’t – or wouldn’t – spend resources on making a port of their games to run natively on Linux.
</p>

<p>
	 
</p>

<p>
	With Proton, the idea is that they don’t have to, as it will allow those games to run in Linux without any extra work from developers. This has resulted in a huge boost to the number of games that can be run in Linux, and makes the operating system a much more viable alternative to Windows.
</p>

<p>
	 
</p>

<p style="text-align:center;">
	<img alt="LJSA6h759BKJvuaBZyoUY-970-80.jpg.webp" class="ipsImage" data-ratio="75.10" height="404" width="720" src="https://cdn.mos.cms.futurecdn.net/LJSA6h759BKJvuaBZyoUY-970-80.jpg.webp" />
</p>

<p style="text-align:center;">
	<span style="font-size:12px;"><em>(Image credit: Image Credit: Pixabay)</em></span>
</p>

<p style="text-align:center;">
	 
</p>

<p>
	<strong>Why does Valve care about Linux?</strong>
</p>

<p>
	 
</p>

<p>
	Valve’s been one of the biggest proponents of gaming on Linux for a while now, with many titles in Steam, including its own, running natively in the open-source operating system. Back in 2013, Valve co-founder Gabe Newell attended LinuxCon, where he said that “Linux and open source are the future of gaming.”
</p>

<p>
	 
</p>

<p>
	Not only did Valve commit to releasing its games on Linux, and encouraging other developers to do the same, but it also released SteamOS, a Linux distribution based on Debian. Valve hoped by developing its own operating system, it could move away from what it felt was Microsoft’s increasingly controlling behavior over Windows, including the launch of the Windows Store (now known as the Microsoft Store), which sold games – putting it in competition with Steam, Valve’s own store for selling games.
</p>

<p>
	 
</p>

<p>
	For PC gamers, the appeal of SteamOS was that they could build a PC and use that as the operating system for free, rather than paying for a Windows license. The money you saved could be spent on games, instead. Linux, including SteamOS, is less demanding on hardware than Windows, so there would be less overhead, giving games a performance boost.
</p>

<p>
	 
</p>

<p style="text-align:center;">
	<img alt="262e4d8946a740f7b79dfaa2e3c79c37-970-80." class="ipsImage" data-ratio="75.10" height="405" width="720" src="https://cdn.mos.cms.futurecdn.net/262e4d8946a740f7b79dfaa2e3c79c37-970-80.jpg.webp" />
</p>

<p style="text-align:center;">
	<span style="font-size:12px;"><em>(Image credit: Future)</em></span>
</p>

<p style="text-align:center;">
	 
</p>

<p>
	Around this time, Valve also started selling Steam Machines, which were gaming PCs that ran SteamOS. However, both Steam Machines and SteamOS failed to take off. A big reason for this was because, despite Valve’s push, game devs simply didn’t port their games in large enough numbers, so PC gamers stuck with the operating system that would let them play the most games possible: Windows.
</p>

<p>
	 
</p>

<p>
	So, Steam Machines and SteamOS faded into obscurity somewhat, but Valve didn’t give up. If devs weren’t going to port their games, Valve would bring those games to Linux another way – via Proton.
</p>

<p>
	 
</p>

<p>
	With the announcement of the Steam Deck, Valve’s continued work with Proton makes sense. The handheld console will run on SteamOS 3.0, which is now based on Arch Linux, and to avoid the problems Steam Machines had, Valve will be relying on Proton to ensure it can run almost any game.
</p>

<p>
	 
</p>

<p style="text-align:center;">
	<img alt="9a7WUKSYpEAETtTbKsri9P-970-80.jpg.webp" class="ipsImage" data-ratio="75.10" height="405" width="720" src="https://cdn.mos.cms.futurecdn.net/9a7WUKSYpEAETtTbKsri9P-970-80.jpg.webp" />
</p>

<p style="text-align:center;">
	<span style="font-size:12px;"><em>(Image credit: Valve/Future)</em></span>
</p>

<p style="text-align:center;">
	 
</p>

<p>
	<strong>Does this mean any game can run on Linux?</strong>
</p>

<p>
	 
</p>

<p>
	Unfortunately not. While Proton has done a great job of bringing games that would likely never have appeared on Linux to the operating system, there are still a substantial number of games that can’t run on it (or don’t run very well).
</p>

<p>
	 
</p>

<p>
	We recently reported that only 72% of the top 50 games in Steam can run via Proton, including big names such as PUGB: Battlegrounds, Destiny 2, Rust and Apex Legends. The ProtonDB site is a good resource tracking what games are compatible, and how well they run. According to the site, 16,190 games work well with Proton, which is a pretty decent amount, but if your favorite game isn’t included, then it doesn’t really matter how many games are supported.
</p>

<p>
	 
</p>

<p>
	One of the biggest issues is with anti-cheat software that’s used by some competitive online games, as this often prevents the titles from running via Proton.
</p>

<p>
	 
</p>

<p>
	The good news is that Proton is continually being worked on, and new titles are regularly being made compatible. Valve has also stated that it’s working with some of the teams behind the anti-cheat software to help games using them to run via Proton (while continuing to prevent cheaters).
</p>

<p>
	 
</p>

<p>
	Proton is a great piece of software, then, and when it works well, you shouldn’t even know that it’s running. It’s made gaming on Linux a much more viable option for many people, and with the Steam Deck, we should see even more people see the benefit.
</p>

<p>
	 
</p>

<p>
	<strong><a href="https://www.techradar.com/news/what-is-proton" rel="external nofollow">Source</a></strong>
</p>
]]></description><guid isPermaLink="false">2344</guid><pubDate>Sat, 18 Sep 2021 15:11:42 +0000</pubDate></item><item><title>Here are the biggest games from THQ Nordic's September 2021 showcase</title><link>https://nsaneforums.com/news/technology-news/here-are-the-biggest-games-from-thq-nordics-september-2021-showcase-r2341/</link><description><![CDATA[<p>
	On Friday, publisher THQ Nordic hosted its first-ever <a href="https://www.youtube.com/watch?v=SKBUrGCpibw" rel="external nofollow">digital showcase</a> where it revealed a slew of new games and provided gameplay footage for others. While more than half a dozen titles were highlighted, we're going to focus on the major releases like <a href="https://www.neowin.net/news/destroy-all-humans-2-reprobed-leaked-by-playstation/" rel="external nofollow">Destroy All Humans 2 - Reprobed</a> and SpongeBob SquarePants: The Cosmic Shake. You can learn more about them below.
</p>

<h3>
	Destroy All Humans! 2 - Reprobed
</h3>

<div class="ipsEmbeddedVideo" contenteditable="false">
	<div>
		<iframe allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen="" frameborder="0" height="113" src="https://nsaneforums.com/applications/core/interface/index.html" width="200" data-embed-src="https://www.youtube.com/embed/brXWvd8AP48?feature=oembed"></iframe>
	</div>
</div>

<p>
	 
</p>

<p>
	Destroy All Humans! 2 - Reprobed was leaked a few days ago by PlayStation and many gamers assumed that it was a PlayStation 5 exclusive. Luckily, that's not the case and it's coming to Microsoft's platforms as well.
</p>

<blockquote>
	<p>
		That's right, earthlings, Crypto is back and this time, he's invading the swinging sixties! After the KGB blew up his mothership, Crypto seeks revenge and travels to iconic places in the United States, the United Kingdom, the Soviet Union, Japan, and even to the Moon! Destroy All Humans! 2 is a full remake of the original game, adding and improving features while building the game from scratch in shiny Unreal Engine 4 visuals.
	</p>
</blockquote>

<p>
	Destroy All Humans! 2 - Reprobed is in development for PC, PlayStation 5, and Xbox Series X|S. It doesn't seem like it's coming to last-generation consoles.
</p>

<h3>
	Elex II
</h3>

<div class="ipsEmbeddedVideo" contenteditable="false">
	<div>
		<iframe allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen="" frameborder="0" height="113" src="https://nsaneforums.com/applications/core/interface/index.html" width="200" data-embed-src="https://www.youtube.com/embed/pDyfD9Ao3Ao?feature=oembed"></iframe>
	</div>
</div>

<blockquote>
	<p>
		Of course, this is not a new announcement, but no less exciting: open-world role-playing game Elex II shows off its new story-trailer, explaining what drove Jax, the Beast of Xacor into isolation, and why the time has come for him to leave his exile.
	</p>
</blockquote>

<p>
	Elex II is coming to last-generation and current-generation consoles. It should be available on PC, Xbox One, PlayStation 4, PlayStation 5, and Xbox Series X.
</p>

<h3>
	Outcast 2: A New Beginning
</h3>

<div class="ipsEmbeddedVideo" contenteditable="false">
	<div>
		<iframe allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen="" frameborder="0" height="113" src="https://nsaneforums.com/applications/core/interface/index.html" width="200" data-embed-src="https://www.youtube.com/embed/R5R-1x7t23U?feature=oembed"></iframe>
	</div>
</div>

<blockquote>
	<p>
		Your friendly neighborhood invader-slayer is back: Cutter Slade returns to the spectacular alien world of Adelpha in Outcast 2: A New Beginning. Twenty years after the events of the first game, Adelpha finds itself under threat of invasion: ruthless corporations are exploiting the planet and are enslaving and even killing the people. Cutter's mission is clear: organize a resistance, rescue the people, and get rid of the invaders.
	</p>
</blockquote>

<p>
	Outcast 2: A New Beginning was announced a while back, and it's currently in development for PC, PlayStation 5, and Xbox Series X|S. The in-engine gameplay trailer finally showcases the visuals we can expect from the project.
</p>

<h3>
	SpongeBob SquarePants: The Cosmic Shake
</h3>

<div class="ipsEmbeddedVideo" contenteditable="false">
	<div>
		<iframe allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen="" frameborder="0" height="113" src="https://nsaneforums.com/applications/core/interface/index.html" width="200" data-embed-src="https://www.youtube.com/embed/OOwh9befbMg?feature=oembed"></iframe>
	</div>
</div>

<blockquote>
	<p>
		Everything is possible in the infinite expanses of the cosmos. There might even be a reality where mayonnaise isn't an instrument! When the mysterious fortune teller Kassandra grants SpongeBob and Patrick wishes, the two buddies unintentionally open up portals to strange Wishworlds. It's all 'F.U.N.' and games until their friends get lost in the portals! Explore seven distinct worlds and don more than thirty cosmic skins.
	</p>
</blockquote>

<p>
	SpongeBob SquarePants: The Cosmic Shake is coming to PC, PlayStation, Nintendo Switch, and Xbox One soon.
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a href="https://www.neowin.net/news/here-are-the-biggest-games-from-thq-nordics-september-2021-showcase/" rel="external nofollow">Here are the biggest games from THQ Nordic's September 2021 showcase</a>
</p>
]]></description><guid isPermaLink="false">2341</guid><pubDate>Sat, 18 Sep 2021 10:07:38 +0000</pubDate></item></channel></rss>
