Slashdot Mirror


User: AuMatar

AuMatar's activity in the archive.

Stories
0
Comments
6,002
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 6,002

  1. Re:more software engineers on Mr. President, There Is No (US) Engineer Shortage · · Score: 1

    Of course, if you never take some of those younger people and train them, you eventually run out of qualified people. Experience doesn't occur magically.

  2. Re:NIHS on Sixteen Years Later: GNU Still Needs An Extension Language · · Score: 1

    And this is why scheme fails. It's so la king that even people who *want* to use it instead decide to use it to emulate better languages.

    Just use a real language with actual users instead. Functional languages are dead, deal with it.

  3. Re:NIHS on Sixteen Years Later: GNU Still Needs An Extension Language · · Score: 1

    It's worse than that. I remember about 5 or 6 years ago reading about HURD. They were trying to get people to use it, but one of the bugs was it didn't support a disc bigger than 4 GB. Why 4 GB? Because they mem mapped the disks, and that was the size of a 32 bit pointer (I did say this was a few years ago). Rather than fixing their bad design, they decided to gimp their OS instead.

    That's the real problem with GNU these days. They care about abstract CS philosophy points more than practical working code. In this case, they have someone with a hardon for functional languages, without paying attention to the fact that nobody outside of academia uses functional languages, and that no functional language has ever been a success, rather than using one of a dozen common scripting languages.

  4. Re:Don't Be Evil? That's just a lie on Schmidt: G+ 'Identity Service,' Not Social Network · · Score: 1

    I believe my US postal mail is private, and it's handled by intermediaries and in clear text. Just because something could be intercepted does not mean you have no expectations of privacy.

  5. Re:Yikes on C++ 2011 and the Return of Native Code · · Score: 1

    If you think managed code has no leaks, you've either never written anything beyond hello world or you're completely oblivious. It's trivial to leak memory in Java and C#. In fact, if you don't program defensively to avoid it your programs leak like a sieve.

  6. Re:Yikes on C++ 2011 and the Return of Native Code · · Score: 5, Insightful

    Yes, because managed code has no memory leaks. Please. I work on a mixed C++/Java Android codebase. I haven't found a memory leak on the C++ side in months. The Android framework decides to hold onto random references every new version.

    Quite frankly, memory management is not hard. If you don't understand the simple idea of allocate, use, release, then you are a complete incompetent and should not be programming professionally. I'll go so far as to say it's better for a language NOT to automatically manage your memory- in general the first sign of a bad or failing architecture is that object life cycles and memory allocation start to be non-trivial. Managing your own memory catches those architecture bugs and leads to cleaner, easier to understand code. And the cost is absolutely minimal, I doubt I've spent 10 minutes in the past 2 or 3 years actually debugging memory problems in C++.

  7. Re:Which is worse? on The Most Expensive One-Byte Mistake · · Score: 1

    If you have a possibility of a NUL, you shouldn't use string functions- you should use the memxxx functions (memcpy, memcmp, etc). Because at that point it isn't a string- it's a data format that can contain strings and other things. Trying to handle it as a string can be a quick way of getting up and running, but it'll cause breaks as you can see. You're better off thinking of serial communication as a byte stream, and parsing it into strings as needed.

  8. Re:Missed the point on The Most Expensive One-Byte Mistake · · Score: 1

    Because everyone gets C strings, and introducing it would be no gain. C provides a minimal library on purpose. If you want a new string type, roll your own or use one of dozens of already written libraries.

  9. Re:Which is worse? on The Most Expensive One-Byte Mistake · · Score: 1

    Since NUL is an unprintable character with no meaning, there's no reason to do that. Now you may have needed a byte pointer with NULs in it, but that's not the same as needing a string with it.

  10. Re:Windows 7 is the new XP on Windows XP Market Share Finally Falls Below 50% · · Score: 1

    No it wasn't. The computer I'm on now is XP, it doesn't have native zip support- I needed to install good old WinZip.

    As for your other features- I don't use any of them, or need any of them. The vast majority of users don't, other than the eye candy. So nope, I can't think of anything 7 or Vista do that XP doesn't.

  11. Re:Windows 7 is the new XP on Windows XP Market Share Finally Falls Below 50% · · Score: 1

    Really? Other than built in zip recognition, I can't even think of a feature in 7 that isn't in XP. I suppose there's more eye candy, but I turn that shit off anyway

  12. Re:Can somebody explain NoSQLers to me? on Unified NoSQL Query Language Launched · · Score: 3, Interesting

    And then you ha0ve a use case change. Or need to interface with an app written in another language. Or find that *shock* while a certain object is very effective for holding some information, it's a horrible way of storing for query. An object should be designed for the use case at hand, the database should be designed for efficient retrieval for that and future use cases. The two are damned near never the same. Persistence frameworks are a mistake.

  13. Re:unfair on Internet-Based Political Party Opens Doors · · Score: 1

    No Reagan? In a much better place.

    But I think they're mostly afraid of Stephen Colbert deciding he wants to be their nominee.

  14. Re:Under attack from all sides. on Oracle Ordered To Lower Damages Claim On Google · · Score: 1

    Pharmecutical companies spend more than twice as much on advertising as they do on research. And much of their research is on updating drugs about to move out of patent protection to get them another 20 year monopoly. And even then their total annual research is less than 30 billion. We'd get more bang for our buck by removing their patents and spending 30 billion on grants for targetted medicines. Then maybe we'd get cures for real diseases, and not another 13 erection pills and non-existant diseases like restless leg syndrome.

  15. Re:Under attack from all sides. on Oracle Ordered To Lower Damages Claim On Google · · Score: 1

    The universities, where most of the research comes from today. 99% of R&D budgets are pure D, research just doesn't happen in the private sector anymore.

  16. Re:Isn't that a surprise... on Study: Ad Networks Not Honoring Do-Not-Track · · Score: 1

    Seeing as I haven't had a telemarketer calling in most of a decade, it worked pretty damn well. Of course, that has federal law backing it.

  17. Re:Gambling... on Online Poker Legalization Bill Coming Next Week · · Score: 1

    The biggest tell of all is betting history. Betting history trumps any physical tell you can see, and is just as available (even more so in fact, you can cache it in a db) via the internet.

  18. Re:Electronic patient records on Electronic Health Records Now In All US Military Hospitals · · Score: 2

    Scares? Those sound like legit concerns to me. The last thing you need is to MRI someone with a metal plate in their head, or to give pennicilin to someone with an allergy. While there needs to be strict criminal liability for providing non-emergency access without permission, sticking with paper records is asinine.

  19. Re:Common knowledge on C++ the Clear Winner In Google's Language Performance Tests · · Score: 5, Insightful

    There's a lot of Java-ites who claim that Java is just as fast. They're idiots, but they're vocal.

  20. Re:contractor / consultant on How To Succeed In IT Without Really Trying · · Score: 1

    Contractors? Consultants maybe, but not contractors. Most contracts I've been offered pay within 5% of what I make as an employee, with no benefits.

  21. Re:Picture not so smart... on Experimental "Smart Town" To Be Built In Japan · · Score: 1

    But not in our lifetimes. So no, we don't.

  22. Re:but do people buy consoles for the HW? on Sony Won't Invest As Heavily In PlayStation 4 · · Score: 2

    Every Nintendo console has turned a day 1 profit. Only Sony and MS do the razor blade mechanism.

  23. Re:PLC programmers have been doing this for years. on What Makes Parallel Programming Difficult? · · Score: 1

    A bit is a mutex if your processor has an atomic test and set instruction. Which these days they all do. A semaphore is an integer protected by a mutex. He oversimplified a bit, but if you know what you're doing it is that simple.

  24. Re:Strange on When AIM Was Our Facebook · · Score: 1

    Funny, I was there from 98-01, and everyone I knew used ICQ. Must have had totally different sets of friends.

  25. Re:Well then, who does create jobs? on Can Computers Be Used To Optimize the US Tax Code? · · Score: 5, Informative

    The real problem with the tax system is not in its complexity, its just how high our taxes truly are.

    We're the lowest taxed generation since WWII. The highest rate now is 35%, and few pay it. The highest tax bracket in the 90s was 39.6. The highest tax bracket under most of Regan was 50%. Under Nixon was 70%. Kenedy was 91%. Eisenhower was also 91%. The rate coming out of WWII was 94%.

    Try doing actual research before spitting out far right talking points.