Macros

joined 1 year ago
[–] [email protected] 1 points 2 months ago

Wäre ja schön, aber die müssen ja auch mitmachen. Signal hat schon angekündigt, dass sie dann in Europa einfach dicht machen werden.

Deshalb ist es so wichtig, Leute wie Patrick Breyer (oder bald Anja Hirschel) im EU-Parlament zu haben, die dagegen kämpfen.

[–] [email protected] 2 points 3 months ago

Same for me.

I always was curios and learned early and in detail about all of the negative effects of alcohol. Damage to organs like the brain and the liver for example. So I decided to avoid it. Seeing my friends with hangover and making really bad decisions whiled drunk only enforced me. I also had two friends who at some time asked me to look after them and stop them if they drink to much (one after he a night where he desperately tried to call a taxi with his wallet ^^)

Pressure to drink was strongest in early university. But I always found easy ways to diffuse it. If they went on for an hour and somebody said "Come on, just one sip" I did that and took just one very little sip. (I also dislike the taste of alcohol and I guess its the same for anybody who hasn't consumed much, only cidre was somewhat ok in taste) Or one time I was on vacation with a few friends and they played a drinking game. I participated and drank a whole glass of Water when it was my turn. Everybody had fun.

After the first two years (nearly) everybody accepted my stance and now every friend just knows it and respects it. When our bigger friend group travels to a hut in the alps I can safely ask anybody of my friends to mix me a cocktail and can be sure it will be an non alcoholic one. I also had the great luck that the love of my life never tried alcohol.

One thing I noticed: Often my friends or more often parents say to try some dessert e.g. Tiramisu, It doesn't taste after alcohol at all. I take a little bite and taste it very strongly. I still don't know if that are moments where they downplay it or where they really don't notice it.

In whole I may have drunk less than half a glass of alcoholic things in my life (I have tasted beer, wine, Cidre, 2-3 cocktails and the tiniest bit of Becherovska)

[–] [email protected] 7 points 3 months ago

But in the details this attack is not that bad. E.g. NordVPN and I guess also other VPNs use firewall rules to drop traffic on normal network interfaces.

Their side channel is still routing traffic away from the VPN channel. Then they can observe that there is no traffic and guess that the user either didn't make requests in that moment or that he wanted to visit a website in the range covered by the route. They can not spy on the traffic.

Also you can not quickly move into a network and apply this attack, as DHCP leases usually last 1 day or at least 1 hour. Only when they expire you can apply the attack (or you force the user to drop from the network, which is easy if they are using WPA2, but only possible by blocking the wifi signal if they are using WPA3)

It is a serious issue and should be mitigated, but not as huge as news articles make it.

[–] [email protected] 14 points 3 months ago* (last edited 3 months ago) (1 children)

This text is not from generative AI like GPT-4.

How do I know?

  • Its original, e.g. the part around bubba. And with original I do not mean the exact phrase but the idea of the simile.
  • Is is not generic. A genAI always resorts to getting very generic the longer the text it is forced to generate is.
  • I does not follow a usual structure. genAI resorts to following a language teachers paradigm. Introduction, main part, conclusion.

and other minor signs.

This is just a fellow human giving solid advice.

[–] [email protected] 4 points 3 months ago

Cool gemacht die Website. Man kann entweder Wahl-o-Mat mäßig ein paar Fragen beantworten, oder direkt die Unterschiede zwischen Piraten und Partei X bei den Abstimmungen ansehen.

Viel besser als nur auf die Wahlversprechen zu schauen.

[–] [email protected] 11 points 4 months ago

I am a sysadmin and believe me when I say that happens. Mostly due to updates. Within that updates that just plainly break things. E.g. deleting the users files. Or other updates which only break some PCs. (those are fun to diagnose) E.g. if the recovery partiton created by its own installer is suddenly to small. and I also had it more than a few times that Windows pulled in a driver "update" which broke things. One time it even tried to apply the wrong driver! I have now disabled all driver updates trough windows on all PCs I manage. Rarely PCs also just suddenly refuse to boot, being caught in a recovery loop. After trying two times for hours to find the reason and only one success I don't care anymore and just restore a working backup in that case. Mind that (nearly) all users do not have admin rights.

On Linux? I had it that release upgrades broke things, but only once several years ago on the PCs where I wait till the official release is made. On my own ones I am often to feature hungry to wait until after the beta, and I know I can fix things. I had one 12 year old PC where X11+KDE got unstable after a release upgrade, thankfully a switch to Wayland solved this. Besides that? Never had any issue I didn't cause myself and never had a running system which suddenly broke. Granted I do not administer as many Linux PCs as Windows ones. But there are a few, some of them also in the hands of users.

[–] [email protected] 8 points 4 months ago* (last edited 4 months ago)

Run sudo apt dist-upgrade -y right after an upgrade to the Kubuntu 24.04 beta on a semi production system.

This is right after the xz thing happened. Also while Ubuntu made the t64 migration (Replaced packages with a 32 time variable with a 64 bit one, the packages are renamed. E.g. lib2geom1.2.0 to lib2geom1.2.0t64)

Packages based on the compromised xz had been removed from the repositories, but I already had some newer ones installed which where dependent on them. Also they already wanted the packages with the t64 addition, which by now where nowhere present in the system.

So dist-upgrade did what it could to upgrade 5 packages and bring the system into a consistent state: It uninstalled half of the system including some somewhat essential packages.

I noticed one of them scrolling by and hit CTRL+C. Afterwards I had the choice of saving the data and restoring from a backup a few weeks ago, or to patch it up by hand. So I did the second and created transitional packages like an empty lib2geom1.2.0t64 which depends on lib2geom1.2.0 which was in the repositories back then. 20 of these later I could install packages to get the GUI somewhat working and now weeks later all the t64 migrations are back in the repos and the system is fully functional again :)

Lessons learned:

  • Be very careful with dist-upgrade
  • Manually trigger a backup before a release upgrade

In now upgrade with
sudo apt-get update && sudo apt-get upgrade -yV && read -p "Flatpak Update? (yj/n): " choice && [[ $choice = [YyJj] ]] && sudo flatpak update --noninteractive
and equivs-build ( sudo apt install equivs) came in really handy in building the transitional packages fast.

view more: ‹ prev next ›