1PasswordとCodexの公式インテグレーションにより、opコマンドを使わずにAIによる認証要求都度ユーザー承認が可能になった。以前にClaudeとも協働中と書いてたからClaude版もそのうち出そう / “1Password is now a trusted access layer for OpenAI’s Codex | 1Password” https://t.co/cP4nNm8VHu
This is bad.
Those repos likely contain the GitHub infrastructure: the next supply chain attack could be more hidden than cache poisoning if attackers find a vuln on GitHub itself.
This is very, very bad.
We are investigating unauthorized access to GitHub’s internal repositories. While we currently have no evidence of impact to customer information stored outside of GitHub’s internal repositories (such as our customers’ enterprises, organizations, and repositories), we are closely monitoring our infrastructure for follow-on activity.
JavaScript's Date object was broken in 1995.
It took 31 years to fix it. ES2026 finally did it. 🎉
The Temporal API is here — and it's just the start of what ES2026 ships.
Here's every feature that changes how you write JS:
🗓️ Temporal API — immutable, timezone-aware dates. Drop Moment.js for good.
🔒 using + await using — automatic resource cleanup. No more forgotten try/finally blocks. Files, DB connections, streams — all closed automatically when scope exits.
➕ Math.sumPrecise() — floating point math that actually works.
[1e20, 0.1, -1e20].reduce((a,b)=>a+b) = 0 ❌
Math.sumPrecise([1e20, 0.1, -1e20]) = 0.1 ✅
✅ Error.isError() — reliable error detection across iframes and VM contexts. instanceof Error was never trustworthy.
⚡ Array.fromAsync() — collect async iterables in one line. The async equivalent of Array.from.
🗺️ Map.getOrInsert() — upsert without the boilerplate. No more has() → set() → get() chains.
🔢 Uint8Array Base64/Hex methods — built-in binary encoding. No more btoa() gymnastics.
🔗 Iterator.concat() — chain iterators lazily. No intermediate arrays.
I broke down every feature with before/after code in my article.
Which feature are you most excited about? Drop a comment 👇
#JavaScript #ES2026 #ECMAScript #WebDev #Frontend #Programming #100DaysOfBlogging https://t.co/FUKeqPtG4m
Ollama is now updated to run the fastest on Apple silicon, powered by MLX, Apple's machine learning framework.
This change unlocks much faster performance to accelerate demanding work on macOS:
- Personal assistants like OpenClaw
- Coding agents like Claude Code, OpenCode, or Codex