Slashdot Mirror


User: truedfx

truedfx's activity in the archive.

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

Comments · 323

  1. Re:The court order is meaningless on Google Relents, Publishes Belgian Ruling · · Score: 1

    Flemish/Vlaams is a dialect of Dutch.

  2. Re:try/except/else/finally on Python 2.5 Released · · Score: 1

    I think that's what my example did, but I'm very confused, so I'm probably wrong on that. Thanks, I think I got it now.

  3. Re:try/except/else/finally on Python 2.5 Released · · Score: 1

    So c gets executed after any "finally" clause?

  4. Re:try/except/else/finally on Python 2.5 Released · · Score: 1
    So basically,
    try:
    a
    except:
    b
    else:
    c
    is the same as
    try:
    rethrow = False
    a
    rethrow = True
    c
    except:
    if rethrow:
    raise
    b
    except without an extra variable? (I'm not sure how to make /. respect the spacing, sorry for that.)
  5. Re:nvi undo? on A Visual Walkthrough of New Features in Vim 7.0 · · Score: 1

    Actually, I do normally have nvi installed (and vim too). I just didn't know about nvi's . behaviour yet. :)

    Unfortunately, I'm not able to find a way to do what you want... After uu, a . should try to redo "redo", and report an error because there is nothing left. However, for vim to be able to emulate this, it must have a way of knowing that the last command was "redo". While it undoubtedly stores this somewhere, I can't seem to come up with a way to reliably tell from a function.

  6. Re:nvi undo? on A Visual Walkthrough of New Features in Vim 7.0 · · Score: 1
    Ah... I get it now. I don't think you can do that easily. You'd need to do something ugly. This seems to work (but I don't know a whole lot about vim's functions, so it's probably bad style at best, and possibly broken in certain cases):
    set cpoptions+=u
    func ReUndo()
    set cpoptions-=u
    let currentchange = changenr()
    silent redo
    if changenr() != currentchange
    silent undo
    undo
    else
    .
    endif
    set cpoptions+=u
    endfunc
    map . :call ReUndo()<CR>
  7. Re:Forget VIM on A Visual Walkthrough of New Features in Vim 7.0 · · Score: 1

    nvi seems to no longer be developed, unfortunately. If it does what you want, though, great.

  8. Re:No, it's *not* Moolenaar on A Visual Walkthrough of New Features in Vim 7.0 · · Score: 1

    Dutch uses umlauts like that. See for example "überhaupt", which while originally German can be found in Dutch dictionaries. And if you're referring to words such as "poëzie", that's a trema, not an umlaut.

  9. Re:nvi undo? on A Visual Walkthrough of New Features in Vim 7.0 · · Score: 1

    If you mean what I think you mean, you can get that by setting u in your cpoptions setting.

  10. Analogy time on Wii to be Region Free · · Score: 4, Informative

    Regular DVD players aren't region-free just because there exist DVDs suitable for all regions, right?

  11. Re:Oh, please.... on Why Johnny Can't Code · · Score: 1
    The writer of TFA is whining that computers no longer ship with a BASIC interpreter. That's been true since Microsoft shipped Windows 95--

    I don't have Win95, so I can't comment on that, but 98 and ME come with QBasic (albeit unavailable for a standard installation; you have to copy it manually). Yes, I know this doesn't mean anything for the rest of your post.

  12. Re:legal basis on German TOR Servers Seized · · Score: 1
    On what legal basis?
    FTFA:
    Those servers were most probably configured to be TOR Exit-Nodes, so their IP-addresses might have shown up in the server logfiles of the child-porn servers in question.
    Shame on them, investigating computers used to access child pornography. And as for
    --- http://world4.monstersgame.co.uk/?ac=vid&vid=47010 693
    What the fuck does this have to do with anything? (I browse with signatures disabled, so no, that is not a signature.)
  13. Re:Is the MPL the Mozilla Public License? on Debian Kicks Jörg Schilling · · Score: 2, Informative
    The MPL is incompatible with the GPL because MPL'd code can be combined with proprietary code.

    That's clearly untrue, as the FSF explicitly state that public domain code, (modified-)BSD-licensed code, X11-licensed code, and code released under various other licenses that can be combined with proprietary code is GPL-compatible.

    FSF says that MPL has "some complex restrictions that make it incompatible with the GNU GPL."

    This is why, and nothing more.

  14. Re:Really? on Internet Explorer 7 RC1 Released · · Score: 1

    Hm. I'm hoping my message was merely misunderstood, so here it is rephrased: copying ideas is not ripping anyone or anything off. People have been doing it forever, in the software world both for closed-source and for open-source, and assuming the ideas are good, that's exactly the way it should be.

  15. Re:Really? on Internet Explorer 7 RC1 Released · · Score: 0, Troll

    Microsoft copying good ideas from competitors is no more a rip-off than their competitors copying good ideas from them.

  16. Re:The GPL is Viral, deflection not withstanding.. on Misconceptions About the GPL · · Score: 1
    For example, dynamically linking to a GPLed library does not taint your code

    If a library is released under the GPL (not the LGPL), does that mean that any program which uses it has to be under the GPL?
    Yes, because the program as it is actually run includes the library.

  17. Re:Still I really dont like it. on Misconceptions About the GPL · · Score: 3, Informative
    Unrestricted freedom includes not having freedom in itself, by definition it is a paradox.

    There's no paradox. Software with unrestricted freedom will always remain free, just as software under the GPL will. If Johnny uses libfoo in his closed-source project, this does not prohibit anyone else from using libfoo, improving upon it, and possibly even releasing changes. The original code is still available, even if Johnny keeps the parts of the code that he wrote himself closed.

  18. Re:OK, but is it anonymous? on New Auto-Seeding Torrent Server Released · · Score: 3, Funny

    Illegally doing anything is illegal. If it's not illegal, and you do it, you're not illegally doing it. Duh.

  19. Re:ones and zeros on FairUse4WM Breaks Windows DRM · · Score: 4, Funny

    No, you don't. What gave you that idea?

  20. Re:To add to it on Ark Linux Review, A Distro with an Identity Crisis · · Score: 1

    Passing the Acid2 test does indeed not mean much, but there's one important thing you left out: not passing it guarantees the browser does not conform to relevant web standards. (Or that Acid2 is broken, but that's true with any test.)

  21. Re:Always remember... on Computer Voodoo? · · Score: 1
    The POSIX semantic is: sync() doesn't have to actually write everything, it can just schedule the commit. However, a second sync() won't return until the writes from the previous sync() finish.

    Quoting `man 3p sync`:

    DESCRIPTION

    The sync() function shall cause all information in memory that updates file systems to be scheduled for writing out to all file systems.

    The writing, although scheduled, is not necessarily complete upon return from sync().

    Why is a second sync() not allowed to return early? Either I'm blind, or it says no such thing.

  22. Re:Uh, yeah. on The Self-Modifying EULA? · · Score: 2, Informative

    You're missing the point, that's not an EULA.

  23. Re:The suckiest EULA I use... on The Self-Modifying EULA? · · Score: 1

    Could you please show any software copyrighted by the FSF that includes an EULA? :)

  24. Re:GPL 2 vs. GPL 3 on The FSF, GPLv3 and DRM · · Score: 1

    More accurately, he can't relicense the kernel under the GPLv3. He can prevent relicensing the kernel under the GPLv3 even if every single contributor other than himself wishes to change the license.

  25. Re:Don't we have this covered already on IAU Rules Pluto Still a Planet · · Score: 1

    Thanks. Looking at my own history, I see that I actually do something similar on occasion as well: I would visit http://groups.google.com/group/alt.news.group/ even though Google doesn't link to it with trailing slashes. Strange :)