Slashdot Mirror


User: interval1066

interval1066's activity in the archive.

Stories
0
Comments
3,064
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 3,064

  1. Re:Batteries "dramatically faster, more charge etc on Huawei Battery Upgrade Means Dramatically Faster Charging For Mobile Devices · · Score: 1

    In my completely (full disclosure) anecdotal opinion yes, these technologies DO make it into consumer products, but the change seems to be incremental, not all at once. So I've seen batteries get better over time, but I've never purchased a product with a battery that is a game changer.

  2. Re:So.. for a non-physicist on Quantum Entanglement Survives, Even Across an Event Horizon · · Score: 3, Informative
    No.

    "The no-communication theorem states that, within the context of quantum mechanics, it is not possible to transmit classical bits of information by means of carefully prepared mixed or pure states, whether entangled or not."

    See The No-Communication Theorem and the Einstein-Podolsky-Rosen Paradox.

  3. Re:No shit, Sherlock on Quantum Entanglement Survives, Even Across an Event Horizon · · Score: 1

    wtf are you talking about? You remind me of a numbers nut job that crank Noory was interviewing on coast to coast am. After a few minutes of her blathering even George was going "Huh"?

  4. Re: Unlike Christianity.... on Explosions and Multiple Shootings In Paris, Possible Hostages (cnn.com) · · Score: 1

    They don't build temples to the Red Brigade, hide in 'em, and plan terror attacks. Which is the bigger threat in your mind right now? Radical Islam, or the Red Brigade? If your hiding under your bed right now because of the threat from the the Red Brigade give your girlfriend my number. She will welcome the refreshing change I'll bring to her life.

  5. Re:The liberals are in fact aiding the moslems ! on Explosions and Multiple Shootings In Paris, Possible Hostages (cnn.com) · · Score: 1

    Islam is evil because religion is evil. There never was a more harmful plague on mankind. Killing each other because MY imaginary guy in the sky is better than yours. What nonsense.

  6. Re:The liberals are in fact aiding the moslems ! on Explosions and Multiple Shootings In Paris, Possible Hostages (cnn.com) · · Score: 1

    You do have a point Sir Neville Chamberlain.

  7. Re:Convenience is the enemy on Self-Encrypting Drives Hardly Any Better Than Software-Based Encryption (cio.com) · · Score: 1

    Why? You make it sound like your ass is on fire.

  8. Re:Convenience is the enemy on Self-Encrypting Drives Hardly Any Better Than Software-Based Encryption (cio.com) · · Score: 2

    Nope. Was keeping my passwords in a plain text file on my phone and encrypting that directory, but that got to be kind of cumbersome. Now I'm going to sound like a shill (for myself) but I decided to write my own password app. Probably not as slick as your "Keepass" thingy there, but I've looked at a number of apps and all fall short in my eyes, they usually do waay too much or waaay too little than what I need. Mine is simple; it keeps all my passwords together in one spot, and the list is exportable as an xml file (the passwords are encrypted using aes-256). I can export all my passwords to another phone (or tablet) or even to my pc if I want (which means I'll have to create a manager of some kind for the pc if I want to go that far). Its like 80% done (just wrote the export code in today in fact), and it'll be done in a few days I think. I'm not trying to shake up the world here, its just been a nice little exercise in android development and I get a nice little password database that does exactly what I need it to do. This is not a commercial app, but if you want a copy let me know and I'll post the link to it on the app store as soon as I have it done. It will be beer free and nagless. So if you find a bug FIX IT YOURSELF.

  9. Re:Why? on With Respect To Gaming, Android Still Lags Behind iOS (bgr.com) · · Score: 1

    Oh please, show me a language that doesn't have what you call "ugliness" in it. Having to use unicode strings in your app because it'll run on windows (why microsoft couldn't use the saner utf8 character set is beyond me) but, yes, "that's the way it is". Not sure how that's an indication of "ugliness". You want something to work, do it right, or create your own mechanism. You're completely free to take the android platform and create your own programming environment using what ever language you want if you find jni so ugly. However, if you find that you need to create a union between your language of choice and another one, lets see how you handle it. As I said, java is not my go to language. But that's how i write my android apps. And if I want to access a c/c++ library for some reason, a jni object to get to it is just not a big deal to me. It is to you, not to me. So what.

  10. Re:!? The federal Constitution limits the federal on Prison Hack Shows Attorney-Client Privilege Violation (theintercept.com) · · Score: 1

    Uh, no. As noted earlier, just because you are a third party doesn’t make you immune from constitutionality and law suites. Evidenced by the many issues we've seen in the news the last few years by bounty hunters breaking in the doors of the wrong house. They most certainly have had to face constitutionality and law suites, as well as the local authority they were acting under. In fact, if I'm not mistaken, in many jurisdictions bounty hunters must be deputized by the local sherrif.

  11. Re:here's a little guide on Prison Hack Shows Attorney-Client Privilege Violation (theintercept.com) · · Score: 1

    interesting opinion given that the power seat is currently occupied by a Democratic ass. But yes, those damn Republicans are responsible for everything that's wrong...

  12. Re:here's a little guide on Prison Hack Shows Attorney-Client Privilege Violation (theintercept.com) · · Score: 1

    government corruption

    The government is corrupt?? Oh, go on...

  13. Re:I don't think it works that way... on Prison Hack Shows Attorney-Client Privilege Violation (theintercept.com) · · Score: 1

    between client and 'accused'.

    A little confusing; the client is usually the accused, unless this were some kind of civil case, the rules for those are different from criminal trials. Anyway, A conversation between a defence lawyer and his client are definitely protected and covered constitutionally under client-attorney privilege, this has been the law in the land since the founding. That jurisdictions break it doesn't make it legal.

  14. Re:They're CONVICTS on Prison Hack Shows Attorney-Client Privilege Violation (theintercept.com) · · Score: 1

    I don't give a Couric about THEIR rights.

    BAD attitude to have. People sitting in jail aren't necessarily convicted yet. Add to that the number of convicted people sitting in prisons because of rogue prosecutors; ie; wrongly convicted, which DNA testing has shown a number of. If we had your attitude we'd continue (not that we've stopped, but we've seen a growing number of these) we'd be the most murderous (from executions) and punitive nation on earth. And I have a hard time with that, given we're a "civilized" society and all. I'd like to hear your attitude after you were fingered for a murder you were no where near.

  15. Re:Why? on With Respect To Gaming, Android Still Lags Behind iOS (bgr.com) · · Score: 1

    Java call from native which is really ugly to do...

    Not really, you call your C API from a jni layer, big deal. What's so messy about that? The bigger problem in my mind are 1) Everything has a version you need to be aware of, from the api to java itself to the vm to external libraries to widgets, which is typical in development but its really kind of hairy with android. Still, development is possible. I've written a few android apps, its certainly doable. But calling an api from and ndk library through JNI is hardly "ugly", its not even a big deal. Google has chosen Java as its platform language. That's how you access native code from a java code base; JNI. Its not ugly, just the way it is.

  16. Re:Offer paid support? on Corporations and OSS Do Not Mix (coglib.com) · · Score: 1

    Because commercial software is always flawless.

  17. Re:Why more careful? on Another $1 Million Crowdfunded Gadget Company Collapses (techcrunch.com) · · Score: 2

    This is a non-story. Most ventures fail, this is not news, this is a typical example. As for the engineering, I'm not exactly sure what problem they were trying to solve that conventional rotor wings couldn't over come, but a lot of inventions start out to solve one problem and are actually more beneficial for another. Acrylic was invented this way, among many other things. Its not uncommon to set out to solve X, and turn out solving Y. So, rather than look at this as a failure let's celebrate this as the ability to access money to try things out. Even stupid ones.

  18. Re:Detecting weapons is NOT the purpose of TSA... on TSA Screeners Can't Detect Weapons (and They Never Could) (arstechnica.com) · · Score: 1

    The TSA illustrates Smith's Maxim perfectly: "The reaction of every state from the beginning of time to threats, real or perceived, external or internal, has been to simply victimize its own people. Always and in every case, without exception."

  19. To date AES-256 is still secure, at least the NSA doesn't confirm or deny they can break it, most researchers assume they haven't yet, although quantum decryption methods may change that, certainly. And of course one-time pads are by their nature unbreakable.

  20. Re:OS/2 is still alive? on The Return of OS/2 Warp Set For 2016 (techrepublic.com) · · Score: 1

    Yeah, I used 2.0 about that time. I liked it, and REXX was very powerful, a very good scripting language. But, yeah, time to move on I think. OS/2 is relegated to neckbeard's still maintaining their Amigas and C/64 machines playing block/character graphics games.

  21. Re:Linus rants about EVERYTHING on Linus Rants About C Programming Semantics (iu.edu) · · Score: 2

    Macro or C script; known secure is known secure, if Torvalds produced a more elegant solution for the problem at hand, well, just because rants a lot doesn't mean he's wrong. He's annoying, but not wrong.

  22. Re:Failing upwards on HP Is Now Two Companies. How Did It Get Here? (cio.com) · · Score: 4, Insightful

    She did leave HP a mess. She was the one to cause a lot of their top engineering talent to walk, she tried to shift HP to a products company with the Compaq acquisition which was a huge boondoggle in the end, and hp's stock price fell 55% under her watch. You don't get fired for doing a good job.

  23. Re:three years? on Crime Lab Scandals Just Keep Getting Worse (slate.com) · · Score: 1

    I certainly agree on that. Which reverses the constitutional mandate that the accusers (the prosecutors) are supposed have the burden of proof; they must prove the accused is guilty. The money in the system shifts that burden to the accused in very real terms. Making the judicial system completely broken. This MUST be addressed. Not needs, MUST.

  24. Re:three years? on Crime Lab Scandals Just Keep Getting Worse (slate.com) · · Score: 5, Insightful

    Here's a thing that would appear to point to a (another) big flaw in the system; prosecutors are apparently immune from their flawed actions. They're slow to remedy wrongful convictions in these cases this Annie Dookhan tainted, and they don't appear to be accountable. Many of the news articles (and there are a lot about this lab, not only was this Dookhan character tainting evidence, but a co-worker routinely dipped into the drug bin and was high during her processing) remark on the fact that the prosecutors involved refuse to do anything about the thousands sitting in jail based on these faulty tests citing they followed procedure. I can't think of a bigger flaw in a system wherein the ones in power refuse to correct the situation. The criminal justice system in this country is in dire straits. Thanks mainly to the war on drugs.

  25. So they want to learn more about our health care.. on Chinese Hackers Targeted Insurer To Learn About US Healthcare (engadget.com) · · Score: 1

    ..Could they not have simple asked?