Slashdot Mirror


User: MadKeithV

MadKeithV's activity in the archive.

Stories
0
Comments
1,183
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 1,183

  1. Re:Keep up or shut up on Should Younger Developers Be Paid More? · · Score: 1

    The real issue is that the Senior guy was going to have to hand-hold the new hire through all the business processes, work-flows, documentation...

    No, the REAL issue is that after a year or two of supporting the overpaid new hires while they constantly complain about the state of the "legacy code", the senior is fired because he hasn't kept his skill set up to date nor kept the legacy code under control, because he was forced to support the overpaid new hires and didn't have time to do so.

  2. Re:Wishing him well on Steve Jobs Taking Medical Leave of Absence · · Score: 1

    Sarah Palin would draw the bullseye ON Uwe Boll.

  3. Re:OP Doesn't Understand The Law on Robots May Inspire Suits Against Programmers · · Score: 1

    Consider, there is no educational or professional certification required to write and sell software that controls an infant incubator used in an NICU

    But you do need FDA approval to be allowed to sell the software, which is actually a pretty darned hard hoop to jump through, and it gets harder as it gets more critical to patient safety.

  4. Re:Maybe... on Robots May Inspire Suits Against Programmers · · Score: 1

    What if it's a robot programmer?

  5. Re:She's STILL SAYING IT! on Autism-Vax Doc Scandal Was Pharma Business Scam · · Score: 0

    Waste of time. If that ever happens, the same batshit crew will claim big pharma rigged the new tests, and will be impossible to convince otherwise because they weren't the first to claim rigging.

  6. Re:I want one! on MIT Media Lab Researcher Prints Playable Flute · · Score: 1

    This is true. The company I work for does rapid-prototyping based small production runs, for things like VERY small production supercars.

  7. Re:New Rule: Detachment on Spoofed White House Card Dupes Many Gov't Employees, Steals Data · · Score: 1

    I'm an anarcho-syndicalist.

  8. Re:New Rule: Detachment on Spoofed White House Card Dupes Many Gov't Employees, Steals Data · · Score: 1

    You make that sound as if it's a bad thing.

  9. Re:New Rule: Detachment on Spoofed White House Card Dupes Many Gov't Employees, Steals Data · · Score: 1

    Rule 0: don't allow stupid people near important data.

  10. Re:I want one! on MIT Media Lab Researcher Prints Playable Flute · · Score: 5, Informative

    It's not really for home use yet, but you can have your stuff printed relatively cheaply (not yet printer ink "cheaply", but yeah) at some places. For example, see i.Materialise for an online printing service.
    Disclaimer: I work for a sister company ;-), I've seen a lot of 3D printing stuff. This flute thing doesn't impress me that much - this folding chair is much cooler.

  11. Re:Well, clearly if they didn't have anything to h on Police Can Search Cell Phones Without Warrants · · Score: 1

    But there must be probable cause to suspect you are.

  12. Next up... on UN Considering Control of the Internet · · Score: 2

    Next up: UN considering control of gravity, also considering extensions to other laws of physics.

  13. Re:Too big a change too soon on Gmail Creator Says Chrome OS Is As Good As Dead · · Score: 1

    I wonder how much "vastly cheaper" they can get than my €199 netbook.

  14. Re:Robot Books on The Year In Robot News · · Score: 1

    Perhaps we could call that robot Asimo?

  15. Re:Exclamation point on Yahoo Lays Off 600; Free Beers and Jobs Flow · · Score: 1

    By 2012, they will be renamed to "Ya...Who?"

  16. Re:All on Why Anonymous Can't Take Down Amazon.com · · Score: 1

    All your base are belong to amazonymous.

  17. Re:The US is not having a "hard time." on 68% of US Broadband Connections Aren't Broadband · · Score: 5, Insightful

    The main problem with the invisible hand of the free market is that no-one can see it's giving us the finger.

  18. Re:Intel vs. McAfee via IV on World's Largest Patent Troll Fires First Salvo · · Score: 1

    "We're helping you to hire us to help ourselves.".

  19. Re:Hopefully on Doubling of CO2 Not So Tragic After All? · · Score: 1

    I'm skeptical that we can make substantial changes to our atmosphere and our environment without causing hard to predict changes to weather patterns and hydrology.

    Like the massive increase of C02 we're causing?
    Oh wait, looks like that's not the argument you were trying to make.

  20. Re:Sun is a Very Bad Digital Citizen. Very Bad. on Ex-Sun CEO Warns Oracle of Death By Open Source · · Score: 1

    I agree, it's probably just not obvious enough.

  21. Re:Ayn Rand? on Ex-Sun CEO Warns Oracle of Death By Open Source · · Score: 3, Insightful

    And which makes you feel better about yourself if you are not rich and powerful?

    American Idol.

  22. Re:Sun is a Very Bad Digital Citizen. Very Bad. on Ex-Sun CEO Warns Oracle of Death By Open Source · · Score: 1

    If they had had a "donation" link, and some "pay what you want" actions, I'm sure they would have survived in this new economic reality.

  23. Re:Suing for what exactly? on Racy Danish Tabloid May Sue Apple For App Rejection · · Score: 1

    In the next 30 years, Apple predicts reality will change to accommodate Steve Jobs' points of view.

  24. Re:Rouge eh? on Rogue Satellite Shuts Down US Weather Services · · Score: 1

    I don't fallow.

  25. Re:#1 - Not managing the pointers and memory yours on Programming Mistakes To Avoid · · Score: 1

    So why is garbage collection so bad?

    'cause it tends to flush predictability right down the toilet. When is the garbage collector going to swing around to do its thing? Are you *sure* it's going to be when it has enough time to do so? Or is it going to pick exactly the wrong moment? Am I going to run out of memory at an awkward time triggering a collection of thousands of objects I haven't used in ages?

    Yes, all of these have perfectly valid workarounds.
    However, then you are right back to knowing exactly what your compiler and environment are going to do, and sometimes even holding its hand. Manually triggering a collection isn't all that different from handling memory management yourself.

    The Right Tool for the Right Job sometimes is low level. And by the way, many great programmers know quite well what the compiler will do with particular important bits of code, and if they do not, will invoke the compiler to generate assembly or intermediate-language code to be sure. Yes, in garbage-collected languages too, I've used ILDASM quite a bit to know what C#/.NET was doing, exactly.