Slashdot Mirror


User: seh4

seh4's activity in the archive.

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

Comments · 8

  1. Your subject line is a lie! According to the article you linked, Mr. Miller was a great guy.

    But I see what you did there. You're just honoring roblimo by imitating him:

    "Because Prodigy paid Miller based on user activity, he did his best to spark debate in the political chat room.

    "I'd just say stuff to piss people off," Miller said"

  2. Re:That's funny, expecting her share? on Somali Pirates Open Up a "Stock Exchange" · · Score: 1

    Well it all depends on whether the Somali government will bail out the pirates. They'd better... I've got a CDS riding on the pirates not defaulting on this lady.

    FTFY yvw

  3. Re:Borland Turbo Assembler on Borland Being Purchased By Micro Focus · · Score: 1

    I seem to remember using Kyan Pascal on Apple IIe at school. It had a unix-like shell "KIX" with command line "pc" compiler and "as" assembler. This was 1987ish.

  4. Re:I prefer none. on Why Use Virtual Memory In Modern Systems? · · Score: 1
    Linux kernel at swappiness >= 60 will favor file buffers over large long-running apps.

    I'm guessing FreeBSD does this better than Linux.

    So your httpds would probably be fine even on linux, but my server JVMs get pushed out and incur a big penalty to be paged back in.

    I wouldn't advise people turn off swap either, just to be aware that the penalty is incurred, and that it can be avoided e.g. with a lower swappiness value and/or the mlock(2) call.

  5. Re:I prefer none. on Why Use Virtual Memory In Modern Systems? · · Score: 1

    That is why many Unix admins recommend swap. It helps the system effectively manage its resources without incurring a penalty, so why wouldn't you?

    Oh, but a big penalty is incurred. Always.

    File buffers (for faster repeated reads) are a 100% total waste of RAM for a lot of disk reads that are never repeated, such as the nightly backup, slocate, makewhatis, and similar poltergoosts that come out between midnight and 4am localtime when nobody's looking.

  6. Re:I prefer none. on Why Use Virtual Memory In Modern Systems? · · Score: 1
    I'm with you in the "don't let the OS swap out your apps" camp.

    But rather than completely turn off swap, I use vm.swappiness=20 on linux servers and workstations, much less swappy than the default of 60.

    So to prevent the OS from swapping out my precious latency-sensitive BloatyApp (JVM) even if it's been idle for days, I recommend making a call to mlockall, through a JNI wrapper.

    From mlock(2): "All mapped pages are guaranteed to be resident in RAM when the call returns successfully; the pages are guaranteed to stay in RAM until later unlocked."

  7. Re:No flags raised? on Stealing From Banks One Cent at a Time · · Score: 1

    ... how was this not spotted sooner? Because the institutions were complicit. Why do you think the E-Trade Baby touts "1000 New Accounts Every Day!"

    E-trade doesn't care if 900 of those accounts are for Hank Hill & friends.

  8. Re:Surely this is not the only source of entropy! on Debian Bug Leaves Private SSL/SSH Keys Guessable · · Score: 1

    What would be a better source of randomness? Everyone here should know that you just need to dangle the leads of your /dev/random kernel module in a Brownian motion producer (say a nice, fresh cup of really hot tea), especially before running ssh-keygen.