Path objects also override the / operator to join paths
This is both cool and gross... gives me C++ vibes (operator overloading abuse).
Path objects also override the / operator to join paths
This is both cool and gross... gives me C++ vibes (operator overloading abuse).
XP is still not great, but you no longer have to wait outside the barrier... which is a big plus. Managed to do a few rounds this morning and got to 71 RC and was rewarded a few pearls.
I'm very close to 99 mining (about 400k left), so will probably continue star mining and amethyst mining.
My medium term goal is Varrock Elite (which is why I starting mining) and all I have left is 7 more runecrafting levels... but I really dislike this skill, so have been dragging my feet.
According to #243 Chatting COSMIC Desktop Alpha With The CEO | Carl Richell, they are planning an alpha release on the last thursday of each month. This means that Alpha 3 should be out on October 31, 2024.
Likewise, Carl hopes to have a Beta 1 in January 2025.
I still haven't done much of Varlamore Part 1(just some thieving of rich citizens and hunter rumours). With Part 2, I did do the Colossol Wyrm agility course and got the graceful recolor. I have yet to do Moons or the new prayer training.
That said, I did try out Hueycotl with some friends and... it was kinda lacking. The fight is long and the drops are not good. I know they recently buffed the drop table a bit, but I'm not in a rush to go back... Which is fine, I still have lots of things to do (ie. I just finished Sins of the Father and am now working on the Elite Varrock diary).
I think the "Ubuntu Core 22" means it is the snap based version of Steam rather than the deb version.
If you look at the snapcraft.yaml for the Steam snap, it uses core22
as its base.
From what I can tell, Pop!_OS does not ship their own version of timeshift. Instead, it comes directly from Ubuntu. So if there is a change in maintainers, it should be reported to Ubuntu:
All my servers moved to 24.04 and I wanted my desktop to keep in line with them (so they all had the same packages). Likewise, I've been following the development of GNOME and I really liked what they have done with versions 45 and 46, so I wanted to try a more modern version of that desktop environment (Pop 22.04 is still on GNOME 42 and is now missing out on some cool features like the quick settings menu).
Finally, I wanted to try out Wayland and the experience on Pop 22.04 is not great with Wayland, especially since it is missing out on the more recent fixes and updates in Ubuntu 24.04.
If you are happy with Pop 22.04 and willing to wait for COSMIC to stabilize and become feature complete, then that is what you should do. For me, I used this delay in releasing Pop 24.04 as an opportunity to try out something different and for the most part, I'm pretty happy with the experience.
Unfortunately, there will not be a release of Pop 24.04 with GNOME before COSMIC is released. In fact, System76 has stopped development of Pop-shell as referenced here:
https://reddit.com/r/pop_os/comments/1eo59wj/will_xorg_still_be_an_option_in_2404/
Once, Pop 24.04 is released, you will be able to install gnome-session to get GNOME, but it will be the version from Ubuntu and not Pop-shell (though you can install the unsupported extension yourself).
Basically, the development of COSMIC is delaying the release of Pop 24.04... which means the whole distro update probably won't come until 2025 as the desktop matures.
For this reason, among others, I've decided to switch to Ubuntu until COSMIC matures and Pop 24.04 is released.
If you are using Pop!_OS 22.04, then you are using gdm. You can just create the file if it doesn't exist.
If you are using gdm
as your login manager, you can put the command in ~/.xprofile
... which is sourced by gdm3
.
The reason why
string[5] = '5'
doesn't work is that strings in Python are immutable (cannot be changed). By doinglist(string)
you are actually creating a new list with the contents of the string and then modifying the list.I wonder if ChatGPT explains this or just tells you to do this... as this works but can be quite inefficient.
To me this highlights the danger with using AI... sure you can complete a task, but you may not understand why or learn important concepts.