• 1 Post
  • 10 Comments
Joined 1 year ago
cake
Cake day: July 8th, 2023

help-circle
  • Creating bigger and stronger governments will only lead to the protection of an elite that is way too irresponsible with their powers.

    Well I clearly see the danger. The many against the few is a problem as old as society. And where there is power, there will be abuse. And every system we have, like separation of powers and checks and balances, is flawed. But the cold hard truth is that we have run out of time and I don’t really see any other viable solutions. If somebody has one please let me know, that’s why I made this post.

    It’s genuinely very hard to find someone that says: “I don’t care about microplastics, “I have no issue with air pollutants causing cancer” and “I don’t care we are trashing the ocean”.

    I know what you mean, most people would agree on this. But sadly it is very easy to find the people who would say so. Cui bono? Who is benefiting? So we need to regulate them. And then of course there are people too consumed with simply subsistence to care about any of this.

    I don’t know if governments and corporations will solve the climate crisis, but goddamn I’ll do my part and help businesses and others do their part too.

    On this we agree.




  • 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.







  • 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