FrostyPolicy

joined 2 years ago
[–] FrostyPolicy@suppo.fi 12 points 3 days ago (1 children)

This is or was part of their anti-spam/flooding protection.

That's the official explanation. A phone number is a nice way to attach a real world identity to the data (which of course is sold to advertisers/data brokers etc).

[–] FrostyPolicy@suppo.fi 3 points 4 days ago (1 children)

It's all Fediverse. You can follow things on lemmy on mastodon and vice versa and so on.

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

Not the same thing. With session saving I don't have configure anything.

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

KDE + wayland on Tumbleweed gave me this experience.

[–] FrostyPolicy@suppo.fi 9 points 1 week ago (15 children)

Wayland has at least one deal breaker for me. It doesn't remember where my windows were at logout when saving the session. I have six virtual desktops and have specific windows in certain desktops. Putting everything back where they belong after each login, no thank you. Until they add that I'll stick to X11.

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

I'll add shift + f6 for refactor rename and ctrl + 6 for redefining your function i.e. add/remove parameters and/or return value.

[–] FrostyPolicy@suppo.fi 31 points 1 week ago (5 children)

I use Jetbrains' products for all my coding needs.

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

X11 can be easily forwarded over ssh. You do need to have at least the application you want to forward installed on RPI, possibly X11 as well. You also need a X11 server on the other side.

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

On a related note. Why would creators add sponsored segments/other sponsoring/patreon etc if YT pays them enough?

spoilerYT doesn't pay them enough. Unless your some kind of super star.

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

Even youtube doesn't pay the creators that much. Lois Rossman in a recent video showed some of his video in YT that had over 200k views and generated ~100 USD of income.

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

Nebula pays creators, and you pay to Nebula.

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

Even university students studying computer science don't have this basic knowledge anymore.

22
submitted 9 months ago* (last edited 9 months 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 ›