Slashdot Mirror


User: SigmundFloyd

SigmundFloyd's activity in the archive.

Stories
0
Comments
330
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 330

  1. Re:Procmail is a fine tool -- but the wrong tool on Ask Slashdot: Speeding Up Personal Anti-Spam Filters? · · Score: 0

    should block inbound port 25 traffic from everywhere on the planet that you don't need email from. In other words; the fact that someone in country X wants to email you is unimportant unless you actually wish to receive mail from them.

    Distributed botnets make that solution ineffective.

  2. Re:bogofilter on Ask Slashdot: Speeding Up Personal Anti-Spam Filters? · · Score: 1

    http://bogofilter.sourceforge.net/

    Seconded. Procmail + bogofilter + spam.mbox = no problem.
    I keep - and periodically review - a "spam" mbox for the rare false positive.

    I haven't timed it to see how well its been doing in the 6 years I've had it though.

    It's written in C, so it's very likely much faster and leaner than Spamassassin.

  3. Re:As usual. on Measles Outbreak Tied To Texas Megachurch · · Score: 1

    Reading comprehension FAIL.

  4. Re:As usual. on Measles Outbreak Tied To Texas Megachurch · · Score: 1

    What makes you think I don't know how vaccines work?

  5. Re:As usual. on Measles Outbreak Tied To Texas Megachurch · · Score: 1

    Please check which option you'd like:
    [ ] make your species weaker by saving frail individuals through vaccinations
    [x] Darwin Award registration

    FTFY!

  6. Re:Why illegal? on Yahoo Deletes Journalist's Pre-Paid Legacy Site After Suicide · · Score: 1

    I think the real reason why most religions condemn suicide is to escape the following catch 22: If you really believe in god and you really think there is this great place called heaven, why don't you kill yourself to get there ASAP ?

  7. No thanks! on Amarok 2.8 "Return To the Origin" Released · · Score: 1

    I prefer moc. It doesn't waste CPU time with silly and useless animations, and it works from the console.

  8. Slowing?! on The Open Source Laptop and the Golden Age of Open Hardware · · Score: 2

    What's with this "slowing of Moore's law" nonsense?

    That supposed "law" is either true or false, there's no speed change about it.

  9. Out of curiosity on Ask Slashdot: How To Deliver a Print Magazine Online, While Avoiding Piracy? · · Score: 1

    What was your magazine's stance on piracy, before it affected you?

  10. Re:Larger picture... on DuckDuckGo: Illusion of Privacy · · Score: 1

    The NSA doesn't care about them

    Yeah, carry on and pay no attention to the man behind the curtain.

  11. "They last for around three years" on Ikea Foundation Introduces Better Refugee Shelter · · Score: 0

    Better than most of their furniture.

  12. Re:From the for what it's worth department... on Yahoo Puts AltaVista To Death · · Score: 1

    And its "NEAR" operator allowed me to fine-tune the results in ways unmatched even by today's search engines.

    Parentheses, boolean operators, the NEAR operator... Altavista was the true hacker's choice for powerful web search. We don't lose it today, though: We lost it when it was turned into a rebranded Yahoo.

    Anyway, the "running gag" comment just goes to show how low this place has sunk.

  13. Re:Irrelevant comparison on Is Bitcoin Mining a Real-World Environmental Problem? · · Score: 1

    Demand for bitcoins displaces demand for gold; lower demand drives the price of gold down; lower prices means lower profit margins and thus less gold mining.

    That's an hypothesis, not a fact. Until that happens, bitcoin mining doesn't replace gold mining.

  14. Irrelevant comparison on Is Bitcoin Mining a Real-World Environmental Problem? · · Score: 1

    Bitcoin mining does not replace traditional mining. So, the fact that bitcoin mining has a smaller impact on the environment is irrelevant. It still counts as added impact.

  15. PGP on Is the DEA Lying About iMessage Security? · · Score: 1

    I've been wondering the same thing about older news stories, on how the FBI was unable to crack PGP encryption. That too might be disinformacija.

  16. Re:OSX is doing great on The State of BSD At the Start of 2013 · · Score: 1

    Okay, that is fucked up. It's clearly the wrong behavior - BUT, why are you passing the incorrect filename and depending on the OS to match it as case-insensitive?

    In my example, both filenames are correct and exist. The point is that the lowercase filename will replace the uppercase filename.

  17. Re:OSX is doing great on The State of BSD At the Start of 2013 · · Score: 2

    You have it wrong. The file system is not really case-insensitive as per the traditional sense. If you have a file named "SomeFile.pdf" and try to open "SomeFile.Pdf" it will fail. The case is sensitive just as with the other Unix based operating systems. Where it differs is that it will not allow you have files named "Readme" and "readme" in the same location.


    > ls dir2
    README
    > mv dir1/readme dir2/
    > ls dir2
    readme

    Bye-bye README! Because of this nonstandard behaviour, I once lost a bunch of files. Thankfully, I realized soon enough and I had backups; but - since then - I know I can't trust shell scripts known to work on other Unixes.

  18. Re:OSX is doing great on The State of BSD At the Start of 2013 · · Score: 2

    sudo /usr/libexec/locate.updatedb

    It's not that. I've updated the db (and I let update it periodically, via launchd) but it still won't find everything (not even regular user-owned stuff).

    man CpMac

    Yeah, I had come across that one. Then again, you first have to know it exists. Apple won't warn you nor inform you. And when you investigate and find out, it's usually because the regular Unix tools have already wrought havoc.

    It's a case-preserving filesystem by default. Because it's a Mac and needs backward-compatibility.

    Whatever. Have fun developing on a case-insensitive file system and not noticing case mismatches that will suddenly stop the show when you run your stuff on a proper Unix.

    http://menphix.wordpress.com/2010/04/24/how-to-use-cron-in-mac-os-x/

    That won't work, from at least 10.6 onwards. No cron by default. If you want it, you must use it in addition to launchd. If you want to start cron at boot, you have to tell launchd, by writing freaking XML!

    Sounds to me like you don't like it because it's different from what you're used to and you don't know what you're doing because you didn't RTFM.

    I don't like because it's a bastardized Unix that's not nearly Unix-like enough.

  19. Re:OSX is doing great on The State of BSD At the Start of 2013 · · Score: 1

    Correction to the above: it does have /dev, come to think of it, you just don't get to use it much, since you can't choose the mountpoint because mounting is automated!

  20. Re:OSX is doing great on The State of BSD At the Start of 2013 · · Score: 4, Informative

    OS X is more than FreeBSD it's UNIX(tm).

    OSX may have been certified as Unix, but it has been diverging from its ancestor so much that it no longer feels Unix-like in the least.

    Some examples:

    - no /dev (bye-bye Unix philosophy cornerstone "everything is a file");
    - unusable "locate" that doesn't find all the stuff it should (because Apple wants you to use Spotlight, the command line is bad, you silly!);
    - much of the userland isn't aware of the HFS+ filesystem extensions (have fun cp'ing files, discovering months later that - oops! - the stuff had a resource fork and is now unusable -- verrry dependable!);
    - case insensitive filesystem by default, you could switch to case sensitive for compatibility with any other Unix in the universe (have fun reformatting and reinstalling) but - alas! - important application software won't support it (photoshop & others);
    - no cron! If you want to get it to do things periodically, you either gotta write freaking XML for launchd, or run Vixie Cron in addition to launchd. No thanks!

    If OSX is Unix, it's the worst Unix I've ever seen. No serious command line nerd could ever like it (OTOH, it's perfect for know-nothings who like to click on pretty pictures). Using it is a totally different (as in "worse") experience than using any BSD (or Linux!), so spare me the old "OSX is BSD" hearsay!

  21. 100% B.S. on Portrait Sculptures From Genetic Material · · Score: 4, Interesting

    Obvious practical joke. Not even close to being believable.

  22. I always wondered on Opera Picks Up Webkit Engine · · Score: 1

    How does the Opera company stay alive?

    They've been in operation since... about late '90s? But how exactly? A feature story on them is long overdue.

  23. Re:What exact problem is this trying to solve? on Moving the Linux Kernel Console To User-Space · · Score: 1

    Being able to set a keyboard mapping is the minimum I'd expect even from an emergency recovery console in 2013.

    I've been doing that for years before 2013. Not to mention:

    1. - exchanging the caps-lock and escape keys;
    2. - setting up the console to use UTF-8 to get all the accented characters I'll ever need, plus the Euro sign;
    3. - setting up "dead" keys to accent/modify the next typed character;
    4. - setting up a "combination" key to join the next 2 typed characters into a single approximation;
    5. - using the very nice Terminus bitmap font in place of the default VGA font;
    6. - setting up the colors for green on black (or yellow on black, or white on blue, or...);
    7. - using a blinking block cursor instead of the default blinking underscore.

    The Linux console has been doing all of the above (and more) for years. Remember, kids: Real geeks read the docs!

  24. Re:Experiment probably worse than the real thing on Astronauts Could Get Lazier As Mars Mission Progresses · · Score: 1

    A year and half in simulated mars mission where you know it is a simulation has to be worse. In a real Mars mission, the crew will be know their activities are important: for the excitement to be first on mars, for the knowledge that a serious screw up could them their lives. On a simulated mission, you're just guinea pigs. Staying motivated must very difficult.

    Yeah, let's not give those NASA slobs the benefit of doubt. Clueless as they are, they surely haven't found a way to motivate the simulation crew. They could have told the crew "the results of this simulation will make or break the Mars mission", for example, but - as a Slashdot commenter - I'm sure they haven't thought this stuff out very well.

  25. New advertising technique? on LEGO Announces GNU/LInux-Powered Mindstorms EV3 Platform · · Score: 1

    1. post critical article about $product (make sure the article also contains rebuttals);
    2. followup 2 weeks later with new $product announcement that proves previous criticism wrong;
    3. profit!

    Not necessarily carried out consciously by news aggregation sites such as this one, but possibly still orchestrated by $product's marketing dept.