Lotu RadarAbout · RSS

Latest News Archive - Page 628

Products & Consumer Tech · Ars Technica

Here's Audi's next Q7 SUV and US-only SQ7, now with an RS V8

At night, the car projects its turn signals onto the road to alert other road users.

Products & Consumer Tech · The Verge

Everything you need to know about Prime Day 2026

Amazon Prime Day 2026 is getting closer, and it’s possible you might have some questions about the sale. When does it start? Why is it in June instead of July? And, most importantly, when will the deals go live? We have concrete answers to those questions, and we’ll have a lot more Prime Day coverage […]

AI · The Decoder

Beijing's $295 billion AI buildout would require 80 percent domestic chips, locking out US suppliers

China plans to invest roughly $295 billion in a nationwide AI data center network over the next five years, Bloomberg reports. At least 80 percent of the technology would come from domestic suppliers like Huawei. Meanwhile, Taiwan is considering making AI chip smuggling to China a criminal offense for the first time. The article Beijing's $295 billion AI buildout would require 80 percent domestic chips, locking out US suppliers appeared first on The Decoder .

AI · TechCrunch AI

Sandstone raises $30M to bring AI to in-house legal teams

Sandstone's Series A comes just six months after a Sequoia-led seed round.

Products & Consumer Tech · The Verge

Nintendo Direct June 2026: All the news and trailers

After a week of video game news and trailers from PlayStation, Xbox, and most of the major publishers, it’s now Nintendo’s turn. And the next Nintendo Direct comes at an important time for the company. The Switch 2 is getting a price hike, and at the same time, the console’s lineup of new games through […]

Startups & Funding · Hacker News Best

Albania Is Not for Sale: Kushner's $4B Resort Triggers'Flamingo Revolution'

Article URL: https://www.yacnews.com/albania-is-not-for-sale-kushners-4-billion-resort-triggers-flamingo-revolution-asset-freeze-and-an-eu-warning/ Comments URL: https://news.ycombinator.com/item?id=48461012 Points: 432 # Comments: 195

Products & Consumer Tech · The Verge

Apple’s best AI idea looks a lot like vibe coding

Most of Apple's current AI ideas are roughly the same as everyone else's AI ideas. A chatbot you can ask questions; quick ways to create or summarize text; bizarre, borderline creepy image-generation tools. The company spent most of its WWDC keynote playing catch-up with the state of the AI art, announcing Siri features you can […]

Products & Consumer Tech · Product Hunt

AGNT.Hub

Build always-on AI agents without managing servers Discussion | Link

Products & Consumer Tech · Ars Technica

Apple says its AI is still private, even when it's running on Google's servers

Some models run in Google's cloud, but without giving Google any kind of access.

Products & Consumer Tech · The Verge

Apple dials down Liquid Glass, and the Mac looks way better for it

MacOS 27 Golden Gate will usher in a bunch of changes to the Mac when it's released later this year, with its biggest new features revolving around Siri AI. But for now, using the first developer beta, Siri AI is only offered through a waitlist. So what's available to try is mostly about how the […]

Products & Consumer Tech · Product Hunt

OpenArt Director

Direct cinematic videos through chat Discussion | Link

Products & Consumer Tech · Ars Technica

First Drive: The 2027 Rivian R2 entirely changes the EV game

Rivian's second EV is the sub-$60,000 R2, and it was worth the wait.

Products & Consumer Tech · The Verge

The Rivian R2 is too much fun to let drive itself

Rivian may be all in on robotaxis and autonomy, but it's still got human drivers - and EV buyers - to win over. The pricey R1S SUV and R1T pickup brought Rivian A-list media attention and cult-hit status, but the company faces a critical next step. The 2027 R2 is Rivian's bid for mainstream success, […]

Cloud & Infrastructure · The New Stack

How long before we stop reading the code?

Don’t kill the code reviews; just move the human checkpoint upstream to reviewing intent, specs, plans, constraints, and acceptance criteria. The post How long before we stop reading the code? appeared first on The New Stack .

AI · TechCrunch AI

Lovable says it has hit $500M in annualized revenue, with 1 million new projects a week

Lovable says it has now surpassed $500 million in annualized run-rate revenue and its users are building businesses and replacing internal software.

Cybersecurity · SecurityWeek

New Platform Uses Cryptographic Invisibility to Protect AI-Built Applications

Atsign’s AI Architect applies cryptographic protections to agentic software development, aiming to prevent attackers from exploiting vulnerabilities by making application identities effectively invisible. The post New Platform Uses Cryptographic Invisibility to Protect AI-Built Applications appeared first on SecurityWeek .

Products & Consumer Tech · The Verge

Apple’s AI pitch will live or die by its privacy promise

As expected, yesterday's WWDC keynote was mostly about AI. And also as expected, Apple tried to turn its late arrival into its sales pitch: it didn't rush into AI because it was taking its time to do things right. In this case, "right" means "with more privacy than anyone else." It's a good pitch - […]

Developers & Open Source · cloudflare/workers-sdk Releases

wrangler@4.99.0

Minor Changes #14169 0706fbf Thanks @edmundhung ! - Introduce createTestHarness() for integration testing Workers It runs Workers in a local preview environment using production build output and works with both Wrangler projects and Workers built by the Cloudflare Vite plugin. Use it from any Node.js test runner to send requests to individual Workers, trigger scheduled events, reset the server between tests, and mock outbound requests with libraries that intercept globalThis.fetch() , such as MSW. You can also capture structured logs from your Workers with getLogs() , or dump out a diagnostic timeline with debug() when tests fail: import { createTestHarness } from "wrangler" ; const server = createTestHarness ( { workers : [ { configPath : "./dist/web_worker/wrangler.json" } , { configPath : "./dist/api_worker/wrangler.json" } , ] , } ) ; await server . listen ( ) ; await server . fetch ( "http://example.com" ) ; const apiWorker = server . getWorker ( "api-worker" ) ; await apiWorker . fetch ( "http://example.com/users/123" ) ; await apiWorker . scheduled ( { cron : "0 0 * * *" } ) ; server . getLogs ( ) ; if ( testFailed ) { server . debug ( ) ; } await server . reset ( ) ; await server . close ( ) ; #14174 8cf8c61 Thanks @oliy ! - Surface pipeline status and failure reasons in wrangler pipelines list and wrangler pipelines get wrangler pipelines list now includes a Status column, and when any pipelines are in a failed state it prints a summary of each failing pipeline along with the reason reported by the API. wrangler pipelines get now shows the pipeline Status in the general details and, for failed pipelines, highlights the failure with the reason returned by the server so it is clear why a pipeline is not running. #14211 a61ac29 Thanks @james-elicx ! - Add --version-tag support to wrangler versions deploy to deploy a version by its tag You can now roll out or roll back a version by the tag it was uploaded with (e.g. a commit SHA passed to --tag at upload time) instead of first looking up its Version ID: wrangler versions deploy --version-tag @100% The tag is resolved to a Version ID against the worker's deployable versions, and the @ shorthand works just like the existing @ notation, including splitting traffic across multiple --version-tag values. If a tag matches no deployable version, or matches more than one, the command errors and asks you to deploy by Version ID directly. Note that tags can only be resolved against recent (deployable) versions — older versions that have aged out of that window must still be deployed by Version ID. Patch Changes #14163 23aecac Thanks @emily-shen ! - Print deploy warnings even in non-interactive contexts when strict mode is off Currently, wrangler deploy checks whether the incoming deploy configuration has destructive conflicts with the current configuration. Previously, we only performed this check in interactive contexts, or if the --strict flag was passed in. Now this warning is always printed, and it remains non-blocking in non-interactive contexts. #14173 b932e47 Thanks @gpanders ! - Handle API validation errors from wrangler containers ssh Wrangler now lets the Containers API validate SSH instance IDs and preserves raw API error bodies such as INVALID_INSTANCE_ID when reporting validation failures. #14192 d076bcc Thanks @dependabot ! - Update dependencies of "miniflare", "wrangler" The following dependency versions have been updated: Dependency From To workerd 1.20260603.1 1.20260605.1 #14217 24497d0 Thanks @dependabot ! - Update dependencies of "miniflare", "wrangler" The following dependency versions have been updated: Dependency From To workerd 1.20260605.1 1.20260608.1 #14231 4bb572f Thanks @dependabot ! - Update dependencies of "miniflare", "wrangler" The following dependency versions have been updated: Dependency From To workerd 1.20260608.1 1.20260609.1 #14195 165adb2 Thanks @dario-piotrowicz ! - Show actionable error message when authentication fails during remote dev When wrangler dev with remote bindings encountered an authentication error (expired token, revoked OAuth, or invalid API token), the user saw a generic "A request to the Cloudflare API failed" message with no indication that authentication was the problem. Now, authentication failures during remote dev display a clear error message with actionable steps. #14034 776098c Thanks @matingathani ! - Fix wrangler types --check reporting types as out of date in multi-worker setups Previously, running wrangler types --check -c primary/wrangler.jsonc in a multi-worker project would incorrectly report types as out of date, even when they were current. This happened because the secondary worker config paths (passed via additional -c flags during generation) were not stored in the generated types file header, so --check had no way to resolve the secondary workers' service bindings when verifying the hash. The fix stores secondary config paths in the generated file's header comment so that --check can recover them automatically. Users no longer need to re-pass every -c flag when running --check — only the primary config is required. #14053 7993711 Thanks @fallintoplace ! - Prevent delete-only wrangler secret bulk input from creating a new Worker Previously, wrangler secret bulk could create a draft Worker when the input only deleted secrets and the target Worker name did not exist. Delete-only bulk secret operations now leave Worker-not-found as an error instead of creating a new Worker. #14055 8923f97 Thanks @dario-piotrowicz ! - Preserve all deployment-affecting CLI flags in the interactive deploy config flow When running wrangler deploy without a config file and going through the interactive setup flow, CLI flags beyond --compatibility-flags (such as --routes / --route , --domains / --domain , --triggers , --var , --define , --alias , --jsx-factory , --jsx-fragment , --tsconfig , --minify , --upload-source-maps , --no-bundle , --logpush , --keep-vars , --legacy-env , and --dispatch-namespace ) were silently dropped. These flags are now persisted to the generated wrangler.jsonc config file (where a config field equivalent exists) and included in the suggested CLI command when the user declines config file generation. #14196 b205fb7 Thanks @odiak ! - Validate JSON stdin values for wrangler secret bulk JSON input piped through stdin now validates that secret values are strings or null before sending them to the API, matching the existing behavior for file input. Updated dependencies [ d076bcc , 24497d0 , 4bb572f , 48c4ff0 ]: miniflare@4.20260609.0

Products & Consumer Tech · Product Hunt

PrompTessor

AI Prompt Generator, Optimizer & Library Discussion | Link

Cybersecurity · The Hacker News

WinRAR Flaw Exploited by Russia-Aligned Groups to Deploy Stealers in Ukraine

Two Russia-aligned cyber attack campaigns have continued to exploit a security flaw in WinRAR to target Ukrainian organisations, almost a year after patches for the vulnerability were released. The activity has been attributed by Trend Micro to Earth Dahu (aka Gamaredon) and SHADOW-EARTH-066 (aka UAC-0226). It involves the exploitation of CVE-2025-8088, a path traversal flaw that allows an

Cybersecurity · SecurityWeek

SAP Patches Critical NetWeaver, Commerce Vulnerabilities

The flaws could lead to the disclosure of sensitive information, memory corruption, and disruption of normal system usage. The post SAP Patches Critical NetWeaver, Commerce Vulnerabilities appeared first on SecurityWeek .

Products & Consumer Tech · The Verge

Marshall’s Stockwell speaker gets a replaceable battery that runs twice as long

Marshall has announced a new version of its stylish Stockwell Bluetooth speaker, putting a new focus on repairability. The Stockwell III, the brand's first update to this model since early 2019, features a similar design to its predecessor with a large carrying handle and speakers that pump sound in all directions, not just out the […]

AI · TechCrunch AI

How an e-scooter founder raised $5 million to build space data centers

Orbital founder Euwyn Poon built 250,000 scooters at Spin. Now he wants to launch 10,000 space data centers.

AI · OpenAI News

How engineers at Nextdoor use Codex to build without limits

How engineers at Nextdoor use Codex with GPT-5.5 to investigate hard-to-reproduce issues, build across platforms, and focus on product outcomes.