Slashdot Mirror


User: ModMeFlamebait

ModMeFlamebait's activity in the archive.

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

Comments · 122

  1. Re:Its true.. on Mainstream Media Finally Catching On To How News Propagates · · Score: 2, Funny

    Twice.

  2. Re:Verilog on What Programming Languages Should You Learn Next? · · Score: 1

    What about if you have a void* pointer? In that case, do you have to cast it to the correct pointer type before dereferencing?
    Yes.
  3. Re:Is this REALLY a problem? on IPv4 Address Crunch In 2 Years, IPv6 Not Ready · · Score: 5, Informative

    Except you can't NAT a NATted connection.
    Sure you can.
  4. Re:rippage on BBC iPlayer Welcomes Linux (and Macs) · · Score: 1

    PS. If anyone knows how to speed up postgres SELECT * FROM tv WHERE title ILIKE '%searchterm%' queries, please let me know. Indexes don't seem to help with %something% queries. :(
    Did you try tsearch2 from pgsql-contrib? It's going to be in 8.3 mainline AFAIK.
  5. Re:Actually that's how the political system works on Scientists Create Zombie Cockroaches · · Score: 2, Funny

    Why rob people (...) when they can raise people as zombies,
    And then you can Rob Zombie :)
  6. Re:I Just Felt a Cold Chill on Microsoft Wants To Read Your Brain · · Score: 1

    You are thinking in Perl? :)

  7. Re:WTF? on Meet the 5-Watt, Tiny, fit–PC · · Score: 1

    What kind of PC crack did the gentoo people invent? it took me all night to build a kernel on my debian box.
    You may have compiled a whole family of kernels (e.g. i386, i686, i686-smp, athlon, athlon-mp, wtf, etc.) -- you'd have to check the debian/rules file or google around, but it seems like it. Sub-5-minute kernel build times aren't really possible with cold cache (untarring the tree right before compiling makes the kernel source already available in page cache, so the sibling poster's machine had it easy). Anyway, a night to build a *single* kernel image, even with `make allmodconfig` is way overboard. What would the machine be? A Pentium-75?
  8. Re:Downgrade? on Microsoft to Allow PC Makers to Downgrade to XP · · Score: 1

    With Ubuntu they sell 7.04 as long term support
    -1, Wrong. 6.06 was the first LTS release, the next one will be 8.04 AFAIK.
  9. Re:But where is the Linux IO Scheduler? on The Really Fair Scheduler · · Score: 1

    Also I run a photos website on a Linux box. Occasionally the Google spider would be indexing the site and cause lots of photos to be resized. This uses some CPU but the major problem is disc I/O.
    If you're generating thumbnails on the fly without caching, you get what you ask for.
  10. Re:why is this an issue on Are 80 Columns Enough? · · Score: 2, Informative

    diff -Bwu


    Enjoy.
  11. Re:If it rhymes, it must be true on Many New Species Found Under Antarctica · · Score: 4, Funny

    octopi is 25.1327412

  12. Re:WRONG Re:On a serious note, .... on Human Species May Split In Two · · Score: 1

    If *nobody* reproduces, evolution still stops, but for a tad different reason :)

  13. Re:Problem: Sometimes you want to limit root. on Weakness In Linux Kernel's Binary Format · · Score: 1
    Solution: Don't give your chroot jail access to the binfmt filesystem. I'm not sure how this can be done, though, as root is allowed to mount pretty much whatever it wants.
    root can escape a chroot jail easily anyway, this is no protection. Using --rbind mounts in per-process namespaces (a'la linux-vserver) is a better idea.
  14. Re:20 years? So what? on Selecting Against Experience - Do Employers Know? · · Score: 1
    Sigh...

    Consider a multithreaded program, where one thread walks though the list while the other is reversing it. Your O(n) solution:

    thread 1 (reversing list):
    tmp = head->next;
    head->next = NULL;
    thread 2 (walking though the list):
    p = head;
    // ...
    p = p->next; // NULL
    So who the fuck cares about your temporary variable? Sure, you don't leak list elements but you're solving a different problem.
  15. Re:The sites that need it, shouldn't use it. on How are 'Secret Questions' Secure? · · Score: 1

    If I had mod points, I'd mod you up even though I'm Polish (and yes, my last name has vowels but my given name is fun for foreigners :) )

  16. Re:No 64-bit on Fully Open Source NTFS Support Under Linux · · Score: 1

    Well, what do you suggest? getc() or scanf()?

  17. Re:"Missing link"? on Scientists Find Missing Link in Bird Evolution · · Score: 1

    Actually, the Wikipedia entry for "Missing Link" does a pretty good job...

    I went there and I got a 404... ;)

  18. [another OT] Re:Cotton Swabs (offtopic) on Would Vendor Liability for Bugs Kill OSS? · · Score: 1

    Re: your sig:

    For units with bitlength a multiple of 4, (0x2B | ~0x2B) == 0xFFFFF.... So there. (Revision 4 and counting...)

    What about: (0x2B | ~0x2B) == ~0

    :)

  19. Re:That's because... on A 1.2 Petabyte Hard Drive? · · Score: 1

    ...it assumes volatile RAM. Duh. Further, unmapping RAM doesn't wipe it - it just deletes the pointer. If you remove the assumption of volatile memory, you remove the need to transfer anything. All that would be required would be to suspend the thread when you hit the point in memory that has been hot-swapped out.

    I know unmapping RAM doesn't wipe it, but unplugging it certainly does. Given the recent years of computer architectures (I'm a bit too young to have played with IBM mainframes of ye olde days - and I wish I weren't), volatile RAM assumption is IMHO sensible to make.

    If you were inclined to do so, you could design a system (with non-volatile main RAM) doing what you described, but I currently fail to see the point. Would you be able to reliably restart a thread on another machine? It would have "everything" underneath changed, including the processes around it, filesystem, networking and maybe the pid, also migrating processes with file-backed mmapped memory would be a bitch (copy the file? what about writes etc.? use some clustering technique to pass the file data?). I think you would eventually end up with some cluster software with support for migrating via RAM sticks. If I'm wrong, please point out where and how.

    As for the lack of imagination, well, IMHO currently the idea is unfeasible due to hardware (plain RAM stick are _very_ volatile memory), so (for me, being 99% a software guy) it is (well, almost) like calling not envisioning innovative uses for a space elevator lack of imagination.

    My response was a bit trollish but hey, your post didn't exactly state you know what you're talking about (it just as well might have come from a i-have-a-petabyte-disk type troll). Sorry if you felt offended, if you have 30 years of mainframe experience, my respect.

  20. Re:That is correct, and... on A 1.2 Petabyte Hard Drive? · · Score: 1

    Linux now supports hot-swapping of actual RAM, which introduces the possibility of physically transferring live, active threads between machines without the need for a physical network. Not sure how useful this would be in practice, but the pure geek value in such a demonstration would surely turn a LOT of heads in the IT profession.

    I'll assume you're just uninformed. How the fsck do you expect to be able to migrate _anything_ via RAM sticks between machines? You'd end up with data gone before you even unplugged the stick.

    Linux memory hotplug, sure, but if you cared to actually look at the patches and stuff, you'd see that all to-be-unplugged memory must be first unmapped and processes using it migrated elsewhere.

    Or maybe IHBT.

  21. Re:Pretty much. :) on The President, The State of the Union, and Genetics · · Score: 1

    some of us are cannibals, too (no, not me :P)

  22. Re:It's not the theft they're worried about on When Data Goes Missing Will You Even Know? · · Score: 1

    How about supporting not one read() but one session? I.e. lock after unplugging, not reading the data? Top it off with encryption (not neccessarily hardware assisted but it'd be nice for OS compatibility). Off to the patent office you go! :)

    Still, it'd be a solution looking for a problem. You want to steal data, you will.

  23. Re:Admin vs. root on OS X on Microsoft vs. Computer Security · · Score: 1

    Consider yourself +1, Informative :)

  24. Re:Houston, we have a problem. on Microsoft vs. Computer Security · · Score: 2

    MS may have earned a reputation for being insecure, no problem there. I evaluate it at the moment, and at the moment it's getting better.
    Linux may have earned a reputation for being awkward to use on a desktop. I evaluate it at the moment, and at the moment it's still a set of apps with no common standards held together by sticky tape and pipes.


    Let me rephrase,
    MS may have earned a reputation for being insecure, no problem there. I evaluate it at the moment, and at the moment it's still a steaming pile of security nightmares.
    Linux may have earned a reputation for being awkward to use on a desktop. I evaluate it at the moment, and at the moment it's getting better.

    There ya go, much better now.

  25. Re:Round this! on Rounding Algorithms · · Score: 1

    1.44nd?