I’m the administrator of kbin.life, a general purpose/tech orientated kbin instance.

  • 0 Posts
  • 293 Comments
Joined 1 year ago
cake
Cake day: June 29th, 2023

help-circle


  • I think that is indeed the best you can hope for with new labour in control over the tories. Slightly less backhanders and tax breaks for the already stupidly rich.

    I don’t expect anything far left of centre. I say this as someone that is somewhat centre left (UK centre left to be clear, USAans don’t judge me on your political compass), I don’t really think I resonate too much with the current labour party.

    I think the thing that terrifies me, is that the tory party we had, that pushed through a no-deal brexit (when there were many other less disruptive ways to leave the union available), that has wet dreams about planes flying immigrants to Rwanda weren’t right wing enough for our population.

    What is the tory party’s solution to this going to be? I doubt it will be returning to the centre right position they occupied in the Cameron era. They either accept their death, or move further right. I suspect we’ll see the latter. When we find out their new leader, I suspect it will cement their direction for us all to see.


  • That’s what I originally thought would be the case. But, just statistically (looking at voter share here):

    2019: Cons: 43.6% Lab: 32.1% LD: 11.6% SNP: 3.9%
    2024: Lab: 33.7% Cons: 23.7% Reform: 14.3% LD: 12.2% (Weirdly, wikipedia has yet to include reform in their share ranking had to use BBC)

    Labour picked up less than 2% more of the vote share. Reform took the vast majority of the tory lead away.

    Don’t get me wrong, I’m glad the tories are out. But, it’s mostly because reform split the vote and Labour were second place in most constituencies. This is important to bear in mind while the conservatives sort themselves out to decide how they deal with not being right wing enough…







  • Well good news. Because ipv6 has a thing called privacy extensions which has been switched on by default on every device I’ve used.

    That generates random ipv6 addresses (which are regularly rotated) that are used for outgoing connections. Your router should block incoming connections to those ips but the os will too. The proper permanent ip address isn’t used for outgoing connections and the address space allocated to each user makes a brute force scan more prohibitive than scanning the whole Ipv4 Internet.

    So I’m going to say that using routable ipv6 addresses with privacy extensions is more secure than a single Ipv4 Nat address with dnat.



  • I think people’s experience with PLE will always be subjective. In the old flat we were in, where I needed it. It would drop connection all the time, it was unusable.

    But I’ve had them run totally fine in other places. Noisy power supplies that aren’t even in your place can cause problems. Any kind of impulse noise (bad contacts on an old style thermostat for example) and all kinds of other things can and will interfere with it.

    Wifi is always a compromise too. But, I guess if wiring direct is not an option, the OP needs to choose their compromise.



  • OK, one possibility I can think of. At some point, files may have been created where there is currently a mount point which is hiding folders that are still there, on the root partition.

    You can remount just the root partition elsewhere by doing something like

    mkdir /mnt/rootonly
    mount -o bind / /mnt/rootonly
    
    

    Then use du or similar to see if the numbers more closely resemble the values seen in df. I’m not sure if that graphical tool you used that views the filesystem can see those files hidden this way. So, it’s probably worth checking just to rule it out.

    Anyway, if you see bigger numbers in /mnt/rootonly, then check the mount points (like /mnt/rootonly/home and /mnt/rootonly/boot/efi). They should be empty, if not those are likely files/folders that are being hidden by the mounts.

    When finished you can unmount the bound folder with

    umount /mnt/rootonly

    Just an idea that might be worth checking.




  • I think we should qualify the question. I think I’d like to hear a reason for society as a whole to exist that is reasoned and has a firm basis in logic and has no emotive or circular reference.

    Because I cannot see the point of it (and I’ve been accused of being a pessimist, depressed and worse for expressing this opinion). So, I would really like to hear an actual reason for us all to be here.



  • Yeah, but they’re not. That’s the modern world. But also even if it was a web server there’s usually ways to advertise the IP for the app to connect to. I’ve seen other stuff do that. So getting an IP is easy. Once the app knows the IP and if you really want to allow connections from outside to your IOT devices (I wouldn’t) it could remember the IP and allow that.

    You really don’t need to give a fixed IP to everything. I think I’ve given 1 or 2 things fixed IPv6 IPs. Everything else is fine with what it assigns itself.