Intel has released ISPC 1.31, the latest version of its Implicit SPMD Program Compiler. Key additions include new AVX10.2 NVL targets (x4, x8, x16, x32, x64) for the upcoming Nova Lake processors, similar to existing Diamond Rapids targets but without AMX support. Notably, the release also adds experimental PowerPC 64-bit support for IBM POWER8 and newer, though this is not enabled by default in official builds. The release also includes performance improvements, standard library updates, and bug fixes.
Nguồn: https://www.phoronix.com/news/Intel-ISPC-1.31-Released. 8sync News chỉ tóm tắt và dẫn link; bản quyền nội dung thuộc tác giả và nguồn gốc.

TypeScript 7.0 RC đã được phát hành với trình biên dịch (compiler) được viết lại bằng Go, giúp tăng tốc độ build lên gấp 10 lần so với phiên bản 6.0 nhờ sử dụng đa luồng (parallelism) và mã gốc (native code). Phiên bản mới cũng thay đổi mặc định (strict: true, module: esnext), loại bỏ các flags lỗi thời, đồng thời hỗ trợ cài đặt song song với phiên bản 6.0 qua package @typescript/typescript6.
Lập trình viên nên đọc để khám phá cách TypeScript 7.0 cải thiện hiệu suất gỡ lỗi và xây dựng dự án với tốc độ gấp 10 lần nhờ chuyển sang biên dịch viên Go, đồng thời nâng cấp tính năng mới như chế độ strict mặc định và cải tiến trong VS Code.
TerraMaster has announced the F4-425 Pro, a 4+3 hybrid NAS offering four SATA bays and three M.2 NVMe SSD slots. It comes in two configurations: Intel Core i3-N305 (Alder Lake-N) with 8GB DDR5 RAM for $559.99, or Intel Core 3 N350 (Twin Lake) with 16GB DDR5 RAM for $669.99. Both feature dual 5GbE networking, HDMI 2.1, four USB 3.2 ports, and ship with TOS 7 built on Linux 6.12. TOS 7 adds natural language control via OpenClaw AI, Smart ISO mounting, a unified recycle bin, per-port bandwidth limits, and claims 120% improved search accuracy. The author notes the performance difference between the two CPU variants is marginal, with RAM being the main differentiator, and questions whether the Pro offers enough improvement over the older F4-425 Plus with Intel N150 for typical home users.

Elixir v1.20.2 is a patch release with one enhancement and multiple bug fixes. The enhancement adds per-module type checking times to compiler profiling output. Bug fixes address binary comprehensions with size options, compiler error messages for quote/unquote in patterns and guards, restoration of a Kernel.put_elem/3 compiler optimization, and numerous type system fixes covering empty function types, bitstring patterns, map/optional key operations, list types, protocol implementations, and struct redefinition errors. Mix also receives fixes for unnecessary umbrella recompilation and dependency recompilation on compile-time environment changes.

Developer Boisy Gene Pitre has created a BASIC09 front-end for LLVM called 'basic09c', capable of lexing and parsing BASIC09 code, building an AST, performing semantic checks, and emitting LLVM IR. BASIC09 is a structured BASIC dialect from the 1980s used on OS-9/6809 and Tandy Color Computer systems. The goal is to preserve and compile existing BASIC09 programs by targeting modern LLVM backends. However, LLVM developers Eli Friedman and Nikita Popov indicated the project won't be merged into the main LLVM codebase, suggesting it live as an independent project that links to LLVM as a library.
TypeScript 7.0 RC introduces a complete compiler rewrite in Go (codenamed 'Corsa'), delivering 5-9x faster build times and ~60-70% lower memory usage. The new compiler ships as a native binary (tsgo) installable via npm. Migration steps include installing @typescript/native, deleting stale .tsbuildinfo files, running tsgo --noEmit alongside tsc to compare diagnostics, updating tsconfig.json (removing preserveConstEnums), and adjusting build pipelines. Key limitations in the RC: no programmatic Compiler API (breaking ts-morph, custom transformers), incomplete --declarationMap support, and gaps in --build mode for complex multi-project setups. Teams with large codebases (500+ files) gain the most, but the RC should not gate production releases without a parallel tsc safety net.