Slashdot Mirror


User: doti

doti's activity in the archive.

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

Comments · 774

  1. gratitude on Jimmy Wales's Open Source Collaboration Tips · · Score: 1

    RU: Have you been interested in the open source movement for a long time? Are you a fan of Richard Stallman and the Free Software Foundation?

    JW: Oh yeah. We really owe Richard a debt of gratitude for all that. So do I.
  2. Use alternatives where possible. on Fight DRM While There's Still Time · · Score: 1

    And in what case you must buy DRM stuff?

    Just don't buy it. Period.

  3. Re:Bad or good idea on OSDL and The Free Standards Group to Merge · · Score: 1

    I think that e) belongs to the "bad idea" group.

  4. isn't Overrated even easier? on Woman Killed In Wii-Related Competition · · Score: 0, Offtopic

    I don't remember ever seeing an "Overrated" mod when I'm meta-moding.
    Don't these get meta-moderated?

  5. Re:Destroying your server in 4 easy steps. on Virtualbox Goes OSS · · Score: 0

    What about a multi-megapixel image direct from the digicam, displayed as a thumb?

    https://wwws.bradescosaude.com.br/seguro/PaginaNao Encontrada.asp

  6. Re:features on Firefox 3 Plans and IE8 Speculation · · Score: 0, Redundant

    Firefox will became more and more bloated with features, then one it will reborn from ashes as a new project called Phoenix, that will be a bare-bones light and simple browser, that uses the rendering core of Firefox.

  7. Re:Heard of Youtube? on A 3D Printer On Every Desktop? · · Score: 1

    Since Oct/06 MPlayer can decode WMV9.

  8. Re:Sounds familiar... on Astronomer Discovers the Most Distant Stars Ever Observed From Earth · · Score: 2, Informative

    I had a catastrophic brain fart trying to get my mind wrapped around the idea of a billion light years. Douglas Adams prediced that:

    Space," it says, "is big. Really big. You just won't believe how vastly hugely mindboggingly big it is. I mean you may think it's a long way down the road to the chemist, but that's just peanuts to space.
  9. Re:Hard to explain on Stallman — 20 Years of Explaining Free Software · · Score: 1

    The only thing GPL tells you can't do it to restrict others from these same freedoms.

  10. Re:Acronym overload on Virtualization In Linux Kernel 2.6.20 · · Score: 1

    Neither do I.
    I just copy/pasted the a short description from somewhere to the disambiguation page, not an entire article page.

  11. Imagine... on The Astronomical Event Search Engine · · Score: 1

    The telescope will generate 30 TB of data a night, for 10 years, from a 3-gigapixel CCD array. Imagine a Beowulf cluster of these!
  12. Re:Acronym overload on Virtualization In Linux Kernel 2.6.20 · · Score: 0, Offtopic

    So why don't you add it to Wikipedia, instead of posting it here?

  13. Re:evolution on Stallman — 20 Years of Explaining Free Software · · Score: 1

    it's interesting to see what has changed over 20 years. One thing I know will never change:
    http://rodolfo.borges.googlepages.com/gnu
  14. Re:Hard to explain on Stallman — 20 Years of Explaining Free Software · · Score: 2, Informative

    it's about source code, not price. No, it's not about code, it's about freedom.
    How good is to be able to see the code, if you can't modify and redistribute it?
  15. Re:heated pool on Water Cooling Computers With A Swimming Pool · · Score: 2, Insightful

    No it's not like that AT ALL. Not for you, but maybe for him.
    You like climbing mountains, the other guy may not find it interesting at all.
  16. depends on Which Movie Download Site Is Best? · · Score: 1

    Torrent is faster for new, popular movies.
    Edonkey may be slow, but only there you can find those old, rare, or obscure movies.

  17. Re:Free Software games on Slashdot's Games of the Year · · Score: 1

    Some Free games are very nice, specially the simple ones (not surprisingly, as they can't compete with the multi-million-dollars production effort of commercial games). The already mentioned Battle of Wesnoth and Freeciv are among my favorites strategy games. For action, Kobo Deluxe and Koules are pretty nice. Recently I found also XMoto, which looks silly, but is very fun to play.

  18. Re:I presently work for EVERBODY on Firefox Creator No Longer Trusts Google · · Score: 1

    That's why Google needs a NEAR operator, like in glark.

    The command glark -a 5 "I work" TrisexualPuppy finds "I work" and TrisexualPuppy separated by not more than five lines.

  19. Re:apt-cache apt-file on Fedora Project to Help Revitalize RPM · · Score: 1

    The point is not the ability to install packages by hand. The point is that's that the system doesn't force package dependency on you; and the package system will never get messed up to a point where you can't do any operation, caused by of a fault on the dependency scheme, because there's no dependency scheme at all.

  20. use at your own risk =) on Fedora Project to Help Revitalize RPM · · Score: 1

    #!/bin/bash

    date=`date +%Y%m%d`
    name="`basename $PWD`"
    [ "$name" == "src" ] && name="`basename $(cd ..; echo $PWD)`"

    if test -d 'CVS'; then
        args="--pkgversion=cvs.$date"
    elif test -d '.svn'; then
        args="--pkgversion=svn.$date"
    elif test -d '.git'; then
        args="--pkgversion=git.$date"
    else
        name="`echo "$name" | cut -d - -f 1`"
    fi

    if test -f SConstruct -o -f Sconstruct -o -f sconstruct; then
        cmd="scons install"
    else
        cmd="make install"
    fi

    if test -e /etc/slackware-version; then
        t=slackware
    elif test -e /etc/debian_version; then
        t=debian
    elif true #TODO: proper test for redhat
        t=rpm
    fi

    cmd="sudo checkinstall --type=$t --nodoc --pkgname=\"$name\" $args $cmd"
    echo "$cmd"
    read -p "proceed ([y]/n)? " answer
    test "$answer" == "y" -o "$answer" == "" || return
    $cmd

  21. Re:I've got something to say! on Fedora Project to Help Revitalize RPM · · Score: 2, Interesting

    I would suggest you to use checkinstall.
    It's a wrapper for "make install" that creates a package and installs it, so that the software:
    1) Gets cataloged on your system's package manager, and
    2) Can be easily removed with the normal system package tools.

    I made a nice script that guess all the fields of package information, like name and version (from the dir name, or from date, in case of cvs/svn/git), and pass them to checkinstall for a non-interactive one-shot install. If anyone is interested, just ask and I'll post it here.
    I works very well on Slackware, and now I'm adapting it to Debian too. (I also switched from Slackware to Ubuntu, but because of hardware support. It's not that easy to configure the kernel and required software these bluetooth/dvd-burner/usb/cellphone/digicam days.)

  22. Re:I've got something to say! on Fedora Project to Help Revitalize RPM · · Score: 2, Interesting

    There is dependency problems on Gentoo too. I have been there, and saw it while trying to install X.org 7.1.

    At least in Debian/Redhat you know there's problem in the moment you try to select/install the package.
    In Gentoo, I had to wait three days compiling stuff until it showed up.

  23. Re:I've got something to say! on Fedora Project to Help Revitalize RPM · · Score: 2, Interesting

    I call it heaven.
    That was no joke. I went from Debian (tried Redhat too) to Slackware because I couldn't stand for dependency hell anymore.

    Of course it has a different public. I would recommend Ubuntu for a newbie, but if you have enough experience, Slack's simplicity, elegance, and control are unbeatable.

  24. KMFMS! on Why Does Everyone Hate Microsoft? · · Score: 1

    I'm surprised no one mentioned KMFMS yet, and their great article What's So Bad About Microsoft?.

  25. Re:I've got something to say! on Fedora Project to Help Revitalize RPM · · Score: 4, Funny

    If you hate dependency hell, you should try Slackware: no package dependency at all!
    If you install a program and it doesn't run, check the console messages for the missing library (or just ask Google), and install it by hand.