• 0 Posts
  • 18 Comments
Joined 2 years ago
cake
Cake day: December 26th, 2023

help-circle


  • Interested to see how this plays out.

    Prohibiting Holocaust denial is relatively easy, because we have the benefit of it being history, and we have an ample historical record and a clear consensus among historians. Plus, no one can credibly claim that the legislatures were not thinking of the Holocaust when they wrote the law.

    However, how are they planning on applying the law to contemporary international crimes? People make accusations of them all the time. And the other side always denied them. And the actual facts are generally obscured by a massive fog of war that can take years to see through, if ever.

    There is also plenty of history where the answer is less clear. Do we really want courts involved in determining if the 15th century conquest of the Canary Islands counts as a genocide. Or if some unnamed mass grave an archeologists unearths was caused by an invading army killing all of a city’s adult males, or simply a burial site for fallen soldiers?

    What about the book of Esther. Taken literally, it ends with what is arguably a genocide committed by the Jews against the Persians. However, outside of some Israeli hardliners reinterpreting that ending for contemporary political purposes, it is widely understood that that ending is a literary device, not a literal telling of events. Did my Hebrew school teachers violate this law when they told me we didn’t actually kill 75,000 Persians? [0].

    What about the ongoing genocide against white Afrikaners going on in South Africa today? Am I violating the law when I say that genocide is not real, and just something the rightwing in the US invented for domestic political purposes. If the US has such a law, could Trump use it to jail his political opponents who criticized his recent stunt of accepting 60 Afrikaner refugees?

    Do we defer to an international body like the ICC or ICJ? In that case, you have just outlawed disagreeing with those bodies.

    The UN has repeatedly found it to be a massive human rights violation. Does disagreeing with those findings violate this new law?

    [0] As an aside, secular historians generally consider all of Esther to be fiction.





  • I think the image assumes that the viewer is familiar with merge sort, which is something you will learn in basically every undegraduate CS program, then never use.

    To answer your first question, it helps to have something to compare it against. I think the most obvious way of sorting a list would be “insertion sort”, where you look through the unsorted list, find the smallest element, put that in the sorted list, then repeat for the second smallest element. If the list has N elements, this requires you to loop through it N times. Since every loop involves looking at N elements, this means you end up taking N * N time to sort the list.

    With merge sort, the critical observation is that if you have 2 sublists that are sorted you know the smallest element is at the start of one of the two input lists, so you can skip the inner loop where you would search for the smallest element. The means that each layer in merge sort takes only about N operations. However, each layer halves the number of lists, so you only need about log_2(N) layers, so the entire sort can be done in around N * log(N) time.

    Since NlogN is smaller then N^2, this makes merge sort theoretically better.




  • homura1650@lemm.eetoScience Memes@mander.xyzScience is Magic
    link
    fedilink
    English
    arrow-up
    7
    ·
    edit-2
    11 months ago

    Quantum mechanics is not magic. Magic specifies the outcome, but not how a system evolves to reach that outcome. Quantum mechanics has precise equations describing how a system will evolve over time, but is famously bad at describing the outcome.

    By the same token, we can see that thermodynamics and conservation laws, while widely accepted, are magic. I have heard legend of a deeper magic known as “Lagragians”, although knowledge of that lost art remains confines to the warlocks’ ivory tower.

    https://xkcd.com/2904/


  • homura1650@lemm.eetoScience Memes@mander.xyzBreast Cancer
    link
    fedilink
    English
    arrow-up
    22
    ·
    1 year ago

    The AI developers understand how AI works, but that does not mean that they understand the thing that the AI is trained to detect.

    For instance, the cutting edge in protein folding (at least as of a few years ago) is Google’s AlphaFold. I’m sure the AI researchers behind AlphaFold understand AI and how it works. And I am sure that they have an above average understanding of molecular biology. However, they do not understand protein folding better than the physisits and chemists who have spent their lives studying the field. The core of their understanding is “the answer is somewhere in this dataset. All we need to do is figure out how to through ungoddly amounts of compute at it, and we can make predictions”. Working out how to productivly throw that much compute power at a problem is not easy either, and that is what ML researchers understand and are experts in.

    In the same way, the researchers here understand how to go from a large dataset of breast images to cancer predictions, but that does not mean they have any understanding of cancer. And certainly not a better understanding than the researchers who have spent their lives studying it.

    An open problem in ML research is how to take the billions of parameters that define an ML model and extract useful information that can provide insights to help human experts understand the system (both in general, and in understanding the reasoning for a specific classification). Progress has been made here as well, but it is still a long way from being solved.





  • Java did have a Security Manager that can be used to prevent this sort of thing. The original thinking was that the Java runtime would essentially be an OS, and you could have different applets running within the runtime. This required a permission system where you could confine the permissions of parts of a Java program without confining the entire thing; which led to the Java security manager.

    Having said that, the Java Security Manager, while an interesting idea, has never been good. The only place it has ever seen significant use was in webapps, where it earned Java the reputation for being insecure. Nowadays, Java webapps are ancient history due to the success of Javascript.

    The security manager was depreciated in Java 17, and I believe removed entirely in Java 21.


  • homura1650@lemm.eetoScience Memes@mander.xyzPhysics
    link
    fedilink
    English
    arrow-up
    15
    ·
    1 year ago

    The difference between physics and magic is that physics works by describing the forces acting on a system. To predict an outcome, you just progressivly apply those forces over time.

    With magic, you just specify the outcome, but not how you get there.

    This is how we know that thermodynamics is magic. Conservation laws and Lagrangeans too.

    https://xkcd.com/2904/


  • Not nessasarily, the protocol could be written so that an instance simply tells other federared instances “X of my users upvoted this, and Y downvoted this”.

    The tradeoff being that instance then have less tools to work with to moderate voting. Instead of being able to do global vote ring detection, the most they can do is look for abuse on their own server, and trust that every instance they vote-federate with does the same. Even then, with every instance trying to be vigilant, no one instance would have the info to detect a cross-instance abuse.