返回首页 Back Home
Women Stack Daily

Women Stack Daily

面向科技从业者的每日技术与行业快报。 A daily briefing on technology and industry updates.
2026-04-01

官方更新 (10)

Official Updates (10)

Workflows, Workers - 所有 Wrangler 命令现在都支持本地开发

Workflows, Workers - All Wrangler commands for Workflows now support local development

现在所有 wrangler workflows 命令都支持 --local 参数,可以指向本地 wrangler dev 会话中的 Workflow,而不是生产 API。你现在可以在本地管理完整的 Workflow 生命周期,包括触发、列出实例、暂停、恢复、重启、终止和发送事件。

All wrangler workflows commands now accept a --local flag to target a Workflow running in a local wrangler dev session instead of the production API. You can now manage the full Workflow lifecycle locally, including triggering Workflows, listing instances, pausing, resuming, restarting, terminating, and sending events: npx wrangler workflows list --localnpx wrangler workflows trigger my-workflow --localnpx wrangler workflows instances list my-workflow --localnpx wrangler workflows instances pause my-workflow <INSTANCE_ID> --localnpx wrangler workflows instances send-event my-workflow <INSTANCE_ID> --type my-event --local All commands also accept --port to target a specific wrangler dev session (defaults to 8787). For more information, refer to Workflows local development.

发布日期:2026-04-01 · 来源:Cloudflare
Published: 2026-04-01 · Source: Cloudflare
BackendBackendDXDX

加速 AI 下一阶段的发展

Accelerating the next phase of AI

OpenAI 获得 1220 亿美元新融资,用于扩大全球前沿 AI、投入下一代算力,并满足 ChatGPT、Codex 和企业 AI 的增长需求。

OpenAI raises $122 billion in new funding to expand frontier AI globally, invest in next-generation compute, and meet growing demand for ChatGPT, Codex, and enterprise AI.

发布日期:2026-03-31 · 来源:OpenAI
Published: 2026-03-31 · Source: OpenAI
AIAI

Copilot Applied Science 中的 Agent-driven development

Agent-driven development in Copilot Applied Science

我用 coding agents 去构建 agent,让它们自动化了我工作的一部分。这里是我在与 coding agents 更高效协作方面学到的东西。原文最早发表于 The GitHub Blog。

I used coding agents to build agents that automated part of my job. Here's what I learned about working better with coding agents. The post Agent-driven development in Copilot Applied Science appeared first on The GitHub Blog.

发布日期:2026-03-31 · 来源:GitHub Blog
Published: 2026-03-31 · Source: GitHub Blog
AIAIAI AgentAI Agent

推出 Programmable Flow Protection:为 Magic Transit 客户提供自定义 DDoS 缓解逻辑

Introducing Programmable Flow Protection: custom DDoS mitigation logic for Magic Transit customers

Magic Transit 客户现在可以自己编写 DDoS 缓解逻辑,并把它部署到 Cloudflare 的全球网络中。这让针对自定义或专有 UDP 协议的精确、有状态缓解成为可能。

2026-03-31Magic Transit customers can now program their own DDoS mitigation logic and deploy it across Cloudflare’s global network. This enables precise, stateful mitigation for custom and proprietary UDP protocols....Continue reading »Ani…

发布日期:2026-03-31 · 来源:Cloudflare Blog
Published: 2026-03-31 · Source: Cloudflare Blog

Workers - Workers 中新增 RFC 9440 mTLS 证书字段

Workers - New RFC 9440 mTLS certificate fields in Workers

Workers 中的 request.cf.tlsClientAuth 新增了 4 个字段,用于携带 mutual TLS 客户端证书及其链,采用 RFC 9440 格式。这样 Worker 就可以不经过额外解析或编码,直接把客户端证书转发给 origin。

Four new fields are now available on request.cf.tlsClientAuth in Workers for requests that include a mutual TLS (mTLS) client certificate. These fields encode the client certificate and its intermediate chain in RFC 9440 format — the same standard format used by the Client-Cert and Client-Cert-Chain HTTP headers — so your Worker can forward them directly to your origin without any custom parsing or encoding logic. New fields FieldTypeDescriptioncertRFC9440StringThe client leaf certificate in RFC 9440 format (:base64-DER:). Empty if no client certificate was presented.certRFC9440TooLargeBooleantrue if the leaf certificate exceeded 10 KB and was omitted from certRFC9440.certChainRFC9440StringThe intermediate certificate chain in RFC 9440 format as a comma-separated list. Empty if no intermediates were sent or if the chain exceeded 16 KB.certChainRFC9440TooLargeBooleantrue if the intermediate chain exceeded 16 KB and was omitted from certChainRFC9440. Example: forwarding client certificate headers to your origin export default { async fetch(request) { const tls = request.cf.tlsClientAuth; // Only forward if cert was verified and chain is complete if (!tls || !tls.certVerified || tls.certRevoked || tls.certChainRFC9440TooLarge) { return new Response("Unauthorized", { status: 401 }); } const headers = new Headers(request.headers); headers.set("Client-Cert", tls.certRFC9440); headers.set("Client-Cert-Chain", tls.certChainRFC9440); return fetch(new Request(request, { headers })); },}; For more information, refer to Client certificate variables and Mutual TLS authentication.

发布日期:2026-03-27 · 来源:Cloudflare
Published: 2026-03-27 · Source: Cloudflare
SecuritySecurity

February Release Spotlight

February Release Spotlight

这是一组 OpenRouter 的发布专题汇总,包括 Auto Exacto、2 月 17 日和 19 日的故障回顾、1 月发布专题,以及 NeMo Data Designer 等相关内容。

Auto Exacto: Adaptive Quality Routing, On by DefaultMarch 12, 2026OpenRouter Outages on February 17 and 19, 2026February 20, 2026January Release SpotlightJanuary 9, 2026Distillable Models and Synthetic Data Pipelines with NeMo Data Designe…

发布日期:2026-03-12 · 来源:OpenRouter
Published: 2026-03-12 · Source: OpenRouter

使用 Microsoft Agent Framework、Microsoft Foundry、MCP 和 Aspire 构建一个真实世界示例

Build a real-world example with Microsoft Agent Framework, Microsoft Foundry, MCP and Aspire

构建 AI agent 已经越来越容易,但把它作为真实应用的一部分、配上多个服务、持久状态和生产基础设施来部署,才是复杂之处。文章展示了一个既能在本地机器上运行、也能以 cloud-native 方式上云的真实示例。

Building AI agents is getting easier. Deploying them as part of a real application, with multiple services, persistent state, and production infrastructure, is where things get complicated. Developers from the .NET community have requested whether a real-world example that shows running on local machine as well as on the cloud in a cloud-native way. We’ve […] The post Build a real-world example with Microsoft Agent Framework, Microsoft Foundry, MCP and Aspire appeared first on Microsoft for Developers.

发布日期:2026-03-09 · 来源:Microsoft DevBlogs
Published: 2026-03-09 · Source: Microsoft DevBlogs
DevOpsDevOpsAIAIAI AgentAI AgentCloudCloud

Boost Training Goodput:Continuous Checkpointing 如何优化 Orbax 和 MaxText 的可靠性

Boost Training Goodput: How Continuous Checkpointing Optimizes Reliability in Orbax and MaxText

Orbax 和 MaxText 新引入的 continuous checkpointing 功能,旨在在可靠性和性能之间取得更好的平衡。它不是固定频率定时保存,而是等上一次保存成功完成后再异步启动下一次,从而最大化 I/O 带宽并降低故障风险。

The newly introduced continuous checkpointing feature in Orbax and MaxText is designed to optimize the balance between reliability and performance during model training, addressing issues with conventional fixed-frequency checkpointing. Unlike fixed intervals—which can either compromise reliability or bottleneck performance—continuous checkpointing maximizes I/O bandwidth and minimizes failure risk by asynchronously initiating a new save operation only after the previous one successfully completes. Benchmarks demonstrate that this approach significantly reduces checkpoint intervals and results in substantial resource conservation, especially in large-scale training jobs where mean-time-between-failure (MTBF) is short.

发布日期:2026-03-31 · 来源:Google Developers
Published: 2026-03-31 · Source: Google Developers
PerformancePerformance

ElevenLabs 与 Deloitte 合作,提升客户体验

ElevenLabs and Deloitte partner to transform customer experience

ElevenLabs 与 Deloitte 达成合作,把 ElevenLabs 的 Agents 平台与 Deloitte 的行业经验结合起来,帮助企业部署全渠道 agent。

ElevenLabs and Deloitte partner to transform customer experience Strategic partnership combines ElevenLabs’ Agents platform with Deloitte’s industry expertise to help enterprises deploy omnichannel agents

发布日期:2026-03-31 · 来源:ElevenLabs
Published: 2026-03-31 · Source: ElevenLabs
DevOpsDevOpsAI AgentAI Agent

科技新闻 (8)

Tech News (8)

消息称 AT&T 上周同意了一项最高 20 亿美元的协议,用于升级商务部运营的 FirstNet 紧急蜂窝网络

Sources: AT&T agreed last week to a deal worth up to $2B to upgrade the FirstNet emergency cellular network it runs for the Commerce Department (Patience Haggin/Wall Street Journal)

消息称 AT&T 上周同意了一项最高 20 亿美元的协议,用于升级商务部运营的 FirstNet 紧急蜂窝网络。商务部长 Howard Lutnick 曾和 AT&T CEO 一起敲定 FirstNet 项目调整。

Patience Haggin / Wall Street Journal: Sources: AT&T agreed last week to a deal worth up to $2B to upgrade the FirstNet emergency cellular network it runs for the Commerce Department — Commerce Secretary Howard Lutnick hashed out FirstNet program changes with AT&T CEO — AT&T agreed to a deal worth up to $2 billion …

发布日期:2026-03-31 · 来源:Techmeme
Published: 2026-03-31 · Source: Techmeme
AIAI

PyPI 供应链攻击入侵 LiteLLM,导致敏感信息被外泄

PyPI Supply Chain Attack Compromises LiteLLM, Enabling the Exfiltration of Sensitive Information

Sergio De Simone

Discovered by FutureSearch researcher Callum McMahon, a supply chain attack against LiteLLM on PyPI resulted in over 40 thousand downloads of a compromised version that installed a malicious payload capable of harvesting and exfiltrating sensitive information. LiteLLM is downloaded roughly 3 million times per day. By Sergio De Simone

发布日期:2026-03-31 · 来源:InfoQ
Published: 2026-03-31 · Source: InfoQ

写给参议员 Ed Markey 的信:六家自动驾驶公司说远程助手并不会直接控制车辆;Tesla 说它们的操作员被允许这么做

Letters to Sen. Ed Markey: six autonomous vehicle companies say remote assistants don't directly control vehicles; Tesla says its operators are allowed to do so (Aarian Marshall/Wired)

写给参议员 Ed Markey 的信显示,六家自动驾驶公司都说远程助手不会直接控制车辆;Tesla 则表示它们的操作员被允许这么做。电动车厂商称这种情况很少发生,而且速度低于 10 mph。

Aarian Marshall / Wired: Letters to Sen. Ed Markey: six autonomous vehicle companies say remote assistants don't directly control vehicles; Tesla says its operators are allowed to do so — The electric-car maker says it happens rarely and at speeds below 10 mph. But the disclosure—in response to a US senator's questions …

发布日期:2026-03-31 · 来源:Techmeme
Published: 2026-03-31 · Source: Techmeme
AIAI

Agentic AI 模式正在强化工程纪律

Agentic AI Patterns Reinforce Engineering Discipline

Paul Duvall 最近介绍了他整理的一套面向 AI 辅助开发的工程模式,以及能把交付质量拉高的实践。相关讨论还指出,行业正在转向 remix 和 specification-driven development。

Paul Duvall recently discussed his library of engineering patterns for AI assisted development and practices that ground high quality delivery. Related discussions from Paul Stack and Gergely Orosz highlight a shift toward remixing and specification driven development. By Rafiq Gemmail

发布日期:2026-03-31 · 来源:InfoQ
Published: 2026-03-31 · Source: InfoQ
AIAI

消息称 Microsoft 正在与 Chevron 和投资基金 Engine No. 1 商谈在德州建设一座最高 70 亿美元的发电厂,初期可提供 2.5 GW 电力

Sources: Microsoft is in talks with Chevron and investment fund Engine No. 1 over a $7B Texas power plant that would initially generate 2.5 GW of electricity (Bloomberg)

消息称 Microsoft 正与 Chevron 和投资基金 Engine No. 1 商谈一项长期协议,用于支撑一座价值 70 亿美元的德州发电厂,初期可提供 2.5 GW 电力。

Bloomberg: Sources: Microsoft is in talks with Chevron and investment fund Engine No. 1 over a $7B Texas power plant that would initially generate 2.5 GW of electricity — Microsoft Corp. is in exclusive talks with Chevron Corp. and investment fund Engine No. 1 over a long-term deal that would underpin …

发布日期:2026-03-31 · 来源:Techmeme
Published: 2026-03-31 · Source: Techmeme

演讲:你不知道自己正在做出的隐藏决策

Presentation: Hidden Decisions You Don’t Know You’re Making

Dan Fike 和 Shawna Martell 解释了“隐藏决策”如何悄悄塑造软件架构和工程文化。他们通过分析 CI/CD 瓶颈、平台复杂性和错位指标背后的隐性默认值,分享了如何更有意图地领导团队和职业路径。

Dan Fike and Shawna Martell explain how "hidden decisions" silently shape software architecture and engineering culture. By examining the invisible defaults behind CI/CD bottlenecks, platform complexity, and misaligned metrics, they share frameworks for leading with intentionality. Learn to identify the "decision behind the decision" to better incentivize high-performing teams and careers. By Shawna Martell, Dan Fike

发布日期:2026-03-31 · 来源:InfoQ
Published: 2026-03-31 · Source: InfoQ
DevOpsDevOpsArchitectureArchitecture

消息称,攻击者利用最近 Trivy 供应链攻击中窃取的凭证,入侵 Cisco 内部开发环境并盗走源码

Sources: threat actors stole Cisco source code by breaching its internal development environment using credentials from a recent Trivy supply chain attack (Lawrence Abrams/BleepingComputer)

消息称,攻击者利用最近 Trivy 供应链攻击中窃取的凭证,入侵 Cisco 内部开发环境并盗走源码。Cisco 已经遭遇网络攻击。

Lawrence Abrams / BleepingComputer: Sources: threat actors stole Cisco source code by breaching its internal development environment using credentials from a recent Trivy supply chain attack — Cisco has suffered a cyberattack after threat actors used stolen credentials from the recent Trivy supply chain attack to breach …

发布日期:2026-03-31 · 来源:Techmeme
Published: 2026-03-31 · Source: Techmeme

Kubernetes 自动扩缩容要求把观测重点从厂商工具转向新的观测实践

Kubernetes Autoscaling Demands New Observability Focus Beyond Vendor Tooling

随着 Karpenter 这类 Kubernetes 自动扩缩容工具的采用加速,一套平台无关的新观测实践正在形成,它把关注点从传统基础设施指标转向更深入的资源供给行为、调度延迟和成本效率。

As adoption of Kubernetes autoscalers like Karpenter accelerates, a new set of platform-agnostic observability practices is emerging, shifting focus from traditional infrastructure metrics to deeper insights into provisioning behavior, scheduling latency, and cost efficiency. By Craig Risi

发布日期:2026-03-31 · 来源:InfoQ
Published: 2026-03-31 · Source: InfoQ
DevOpsDevOpsPerformancePerformanceDXDX

技术阅读 (9)

Technical Reads (9)

编码团队标准

Encoding Team Standards

版本化、评审、共享,把团队的隐性知识编码成可执行指令,让无论是谁坐在键盘前,输出质量都能保持一致。

<p>AI coding assistants respond to whoever is prompting, and the quality of what they produce depends on how well the prompter articulates team standards. <b class = 'author'>Rahul Garg</b> proposes treating the instructions that govern AI interactions (generation, refactoring, security, review) as infrastructure: versioned, reviewed, and shared artifacts that encode tacit team knowledge into executable instructions, making quality consistent regardless of who is at the keyboard.</p> <p><a class = 'more' href = 'https://martinfowler.com/articles/reduce-friction-ai/encoding-team-standards.html'>more…</a></p>

发布日期:2026-03-31 · 来源:Martin Fowler
Published: 2026-03-31 · Source: Martin Fowler
DevOpsDevOpsSecuritySecurityAIAIArchitectureArchitecture

从自研到开源:用 Prometheus 做可扩展网络探测,并为 HTTP/3 做准备

From Custom to Open: Scalable Network Probing and HTTP/3 Readiness with Prometheus

Slack 现在同时使用内部和外部的混合方式做网络测量,既测 AWS 可用区之间的流量,也测公网到 Slack 基础设施的流量。文章讲述了他们如何从商业 SaaS 和自研工具走向更可扩展的 Prometheus 探测方案,并为 HTTP/3 做准备。

The Problem: Legacy Tooling and Its Limitations Currently, Slack utilizes a hybrid approach to network measurement, incorporating both internal (such as traffic between AWS Availability Zones) and external (monitoring traffic from the public internet into Slack’s infrastructure) solutions. These tools comprise a combination of commercial SaaS offerings and custom-built network testing solutions developed by our…

发布日期:2026-03-31 · 来源:Slack Engineering
Published: 2026-03-31 · Source: Slack Engineering
TestingTestingDevOpsDevOpsDXDX

Cloudflare Client-Side Security:更聪明的检测,现在向所有人开放

Cloudflare Client-Side Security: smarter detection, now open to everyone

Cloudflare 正在把高级 Client-Side Security 工具开放给所有用户,并加入新的级联式 AI 检测系统。通过结合图神经网络和 LLM,他们把误报降低了高达 200 倍,同时还能抓到更复杂的零日攻击。

We are opening our advanced Client-Side Security tools to all users, featuring a new cascading AI detection system. By combining graph neural networks and LLMs, we've reduced false positives by up to 200x while catching sophisticated zero-day exploits.

发布日期:2026-03-30 · 来源:Cloudflare Blog
Published: 2026-03-30 · Source: Cloudflare Blog
SecuritySecurityAIAI

没有真相支撑的产品,悄悄走向死亡

The Quiet Death of Products Built Without Ground Truth

让软件不至于失去价值的办法其实很简单,但也很容易被忽视: 始终忠于你为之构建产品的人。

The surest way to keep software from becoming valueless is deceptively simple — stay true to the people you are building it for.Continue reading on Medium »

发布日期:2026-03-31 · 来源:Medium Software Engineering
Published: 2026-03-31 · Source: Medium Software Engineering
EssayEssay

会设计的设计经理,为什么更容易做出更好的决策

Why design managers who design make better decisions

这场对话发生在 Canvs 的两位高级设计经理之间,他们讨论了要让产品保持高质量,究竟需要怎样的知识和纪律。

This conversation is between 2 Senior Design Managers at Canvs. They talk about the knowledge & discipline it takes to keep products…Continue reading on Bootcamp »

发布日期:2026-03-31 · 来源:Medium UI Design
Published: 2026-03-31 · Source: Medium UI Design
DesignDesignEssayEssay

无需 API 也能本地运行的开源 AI 编程模型

Open Source AI Coding Models You Can Run Without APIs

软件开发正在变化。到了 2026 年初,隐私与性能之间的历史性取舍已经大幅改变。文章介绍了可以离线、自托管或本地运行的开源 AI 编程模型,适合不想把代码和上下文发到 API 的场景。

The landscape of software development is shifting. In early 2026, the historical trade-off between privacy and performance has largely…Continue reading on Medium »

发布日期:2026-03-31 · 来源:Medium Web Development
Published: 2026-03-31 · Source: Medium Web Development
PerformancePerformanceAIAIOpen SourceOpen SourceEssayEssay

Python 3.14+ 里,类型边界/约束能不能存到全局变量里,再拿去 generic function 定义里用?

Can type bounds/constraints be stored in global variables and later used in generic function definitions with Python 3.14+?

有些写法语法上能跑,但并不代表它们在类型系统里是真正“靠谱”的。作者把 type alias 和 runtime tuple 的职责区分开,强调类型注解和运行时校验最好分开处理。

"I would love to address these questions publicly because the snippets used could be very misleading. Source - https://stackoverflow.com/q/79917832 Posted by Rodrigo Torres Retrieved 2026-03-31, License - CC BY-SA 4.0 # in types.py type Scalar = bool | int | str |float SCALAR_TYPES = (bool, int, str, float) Yes, it works, but only part of what you’re doing is actually “real” typing, and that distinction matters. Here is a clean breakdown on your snippest What's really solid and correct This is fully valid and aligns with modern typing (PEP 695 style): type Scalar = bool | int | str | float` def extract_scalarT: Scalar -> T: ... Kindly note that Scalar is a proper type alias and T: Scalar is a bound That is my recommended approach Let look at What works, but is a bit misleading SCALAR_TYPES = (bool, int, str, float) def extract_scalarT: SCALAR_TYPES -> T: ... Yes, this runs. Yes, type checkers may accept it. But here’s the catch: SCALAR_TYPES is just a runtime tuple It is not a type-level construct PEP 695 expects literal tuples for constraints, not variables So even though Python 3.14 (with lazy annotations from PEP 649) allows it syntactically, you’re relying on behavior that is: not guaranteed by the typing spec potentially inconsistent across tools easy to break in future updates So, In plain terms: you’re mixing runtime values with type system intent Practical advice (what you should actually do) You’re thinking in the right direction—reuse and centralization is good. Just split responsibilities cleanly: # types.py type Scalar = bool | int | str | float SCALAR_TYPES = (bool, int, str, float) Then: # typing side def extract_scalarT: Scalar -> T: ... # runtime validation side if not isinstance(value, SCALAR_TYPES): ... Kindly use: type aliases for typing and tuples for runtime checks Don’t try to make one do both jobs.

发布日期:2026-03-31 · 来源:DEV Community
Published: 2026-03-31 · Source: DEV Community

K501 : Quantum Header (QH) - 确定性身份、状态编码与编译级实现

K501 : Quantum Header (QH) - Deterministic Identity, State Encoding, and Compile-Level Realization

一篇把 “Quantum Header” 描述成确定性、可追加、可重建的信息结构的技术宣言。文章用 2-bit 状态系统、QH56 / QH256 的状态空间、C 语言实现和 JSON 执行描述,强调把身份、状态和控制编码成可组合的结构。

K501 : Quantum Header (QH) Deterministic Identity, State Encoding, and Compile-Level Realization ⸻ 0. Canonical Header SYSTEM: K501 Information Space DOCUMENT: Quantum Header (QH) Specification VERSION: v0.5 (DEV.to Technical Edition) MODE: Deterministic / Append-only AUTHOR: Patrick R. Miller (Iinkognit0) ORCID: 0009-0005-5125-9711 TIMESTAMP: 2026-03-31T19:02:23Z UNIX: 1774983743 LICENSE: MIT (code) + CC BY 4.0 (text) SOURCE: GitHub: https://github.com/k501is GitHub: https://github.com/Iinkognit0 Zenodo: https://zenodo.org/records/18697454 Dev.to: https://dev.to/k501is HASH_SCOPE: Conceptual (pre-freeze) ⸻ 1. Problem Statement Modern systems treat information as mutable. overwrite → loss mutation → ambiguity state → non-reproducible K501 enforces: append-only deterministic fully reconstructable The Quantum Header (QH) is the minimal unit enabling this. ⸻ 2. Formal Definition QH := deterministic bit-structure Frame := (QH, Payload) Properties: ∀ input x: QH(x) = constant ∀ t: Frame(t+1) = Frame(t) + Δ ⸻ 3. State Logic (2-bit System) Each logical cell: S ∈ {0,1}^2 Mapping: Bits State 00 False 01 True 10 Unknown 11 Guard ⸻ 4. State Space Mathematics General: |S| = 4 Total States = 4^N Equivalent: 4^N = (2^2)^N = 2^(2N) ⸻ 5. QH56 Bits = 56 Cells = 28 Total States = 4^28 = 2^56 ≈ 7.205759 × 10^16 ⸻ 6. QH256 Bits = 256 Cells = 128 Total States = 4^128 = 2^256 ≈ 1.1579 × 10^77 ⸻ 7. Cosmological Comparison Atoms (observable universe) ≈ 10^80 QH256 states ≈ 10^77 Extended: 4^256 = 2^512 ≈ 10^154 Conclusion: Structured state space scales faster than physical matter ⸻ 8. Structural Interpretation Finite encoding → exponential state expansion The QH defines: • address space • logical constraints • identity layer Not: • storage of all states • interpretation ⸻ 9. Header Construction Model Abstract: QH = f(input) = deterministic mapping Example decomposition: QH := ID ⊕ STATE ⊕ CONTROL Where: • ID → identity space • STATE → logical encoding • CONTROL → constraints (Guard / flags) ⸻ 10. Minimal Implementation (C) include typedef uint64_t QH56; QH56 create_qh56(uint32_t id, uint16_t state, uint8_t control) { return ((uint64_t)id << 24) | ((uint64_t)state << 8) | (uint64_t)control; } QH256: include typedef struct { uint64_t a; uint64_t b; uint64_t c; uint64_t d; } QH256; ⸻ 11. Compile & Run (Executable Example) File: qh.c include include typedef uint64_t QH56; QH56 create_qh56(uint32_t id, uint16_t state, uint8_t control) { return ((uint64_t)id << 24) | ((uint64_t)state << 8) | (uint64_t)control; } int main() { QH56 qh = create_qh56(0xABCDEF, 0x1234, 0xFF); printf("QH56: %llu\n", qh); return 0; } Compile gcc qh.c -o qh Run ./qh ⸻ 12. JSON Execution Descriptor (portable) { "name": "K501_QH56_Build", "language": "C", "source_file": "qh.c", "compile": "gcc qh.c -o qh", "run": "./qh", "output": "QH56 numeric representation", "properties": { "deterministic": true, "append_only": true, "no_mutation": true } } ⸻ 13. Deterministic Guarantee ∀ x: QH(x) = QH(x) ∀ x ≠ y: QH(x) ≠ QH(y) (ideal mapping) ⸻ 14. System Role Pipeline: Input → Mapping → QH → Frame → Append ⸻ 15. Unified View QH56 → efficient local addressing QH256 → global identity space Both derive from: 4^N state expansion ⸻ 16. Core Statement Quantum Header = deterministic projection of input into an exponentially expanding state space ⸻ 17. References & Attribution • GitHub: https://github.com/k501is • Author: https://github.com/iinkognit0 • Zenodo: https://zenodo.org/records/18697454 • Dev.to: https://dev.to/k501is • ORCID: https://orcid.org/0009-0005-5125-9711 • Source: https://iinkognit0.de ⸻ Status DETERMINISTIC APPEND-ONLY REPRODUCIBLE CANON-ALIGNED No overwrite. No mutation. Only extension. :::

发布日期:2026-03-31 · 来源:DEV Community
Published: 2026-03-31 · Source: DEV Community

社区信号 (10)

Community Signals (10)

[D] 为什么 Muon 只被用于 Transformers?

[D] Howcome Muon is only being used for Transformers?

Muon 已经迅速进入 LLM 训练,但在其他场景里却几乎没人提。作者好奇它为什么还没有在 ConvNet 等其他领域广泛采用。

Muon has quickly been adopted in LLM training, yet we don't see it being talked about in other contexts. Searches for Muon on ConvNets turn up basically no results, despite its announcement including a new training speed record for Cifar-1…

发布日期:2026-03-31 · 来源:Reddit
Published: 2026-03-31 · Source: Reddit
AIAILLMLLM

最近的供应链攻击之后,你是怎么处理 PyPI 依赖卫生问题的?

What is your approach to PyPI dependency hygiene after recent supply chain attacks?

telnyx 这次被入侵提醒我们,PyPI 的信任不是理所当然的。作者想看看其他 Python 开发者在实际工作中到底怎么处理这类风险。

The telnyx compromise was a good reminder that PyPI trust is not a given. Curious how other Python developers are actually handling this in practice, not just in theory. I use version pinning in most of my projects but I don't have a consi…

发布日期:2026-03-31 · 来源:Reddit
Published: 2026-03-31 · Source: Reddit

Mark lutz 还是 Eric lutz?

Mark lutz or Eric lutz?

发帖者原本想买一本学编程的书,结果被 Google 搞得有点混乱,想确认究竟是哪一本。

hey everyone. I wasn't sure if this should have been marked as a resource or discussion, but I was trying to buy a good book to learn coding and I came across Mark matthes and Eric Lutz's "Python crash course". but Google is telling me the…

发布日期:2026-03-31 · 来源:Reddit
Published: 2026-03-31 · Source: Reddit