No, humans use a placental system, they do not put all the energy required for the offspring into the egg initially. It’s not really the same at all.
Communist
I’m an anarchocommunist, all states are evil.
Your local herpetology guy.
Feel free to AMA about picking a pet/reptiles in general, I have a lot of recommendations for that!
- 1 Post
- 23 Comments
It’s a form of ovovivipary so it’s not that crazy, they basically just keep the eggs inside of them instead of laying them.
Communist@lemmy.frozeninferno.xyzto
Linux@programming.dev•Debian's APT Will Soon Begin Requiring Rust: Debian Ports Need To Adapt Or Be SunsetEnglish
5·3 days agoYeah but his patches are so bad they almost all needed reverting so…
Communist@lemmy.frozeninferno.xyzto
World News@lemmy.world•China added almost one billionaire a day in 2024English
1·14 days agoThey are incompatible with end stages of communism, but not socialism, and even then, I don’t think they’re saying they’ve already built socialism or communism, I think they’re saying that they are building it.
i don’t think they will ultimately decide to start transitioning to either, because that would require a lot of people in power relinquishing it, but I think it’s better to try and actually understand both sides rather than argue against strawmen.
also, the argument of socialism is that the workers should own the means of production not that there should be some arbitrary wealth cap. Marx never said anything about a wealth cap, though many socialists would want one it isn’t fundamental to socialism, there’s even types of socialist called market socialists, ultimately the only characteristic that unifies socialists is worker control over the means of production.
Communist@lemmy.frozeninferno.xyzto
Linux@lemmy.ml•Windows 10 refugees flock to Linux in what devs call their "biggest launch ever"English
3·23 days agoI guess? I don’t know what you mean I just help people on matrix in dm’s for free, my matrix is on my profile
Communist@lemmy.frozeninferno.xyzto
Linux@lemmy.ml•Windows 10 refugees flock to Linux in what devs call their "biggest launch ever"English
12·23 days agoI do free infinite troubleshooting on matrix, I have over 15 years of experience
Really if you use the centralized repos for installs there is as close to no risk as there could be, I wouldn’t even expend energy on this problem.
Communist@lemmy.frozeninferno.xyzto
Linux@lemmy.ml•I just found out my fiancee wants to switch to linux, lets start a distro war, what should be her first? + other questionsEnglish
1·1 month agoIt is, but it works fine even if you aren’t a gamer
Communist@lemmy.frozeninferno.xyzto
Linux@lemmy.ml•I just found out my fiancee wants to switch to linux, lets start a distro war, what should be her first? + other questionsEnglish
2·1 month agoWhat exactly is easier about the installation than my suggestion?
the fedora community is just as large as the mint community, and just as well supported.
i’m not telling you to switch, I’m saying there’s no reason to start with it if you haven’t tried linux before. Switching is a much bigger choice because you are already comfortable.
Why would a beginner who isn’t already comfortable choose mint?
Communist@lemmy.frozeninferno.xyzto
Linux@lemmy.ml•I just found out my fiancee wants to switch to linux, lets start a distro war, what should be her first? + other questionsEnglish
106·1 month agoA lot of people are going to recommend you mint, I honestly think mint is an outdated suggestion for beginners, I think immutability is extremely important for someone who is just starting out, as well as starting on KDE since it’s by far the most developed DE that isn’t gnome and their… design decisions are unfortunate for people coming from windows.
I don’t think we should be recommending mint to beginners anymore, if mint makes an immutable, up to date KDE distro, that’ll change, but until then, I think bazzite or aurora if you don’t like gaming is objectively a better starting place for beginners.
The mere fact that bazzite and other immutables generate a new system for you on update and let you switch between and rollback automatically is enough for me to say it’s better, but it also has more up to date software, and tons of guides (fedora is one of the most popular distros, and bazzite is essentially identical except with some QoL upgrades).
How common is the story of “I was new to linux and completely broke it”? that’s not a good user experience for someone who’s just starting, it’s intimidating, scary, and I just don’t think it’s the best in the modern era. There’s something to be said about learning from these mistakes, but bazzite essentially makes these mistakes impossible.
Furthermore because of the way bazzite works, package management is completely graphical and requires essentially no intervention on the users part, flathub and immutability pair excellently for this reason.
Cinnamon (the default mint environment) doesn’t and won’t support HDR, the security/performance improvements from wayland, mixed refresh rate displays, mixed DPI displays, fractional scaling, and many other things for a very very long time if at all. I don’t understand the usecase for cinnamon tbh, xfce is great if you need performance but don’t want to make major sacrifices, lxqt is great if you need A LOT of performance, cinnamon isn’t particularly performant and just a strictly worse version of kde in my eyes from the perspective of a beginner, anyway.
I have 15 years of linux experience and am willing to infinitely troubleshoot if you add me on matrix.
Communist@lemmy.frozeninferno.xyzto
Linux@lemmy.ml•Wayland - How Best to Log My Own Desktop ActivitiesEnglish
3·1 month agocompared to gnome, absolutely.
Communist@lemmy.frozeninferno.xyzto
Linux@lemmy.ml•Wayland - How Best to Log My Own Desktop ActivitiesEnglish
1·1 month ago#!/usr/bin/env bash # get hyprland event socket path HIS=$HYPRLAND_INSTANCE_SIGNATURE EVENT_SOCK="$XDG_RUNTIME_DIR/hypr/$HIS/.socket2.sock" # fallback / error check if [ -z "$HIS" ] || [ ! -S "$EVENT_SOCK" ]; then echo "Error: cannot locate Hyprland event socket at $EVENT_SOCK" >&2 exit 1 fi logfile="${HOME}/hypr_focus.log" # function to handle a line from the event stream handle_event() { local line="$1" # check for activewindow event if [[ $line == activewindow* ]]; then # format: activewindow>>CLASS,TITLE # strip prefix local payload=${line#activewindow>>} # split on comma (first comma) local cls="${payload%%,*}" local title="${payload#*,}" local ts ts=$(date '+%Y-%m-%d %H:%M:%S') echo "$ts — $title (class: $cls)" >> "$logfile" fi # optionally handle activewindowv2 if you want address instead # if [[ $line == activewindowv2* ]]; then # ... # fi } # listen to the socket socat -u "UNIX-CONNECT:$EVENT_SOCK" - | while IFS= read -r line; do handle_event "$line" donehonestly if you’re willing to do some work you can make hyprland do almost anything
**disclaimer i did not test this much
edit: forgot about the screenshot part, should be easy to add though, just add screenshotting everytime focus changes with grim or whatever
Communist@lemmy.frozeninferno.xyzto
Linux@lemmy.ml•Wayland - How Best to Log My Own Desktop ActivitiesEnglish
31·1 month agoAre you deadset on gnome because this would be crazy easy on hyprland
Communist@lemmy.frozeninferno.xyzOPto
Linux@lemmy.ml•A pure wireplumber way to switch audio devices, no pactlEnglish
1·1 month agoTbh all I care about is low dependencies and performance, dunno if that’d help
Communist@lemmy.frozeninferno.xyzOPto
Linux@lemmy.ml•A pure wireplumber way to switch audio devices, no pactlEnglish
61·1 month agoI worked hard to make it this unreadable
Communist@lemmy.frozeninferno.xyzOPto
Linux@lemmy.ml•A pure wireplumber way to switch audio devices, no pactlEnglish
2·1 month agoIt is for a desktop, gotta feel feature complete, it would also be vastly less complex if I used the node names instead of the descriptions, but I wanted it to be perfect from the perspective of the end user.
Communist@lemmy.frozeninferno.xyzOPto
Linux@lemmy.ml•A pure wireplumber way to switch audio devices, no pactlEnglish
4·1 month agoI don’t like doing that because i’m working on nixos which already makes it complicated but i also have a script that fully sets up my entire system and that would add some complexity to that, plus i just have a strange aversion to making it a bash script purely because it would be the only common function in my setup that’s on a bash script
and it wouldn’t be that hard to convert it to one for future debugging anyway
Communist@lemmy.frozeninferno.xyzOPto
Linux@lemmy.ml•A pure wireplumber way to switch audio devices, no pactlEnglish
3·1 month agoyou could make it cli only by replacing tofi with a cli menu
Communist@lemmy.frozeninferno.xyzOPto
Linux@lemmy.ml•A pure wireplumber way to switch audio devices, no pactlEnglish
4·1 month agoThat’s tofi, the dmenu alternative I’m using, I set its height and width, the oga is a media file, that plays the same ding as a volume change so you know what sink you’re playing from now.
feel free to replace tofi with dmenu or whatever

bitwarden?