Slashdot Mirror


User: scrytch

scrytch's activity in the archive.

Stories
0
Comments
2,435
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 2,435

  1. Re:Why Not KDE? on 'Gnome Foundation' Takes Aim at MS Office · · Score: 2

    4. You may distribute machine-executable forms of the Software or machine-executable forms of modified versions of the Software, provided that you meet these restrictions:

    a. You must include this license document in the distribution.

    b. You must ensure that all recipients of the machine-executable forms are also able to receive the complete machine-readable source code to the distributed Software, including all modifications, without any charge beyond the costs of data transfer, and place prominent notices in the distribution explaining this.

    c. You must ensure that all modifications included in the machine-executable forms are available under the terms of this license.

    Left that out because it doesn't support your petty little crusade, eh? A lie by omission is still a lie.

  2. Re:Just what my toaster and coffee maker need! on Microcontroller Linux · · Score: 2

    make doesn't take args like that

    make coffee strength=10 cups=3

    there. shame on you for telnetting in as root tho. :)

  3. Re:Who are the experts? on Ogg Vorbis - The Free Alternative To MP3 · · Score: 2

    Either of these arguments could have equally well have been applied to Elliptical Curve Cryptography when compared with the RSA algorithm, and ECC is only now being 'discovered' again long after its initial description.

    Crypto moves forward slowly for another reason too: safety. RSA has been hammered on like mad, we're still not sure that ECC doesn't have some fatal weakness.

  4. Re:i just can't shut up today.. on Ogg Vorbis - The Free Alternative To MP3 · · Score: 2

    the whole hardware-mp3-player hype is mind boggling to me. i mean, i understand it, as a fad and gadgetry thing, but.. you're basically making a downgrade in your audio system when you go from a CD player to a straight-up mp3 player. the hybrids are the obvious, good, middle-ground.. as long as the price difference is reasonable.

    In the portable market, it's a no-brainer. No moving parts, so no skip, no wear, ever. Music is easily downloaded from napster (you don't think anyone pays for the music on their portable mp3 player?) As for the component system mp3 boxes, I don't see those lasting, no.

  5. Re:Technology is not the problem, people are on Human ID Chip Implant Prototype Unveiling · · Score: 2

    > Carrying the kitchen sink while inching up a cliff face not only slows you down, it reduces your life expectancy. So, I don't want to lug around a cellphone, GPS, PDA, cash, credit cards, organ donor card, maps, compass, pen, torch, radio, or altimeter (:-).

    Cellphone, GPS, PDA, maps, compass, radio, and altimeter could all be one device you stick on your belt. Probably the cash and cards too. Probably would use an expansion card for the uber-PDA device for the GPS, compass and altimeter. This way this very expensive collection of devices doesn't peel off when you scratch an itch on your forehead, and it lets you loan it to others as well.

  6. Re:Why Not KDE? on 'Gnome Foundation' Takes Aim at MS Office · · Score: 1

    Qt remains the property of TrollTech. It can't be forked.

    Chapter and verse of the QPL that forbids forking, please? Troll.

  7. Re:Bush=MS, Gore=Linux on BSD And Politics · · Score: 2

    Yes, and when you look at the sites for the political parties, the Democrats are running NT and the Republicans Solaris. Big hairy deal.

  8. Re:Proposal: Linux Unified Model on Let's Make UNIX Not Suck · · Score: 2

    SOAP to handle low-level? My god, you thought cross-process CORBA calls were expensive to marshal, it has nothing on SOAP.

    XPCOM is nice, but it's in-process only and any attempt to use component server middleware would be a grotesque hack ala DCOM.

  9. Re:Wanted: Killer Apps for World Domination on Let's Make UNIX Not Suck · · Score: 2

    >Sorry, but you've got no defense here. Balsa, Mutt, even emacs will read mail.

    And none of them handle multiple POP accounts. Mutt certainly isn't going to display that scan of the new baby in the message, or show a company logo at the top. I guess no one ever included pictures in snail mail either or ever wrote on letterhead either. But YOU have no use for these features, so they're useless, right?

  10. Just a minor question: on Let's Make UNIX Not Suck · · Score: 2

    How do you pronounce Miguel's last name?

  11. unix comes with a perl obfuscator on 5th Annual Obfuscated Perl Contest · · Score: 5

    cat

  12. Can we get a damn linking standard? on Let's Make UNIX Not Suck · · Score: 2

    First, the dark green of links is hard to distinguish from the black in some conditions. Then there's the black for the "clicked link", so after I popped it up earlier then closed it before reading it, the link effectively disappeared. Then there's the philosophy of putting the link to the talk/paper/article *anywhere* but the first time it appears as a noun. In this case, I had to scrub the text with my mouse until the end where the cursor finally changed over "read"

    I swear, reading slashdot is like playing myst some days.

  13. Re:Disappointed about boxing/unboxing on C# Under The Microscope · · Score: 2

    > Really elegant boxing would allow you to treat primitives as full, first class objects. Then you could, for instance, have a synchronized block use an integer as its lock object.

    Bad form. First of all, nothing about an int says "lock", specialized lock classes like Mutex or Semaphore and whatnot are far more descriptive. Secondly, that lock probably requires a unique value now, where otherwise it could be reused by other unboxing operations using the same value. (i.e. one lock on a "5" object now requires a different object than a different lock on a "5" object)

    Smalltalk has been doing automatic [un]boxing for eons now, I'm disappointed to see other languages still don't do this.

  14. Re:That's OK, he's confused, too... on C# Under The Microscope · · Score: 2

    I kind of started to wonder about the guy's programming background when he started referring to "classes with holes". Every whitepaper on whatever language I've seen that implements this feature refers to it as "parametric polymorphism". Something java still greviously lacks -- safe downcasts work but are still annoying to do by hand. If I wanted to do everything by hand, I would still be using the switches on the console.

  15. It's a sink, says nethack on C# Under The Microscope · · Score: 1

    :)

  16. Re:Ack! Significant whitespace! on C# Under The Microscope · · Score: 2


    Depends on your definition of correctness. ;) If you wrote:

    if( myCondition) {
    doThingOne();
    doThingTwo();
    }


    1) It would at least run. Can't say that for python.

    2) Who writes code like that anyway?

    3) By pressing exactly one key (actually a vulgar combination of three bucky bits and a key) in emacs, i can reformat the entire source so it is indented properly (this function does marvelously with C and C++ except for multiline macros, has some problems with perl). Since indent determines scope in python, this trick is impossible with python.

    Maybe when I have less worries about being able to pay rent and grocery expenses in the near term (translation: i get a job) I'll resume my work on ni, which stands for "no indent", and will be my attempt at writing a new grammar for python that will still produce compatible bytecode. Just for kicks, I'll probably merge stackless in with ni as well, and will probably start diverging from the language once the grammar is established. I had the basics of the grammar working, but thanks to the coziness of python's lexer and parser, it still has some problems.

  17. Re:Bzzzzt!!! Wrongo! on Slashback: Reneging, Wandering, Spamming · · Score: 2

    > Didn't Colorado recently pass an anti-spam law?

    Yeah but it was one of those lame "must start with ADV" things. Unenforceable across state lines, incompatible, etc.

    I did find it kind of amusing that Qwest does use the ADV subject in their emails to me, even though I'm a subscriber to their ISP service, so they don't really need to. Already raises my opinion of them from the rock bottom USWest occupied.

  18. Re:mode co80 co-dependent on Windows ME - The End Of UMSDOS And BeOSfs Over Vfat? · · Score: 2

    > Every time I try to type mode co80 at the logos.sys (It is now safe to switch off your computer) screen, my computer always loses power before I can finish typing.

    Try turning off power management in the BIOS, lemme know if this works. I suspect not, it probably issues a HALT or something.

  19. Re:What's Wrong With This Picture on Windows ME - The End Of UMSDOS And BeOSfs Over Vfat? · · Score: 2

    > DOS lets the user replace anything with everything; under the Windows model, Microsoft holds the final say on what calls you're allowed to issue, what memory you may rewrite, what partitions you may generate

    Oh jesus h christ now i have heard it all. are you now crucifying microsoft for having protected memory?

  20. Re:Additional XBox facts on Official Xbox XDK Details · · Score: 1

    > In all other catagories (games are yet to be seen of course) XBox blows the competition away.

    Isn't that sort of a big-ass omission for a game machine? ;)

  21. Re:Running Windows 2000? SP1? on Official Xbox XDK Details · · Score: 2

    > I recently read in a NG about a doctor whose devices used Windows, and one day crashed mid-surgery!

    You believe everything you read on usenet?
    score -1, bullshit

  22. Re:Around here... on Programming Interviews Exposed · · Score: 2

    > The software companies would like you to believe that there is a shortage of workers

    Because it's true. You think they like paying a premium in a market where the interviewee has the upper hand and feels he can take off for another company if he has a few bad days? This doesn't mean every company is hiring ignoramuses, most would rather leave the position unfilled than pay someone who can't do the job.

  23. Re:Some handy interview tips. on Programming Interviews Exposed · · Score: 2

    Copulate.
    Except for acting jobs.

  24. Re:1984 in 2000 on Apple Sues To Stop Leaks · · Score: 2

    > So you feel employees have a right to leak confidential Apple materials for personal gain? Huh?

    So you feel Apple has a right to sue news organizations for reporting? Huh? How much does Apple pay you to astroturf for them?

    I'd been pondering getting one of those cubes (tho I'd really like to see how they make a 50X cdrom quiet), but with no Radeon (no, I don't believe Jobs killed that, but what is in there *is* inadequate) and Apple now suing the media ... forget it.

  25. Re:NDAs are *NOT* as Important as the First Amendm on Apple Sues To Stop Leaks · · Score: 2

    > Apple also has the right to protect their trade secrets.

    Where were you when Microsoft was protecting their Trade Secrets? Where are you now while the MPAA is protecting theirs? You are an Apple apologist, and I doubt your basic integrity.