Slashdot Mirror


User: Errol+backfiring

Errol+backfiring's activity in the archive.

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

Comments · 1,429

  1. Re:I think you do not understand Google ;-) on Android 4.0 Source Code Coming "Soon" · · Score: 1

    Silly me ;) I thought Google was proud to introduce an open source OS when it was introduced? And now it is not open source and comes closer to abandonware. I'm confused.

  2. I think Google does not understand open source on Android 4.0 Source Code Coming "Soon" · · Score: 3, Insightful

    Why wait till the software is stable? Even if you do believe in the myth that software ever is finished enough, isn't the one of the purposes of open source to have a few extra eyeballs to check if it is mature? There are zillions of real open source projects with both stable versions for everyday use and current state for development. Why does Google think Andoid is any different?

  3. Re:simple .. on Proposed UK Online Libel Rules Would Restrict Anonymous Posting · · Score: 1

    No. Steve Jobs. Or Freddy Mercury.

  4. LETS on Legal Tender? Maybe Not, Says Louisiana Law · · Score: 1

    I don't know the exact text of the proposed law (it is behind a flash lock), but could this be the best incentive to switch to a local currency (LETS scheme)?

  5. The European Union could learn from this on New Vaccine Halves Malaria Risk · · Score: 1

    If we vaccinate humans, we can fight a disease with immunity. But we won't vaccinate cattle. Rather than fight the diseases, we gladly slaughter our entire fauna, but won't fight the diseases.

  6. Game? on Coding Games In 48 Hours · · Score: 1

    That is not a game, it is a 3D program. Why do it in 3D if you only have 48 hours?

  7. Re:Gov't - because nothing is too small to screw w on Australian Court Blocks Sales of Samsung Galaxy Tablet · · Score: 4, Funny

    Yes. Don't you see them competing fiercely in court?

  8. You don't. on How Do You Educate a Prodigy? · · Score: 4, Interesting

    You could possibly fit the entire American school system into him.

  9. Re:What's happening on Italian Wikipedia May Shut Down Due To New Legislation · · Score: 1

    This whole thing would be funny if not for the fact that this womanizing shmuck is in charge of one of the largest economies in Europe

    Well, at least he is doing something about that.

  10. Re:Classic patent trolling on Patent Troll Says Anyone Using Wi-Fi Infringes · · Score: 1

    Brilliant! So the USA will fight even its own patent system with jet bombers?

  11. Prior art on Patent Troll Says Anyone Using Wi-Fi Infringes · · Score: 1

    No, we leave it up to the patent office to invalidate any prior art. No matter how much of it exists.

  12. Re:Christmas on New Supercomputer Boosts Aussie SKA Telescope Bid · · Score: 1

    I already have trouble to fit a Christmas tree into my house. A square kilometer array is a bit too big for me alas.

  13. Re:healthcare's a rip-off on Rite Aid Drug Stores Offer Virtual Doc Visits · · Score: 1

    On the contrary. The basis was, as in any science, observations. That we laugh about the theory that they developed on top of that observations is irrelevant. In a few centuries people will laugh about our current theories as well.

  14. Re:Surely only an issue for Windows... on Oracle May 'Fork Itself' With MySQL Moves · · Score: 4, Informative

    Just out of curiosity, I did upgrade to MariaDB about a week ago, and I was pleasantly surprised how easy the transition went.

  15. Re:Brain Plasticity... on Developer Seeks FDA Approval For Therapeutic Game · · Score: 1

    No, Blob Wars.

  16. Re:healthcare's a rip-off on Rite Aid Drug Stores Offer Virtual Doc Visits · · Score: 1

    I agree wholeheartedly. And, like in the ancient Greek medicine, treat the elementary particle "person" as a human being again. The ancient Greek medicine is not a fight of symptoms, it is a whole healthcare. The basis was a balance, like in so many other medicine systems in other cultures. So the personal situation, mental environment, domestic environment etc. were all investigated when you visited the doctor. But off course the doctor knew you. He was a member of your own community. Not some unknown call-centre doctor routing his voice packets from the other side of the world.

    The article also says that the VOIP thing was investigated as being good, as there was less time needed for administrative work and therefore more time for the patient. So I think it is the healthcare system itself that should visit an ancient Greek doctor. Its mental situation is very unhealthy, as is its domestic situation. And no, a Greek doctor would not necessarily subscribe pills. Often it was a diet, exercise or even telling the patient to play music.

  17. Re:How about no OS? on How Microsoft Can Lock Linux Off Windows 8 PCs · · Score: 1

    that malicious software (windows)

    There, fixed that for you. I think this was exactly what the article was about.

  18. Re:Hooray! on How Microsoft Can Lock Linux Off Windows 8 PCs · · Score: 1

    But this time your hardware will prevent that. I once saw a small Apple computer with nice specs. It was actually that fact that I had to keep MacOS on it (disc space was not that large) to be able to reach the booting process that stopped me from buying it. I'm afraid that there just will not be any consumer-targeted computers anymore that will allow me to use the OS I want. Mind you, I already cannot buy a computer with the OS I want while having reasonable specs.

  19. Re:So this isn't down to Microsoft? on How Microsoft Can Lock Linux Off Windows 8 PCs · · Score: 1

    Unless the conditions to have the "right" to sell Windows require this. For so-called "security reasons", for example.

  20. Re:Caveat Emptor on How Microsoft Can Lock Linux Off Windows 8 PCs · · Score: 4, Insightful

    I'm aware. Does that mean I will have a choice then?

  21. 3D printing on Ask Jennifer Granick About Computer Crime Defense · · Score: 2

    My question: Now that "3d hacking" becomes mainstream, what (L)awful restrictions should we expect?

  22. Re:I just migrated... on Why You Shouldn't Panic About Closed Source MySQL Extensions · · Score: 1

    Given that I am using a database, "whatever language I am using" is SQL. Or should I write a program that writes a program that programs a database server? That is plain silly.

  23. Re:Guess it will no longer be in the linux repos on Why You Shouldn't Panic About Closed Source MySQL Extensions · · Score: 1

    I think just the enterprise features won't be available. So developers won't use them if they can avoid them. What's more, you would have to have an "enterprise" licence for each developer and test machine. Ouch!

  24. Re:I just migrated... on Why You Shouldn't Panic About Closed Source MySQL Extensions · · Score: 2

    Because there are a lot of types of data:

    Live data Should off course not be in an upgrade SQL script Settings Insert-only, should not be updated when present. This is where you would use INSERT IGNORE (or INSERT .. ON DUPLICATE KEY UPDATE somedummyfield=somedummyfield if you dislike INSERT IGNORE) System data For instance, Object-Relational-Mapping data. Should be set to the new value. INSERT .. ON DUPLICATE KEY is perfect for this. What's more, with MySQL's multirow inserts, you can make statements that are legible even if you set more than one field. Standard SQL's MERGE command is the least legible command I ever saw, and as far as I know Postgress does not even support MERGE.

    In agile programming, both structural and content changes are often necessary. These must be done on both local development databases, test databases and live databases. So you would want the SQL script in your source code control system and be able to run non-interactively. For an example, see Evolving A Database With MySQL.

  25. Re:I just migrated... on Why You Shouldn't Panic About Closed Source MySQL Extensions · · Score: 1

    Ah. And how do you convert the duplicate key / ignore inserts? I looked at postgress, but I did not think it was feasible for agile development.