Slashdot Mirror


User: Kaz+Kylheku

Kaz+Kylheku's activity in the archive.

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

Comments · 846

  1. The telegram qualifies as "electronic mail". on Judge Dismisses 'Inventor of Email' Lawsuit Against Techdirt (arstechnica.com) · · Score: 1

    It is mail, sent electronically as a data transmission. STOP It was invented before the pitiful asshole was born. STOP Just fucking. STOP

  2. Throw the fucker in jail ... on Open-Source Ransomware Abused For the Second Time In Real-Life Infections (softpedia.com) · · Score: 3, Interesting

    Give him a 25 mHz 386/SX box with NetBSD. Release date is "when you crack the key to recover the data".

  3. The central pro-escrow argument is idiotic. on Questioning the Dispute Over Key Escrow · · Score: 4, Insightful

    Why would criminals conform with laws that require them to use back-doored crypto, when they can deploy the real thing through their organizations, and leave the back-doored crap to the honest citizens? Criminals don't conform with laws (by definition!) and so they will use whatever crypto they see fit.

  4. Needs to be an open protocol. on Will Lyft and Uber's Shared-Ride Service Hurt Public Transit? · · Score: 1

    Ride sharing minus the Lyfts and Ubers of this world. Preferrably something decentralized with many nodes, whereby anyone can join the network.

  5. Re:Equivalent to the energy of 20 atomic bombs? on Newly Discovered 60-foot Asteroid About To Buzz By Earth · · Score: 1

    If this "energy" measure refers to the original kinetic energy and not the impact energy, it is very disingenuous. We could likewise say that when a car pulls over from the freeway from doing 80 mp/h, to enter a truck stop, and then is involved in a minor fender-bender in the parking lot, it had the "energy of an 80 mp/h car". But, oh, science! Much of that energy was dissipated by earlier braking along the exit way, as well as panic braking just before the accident.

  6. Re:Why waste the opportunity? on Newly Discovered 60-foot Asteroid About To Buzz By Earth · · Score: 1

    Your plan is working so well that you somehow still know about ISIS, and it bothers you so much that you have to convince yourself they don't exist.

  7. Re:Isn't "Peak Stupid" writing about it. on Password Gropers Hit Peak Stupid, Take the Spamtrap Bait · · Score: 1

    Ah, but then we can supply the following counter-measure: put some good addresses into the list too!
    The crackers and spammers won't know which are which.
    If they use the list to perpetrate, then their IP address is immediately tagged as being malicious.
    If they use the list to cull their own list of nonexistent addresses, then they inadvertently cull your good address also. So you win again.

  8. Re:What if it were Microsoft code on Larry Rosen: A Case Study In Understanding (and Enforcing) the GPL · · Score: 2, Insightful

    The difference is that the code is distributed for free. No judge is going to award damages for the redistribution of something that is free. At least, not actual damages, like $$$ per infringing copy. The breach of the terms (like not redistributing the source code) could be translated to some punitive damages, perhaps. Probably the best outcomes you can hope for are: the violator of the license is either asked to stop distributing the software, or else to come into compliance: replace the GPL'ed part with a from-scratch workalike, so that the program is no longer distributed with any GPLed code, or else make the whole program GPLed.

  9. Re:Software patents on Larry Rosen: A Case Study In Understanding (and Enforcing) the GPL · · Score: 4, Insightful

    That unfortunate statement betrays a serious misunderstanding of copyright, patents, and the nature of software.

  10. Re:Paid = biased on Wikipedia Forcing Editors To Disclose If They're Paid · · Score: 1

    You're paid to write the original documentation, and are voluntarily editing the Wikipedia.

    This is about being paid to edit the Wikipedia.

  11. What??? There goes NPOV. on Wikipedia Forcing Editors To Disclose If They're Paid · · Score: 1

    The policy should be: if you're paid to write, get the fuck out!

    I'm not going to dig through the history of every article, and follow link to the authors, to check whether it is a paid shill.

  12. Extort the extorer? on Nokia Extorted For Millions Over Stolen Encryption Keys · · Score: 4, Funny

    Pay me, or you don't get to extort your users with your locking scheme! :)

  13. Speak of the devil. on LinkedIn Spam Lawsuit Can Continue · · Score: 3, Informative

    I just blocked LinkedIn today from being able to deliver SMTP to my mail server.

    Some linked-in dickhead (link sausage? haha) thought it was a good idea to send an invite to a public mailing list that I run.

  14. "Fiberglass" on Biodegradable Fibers As Strong As Steel Made From Wood Cellulose · · Score: 1

    Fiberglass is actually a composite made of epoxy (or other) resin, with glass fibers embedded in it for tensile strength.

    Until you have a biodegradable epoxy to go with your biodegradable cellulose cloth, there isn't any point.

    I don't think fiberglass itself is used for strength in other applications, but for its fire-retardant properties (insulation wool, glass cloth). Good luck with cellulose there.

  15. How about a "sudo" gun? on Congressman Introduces Bill To Limit FCC Powers · · Score: 0

    Anyone who knows their own password, and is already logged into the gun, can fire the gun, if they just speak "sudo fire", and then say their password.

    Plus they can keep killing people with just "sudo fire" with no password for a configurable amount of time since the last "sudo".

  16. Re:Fix bugs first, please! on Microsoft Demos Real-Time Translation Over Skype · · Score: 1

    ... plus "Wait, let me quit Skype and re-start; I will call you back".

  17. Fix bugs first, please! on Microsoft Demos Real-Time Translation Over Skype · · Score: 1

    For instance, it would be nice if the lastest version of Skype for Windows didn't sometimes freeze for 45 seconds at a time when merely sending an instant message, with no audio or video call in progress.

    A translator for Skype? Bah, that just needs a fixed vocabularly of audio files consisting of "can you hear me now?" and "I cannot see you!" in 50 languages.

  18. Why make a journalist suffer? on Four Weeks Without Soap Or Shampoo · · Score: 5, Funny

    If you want subjects who don't mind not bathing for four weeks, just go to any CS lab.

  19. Biggest integer yet to be found! on Biggest Dinosaur Yet Discovered · · Score: 1

    You know, no matter how large a dinosaur you find, how can you prove that it's the largest?

    Not without digging up every cubic meter of the Earth's crust to some reasonable depth.

  20. Re:Ten Reasons to use Modern Fortran on Why Scientists Are Still Using FORTRAN in 2014 · · Score: 1

    Pass by reference is the norm? That is moronic and encourages bugs. We should avoid destructive manipulation such as variable assignment as much as possible in programming; reference parameters exist to make it possible to modify a caller's variable.

    If you have reference parameters in the language, then any foo(var) call can potentially modify var. If it doesn't today, then someone can change it tomorrow to give himself access to var inside foo.

    The C convention of taking an explicit address is safe against this.

    Pass by value should be the norm. Pass by reference shouldn't even exist.

    Lisp is purely pass by value; there is no pass by reference: just that some types have reference semantics (cons cells, arrays, etc).

  21. Re:Stable, well used.. on Why Scientists Are Still Using FORTRAN in 2014 · · Score: 1

    Some old ideas indeed make much more sense. But all of those still-relevant old ideas came from Lisp, and none from Fortran.

  22. Re:Q: Why Are Scientists Still Using FORTRAN in 20 on Why Scientists Are Still Using FORTRAN in 2014 · · Score: 1

    So, Fortran issues extra instructions and pipeline stalls for accuracy, yet manages to be faster.

    That is amazing!

  23. Ah, but: how much of this ships to end-users? on Why Scientists Are Still Using FORTRAN in 2014 · · Score: 1

    Do these scientists develop friendly graphical user interfaces for their Fortran programs?

    Do these programs have robust and secure handling of all input?

    How about configuration: are there dialogs for setting up preferences, which are persisted somewhere?

    Do they package up user-friendly installers?

    How much of their stuff runs on new platforms like tablets and smartphones?

    What non-Fortran-stuff do these programs integrate with? Anything over a network?

    Where can I download a scientific Fortran program to evaluate its quality?

    Has anyone written a viable program of the following in any dialect of Fortran, new or old?

    - operating system kernel
    - device driver
    - web browser
    - web server
    - instant messenger
    - audio/video telephony client
    - etc

  24. Re:Q: Why Are Scientists Still Using FORTRAN in 20 on Why Scientists Are Still Using FORTRAN in 2014 · · Score: 1

    Wow, faster AND more accurate. They must use some mystical floating-point instructions that only Fortran compiler writers know about.

  25. Re:It's the right tool for the job on Why Scientists Are Still Using FORTRAN in 2014 · · Score: 1

    Is it possible that scientists work with throwaway programs that don't integrate with anything, are operated by command line interfaces, and assume that all their inputs are correct and trustworthy?