Slashdot Mirror


User: sanosuke001

sanosuke001's activity in the archive.

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

Comments · 740

  1. Re: Bodes Really Well for a Fair Trial on Ex-CIA Director Says Snowden Should Be 'Hanged' For Paris Attacks (thehill.com) · · Score: 1

    He was a sub-contractor as I recall. As such, he'd probably not have taken that oath...

    Except to get clearance (which he had) you need to agree to keep what you learn secret; he did so. Even as a contractor.

  2. What is a Journos? (sarcasm: it means the editor is a lazy typist)

  3. Re: Actually, a Global Threat on Oklahoma Earthquakes Are a National Security Threat (bloomberg.com) · · Score: 1

    Dear God, If you didn't want this Earth to be hell, kick out all the people that make it so. Signed, An Atheist

  4. Re:Media Center on Windows 10 Upgrades Are Being Forced On Some Users (arstechnica.com) · · Score: 1

    I tried that first, actually. However, it doesn't support SDV and anything but "copy free" content. Most of the channels from my provider are either SDV, copy-once, or copy-never. Only the over-the-air content (like 10 channels) are usable with MythTV.

  5. Re:Media Center on Windows 10 Upgrades Are Being Forced On Some Users (arstechnica.com) · · Score: 1

    It works but it can't do SDV or encrypted (non copy-free) channels.

  6. Media Center on Windows 10 Upgrades Are Being Forced On Some Users (arstechnica.com) · · Score: 2

    My only PC I haven't upgraded requires Windows Media Center to record TV; add media center to Windows 10 and I'd be happy to upgrade from Windows 8. Otherwise, they can go shove it.

  7. Here's a better story.... . on Crash Chrome With 16 Characters · · Score: 0

    Here's a "better" version of the story...
    http://goo.gl/5WtI0B

  8. Re:JAVA FTW on Oracle: Google Has "Destroyed" the Market For Java · · Score: 2

    It looks like most of your stack trace is from a third party library and not actually java. gg

  9. Responsibility? on Starting Now At Netflix: Unlimited Maternity and Paternity Leave · · Score: -1

    How about we create rules that foster responsible procreation? If someone wants kids they should have the means (money, time) that is required to take care of them before getting pregnant. Netflix did something helpful for new parents, sure, (and people working at netflix are probably people we'd rather be having more kids than Joe Bob and his sister/wife Fanny Mae) but there are people out there who take their "right" to have kids and stomp on my "right" to not pay a dime for their terrible decisions. We shouldn't be incentivizing having more kids in any settings, we should de-incentivize having kids when you can't afford it (ie. jail time).

  10. A bit outdated but still runs new games well on Ask Slashdot: What Hardware Is In Your Primary Computer? · · Score: 1

    Desktop
    CPU: AMD Phenom II X6
    GPU: AMD Radeon 6970
    SSD: Crucial 256 GB M4
    HDD: 2 TB Seagate
    RAM: 16 GB Mushkin
    Optical: BD-ROM / HD-DVD Combo and BD-RW
    Display: 2x 1920x1200 28" LCD's

    Works well for gaming and OpenGL development.

    I also have an Alienware M17 laptop; works well for same reasons but not great at multitasking
    CPU Intel Extreme 2 core
    RAM: 16GB
    SSD: 256 GB SSD
    HDD: 1 TB

    As well as a HTPC
    CPU: AMD 1090T
    GPU: AMD Radeon 5450
    RAM: 8GB
    HDD: 120GB

    And a File Server
    CPU: AMD Phenom X4
    GPU: don't remember, doesn't really output ever
    RAM: 32 GB
    HDD: 8x Seagate 4TB, 8x WD 3TB
    RAID: 4x SAS 8086 card
    Setup: FreeNAS with 20TB RAID-Z2 and 15TB RAID-Z2

  11. Re:bullshit on How Much JavaScript Do You Need To Know For an Entry-Level Job? · · Score: 1

    The biggest source of damage to the ecosystem of javascript is javascript

  12. Re:A link to a broken facebook page.. on Galapagos Island Volcano Erupts After 33 Years, Threatening Fragile Ecosystem · · Score: 1

    It's not public; you need to log in to see it

  13. Floated there over billions of years? on Four Quasars Found Clustered Together Defy Current Cosmological Expectations · · Score: 1

    Why couldn't they have formed further apart and floated or were pulled in closer? Also, a million light years seems pretty far to me...

  14. Who is this question for? on Is Big Data Leaving Hadoop Behind? · · Score: 1

    Is this a question for Hadoop employees or slashdot? If there's something better, why does it matter to anyone other than the company developing Hadoop if it's relevant?

  15. Re:Check their work or check the summary? on No, It's Not Always Quicker To Do Things In Memory · · Score: 1

    gd. slashdot can... ugh. both loops go to 1000000

  16. Re:Check their work or check the summary? on No, It's Not Always Quicker To Do Things In Memory · · Score: 1

    Again, because of slashdot comments, I didn't realize that the internal loop code was "lost"
    bad loop: s += (char)Math.floor(Math.random() * 256)
    good loop: sb.append((char)Math.floor(Math.random() * 256))

  17. Re:Check their work or check the summary? on No, It's Not Always Quicker To Do Things In Memory · · Score: 1

    This is exactly why Java has a StringBuilder class.

    final long startTimeBad = System.nanoTime()
    String s = ""

    for(int i = 0 i s += (char)Math.floor(Math.random() * 256)
    }

    final long endTimeBad = System.nanoTime()
    System.out.println(s)
    System.out.println("bad: " + (endTimeBad - startTimeBad) + " ns")


    final long startTime = System.nanoTime()
    final StringBuilder sb = new StringBuilder()

    for(int i = 0 i sb.append((char)Math.floor(Math.random() * 256))
    }

    final long endTime = System.nanoTime()
    System.out.println(sb.toString())
    System.out.println("good: " + (endTime - startTime) + " ns")

    System.out.println("diff: " + (endTimeBad - startTimeBad) / (double)(endTime - startTime))


    bad: 399644443512 ns
    good: 76023788 ns
    diff: 5256.834130811792

    Note: semicolons removed because yay slashdot comments

  18. Re:Java dynamically typed languages on Justified: Visual Basic Over Python For an Intro To Programming · · Score: 1

    I completely disagree. Dynamic typing makes keeping track of what you're doing more difficult; at least for a beginner. If they don't understand the difference between a string, an "object", and a numerical value (which is confusing itself) then they cannot be an effective programmer. Also, writing more code and being demanding aren't what I would define as being a additional bonus you get for using a dynamically typed language. You write more code because it doesn't work well and you need to fight with the language more than use it. Also, the dynamically typed aspect makes it more demanding the same way driving with your eyes closed makes driving more demanding; it is not helping you in any way shape or form.

    Java's "syntactic clutter" I call "helpful verbosity" and most scripting-turned-application languages are sorely lacking in readability; something Java has been getting better at in recent years. Java forces readability and corectness more than most scripting languages I've ever used, at least. Structure is more beneficial to a beginner than freedom.

  19. Java dynamically typed languages on Justified: Visual Basic Over Python For an Intro To Programming · · Score: 1

    Stop using dynamically typed languages altogether. Java is much more C-like than python or VB and can be used to teach most of what C can do in a relatively painless fashion. Kids aren't stupid; stop trying to dumb things down for them. Java handles memory allocation and other object-creation issues that might hamper someone learning a programming language while still containing classes, abstraction, inheritance, and a typed object/primitive hierarchy that will do a lot more to teach students about programming than confusing them with "hey this can be a number or a string or a pig object." Java also has many IDE's (Eclipse and NetBeans mainly) that help with the memorization issue in most API's and are very useful when learning. Compiling is much easier than in C as well but still retains the items necessary for understanding how compiling should work.

  20. Re:Before reading TFA ... on PHP vs. Node.js: the Battle For Developer Mind Share · · Score: 5, Informative

    Any dynamically typed language that isn't just used for scripting (your perl is probably okay) should be taken out to pasture and shot. JavaScript used to be okay; then application development came and it should go die in a fire.

  21. Re:Simple on Ask Slashdot: Making a 'Wife Friendly' Gaming PC? · · Score: 1

    Also, PSU's last longer and die less often if they're run at less than 60-75% of their rated output.

  22. Re: Agner Krarup Erlang - The telephone in 1909! on An Algorithm to End the Lines for Ice at Burning Man · · Score: 3, Insightful

    Yeah, my first thought was "one queue for tokens and another location for pickup using the single-queue-to-multiple-registers". This blog post was more along the lines of, "durr, me like ice, get now" than an actual "algorithm."

  23. Re:Why..... on "Double Irish" Tax Loophole Used By US Companies To Be Closed · · Score: 1

    I completely agree. I wasn't trying to say how it should be, just how law defined how they decided what you owed. If you have no profits locally you owe nothing. The "see-no-profits" game is a completely different bullshit loophole. They should get rid of income tax and increase sales/property tax to compensate or use something like the APT tax.

  24. Re:Why..... on "Double Irish" Tax Loophole Used By US Companies To Be Closed · · Score: 1, Insightful

    Because taxes are used for paying for municipal/government protections, services, etc. If they have no physical entity then why should they pay for these things? It's not that simple, is all.

  25. Dislike != Distrust on Co-Founder of PayPal Peter Thiel: Society Is Hostile To Science and Technology · · Score: 2

    I would say that they distrust it, not dislike. It is also expensive to implement over something that has been used for decades and since they see things more short term than long term, the savings aren't seen so upgrading is deemed not worth the cost and training.