Submission timeline
2007–2026One slot for every year since HN launched. Height is that year's peak points; orange marks a 100+ point or 50+ comment breakout. Select a bar to open its strongest thread.
First comments on top threads
HN comment orderFun stuff , thanks for posting it. I've been getting back into C lately, iterating through implementing common algorithms from scratch. In spite of the kinds of easy to make mistakes that are highlighted on the site, I'm finding it to be a lot of fun - not having my hand held by frameworks that try to stop me from shooting myself in a foot is refreshing and brings back that feeling of "I can build whatever the hell I…
> Write a C program which prints Hello World! without using a semicolon Here's one way, cheating a bit by abusing the definition of "a C program which prints": /tmp$ gcc hw.c hw.c:1:2: warning: #warning Hello world! [-Wcpp] #warning Hello world! A more serious solution, though: /tmp$ cat hw.c #include <stdio.h> void main(void) { if (puts("Hello world!")) {} } /tmp$ gcc hw.c /tmp$ ./a.out Hello world!
The first top-level comment from each of the four biggest threads, in HN’s own order. Excerpts are shortened; open a comment for full context.
- Breakout years
- 2
- Total points
- 327
- Total comments
- 117
100+ points or 50+ comments
reference only — not used in Hall rules or ranking
reference only — not used in Hall rules or ranking
Every submission
| Date | Title as submitted | By | Points | Comments |
|---|---|---|---|---|
| 2014-10-10 | Interesting C Puzzles | GregBuchholz | 1 | 0 |
| 2015-06-23 | C PuzzlesFirst breakout | brown-dragon | 101 | 24 |
| 2016-11-10 | C puzzlesBest thread · Latest 20+ point return | rbanffy | 225 | 93 |