Slashdot Mirror


User: Ryan+Mallon

Ryan+Mallon's activity in the archive.

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

Comments · 37

  1. Lego Today on Top 100 Toys From The '70s or Thereabouts · · Score: 1
    Not only that, but lego sets these days contain so many special pieces to make the models more closely resemble their movie conterparts that it takes all the fun out of construction.

    In the old days to build something like a pirate ship or castle you needed to figure out how to arrange the various rectangular blocks together to make the right shapes. Now you just grab the large pre-made lego pieces and all the work is done for you.

  2. Re:Qbasic on Programming For Terrified Adults? · · Score: 2, Informative

    There is even an active Qbasic community: www.qbasicnews.com

    The problem with Qbasic is that it is becoming harder and harder to get DOS software to run properly with each release of Windows. You could also try one of these Basic compilers/interpretters: Basic compiler/interpretters list

  3. Re:Linux art varies greatly.. on Everaldo and Jimmac On Linux Art and Usability · · Score: 1

    I believe this should be, at least partly, the responsibility of the distribution companies. Too many of the Linux distros come with everything and the kitchen sink installed, and the end user gets a whole bunch of applications that look completely different.

    The distros should limit the number of applications that are included in a standard install to the few that the think that a typical user is really going to need, and then work on making each of them look the same. The other applications can then be provided as optional, if you accept that some of them dont look nice.

    Redhat's Bluecurve and projects like Gnome and KDE are slowly getting there, but too many applications that are being shipped with the major distros have entirely different layouts, widgets and icons, or dont work with things like mouse scroll-wheels or the clipboard correctly.

  4. Better title on Star Wars Episode III : Birth Of The Empire · · Score: 2, Interesting

    I thought a better title would be something along the lines of Episode III: Fall of the Jedi, which ties in with Episode VI being the Return of the Jedi.

  5. Re:In related news... on Safe and Insecure? · · Score: 1
    First note to anyone setting up commercial installations is ONLY KEEP WHAT YOU ABSOLUTELY NEED, actively /dev/null everything else. Records have a way of getting outed in court, refer to Netscape/M$/MCI cases.
    Isn't redirecting information to /dev/null technically destroying it. If an application generates some logging info, then you have it in your possesion, sending it to /dev/null is therefore destruction of data you own.
  6. Re:But the question is, on Via-based Handheld Game Console Runs PC Games · · Score: 1

    Unless you have strange boomerang shaped pockets, that beast isn't going to fit either. What I was getting at is, for a similar price to the Eve portable you could buy a second hand notebook pc with the same specs, except that it would have a keyboard and a larger screen. If you want a handheld gaming system, buy something like a gameboy that has a large set of titles and fits right in your pocket, if you want a portable pc that plays games and connects to the net, buy a notebook. I think the Eve is attempting to fill a non-existant gap in the market.

  7. Notebook? on Via-based Handheld Game Console Runs PC Games · · Score: 2, Informative

    A small notebook pc would be about as easy to carry around as that thing, and it will play most existing pc games too. Plus the notebook's screen will actual ly fold down, meaning you could store it somewhere when you aren't using it.

  8. Your C-sig is also not ANSI compliant on BASIC Computer Language Turns 40 · · Score: 1
    main should never, ever, even in signatures, return void. You also failed to include stdio.h, and you will most probably run out of stack space at some stage seeing as main is recursive and all. A more "l33t" signature would be:
    #include <stdio.h>
    int main() {
    printf("Jorkapp is a \"Programmer\"");
    return 0;
    }
  9. Re:Code for getting laid on Dating Design Patterns · · Score: 1

    Oops, Forgot the code mode ;-)

    public class Geek implements Acne, Drool {
    public boolean getLaid() {
    Woman woman;
    boolean foundWoman = false;
    /* Find a potential date */
    while(!foundWoman) {
    woman = findWoman();
    if(woman != null) foundWoman = true;
    }

    /* Go out on a date */
    if(requestDate(woman) == Woman.ANSWER_NO) {
    return false;
    }

    /* Ask her back to your place */
    if(askComeHome(woman) == Woman.ANSWER_NO) {
    return false;
    }

    /* Try and get laid */
    if(askForSex(woman) == Woman.ANSWER_NO) {
    return false;
    } else {
    panic("Still a virgin");
    }
    }
    }

    The first problem with this algorithm is that the findWoman() method for the Geek class is NP-Complete ;-)

  10. Code for getting laid on Dating Design Patterns · · Score: 1

    public class Geek implements Acne, Drool { public boolean getLaid() { Woman woman; boolean foundWoman = false; /* Find a potential date */ while(!foundWoman) { woman = findWoman(); if(woman != null) foundWoman = true; } /* Go out on a date */ if(requestDate(woman) == Woman.ANSWER_NO) { return false; } /* Ask her back to your place */ if(askComeHome(woman) == Woman.ANSWER_NO) { return false; } /* Try and get laid */ if(askForSex(woman) == Woman.ANSWER_NO) { return false; } else { panic("Still a virgin"); } } } The first probelm with this algorithm is that the findWoman() method for the Geek class is NP-Complete ;-)

  11. Re:Command line is your friend on The Command Line - Best Newbie Interface? · · Score: 1

    I didn't know others still used these keyboards. I hunted for ages to find one, plus I had to get a 5-pin DIN to ps/2 adapter so I could plug the beast into my machine. My girlfriend hates it at the moment cause the computer is in our bedroom and the clicky keys keep her awake ;-)

  12. Not just adware and spyware on Which Adware and Spyware are the Most Insidious? · · Score: 4, Interesting

    More and more applications are becoming intrusive, software such as Winamp, Windows Media Player and Kaaza all having annoying dialog boxes which popup each time you run them if they detect a newer version which you haven't yet downloaded. MSN actually refused to do anything until I upgraded it.

    A large number of applications now have an online registration feature, they dont force you to do the registration, but they will bug the hell out of you if you choose not to.

    Applications such as RealPlayer try and sign you up to email based newsletters(spam), why should I have to give my details (email address, home address and hobbies for example) to a company in exchange for using their software?

    There seems to be a gradual increase in the invasiveness of software, currently most of these 'features' are still optional, but I dont think it will be long before many software companies start making things like software updates, online registration and having a valid email address mandatory.