Live data from Hacker News

Ask HN: What do you do while your code compiles?

news.ycombinator.com

1–10 of 28 posts

Re: Ask HN: What do you do while your code compiles?

#4
Figure out why it's taking so long to compile and what can be done to either shorten it or automate the build and testing process so I'm not waiting for it anymore.

Move things to unit tests with smaller compilation units (so I can compile foo.cpp and a handful of other dependencies, but not the full system) so, other than for deployment or integration testing, my feedback loop is much shorter.

Or if it can't be made shorter, work on another project or read something (presently non-practical/actionable, Weapons of Math Destruction, but typically more practically technically oriented).

Post reply on HN