Jack Dorsey Takes On Slack and GitHub With New AI Workplace Platform 'Buzz'
July 22, 2026 at 11:00PM
July 22, 2026 at 11:00PM
news.slashdot.org
Jack Dorsey Takes On Slack and GitHub With New AI Workplace Platform 'Buzz'
Jack Dorsey's Block has launched Buzz, an open-source workplace collaboration platform that combines messaging, project management, and software development workflows for teams of both humans and AI agents. Dorsey described Buzz as "a new groupchat platform…
LG To Ban Residential Proxies From Smart TV Apps
July 23, 2026
July 23, 2026
entertainment.slashdot.org
LG To Ban Residential Proxies From Smart TV Apps
An anonymous reader quotes a report from KrebsOnSecurity: The home appliance giant LG Electronics USA said this week it plans to suspend any apps built for its smart TVs that turn one's television into an always-on residential proxy node. The move comes less…
大众汽车的官方应用不支持第三方 Android 系统
大众汽车的官方应用不支持第三方 Android 系统。大众汽车的客户如其手机运行 GrapheneOS、LineageOS 或 /e/OS 等没有预装 Google Play Services 的第三方 Android 系统,那么他们将无法通过手机运行官方应用查看汽车剩余续航里程、预约保养服务,控制充电和空调。对于这一问题,官方表示在调查,同时警告短时间内不会有变化。大众汽车解释说,它的应用使用了 Google 的 Play Integrity API,而该 API 只有预装了 Play Services 的 Android 设备会提供。GrapheneOS 最近抨击了 Google 在 Play Integrity API 功能上误导企业,称该 API 并没有真正强制要求设备安全或应用合法,只是装装样子。它留下了巨大的安全漏洞。它强制执行的是 Google 的商业利益。 via Solidot
大众汽车的官方应用不支持第三方 Android 系统。大众汽车的客户如其手机运行 GrapheneOS、LineageOS 或 /e/OS 等没有预装 Google Play Services 的第三方 Android 系统,那么他们将无法通过手机运行官方应用查看汽车剩余续航里程、预约保养服务,控制充电和空调。对于这一问题,官方表示在调查,同时警告短时间内不会有变化。大众汽车解释说,它的应用使用了 Google 的 Play Integrity API,而该 API 只有预装了 Play Services 的 Android 设备会提供。GrapheneOS 最近抨击了 Google 在 Play Integrity API 功能上误导企业,称该 API 并没有真正强制要求设备安全或应用合法,只是装装样子。它留下了巨大的安全漏洞。它强制执行的是 Google 的商业利益。 via Solidot
Samsung Galaxy Z Fold 8 Announced to Compete With Future iPhone Fold
July 23, 2026 at 01:00AM
July 23, 2026 at 01:00AM
mobile.slashdot.org
Samsung Galaxy Z Fold 8 Announced to Compete With Future iPhone Fold
At a Galaxy Unpacked event in London today, Samsung unveiled a new foldable smartphone designed to compete with the still-unannounced iPhone Fold. Called the Galaxy Z Fold 8, it features a wider 4:3 form factor with a 7.6-inch inner AMOLED display, Snapdragon…
Microsoft Announces Xbox Backward Compatibility For PC
July 23, 2026 at 02:00AM
July 23, 2026 at 02:00AM
games.slashdot.org
Microsoft Announces Xbox Backward Compatibility For PC
Microsoft has announced Xbox Backward Compatibility for PC, a new preservation program that will let players run select classic Xbox games on Windows PCs and handhelds like the ROG Xbox Ally. Tom's Hardware reports: "This marks the beginning of a broader…
数学家仍然不知道乘法的最快方法
我们在小学时学习的多位数乘法叫竖式乘法,其时间复杂度为 O(n²),即位数越长,计算量随位数的平方增长。举例来说,两个两位数相乘,需要进行四次计算;两个三位数相乘,需要进行九次计算。位数越长,计算量会越来越惊人。那么 O(n²)是否是乘法的速度极限呢?苏联著名数学教授 Andrey Kolmogorov 在 1960 年的一次研讨会上讨论了这一猜想,仅仅一周之后,23 岁的学生 Anatoly Karatsuba 就给出了否定答案。他发现可以用简单快速的加法去替代费劲的乘法计算,而两个 n 位数相加的时间复杂度仅为 O(n),加法只需要遍历数字一次,而乘法需要对 n 位数的每一位进行完整遍历。通过这一代数技巧,他将乘法的时间复杂度减少到 O(n^1.585),比O(n²) 快得多。Karatsuba 算法的优势只有在数字较大时才会体现出来。Python 语言就使用了混合方法,当数字较小时使用小学乘法,当数字大于 630 位十进制数时改用 Karatsuba 的算法。2019 年数学家 David Harvey 和 Joris van der Hoeven 找到了一种比 Karatsuba 算法更快的方法,其时间复杂度为 O(n × log n),但它相对于 Karatsuba 算法的优势只有在数非常非常大时才会体现。Harvey-van der Hoeven 算法被普遍认为是乘法的最快方法,但目前尚无正式证明。 via Solidot
我们在小学时学习的多位数乘法叫竖式乘法,其时间复杂度为 O(n²),即位数越长,计算量随位数的平方增长。举例来说,两个两位数相乘,需要进行四次计算;两个三位数相乘,需要进行九次计算。位数越长,计算量会越来越惊人。那么 O(n²)是否是乘法的速度极限呢?苏联著名数学教授 Andrey Kolmogorov 在 1960 年的一次研讨会上讨论了这一猜想,仅仅一周之后,23 岁的学生 Anatoly Karatsuba 就给出了否定答案。他发现可以用简单快速的加法去替代费劲的乘法计算,而两个 n 位数相加的时间复杂度仅为 O(n),加法只需要遍历数字一次,而乘法需要对 n 位数的每一位进行完整遍历。通过这一代数技巧,他将乘法的时间复杂度减少到 O(n^1.585),比O(n²) 快得多。Karatsuba 算法的优势只有在数字较大时才会体现出来。Python 语言就使用了混合方法,当数字较小时使用小学乘法,当数字大于 630 位十进制数时改用 Karatsuba 的算法。2019 年数学家 David Harvey 和 Joris van der Hoeven 找到了一种比 Karatsuba 算法更快的方法,其时间复杂度为 O(n × log n),但它相对于 Karatsuba 算法的优势只有在数非常非常大时才会体现。Harvey-van der Hoeven 算法被普遍认为是乘法的最快方法,但目前尚无正式证明。 via Solidot
The Army Is Burning Through Its AI Tokens
July 23, 2026 at 03:00AM
July 23, 2026 at 03:00AM
tech.slashdot.org
The Army Is Burning Through Its AI Tokens
An anonymous reader quotes a report from Wired: A little over a month after the Department of Defense (DOD) bragged that nearly half of its 3.5 million employees were using AI at work, members of the Army's Combat Capabilities Development Command (DEVCOM)…
Apple Partners With Klarna To Offer iPhones, Macs On a Subscription Basis
July 23, 2026 at 04:00AM
July 23, 2026 at 04:00AM
hardware.slashdot.org
Apple Partners With Klarna To Offer iPhones, Macs On a Subscription Basis
Apple is reportedly launching a Klarna financing deal that will let U.S. customers spread the cost of devices over up to three years, pushing the company closer to a hardware-as-a-service model. "The only thing you don't get under the new arrangement is AppleCare…
Linux Kernel Team Publishes 432 CVEs In Two Days
July 23, 2026 at 05:00AM
July 23, 2026 at 05:00AM
linux.slashdot.org
Linux Kernel Team Publishes 432 CVEs In Two Days
Ancient Slashdot reader alanw shares a post from the OSS Security mailing list, where sysadmin Jan Schaumann wonders what to do after the Linux kernel cranked out 432 CVEs in a little over 24 hours: "I understand the position that CVEs were always a flawed…
iOS 27 Code Suggests Apple Could Restrict Leased Devices After Missed Payments
July 23, 2026 at 06:00AM
July 23, 2026 at 06:00AM
apple.slashdot.org
iOS 27 Code Suggests Apple Could Restrict Leased Devices After Missed Payments
Code found in the iOS 27 beta suggests Apple is developing a system that could restrict leased iPhones when customers fall behind on payments. The discovery follows a recent Bloomberg report that Apple may soon launch a new "Apple Upgrade" leasing program…
GM Is Quietly Becoming a Subscriptions Company
July 23, 2026 at 07:00AM
July 23, 2026 at 07:00AM
tech.slashdot.org
GM Is Quietly Becoming a Subscriptions Company
"General Motors has been pulling a Tim Cook and boosting its software and subscription business," reports Business Insider. During the automaker's Tuesday earnings call, executives said they're increasingly leaning on software subscriptions like OnStar and…
Pan Am Plane Crash That Inspired Modern Safety Briefings Found After 74 Years
July 23, 2026 at 11:30AM
July 23, 2026 at 11:30AM
news.slashdot.org
Pan Am Plane Crash That Inspired Modern Safety Briefings Found After 74 Years
Longtime Slashdot reader BeaverCleaver shares a report from the BBC: The wreckage of a Pan American Airways plane has been found 74 years after it plunged into the Atlantic Ocean in a crash that prompted mandatory airline safety briefings. The Clipper Endeavor…
Private Mission Launches To Extend Life of Out-of-Gas Communication Satellites
July 23, 2026 at 03:00PM
July 23, 2026 at 03:00PM
tech.slashdot.org
Private Mission Launches To Extend Life of Out-of-Gas Communication Satellites
Northrop Grumman has launched a private satellite-servicing mission to attach life-extending "jetpacks" to aging communications satellites in geosynchronous orbit. "It's the second satellite-saving mission to launch this month, all part of a growing, money…
美国陆军也耗尽了它的可用 Token 要求限制使用
即便是美国军方,他们也没有无限量的 Token 可用。美国陆军发出通知,称其 Token 几乎耗尽,要求军人限制使用。美国陆军使用名为 Ask Sage 的多模生成式 AI 平台,可运行不同的大模型,包括 Alphabet 的 Gemini、Meta 的 Llama 以及 OpenAI 的 ChatGPT。一名匿名的陆军军人称,陆军的一个服务就把一整年的 token 烧光了。他称陆军一直在鼓励军人使用生成式 AI。每人每月至少获得 20 万个 token,如果用完初始配额,系统会自动分配更多 token。据报道,美国军方在针对伊朗的 Operation Epic Fury 行动期间,每天消耗了 200 亿个 tokens。 via Solidot
即便是美国军方,他们也没有无限量的 Token 可用。美国陆军发出通知,称其 Token 几乎耗尽,要求军人限制使用。美国陆军使用名为 Ask Sage 的多模生成式 AI 平台,可运行不同的大模型,包括 Alphabet 的 Gemini、Meta 的 Llama 以及 OpenAI 的 ChatGPT。一名匿名的陆军军人称,陆军的一个服务就把一整年的 token 烧光了。他称陆军一直在鼓励军人使用生成式 AI。每人每月至少获得 20 万个 token,如果用完初始配额,系统会自动分配更多 token。据报道,美国军方在针对伊朗的 Operation Epic Fury 行动期间,每天消耗了 200 亿个 tokens。 via Solidot
天文学家首次观测到系外卫星
国际天文研究团队在《自然》上发表论文称,首次发现一套罕见三层等级天体系统观测证据,捕捉到疑似宇宙“系外月球”信号,为人类搜寻系外卫星开辟全新观测路径。人类至今已探明超 6000 颗系外行星,但始终没有一颗系外卫星获得明确观测确认。所谓系外卫星,也常被称作“系外月球”,特指围绕系外行星运转的天体;而本次新发现的系统结构更为特殊:恒星环绕褐矮星伴星,褐矮星外侧又存在一颗大型卫星,构成恒星—褐矮星—卫星三级嵌套结构,是人类首个观测到该类型的候选天体系统。对 CD-352722 B 系统的分析显示,该褐矮星外侧存在一颗质量约 0.9 倍木星的巨型天体,轨道周期约 170 天。模型推演证实,系统至少存在一颗卫星的可信信号;若假设系统存在两颗卫星,轨道模型将呈现高度不稳定状态,与实际观测不符。 via Solidot
国际天文研究团队在《自然》上发表论文称,首次发现一套罕见三层等级天体系统观测证据,捕捉到疑似宇宙“系外月球”信号,为人类搜寻系外卫星开辟全新观测路径。人类至今已探明超 6000 颗系外行星,但始终没有一颗系外卫星获得明确观测确认。所谓系外卫星,也常被称作“系外月球”,特指围绕系外行星运转的天体;而本次新发现的系统结构更为特殊:恒星环绕褐矮星伴星,褐矮星外侧又存在一颗大型卫星,构成恒星—褐矮星—卫星三级嵌套结构,是人类首个观测到该类型的候选天体系统。对 CD-352722 B 系统的分析显示,该褐矮星外侧存在一颗质量约 0.9 倍木星的巨型天体,轨道周期约 170 天。模型推演证实,系统至少存在一颗卫星的可信信号;若假设系统存在两颗卫星,轨道模型将呈现高度不稳定状态,与实际观测不符。 via Solidot
通用汽车悄悄成为一家订阅服务公司
通用汽车正在大力发展软件和订阅业务。在周二的财报电话会议上,高管表示公司正日益依赖 OnStar 和 Super Cruise 等软件订阅服务,以在客户购车后创造长期的高利润经常性收入。OnStar 在第二季度带来了约 8 亿美元的收入,而 Super Cruise 的收入同比增长约 70%。通用汽车表示,软件业务每赚取 1 美元的收入就能保留 70 美分作为利润。这在汽车行业是一个罕见的盈利水平,汽车行业每 1 美元的销售额通常只能带来 4-10 美分的利润。通用汽车预计今年将新增约 100 万 OnStar 用户,总用户数接近 1300 万。允许双手脱离方向盘但须保持注意力的辅助驾驶系统 Super Cruise 的增速更快。通用汽车在第二季度新增了约 7 万用户,预计年底用户数将超过 85 万。该服务收入与去年同期相比增长了 70%。 via Solidot
通用汽车正在大力发展软件和订阅业务。在周二的财报电话会议上,高管表示公司正日益依赖 OnStar 和 Super Cruise 等软件订阅服务,以在客户购车后创造长期的高利润经常性收入。OnStar 在第二季度带来了约 8 亿美元的收入,而 Super Cruise 的收入同比增长约 70%。通用汽车表示,软件业务每赚取 1 美元的收入就能保留 70 美分作为利润。这在汽车行业是一个罕见的盈利水平,汽车行业每 1 美元的销售额通常只能带来 4-10 美分的利润。通用汽车预计今年将新增约 100 万 OnStar 用户,总用户数接近 1300 万。允许双手脱离方向盘但须保持注意力的辅助驾驶系统 Super Cruise 的增速更快。通用汽车在第二季度新增了约 7 万用户,预计年底用户数将超过 85 万。该服务收入与去年同期相比增长了 70%。 via Solidot
Verisign Is Finally Bringing.web Domains To the Internet
July 23, 2026 at 07:00PM
July 23, 2026 at 07:00PM
tech.slashdot.org
Verisign Is Finally Bringing .web Domains To the Internet
BrianFagioli writes: Verisign is finally bringing web domains to the internet after a decade of fighting. Verisign says the .web top-level domain has finally been delegated into the DNS root, clearing the way for public registrations later in 2026. Until…