- Feature Articles
- CodeSOD
- Error'd
-
Forums
-
Other Articles
- Random Article
- Other Series
- Alex's Soapbox
- Announcements
- Best of…
- Best of Email
- Best of the Sidebar
- Bring Your Own Code
- Coded Smorgasbord
- Mandatory Fun Day
- Off Topic
- Representative Line
- News Roundup
- Editor's Soapbox
- Software on the Rocks
- Souvenir Potpourri
- Sponsor Post
- Tales from the Interview
- The Daily WTF: Live
- Virtudyne
Admin
TRWTF is using Windows for billboards. All they need is to display videos, so why not use Linux and save money on Windows licenses?
Admin
It's exceptionally funny, that Daniel's elevator screen has german text "Papierkorb" and the elevator information is in Slovakian.
Admin
And the scripts are named in English. Evidently IT is a worldwide business. ;)
Admin
That EC train was delayed w/o estimate b/c it was held for forensics after an accident in Germany. It got released three hours later but delayed trains from Germany are not allowed to pass into Switzerland. So it probably went into a void instead of Milan.
Admin
I've got nothing for today's posts, but I do have a question about yesterday's: how the fsck did the overly-strict site's code determine that a password was generated? I'm sitting here trying to decide how I would write that check, and I have no idea.
Admin
A WTF with Switzerland that their entire transit schedule for every city and town from trains to buses to ski shuttles are in one GTFS schedule and the real time predictions are in one giant feed.
Admin
All the videos are in WTV format?
Admin
The real WTF is the street names in the first one. Does E SOUTHERN RD (named after Admiral George Southern), lead onto WESTERN RD, gateway to the EASTERN part of the NORTH expressway?
Admin
It could be "hot fitted". I guess.
Admin
Check it and see?
Admin
Southern Ave is simply named because it was at one time the effective southern limit of Phoenix. Northern Ave is about 12-13 miles north of it. If you want WTFs about it, it passes through multiple cities, each with their own numbering patterns, so you can start in east Mesa with E. Southern, drive west until you reach Center St, then be on W. Southern. Continue to the Tempe border, and you're back on E. Southern, until Mill Ave, then W. Southern again. The Phoenix border sets you back to E. Southern down to Central Ave, where it's back to W. Southern, and continue similarly out the west side of town...
A mile north of Southern is "Broadway Road", named not for (or like) Broadway in New York, but for Noah Broadway, who was a local Sheriff in the late 1800's. Tucson (2 hours to the south) even has "Broadway Boulevard".
Admin
As European, I couldn't identify cardinal points even if staring at the sun.
Admin
You won't see much of saving. (Even if looking only at cost of video system)
Admin
@DPM ref
Just use a set of dumb heuristics. Must be more than 60% letters, less than 10% special characters and none of them outside of US-ASCII. Maybe have a syllabary of 3-character runs generated from some corpus of English text. If there's not at least one of your known syllables in the PW, reject it. etc.
Most generated PWs look generated. Which is to say they're generated in away much more random than a human would. And they draw equally from a larger character set than humans do. Yes, a true random PW generator might generate "Correct*Horse". But it's far more likely to generate something that looks like "FHwk6tBwTB8o#".
Addendum 2025-11-08 07:55: Cryptography is not my field but if there's an easy way to generate the entropy value of those two PWs, good bet they score rather differently. Just set a threshold and reject all the high(er) entropy PWs. Easy Peasy.
Addendum 2025-11-08 07:57: Remember, the goal isn't perfection. It's just to frustrate most people / bots using most generated PWs most of the time.