Slashdot Mirror


User: James+Manning

James+Manning's activity in the archive.

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

Comments · 50

  1. If Bill Gates takes up surfing... on WWII Allies Tested Tidal Wave Bomb · · Score: 1

    Wax up those surfboards, d00d!

    And you thought the "Point Break" wave was impressive...

  2. Re:Link to Qwest is broken. on Is Qwest's ISP Deal Really Worth the Hassle? · · Score: 1

    True... it's the result of leaving out the http://

  3. Re:Sam Gumshoe the Net Detective Finds the Truth on The Transmeta Conspiracy Part V · · Score: 1

    http://members.hyperlink.net.au/~chart/download/ve ndors.txt

    1279 Transmeta Corp

  4. Re:Stock price will plunge on Hurricane Floyd Shuts Red Hat Down Temporarily · · Score: 1

    I'm here at IBM-RTP, where we will *also* be closing up tomorrow.. no, it's not all of IBM, but it *is* the single largest IBM site on the planet, as well as being manufacturing for all of IBM PC (servers, desktops, etc)

  5. Re:What about ext3 on Linux 2.4 Feature Freeze · · Score: 1

    http://slashdot.org/comments.pl?sid=99/09/11/10722 6&cid=53

  6. Re:The law is irrelevant here on Ask Slashdot: Privacy in the Workplace · · Score: 1

    Based on the zebra.net address, I'd say Alabama, which is very US (well, as long as you don't ask anyone on the wrong side of the Mason-Dixon :)

  7. Re:209.80.X.X on Load Testing the New Server (Take 2) · · Score: 1

    Not him either, but in one window

    while true; do wget -r 209.207.224.40; done

    and the other window, same dir

    while true; do rm -rf 209.207.224.40; sleep 5; done

    Simply to keep from filling my /tmp :)

  8. Software raid on Interview: Ask Alan Cox · · Score: 1

    For those that can't keep up with lkml, when will the "real" software raid 0.90 stuff make it into a vanilla kernel? What's left holding it up?

  9. kernel split? on Interview: Ask Alan Cox · · Score: 1

    Do you see the kernel split into desktop and server version occuring? Torvalds to server and you heading desktop would seem a good fit.

  10. Re:Run an Alpha on MySQL 3.20.32a Released Under GPL · · Score: 1

    Actually, ext2 handles bigger than 2GB on Alpha.

    It handles up to signed 32-bit on 32-bit arch and signed 64-bit on 64-bit arch.

    With LFS patches, it handles up to signed 64-bit even on 32-bit arch (which is how my dual PII is hosting a 19GB MySQL DB that exists in ext2)

  11. Re:RAM & RAID 1+0 is your friend. on Ask Slashdot: Optimizing Apache/MySQL for a Production Environment · · Score: 1

    Was it an indexed field? If so, the search should have been binary on == and possibly binary on LIKE (not sure though)... Any int fields you search on should definitely be indexed :)

  12. Re:Depending on if your site is read-only or not on Ask Slashdot: Optimizing Apache/MySQL for a Production Environment · · Score: 1

    Nothing could be further from correct.

    If read-only, raid 1+0 allows striping reads across all physical drives, so you get the performance benefit of raid0 with the mirroring (and drive death survival) of raid1. If you don't care about data redundancy (you might want to care about making sure your site is available), a pure raid0 will still get data off drives faster than a single drive.

    Of course, I'm a strong software raid advocate, with a switch to hardware when it's cheaper to offload those cycles to other chips rather than speed up (or increase the number of) main processor(s).

    Sites that have a lot of writes, OTOH, have to balance data amount available vs. performance (etc) wrt raid1, 5, or 10.

  13. Re:Software RAID? on Ask Slashdot: Optimizing Apache/MySQL for a Production Environment · · Score: 1

    Ya know, I truly find it hilarious that people believe hardware raid has some huge benefit...

    I've been using software raid, both over normal SCSI and hardware raid, in production servers for quite some time... hardware raid, even fast ones like DAC1164P, are going to get smoked in something like RAID5...

    Think about it... do you want to do 64k XOR's 32-bits at a time on a single strongarm 233 (at best) or half/full cache lines at a time using SIMD on an SMP?

    The best approach so far has been to allow hardware to handle raid0 for simple striping and disk management, and leave the XOR's and large chunks done in your main processors (after all, this is all streaming to prefetching helps a good bit) if you can afford the cycles.

    Refer to linux-raid archives and my performance postings there with any questions

  14. Re:How much was power and how much was parallelize on 512-bit RSA Key Cracked. · · Score: 1

    Sun's attempt (depending on which EE Times article you're reading, either a good one or one too rushed out the door) at a VLIW/EPIC target architecture for Java code... eet.com search on MAJC should turn up one or two informative articles.

  15. Re:RAID! on Ask Slashdot: Optimizing Apache/MySQL for a Production Environment · · Score: 2

    First, PLEASE don't point people to that horrible howto... as soon as Linus will accept the real software raid versions (and howto) available over at:

    http://metalab.unc.edu/pub/Linux/kernel.org/pub/li nux/daemons/raid/alpha/

    and

    http://ostenfeld.dk/~jakob/Software-RAID.HOWTO/

    Second, realize 0+1 (typically 1+0, or RAID 10) only gives you half of total physical space in effective space.... sometimes you can afford that, sometimes you can't... and you still generate the scsi bus loads of the full drive set :)

    In the very typical (especially in these situations) case of reading the databases, it's worth agreeing that 1+0 becomes 0+0 (since you can split reads across a raid1, assuming no failed drives)

    Last, as a side note to the mysql part, try to use isamchk (if the db server can have any down time) for pre-sorting your database instead of doing the sorting as part of your SQL

  16. Re:But? -1=i^2=i*i=sq(-1)*sq(-1)=sq(-1*-1)=sq(1)=1 on Iridium Files for Bankruptcy · · Score: 1

    No kidding...

    hopefully he's not one of the idiots that
    believe 0.9999... (repeating infinitely)
    and 1 are two different numbers

    zero point nine bar equals one

  17. Re:Iridium modems on Iridium Files for Bankruptcy · · Score: 1

    Your mistake: exp(j*x)=cos(x)+j*sin(x)

    so...

    -2*exp(j*PI) =
    -2*(cos(PI) + j*sin(PI)) =
    -2*(-1 + j*0) =
    2

    So it was his two cents, and you fail Math.

  18. Re:just on servers? on Dell to offer Linux on Dimension Line · · Score: 1

    Ya know, I've always wondered why some rpm couldn't be made that would install the basics needed by Debian, mv some stuff around, then do the necessary apt-get magic... hmmm

    I, for one, would love neat little ways to move back and forth between distros w/o new installs

  19. Re:OC'ing... Why is the clock multiplier locked ? on Athlon Reviews · · Score: 1

    I don't really mind the locking at this point, as I'd rather see the K7 core get out there and get proven before people start pushing its clock rate.

    Remember, the P6 core had a good workout in Real Life before it got pushed into common OC-land.

  20. Re:lies, damn lies, and benchmarks. on madddog on Linux v NT Benchmarking · · Score: 1

    pssst buddy... he quit Compaq already :)
    jon@valinux.com iirc

  21. Re:More info needed on madddog on Linux v NT Benchmarking · · Score: 1

    Just to make sure people know it's available, there's always irc.linux.com(irc.openprojects.net) which will have good (if not great) Linux help at #linuxhelp and #linpeople

  22. Re:I laughed, I cried... on Merced Architecture Specs · · Score: 2

    "on *it*" may imply a level of cooperation
    that I fear isn't really happening. This,
    combined with the ability to have more eyes
    looking at current work, would certainly make
    it nice (imho) to have at least a cvs read-only
    server with their current work...

  23. Linux/IA-64 on Merced Architecture Specs · · Score: 1

    Does this mean that the Linux port can start
    occuring out in the "Open" now? Hmmmm?

  24. FWIW on GNOME 1.0 Released · · Score: 1

    I had problems using the rpm's coming from an old E 0.15 daily snap and gnome 0.99.3 but clearing out all the old E, gnome, and their libs (strinlist, libFnLib, libesd*, etc), killing all my home dirs dotfiles that related (.gnome, .enlightenment dir, .ee, etc) then starting over with a rpm -U of everything with --nodeps and a simple gnome-session after a few utils in my .xinitrc (first time I spawned gnome-session... doh!) and everything has worked beautifully.

  25. minor stuff on Review:Year 2000 In A Nutshell · · Score: 1

    1) Millennium
    2) Millennial
    3) starts 01/01/2001, midnight,
    366 days removed from 01/01/2000