• 2 Posts
  • 62 Comments
Joined 1 year ago
cake
Cake day: July 8th, 2023

help-circle
  • Again if you want to see it like that, fine. Doesn’t change the fact that people from these countries mean something different than you when they say inciting violence is outlawed. They are obviously referring to their specific laws, that use that specific language, in this case verbatim. The “oh but there are conditionals in that law” bit you are doing here isn’t the gotcha you seem to think it is. We are aware of that. And it’s not relevant to the original question of there being potential legal consequences for the people hosting the lemmy world instance. So what is even your point?


  • Look if you want to apply an overly broad definition of violent speech to score some weird semantic point, be my guest. But the original point upthread was that incitement to violence specifically, not “violent speech” in general, is outlawed in many countries, among them those that are hosting the .world instance. And that point is very much correct.

    Which is all beside my original point, which was that the §130 StGB does not work like you boldly claimed it does.






  • Of course, Alabama school, it’s entirely possible that the lesson was complete nonsense.

    Nah, from a solely US perspective it’s correct. There were ~1.6 million military casualties in the civil war, and ~1.07 million in WW2. But there were a few more parties involved in WW2, so it’s kind of weird to frame it as less bloody. If you include civilians, estimates range from 70 to 85 million dead worldwide (not including the >20 million wounded soldiers and unknown number of wounded civilians).




  • can’t see how this can possibly be a good thing, you know it will mean funding with conditions.

    Well, the things they are funding will get funded? How is that a bad thing?!

    The conditions range from very broad, like “fix bugs” (curl), over somewhat specific like “improve cross-platform compatibility and the Linux RNG” (Wireguard), to very specific like “create a test-suite and drive development on the Fediverse account migration functionality” (ActivityPub).

    You can see more for yourself at https://www.sovereign.tech/tech

    All of these seem to be rather tame conditions that are just there to ensure the funds get used in the way they were intended to be used. And I don’t really see how that gives the STF any sort of direct control over these projects, while it gives those projects resources to achieve more than they might have otherwise. There are no long-term funding models that would enable implicit control over these projects.


  • android auto

    First I heard of this, but since it seems to be just some software that runs on the hardware of car manufacturers it seems rather unlikely. But very theoretically possible, if the car manufacturer was using default process scheduling in a CPU constrained machine and now switches to real-time scheduling in an update. But that was possible for years before this news, the code has just been mainlined to the default kernel now. If the car manufacturer cared about that they would probably have done it already with a patched kernel.


  • […] a public institution is really not a great example of the general population […]

    Which I touched upon in my disclaimer, but in some ways it is a great example. Public institutions are defined by the general population, indirectly through their representatives creating the rules that govern them, and directly through contact with the public at large. Now if all our institutions still use this very outdated technology, and you can have trouble convincing them - during a global pandemic mind you - that using email is just as safe as using fax (so not safe at all basically), then that speaks to a larger mindset in the general population.

    Many in the general public are also a lot quicker, some might even say careless, with adopting new technology of course. But as a society we are rather slow, and there are surprisingly many individuals who are hesitant or entirely resistant to adopting new technology. The fediverse usage is a bubble in a bubble here.

    The internet infrastructure is another good example for this on the societal level, as there were plans in the 1980ies [!] to lay out a glass fibre network between every publicly used building in the country, which would have gotten us a good part of the way towards adopting this new material at scale. But in the end it was deemed unnecessary and too expensive and the project got canned (mixed in with rumours of “close friendship” between the chancellor and a major copper producer). Instead now we have people running around thirty years later and collecting signatures at the door for last-mile fibre network projects that seldom make quorum and thus almost never materialise public funding.


    1. […] But also how are Germans technologically behind regarding common personal life?

    I bet you wherever in Germany you are, if you go to the website of your local city government right now they will have a still active fax number in their contact information. I guarantee it. Well if they have a website that is.

    Which is a bit silly as an example but highlights the central problem, which is that adoption of new technology happens at a glacial pace, especially in public institutions. There are many reasons for that of course, some good, like the aforementioned inclination towards privacy, some bad like whatever allows fax machines to still be around.

    And don’t get me started on internet infrastructure… In an international comparison we certainly aren’t leading the field regarding adoption of new technologies.







  • I think the problem might be your PostUp/PostDown lines have an in-interface (-i) but are missing an out-interface (-o) for the forwarding. Try this:

    PostUp   = iptables -A FORWARD -i %i -j ACCEPT; iptables -A FORWARD -o %i -j ACCEPT; iptables -t nat -A POSTROUTING -o ens3 -j MASQUERADE
    PostDown = iptables -D FORWARD -i %i -j ACCEPT; iptables -D FORWARD -o %i -j ACCEPT; iptables -t nat -D POSTROUTING -o ens3 -j MASQUERADE