Slashdot Mirror


User: Schraegstrichpunkt

Schraegstrichpunkt's activity in the archive.

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

Comments · 2,694

  1. Re:HTML5 Video on Wikipedia's Assault On Patent-Encumbered Codecs · · Score: 1

    Are you comparing to '94 Linux?

    Amiga? Macintosh? OS/2?

    Where were you in '94?

  2. Re:HTML5 Video on Wikipedia's Assault On Patent-Encumbered Codecs · · Score: 1

    It's all nice and all, but if $FOO really wants to win, they have to be technically better. There is no other way.

    Counterexamples:

    • PC vs. Mac vs. Amiga
    • Win32 vs. POSIX
    • Intel vs. M68k
    • VHS vs. Betamax
    • MP3 vs. Vorbis
    • X.509 vs. PKI
    • PEM vs. OpenPGP
    • DES vs. IDEA
    • EAX vs. OCB
    • SHA256 vs. MD5
    • Universal v.Reimerdes

    Sometimes the technically-superior option wins, sometimes it does not. Law, marketing, economics and other "soft" factors are sometimes more relevant than the particular technology.

    Personally, I want an open infrastructure to win so that the technically-superior applications developed in the future can win, rather than getting killed by patents or whatnot.

  3. Re:Not a bad idea... in fact, an obvious good idea on Mississippi Makes Caller ID Spoofing Illegal · · Score: 2, Informative

    Any customer with a phone switch or PBX is now in violation of this law.

    RTFL. It's very short. Quoting it:

    2(d) "False information" means data that misrepresents the identity of the caller to the recipient of a call or to the network itself; however, when a person making an authorized call on behalf of another person inserts the name, telephone number or name and telephone number of the person on whose behalf the call is being made, such information shall not be deemed false information.

    and also:

    3(1) A person may not enter or cause to be entered false information into a telephone caller identification system with the intent to deceive, defraud or mislead the recipient of a call.
    (2) A person may not place a call knowing that false information was entered into the telephone caller identification system with the intent to deceive, defraud or mislead the recipient of the call.

    So it's "with intent". I don't see anything wrong with the law as it stands.

  4. Re:Not a bad idea... in fact, an obvious good idea on Mississippi Makes Caller ID Spoofing Illegal · · Score: 2, Informative

    Think of this feature as a form of NAT for phone lines.

    It's more like the "From:" or "Reply-To:" headers of an email message: it indicates where you want follow-ups to go to.

  5. Re:Well I'd need to see the study on Study Finds That Video Games Hinder Learning In Young Boys · · Score: 1

    1) The study was fairly short term. That doesn't tell you anything. All kinds of changes can happen in the short term with a child, and are not meaningful in the long run. You need to evaluate development over a period of years, not over four months. If you look in to the literature on child development you find that many things that taken in a small context that look worrying don't matter in the long run. A child will start talking or reading 6-12 months later than peers, and yet have normal language skills at graduation, for example.

    2) It only dealt with kids who got a new toy, not with ones who had it. Even in adults, when we get something new we are more enamored with it and want to spend more time using it. That dies down after a little while. There is no reason to believe that videogames are any different. As such if you believe they are, you need to test that. There needs to be controls with kids that have had videogame systems for long periods of time.

    TFA basically says that. Whoever posted this to Slashdot, of course, didn't.

  6. Re:11k Is Too Big? on Simpler "Hello World" Demonstrated In C · · Score: 3, Informative

    These days, costs of development and deployment, not runtime memory usage, are the limiting factors in software development.

  7. Re:H.264 on Microsoft Previews IE9 — HTML5, SVG, Fast JS · · Score: 1

    Yes, that's the theory. The concern that many people are expressing is that the theory doesn't account for the experimental evidence.

    The patent system is supposed to provide a financial incentive for people to assume the risks associated with developing new technology. In the real world, however, there are so many patents that system tends to increase the cost of significant innovation by a large and unpredictable amount. Because of this, it's become far safer to just do the same thing everyone else does than to do something genuinely new. The minefield analogy is very apt.

    Like another poster mentioned, it's effectively a probabilistic tax on new innovation used to fund old innovation, where the amount of tax you will owe is impossible to determine beforehand.

  8. What's not science. *shing* THIS is science. on Japanese Turning To "Therapeutic Ringtones" · · Score: 1
    This qualifies as a "Slashdot Science Story"? How, exactly? Even the article states:

    Japan is no stranger to bizarre phone fads but the popularity of the ringtones is perhaps surprising given the flimsiness of the science behind them.

    How about "Anti-HIV properties of... bananas?". And it's written by ERV, not some quack.

  9. Re:Too easy... can't resist... on Good Language Choice For School Programming Test? · · Score: 1

    No, it isn't. What else have you used?

  10. Re:This won't stop... on Court Rules Against Vaccine-Autism Claims Again · · Score: 1
    I agree with this part of your post:

    The probability of contracted autism has been shown to be lower than the probability of catching the disease being vaccinated against, so I'll guard against the higher probability risk.

  11. Re:This won't stop... on Court Rules Against Vaccine-Autism Claims Again · · Score: 1

    Also, they may kill other, innocent random people who *did* get vaccinated. Vaccines aren't 100% effective. That's why there's so much talk about herd immunity.

  12. Re:Mixed Feelings on Jeff Jaffe Named CEO of W3C · · Score: 2, Insightful

    I always laugh when someone thinks they're going to influence Microsoft, rather than the other way around. Ain't gonna happen.

  13. Re:Crypto is only the Beginning on NSA Still Ahead In Crypto, But Not By Much · · Score: 1

    Crypto's not the weak link in security anymore

    When I read other people's crypto code, I still find they get it wrong the majority of the time.

  14. Re:Dear software engineers on Time To Take the Internet Seriously · · Score: 1
    I should add:
    • CSS is a bit inflexible, and its attribute names are a bit arbitrary (CSS selectors are good, though). That would have been a valid complaint.
    • Making things look good (or work at all) in MSIE is a real pain. That's also a valid complaint.
    • Most properly-designed web apps are stateless, except for authentication and maybe a language preference. Everything else should be in your server-side data model, or in your request. If you're writing a web application that keeps a lot of session-specific data, then you're doing it wrong anyway. Session variables in web development are effectively global variables. They can't be bookmarked, they break when people open multiple tabs/windows, and when they timeout unexpectedly, people lose data.
  15. Re:Dear software engineers on Time To Take the Internet Seriously · · Score: 1

    You have a sessionless protocol trying to do sessions. Amusingly enough written on top of a connection based protocol (so you have a session built in- the TCP connection)

    I'd love to know what you propose would do better and still scale to tens of thousands of page requests per second, and can deal with malicious network nodes and nodes dropping off the network without notice. You do realize that TCP is also doing sessions on top of a sessionless protocol, right? Is TCP poorly designed?

    You have a text markup language based on the idea of the client choosing how to display data being used to display pixel perfect displays.

    If the web was designed to be pixel-perfect, browsers would be as messy as Win32, trying to maintain backward compatibility with all sorts of different displays. Either that, or everything would be monochrome at low resolution.

    You have a language that they had so much faith in they decided to name it after another popular language in hopes people would confuse them.

    Yeah, the name "JavaScript" was stupid. So what?

    And that language has no built in method for transfering data to/from the server or doing RPCs,

    The only language I can think of that has arbitrary functions like RPC built-in is PHP. If you think PHP is the epitome of language design, then we have nothing more to discuss. Most good languages separate the language itself from the standard library.

    you have the whole AJAX hack thrown in on top to do that.

    I'm not sure what you mean by this.

    There's nothing about the whole stack that's well designed for modern uses.

    Sure, on the whole, it's not the best that we could do, but if you think nothing about it is well-designed, well, what would you propose? Flash?

    But its universal, so we're stuck with it unless Mozilla and MS work together to push out something new.

    The last thing anyone needs is Microsoft reinventing the web.

  16. Re: That ignorant insensitive bitch.... on Woman Live-Tweets Her Abortion · · Score: 0

    I hope for the sake of her son that she finds some compassion and spiritual enlightenment.

    She has. You just disagree.

    God knows she needs it.

    How do you know that? Is it possible in your worldview for your God to disagree with you?

    "ought" != "is"

  17. Re:My Live Tweet on Woman Live-Tweets Her Abortion · · Score: 1

    If those jackass Women's Libbers had just sat on their hands, the political process would have worked though, a consensus would have been reached, and the Republicans wouldn't have had such an effective wedge issue for 20 years.

    What? What makes you think that would work?

    Plausibility FAIL.

  18. "Balanced" on A Balanced Look At Cellphone Radiation · · Score: 1
  19. Working as intended. on Coping With 1 Million SSH Authentication Failures? · · Score: 1
    • Protocol 2
    • Set PermitRootLogin to "no" or "without-password"
    • ChallengeResponseAuthentication no
    • PasswordAuthentication no

    And then just ignore the attempts. fail2ban can sometimes be ok, but be aware that it creates a denial-of-service vulnerability that is exploitable by attackers who can can spoof source addresses.

  20. Re:Scope on Law Prevents British Websites From Being Archived · · Score: 1

    .even if you thought, our laws were wrong, that wouldn't mean it would reflect well on you to, say, murder someone and keep quiet about it for 100 years hoping that the law would be changed in the meantime...

    I'm pretty sure there's a corollary to Godwin's Law about comparing copyright infringement to physical violence.

  21. Re:Wait, What? on Throttle Shared Users With OS X — Is It Possible? · · Score: 1

    My guess is fsync()

  22. Ease-of-use, Microsoft-style on Microsoft Says, Don't Press the F1 Key In XP · · Score: 1

    Whenever people say that Microsoft products are easy to use, they are conveniently ignoring stuff like this.

    And geeks wonder why normal people are intimidated by computers...

  23. One more possibility... on Write Bits Directly Onto a Hard Drive Platter? · · Score: 2, Funny

    Randall Munroe

  24. Re:Amen! on "Patent Markings" Lawsuits Could Run Into the Trillions · · Score: 1

    How many people were wrongfully dissuaded from creating competing lids?

    The damages might be more than you think: How many people paid more for lids due to a lack of competition?

  25. Re:Not really the point on Appeals Court Knocks Out "Innocent Infringement" · · Score: 1

    Is it still "piracy" when it's not illegal?