For no particularly good reason, I spent a year collecting them. Here, then, are the big heads of 2004.
( --More--( 2%) )
For no particularly good reason, I spent a year collecting them. Here, then, are the big heads of 2004.
( --More--( 2%) )
A policeman saw the couple hugging and kissing in a taxi [...] He took the unidentified man and his Egyptian acquaintance to a police station for questioning. The two "confessed to hugging and kissing inside the taxi," and the man also admitted to being drunk. He was fined $3,270.
The affluent emirate is in the midst of a drive to establish itself as the Gulf's business and leisure hub.
An underground group of fisherman says it has dealt with discrimination from Missouri lawmakers for years.
Noodling is an ancient fishing method in which the fisherman wiggles his or her hand underwater near a bed of fish in hopes that a catfish will bite or, even better, swallow his hand. The fisherman then pulls the catch, which can weigh up to 250 pounds, out of the water.
"I feel like we can win this battle one noodler at a time," the noodler wrote.
There is this sickening reddish spooge rolling down the outside of my windows, and sticking to them in big muddy clots.
"Richard Gross, a geophysicist with NASA's Jet Propulsion Laboratory in California, theorized that a shift of mass toward the Earth's center during the quake on Sunday caused the planet to spin 3 microseconds faster and to tilt about an inch on its axis. When one huge tectonic plate beneath the Indian Ocean was forced below the edge of another 'it had the effect of making the Earth more compact and spinning faster,' Gross said."
Update, 11-Jan-2005: NASA Details Earthquake Effects on the Earth:
The "mean North pole" was shifted by about 2.5 centimeters (1 inch) in the direction of 145 degrees East Longitude. The earthquake also decreased the length of day by 2.68 microseconds.
As in previous years, a few of these were released earlier than 2004, but that is when I discovered them, so I'm allowing a little slack. In only approximate order of favoriteness, here is my year-end wrap-up.
( --More--(14%) )
I heard about this site last year when I read the Wired article about it, but I hadn't gotten around to reading it until yesterday. I got totally sucked in, and read the whole thing in two sittings. It's very entertaining. Short version: heiress runs to escape arranged marriage; launders money, flees private security forces, hangs out with smugglers, blogs.
I started with About the Author then went on to entry #1.
This Esquire article about her gets interesting on page 3 (after he stops cut-and-pasting chat logs and actually arranges an interview.) Warning, the article contains some spoilers, so read the blog first.
The webcast machine at the club loses its mind at least once a week: it appears to run out of memory and crash, but I can't figure out what the culprit is.
The machine is a dual CPU Athlon 2400+ with 1GB RAM and 500MB swap. It's running Fedora Core 3, but I was also experiencing this problem on FC2 and RH9. Memtest86 says the RAM is fine. It's got an Osprey 100 BT848 video capture card and an SB Live EMU10k1 audio card.
I set up a cron job that once a minute captures the output of "top -bn1" and "ps auxwwf" to a file. Here's are a pair of those files as it loses its mind. Note that the load goes from 3.44 to 22.73 in a minute and a half.
I've compared the two files character by character, and I don't see a smoking gun. The differences look quite trivial to me.
So while I was sitting there staring at this, I saw something very intersting happen: "top" was running on the machine's console, and showed 380MB swap available -- and the oom-killer woke up and shot down an xemacs and an httpd.
So, how's that even possible? Does this mean that some process has gone nuts and started leaking wired pages, so that it can't swap at all? Or what?
So, any ideas?
Update, Dec 29: It looks like something is leaking in the kernel; /proc/slabinfo shows the size-256 slab growing to 3,500,000 entries (over 800MB.) Current suspect is the bttv/v4l driver (since one of the things this machine does is run "streamer" to grab a video frame every few seconds.) That would be about 525 leaked allocations per minute, or around 26 leaks per frame.
kernel 2.6.9-1.681_FC3, xawtv-3.81-6.
Update, Jan 12: That was the culprit. This is the fix:
--- ./drivers/media/video/bttv-driver.c.orig 2005-01-11 14:54:15.477911088 -0800
+++ ./drivers/media/video/bttv-driver.c 2005-01-08 13:49:44.000000000 -0800
@@ -2992,6 +2992,9 @@
free_btres(btv,fh,RESOURCE_VBI);
}
+ videobuf_mmap_free(file, &fh->cap);
+ videobuf_mmap_free(file, &fh->vbi);
+
#ifdef VIDIOC_G_PRIORITY
v4l2_prio_close(&btv->prio,&fh->prio);
#endif
--- ./drivers/media/video/video-buf.c.orig 2004-10-18 14:54:08.000000000 -0700
+++ ./drivers/media/video/video-buf.c 2005-01-08 13:50:04.000000000 -0800
@@ -889,6 +889,7 @@
int i;
videobuf_queue_cancel(file,q);
+ videobuf_mmap_free(file, q);
INIT_LIST_HEAD(&q->stream);
for (i = 0; i < VIDEO_MAX_FRAME; i++) {
if (NULL == q->bufs[i])