Live data from Hacker News

At what time of day do famous programmers work?

ivan.bessarabov.com

41–50 of 215 posts

Re: At what time of day do famous programmers work?

#41

TIL who the hell these 'famous' folks are!

Who would you consider famous among currently active programmers that aren’t on this list?

I knew about half of the list (mainly the authors of software I use). I could probably name a few who are equally famous, but not many who are more famous.

edit: I went back and counted. I recognized 4 of 7 names.

Re: At what time of day do famous programmers work?

#42
post #3

Earlier quoted context omitted.

Another issue is that when you travel to a different timezone, you don't necessarily update the timezone of your system.

Aren't most devices configured to adjust automatically these days?

In the blog post it specifies that it uses the Unix timestamp, which doesn't account for timezones.

Re: At what time of day do famous programmers work?

#44

Earlier quoted context omitted.

Aren't most devices configured to adjust automatically these days?

In the blog post it specifies that it uses the Unix timestamp, which doesn't account for timezones.

It's Unix timestamp followed by timezone.

Re: At what time of day do famous programmers work?

#46
It's interesting to me hearing people in the comments talk about committing after hours of work. I instinctively commit after every maybe 30 loc, especially if I feel it has value. I'll sometimes squash them down if the PR turns out particularly noisy. It would be interesting to compare the average size of commits as well I'd imagine.

Re: At what time of day do famous programmers work?

#49
post #25

It's difficult to draw any conclusion since we don't know their work pattern. If you commit at 12 it probably means you were working between 9 and 12, or between 11 and 12 or maybe it's just yesterday's work ? Who knows.

I usually work 9-5 and commit before going home. I might pick it up again at home and commit my changes before I go to sleep, around 11.

According to this study I would be working 5 to 11pm

Re: At what time of day do famous programmers work?

#50
post #26

Earlier quoted context omitted.

git stash save my stuff (deprecated) git stash push -m "my stuff"

What GP wanted was to stash a history of commits, not just the current state of the working tree. `git stash` is fundamentally unable to do that.

That's just called a branch. What GP described was committing all their changes into a single WIP commit.
Post reply on HN