The quest for a nice Linux CD player application
Why is it so hard to find a decent CD player on a modern Linux system?It's not that I have particularly demanding requirements; all I reallyneed is something reliable that does CDDB lookups, ejects the CDs whenthey're done playing, and that will show me the total time remaining inas well as elapsed time in the track. (Other features would be nice butare not as important.)
(Technically, I also need a CD player program that willdo direct digital playback, since
A classical Unix tape gotcha
Here's a classical Unix tape gotcha:
mt -f /dev/st0 fsf 5
If you're lucky when you make this mistake, you were fsf 'ing thetape to read from it, and it is merely embarrassing and time-wasting.
The difference between normal and no-rewind tape devices is that onerewinds the tape when you use it and the other doesn't. More precisely,the tape is rewound when the tape device is closed for the last time(usually as the
Why I don't file bug reports very often
I just finished filing Fedora Core Bugzilla #217080 . Betweendoing research to see if this was already a solved or known problem,gathering all the information, and actually writing everything down,it probably took me around three hours. (And I already have a Red HatBugzilla account and know how to use Bugzilla, or it would have takenlonger.)
This isn't particularly atypical; writing even decent bug reports issimply a lot of work, much of it tedious and/or
Why ssh validates host keys using the exact name you supplied
One of the little things that ssh does is that it checks and maintainshost keys using exactly and only the name you used on the command line;it doesn't canonicalize the name. (Well, not much; these days it willalso try the IP address that the name resolves to.)
The problem around here is that the names of machines can be specifiedin all sorts of different ways, because of domain search paths; oftenwe have bare name, bare name plus the subdomain, and then two
A small script: bsearch-nums
Sometimes I write little scripts partly in order toplay around with a command I haven't used before. Such is the case withtoday's script, which I have unimaginatively called bsearch-nums . Hereit is:
#!/bin/sh# usage: bsearch-nums START ENDlo=$1; hi=$2while [ $lo -lt $hi ]; do mid=`echo $lo $hi +2/p | dc` echo "try: $mid"
A DiskSuite annoyance: metastat
In the traditional illustrated form:
; metastat fs5/d40
metastat: sandiego.cs: fs5: set name is inconsistent
Almost all DiskSuite commands that deal with disk sets will accept fsN/dN to specify the set and the disk at once, and metastat itselfproduces output in this form. But metastat refuses to accept it asinput; instead you have to use ' metastat -s fs5 d40 '.
This isn't just a cosmetic issue. The fsN/dNN format is
Weekly spam summary on November 18th, 2006
This week, we:
- got 15,266 messages from 269 different IP addresses.
- handled 22,009 sessions from 1,693 different IP addresses.
- received 897,934 connections from at least 48,417 different IPaddresses.
- hit a highwater of 10 connections being checked at once.
Just like last time , that is not a typo (andnothing on the system was affected enough to make me notice it beforenow,
How https: should work
I just got yet another prompt about certificate issues on the occasionof visiting yet another website (I think because it had a self-signedcertificate, but who can tell with Firefox's dialog about it?). And allthis reminded me of how badly implemented SSL is in web browsers.
There are three actual good things that can be done with SSL: encryptingthe conversation, stopping man in the middle attacks, and certifyingthat the website is in some sense trustworthy. The web SSL experienceis so bad
Link: Golden Rules for Bad User Interfaces
Golden Rules for Bad User Interfaces ismore or less what it sounds like. I could wish that the sarcasm wasmore biting, but that would probably be ungracious and besides, it'sfrom SAP.
(From Greg Wilson .)
The good old days of Unix
Ah, the good old days, when Unix was Unix:
awk: record ` Continue reading...Menu