Category Archives: technology

Why Dogecoin bulls must watch THIS hurdle after $0.22 rebound

**Key Takeaways: Why Did Dogecoin Rebound?**

Dogecoin (DOGE) recently bounced at a crucial support level of $0.22, reclaiming both the 20-day and 50-day Exponential Moving Averages (EMAs) while holding above the 100-day EMA trendline. This technical movement has reignited bullish sentiment among traders.

### What DOGE Signals Point Toward $0.30?

The surge in DOGE’s price is backed by strong market indicators. Futures Open Interest (OI) jumped to $4.23 billion, highlighting increased speculative and institutional involvement. Additionally, liquidity pockets above $0.25 suggest that traders have a strong appetite for higher price levels, indicating robust bullish positioning.

### Technical Analysis: DOGE’s Recent Price Action

Earlier this week, Dogecoin slipped to the key technical support at $0.22 before bouncing back sharply. This support level aligns with the 100-day EMA, reinforcing its reliability. Bulls defended this zone, resulting in a notable 9% daily gain that preserved the broader upward trend.

Following the rebound, DOGE successfully crossed above the 20-day EMA at $0.24 and the 50-day EMA at $0.23. This shift in technical momentum has boosted confidence in a potential rally toward the next resistance level at $0.30.

### DOGE On-Chain Metrics Complement Technical Setups

Beyond price action, on-chain data supports the optimistic outlook for DOGE. According to CoinGlass, the DOGE Futures Open Interest surged significantly to $4.23 billion, indicating that more capital is entering the market. Rising OI often points to increasing volatility and greater trader participation.

Moreover, CoinGlass’s DOGE/USDT Liquidation Heatmap reveals multiple liquidity clusters above the $0.25 mark. These clusters act as strong magnets, suggesting that if momentum continues, these levels could attract further buying pressure.

### History Repeats at Trendline Support

This recent rebound mirrors past rallies in early July and earlier this month, where DOGE bounced off the trendline support and surged between 15% to 20% within just a few days. Such historical patterns keep traders eyeing $0.30 as the next significant upside target.

However, it’s important to monitor market sentiment closely. If profit-taking intensifies or Funding Rates spike, the bullish outlook might shift. For the moment, both chart patterns and market positioning remain tilted toward a positive trajectory.

Stay tuned for updates as DOGE aims to sustain its momentum and possibly test new highs.
https://ambcrypto.com/why-dogecoin-bulls-must-watch-this-hurdle-after-0-22-rebound

The B-Team shares their AOL screen names

In Today I Learned, Brhett Vickery shares the history of America Online (AOL) and invites her coworkers to share their AOL screen names.

Love the WGN Morning News? We love you, too!

You can have all the hijinks delivered straight to your inbox every weekday morning.

Sign up and subscribe to our WGN Morning News newsletter today.
https://wgntv.com/morning-news/the-b-team-shares-their-aol-screen-names/

Bareilly Violence: Internet Suspended, Drones Deployed Amid Security Concerns – VIDEO

**Bareilly Administration Suspends Internet Services and Deploys Drones for Security Measures**

The Bareilly administration has suspended internet services and deployed drones for aerial surveillance as part of precautionary security measures. This move comes amid rising concerns over local tensions and potential disturbances to public order.

Officials stated that the decision to cut internet access was aimed at curbing the spread of misinformation and preventing rumors that could further inflame the situation. Drone surveillance has been activated to monitor sensitive areas, identify gathering spots, and assist police personnel on the ground.

“These steps are necessary to maintain peace and prevent any untoward incident. We are closely monitoring the situation,” said a senior police officer.

These measures form part of a wider strategy adopted across Uttar Pradesh to address potential communal or social unrest. Authorities typically impose internet shutdowns and increase surveillance during periods when intelligence reports suggest a risk of escalation.

The suspension of internet services is expected to affect daily life and businesses in Bareilly until further notice. Residents have been urged to cooperate with security personnel and rely on official channels for updates.

Additionally, police patrols have been intensified in sensitive areas of the city to ensure law and order are maintained. The administration continues to monitor developments closely and will take further action as needed.
https://www.freepressjournal.in/india/bareilly-violence-internet-suspended-drones-deployed-amid-security-concerns-video

Bareilly Violence: Internet Suspended, Drones Deployed Amid Security Concerns – VIDEO

**Bareilly Administration Suspends Internet Services, Deploys Drones for Aerial Surveillance Amid Security Concerns**

The Bareilly administration has suspended internet services and deployed drones for aerial surveillance as part of precautionary security measures. This move comes amid rising concerns over local tensions and possible disturbances to public order.

Officials stated that cutting internet access aims to curb the spread of misinformation and prevent rumors that could inflame the situation. Drone surveillance has been activated to monitor sensitive areas, identify gathering spots, and assist police personnel on the ground.

“These steps are necessary to maintain peace and prevent any untoward incident. We are closely monitoring the situation,” said a senior police officer.

These measures form part of a wider strategy adopted across Uttar Pradesh to address potential communal or social unrest. Authorities typically impose internet shutdowns and increase surveillance during periods when intelligence inputs suggest a risk of escalation.

The suspension of internet services is expected to affect daily life and businesses in Bareilly until further notice. Residents have been urged to cooperate with security personnel and rely on official channels for updates.

Additionally, police patrols have been intensified in sensitive parts of the city to ensure law and order is maintained.
https://www.freepressjournal.in/india/bareilly-violence-internet-suspended-drones-deployed-amid-security-concerns-video

The biggest semantic mess in Futhark

**Posted on September 26, 2025**

The original idea behind Futhark was that parallel programming (of certain problems) does not require a complicated language. Indeed, we believed that there was little need for the complexity to exceed that of the functional languages commonly taught to first-year students at universities. (The complexity of parallel algorithms is another matter.) Overall, I think Futhark has succeeded at that.

The meaning of a Futhark program is fairly easily determined using normal environment-based semantics; even tricky things like uniqueness types are mainly complicated in an operational sense, and to some extent in the type system, the meaning of a program (once it type checks) is obvious. This semantic simplicity is also evident in the implementation. While the compiler has lots of complicated optimizations and sophisticated transformations, the reference interpreter is largely straightforward and quite similar in structure to how a person studying programming languages would write their first tree-walking interpreter.

You will note that the above paragraph is full of words like *overall*, *largely*, and *fairly*. This is because there is one language feature that has proven a particularly fertile ground for edge cases and implementation bugs. That feature is **size types**.

In the following, I will explain why a seemingly simple type system feature has proven so surprisingly challenging.

### Size Parameters

To recap the basic idea, size types allow Futhark functions to impose constraints on the sizes of their parameters. A simple example is a definition of the dot product, which takes two arguments that must be vectors of the same size.

Here, *n* is a size parameter that is implicitly instantiated whenever the function `dotprod` is applied, based on the concrete arrays it is passed. This by itself is not so difficult. Sizes can easily be incorporated into a type checking algorithm by treating them as types of a different kind — the details do not matter, just take my word that it’s fine. (Writing blog posts is easier than writing academic papers.)

The main trouble arises when we introduce the ability to use sizes as term-level variables, like, for example, the definition of `length`.

When a size parameter is in scope, it can be used in expressions. Unsurprisingly, the value of a size parameter is the size of the corresponding dimension in some array. What is interesting is that we can access the size of `x` without actually mentioning `x` itself.

Intuitively, we can imagine that the concrete value of *n* is determined at run time by actually looking at `x` (say, by counting its elements), and for now this intuition holds.

But now let us consider what happens for a function that takes the number of columns of a matrix (the inner length):

“`futhark
cols (mat: [n][m]a) = m
“`

There are now two size parameters, *n* and *m*, and we retrieve the latter.

This case is a little more challenging when *n* is zero, as we cannot simply retrieve a row and look at it to determine *m* because there are no rows. Yet an expression such as

“`futhark
cols (replicate 0 (replicate 3 0))
“`

should still work (and evaluate to 3).

This means we need to extend our notion of how the values of size parameters are determined since it cannot be done by looking at the syntactic form of an array value and counting the elements (since `replicate 0 (replicate 3 0)` really is just written `[]`).

### Shape Annotation of Arrays

The solution is to extend our (conceptual and perhaps even concrete) array representation such that an array always carries a **shape** with it, in addition to its actual elements.

Then, intuitively, to determine the value of some size parameter, we still look for values (such as `x` above) that have that size somewhere and extract it from those values.

But now, perhaps unwittingly, we have picked a difficult fight.

The problem is that we sometimes have to create multidimensional arrays without having any example of an element! Yet we still somehow have to conjure up the right shape for the array.

As an example, consider the `map` function, of the following type:

“`futhark
val map [n] ‘a ‘b : (f: a -> b) -> (as: [n]a) -> [n]b
“`

The element type of the returned array is given by the return type of the function `(f)` we are mapping with. But if we are mapping over an empty array, then `f` may never be applied:

“`futhark
map (\(x: i32) -> [x, x, x]) []
“`

How, then, are we supposed to determine that the shape of this empty array is actually `[0][3]`?

When the array is constructed inside `map`, all that is known is that the outer size is *n* (which is known to be 0), and that the element type is some `b`, but we have no value of type `b` we can use to determine what the shape may be! We do have a function `a -> b`, but we also have no `a`; all we have is an array of type `[0]a`, which clearly does not have any elements inside of it.

### The Idea of Shapely Functions

One solution to this problem is due to Barry Jay and explained in the paper *A Semantics for Shape*.

The idea is that any **shapely function** can be evaluated normally (with a value, producing a value) or with a shape, producing a shape. A shapely function is therefore one where the shape of the result depends *only* on the shape of the input, which rules out functions such as filtering, where the result shape depends on the values as well.

This by itself is no problem to Futhark, as we only want to allow mapping with functions that have a predictable result to avoid irregular arrays.

Using this approach requires us to have two ways of applying a function: for **value** and for **shape**. This is a slight semantic complication, but perhaps we can live with it.

But we also have to get the input shape from somewhere, and in the case of `map`, all we know is that the input has type `a`.

### Using Instantiated Type Parameters

Things could be made to work if, whenever a function is invoked, we also receive the concrete shapes of values of type `a` (assuming this is possible, but because `a` is used for array elements, we know it must have a meaningful shape).

But if we do that, then why not just take the shape from `b` instead and avoid this entire business of shapely functions?

And indeed, this is the Futhark evaluation model. At any time, a polymorphic function can inquire about the concrete type that a type parameter has been instantiated with and extract a shape if necessary.

This can then be used to annotate any constructed arrays with their full shape.

Note that this is a model: the interpreter does it this way because the interpreter is intended to closely mirror the model, but the actual compiler does not, of course, do it literally this way, as type parameters do not exist at run time. It just has to do it in a way that produces the same result. (In practice, it does monomorphisation.)

### Troubles

We didn’t do it this way because it was easy. We did it because we thought it would be easy.

Sadly, it has turned out to not be easy.

The basic problem is that we now have an obligation to always know the full shape of any type at all times (except for those types that can never be used as array elements, but let us leave those aside for now).

This turns out to require machinery more intricate than standard environment-based evaluation.

The fundamental problem is pretty obvious: we need to also evaluate **types** along with expressions, just in case they are eventually used to construct an array, and types occur in various unexpected places.

For example, consider a module that defines some local binding `cnt` and a size-parameterised type that refers also to `cnt`:

“`futhark
module M = {
let cnt = 5
type C [n] = [n][n * cnt]i32
}
“`

The usual way definitions of polymorphic types such as `type C [n] = …` works is that they are added as type constructors to a type environment and then instantiated when used.

Now, `M.C [n]` by itself does not have a shape, since *n* is not yet known. At some point in the future, we may end up with an instantiation `M.C [k]` for some concrete *k*, and when that happens we can then compute the shape of the type, which will be `[k][k * M.cnt]`.

But there is no guarantee that `M.cnt` is actually in scope — it may be some hidden definition inside the module `M`, and even if it isn’t, it’s difficult to go from an expression `n * cnt` and give it a meaning in a different scope than it was originally defined in.

Since Futhark is a pure language, we could, as soon as we interpret the type definition of `C`, substitute the result of evaluating `cnt` into its right-hand side.

But this is also uncomfortable: it’s a syntactic operation, and while substitution-based semantics are fairly common in theoretical work, they are undesirable in implementations because they are quite inefficient. While the expression `n * cnt` is small, others may be large.

### Type Constructors as Closures

Our solution is that a type definition captures not just the right-hand side of the definition, but also its environment — that is, type constructors are **closures**.

When at some point in the future we finally instantiate `M.C` and have a `k` value for `n`, we extend the captured environment with a binding `n => k` and evaluate all the expressions in sizes.

This is a very strange implementation that took us quite a while to work out. If I had more experience implementing dependently typed languages, then perhaps I would not find it so weird, as it really just makes type constructors similar to functions, which they would be in a fully dependently typed language.

### Takeaway

Size types have proven to be a rich source of complexity in the design and implementation of Futhark, despite their initial simplicity.

Handling shapes, sizes, and type-level computations requires intricate machinery and careful design decisions.

However, these challenges are also what make Futhark powerful and expressive for parallel programming with precise size constraints.

Understanding these subtleties brings us closer to developing robust, efficient, and predictable parallel programs.

Thank you for reading!
https://futhark-lang.org/blog/2025-09-26-the-biggest-semantic-mess.html

SK Hynix shares hit multidecade highs, Samsung also surges as chipmakers partner with OpenAI

Shares of South Korean semiconductor giants Samsung Electronics and SK Hynix surged significantly on Thursday, following the announcement of their partnership with artificial intelligence leader OpenAI as part of the U.S. company’s Stargate initiative.

Samsung’s shares climbed over 4%, reaching their highest level since January 2021, while SK Hynix’s stock soared more than 9%, hitting its highest point since the year 2000.

In a statement, OpenAI explained that the partnership will focus on increasing the supply of advanced memory chips essential for next-generation AI technologies and expanding data center capacity in South Korea. The ChatGPT developer also revealed that both chipmakers plan to scale up production of advanced memory chips critical for powering its AI models.

The announcement coincided with OpenAI CEO Sam Altman’s visit to Seoul, where he met with South Korean President Lee Jae Myung and the top executives of Samsung and SK Hynix.

Earlier this month, SK Hynix announced it was ready to mass-produce its next-generation high-bandwidth memory (HBM) chips, solidifying its leading position in the AI hardware value chain. HBM is a specialized type of memory used in chipsets designed for AI computing, including those from global AI powerhouse Nvidia, a major client of SK Hynix.

The upcoming HBM4 chips are expected to be the primary AI memory chips required for Nvidia’s next-generation Rubin architecture—an advanced AI chip intended for global data centers.

While SK Hynix has long been a primary chip supplier to Nvidia, rival Samsung is reportedly working to get its HBM4 chips certified by Nvidia, aiming to expand its footprint in the AI chip market.

This is a developing story. Please check back for updates.
https://www.cnbc.com/2025/10/02/sk-hynix-samsung-shares-openai-stargate-korea.html

I’ve tried Porsche’s screen-packed Cayenne EV – and it’s going to be an all-electric force to be reckoned with

Porsche is expected to start selling its long-awaited electric Cayenne SUV early next year, adding to its existing line-up of pure electric Taycan and Macan models. This new EV version of one of the German marque’s most successful cars marks an exciting addition to their portfolio.

Ahead of the full production model arriving next year, Porsche invited us to its facility in Leipzig, Germany, to explore the latest electric Cayenne and to demonstrate that the company continues to push electrification—despite its recent decision to offer internal combustion engine (ICE) cars well into the 2030s.

### Impressive Performance and Technological Advances

The Cayenne’s headline figures are highly impressive. Its development includes an 800V electrical architecture that enables charging speeds of up to 400kW. Revised battery technology improves the range, pushing it to nearly 400 miles on a single charge. The most powerful models will deliver over 1,000bhp and 1,500Nm of torque.

Unsurprisingly, insiders say this will be the most powerful production Porsche to date, capable of sprinting from 0-62 mph in less than three seconds. I had the opportunity to try out the latest generation of launch control, and it was so intense, I’d gladly never do it again.

### Revolutionary Interior with Largest Digital Display Array

Beyond raw performance, Porsche is introducing an all-new interior boasting the largest array of digital displays ever seen in a Porsche. The Cayenne also debuts the world’s first 11kW wireless induction charging system, allowing EV top-ups without cables—a significant convenience for electric vehicle owners.

The new interior features 50% more touchscreen display area than the outgoing Cayenne, including the innovative “Flow Display.” This consists of a 14.25-inch driver-focused OLED screen that seamlessly blends into a curved central screen, internally called the “stage.” This single glass panel is digitally split into two distinct spaces, allowing for efficient multitasking. For example, Porsche’s navigation or Apple CarPlay can remain visible in the upper section, while important car functions such as air conditioning or lighting appear as pinned, customizable widgets on the lower half.

This solution allows users to keep control of key vehicle functions without leaving the Apple CarPlay or Android Auto interface. Porsche board member and IT chief Sajjad Khan did not fully rule out deeper Apple CarPlay integration in the future.

Passenger comfort is enhanced with an expanded passenger display now measuring 14.9 inches, covering more of the dashboard and bringing the total screen real estate to a massive 87 inches. Although the design leans more digital than Porsche’s traditional crisp analogue styling, early demonstrations show that graphics and information seamlessly flow across the main stage and passenger display, creating a cohesive and immersive experience that feels less intrusive than competitors’ systems.

On the technology side, Porsche is pushing for greater edge computing power within the vehicle. This strategy reduces the need to send data to the cloud, speeding up infotainment operations and improving reliability. Khan explained that by using Spatial Light Modulators (SLMs), Porsche can predict the availability of charging stations along a route with over 95% accuracy, cutting down the reliance on often unreliable live data.

### Performance and Versatility: The Cayenne’s True Powerhouse

The Cayenne has traditionally been Porsche’s all-rounder—comfortable for family transport, thrilling to drive, capable of towing boats, and stylish. The all-electric version carries this legacy forward and aims to exceed expectations.

This EV is the first Porsche SUV to feature the marque’s active suspension management system, with electronically controlled dampers that continuously adjust for optimal handling. Drawing on experience from the Taycan and the latest Panamera, Porsche engineers showed extraordinary control over each wheel. Remarkably, drivers can even navigate the test track in virtual reality while experiencing every bump, camber, and corner perfectly—a feature unlikely to reach production but illustrative of the system’s precision.

Despite weighing nearly 2.5 tonnes, the Cayenne EV delivers exceptional agility. It can lap real race circuits, drift corners, tackle off-road courses, and ensure motorway comfort. The model also supports towing up to 3.5 tonnes, impressive for an electric SUV.

Enhanced regenerative braking feeds up to 600kW back into the battery system. Fast charging at public stations can reach up to 400kW, enabling a 10-80% charge in under 16 minutes thanks to improved cooling of the battery packs. The cooling system, which equates to the power of 100 domestic refrigerators, can be noisy during high-speed charging, so Porsche introduces a “stealth charging mode” to minimize fan noise—ideal for quiet public spaces at night.

### Charging Technology That Leads the Way

While much of Porsche’s battery and infotainment technology was first seen in the Macan EV, the Cayenne builds upon this platform, elevating capabilities further. The AI voice assistant is faster, more responsive, and more knowledgeable. It now supports Bluetooth peripherals and even allows gaming on either the central or passenger display when the vehicle is parked.

A standout feature is the optional 11kW wireless inductive charging pad, priced around €7,000 (approx. $9,500 / AU$14,200), which includes the pad and the vehicle receiver. The system assists drivers in aligning their car using a bespoke screen integrated into the park assist functionality, providing guiding lines from front-facing cameras and a virtual green ball to help position the vehicle precisely over the pad.

Charging begins automatically at speeds up to 11kW, comparable to most home charging wall boxes. For safety, the pad is equipped with sensors to detect any object or person on top during charging and will shut off power automatically.

Although uptake of this wireless charging option may initially be limited to early adopters, it represents a neat, convenient addition to an already advanced vehicle.

### The Future of Porsche’s Electric Strategy

The upcoming electric Cayenne represents the pinnacle of Porsche’s EV expertise—for now. This launch comes at a critical time. Porsche recently announced a strategic rethink of its EV plans, opting to equip its planned ultra-luxury SUV (which was expected to sit above the Cayenne as an exclusive EV model) with an internal combustion engine instead. This decision responds to the slower growth in demand for exclusive battery-electric vehicles.

All eyes are now on the Cayenne EV to help turn the tide and reinforce Porsche’s commitment to electrification.

**You might also like:**
[Related Porsche electric vehicle articles or reviews could be linked here.]

Porsche’s electric Cayenne promises a thrilling combination of performance, technology, and versatility, positioning it as a flagship electric SUV in the competitive market. Stay tuned for its launch early next year!
https://www.techradar.com/vehicle-tech/hybrid-electric-vehicles/ive-tried-porsches-screen-packed-cayenne-ev-and-its-going-to-be-an-all-electric-force-to-be-reckoned-with

Apple defends OpenAI partnership, refutes claims of harming Musk’s xAI

**Apple Defends OpenAI Partnership, Refutes Claims of Harm to Musk’s xAI**

*By Akash Pandey | Oct 01, 2025, 05:38 PM*

Apple has defended its decision to partner with OpenAI instead of Elon Musk’s AI startup, xAI. The tech giant’s legal team made this statement in a court filing on Tuesday, emphasizing that even if Apple initially teamed up with OpenAI, it is “widely known” that the company plans to collaborate with other generative AI chatbots in the future.

### Legal Dispute Between xAI, X Corp., Apple, and OpenAI

In August, Elon Musk’s AI startup xAI and his social media platform X Corp. filed a lawsuit against Apple and OpenAI, seeking billions of dollars in damages. The lawsuit alleges that Apple’s preference for OpenAI over xAI has stifled innovation in the AI sector and limited consumer options.

The case was filed in Fort Worth, Texas, where Apple is now requesting the court to dismiss the lawsuit.

### Apple Seeks Dismissal of Musk’s Claims

Apple’s legal team dismisses the antitrust claims made by Musk’s companies as “speculation on top of speculation.” They argue that Apple is under no obligation to partner with every generative AI chatbot regardless of factors such as quality, privacy, or safety.

This response was issued in reply to X Corp.’s claim that Apple cannot exclusively partner with OpenAI without simultaneously partnering with every other generative AI chatbot.

Apple’s stance highlights its intention to maintain control over partnership decisions, emphasizing the importance of standards and security in its AI collaborations moving forward.
https://www.newsbytesapp.com/news/science/apple-defends-openai-partnership-denies-harming-xai/story

JEE Main 2026: Registration Window Opens In October; Details Here

JEE Main Registration 2026

The National Testing Agency (NTA) will begin the registration procedure for JEE Main 2026 in October. The agency has yet to release the exact registration dates. Applicants who wish to submit applications for the Joint Entrance Examination can do so online by visiting the official NTA JEE website at jeemain.nta.nic.in.

The Agency will conduct the Joint Entrance Examination Main 2026 in two sessions: Session 1 in January 2026 and Session 2 in April 2026.

JEE Main 2026: About Papers 1 and 2

The Joint Entrance Examination (JEE Main) comprises two papers:

  • Paper 1: This paper is conducted for admission to undergraduate engineering programs (B.E. / B. Tech.) at NITs, IIITs, other Centrally Funded Technical Institutions (CFTIs), and institutions/universities funded or recognized by participating state governments. Additionally, JEE Main serves as a qualifying test for JEE Advanced, which is required for admission to IITs.
  • Paper 2: This paper is for admission to B. Arch and B. Planning programs across the country.

The exam is likely to be held in two shifts:
– Morning Shift: 9:00 a.m. to 12:00 p.m.
– Afternoon Shift: 3:00 p.m. to 6:00 p.m.

JEE Main Registration 2026: How to Apply?

Candidates who wish to apply for the exam should follow these simple steps:

  1. Visit the official NTA JEE website at jeemain.nta.nic.in.
  2. On the homepage, click on the JEE Main 2026 registration link.
  3. Register online by filling in the required details.
  4. Log in using the generated credentials.
  5. Complete the application form, pay the application fee, and submit the form.
  6. Download the confirmation page and take a printout for future reference.

JEE Main 2026: Session 1 & 2 Registration Details

Applicants can register for the Session 1 examination scheduled for January 2026 and pay the applicable fee. There will be an option to apply separately for Session 2 (April 2026) using the same application number. A separate notification will be released regarding the registration for Session 2 along with details about the fee payment.

Stay tuned to the official website for the latest updates on registration dates and other related information.

https://www.freepressjournal.in/education/jee-main-2026-registration-window-opens-in-october-details-here

Evening Reading – September 30, 2025

Welcome, Shackers, to the end of another Tuesday! We’re back from Tokyo Game Show 2025 and prepping a mountain of content for your viewing and reading pleasure. Stay tuned as we roll out our coverage throughout the coming days. For now, it’s time to pull the curtain on another day worth of posting. Here’s your Evening Reading — in case you missed it at Shacknews.

**What is the exact release time of Ghost of Yotei?**

**OpenAI’s Sora AI video generator to reportedly require opt-out from copyright holders**

**Avalanche Studios to close Liverpool studio and lay off employees at other locations**

**PowerWash Simulator 2 demo releases today on PC**

**Hades 2 review: The ‘House’ always wins**

**Super Mario Galaxy + Super Mario Galaxy 2 review: Delightfully disorienting**

And now… more stuff from The Internet!

**EA going AI?**
Nothing about any of this sale seems good for fans — just the people doing the business. It’s going to be weird to watch the effects this has on EA’s game releases in the long run.

**A little too evergreen**
There are a few too many ongoing stories these days to which this could apply, don’t you think?

**Hinako the Hammer**
I hear the story is really, really good, but I can’t stop laughing at how silly strong Hinako seems to be.

**Battle of two honkin’ chonkers**
Fat Bear Week is almost over. Only two beefy beasties remain. Who will win?! (Go, Chunk!)

**The film magic of Buster Keaton**
The athleticism and filming sleight of hand with which Buster Keaton, other actors, and the directors pulled off these stunts will never cease to impress me.

**Happy duck**
Ducks can be quite mean, so it’s very funny to me when they’re so ridiculously playful.

**It’s Showtime! Again!!**
Nintendo Music might be the best mobile app Nintendo’s got going these days.

And there you have it. That’s your Evening Reading for this September 30.

If you’d like to support the site and our continuing videos and coverage, then consider joining Shacknews Mercury, where you can support the site for as little as a dollar a month.

You can also check out our host of helpful apps, such as **Shackmaps**, in which we are mapping out the content of popular games including *Hollow Knight: Silksong* and *Mario Kart World*.

Don’t miss **Bubbletron**, a game where you assemble your next trillion-dollar idea from a daily-changing set of prompts. Will you get the highest valuation for the money hat?

Thanks for stopping by, and have a good night. We’ll be back with even more coverage tomorrow!
https://www.shacknews.com/article/146173/evening-reading-september-30-2025