PyTorch merged pull request #183992, authored by cyyever, which updates the codebase to use C++20 default member initializers for bit-fields. The change modernizes the internal code and was approved by Skylion007. It was resolved on the trunk branch with commit aa3ccd27e55dcc37557b3457fd6bf20cd6aa5a28.
SocialSource: V2EXImportance: 3/5
Developer knktc released EnvMate, a Chrome extension that adds visual markers to differentiate development, testing, staging, and production environments to prevent misoperations. It also enables password saving and autofill on internal sites using self-signed HTTPS certificates, bypassing Chrome’s default security restriction. The extension is available on the Chrome Web Store and the source code is fully open-sourced on GitHub.
SocialSource: V2EXImportance: 1/5
A user installed Feiniu OS on a NAS after hardware setup and found old Synology drives unrecognized, requiring data migration over the network. Docker image pulls failed, so Mihomo was installed via SSH to proxy downloads. MoviePilot was abandoned because it requires PT certification, and the arr suite (Prowlarr, Sonarr/Radarr) was adopted, but Bazarr did not work. Network tests showed full speed only on ISP's own test site, no IPv6, and BT/PT downloads slowed to tens of KB/s without Mihomo.
ReposSource: GITHUBImportance: 1/5
A commit in the PyTorch repository modifies the TorchDynamo component to have _get_current_dispatch_mode_stack return an empty list ([]) instead of the previous behavior. The change appears in a trunk build on 2026-06-15. The commit was authored by arnavkewalram.
SocialSource: V2EXImportance: 2/5
AI Workdeck is an open-source, AI-native legal workbench modeled as 'VS Code for the legal industry'. It provides a plugin marketplace for modular legal tools and supports private deployment to address data sensitivity concerns. The platform uses Agent capabilities to automate workflows, enabling continuous self-evolution. The project is available on GitHub for community contributions.
ReposSource: GITHUBImportance: 2/5
A PR (#185708) fixes issue #140914 by switching the import of TypeVar from typing to typing_extensions in torch/_inductor/utils.py. Without this change, an import-time TypeError could occur when another vendored copy of typing_extensions monkeypatches typing internals. The fix aligns TypeVar with the existing import of ParamSpec, preserving the CachedMethod[P, RV] convention. The change was approved by Skylion007 and jansel.