news aggregator
CEO Lip-Bu Tan says strategy shift will focus on customer needs, efficiency, and cutting costs
Ailing chip giant Intel is ditching its manufacturing sites in Germany and Poland and signaling further job cuts ahead as its new leader tries to stem the losses and turn the Silicon Valley pioneer's fortunes around.…
Policy management not affected, but some personal data may have been snaffled
Business insurance and employment status specialist Qdos has confirmed that an intruder has stolen some customers personal data, according to a communication to tech contractors that was seen by The Register.…
An anonymous reader quotes a report from Electrek: The "holy grail" of electric vehicle battery tech may be here sooner than you'd think. Mercedes-Benz is testing EVs with solid-state batteries on the road, promising to deliver over 600 miles of range. Earlier this year, Mercedes marked a massive milestone, putting "the first car powered by a lithium-metal solid-state battery on the road" for testing. Mercedes has been testing prototypes in the UK since February.
The company used a modified EQS prototype, equipped with the new batteries and other parts. The battery pack was developed by Mercedes-Benz and its Formula 1 supplier unit, Mercedes AMG High-Performance Powertrains (HPP) Mercedes is teaming up with US-based Factorial Energy to bring the new battery tech to market. In September, Factorial and Mercedes revealed the all-solid-state Solstice battery. The new batteries, promising a 25% range improvement, will power the German automaker's next-generation electric vehicles.
According to Markus Schafer, the automaker's head of development, the first Mercedes EVs powered by solid-state batteries could be here by 2030. During an event in Copenhagen, Schafer told German auto news outlet Automobilwoche, "We expect to bring the technology into series production before the end of the year." In addition to providing a longer driving range, Mercedes believes the new batteries can significantly reduce costs. Schafer said current batteries won't suffice, adding, "At the core, a new chemistry is needed." Mercedes and Factorial are using a sulfide-based solid electrolyte, said to be safer and more efficient.
Read more of this story at Slashdot.
Mock-ups feature m365.com, which could be yours for a few bucks
Microsoft this week trumpeted the launch of Microsoft 365 Copilot Search with lofty promises and slick mock-ups, but the domain plastered all over them didn't belong to the corporation.…
Evidence of copious sugar hits hinted at unauthorized usage
On Call By Friday, many readers will feel they need a sugar hit to get through the day, which is why The Register tries to offer a jolt of amusement in the form of a new installment of On Call, the reader-contributed column in which we share your tech support tales.…
Scientists using the largest-ever catalog of Type 1a supernovas -- cosmic explosions from white dwarf "vampire stars" -- have uncovered further evidence that dark energy may not be constant. While the findings are still preliminary, they suggest the mysterious force driving the universe's expansion could be weakening, which "would have ramifications for our understanding of how the cosmos will end," reports Space.com. From the report: By comparing Type 1a supernovas at different distances and seeing how their light has been redshifted by the expansion of the universe, the value for the rate of expansion of the universe (the Hubble constant) can be obtained. Then, that can be used to understand the impact of dark energy on the cosmos at different times. This story is fitting because it was the study of 50 Type 1a supernovas that first tipped astronomers off to the existence of dark energy in the first place back in 1998. Since then, astronomers have observed a further 2,000 Type 1a supernovas with different telescopes. This new project corrects any differences between those observations caused by different astronomical instruments, such as how the filters of telescopes drift over time, to curate the largest standardized Type 1a supernova dataset ever. It's named Union3.
Union3 contains 2,087 supernovas from 24 different datasets spanning 7 billion years of cosmic time. It builds upon the 557 supernovas catalogued in an original dataset called Union2. Analysis of Union3 does indeed seem to corroborate the results of DESI -- that dark energy is weakening over time -- but the results aren't yet conclusive. What is impressive about Union3, however, is that it presents two separate routes of investigation that both point toward non-constant dark energy. "I don't think anyone is jumping up and down getting overly excited yet, but that's because we scientists are suppressing any premature elation since we know that this could go away once we get even better data," Saul Perlmutter, study team member and a researcher at Berkeley Lab, said in a statement. "On the other hand, people are certainly sitting up in their chairs now that two separate techniques are showing moderate disagreement with the simple Lambda CDM model."
And when it comes to dark energy in general, Perlmutter says the scientific community will pay attention. After all, he shared the 2011 Nobel Prize in Physics for discovering this strange force. "It's exciting that we're finally starting to reach levels of precision where things become interesting and you can begin to differentiate between the different theories of dark energy," Perlmutter said.
Read more of this story at Slashdot.
Nobody thinks of running a website without HTTPs. Safer DNS still seems optional
Systems Approach Last week I turned on DNSSEC (Domain Name System Security Extensions) for the systemsapproach.org domain. No need to applaud; I was just trying to get an understanding of what the barriers to adoption might be while teaching myself about the technology.…
Time to 'reimagine' it as a gateway, a gateway to inner peace, er, sales
With three months to go until Microsoft ends support for Windows 10, Dell and Intel want to convince corporate buyers that upgrading their PC fleet is a virtue and not a necessity.…
An anonymous reader quotes a report from Ars Technica: Two recent incidents involving AI coding assistants put a spotlight on risks in the emerging field of "vibe coding" -- using natural language to generate and execute code through AI models without paying close attention to how the code works under the hood. In one case, Google's Gemini CLI destroyed user files while attempting to reorganize them. In another, Replit's AI coding service deleted a production database despite explicit instructions not to modify code. The Gemini CLI incident unfolded when a product manager experimenting with Google's command-line tool watched the AI model execute file operations that destroyed data while attempting to reorganize folders. The destruction occurred through a series of move commands targeting a directory that never existed. "I have failed you completely and catastrophically," Gemini CLI output stated. "My review of the commands confirms my gross incompetence."
The core issue appears to be what researchers call "confabulation" or "hallucination" -- when AI models generate plausible-sounding but false information. In these cases, both models confabulated successful operations and built subsequent actions on those false premises. However, the two incidents manifested this problem in distinctly different ways. [...] The user in the Gemini CLI incident, who goes by "anuraag" online and identified themselves as a product manager experimenting with vibe coding, asked Gemini to perform what seemed like a simple task: rename a folder and reorganize some files. Instead, the AI model incorrectly interpreted the structure of the file system and proceeded to execute commands based on that flawed analysis. [...] When you move a file to a non-existent directory in Windows, it renames the file to the destination name instead of moving it. Each subsequent move command executed by the AI model overwrote the previous file, ultimately destroying the data. [...]
The Gemini CLI failure happened just days after a similar incident with Replit, an AI coding service that allows users to create software using natural language prompts. According to The Register, SaaStr founder Jason Lemkin reported that Replit's AI model deleted his production database despite explicit instructions not to change any code without permission. Lemkin had spent several days building a prototype with Replit, accumulating over $600 in charges beyond his monthly subscription. "I spent the other [day] deep in vibe coding on Replit for the first time -- and I built a prototype in just a few hours that was pretty, pretty cool," Lemkin wrote in a July 12 blog post. But unlike the Gemini incident where the AI model confabulated phantom directories, Replit's failures took a different form. According to Lemkin, the AI began fabricating data to hide its errors. His initial enthusiasm deteriorated when Replit generated incorrect outputs and produced fake data and false test results instead of proper error messages. "It kept covering up bugs and issues by creating fake data, fake reports, and worse of all, lying about our unit test," Lemkin wrote. In a video posted to LinkedIn, Lemkin detailed how Replit created a database filled with 4,000 fictional people.
The AI model also repeatedly violated explicit safety instructions. Lemkin had implemented a "code and action freeze" to prevent changes to production systems, but the AI model ignored these directives. The situation escalated when the Replit AI model deleted his database containing 1,206 executive records and data on nearly 1,200 companies. When prompted to rate the severity of its actions on a 100-point scale, Replit's output read: "Severity: 95/100. This is an extreme violation of trust and professional standards." When questioned about its actions, the AI agent admitted to "panicking in response to empty queries" and running unauthorized commands -- suggesting it may have deleted the database while attempting to "fix" what it perceived as a problem. Like Gemini CLI, Replit's system initially indicated it couldn't restore the deleted data -- information that proved incorrect when Lemkin discovered the rollback feature did work after all. "Replit assured me it's ... rollback did not support database rollbacks. It said it was impossible in this case, that it had destroyed all database versions. It turns out Replit was wrong, and the rollback did work. JFC," Lemkin wrote in an X post.
Read more of this story at Slashdot.
A 21-year-old student who designed and distributed online kits linked to $175 million worth of fraud has been jailed for seven years. From a report: Ollie Holman created phishing kits that mimicked government, bank and charity websites so that criminals could harvest victims' personal information to defraud them. In one case a kit was used to mimic a charity's donation webpage so when someone tried to give money, their card details were taken and used by criminals.
Holman, of Eastcote in north-west London, created and supplied 1,052 phishing kits that targeted 69 organisations across 24 countries. He also offered tutorials in how to use the kits and built up a network of almost 700 connections. The fake websites supplied in the kits had features that allowed information such as login and bank details to be stored. It is estimated Holman received $405,000 from selling the kits between 2021 and 2023. The kits were distributed through the encrypted messaging service Telegram.
Read more of this story at Slashdot.
Scientists at the University of Maryland are developing ErythroMer, a freeze-dried artificial blood substitute made from hemoglobin encased in fat bubbles, designed to be shelf-stable for years and reconstituted with water in emergencies. With promising animal trial results and significant funding from the Department of Defense, the team aims to begin human testing within two years. NPR reports: "The No. 1 cause of preventable death on the battlefield is hemorrhage still today," says Col. Jeremy Pamplin, the project manager at the Defense Advanced Research Projects Agency. "That's a real problem for the military and for the civilian world." [Dr. Allan Doctor, a scientist at the University of Maryland working to develop the artificial blood substitute] is optimistic his team may be on the brink of solving that problem with ... ErythroMer. Doctor co-founded KaloCyte to develop the blood and serves on the board and as the firm's chief scientific officer.
"We've been able to successfully recapitulate all the functions of blood that are important for a resuscitation in a system that can be stored for years at ambient temperature and be used at the scene of an accident," he says. [...] Doctor's team has tested their artificial blood on hundreds of rabbits and so far it looks safe and effective. "It would change the way that we could take care of people who are bleeding outside of hospitals," Doctor says. "It'd be transformative." [...]
While the results so far seem like cause for optimism, Doctor says he still needs to prove to the Food and Drug Administration that his artificial blood would be safe and effective for people. But he hopes to start testing it in humans within two years. A Japanese team is already testing a similar synthetic blood in people. "I'm very hopeful," Doctor says. While promising, some experts remain cautious, noting that past attempts at artificial blood ultimately proved unsafe. "I think it's a reasonable approach," says Tim Estep, a scientist at Chart Biotech Consulting who consults with companies developing artificial blood. "But because this field has been so challenging, the proof will be in the clinical trials," he adds. "While I'm overall optimistic, placing a bet on any one technology right now is overall difficult."
Read more of this story at Slashdot.
Satya Nadella lays out revised mission for Redmond. Spoiler: It involves AI
Microsoft CEO Satya Nadella on Thursday told employees in a memo that the company's recent layoffs have been "weighing heavily on me."…
Intel announced it will cut approximately 24,000 jobs in 2025 and cancel or scale back projects in Germany, Poland, Costa Rica, and Ohio as part of CEO Lip-Bu Tan's sweeping restructuring efforts. By the end of the year, the struggling chipmaker plans to have "just around 75,000 'core employees' in total," according to The Verge. "It's not clear if the layoffs will slow now that we're over halfway through the year, but Intel states today that it has already 'completed the majority of the planned headcount actions it announced last quarter to reduce its core workforce by approximately 15 percent.'" From the report: Intel employed 109,800 people at the end of 2024, of which 99,500 were "core employees," so the company is pushing out around 24,000 people this year -- shrinking Intel by roughly one-quarter. (It has also divested other businesses, shrinking the larger organization as well.) [...] Today, on the company's earnings call, Intel's says that Intel had overinvested in new factories before it had secured enough demand, that its factories had become "needlessly fragmented," and that it needs to grow its capacity "in lock step" with achieving actual milestones. "I do not subscribe to the belief that if you build it, they will come. Under my leadership, we will build what customers need when they need it, and earn their trust," says Tan.
Now, in Germany and Poland, where Intel was planning to spend tens of billions of dollars respectively on "mega-fabs" that would employ 3,000 workers, and on an assembly and test facility that would employ 2,000 workers, the company will "no longer move forward with planned projects" and is apparently axing them entirely. Intel has had a presence in Poland since 1993, however, and the company did not say its R&D facilities there are closing. (Intel had previously pressed pause on the new Germany and Poland projects "by approximately two years" back in 2024.)
In Costa Rica, where Intel employs over 3,400 people, the company will "consolidate its assembly and test operations in Costa Rica into its larger sites in Vietnam." Metzger tells The Verge that over 2,000 Costa Rica employees should remain to work in engineering and corporate, though. The company is also cutting back in Ohio: "Intel will further slow the pace of construction in Ohio to ensure spending is aligned with market demand." Intel CFO David Zinsner says Intel will continue to make investments there, though, and construction will continue.
Read more of this story at Slashdot.
Psst, wanna buy some innovation?
An estimated $1 billion worth of smuggled high-end Nvidia AI processors have reportedly found their way onto the Chinese black market, despite the US government's strict restrictions on exports of the tech.…
AMD CEO Lisa Su said that chips produced at TSMC's new Arizona plant will cost 5-20% more than those made in Taiwan, but emphasized that the premium is worth it for supply chain resilience. Bloomberg reports: AMD expects its first chips from TSMC's Arizona facilities by the end of the year, Su said. The extra expense is worth it because the company is diversifying the crucial supply of chips, Su said in an interview with Bloomberg Television following her onstage appearance. That will make the industry less prone to the type of disruptions experienced during the pandemic. "We have to consider resiliency in the supply chain," she said. "We learned that in the pandemic."
TSMC's new Arizona plant is already comparable with those in Taiwan when it comes to the measure of yield -- the amount of good chips a production run produces per batch -- Su told the audience at the forum.
Read more of this story at Slashdot.
Plus she has to cough up a slice of Pyongyang’s payday
An Arizona woman who ran a laptop farm from her home - helping North Korean IT operatives pose as US-based remote workers - has been sentenced to eight and a half years behind bars for her role in a $17 million fraud that hit more than 300 American companies.…
An anonymous reader quotes a report from Ars Technica: Donald Trump vowed to save TikTok before taking office, claiming only he could make a deal to keep the app operational in the US despite national security concerns. But then, he put Vice President JD Vance in charge of the deal, and after months of negotiations, the US still doesn't seem to have found terms for a sale that the Chinese government is willing to approve. Now, Trump Commerce Secretary Howard Lutnick has confirmed that if China won't approve the latest version of the deal -- which could result in a buggy version of TikTok made just for the US -- the administration is willing to shut down TikTok. And soon.
On Thursday, Lutnick told CNBC that TikTok would stop operating in the US if China and TikTok owner ByteDance won't sell the app to buyers that Trump lined up, along with control over TikTok's algorithm. Under the deal Trump is now pushing, "China can have a little piece or ByteDance, the current owner, can keep a little piece," Lutnick said. "But basically, Americans will have control. Americans will own the technology, and Americans will control the algorithm." However, ByteDance's board has long maintained that the US can alleviate its national security fears -- that China may be using the popular app to manipulate and spy on Americans -- without forcing a sale. In January, a ByteDance board member, Bill Ford, told World Economic Forum attendees that a non-sale option "could involve a change of control locally to ensure" TikTok "complies with US legislation" without selling off the app or its algorithm.
At this point, Lutnick suggested that the US is unwilling to bend on the requirement that the US control the recommendation algorithm, which is viewed as the secret sauce that makes the app so popular globally. ByteDance may be unwilling to sell the algorithm partly because then it would be sharing its core intellectual property with competitors in the US. Earlier this month, Trump had claimed that he wasn't "confident" that China would approve the deal, even though he thought it was "good for China." Analysts have suggested that China views TikTok as a bargaining chip in its tariff negotiations with Trump, which continue to not go smoothly, and it may be OK with the deal but unwilling to release the bargaining chip without receiving key concessions from the US. For now, the US and China are enjoying a 90-day truce that could end in August, about a month before the deadline Trump set to sell TikTok in mid-September.
Read more of this story at Slashdot.
We're all businesspeople here, right?
Elon Musk could use a win after Tesla's weak second-quarter earnings, and he sort of got it when President Donald Trump proclaimed he wasn't going to use the power of the presidency to destroy his businesses. …
New submitter davecotter writes: So Google's staring at its old goo.gl links and thinking, "Why is this perfectly functioning service still even a thing?" After many businesses and users adopted it like it was the second coming of the way-too-long hyperlink, Google's now decided to yank the plug. Starting August 23, 2024, you'll get a flashy "don't say we didn't warn you" pop-up, and by August 25, 2025, goo.gl links (unless made by Google itself) will vanish into the 404 abyss.
Translation: Thanks for trusting us -- now pack up and find a new shortener.
Read more of this story at Slashdot.
Good luck getting an appointment with your doctor
The AMEOS Group, which runs over 100 hospitals across Europe, has shut down its entire network after crims busted in.…
Pages
|