Slashdot Mirror


User: elfprince13

elfprince13's activity in the archive.

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

Comments · 554

  1. Re:6 degrees of kevin bacon or your terrorist on Former NSA Director: 'We Kill People Based On Metadata' · · Score: 1
  2. The property that makes cash convenient in real life is the same one that make it anonymous: it's decentralized. Why should the situation be any different online (excepting technology lag and first-to-market effects)?

  3. Re:And yet Akamai deserves a /10 on ARIN Is Down To the Last /8 of IPv4 Addresses · · Score: 1

    They're a CDN that serves 30% of all Internet traffic. They get whatever they want, because if they don't, the internet starts sucking.

  4. Re:He's sorry now ... on Heartbleed Coder: Bug In OpenSSL Was an Honest Mistake · · Score: 1

    Sure, but what's the case law on the application of consumer-rights to free stuff?

  5. Re:Human Calendar? on Introducing a Calendar System For the Information Age · · Score: 1

    I didn't know it had a name, but I thought this thirteen-month thing with extra days crammed on at the beginning or end was the system that basically anyone came up with the first time they tried to design a calendar that made sense.

  6. Re:Inconsistency on The New PHP · · Score: 1

    Yes, 3, sorry 'bout that. In PHP you are guaranteed arithmetic results when using arithmetic operators. String concatenation is a distinct operator :)

  7. Re:Inconsistency on The New PHP · · Score: 3, Insightful

    Even JavaScript isn't as bad as that, there are only a few minor areas where implementation-specific issues pop up, like the awful CSS rule stuff, input codes, and some other stuff, with PHP, it is EVERYWHERE.

    Cute. In JavaScript: "5"-2 = 0 and "5"+2 = "52". Even PHP isn't *that* nut.

  8. Re:ANDROID != LINUX on Android Beats iOS As the Top Tablet OS · · Score: 2

    You're missing the point. Saying that a kernel is or isn't successful because it's distributed with a different userland than usual is (a) just wrong, and (b) a completely different sort of claim than that a particular software distribution is or isn't successful because various components have been integrated elsewhere.

  9. Re:ANDROID != LINUX on Android Beats iOS As the Top Tablet OS · · Score: 1

    Analogy doesn't quite work because Linux IS a kernel (the Linux userland is usually GNU, but you could put something else on top, like Android without a problem). The FreeBSD components in Darwin/iOS/OS X are userland, not kernel (which is Mach/XNU).

  10. Re:How much are they worth? on Riecoin: A Cryptocurrency With a Scientific Proof of Work · · Score: 1, Informative

    Go read just about any current textbook on microeconomics. Then get back to me.

  11. Re:What makes an OS realtime? on BSD Real-Time Operating System NuttX Makes Its 100th Release: NuttX 6.33 · · Score: 4, Informative
    Did you bother looking it up?

    A real-time operating system (RTOS) is an operating system (OS) intended to serve real-time application requests. It must be able to process data as it comes in, typically without buffering delays. Processing time requirements (including any OS delay) are measured in tenths of seconds or shorter. A key characteristic of an RTOS is the level of its consistency concerning the amount of time it takes to accept and complete an application's task; the variability is jitter.[1] A hard real-time operating system has less jitter than a soft real-time operating system. The chief design goal is not high throughput, but rather a guarantee of a soft or hard performance category. An RTOS that can usually or generally meet a deadline is a soft real-time OS, but if it can meet a deadline deterministically it is a hard real-time OS.[2] An RTOS has an advanced algorithm for scheduling. Scheduler flexibility enables a wider, computer-system orchestration of process priorities, but a real-time OS is more frequently dedicated to a narrow set of applications. Key factors in a real-time OS are minimal interrupt latency and minimal thread switching latency; a real-time OS is valued more for how quickly or how predictably it can respond than for the amount of work it can perform in a given period of time.[3]

  12. Re:Nothing new on GPUs Dropping Dead In 2011 MacBook Pro Models · · Score: 0

    I've never owned an Apple machine that needed to be replaced within 5 years of the purchase date, and the only people I know who have are the ones who dropped their laptops on sidewalks or down stairwells and cracked the screen. Troll somewhere else.

  13. Re: eh, it's not that bad on Stop Trying To 'Innovate' Keyboards, You're Just Making Them Worse · · Score: 2

    My officemate has a German laptop. Not only are the symbols like () in the wrong place, they switched z and y keys. Horrific.

  14. Re:Tiger nuts? Not meat? on Extinct Species of Early Human Survived On Grass Bulbs, Not Meat · · Score: 3, Insightful

    Indeed. Humans are the best long distance runners on the planet, and we evolved that way so that we could chase our prey until they died of exhaustion.

  15. Re:Utilitarianism is correct on People Become More Utilitarian When They Face Moral Dilemmas In Virtual Reality · · Score: 1

    This comment should be at +5 Insightful. Mods, do your duty.

  16. Re:Utilitarianism is correct on People Become More Utilitarian When They Face Moral Dilemmas In Virtual Reality · · Score: 3, Insightful

    Harm and benefit according to whose definition? Utilitarianism is incredibly subjective.

  17. Re:Clowns, ass variety on Exponential Algorithm In Windows Update Slowing XP Machines · · Score: 1

    Bingo! I wish I had mod points, but I don't, so my stamp of approval will have to suffice ;)

  18. Re:Interfacing 2 languages that are C *is* easy on The Challenge of Cross-Language Interoperability · · Score: 1

    I just tried working with a codebase that had the same arrays storing both ints and pointers, and doing index arithmetic all over the place. The really horrifying thing was that it actually compiled 64bit, and just behaved differently.

  19. Re:Factoring Primes on Mathematicians Team Up To Close the Prime Gap · · Score: 1

    Nope. 1 is not a prime.

  20. Re:Cool! on MenuetOS, an OS Written Entirely In Assembly Language, Inches Towards 1.0 · · Score: 4, Insightful

    And most command-line-only Linux distros are still several orders of magnitude larger than Menuet, which actually has a graphical UI. ;)

  21. Re:Gotta ask ! on MenuetOS, an OS Written Entirely In Assembly Language, Inches Towards 1.0 · · Score: 1

    Yeah, that too.

  22. I've been watching this project for ages, and I'm excited to see it slowly maturing. Quite a bit of fun to play with if you have some time to kill.

  23. Re:Gotta ask ! on MenuetOS, an OS Written Entirely In Assembly Language, Inches Towards 1.0 · · Score: 5, Insightful

    Because
    * It's fun?
    * They can?
    * They want to?
    * To learn something?


    I'm sure there are a few more. Does anyone have not-boring questions?

  24. Re:is javascript faster than java? on Linux Kernel Running In JavaScript Emulator With Graphics and Network Support · · Score: 4, Interesting

    JavaScript faster than Java? No. It's not. Not even close. Java has fantastic performance when used correctly. It just happens to be a common intro-course language, so lowest-common-denominator sorts of programmers write a lot of crap code with it. The HotSpot VM JIT is basically magic, and the garbage collection beats out everything else.

  25. Re:Sucks to Have Worked with Snowden... on Snowden Used Social Engineering To Get Classified Documents · · Score: 0

    "Sucks to work with Snowden"? More like "sucks to have been born without a brain". I mean, seriously, how contemptibly stupid do you have to be to work for a security agency and not have learned that you don't share your password with anyone.