惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

J
Java Code Geeks
博客园 - 司徒正美
博客园 - 【当耐特】
爱范儿
爱范儿
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
IT之家
IT之家
人人都是产品经理
人人都是产品经理
雷峰网
雷峰网
酷 壳 – CoolShell
酷 壳 – CoolShell
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
大猫的无限游戏
大猫的无限游戏
月光博客
月光博客
宝玉的分享
宝玉的分享
V
V2EX
S
SegmentFault 最新的问题
V
Visual Studio Blog
阮一峰的网络日志
阮一峰的网络日志
Martin Fowler
Martin Fowler
Jina AI
Jina AI
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园_首页
L
LangChain Blog
D
Docker
腾讯CDC

Computer Things

New Post: A Crash Course in Predicate Logic Vim wants you to control, VSCode wants you to consume Logic for Programmers is Done I'm still alive Logic for Programmers v0.15, Livecoding Nontrailing separators do not spark joy Logic for Programmers extra credits Knowing about things is cheaper than knowing things Assumptions weaken properties Points are a weird and inconsistent unit of measure New Logic for Programmers (and the future of this newsletter) Illegal vs Unwanted States A sufficiently comprehensive spec is not (necessarily) code April Cools Post: New York vs Chicago Pizza Choose Boring Technology and Innovative Practices LLMs are bad at vibing specifications Free Books New Blog Post: Some Silly Z3 Scripts I Wrote Stream of Consciousness Driven Development Proving What's Possible Logic for Programmers New Release and Next Steps Refinement without Specification My Gripes with Prolog The Liskov Substitution Principle does more than you think Some Fun Software Facts One more week to the Logic for Programmers Food Drive Get Logic for Programmers 50% off & Support Chicago Foodbanks I'm taking a break Modal editing is a weird historical contingency we have through sheer happenstance The Phase Change
People get confused when language implementations break l...
Hillel Wayne · 2026-04-22 · via Computer Things
Take the following Python program: # x = 1, y = 2 x = 0 y = x print ([ x , y ]) It'll print [0, 0] . If we sw…