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

推荐订阅源

腾讯CDC
IT之家
IT之家
有赞技术团队
有赞技术团队
WordPress大学
WordPress大学
Apple Machine Learning Research
Apple Machine Learning Research
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
人人都是产品经理
人人都是产品经理
The Cloudflare Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 【当耐特】
V
V2EX
Last Week in AI
Last Week in AI
H
Help Net Security
The GitHub Blog
The GitHub Blog
S
SegmentFault 最新的问题
F
Fortinet All Blogs
I
InfoQ
宝玉的分享
宝玉的分享
A
About on SuperTechFans
MongoDB | Blog
MongoDB | Blog
Microsoft Azure Blog
Microsoft Azure Blog
Blog — PlanetScale
Blog — PlanetScale
B
Blog

HN's home page

Rainbow Query Language | Hacker News Exec into Node via Kubectl An AI native hedge fund The Seven-Action Documentation Model | Hacker News Package Manager for Kubectl Plugins Tongan Castaways | Hacker News Tech overlords plan for conscious AI to conquer the cosmos. What could go wrong? Data Breach Disclosure Lag Is Getting Worse How LLMs Work | Hacker News I Dropped PRDs for Shape Up Go Experiments Explained | Hacker News FCA's Palantir deal could expose UK financial data to Trump's US, critics fear WebXR BCI for Neural-Adaptive Avatar Control in Mixed Reality The first murder conviction via DNA analysis Tom Interviews Theo de Raadt of the OpenBSD Project (2019) [video] Show HN: Replace shell commands with bun shell typescript scripts Quay.io Is Down | Hacker News AI driven analysis of brokerage account fees in the UK Bill Gates Spent Years Crafting His Image. Now It's Cracking Using LLMs to secure source code Wi-Fi 8 in the Lab [video] The household battery revolution that could change energy bills and the world Is Python Becoming Pinyin? | Hacker News Livia – Executive Assistant | Hacker News FindMyPipe – Query Apple Find My from Linux for AI Agents Show HN: Agent skill for creating product launch videos with Remotion RecruitMyself – AI job search copilot for resumes and applications AI coding agents and the erosion of system understanding The 'Resting' Generation and South Korea's Youth Recession AMD Computex 2026: 10 Years of AM4, AM5 Support Through 2029
TimeTimeTime – Clock Equation Game
duneisagoodb · 2026-06-17 · via HN's home page

Hello HN,

I made a small game to formalize what I do when I find myself bored and staring at a clock. Take the time, and make an equation out of it. Highest value equation wins. The first version just used the time, but I expanded it to include the date, and I think it makes for a pretty fun open-ended daily math puzzle.

Some design notes (if you'll indulge me!):

Factorials presented an issue, 0!=1 is pretty important (some times are impossible to solve without this!), but it allows for arbitrarily large equations, which ruins the scoring of the game. To side-step this, the game only allows one ! per equation. This is occasionally frustrating, but it guarantees that the game is always winnable, while not being trivial.

There are a few quality of life features, many of them relating to parens. When you place a paren, the matching paren is automatically picked up. When you remove one, the matching one is removed. The parens use rainbow brackets, and remembers the order that they were placed in, so the colors don't shift unexpectedly. Symbol placement is limited to "legal" spaces; sqrt( can never be placed to the right of the rightmost digit, for instance.

The scoring system took a few iterations to get right, initially I wanted to reward players for using as few symbols as possible (golf-style), but this was difficult to communicate and made points more abstract. Collapsing the game down to score = value makes for a system which is much more intuitive.

Finally, I added a wordle-like "share" feature, which uses clocks to show what percentile your answer is in.

I think that my score on today's daily is impossible to beat.