Slashdot Mirror


User: rixster

rixster's activity in the archive.

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

Comments · 156

  1. Re:Spaghetti on Top 100 Hoaxes of All Time · · Score: 1

    Patrick Moore's great. I grew up in his home town (Selsey Bill) and visited his house when about 6. Very clever and very funny guy. He use to cycle his bike from his house to the cricket ground - where he use to play - and to the Indian restaurant in which he still frequents.

  2. Re:Free World Dialup? on Snooping on VOIP · · Score: 2, Interesting

    I use vonage as well. I live in the UK and my SO in NY. I get unlimited international (i.e. UK US) calling for 30 usd a month. Plus she can call me for the "cost" of a local phone call and the line is nothing short of excellent quality. OK - a few times they've had problems, but in the space of around 8 months I can only think of 2-3 times this has happened. It is definitely a fantastic server. (recommend me and get 40 USD free!!)

  3. Re:I've said this before.... on Linux Is Cheaper · · Score: 2

    here here !! Great comment - it's almost worth putting up flyposters with this on ! ( If only I had never commented in the thread of death then maybe I would have had mod points given to me in the last year ! )

  4. Re:Personally, I would rather not... on Yahoo Buying Inktomi · · Score: 2

    D'oh. And there was me having to move the mouse each time. (I'm serious!). Cheers for the tip !

  5. Re:I dont get this... on Microsoft Ordered to Carry Java · · Score: 2

    nothing to do with the comment - but your sig made me laugh.

  6. It's a dupe !! on Killing Unwanted Text Messages from Yahoo! Alerts? · · Score: 1, Offtopic

    Sorry - force of habit

  7. Re:Canada, eh? on ElcomSoft Verdict: Not Guilty · · Score: 2

    Oh no. The UK is next in line to be the 51st state (and that's in jest too - ok ?) !

  8. Re:The problem with the hacker ethos on The New IT Crisis · · Score: 2

    I agree with both of you - but more the first poster ! If you speak only French, and your boss (i.e. the person with the cash) speaks only German - in what language do you think you've got a better chance of extracting some of those green wrinklies from them ? (and I'm talking about dollars)

  9. Re:In Soviet Russia... on Affero's Hack-a-Thon · · Score: 0, Offtopic

    In Soviet Russia we imagen a beowulf cluster of these...

    In Soviet Russia, Beowulf imagines a cluster of YOU!


    In a Beowulf cluster, you imagine a Soviet RUSSIA !

  10. Re:Too easy to bump. UI disaster. on Gateway Puts Wasted Cycles to Work · · Score: 2

    FWIW, My Mac Cube G4 switches off the moment I use my garmin rino within 3 feet of it.
    Imagine my surprise the first time I found this out
    And yes it is true. It also switches it back on again, but that's little consolation.

  11. Predicted !! on Gateway to Ship PCs with Pre-Installed DRM Music Files · · Score: 2
  12. Re:Virtrual private servers are the way to go for on How Much Do You Pay to Host Your Website? · · Score: 2

    I just looked at hostmania and they look like a purely MS shop. Where's the BSD option ??

  13. Heh - Philips fisio 820 is almost as bad.. on Testing an Orange SPV 'Smartphone' · · Score: 5, Informative

    ... so bad in fact I started writing exactly what that dude wrote about his SPV. Unfortunately, I wanted to write too much and never finished the damn thing. There's two great features of the Philips I love - the "egg timer of death" (every now and then an egg timer just appears - the only way you get rid of it is to pull the battery) and the complete inability to remember the time and date if it crashes (see previous) and you have to pull the battery. Oh, and the THIRD thing I hate about it is that although it has xxx kb for storing background images, it can only store around 10 SMSs. Go figure that, eh ? Oh AND you just can't redial easily. AND it's got a really unfriendly keyboard lock / unlock feature. It's time for bed. I can't start this whinge now.

  14. Re:Question... on Bricklin on Tablet PCs · · Score: 2

    I just hope you're not going to multiply with yourself twice. Now that would be a scary thought ;-)

  15. Re:Tompkins Square Park on The Wireless City · · Score: 2

    I've got the same Linksys - just login to it and check the logs - it'll tell you about the MACs that've been using it and the access they got

  16. Re:Does that mean... on COMDEX Opens with Smallest Attendance Ever · · Score: 2

    Probably the same place you went to learn the skill of abbreviation.

  17. Re:and if id ever got to the point on Microsoft Profit and Loss by Business Area · · Score: 2

    What you don't know is that the poster is either BillG or SteveB

  18. Re:Actually pretty darn good on Xbox Live Goes Online · · Score: 3, Funny

    Can you reply with your credit card numbers please so I can test them from my router ? Maybe it will work then.

  19. Re:Tinfoil hat translation on Taiwan Asks Microsoft To Open Windows Source · · Score: 2

    No - he's talking about the USof "A" and that removal-of-privacy bill soon to be passed...

  20. UK Support ? on Review: EyeTV · · Score: 2

    I've had a cursory look at the website and the comments so far but I can't see if it'd work in the UK (i.e. with PAL). Anybody got any references / success stories ??

  21. Re:Anti-spam system on The Economics of Spam · · Score: 2

    I second this idea - even better is the use of a different email addy for each website you visit. Registering at cnn ? Use cnn.com-rixster@your-domain.com . Then, when (finally) your email addy gets sold by one of those less scrupulous(sic?) websites that went tips up, you can determine immediately who sold it, and send 'em a snooty email. OK, you don't get anything material from it - but at least it gives you the satisfaction that you've probably sent the shivers up the spine of the techies who flogged it.

  22. Re:The first thing you need to know... on Teach Yourself UNIX System Administration In 24 Hours · · Score: 1

    DAMN - No funny points

    For those of you who didn't know
    :wq is the same as ZZ if you want to save a file and quit.

  23. Re:The first thing you need to know... on Teach Yourself UNIX System Administration In 24 Hours · · Score: 4, Funny

    Is that so ? ZZ

  24. Re:A better use of time on Just One Page a Day · · Score: 2

    I'll do the first bit and last bit for you...

    sub getPerfectOCR()
    {
    my $raw_data = shift;

    my $completed_text;

    # 1. Process
    # 2. ???
    # 3. Profit

    return $completed_text;
    }

  25. Re:recur$ive loop$ on IBM Wants CPU Time To Be A Metered Utility · · Score: 2

    What's wrong with recursive loops ?
    func int factorial( int x ) {
    if x < 1 return 1;
    return x * factorial ( x -1 );
    }