FrostyPolicy

joined 2 years ago
[–] FrostyPolicy@suppo.fi 18 points 1 day ago

Of course it doesn't. It's just a convenient smoke screen. Education and parental oversight are the key.

[–] FrostyPolicy@suppo.fi 4 points 1 week ago

Very true. Was just trying to give them the benefit of the doubt.

[–] FrostyPolicy@suppo.fi 181 points 1 week ago (4 children)

When you run out of even decent logical arguments you attack the people. This really tells that the industry is afraid of this movement and will use all the dirty tricks they know to oppose it.

[–] FrostyPolicy@suppo.fi 3 points 1 week ago

True. I've just seen requests to that file in my demo env for web apps I have and I've seen my browser request that file by itself when running those locally.

[–] FrostyPolicy@suppo.fi 31 points 1 week ago* (last edited 1 week ago) (7 children)

Why would you ever want to route your request like this through a third party especially an ad company? To get the favicon of a site you just request www.example.com/favicon.ico.

[–] FrostyPolicy@suppo.fi 3 points 2 weeks ago

Couldn't be happier with them. They just work and announce ahead of time about any maintenance. Have a storage box from them for backups and a vps for other uses. I do my backups with pika-backup (a borg frontend).

[–] FrostyPolicy@suppo.fi 2 points 2 weeks ago (1 children)

natives apps in principle could be faster and use more of your hardware —in practice though, they tend to be horribly bloated electron crapps.

Electron "apps" are just glorified web pages anyhow. Native applications do offer superior performance as they are AOT compiled code. The ones that are written in rust, c, c++ etc, and if they are gui applications use frameworks like QT or GTK+. They are called native since they are compiled to machine code and are directly executable in the cpu without any kind of runtime like electron browser, java or python.

[–] FrostyPolicy@suppo.fi 3 points 2 weeks ago

You can install extension to firefox mobile on android. I'm using IronFox though.

[–] FrostyPolicy@suppo.fi 8 points 2 weeks ago (2 children)

uBlock origin makes that problem go away.

[–] FrostyPolicy@suppo.fi 8 points 2 weeks ago (2 children)

I've not heard a single thing here in Finland that any governmental or related entity would be moving away from MS.

[–] FrostyPolicy@suppo.fi 3 points 3 weeks ago

Prices mysteriously go up about a week before prime day sales, then drop to a few dollars below normal, scream “39% off” and you feel like you beat the system.

Gladly this practice is illegal in Finland at lest. Here companies having sales have to show the lowest price of that product within the last 30 days just for this very reason.

[–] FrostyPolicy@suppo.fi -2 points 1 month ago (1 children)

Not all distros ship SELinux and the ones that do, don’t actually configure it securely.

You're welcome to work with distro maintainers to fix this instead of just complaining about it.

New users are expected to keep copying and pasting commands from their browsers to their terminal which compromises some Linux security defenses.

This is a big problem

Most if not all of the Linux Distros in 2025 ship with Grub bootloader, which suffers from a lot of problems, instead of using the bootloaders that does not support BIOS and will improve the reliability of booting and provide a more stable experience.

You're welcome to work with distro maintainers to fix this instead of just complaining about it.

23
submitted 1 year ago* (last edited 1 year ago) by FrostyPolicy@suppo.fi to c/linux@lemmy.ml
 

I have on the host machine two network interfaces. One is lan and the other is a wlan. For libvirt I have created a nat network which is bound to the wlan. From the guest I can access other machines in the network host wlan is connected to. Also DNS lookup works. The problem is that there's no connection to the internet at all, e.g. pinging something gives "Destination network unreachable". ~~This only happens when both network connection on the host are active.~~ Running qemu/libvirt on OpenSuse Tumbleweed.

The nat network in question:

<network>
  <name>natToWlan</name>
  <uuid>a44c939c-e6bf-44d0-8f86-376056d418a4</uuid>
  <forward dev="wlp19s0f4u1u1" mode="nat">
    <nat>
      <port start="1024" end="65535"/>
    </nat>
    <interface dev="wlp19s0f4u1u1"/>
  </forward>
  <bridge name="virbr1" stp="on" delay="0"/>
  <mac address="52:54:00:1f:64:95"/>
  <ip address="192.168.100.1" netmask="255.255.255.0">
    <dhcp>
      <range start="192.168.100.128" end="192.168.100.254"/>
    </dhcp>
  </ip>
</network>
view more: next ›