Slashdot Mirror


User: TechyImmigrant

TechyImmigrant's activity in the archive.

Stories
0
Comments
5,917
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 5,917

  1. Re:Japanese Music on Musician Releases Album of Music To Code By · · Score: 1

    I like Tokyo Jihen, Happy Day, Kicell, Yukawa Shione, Predawn and a few others.

  2. Japanese Music on Musician Releases Album of Music To Code By · · Score: 4, Interesting

    I've taken to coding with Japanese music. I don't have a clue what they're singing, so they don't interfere with the language processing in my brain.

  3. Re:Deja vu all over again on Intel Announces Atom x3, x5 and x7, First SOCs With Integrated 3G and LTE Modems · · Score: 1

    >Talk to the people at Intel and ARM who know about this

    I am one of those people.

  4. Have Settled Charges? on FTC Targets Group That Made Billions of Robocalls · · Score: 4, Insightful

    WTF does "settled charges" mean? Who went to jail? Who was prosecuted? Where and when was the court case?

  5. Re:I'll be rich! on SpaceX's Challenge Against Blue Origins' Patent Fails To Take Off · · Score: 1

    I knew the patent system was horribly broken but this is obscene. Perhaps I'll patent "Utilizing a multi-wheeled conveyance to traverse a network of engineered level surfaces to traverse from an origination point to a destination point". This patent doesn't seem to cover any real technology but the general idea of "launching from a land site and landing on an ocean platform".

    It's rather like "Do X, but on the internet" patents. However it's "Do X, but at sea on a platform"

  6. Re:Deja vu all over again on Intel Announces Atom x3, x5 and x7, First SOCs With Integrated 3G and LTE Modems · · Score: 1

    there is a linear relationship between code density and the functional bandwidth of the instruction caching at every level.

    Even if this were true (which it isn't), and even if you were right that CISC has twice the code density of RISC (which it doesn't), it would still be a long way short of proving your claim that CISC gives better performance than RISC.

    I don't presume to understand why ARM do what they do.

    Certainly not 2X, that was normal slashdot hyperbole. 1.2-1.5X depending on what you compare with. But you are putting words in my mouth. Nowhere did I claim RISC was better than CISC or visa versa in any general sense. I said that compact instruction encodings are better than inefficient instructions encodings, which they clearly are for a broad class of CPU memory hierarchies that have been around in recent years. The decoding benefits of RISC were tangible for 1990 era CPUs, but the decoding overhead hasn't changed, while the rest of the CPU has got much bigger. So the decoding overhead is now negligible for the CPUs we put in phones and PCs, while the instruction bandwidth has a bottom line effect on performance. You can address it with wider buses and bigger caches, but then you can have wider buses and bigger caches with smaller instructions too.

    I'm not seeking to prove a claim. It's just the way things are.

    Accordingly a CPU with a real Huffman coded instruction set might be even better. Feel free to go implement one.

    I don't need to presume, I know that they removed some complex instructions because they made the hardware more complex and reduced performance.

    Which contradicts the evidence of the vast majority of CPUs ever made, which is they get faster as you throw more gates at them.

  7. Re:Uprising? on 'The Moon Is a Harsh Mistress' Coming To the Big Screen · · Score: 1

    That puts me in the 2%. Is that good?

  8. Re:More of the same ... on Demand For Linux Skills Rising This Year · · Score: 2

    N machines where N > 2.

    As long as N > 2, the problem is unchanged for any value of N.

  9. Re:Uprising? on 'The Moon Is a Harsh Mistress' Coming To the Big Screen · · Score: 1

    It's too many words to fit on a Marquee, and takes too long to say to the ticket vendor. By the time you say "One for The Man who went up a hill and came down a Mountain", the ticket agent has already given you your ticket, change, and is halfway through serving the next person in line.

    But I did actually see that film. Making life easy for the marquee layout is clearly not the same thing as making money.

  10. Re:Uprising? on 'The Moon Is a Harsh Mistress' Coming To the Big Screen · · Score: 1

    Yes, but now that '50 Shades of Grey' is out, can you imagine what the producers would have wanted to do with a title like that?

    How about : "Pantone PMS 400-447 and a Couple More"

    http://www.promosyon.us/Panton...

  11. Re:Politics aside for a moment. on Hillary Clinton Used Personal Email At State Dept., Possibly Breaking Rules · · Score: 1

    I remember an interview from years back where she was asked if she used email and her response was along the lines of " Oh no. Emails are discoverable".
    So yes, she knew exactly what she was doing and why she was doing it.

    Emails are discoverable whether you use a public or a private email address.

    Yes. That's what makes the current news interesting. She wasn't hiding them. She handed them over in response to a request. She wasn't not-allowed to use personal email. The rules had no such restriction. But her actions conflict with what I remember her saying was motivating her to not use email.

  12. Re:Ciphersuite Negotiation on FREAK Attack Threatens SSL Clients · · Score: 1

    I keep seeing people declare TLS's cipher choices to be mess and propose cleaning them up somehome. Look deeper. The problem is not adding things, it is retiring things. If you can't retire algorithms, you can't clean up. If you can't clean up, then negotiation is bad.

    So you have to live with your initial choices. Make them well.

  13. Uprising? on 'The Moon Is a Harsh Mistress' Coming To the Big Screen · · Score: 4, Insightful

    I suspect I'm much more likely to go and watch a film called "The Moon is a Harsh Mistress" than one called "Uprising".

  14. Re:Deja vu all over again on Intel Announces Atom x3, x5 and x7, First SOCs With Integrated 3G and LTE Modems · · Score: 1

    It's certainly not simple. But there is a linear relationship between code density and the functional bandwidth of the instruction caching at every level.

    I don't presume to understand why ARM do what they do. Whoever came up with that interrupt architecture needs a serious talking to.

  15. Re:Ciphersuite Negotiation on FREAK Attack Threatens SSL Clients · · Score: 1

    One of the problems with TLS is we keep adding better ciphers, but the old weak ciphers hang around and implementation errors leave us vulnerable to downgrade attacks. A big problem with negotiable cipher suites is the inability to retire old ciphers. We might like to think it can be done, but it isn't a solved problem and TLS is a prime example of that failure.

    But crypto has moved on a long way and we have a lot more of the basic crypto functions coming with mathematical proofs of the hardness bounds of attacks, which was simply not true when those older ciphers, hashes and macs were published.

    I would prefer negotiation to be in terms of algorithm parameters we can negotiate on the fly, such as the number of rounds on the cipher, or the amount of entropy fed into a sponge construction. It's easy to increase an iteration count. It's hard to add a new algorithm to a device after it's been built. These methods come with their own problems, but they're a heck of a lot less of a problem and a heck of a lot more solvable than ciphersuite negotiation, which has failed year after year.

    There is a reasonable physical arguments that even with quantum computers that can do what people claim they can do (not likely) that it is impossible to brute force anything above O(2^360). So lets accept that we can pick a secure key size, pick it and focus on the parameters we can alter over time, rather than those that we cannot. Also focus on things that are implementable by any reasonable programmer or circuit designer. It's incumbent on any crypto system designer to fight against complexity at all costs. Complexity will undermine your secure algorithms and protocols in ways you cannot control.

  16. Re:For-Profit Correctional Facilities on Supreme Court Gives Tacit Approval To Warrantless DNA Collection · · Score: 1

    I am. This has led to many miscarriages of justice.

    Prosecutor: "The DNA test shows there is a 1 in 10 million change that this person is not guilty"
    Truth: "The DNA test shows that this person is one of around 35 people in the USA who could have deposited this DNA, I.E. 1 person in 10 million of the US population (assuming the US population to be 350 million)"

    There needs to be something else to make it that person and not someone else. Scouring a DNA database of the whole US is going to throw up many false positives.

  17. Re:Politics aside for a moment. on Hillary Clinton Used Personal Email At State Dept., Possibly Breaking Rules · · Score: 1

    So yes, she knew exactly what she was doing and why she was doing it.

    If she is so smart, then how come she got caught?

    I didn't say she was smart. I don't think smartness is a one dimensional metric.

  18. Re:Ciphersuite Negotiation on FREAK Attack Threatens SSL Clients · · Score: 1

    I mean like crypto algorithms with lots of security headroom. 256 bit keys and no known attacks, or equivalent security. DJBsque Edwards curve ECC to minimize the implementation errors that keep cropping up. No X.509 because it's seems impossible to implement securely. And on an on.

    TLS is not fit for purposes. We should stop pretending and replace it. That's what I'm working on.

  19. Ciphersuite Negotiation on FREAK Attack Threatens SSL Clients · · Score: 1

    Ciphersuite Negotiation is a liability. A good security protocol will not have it. It is empirically impossible to get right.

    Pick one set of algorithms, good enough for the lifetime of the device or system and any changes are done by replacing the single static suite on both ends, say once per decade. Make the whole thing so utterly simple to implement that it would be hard to get wrong.

  20. Re:FREAK on FREAK Attack Threatens SSL Clients · · Score: 2, Funny

    Factoring Attack on RSA-EXPORT Keys

    Why do people go to the trouble of making an acronym if they're going to screw it up anyway?

    Factoring Attack on Rsa-exporT keys?

  21. Re:Not a chance on Snowden Reportedly In Talks To Return To US To Face Trial · · Score: 1

    Are you suggesting that Seal Team Six have magical powers that lets them operate inside the heart of Russian territory without the likelihood of being captured?

    The flippers would be a dead give away. That and the balancing a beach ball on their noses trick.

  22. Re:Full blooded American here on Snowden Reportedly In Talks To Return To US To Face Trial · · Score: 1

    Slipping in an assertion that he did damage is pretty shill worthy.

  23. Re:Full blooded American here on Snowden Reportedly In Talks To Return To US To Face Trial · · Score: 1

    All he needs to do is show that a stingray was used and demand the details of the device be entered into evidence.
    Then they'll drop the charges.

  24. Re:Bad idea on Snowden Reportedly In Talks To Return To US To Face Trial · · Score: 1

    The real problem is that there is no legal mechanism for exposing this subversion

    If they exposed the git instead, everyone could perform their own prosecution locally.

  25. Re:Motivations aren't the only factor on Snowden Reportedly In Talks To Return To US To Face Trial · · Score: 1

    Odd. When I gun someone down, it sure as hell matters why I did it.

    Is your name Joe?