~10 cans of diet soda per day.
Ask HN: How much coffee do you drink as a programmer?
41–50 of 91 posts
Re: Ask HN: How much coffee do you drink as a programmer?
#42- When I'm traveling or on holidays 0. I travel regularly in countries without coffee culture and jet lag with coffee is a terrific mix.
- In normal day of work around 5 including 2 in the morning.
- In heavy day of work with many meetings around 8. I tend to prefer good technical/design discussions around a coffee instead of endless (useless) PowerPoint session. It's in my experience both more efficient, human and brief.
Re: Ask HN: How much coffee do you drink as a programmer?
#43Zero. Probably an outlier. It doesn't do me anything.
Re: Ask HN: How much coffee do you drink as a programmer?
#44I am happy to be able to sleep.
Re: Ask HN: How much coffee do you drink as a programmer?
#45Re: Ask HN: How much coffee do you drink as a programmer?
#46Re: Ask HN: How much coffee do you drink as a programmer?
#47I don’t drink coffee at all. I don’t get the hype. It makes some people addicted which is scary.
Re: Ask HN: How much coffee do you drink as a programmer?
#48Re: Ask HN: How much coffee do you drink as a programmer?
#49I created a simple Mojolicious webapp, putting data on a SQLite database. I later expanded it to accept/use an "API key" with which I could track my coffee intake, or get how much I drank already and when was my last cup, "simply" by running a simple bash+curl script. The site, instead, displays a neat github-commits-like chart[1] and some recent stats. I have a branch which changes the code to work on Postgres and is deployable on dokku, but I've not yet made the switch to that. I'm still using a mojolicious+sqlite+hypnotoad process running on a cheap VPS.
Since I started tracking my intake, it looks like I drank, on average, 3-4 coffees per day:
sqlite> select (select count(*) from intake)/(select julianday(max(time_t)) - julianday(min(time_t)) from intake);
3.7864677548175
Here in Italy's northern region, the quarantine started region-wide on the 8th of March. sqlite> select (select count(*) from intake where time_t > "2020-03-08")/(select julianday(max(time_t)) - julianday("2020-03-08") from intake);
4.20309898028925
It looks like I'm drinking a bit more coffee than the usual, but surely nowhere as near as my most intake: sqlite> select date(time_t) as ymd, count(*) as cnt from intake group by ymd order by cnt desc limit 5;
2018-05-16|11
2018-03-12|10
2018-05-15|10
2018-02-07|9
2019-06-04|9
Hope it helps! :)Re: Ask HN: How much coffee do you drink as a programmer?
#50~10 cans of diet soda per day.
I'm with ya, it's horrible but gets the job done. Can't stand coffee and tea just takes too long (I do enjoy it though)