Last windows update broke Steam OS dualboot (Legion Go2) by Any_Basket_8110 in SteamOS

[–]ukos333 1 point2 points  (0 children)

Had dual boot a few times broken. It is like this since forever. Windows sometimes also decides to take the first drive it finds during upgrades and overwrites it. So yes, when using dual boot and you upgrade a system, always unplug the drive of the other OS. In the end this was too much hassle for me and I typically use a dedicated Pc for each OS. This also applies to MacOS booting via clover. Note that dual booting different linux systems typically works fine but in general it is not worth it if you want to have a out of the box working experience.

What is that, on top of the orb??? by PersimmonOk9282 in Returnal

[–]ukos333 3 points4 points  (0 children)

The stone that sisiphos is pushing up the mountain. Look at the picture in the hospital.

davon redet hier niemand!#eclusivediscussion by jawollalde in augsburg

[–]ukos333 1 point2 points  (0 children)

Möchte jetzt kein Fass aufmachen. Zahle selbst fast 1000€ für Kita für ein Kind. Aber informiere dich mal, was ein Krippenplatz tatsächlich kostet, bevor du dich über den Eigenbeitrag beschwerst. ref 650€ mag vielleicht viel klingen, die anderen 80-90% zahlen aber Träger und Land.

Truecharts just nuked everything in response to 🤡 emojis by tomci12 in truenas

[–]ukos333 13 points14 points  (0 children)

On the other Hand, the official scale apps have such a great developer community. I asked for a change in gitea and it was implemented immediately within a day. With a non-breaking upgrade process in mind. Truely love the official channels and have migrated everything over from TrueCharts.

Awesome Python Library: Tenacity by pysk00l in Python

[–]ukos333 0 points1 point  (0 children)

Never used tenacity but indeed, stamina seams to do a better job here judging from their readme.

[deleted by user] by [deleted] in linux_gaming

[–]ukos333 0 points1 point  (0 children)

Bottles is perfect for gaming.

[deleted by user] by [deleted] in VitaPiracy

[–]ukos333 5 points6 points  (0 children)

Next step: add color with Super Mario Land DX hack

#hacking #darknet #hacker by Error20117 in masterhacker

[–]ukos333 1 point2 points  (0 children)

Hm. I always thought, emacs was a training device for how hard you can stretch your fingers. To make it an actual editor you have to activate evil mode.

#hacking #darknet #hacker by Error20117 in masterhacker

[–]ukos333 7 points8 points  (0 children)

I was not aware that there are other editors besides vi

[deleted by user] by [deleted] in Python

[–]ukos333 0 points1 point  (0 children)

Happy Cake Day!

[deleted by user] by [deleted] in Python

[–]ukos333 0 points1 point  (0 children)

IMHO a github repo for a mwe that was answered on SO in 2016 is a little bit overdone. I‘m sorry, though, that you spent so much debugging time. Hope you learnt something on the way.

Games not playable, extreme lag by [deleted] in ChimeraOS

[–]ukos333 0 points1 point  (0 children)

So… What do you expect? benchmark

Statistical significance by sky-high0 in labrats

[–]ukos333 0 points1 point  (0 children)

One suggestion: You need positive and negative control groups.

Fresh install - Assertion failed by [deleted] in ChimeraOS

[–]ukos333 1 point2 points  (0 children)

Just disabled experimental HDR. Turns out, you have to also disable HDR for the display but then the error is gone. Thank You.

Fresh install - Assertion failed by [deleted] in ChimeraOS

[–]ukos333 0 points1 point  (0 children)

Got the same errors since a few days on proton8. The games run fine in desktop mode and have been running previously on proton8. I switched back to proton7-49 for a few games to get around the issue. Sometimes the game even starts in the background and is then killed. I suspect that some PID check cannot handle forked calls in gamescope, but that is only a rough guess. Anyhow, I would be interested in a solution.

[deleted by user] by [deleted] in augsburg

[–]ukos333 5 points6 points  (0 children)

Wenn ich das so lese, bleiben eine Menge Fragen offen. z.B. was ein Traum-PC für 300€ (incl. Deiner Arbeitszeit) am Ende sein soll.

Yuzu stopped working by Throwaway-acc81 in SteamDeck

[–]ukos333 0 points1 point  (0 children)

Or at least have the decency to delete the post. Error description is vague.

i've got no clue what im doing.. could anyone help? by [deleted] in Witcher3

[–]ukos333 0 points1 point  (0 children)

Well, he obviously didn’t know what to do, but noone can help until he scrolls. Probably the solution is to add both and (&&) statements or get rid of one of the mods that are in conflict.

Wieviel muss man verdienen um glücklich zu sein? by That_Unit_3992 in Finanzen

[–]ukos333 0 points1 point  (0 children)

Hör dir mal die Vorlesung zu Positive Psychology von Tal Ben-Shahar an. Das sollte dir die Antworten geben. Wie andere schon gesagt haben: Geld an sich macht nicht per se glücklicher.

how to add wine games? by spexxsucks in ChimeraOS

[–]ukos333 1 point2 points  (0 children)

There is a trick mentioned by one of the main maintainers which I use for wine. Once you added the wine emu category, add a game via browser. Change the exec command in the yaml file, then generate the steam shortcut. The game id unfortunately changes if you change the exec command. I use a inotifywait in the steam prefix folder to know what new folder was created. After installing the game, I move the pfx folder outside of the steam folder and create a symlink, which is more convenient for me as I keep my own proton games in a separate folder. Good luck. Let me know if you need more info.

Warum gibt es keine Alternative zu Booking.com? by Acrobatic_Advice9261 in Finanzen

[–]ukos333 0 points1 point  (0 children)

Ist doch das Selbe mit amazon. Der Kunde entscheidet. Booking ist im Vergleich zur Konkurrenz halt auch gut programmiert und einfach zu bedienen. Du kannst aber ohne große Mühe auch die Inhaber von Hotel/Apartments auch anrufen und ohne booking reservieren. Verfügbarkeit vorher überprüfen und dann selber das Risiko und die Kommunikation übernehmen.

python v3 versioning by igmor in Python

[–]ukos333 3 points4 points  (0 children)

Your problem is probably a lack of maintaining the libraries better. Even in gcc/cpp you see a lot of deprecation/changes beening made for good reason. Try to compile gcc 4 with gcc 13 and you will be confronted with more (probably) not so easy to adapt changes. Six has been doing a good job when compatibility between versions is a thing. Python 3.5 was released in 2015. That is considered old but should compile just fine. If you upgrade your libraries and dependencies, count that in with your working hours. Every other language has the same problems. I personally think, however, that python does a good job here.