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

推荐订阅源

G
Google Developers Blog
D
Docker
Stack Overflow Blog
Stack Overflow Blog
GbyAI
GbyAI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Google DeepMind News
Google DeepMind News
M
MIT News - Artificial intelligence
H
Help Net Security
T
Tailwind CSS Blog
Engineering at Meta
Engineering at Meta
L
LangChain Blog
MongoDB | Blog
MongoDB | Blog
腾讯CDC
H
Hackread – Cybersecurity News, Data Breaches, AI and More
S
SegmentFault 最新的问题
博客园 - 司徒正美
C
Check Point Blog
B
Blog
Y
Y Combinator Blog
Microsoft Azure Blog
Microsoft Azure Blog
P
Proofpoint News Feed
F
Fortinet All Blogs
美团技术团队
D
DataBreaches.Net

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…