Slashdot Mirror


User: The+Evil+Atheist

The+Evil+Atheist's activity in the archive.

Stories
0
Comments
1,135
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 1,135

  1. Re:Hiring brogrammers who push out real talent on Ask Slashdot: Biggest IT Management Mistakes? · · Score: 1

    Kind of easy to prove that they don't have any AI...

  2. Re:Minix is under a BSD license on Intel's ME May Be Massively Infringing on Minix3's Free Software License (ipwatchdog.com) · · Score: 1

    The Free Software Foundation _wrote_ the GPL

    So what? That does not mean they have any control over any software merely because they are also GPL. In fact, the FSF has strict rules about what they let IN to be placed under the FSF umbrella.

    so they are the best example of a a GPL copyright holder with multiple copyrights

    Again, so what? You are talking about the FSF. I am talking about the GPL itself. Stop treating them as if they're the same.

    The licence itself does not allow the FSF to withdraw copyrights from any entity for all other GPLd projects, not even the ones they own.

  3. Re:Minix is under a BSD license on Intel's ME May Be Massively Infringing on Minix3's Free Software License (ipwatchdog.com) · · Score: 1

    GPL is not the FSF. Most GPL software is not owned by the FSF and so whatever the FSF decides to do does not apply to GPL in general. Furthermore, the FSF cannot do what is out of the licence's scope. The GPL is its own thing that the FSF itself must obey.

  4. Re:Minix is under a BSD license on Intel's ME May Be Massively Infringing on Minix3's Free Software License (ipwatchdog.com) · · Score: 1

    There's a common sense basis for that. The GPL isn't an organization or a collective. It's just a licence. A licence, regardless of which country's laws, or international law, cannot forbid the use of other things having the same licence. That would be a ridiculous ability for a licence to have.

    Such a thing would also work against the GPL more than help it. What if someone was infringing on one GPL project, but then was a very good contributor to another unrelated project? That other GPL project would suffer for no fault of their own. No one would adopt the GPL in that case, and no one is protected.

  5. Re:Indeed. C++ is a better C on Why ESR Hates C++, Respects Java, and Thinks Go (But Not Rust) Will Replace C (ibiblio.org) · · Score: 2

    That's exactly the reason why I prefer C++ over Lisp. I've tried learning Lisp many times. The thing that got me every time was when macros were run. Templates and constexpr doesn't have that problem, and they're also hygienic, by definition. You know precisely when they run, and you get a compile error when they can't. The only way I could get my head around List Processing patterns was through metaprogramming with variadic templates, and that was because, despite the scary error messages, you can actually figure out exactly where you went wrong.

    You can easily get a sense of what you know at compile time, and what you don't.

  6. Re:Also affects normal people on 'I See Things Differently': James Damore on his Autism and the Google Memo (theguardian.com) · · Score: 1

    it implies that difficulties to conform to the lunacy of this new authorian left is some sort of mental illness.

    Who is calling high functioning autism a mental illness? It's a mental condition, but not an illness.

    (If they would, they would ask them for an opinion and figure out quite quickly that they don't want to be the battle ground of the next proxy culture war. On the contrary, they want to be left alone.)

    You're just putting words into trans-people's mouth as you are accusing "the modern intelligentzia" of doing. Some trans-people do want to be left alone. But quite a lot more want to have equal rights. Kind of telling to call fighting for equal rights a "culture war".

  7. Re:This has been tried before on The House's Tax Bill Levies a Tax On Graduate Student Tuition Waivers (nytimes.com) · · Score: 1

    Other countries have no problem with the government heavily backing universities. So instead of the knee-jerk "government appears here, bad things happened, therefore government is bad", try to actually figure out what you're doing wrong that others get right.

  8. Re:Progressive wet dream on Silicon Valley Thinks It Invented Roommates. They Call It 'Co-living' (theguardian.com) · · Score: 1

    Ah, so "progressive" is "anything I don't like". If conservative policies lead to outcomes you don't like, then "they were progressives all along, and I don't have to face the fact that I was wrong".

  9. Re:That's because... on All 500 of the World's Top 500 Supercomputers Are Running Linux (zdnet.com) · · Score: 1

    If you ask Linus, he'd tell you he still does it for fun.

  10. Re:Rust Code of Conduct on ESR Sees Three Viable Alternatives To C (ibiblio.org) · · Score: 1

    Grownups don't need a code of conduct.

    Unfortunately don't see too many grownups in programming these days.

  11. Re:"C with safety" has been tried before on ESR Sees Three Viable Alternatives To C (ibiblio.org) · · Score: 0

    Please quote the exact part of the Rust Code of Conduct which says you can be excluded simply for disagreeing.

  12. Was that ever the point? on Body Camera Study Shows No Effect On Police Use of Force Or Citizen Complaints (npr.org) · · Score: 4, Insightful

    The point, as I understood it, is that we have footage that shows what really happened, as opposed to when cops lie about the mortal danger of a black person running away from them,

  13. Lessons learned on Is Project Management Killing Good Products, Teams and Software? (techbeacon.com) · · Score: 3, Interesting

    I'm continually surprised at all the things we learned about engineering software systems that don't get applied back into management.

    We know throwing threads at a problem doesn't work if all you do is end up locking everything. We know that high coupling and low cohesion leads to irreducible complexity. Sharing mutable state instead of doing a little bit of analysis to see what the dependencies are and break down tasks to minimize the reach of these dependencies.

    Yet somehow, all these lessons from concrete experience (rather than abstract theory) gets thrown out the door in project management, even from managers who were once software engineers. Project management should be there to facilitate message passing and work stealing queues without trying to force when these things happen.

  14. Makes sense on Australia Finally Creates Its Own National Space Agency (yahoo.com) · · Score: 1

    We have lots of space.

    Until you mention the word "immigrant".

  15. This is why you're seeing the resurgence of neo-nazis and white supremacists.

    They're the ones voting in line with the party who wants to reduce government to zero, providing no government jobs. They don't want to pay taxes on their inevitable massive lottery win. They're own bloody fault.

  16. They're both not wrong. Microsoft's use of WSL won't further the cause of free software. But it will still benefit open source (just not Free software). Right now, the WSL arrangement makes Ubuntu the mitochondria, but one could argue it could happen the other way around. Even though it is technologically subsumed into Windows via WSL, it could be argued that it is Windows that is being co-opted by Ubuntu from a strategic standpoint.

  17. Re:Why Java? on IBM Open Sources Their Own JVM/JDK As Eclipse OpenJ9 (eclipse.org) · · Score: 1

    The language is large, but I wouldn't call it a bloated mess. It's not bloated because it doesn't cost anything to not use a feature. In Java, you pay for things because you have no alternative. eg, you have to pay for virtual dispatch whether or not you need it. In C++, if you want polymorphism, you can achieve it without virtual dispatch. Most of the advanced language features are there for authors of generic libraries. It allows the complexity of the implementation to be truly hidden from the client code, unlike in Java where enforced inheritance hierarchies as a design pattern is leaked across API boundaries.

    And what's wrong with external dependencies? You don't want external dependencies, yet you don't like C++ because it is a "bloated mess". What criticism do you want? C++ is too big or C++ is too small? You can only choose one. You can't talk out of both sides of your mouth.

  18. Re: Why Java? on IBM Open Sources Their Own JVM/JDK As Eclipse OpenJ9 (eclipse.org) · · Score: 1

    I have no idea what you're doing wrong, since I've never encountered anything you're talking about.

  19. Re:Not the Distance, but the Time... on Most Powerful Cosmic Rays Come From Galaxies Far, Far Away (space.com) · · Score: 4, Informative

    We are also told by physicists that our universe started with a "big bang", a state and point in time at which the state of our universe was so energised that the sub-atomic particles we take for granted today [never mind atoms and molecules] did not exist - because the universe had not cooled sufficiently. So if you extrapolate this facts, don't they suggest that it stands to reason that, the further away in distance [and thus the further back in time] that we look, the higher the energies we would expect to observe. Everything else is [just / subject to] entropy.

    No, because the high energies from that time has cooled down to what we predicted and observed as the Cosmic Microwave Background.

  20. Re:What I find interesting is on Mind-Altering Cat Parasite Linked To a Whole Lot of Neurological Disorders (sciencealert.com) · · Score: 1

    Funnily enough, that's only a concern back when superstitions were widely held beliefs. "The Devil made me do it". The most newsworthy of recent incidents was former South African cricket captain Hanse Cronje.

    With naturalistic explanations, at least there is a chance in hell to actually test it instead of people getting away by blaming being possessed.

  21. At least you're not denying that it's happening.

    If you could understand even just the summary, you'd know parasites play a big role in the food chain. So it's not an unequivocal good thing.

    Maybe it's time you stop getting your news from headlines.

  22. Re:What about following the Rust model? on Why Oracle Should Cede Control of Java SE (infoworld.com) · · Score: 1

    You're the smartass kid in class who takes everything literally as though its funny and clever and reads only enough of a sentence to feel like you're so smart to find a contradiction. But that contradiction falls apart when actually comprehending the whole sentence, had you cared to read it whole.

  23. Re: Increased birth defects? on Stanford Study Finds New Dads In US Are Older Than Ever (mercurynews.com) · · Score: 2

    I was responding to an obvious "indentity politics" nonsense. But apparently that's okay for you. That's very telling.

  24. Re:Increased birth defects? on Stanford Study Finds New Dads In US Are Older Than Ever (mercurynews.com) · · Score: 4, Insightful

    What do you mean "wouldn't dare"? Are you living under a fucking rock? Women have been told since prehistory to have children young. The birth defects from older women are well known. Only now we're seeing a slight correction the other way warning that it actually does effect men too. For a while, the folk wisdom was that only the woman's age mattered and not the men. Nice try in attempting to play the injured party here.

  25. Re:That's what's good about critical thinkers on Mathematician Who Claimed 'P Is Not Equal To NP' Says His Proof Is Wrong (arxiv.org) · · Score: 1

    Telling people what to eat and not eat (as one example among many) is hardly being concerned with the eternal.