Slashdot Mirror


User: Morpf

Morpf's activity in the archive.

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

Comments · 124

  1. Dear lawyers and media lobbyists, on W3C Declares DRM In-Scope For HTML · · Score: 1

    please leave our internet alone.

  2. Re:not much return? think again. on Crowdsourced Coders Take On Immunology Big Data · · Score: 1

    That is why I only take part in contests, where my work is not usable in any production environment. Contests for the contest sake. Google CodeJam, Project Euler, ACM ICPC, you name it.

  3. Re:not much return? think again. on Crowdsourced Coders Take On Immunology Big Data · · Score: 1

    But what if the company supposed to hire this winner just starts a TopCoder Contest, too? This example shows quite clearly that there are people out there selling their souls for bragging rights. Why do you think, this will not be exploited? Remember: That contest yielded 2,684 hours of development time with an overwhelming result for just 6k USD, there is no way to get cheaper. You can brag, that's it. I think those competitions ruin the income of software developers in the long run. Not to mention that someone has to maintain the code.

  4. A bread board and components on Ask Slashdot: Best Electronics Prototyping Platform? · · Score: 1

    Simply get a bread board and the components you wanna mess with. Be warned you will need a programmer if you are using Cs. They can be bought, some can be built quite easily. I prefer the Atmel family. IIRC there is a do-it-yourself programmer for Atmels.

  5. Pandoras Box opened with Flame and Stuxnet on Officials Warn: Cyber War On the US Has Begun · · Score: 1

    And who was it who opened pandoras box? Who attacked infrastructure to destroy it? Who attacked a nation and said it with a straight face to the rest of the world? Tit for tat I would say.

  6. Re:Security training? on CTO Says Al-Khabaz Expulsion Shows CS Departments Stuck In "Pre-Internet Era" · · Score: 1

    If you are learning martial arts, you first learn how to fall without hurting yourself. ;) I think it is important to learn how to code robustly. Most of CS students should already know how broken many systems are. As others stated: Don't scan systems without consent but feel free to hack your own boxes and programs.

  7. Re:So what he's really saying is... on The Science of Game Strategy · · Score: 1

    I was talking about games like Go and Chess and I really doubt, they are called arcade games. ;)
    The optimal strategy may involve statistics if the game has a part with some chance. You may know this from card games, where you weight the likelihood of events with your gain. As in most games, you can't change the conditions aka. rules and past actions you have to adapt, as you have written. Only because a strategy is optimal it doesn't mean you will win every time, but that there is no strategy with an higher expectancy of a win (if we are talking about games that consist of chance).
    As mark-t wrote: Chance is by no means the opposite of strategy, but sometimes you may have to account for it.

  8. Re:So what he's really saying is... on The Science of Game Strategy · · Score: 2

    Wrong. There is an optimal strategy, but most likely you will find it only by chance.

  9. Complex games are even hard for computers. on The Science of Game Strategy · · Score: 2

    Even for computers it is really hard to find an optimal strategy for Go. To my knowledge it's still a research topic. No surprise it's even harder for humans. Concerning how much effort was needed to research and program software, that beats a human in chess, I thought it would have been well known, that humans can't find an optimal strategy in this game either.

  10. Re:Yes, it is out of reach on Better Tools For Programming Literacy · · Score: 1

    Those good old 12 o'clock flashers. :)

  11. Re:Gifted students discouraged by bad tools on Better Tools For Programming Literacy · · Score: 1

    If those gifted students are discouraged by downloading and installing java sdk + eclipse (just unpack), then how on earth are they supposed to be not discouraged by learning a language, (anti-)patterns, libraries and what legacy code does. If they are so mildly interested in the topic, that installing 2 things is too complicated / too much work, I don't see them finishing their journey either way.

  12. Re:Already been a novel about this... on Security Firm Predicts "Murder By Internet-Connected Devices" · · Score: 2

    In Germany the official sequel to "Daemon" is called "Dark Net" not "Freedom", if you are interested in a read. ;) I don't now why they changed the name, though.

  13. Yes they would. on The World's Fastest-Growing Cause of Death Is Pollution From Car Exhaust · · Score: 1

    Yes they would. Walking, cycling, going by bus / train / tube / tram. Maybe this would even end people driving 2 hours a day from A to B whilst the same number of people drives 2 hours from B to A each day just to work.

  14. Definition of 50% warmer on Other Solar Systems Could Be More Habitable Than Ours · · Score: 2

    What is 50% warmer supposed to be? This makes no sense in physics. Only maybe if you refer to temperatures in kelvin.

  15. I hope Google delists these webpages (only the specific pages that correlate to the films) and any other (free?) advertisements. Maybe then the film studios get to feel, how it is not having ads in the internet. Just let them shoot in their own feet.

  16. Right now "only" nano-wire on Research Discovery Could Revolutionize Semiconductor Manufacturing · · Score: 2

    ...but if they really manage to make circuits I am really impressed.

  17. Re:LAMP on Ask Slashdot: Management Software For Small Independent ISP? · · Score: 1

    Okay, then LAPC(GI)? or LAPT(omcat)? ;)

  18. Re:LAMP on Ask Slashdot: Management Software For Small Independent ISP? · · Score: 4, Informative

    Or go LAPP and use PostgreSQL instead of MySQL. ;)
    But either way: Try to automate all recurring tasks, try to make all information necessary for one job visible from one spot.

  19. Re:Market opportunity. on Petraeus Case Illustrates FBI Authority To Read Email · · Score: 1

    How about just encrypting your mails in your client? If the mail service de- and encrypts your mail, they have the keys. So there is no improved security.

  20. Big surprise on RIAA Failed To Disclose Expert's Lobbying History To "Six-Strikes" Partners · · Score: 2

    I would never have thought the RIAA could ever do this. It was the last bastion of integrity.

  21. Re:Distinguishing conflict from disagreement on Dr. Richard Dawkins On Why Disagreeing With Religion Isn't Insulting · · Score: 1

    Where is the rationality behind not openly stand by his (non-)believes when questioned and no risk of harm is involved? You will find people who you disagree with in allmost every group of people. It's like saying "I am not going to university, because i don't want to be associated with lazy, drunk students." This just doesn't make sense to me. You are you, and not any other member of a given group.

  22. Re:Who's up first? on Air Force Lab Test Out "Aircraft Surfing" Technique To Save Fuel · · Score: 3, Funny

    You can switch lead on-the-fly.

  23. Testing and modern Versioning System on Ask Slashdot: Taming a Wild, One-Man Codebase? · · Score: 1

    At first, please try to test your code. At least if you can't formally proof it's right testing is the only way to get the most bugs out of the code. Working test first can improve code quality substancially in function and in form, as you can refactor safely with tests in place. Try writing some mock-ups for things outside your own code.

    I would choose some distributed versioning system. Not so much because it's distributed, but the most known ones (git, mercurial, bazar) behave way better than svn. The merging algorithms are better and checking out/in on svn with many small files is really, really slow, as it transfers one file after another. Bonus point: working on a local "copy" is fast as no network is going to slow you down.

  24. Maybe. just maybe on PC Sales Are Flat-Lining · · Score: 1

    Could it be Joe and Jane Somebody don't need a quad core CPU with 8 gigs of RAM, 3 tb HDD and a 3 tflops CPU to read mails, facebook, or use office tools?
    People seem to be okay with their PC hardware? You don't say...