Instant coffee should come with a health warning, and a special number to call in case you accidentally get some in your mouth. I found this out when I asked on Twitter, “is there enough caffeine in one jar of coffee to kill me?”. As is often the way with the lazyweb, my friends were only too eager to help:
andy47: @alang: Only one way to find out
carlfish: @alang: According to Wikipedia, the LD50 of caffeine in humans is approx. 150–200mg per kg of body mass, or between 80 and 100 cups of coffee.
tgchen: @alang: only 100 cups…..go for broke.
benaskins: @alang: only one way to find out
kazaskins: @alang – using a dessert spoon or a tea spoon? One would be a slower death than the other.
carlfish: @alang: (This used to be an FAQ on alt.sysadmin.recovery)
josephgrossberg: Alan: Depends on your body weight and liver.
So there you have it. Eat a large jar of Moccona and you’re likely to die of a heart attack.
Thanks to Charles and Joe for the useful information. Thanks to everyone else for your kind thoughts. I hope I can repay you some day.
PS: Here’s a picture from Wikipedia, showing why caffeine is bad for spiders.
Andrew reckons that life is a like a metaphor. Perhaps, but I reckon life is a simile.
The last paragraph of my previous post wasn’t particularly clear. Here’s a step-by-step guide to modelling the Sun’s direction at sunset, using only a ball, a lamp, and a texta.
If that doesn’t make sense, please drop me a line. I will come and explain it to you, complete with ball, texta, and lamp for the low, low price of one soft drink.
Julian has an astronomical puzzle. He claimed:
If you are located further South than the Tropic of Capricorn, then the Sun will never be directly overhead, and furthermore will only appear in the Northern half of the sky.
I predicted that – this far South – the Sun would always set somewhat North of due West.
Makes sense to me. But then Julian’s father observed, in direct contraction to Julian’s well-constructed argument, that the Sun was setting to the south of west. Interesting.
I searched a bit and found PyEphem, a Python library for calculating the position of heavenly bodies. It is based on a C library and required a bit of huffing and puffing to get it to compile on Windows. I hacked the code just the teeniest bit to get rid compile errors, then ignored several pagefuls of warnings. But it seems to work.
This little script calculates where the Sun sets in late December, 2006, asssuming “this far South” means Sydney airport, or thereabouts:
import ephem # Late December when = ephem.date((2006, 12, 30)) # Driving near Sydney Airport julian = ephem.Observer() julian.date = when julian.lat, julian.long = '-33.932109', '151.1652' # Compute the sun for that day sun = ephem.Sun() sun.compute(julian) # Find where sun set, relative to West deg = ephem.degrees answer = deg(deg(sun.set_az) - deg('270')) print "The sun will set %s degress north of west" % answer
And the answer is:
The sun will set -28:43:55.43 degress north of west
In other words, this script supports Julian’s father’s observation that the sun sets significantly to the south of west this time of year in Sydney. (Assuming, of course, that PyEphem is accurate, that my mangled compile of PyEphem didn’t affect anything serious, and that the above script is bug free.)
For a more concrete confirmation, I’d suggest using a ball as the Earth – rather than a fist – and then put on a lamp at the other end of of the room to represent the Sun. Tilt the ball back on its axis so that the noon day sun falls on the southern end of the ball. Now, look for sunrise and sunset down the side of the ball, and check the direction of the lamp, relative to east and west on the ball.
I was quite enjoying the new Google Reader for a while there. Then it started showing me items I’d already read. Then it started miscalculating the counts on the left hand side. Now it tells me that I am not subscribed to any feeds at all. It’s not normal for Google to just forget stuff is it?
Update: I was being a doofus. See below.
Actually, I think I have an explanation. I blame Simon. I reckon the sudden shift in Internet traffic patterns, caused by billions around the world wanting to check out the new item on Simon’s RSS feed, broke Google.
Update: Just figured it out. It’s quite interesting, in a way. It turns out I had two Google Accounts under different email addresses, and I was signed into Gmail with one account, and Google Reader with the other. I had just assumed they shared a login session, but obviously not. Just to be sure, I deleted the second account, and I am relieved – beyond my ability to express to any non-geek – to learn Google hadn’t lost my feed list.