Slashdot Mirror


User: maroberts

maroberts's activity in the archive.

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

Comments · 2,247

  1. You are doing it wrong on Ask Slashdot: Monitor Setup For Programmers · · Score: 0

    Plug a real keyboard and mouse into the laptops USB sockets. You don't need the laptop in front of you, just the screen, mouse and keyboard.

  2. Re:broken metaphor on Crysis 3 Review: Amazing Graphics, Still a Benchmark Buster, Boring Gameplay · · Score: 1

    Sure - but can it run Crysis?

    No but EMACs can...

  3. Re:Stupidity on Play Wii, Become a Better Surgeon · · Score: 2

    Wouldn't they improve even more by practicing with real laparoscopes?

    That would require real patients or a dummy/model to practice on. The latter are surprisingly expensive.

    I'm surprised that no one has produced a medical application to improve such skills using Wii Remote or Kinect type technology. I grant that the title would probably cost substantially more than your typical console game, but would be cost effective in reduction of medical cockups and improving training.

  4. I use my tool with two hands on Smartphone Screen Real Estate: How Big Is Big Enough? · · Score: 1

    Okay thats enough of the double entendres.

    However even with a small phone, I rest it in the palm of my hand and prod out the digits with a finger from the other. So I don't regard the one hand test as invalid.

  5. Re:I have a Galaxy Note on Smartphone Screen Real Estate: How Big Is Big Enough? · · Score: 2

    The phone that I broke in my pocket was a standard size phone. (Samsung G800 IIRC)

  6. I have a Galaxy Note on Smartphone Screen Real Estate: How Big Is Big Enough? · · Score: 5, Interesting

    ..and it fits perfectly in my breast shirt pocket. I don't put phones in trouser/pants pockets ever since I broke a screen of one by doing so.

    I love the Note as its large display makes a great GPS device when in its car holder.
    The main thing I want in a smartphone now is enormous battery life as well as the features. I do miss the days when you could charge your phone once a week, but not so much I'm willing to go back to having a basic phone.

  7. He didn't die on Doctor Who's Dalek Designer Dies At 84 · · Score: 5, Funny

    He was ex-term-inat-ed.

  8. It is unfortunate on U.S. Reps Chu and Coble Start Intellectual Property Caucus · · Score: 1

    That this is probably not about protecting the rights of artists, but extending the rights of corporations over the people. Next up, music copyrights taken over by companies because it is produced as work for hire, extension of copyright terms for "limited times" of 999 years, overrides to laws of first sale, increased use of trade marks to block copyright expiry etc.

  9. Old News on Bionic Hand Wired To Nerves Can "Feel" When Touched · · Score: 3, Funny

    Steve Austin did all this years ago

  10. Why $208 million? on California Cancels $208 Million IT Overhaul Halfway Through · · Score: 3, Insightful

    Okay, the system presumably has to handle about 30 million drivers and vehicle statistics, as well as other information such as traffic citations. I assume it's only accessed through a few hundred offices plus allow access to authorised systems (police etc) at any one time. Obviously it's got to be reasonably secure and perhaps operate at more than one site to cater for disaster recovery and redundancy. This is not beyond the capabilities of a few large servers to handle (I presume that cloud storage may be out due to security issues). Such a system could supply the information to Windows/Unix or even phone app clients. I assume driving licenses and vehicle ownership records have to be printed and sent from an office somewhere.

    What else is in the scope of the project? Why does it cost several hundred million bucks to develop a new system? I can understand perhaps 10 million to develop and install. The biggest problem I can see is porting the data from the "40 year old antiquated system" to the new one. Someone must be able to explain where the extra £198 million has to go, apart from the contractors pockets.

  11. Bang! :-) on Ask Slashdot: Are Timed Coding Tests Valuable? · · Score: 1

    perl -E 'say # print
          map # do the block...
          {(
            (Fizz)[$_%3]. # Fizz every 3
            (Buzz)[$_%5] # Buzz every 5
              ||$_) # if we're not Fizzing or Buzzing, print the number ."\n" # add LF to result
            } 1..100' # ... for 1 to 100

    Simples

  12. Re:I dunno... on Ask Slashdot: Are Timed Coding Tests Valuable? · · Score: 1

    Well in a real job, my code would be as short as possible, but with comments explaining any tricky bits.

    In any event, if you look carefully, it's not obfuscation, it is a single "map" call; something any reasonable Perl programmer should understand immediately.

  13. Re:I dunno... on Ask Slashdot: Are Timed Coding Tests Valuable? · · Score: 2

    There's the straight version...

    #/usr/bin/perl
    for my $i (1..100) {
          my $s = '';
          if ($i % 3 == 0) { $s .= 'Fizz'; }
          if ($i % 5 == 0) { $s .= 'Buzz'; }
          print $s ? $s : $i, "\n";
    }

    And for Real Men

    perl -E 'say map{((Fizz)[$_%3].(Buzz)[$_%5]||$_)."\n"} 1..100'

  14. Wireless camera pill? on Worldwide Shortage of Barium · · Score: 1

    Surely can't be that expensive to make one, given that most of the components are on virtually every mobile phone on the planet.

  15. Re:What the what what? on Worldwide Shortage of Barium · · Score: 4, Funny

    It's more invasive, more expensive, and requires general anesthetic.

    No. It can and usually is done under twilight sedation.

    I can see that would work; watching the Twilight movies would put anyone to sleep.

  16. Cool on NASA's Ion Thruster Sets Continuous Operation Record · · Score: 0

    Imagine 2 of these engines in a single pilot machine, equipped with lasers and with a solar panel on each side for electricity generation and to shield the body from excess solar radiation. We could call it a TIE Fighter....

  17. ..and there's more on What Debris From North Korea's Rocket Launch Shows · · Score: 1

    The fact that the rocket is based on old technology is "Scud" news for South Korea. /tish

  18. Rear entry on New NASA Spacesuit Looks Like Buzz Lightyear's · · Score: 1

    ...as recommended by our consultants on this project Goatse Enterprises.

  19. Re:Payment Processors are Private Companies on EFF Spinoff Pools Donor Dollars To Prevent WikiLeaks-Style Payment Blockades · · Score: 1

    Because of their stranglehold on the transaction market, it can be argued that they are a monopoly and perhaps subject to anti-trust legislation. Also the fact that they may have acted in concert may be deemed anti-competitive; there is plenty of legislation that the EFF can fight with. Admittedly it would be breaking new legal ground, but that hasn't stopped the EFF bringing such actions before.

    Also by having a stranglehold on a particular market it is possible that you have a "right" to have your transactions processed, in the same way as internet access is in some countries, beginning to be seen as a right.

  20. Re:Spot the obvious problem on EFF Spinoff Pools Donor Dollars To Prevent WikiLeaks-Style Payment Blockades · · Score: 5, Insightful

    IIRC the payment processors have performed this economic blockade without due process or a legal ruling, so to clobber this organisation would take a court hearing, which may be what EFF is angling for.

  21. Good idea on White House Must Answer Petition To 'Build Death Star' · · Score: 1

    Why even have a central core at all? A distributed power system (hundreds of smaller reactors throughout the structure instead of one big reactor at the core) would completely eliminate that vulnerability and improve power uptime through sheer redundancy. An attacking force would have to destroy the Death Star piece by piece instead of blowing up the main core all at once.

    Maybe you should organise them all with redundant interconnects; lets call it a Beowulf cluster of these....

  22. Re:Remove the obvious structural weaknesses on White House Must Answer Petition To 'Build Death Star' · · Score: 1

    Still don't understand how that photon torpedo curved into the shaft.

    Gravity maybe; any sufficiently large space station will have its own attractive force, whether due to its own size, or producing articifial gravity for it's crew.

  23. It could be worse on Google Loses Santa To Bing · · Score: 1

    If Santa was using Apple Maps, your presents would be delivered down someone's chimney 7 miles away......

  24. I know why they haven't succeeded on Laser Fusion Put On a Slow Burn By US Government · · Score: 1

    Not enough sharks

  25. The gift that keeps on giving on Malicious QR Codes Posted Where There's Lots of Foot Traffic · · Score: 1

    When you put links to Tubgirl and Goetse on top of realtors(estate agents) QR codes