#pcgaming #store #gaming #market #popularity #linuxgaming
- Epic Games Store (1%, 3 votes)
- Steam (79%, 221 votes)
- GOG (17%, 48 votes)
- Itch.io (2%, 6 votes)
reshared this
reshared this
Help Declassified expose the powerful by joining us: https://www.declassifieduk.org/join/Zarah Sultana has received "death threats" online and abuse from Lab...YouTube
is anyone from #gnome attending local-first conf in berlin?
app-2025.localfirstconf.com/sc…
Join us for the world's first local-first conference. Connect with a rapidly-growing community in an intimate setting. Berlin, May 26-28 2025.app-2025.localfirstconf.com
Author of a masterful study on the CIA and the cultural Cold War, British historian Frances Stonor Saunders provided a detailed account for The Independent of the CIA’s covert role in sponsoring Abstract Expressionist painting in the United States.Frances Stonor Saunders (Voltaire Network)
reshared this
A stacked bar chart titled "Evolution of Linux Distributions Used for Gaming" shows the percentage distribution of various Linux distributions used for gaming from 2019 to 2025. Each bar represents a specific time period, with segments color-coded for different distributions, including ARCH, MINT, FEDORA, UBUNTU, ENDEAVOUR, CACHYOS, FLATPAK, NOBARA, BAZZITE, MANJARO, POPOS, NIXOS, DEBIAN, and OPENSUSE.
On May 2, the State Department announced “the designation of [Haitian paramilitary gangs] Viv Ansanm and Gran Grif (Big Claws) as Foreign Terrorist Organizations (FTOs) and Specially Designated Global Terrorists (SDGTs).Danny Shaw (CovertAction Magazine)
What RFK Jr, Joe Rogan and Mel Gibson Have In Common: The “Miracle” Drug Keeping Them Young
thegatewaypundit.com/2025/05/w…
(Note: Thank you for supporting businesses like the one presenting a sponsored message below and working with them through the links below which benefits Gateway Pundit.Promoted Post (Where Hope Finally Made a Comeback)
White House Turns Press Room Over to Children and the Important Questions Actually Get Asked
thegatewaypundit.com/2025/05/w…
All the questions were adorable, but there was one question from a little girl that almost got a little awkward.The Western Journal (Where Hope Finally Made a Comeback)
JUST IN: President Trump Announces BIG Rally on May 30 to Celebrate Massive Investment in US Steel – Partnership with Nippon Steel will “Create at Least 70,000 jobs, and Add $14 Billion Dollars to the U.S. Economy”
thegatewaypundit.com/2025/05/j…
President Trump announced on Friday that the American steelmaker, United States Steel Corporation, will stay in America and add thousands of jobs and billions of dollars to the economy.Jordan Conradson (Where Hope Finally Made a Comeback)
Jesus #LinuxMint, I would have thought you would have cared more about #ComputerSecurity than this.
If you were storing the hash of my password then it really wouldn't matter how long it was now would it?
Now I've got to fucking shorten my password on your forums.
For fuck's sake. This is 2025. Not 1995.
Update: And high-ASCII characters are being counted as two-characters instead of two-bytes.
This just keeps getting better and better.
Let's see if I can at least do UTF-8 emojis and symbols and shit.
Update2: Of course not. Why? Because UTF-8 symbols and emojis have modifiers. My 20 character emoji password has exceeded the stupid 20 character limitation.
I can't believe this but Linux Mint literally wants me to have Password1234
as my fucking password it seems.
What a fucking joke.
Funny you mention that. Forums...
Linux Mint uses phpBB for it's Forum software.
Linux Mint also requires you to sign up an account on their forums first before you can sign up an account on the community hub because they show some sort of code on your Forum Profile page that you then need to copy over onto a completely different website to prove you're not a SPAM account (!).
phpBB had no problems whatsoever with my 6 word passphrase, with hyphens as the word separator, and embedded numbers. (And for anybody thinking I've just broken my own OpSec, I don't always use hyphens as my passphrase separators. I switch it up depending on what kind of mood I'm in. Avoid patterns if you can avoid it.)
It was only when I went to complete the signup on their community page where I was hit with the message that my forum password was greater than 20 characters.
Also, pretty sure their community hub is home-grown and that's where the problem was/ is.
By Carmen Parejo Rendón - May 21, 2025The West's support for Israel is a structural axis of its global domination.Orinoco Tribune - News and opinion pieces about Venezuela and beyond
The U.S. Marine Corps Silent Drill Platoon performs in Times Square
youtube.com/watch?v=3ThCnF8w2Z…
The U.S. Marine Corps Silent Drill Platoon with Marine Barracks Washington, performs in Times Square, New York City, May 21, 2025. America’s warfighting Navy and Marine Corps celebrate 250 years of protecting American prosperity and freedom. Fleet Week New York 2025 honors the Navy, Marine Corps, and Coast Guard’s enduring role on, under, and above the seas.
The U.S. Marine Corps Silent Drill Platoon with Marine Barracks Washington, performs in Times Square, New York City, May 21, 2025. America’s warfighting Navy...YouTube
Folder structure is an important part of Unix and Unix-like operating systems (like Linux). The folder structure starts at a single root /
and when you check the content of that root (ls /
), you may realise that different distributions often have similar or overlapping folders. The folder structure of the root is actually defined by the Filesystem Hierarchy Standard. Basically some folders are always expected by the Linux kernel to be present.
In a Linux distribution, we sometimes talk about a "rootfs", short for "root file system". This is basically the folder and file structure starting at /
. It's possible to mount images, folders, and storage devices to specific places in the folder hierarchy. Generally the rootfs is the structure starting at /
without these extra mount points.
A nice way to start playing and understanding this rootfs thing more, is the so-called chroot
command (short for "change root", so the "ch" can be pronounced as the "ch" in "change"). With it you can basically say "pretend this folder is the root and then run this comand". Let's try it!
For the following I installed Alpine 3.16 on some old hardware. You should be able to do similar things with other Linux distros as well. Note that you need elevated privileges, so make sure you run the following commands as the root user (not to be confused with the root folder, they are two different things).
Let's say we are in our home folder ~
. Let's make a folder to play in
mkdir my_chroot
chroot my_chroot sh
chroot: can't execute 'sh': No such file or directory
, so what happened?We started a chroot in the folder my_chroot
and asked to execute the command sh
. When you ask to execute a command without specifying it's location, your shell will try to find the command in the so called PATH. The PATH is nothing more than a variable holding a colon separated list of folders where we can store the executables we want to be able to call without needing to specify the specific location. To see the list, you can run echo $PATH
. For me it looks like /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
So what happened now is that we try to locate sh
in these folders, but these folders don't exist. After all, when we try to locate /bin
inside the chroot, what we really look at is the ~/my_chroot/bin
folder when looked at from the host system. So even if the command exists on our host, we can't access it from inside the chroot. To make sure we can run a command, we need to make it accesable inside the chroot folder structure. To do that we can mount the folder containing the command, or we can place the command there manually. Let's do the seconds one!
First we'll check where the correct sh binary is. Then we can copy it over to the location we need it. There's a good chance this binary relies on some libraries to be present, so we check for that with the ldd
command and copy those over as well.
which sh
# I see the binary is `/bin/sh`
mkdir my_chroot/bin
cp /bin/sh my_chroot/bin/sh
ldd /bin/sh
# I see there's one lib `/lib/ld-musl-x86_64.so.1`
mkdir my_chroot/lib
cp /lib/ld-musl-x86_64.so.1 my_chroot/lib/ld-musl-x86_64.so.1
chroot my_chroot sh
, and if it works, you should now have a shell! If you still get the chroot: failed to run command ‘sh’: No such file or directory
error, you should double check that both the binary and the libs are indeed there and with the right permissions. The difference between the shell you had and the one you have now may not be immediately visible, but you should be at root now and a lot of commands wont work who otherwise did. Some may work because they are part of the shell, but others may not be and you need the binaries for them. In my case ls
didn't work, pwd
did. To exit the shell, you can do exit
. If you want to add more commands, you can do that in a similar way. Btw, if you ever hear talk about a "chroot jail", this is basically what they are talking about; A piece of software that's run with chroot. The chroot environment (i.e. the environment that the software runs in after starting it with the chroot
command) is the "chroot jail".It's also possible that some commands need certain configuration files. When I copy apk in the same way and then do apk --help
from inside the chroot, it works. But when I do apk update
it gives errors about not being able to lock and open a database. After a lot of searching and trial and error I eventually did
# First move apk and the libraries
which apk
mkdir my_chroot/sbin
cp /sbin/apk my_chroot/sbin/apk
ldd /sbin/apk my_chroot/lib/
cp /lib/libcrypto.so.1.1 my_chroot/lib/libcrypto.so.1.1
cp /lib/libz.so.1 my_chroot/lib/libz.so.1
cp /lib/libapk.so.3.12.0 my_chroot/lib/libapk.so.3.12.0
cp /lib/ld-musl-x86_64.so.1 my_chroot/lib/ld-musl-x86_64.so.1
cp /lib/libssl.so.1.1 my_chroot/lib/libssl.so.1.1
# Now the following already works
chroot my_chroot apk --help
# But we need a bunch of other stuff
# if we want to `chroot my_chroot apk update`
mkdir my_chroot/lib/apk/
cp -r /lib/apk/db my_chroot/lib/apk/db
mkdir -p my_chroot/etc/apk
cp /etc/apk/repositories my_chroot/etc/apk/repositories
touch my_chroot/etc/apk/world
cp -r /lib/apk my_chroot/lib/apk
mkdir my_chroot/var
cp /etc/resolv.conf my_chroot/etc/resolv.conf
cp /bin/busybox my_chroot/bin/busybox
# Now update almost works
# It still gives an error about an untrusted key
# We can probably fix it by copying the correct files
# Or we can work around it by using the ` --allow-untrusted` parameter
chroot my_chroot apk update --allow-untrusted
# With this we can install all basic tools you get in Alpine
chroot my_chroot sh
apk add alpine-base --allow-untrusted
When we now check the content of the chroot folder ls my_chroot
, you may notice a new folder proc
. This was added when we did apk update
. You may have heard that in Unix "everything is a file". What people mean by this is that you can access everything, even processes and devices, from the filesystem. The dev, proc and sys folders are originally empty, but when you start up your operating system, the Linux kernel will populate them. The dev folder will show devices while proc will show processes. Note that while we see a proc folder here, it's not actually mounted from the kernel. I assume apk needed it for some reason and then created it because it wasn't there.
When you need these folders in the chroot, one way to do it, is to mount them. When looking online, it seems that the following is often used for this.
mount -t proc none /mnt/proc
mount --rbind /sys /mnt/sys
mount --rbind /dev /mnt/dev
With chroot we can limit some access a program has to the system. Not only can't it access certain parts of the file system, it doesn't even know about those parts. And that's pretty neat I think. But there's more than just the file system. It's possible that an attacker may still get access to the host system through other means. First of all there's the fact that we can mount or link things into the chroot, meaning that those parts of our system are now accessable. If the sh
binary isn't a separate binary, but linked to the sh of the host system, then making changes to the binary means we make the changes to the actual sh
binary on our host system! But even besides that, the file system isn't everything. The proc
folder already shows us that there's a thing like processes, and there's other things as well. If you want to go a step further than only chroot, there's containers. Containers use chroot, but also similar techniques to limit other parts of the system. You can check out LXC containers for example who can be easily managed using LXD. What you end up with is a system that uses the same kernel as the host, but can start it's own operating system from the rootfs in the containerised environment. One step further than this is virtual machines, where you even run your own separate boot process and kernel.
Even with all the caveats, chroot already gives us a first insight of what's needed for some software to work and gives us a playground to get some first insights into a rootfs a bit. Try it!
The umbrella project behind Incus, LXC, LXCFS, Distrobuilder and more.linuxcontainers.org
Now that we've played with rootfs in chroot a bit, let's see if we can actually boot something. When I install Alpine 3.16, I see three partitions; A boot partition /dev/sda1
, a swap partition /dev/sda2
, and the rootfs /dev/sda3
. When we start Alpine, the boot partition is mounted on /boot
. Here we find a couple of files, including vmlinuz-lts
. This file is our Linux kernel. Yup, if you never knew where that things was to be found, there it is! This can be a file or it can be a symbolic link to the actual kernel. On my Kubuntu for example, the kernel is called /boot/vmlinuz-5.15.0-52-generic
, but linked to from /boot/vmlinuz
. Note that on Kubuntu the file is vmlinuz
while on Alpine it's vmlinuz-lts
. It seems the 'vmlinuz' name grew historically. Originally, Unix kernels were typically called 'unix', later it was possible to add an option called 'Virtual Memory' and the name of kernels compiled with that option were prefixed with 'vm'. Later it got possible to compress the kernel file to save storage and the 'x' was changed to 'z' to show it's a compressed kernel. Linux distributions just took over the same conventions. Anyhow, what we want to do now, is play with the rootfs and boot something up!
For the following we need an extra partition. You can use an extra drive, or add an extra partition with filesystem on the current drive. I don't want to go into much detail on how you can do this stuff, you should find info online if needed. If you want to add a new formatted partition to the current drive, it's probably easiest to do it from a live distro with a graphical DE (e.g. Trisquel) and do it with a graphical tool like gparted. In my case I have /dev/sda3
which holds my Alpine installation and /dev/sda4
which is the new partition.
When the kernel boots, it does some things and eventually starts /sbin/init
. This is very similar to what we did with chroot. The big difference is that there we said what to start, here Linux decides to start /sbin/init
. I'm unsure if this is hard coded or can be changed with config files somewhere, but from what I see online, it at least seems to be the norm to start this.
What we'll try, is to use Alpine's boot partition and boot something simple that we create on our own rootfs.
Just to see things working, I first booted into a live iso and copied all files from sda3 to sda4.
mkdir /mnt/sda1 /mnt/sda3 /mnt/sda4
mount /dev/sda1 /mnt/sda1
mount /dev/sda3 /mnt/sda3
mount /dev/sda4 /mnt/sda4
cp -r /mnt/sda3 /mnt/sda4
APPEND root=UUID=91c0e3ea-fca1-4c7c-96ed-ebc551066204 modules=sd-mod,usb-storage,ext4 quiet rootfstype=ext4
. This tells us what partition should be considered as the one with the rootfs. I take the guess that this will probably also work with the name instead of UUID, so I changed this to APPEND root=/dev/sda4 modules=sd-mod,usb-storage,ext4 quiet rootfstype=ext4
. Just to be sure you can add a file or something to sda3 and sda4 just so you can be sure which of the two is used as rootfs, and then reboot the machine (without the live iso). The result was that we are now booted from /dev/sda4. That's pretty sweet! Not only did we boot from another partition, the partition was filled up by simply copying files over. That implies to me that we don't need certain bits to be set at a certain place on the drive or anything. Linux understands what's on this drive and can execute things.Let's see if we can boot something up ourselves. First I change extlinux.conf back so it boots from /dev/sda3. First we make sure we can access the filesystem on our partitions, then we remove everything from sda3 and create the folders Linux needs. If something goes wrong, we can always boot again from a live iso, mount the drives where we think something went wrong, and fix things.
mkdir /mnt/sda3 /mnt/sda4
mount /dev/sda3 /mnt/sda3
mount /dev/sda4 /mnt/sda4
cd /mnt/sda3
rm -r ./
mkdir sys dev proc
/sbin/init
to start. Let's try to start a simple shell on boot. This is very similar to how we set things up with chroot. To set things up, we'll boot from a live iso again.Alpine uses something called Busybox. This is a single binary that contains a whole set of tools. For example, if you have Busybox installed, instead of doing ls
, you can also do busybox ls
. So what we'll do is, we'll copy busybox and the needed libraries to the rootfs we're creating and then call it from an init script.
mkdir /mnt/sda3 /mnt/sda4
mount /dev/sda3 /mnt/sda3
mount /dev/sda4 /mnt/sda4
# We copy the binaries and libraries just like we had to do when playing with chroot
mkdir /mnt/sda3/bin
cp /mnt/sda4/bin/busybox /mnt/sda3/bin/busybox
mkdir /mnt/sda3/lib
cp /mnt/sda4/lib/ld-musl-x86_64.so.1 /mnt/sda3/lib/ld-musl-x86_64.so.1
cd /mnt/sda3
mkdir sbin
touch sbin/init
chmod +x sbin/init
echo '#!/bin/busybox sh' >> sbin/init
echo "echo 'Welcome to your very own Linux Distro!'" >> sbin/init
echo '/bin/busybox sh' >> sbin/init
Welcome to your very own Linux Distro!
sh: can't access tty: job control turned off
/ #
ls
doesn't work, try busybox ls
. You can also try to add some folders or files (e.g. busybox touch catgirl_titties
), but you'll quickly notice the filesystem is read-only. We can fix that with busybox mount -o remount,rw /
. There's also the error "sh: can't access tty: job control turned off", but I conveniently decided to consider this one out of scope for this article 😏When we want to exit our shell, we can do exit
, which will now give us a kernel panic. If you don't want a kernel panic, you can call busybox poweroff -f
, which will immediately poweroff the machine.
When you call a program, you can give it a bunch of parameters. In the case of busybox ls
, we provide "ls" as a parameter. But one parameter that's always provided is how the command was called. If we call busybox
, then busybox will know that this is how it was called. If we link a file called "ls" to busybox and then call that "ls" file, busybox will know that it was called with the command "ls". Busybox is programmed in such a way that it will use this information to conclude what command you wanted to run and then run that. If you want a list of the commands busybox has, you can run busybox --list
. To see what location busybox expect these tools to be placed, you can do busybox --list-full
.
Knowing these things, there's some optimalisations we can add.
First we'll make it easier to call the commands by making system links to busybox in the correct locations.
busybox mount -o remount,rw /
# Maybe there's a built in way to do this, idk, this works :)
for link in $(busybox --list-full)
do
folder=$(busybox echo "$link" | busybox sed -E 's@(.*/)[^/]*$@\1@')
busybox mkdir -p "$folder"
busybox ln -s /bin/busybox "$link"
done
exit
, the machine will power off instead of throwing a kernel panic.\#!/bin/busybox sh
/bin/busybox mount -o remount,rw /
echo 'Welcome to your very own Linux Distro!'
/bin/busybox sh
/bin/busybox poweroff -f
Distro's typically do more than just start a shell. They also have an init system to start up several services for example. Afaict busybox can do all that, but it requires more looking into. I'm not gonna do that now. For now we already have a neat thing to brag to our friends about, so let's enjoy that first ;)
Trisquel GNU/Linux is a fully free operating system for home users, small enterprises and educational centers.trisquel.info
Top Rated Roofing Contractor Covering New Jersey with over 3.000 Roofs Replaced. Call (201) 414-1738 for a free Estimate. Covering major NJ counties.miri_lfhznu90 (American Roofing NJ)
Sekabet bugünkü giriş adresi açıklandı! En güncel bağlantı ile kesintisiz giriş yapın, oyunların tadını çıkarın.admin (sekabet)
Show HN: Rotary Phone Dial Linux Kernel Driver
Link: gitlab.com/sephalon/rotary_dia…
Discussion: news.ycombinator.com/item?id=4…
Linux kernel driver that turns a rotary phone dial into a evdev input deviceGitLab
While Israel continues to perform atrocities, each more horrific than the last, there seems to be very little action to stop it.admin (Palestine Chronicle)
ocram oubliat likes this.
How you can tell you're over the target.
"Sex Pistols’ John Lydon Urges Trump to Take a ‘Wrecking Ball’ to ‘Broken Government’"
breitbart.com/entertainment/20… Pistols’ John Lydon Urges Trump to Take a ‘Wrecking Ball’ to ‘Broken Government’
Former Sex Pistols frontman John Lydon is a Donald Trump fan and appreciates that Trump is taking a “wrecking ball” to a “broken government.”Warner Todd Huston (Breitbart)
Icare4America reshared this.
We wrote up a video about speeding up Arduino code, specifically by avoiding DigitalWrite. Now, the fact that DigitalWrite is slow as dirt is long known. Indeed, a quick search pulls up a Hackaday …Hackaday
Hezbollah Media Relations Department issued on Friday a statement to denounce the slogans chanted at...Al-Manar TV Lebanon
Substack and Medium "blogs" are the most soulless abominations to have ever exist on the Internet. Paragraphs of black text on a white background with constant pop-ups telling you to subscribe. Get an actual blog, either through self-hosting or on a site like WordPress.com (it's free). You get your own theme (even if it's pre-made) and no annoying pop-ups outside of banner ads that can easily be blocked (though I think WordPress.com allows you to disable them for your viewers if you pay).
I see zero reason to use Substack or Medium unless you want to paywall your content or avoid censorship (both of which can be achieved through self-hosting).
Substack is a known focal point for people who want to say something in the standard online political method. It was a great place during the pandemic when only nazis and antivaxxers were using it, but now women have discovered it and it's become Tumblr mixed with AI slop.
It's a decent platform, but not one I'm in love with. The owners are retards because they tried to make the Notes™ feature into a new Twitter, but the algorithm is so stupid and so unfathomably obtuse that it frequently shows you things that were liked™ by people you don't follow. I once made three or four replies to woman blogs calling them dumb bitches and that was apparently enough to turn my recommended timeline from genAI slop dads into bipolar women writing micropoetry.
@Hephaestic >Substack is a known focal point for people who want to say something in the standard online political method.
That's my other beef with it. It's 90% philosophy/political blogs. At least Medium has blogs on things like programming, even though I wish they were hosted somewhere else.
A quick update on my aunt.
I brought her home Thursday (I may have mentioned this) and have a 24-hour live-in caregiver.
The first evening she was animated, ate a good meal, and seemed well.
Yesterday, she refused to get out of bed (except for a shower), refused to eat except for a protein shake. She promised me yesterday that she would get up today and eat breakfast.
This morning, she got dressed but then refused to get up and did not want anything to eat.
I am not sure how to handle this
My aunt had dinner today. Sausage and eggs, which is what she had for breakfast.
Which kind of confused her caregiver.
I gently told the caregiver that breakfast for dinner is good. Especially if my aunt will eat it.
Serena Nephaelle likes this.
News - World: A recent American report stated that the agreement to halt aggression against Yemen highlights Washington's urgent need for a more restrained approach to military interventions.english.masirahtv.net
Iranian Foreign Ministry spokesperson Esmail Baghaei reports that Iran-US talks are ongoing in a professional and calm manner, even after the departure of U.S. envoy Steve Witkoff.Iran Press
Serena Nephaelle likes this.
**Paul du Rove (son vrai nom français depuis sa naturalisation) n’a pas apprécié du tout la trahison de son « ami » Emmanuel Macron et entend la faire payer cher à Paris.
Il se sait protégé par les Émirats Arabes Unis dont il a aussi la nationalité et qui ne peuvent pas abandonner un milliardaire slave en ce moment.**
Serena Nephaelle likes this.
Serena Nephaelle likes this.
And people in the United States like to think we still have a bill of rights.
1st Amendment? Only if you're pro Israel.
2nd Amendment? Not unless you're defending your Castle and your home.
4th Amendment? Not if you're an immigrant.
5th Amendment? LOL. You think you have a right to remain silent. My sweet summer child.
6th Amendment? Right to a speedy trial? Tell that to the prisoners in Guantanamo, 99.999% of which had absolutely nothing to do with 9-11 and weren't even part of Al Qaeda.
7th Amendment? You only think you can have a jury trial. 99% of defendants never get one.
8th Amendment? Excessive bail? Excessive fines? Cruel and unusual punishment? Have you been watching the news lately?
9th Amendment? How about the fact that we all have rights that aren't even listed in the Constitution. Yeah. When's the last time that one was taught to anybody?
10th Amendment? State's rights. Unless you're a blue state and the government doesn't like what you're doing.
On Friday, Turkish police arrested 56 armed forces officers and nine police agents for allegedly being members of the network led by Fethullah Gülen, the lateteleSURenglish
**On assiste à une vague d'agressions partout en France contre les femmes musulmanes !
Aucune réaction du gouvernement.
Aucune réaction des médias.
Peut être parce qu'ils sont les principaux responsables de ces appels à la haine islamophobe ?**
Serena Nephaelle likes this.
🤡 2019 : les variants n’existent pas (Véran, Lacombe)
🤡 2020 : l’immunité acquise n’existe pas pour le covid
🤡 2021 : le « vaccin » vous protège de tous les variants
🤡 2022 : le « booster » vous protégera de tous les variants
🤡 2025 : « un nouveau variant capable d’échapper à l’immunité acquise ou vaccinale a été détecté »
🤡🤡🤡🤡🤡🤡🤡🤡🤡🤡🤡🤡🤡🤡
Serena Nephaelle likes this.
Complétez cette phrase avec un mot :
**La laïcité en France n'est qu'une ... **.
Serena Nephaelle likes this.
🚨ALERTE INFO
Franchement vous avez le DEVOIR de lire cette dinguerie
Récapitulatif des mesures sur « La légalisation de l’euthanasie » en 10 points :
1 - 48H : Le délai qu'il faudra pour confirmer sa demande de mort. Et ce délai pourra être réduit.
2 - 1500€ d'amende et 1 an d'emprisonnement : Les peines que risqueront des soignants ou proches qui tenteraient de dissuader.
3 - La mort provoquée devient un soin intégré dans le code de la santé de la public.
4 - La loi ne leur reconnaît aucune clause de conscience pour ceux qui délivrent la substance.
5 - Une simple demande orale suffira, ni demande écrite, ni signature, ni témoin.
6 - L'avis du second médecin pourra être donné à distance et ne sera pas contraignant.
7 - L'injection létale pourra avoir lieu à domicile, à l'hôpital, en EHPAD... et partout ailleurs, sans restriction.
8 - Une décision solitaire. Le médecin pourra décider de donner la mort sans procédure collégiale ni contre-pouvoir.
9 - Un contrôle après la mort. La commission de contrôle ne pourra examiner le dossier qu'après la mort.
10 - Aucun de recours possible pour les proches.
À l’heure où, dans certains territoires, on ne trouve plus de médecins acceptant de nouveaux patients, où des services d’urgences ferment, et où le système de santé est en plein effondrement.
Occupied West Bank (Quds News Network)- A Palestinian activist shared a video showing an Israeli lawyer, who had previously represented settlers in court after they attacked him, returning to his homeEditing Team (Quds News Network)
Man the #Tables app in #Nextcloud is incredible!
I'm using it to #track my #sleep now, when I take my #meds and when I do certain #tasks/ #chores around the house to solve the syndrome of "Can't Remember Shit" that happens to all of us as we get older. Haha!
It was super easy to setup and configure and very intuitive and the "Tables" #app on my #phone (I got it from #F-Droid) makes adding entries super easy no matter where I am.
Having concrete data to give my doctors is going to be very helpful.
NOW... if only there was a "#Diary" app for my phone that worked with the Nextcloud daily diary/ daily #journal app as well! 😉
So the fingernail I lost a month ago while wrestling with the dog. It grew back. But, stupid me, I thought fingernails knew how to grow so I didn't pay attention to it. It started hurting the last couple days, but I still didn't pay much attention. Then I looked at it last night, and it's ingrown as hard as it can on the right side of the nail. Stupid Fingernail!
So I spent a good chunk of last night trying to dig the corner out and cut it. Now I'm waiting for the inevitable infection. Blah!
Covid-19 reporting from ABC News
feels like a five-year-old story.
They are sticking to the old story arc.
it's your fault, you unvaxxed bastards.
go get tested.
we need more free medicine for the poors.
abcnews.go.com/Health/300-peop…
Experts say there is low vaccine uptake and people are not accessing treatments.Mary Kekatos (ABC News)
On May 19th, WA Governor Bob Ferguson signed Senate Bill 5041, legislation that Gov. Ferguson outlined as “Allowing striking workers to access unemployment insurance benefits creates a more level playing field for workers to have the resources they n…Driss El-Hassan SBWU Member (Labor Today)
"... how is it that today, capital allocation is a hereditary role?"
The meritocracy to eugenics pipeline
pluralistic.net/2025/05/20/big…
Our socials: fediverse.blog/~/ActaPopuli/fo…
Editor’s Note: The following is a speech given by LUEL Heartland Chapter Chair M. Drezner at a rally for AFGE workers in Sioux Falls, SD on April 25, 2025. Good afternoon brothers and sisters. My name is M. Drezner and…M. Drezner IBEW Member (Labor Today)
like this
The US vice president has said rivals like China and Russia now challenge American power across key domainsRT
Koubik
in reply to Boiling Steam • • •Boiling Steam
in reply to Koubik • • •Koubik
in reply to Boiling Steam • • •Boiling Steam
in reply to Koubik • • •Koubik
in reply to Boiling Steam • • •Vulcanic Lover
in reply to Boiling Steam • • •The only games I pay for are indies from devs who aren't retards or trannies. If possible, I get them on itch.io since there's no DRM there.
Download the latest indie games
itch.ioBoiling Steam
in reply to Vulcanic Lover • • •:archlinux: :fedoralinux: :blobcat_flop:
in reply to Boiling Steam • • •Boiling Steam
in reply to :archlinux: :fedoralinux: :blobcat_flop: • • •PublicLewdness
in reply to Boiling Steam • • •My Top choices by rank are:
1. GOG
2. Itch.io
3. Zoom
Clu | #RipNatenom 🕯
in reply to Boiling Steam • • •Dmitry Marakasov
in reply to Boiling Steam • • •Boiling Steam
Unknown parent • • •Boiling Steam
Unknown parent • • •vaartis of the ratular bells
in reply to Boiling Steam • • •Boiling Steam
in reply to vaartis of the ratular bells • • •GNU/翠星石
in reply to Boiling Steam • • •Libregamewiki
libregamewiki.orgGNU/翠星石
in reply to GNU/翠星石 • • •Boiling Steam
in reply to GNU/翠星石 • • •