Slashdot Mirror


User: psavo

psavo's activity in the archive.

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

Comments · 386

  1. Re:Of course! on Final Matrix Set for Synchronous Release · · Score: 1

    Ahem. Minorities?. You do realise that whities are the minority in overall stats..

  2. Re:How about banning awards instead? on MPAA Calls for Ban on Screeners · · Score: 1

    Funny thing is that the only names I recognize from those you mention are Hitchcock, Kubrick and Kurosawa. From the rest only name of movie is sort-of recognisable.

    There should be some award given many years after, for those movies that stand the time.

  3. Re:Linux sound on Dave Phillips' Linux Sound Updated · · Score: 1

    The best part with doing it with Linux - it runs only what I want it to. There's no windows interface that may crash if pushing it too hard.

    The fun part is that with a GUI it's really hard to push a program hard.

  4. Re:been there, done that. on Reviving A Dead Hard Drive The Hard Way · · Score: 1

    Uphill, both ways, at 30 degrees below zero with 3 inches of visibility.

    Ah, American. It's -30C amidst hottest summer back here in Finland.

  5. Re:Backing up is like voting on Reviving A Dead Hard Drive The Hard Way · · Score: 2, Funny

    But SMART only warns you if something they can detect about to die.

    So true. S.M.A.R.T did nada when a bottle of deaodorant fell onto my harddrive last year.

  6. Re:Excellent interview on The Future of Science Revealed! · · Score: 1

    This is easily on of the best interviews I've seen on slashdot in a long time.

    Yeah, so true. And all thanks to me.

    Why? - you may ask. Well. Because every time I'm on a brink to delete /. from my bookmarks, history and CTRL-H keybind (yeah, I'm pathetic), they manage to pull stuff like this.

    Great many thanks to Charles for this!

  7. Re:Great for firearms training on Walk-thru Fog Screen · · Score: 4, Insightful

    This technology would be very useful for extremely realistic firearms training. Think FPS with real guns ...

    Sure! This vapor+projector equipment must be way-way cheaper than cardboard used today..

  8. Re:Drug running on 11-Pound Model Plane Vs. The Atlantic, Again · · Score: 1

    Slightly OT, but this makes one think about in exactly what sicrumstances one thinks of strawberry flavoured condoms..

  9. Uhm.. on Lindows Webstation · · Score: 0, Redundant

    For a tiny moment I read that as iD1OTpc..

    But then again, that would be far too fitting to be !true.

  10. Re:The biggest cost to them is toll free fax on Russian Minister Gets Spammed, Spams Back · · Score: 3, Insightful

    Another fun trick was to use a standard fax machine with a continuous loop of paper. Let that baby run for about 10-15 minutes and you'll create a lot of clutter on the receiver's end.

    Like somebody is still using paper faxes.

  11. Re:bash# w on Slackware Turns 10 · · Score: 0, Flamebait

    11:20:29 up 3651 days, 22:40, 1 user, load average: 0.09, 0.07, 0.02

    Unfortunately that can't be linux with it's uptime wrap-around (afaik fixed in resent versions).

  12. Re:Wait a Minute! on Cable Boxes With DVD, MP3, Networking · · Score: 2, Funny

    It uses Linux!
    But it has copy protection!
    I think my head is going to explode with this paradox.

    Most filesystems in linux do come with copy protection. It's most often used with chmod +/-r command.

  13. Re:Opera doomed to always be the 'outsider' on Browser Wars II: The Saga Continues · · Score: 1

    2) I know I'm going to get a lot of flack for this, but, opera doesn't have a mail client.

    You know what? Crawl out of your cave and test Opera 7.0. It does have a mail client. (Never used it, but it is there)

  14. Re:I guess this means... on AOL To Launch Blogging Service · · Score: 1

    ..that blogging can be officially declared out, just as the newsgroups was when someone let the hordes from AOL in.

    Can't see what you mean here. I for one use nntp daily, and have best conversations there (I do admit that I'm using Finnish/sfnet side of it, it's quite rural). I also do a blog, but it's less active than my nntp side. (My whole site is run by a blog software blosxom).

  15. Re:Reading the article it was more a purchase of c on SCO's Other Investor: Sun Microsystems · · Score: 1

    Sun purchased drivers and other stuff to use in its i86 version of Solaris,

    Hmm.. So that's why slowaris on x86 is so shitty.

  16. Re:Classic exam question. on Mailing Disks is Faster than Uploading Data · · Score: 1

    The point was the even though the plane offered 10,000 times more bandwitdh, the 80 minute latency meant it wasn't a viable replacement. (emph. mine)

    So you're using those [RM]IAA 'equivalent' CD-burners?

  17. Re:NASA funded? on SETI Gains Respect, NASA Funding · · Score: 5, Insightful

    I didn't know NASA had enough money to donate, with all the cutbacks and whatnot.

    Sounds more like outsourcing facilities to more competent business?

  18. Re:What do you use python for? on Text Processing in Python · · Score: 1

    So far I've used python for:
    - a X 4.3 <a href="http://iki.fi/psavo/pub/code/xcurs">curso r editor</a>
    - a thumbnailer (shortish script, ~100 LOC)
    - a file/data sorter, image classifier.

    Python was _very_ much worth learning it, best language I've used to day (unless looking at some scheme -weirdness).
    Strength is that it can implement stuff very quickly, and most thing can be runnable separately, tested.

  19. Re:Losing Money? I think not on Euro iTunes Store Delayed · · Score: 1

    indeed.

  20. Haha! on Euro iTunes Store Delayed · · Score: 4, Insightful
    I can't help but quote Simpsons:
    Haha! Suckers.
    I can't believe how this is feasible for them. From my POV, they're loosing money here all this time the iTunes store isn't running in Europe. I think they'll have a lot to explain to shareholders, eg. 'Why didn't you pursue this business model as soon as it showed it's potential?'.
  21. Re:I doubt they're going to win. on Law Professor Examines SCO Case · · Score: 0, Offtopic
    Try getting a patch without review to the vanilla tree.. :)

    You say vanilla but I expand vanilla into 2.5 as well. Recently a pci_for_each_dev macro went away in a 'puff' without any prior notice from Linus. You can read some grumble from Dave Jones' diary (5th June 2003).
    Check following code:
    pci_for_each_dev(pdev_sb) {
    if(pci_match_device(amd_sb_tbl, pdev_sb) != NULL)
    goto found_sb;
    }
    vs.
    while((pdev_sb = pci_find_device(PCI_ANY_ID, PCI_ANY_ID, pdev_sb)) != NULL) {
    if(pci_match_device(amd_sb_tbl, pdev_sb) != NULL)
    goto found_sb;
    }
    Like WTF??
  22. Re:Predictive Compiling on Jaguar is Over · · Score: 1
    pvsavola@tienel:~$ apt-cache show distcc
    Package: distcc
    Priority: optional
    Section: devel
    Installed-Size: 288
    Maintainer: Paul Russell <prussell@debian.org>
    Architecture: i386
    Version: 2.5.1-1
    Depends: libc6 (>= 2.3.1-1), libpopt0 (>= 1.7), adduser, debconf, netbase (>= 4.09)
    Filename: pool/main/d/distcc/distcc_2.5.1-1_i386.deb
    Size: 105268
    MD5sum: be492277ca73441ea42aafc48883f63d
    Description: Simple distributed compiler client and server
    distcc is a program to distribute compilation of C or C++ code across
    several machines on a network. distcc should always generate the same
    results as a local compile, is simple to install and use, and is often
    significantly faster than a local compile. distcc does not require all
    machines to share a filesystem, have synchronized clocks, or to have
    the same libraries or header files installed.
  23. Re:The rats are abandoning the sinking ship! on Linus Moves To OSDL, Will Work On Kernel Full-Time · · Score: 1

    (In 20 years time we'll probably see Torvalds daughter marrying the Swedish king!)

    AFAIK in Sweden there's a chick first in line for throne, so that would be 'interesting'. But oh well, swedes.. .. just do it. Could be first married lesbian queen.

  24. Re:Another great timekeeping feature on IRC Forum w/ CmdrTaco & Hemos Tonight at 8pm Eastern · · Score: 1

    AFAIK galeon has this ability (I tested it about a year ago). Also 'HEAD' command can tell this info, unless timestamps on server itself are botched.

  25. Rather OT on Mars Exploration Rover Spirit Launches · · Score: 1

    But I just love those names. It bring memories from Iain Banks' books. (he has universe in which spaceships are self-aware and have names in style of 'Just Testing', 'Killing Time').. read more here.