like this
don't like this
Hello everyone,
I wanted to ask if anyone has a preferred software for the purpose of creative writing.
Libre Office Writer is great of course, but just as software like LogSeq or Obsidian exist for the note taking process, I was wondering if there is anything that is specifically geared toward the creative writing process.
I know that there are federated blog platforms which focus on this in their presentation, but was curious about applications specifically.
FOSS is definitely preferable.
Thanks!
Huh? What's wrong with Overleaf?
If you "only" need beautiful PDF and it doesn't have to be online, you can also use Typst with vscode and tinymist as editor locally. Not as powerful as TeX, but I know few people for use TeX even remotely to its fullest. The upside of Typst is, that the "core" syntax for content writing is very markdown-like, so you can focus on writing instead of the underlying language.
A web-based collaborative LaTeX editor. Contribute to overleaf/overleaf development by creating an account on GitHub.GitHub
Holy shit, thank you! I had no idea overleaf was open source; you have cleared my conscience. Typst seems interesting, but I am a bit of a typesetting nerd and quite used to latex anyway. Transition now would be difficult. I'll check it out though, it might be nice for drafts and such. Thanks again!
I'm definitely going to share Typst with non-tex-addicts though, it does seem really cool.
when I say trim I don't mean to time trim a file, like getting rid of the last 2 minutes of the mkv file, but to picture trim every frame of the mkv file to get rid of black margins to both left and right of the actual image.
Files were originally recorded on 4:3 aspect ratio (some are movies from the 1950's) but the encoder somehow created / copied huge black margins to both left and right of the actual image. I want to get rid of these.
Some of my files are 30 minutes long but others 2 hours.
if ffmpeg is the application I need, could anyone knowledgeable enough write the actual command?
For some reason, Lemmy isn't allowing me to upload more than 11 images. I will try to add the missing images after posting. It will take a while.
Edit: It isn't allowing me to add more images. If anyone is interested, I will upload the images elsewhere.
Setting up a secure coding environment for the Rust programming language on secureblue isn't hard to do, but it's difficult to figure out on your own. That is why I am making a guide explaining how to do it yourself.
For this tutorial, I will be using the silverblue-main-hardened:latest
image of secureblue. For this tutorial, I am also assuming you have enabled Flatpak permission lockdown by running ujust flatpak-permissions-lockdown
.
You can install whichever code editor you want, but for this tutorial I will be using VSCodium which is an open source binary of Microsoft's Visual Studio Code without telemetry.
Open the terminal.
VScodium can be installed using the following command:
flatpak install com.vscodium.codium
You will be prompted to proceed with changes to the user installation. After reviewing the changes, you can press enter. VSCodium will be downloaded and installed for the current user.
You may close the terminal now.
VSCodium
. This should begin typing in a search bar, and VSCodium should show up as a search result.VSCodium
(the blue one). VSCodium - Insiders
(the orange one) is the nightly release of VSCodium, and is not recommended for daily use.Install
button on the top right. VSCodium will be downloaded and installed for the current user.You may close GNOME Software now.
Rust provides multiple ways of installing. On secureblue, things are more locked down, especially with VSCodium being installed as a Flatpak. Rather than layering Rust as a system package and giving VSCodium invasive permissions to make it work, there is a much more elegant way to install Rust that isn't mentioned in their install instructions.
Flathub provides an SDK Extension for Rust that can be used for Flatpak code editors, such as VSCodium. This can only be installed from the command line. Trying to install it from GNOME Software will install an outdated version of the Rust SDK.
Open the terminal.
First, we need to find the branch of org.freedesktop.Sdk
. This will allow us to install the correct version of the Rust SDK.
The branch of org.freedesktop.Sdk
can be found using the following command:
flatpak info org.freedesktop.Sdk
Make a note of the version number next to the Branch:
section. In my case, it is 24.08
.
The Rust SDK can be installed using the following command:
flatpak install org.freedesktop.Sdk.Extension.rust-stable
You will be prompted to select which ref you would like to install. Find the version that matches the branch of org.freedesktop.Sdk
. Type the number corresponding with the version (in my case, 5
), and press enter.
You will be prompted to proceed with changes to the user installation. After reviewing the changes, you can press enter. The Rust SDK will be downloaded and installed for the current user.
You may close the terminal now.
Assuming you enabled Flatpak permission lockdown, VSCodium won't have permission to access everything it needs to work properly. We need to grant these permissions manually.
We will need to create a directory to act as your project directory. VSCodium will have access to every file in this directory, so it is best to only use it for VSCodium. I am deciding to create a folder in my home directory named VSCodium
to store all of my VSCodium projects.
VSCodium will need the following permissions to work:
- The Network
permission, in order to efficiently install extensions and update them automatically.
- Access to a dedicated project directory, in order to create workspaces.
- Permission to access the Rust SDK, in order to support the Rust language.
- Optional access to Development syscalls
, in order to use debugging extensions.
Open the terminal.
VScodium can be granted the Network
permission using the following command:
flatpak override -u --share=network com.vscodium.codium
-u
flag is an alias for --user
, which will change the permission only for the current user.[INSERT IMAGE HERE]
A project directory can be created using the following command:
mkdir VSCodium
VSCodium can be granted access to the project directory using the following command:
flatpak override -u --filesystem=~/VSCodium com.vscodium.codium
VScodium can be granted access to the Rust SDK using the following command:
flatpak override -u --env=FLATPAK_ENABLE_SDK_EXT=rust-stable com.vscodium.codium
You may close the terminal now.
VSCodium
. This should begin typing in a search bar on the left, and VSCodium should show up as a search result.[INSERT IMAGE HERE]
VSCodium
.[INSERT IMAGE HERE]
Network
permission, enable the switch next to the Network
permission. It should turn blue, indicating that the permission has been granted.[INSERT IMAGE HERE]
[INSERT IMAGE HERE]
New Folder...
(This can also be done using Shift+Ctrl+N
)[INSERT IMAGE HERE]
VSCodium
in the text field labeled Folder Name
.[INSERT IMAGE HERE]
Create
to create the folder. This will create a project directory for VSCodium to use.[INSERT IMAGE HERE]
Filesystem
section.[INSERT IMAGE HERE]
Other files
section. An empty text field should appear.[INSERT IMAGE HERE]
[INSERT IMAGE HERE]
~/VSCodium
Environment
section.[INSERT IMAGE HERE]
[INSERT IMAGE HERE]
[INSERT IMAGE HERE]
FLATPAK_ENABLE_SDK_EXT=rust-stable
You may close Flatseal now.
Now that VSCodium has the necessary permissions to function, we can finally run it.
Open the terminal.
VScodium can berun using the following command:
flatpak run com.vscodium.codium
Super
key to view the dock.Show Apps
button (nine dots) on the bottom right to show a list of installed apps.
Upon first launching VSCodium, you will be presented with a README.md
file.
[INSERT IMAGE HERE]
This file has information about using VSCodium as a Flatpak. Since we have already granted it the necessary permissions, this file can be ignored.
We now need to install the rust-analyzer extension. This extension will give us a comfortable Rust development environment in VSCodium.
Launch the VSCodium Quick Open by using Ctrl+P
.
[INSERT IMAGE HERE]
Enter the following command:
ext install rust-lang.rust-analyzer
[INSERT IMAGE HERE]
Press enter to install the rust-analyzer
extension.
[INSERT IMAGE HERE]
You will be prompted to trust the publisher and install the extension. After reviewing the prompt, you can press enter to select the Trust Publisher & Install
button on the bottom right.
[INSERT IMAGE HERE]
You may be prompted to trust the authors of the files in this workspace. After reviewing the prompt, you can select the Install
button. The rust-analyzer
extension will be downloaded and installed for the current profile.
Extensions
menu on the left. (This can also be opened by using Ctrl+Shift+X
)[INSERT IMAGE HERE]
rust-analyzer
into the search bar. This will search for the extension we need.[INSERT IMAGE HERE]
rust-analyzer
.[INSERT IMAGE HERE]
Install
button for the rust-analyzer
extension.[INSERT IMAGE HERE]
Trust Publisher & Install
button on the bottom right.[INSERT IMAGE HERE]
Install
button. The rust-analyzer
extension will be downloaded and installed for the current profile.[INSERT IMAGE HERE]
The rust-analyzer
extension is now installed.
Now that we have the rust-analyzer
extension installed, we can create a new Rust project.
The keyboard instructions are broken due to the Ctrl+K
keybind being unfunctional, and the Ctrl+O
keybind being binded to the wrong option. Because of that, only mouse instructions are available for this step.
File
dropdown on the top left.[INSERT IMAGE HERE]
Open Folder...
You will get a dialogue saying the following:
Oops! Something went wrong.
Unable to find "/app/share/ide-flatpak-wrapper". Please check the spelling and try again.
This can be ignored. It is appearing because we never granted VSCodium access to a specific folder, and it has no effect.
OK
to dismiss it.[INSERT IMAGE HERE]
VSCodium
folder to enter it.[INSERT IMAGE HERE]
New Folder...
(This can also be done using Shift+Ctrl+N
). Alternatively, select the folder with a plus icon on the top right.[INSERT IMAGE HERE]
Folder Name
. For this example, I will create a folder named example
.[INSERT IMAGE HERE]
Create
to create the folder.[INSERT IMAGE HERE]
Open
in the bottom left to open the folder.[INSERT IMAGE HERE]
Yes, I trust the authors
button.[INSERT IMAGE HERE]
[INSERT IMAGE HERE]
cargo init
You have now created a Rust project, and you can get started coding in Rust.
Right now, there are no debugging extensions installed. The two recommended debugging extensions are CodeLLDB and Native Debug. I prefer CodeLLDB because, as of writing this, Native Debug has not been updated in over a year. It is still in active development, but there has not been a release in over a year.
Open VSCodium.
[INSERT IMAGE HERE]
Launch the VSCodium Quick Open by using Ctrl+P
.
[INSERT IMAGE HERE]
Enter the following command:
ext install vadimcn.vscode-lldb
[INSERT IMAGE HERE]
Press enter to install the CodeLLDB extension.
[INSERT IMAGE HERE]
You will be prompted to trust the publisher and install the extension. After reviewing the prompt, you can press enter to select the Trust Publisher & Install
button on the bottom right. The CodeLLDB extension will be downloaded and installed for the current profile.
[INSERT IMAGE HERE]
You will see a prompt on the bottom right saying the following:
Completed installing extension. Please restart extensions to enable it.
Restart Extensions
to restart the extensions.[INSERT IMAGE HERE]
Extensions
menu on the left. (This can also be opened by using Ctrl+Shift+X
)[INSERT IMAGE HERE]
CodeLLDB
into the search bar. This will search for the extension we need.[INSERT IMAGE HERE]
CodeLLDB
.[INSERT IMAGE HERE]
Install
button for the CodeLLDB extension.[INSERT IMAGE HERE]
Trust Publisher & Install
button on the bottom right. The CodeLLDB extension will be downloaded and installed for the current profile.[INSERT IMAGE HERE]
You will see a prompt on the bottom right saying the following:
Completed installing extension. Please restart extensions to enable it.
Restart Extensions
to restart the extensions.[INSERT IMAGE HERE]
The CodeLLDB extension is now installed.
If you try to debug a program using a debugger extension, you will receive the following error:
VSCodium
Cannot launch '/var/home/anonymous/VSCodium/example/target/debug/example': ptrace failed: Operation not permitted
The reason for this is because VSCodium does not have permission to access development syscalls.
Open the terminal.
VScodium can be granted the Development syscalls
permission using the following command:
flatpak override -u --allow=devel com.vscodium.codium
You may close the terminal now.
VSCodium
. This should begin typing in a search bar on the left, and VSCodium should show up as a search result.[INSERT IMAGE HERE]
VSCodium
.[INSERT IMAGE HERE]
Development syscalls
permission, scroll down to the section labeled Allow
.[INSERT IMAGE HERE]
Development syscalls (e.g. ptrace)
permission. It should turn blue, indicating that the permission has been granted.[INSERT IMAGE HERE]
You may close Flatseal now.
Even though VSCodium has access to ptrace, the system still does not permit it. This is to defend against basic security concerns. secureblue provides a toggle to enable support for anti-cheat, which will allow VSCodium to access ptrace.
Open the terminal.
Anti-cheat support can be enabled using one of the following commands:
ujust toggle-anticheat-support
ujust toggle-ptrace-scope
[INSERT IMAGE HERE]
You will be prompted for your administrator passphrase. After reviewing the prompt, enter your passphrase and click Authenticate
. This will enable anti-cheat support.
[INSERT IMAGE HERE]
You will need to restart your device to complete the changes.
Open the terminal.
The device can be restarted using the following command:
reboot
Restart...
.
Restart
The system will restart automatically in 60 seconds
Restart
to restart the system now.Anti-cheat support is now enabled, and debugging extensions will work.
A language empowering everyone to build reliable and efficient software.www.rust-lang.org
rustup
requires granting VSCodium more invasive permissions to get it to work. Furthermore, installing it would require layering system packages, which should be done sparingly. Using the Rust SDK is the recommended approach by VSCodium while using their Flatpak, and it is actually the simpler option.
std::io::pipe()
.
E: I AM NOT USING FEDORA. Please stop linking to guides for Fedora. They will not work. uBlue/Bazzite does not use dnf.
I got a free iMac. Installed Linux on an external drive. Bazzite, specifically. WiFi does not work. My research leads me to a problem with proprietary Broadcom drivers but no solutions. If you know how to get this working, your advice would be appreciated.
Also if there's another distro that works "out of the box" on Macs with GNOME I'd be open to installing that as well.
E: "System information" says it is a
Broadcom BCM43xx 1.0 (7.77.111.1 AirPortDriverBrcmNIC-1772.1)
I didn't intentionally pick Ubuntu, my pc went shit and I needed to install some os and the only one I had available in a usb was Ubuntu noble.
Laptop specs: I think a 7th gen inter i5, 8 GBs of ram and (the issue) a 125 GB M2.Sata SSD
I'm not really going to play games on it, it's one of those weird laptops that folds and can use a stylus.
So what would you suggest for something light in size and good with a stylus.
The game can still be played offline if players log in before the servers are turned offChris Scullion (Video Games Chronicle)
Proton Drive does not support Linux…
I think there is early beta support in Rclone, but I have seen many reports of it not working well.
Things like don’t shake a baby (babies love to be bounced and rocked, which are honestly just gentle shaking, but even moderately vigorous shaking can seriously injure or kill an infant and you should never shake a baby in anger or anything like that) or don’t take anything with you when exiting a building when a fire alarm goes off (don’t go looking for things, but you should still put your coat on if it’s next to you and it’s cold out). What other common maxims are generally good to follow, but over exaggerated? Bonus points if it’s only a well known saying because our instinct is to do the thing, like with rocking babies.
(Please don’t think I’m telling you to shake babies or look for and carry huge stacks of files out of a burning building)
Children and sex. Recently on local social media, there was a discussion on our topless laws. Of course, there were the predictable comments about women not going topless where children might see.
Well, why not, Karen? It's utterly ridiculous when you consider what breasts are for, and what children are meant to do with them. Yes, it's true the children shouldn't be engaging in sex acts, and the details of adult sexual behavior should be kept from them, since they're not equipped to understand, e.g. BDSM and power play, yet. But if kids see a pair of boobs, if kids see naked people, or even if kids know the basic functions of body parts, they'll be fine. Lots of kids throughout human history lived in small dwellings and heard, or even saw, parents and other members of their community having sex, and they all survived the experience.
Communicable disease? Now there's something that we should be protecting children from...
LandedGentry doesn't like this.
Hi, I've been thinking about switching from Win11 to Linux Mint due to Microsoft collecting lots of data. My current setup has been cobbled together over the past decade and consists of a C drive NvME, 1 old SATA SSD, and 2 HDDs. I have games installed across all of the non-C drives, some from steam some not.
Windows tells me each drive by letter. I installed Mint on a virtual machine to get a look, but it couldn't read any of my files. I don't want to wipe my C drive without knowing that at least the other drives will be readable if I make the switch.
How does Linux account multiple hard drives? I'm so used to how Windows does it that I'm worried about switching over and losing access to my other drives. Thanks!
Linux doesn't do the drive letter thing. Instead, you have to identify the disks by their partition IDs.
When you install your OS, you'll be able to mount
the disks to wherever you like. If you want, you can create directories in /mnt
, like /mnt/e
, /mnt/f
etc.
The main issue you'll run into is disk format. NTFS will work, but its poorly supported.
To get a better idea of how it works, try passing a USB disk into the VM you've created.
The default wallpapers from over 20 years of Ubuntu Linux, from Warty Warthog to Plucky Puffin, in full original quality.Corbin Davenport (The Spacebar)
Those are all good points though I disagree a bit with the brown coats/confederates but I get what you mean.
I think I'll let that show sit in my memory as it is. Without rewatching any of it I can definitely see the issues. Especially Jayne thinking more on it
I want to have a mirror of my local music collection on my server, and a script that periodically
updates the server to, well, mirror my local collection.
But crucially, I want to convert
all lossless files to lossy, preferably before uploading them.
That's the one reason why I can't just use git
- or so I believe.
I also want locally deleted files to be deleted on the server.
Sometimes I even move files around (I believe in directory structure) and again,
git deals with this perfectly. If it weren't for the lossless-to-lossy caveat.
It would be perfect if my script could recognize that just like git does, instead of deleting and reuploading the
same file to a different location.
My head is spinning round and round and before I continue messing around with find
and scp
it's time to ask the community.
I am writing in bash but if some python module could help with it I'm sure I could
find my way around it.
TIA
additional info:
xonsh or python with sh.py.
Very interesting!
And thanks for the coding tips. It seems git is not the best option here because it keeps a full history of all files in their fullness - a gigantic waste of space in the case of a media collection.
I am now thinking more rsync minus lossless formats, then deal with lossless formats separately.
you know, you could also either include a lossy copy next to the lossless ones, then rsync only lossy extensions, or, if that pollutes your collection, have a separate but identically-structured directory tree, where all your lossless files have lossy copies. Then, you can rsync both folders (send-only) to your single remote (lossy extensions only).
but, yeah, Git really isn't the tool for this, agreed.
LandedGentry doesn't like this.
LandedGentry doesn't like this.
The complaint is regarding a known sock puppeter. Those votes are almost certainly all from the same person. And even if not, then those other accounts who write just like her but only because they 'collaboratively compose their messages' could be doing the upvoting.
Eta: ohhhhh it's this mofo. Let it go, CraigOhMyEggo. We get it. You're a serial Leni defender. But no, and I can't say this loudly and hard enough, getting 8 upvotes on a joke subreddit doesn't show that the whole of the fediverse is wrong for telling Leni to fuck off. And even if somehow this was a good way to make that point, in some crazy universe, the fediverse doesn't hinge on reddit's opinion of anything. Most fediverse folks don't give a shit about redditor's opinion. Or we would be on reddit.
This is a really pathetic attempt to revive the argument for Leni. You need to move on with your life.
I love popcorn as much as anybody, so normally I'd launch into a retelling of the whole sordid tale, but the problem with this drama is that it's not fun to read. Because the CallMeLeni person, and also the one who was leading the crusade against them, can't write.
That's not like, a cute joke. I've never, in my long and storied life, seen people who have such poor writing skills. Many times, people have commented to tell these folks that their writing is unreadable, and every time, the response is either to defend it, or to get weirdly specific about the complaints being made.
So instead of bothering with the whole thing, I found the post where I first read CallMeLeni posting something, and I'm linking it here. I didn't bother carrying over the links they put in the comment. And I'm going to paste a quote, so you can see why I don't recommend going for it. I can't warn you enough that this isn't worth your time.
::: And for extra protection, I've spoiler'd it. Read it if you want but you are missing out on nothing.
The implication here is false, at least by my definition of the word “false”, and he even alluded to that after it began to be discussed elaborately, albeit before using an appeal to the masses (story of my life) and say “most people seem to understand”, which ignores consensus of me and the aforementioned Blaze (as much as the “the truth we all wanted to speak” remark ignores not everyone had that issue). Notice how I responded with “I can spot rules broken by the other person’s thread more easily than I can spot rules broken by mine” and got only thumbs down for it and no responses, yet when I actually dissected the rules piece by piece in front of him to point out that any rule I supposedly broke wasn’t there, which even the person who recommended I make the discussion in the first place (the aforementioned Blaze) agreed was a “fair point to be honest”, the mod then delved into the concept of “unspoken rules” as an excuse for himself and said he didn’t want to “rules-lawyer”, which not only disproves what he said about “specific posting guidelines” being “in the sidebar” that supposedly explained what I did wrong, but proved a point I commonly mention about people in different places including here always being uncritical and unwilling to see things for themselves and just taking peoples’ word for things (and about that, to respond to Cypher’s last reply, intellectual =/= intelligent). A part of that is it also suggests, by extension, that the quantity of thumbs down you garner is unreliable as consistently meaning anything, unless the rule is actually to apply gladiator logic and say a thumbs down signals mercy, as indicated by the very Roman-esque culture around here. I guess all this time, I was being praised and didn’t realize it?
:::
While OpenH264 support coming to Fedora was widely celebrated as part of offering a better codec experience on Fedora Linux, an increasing number of Fedora users have grown frustrated with the OpenH264 packaging in that it's been out-of-date for several months with a high severity security vulnerability.
While OpenH264 support coming to Fedora was widely celebrated as part of offering a better codec experience on Fedora Linux, an increasing number of Fedora users have grown frustrated with the OpenH264 packaging in that it's been out-of-date for seve…www.phoronix.com
Please select the geographic area in which you live. Subsequent configuration questions will narrow
this down by presenting a list of cities, representing the time zones in which they are located.
1. Africa 3. Antarctica 5. Asia 7. Australia 9. Indian 11. Etc
2. America 4. Arctic 6. Atlantic 8. Europe 10. Pacific 12. Legacy
Geographic area: 5
Please select the city or region corresponding to your time zone.
1. Aden 19. Chongqing 37. Jerusalem 55. Novokuznetsk 73. Tashkent
2. Almaty 20. Colombo 38. Kabul 56. Novosibirsk 74. Tbilisi
3. Amman 21. Damascus 39. Kamchatka 57. Omsk 75. Tehran
4. Anadyr 22. Dhaka 40. Karachi 58. Oral 76. Tel_Aviv
5. Aqtau 23. Dili 41. Kashgar 59. Phnom_Penh 77. Thimphu
6. Aqtobe 24. Dubai 42. Kathmandu 60. Pontianak 78. Tokyo
7. Ashgabat 25. Dushanbe 43. Khandyga 61. Pyongyang 79. Tomsk
8. Atyrau 26. Famagusta 44. Kolkata 62. Qatar 80. Ulaanbaatar
9. Baghdad 27. Gaza 45. Krasnoyarsk 63. Qostanay 81. Urumqi
10. Bahrain 28. Harbin 46. Kuala_Lumpur 64. Qyzylorda 82. Ust-Nera
11. Baku 29. Hebron 47. Kuching 65. Riyadh 83. Vientiane
12. Bangkok 30. Ho_Chi_Minh 48. Kuwait 66. Sakhalin 84. Vladivostok
13. Barnaul 31. Hong_Kong 49. Macau 67. Samarkand 85. Yakutsk
Microsoft Defender.
I convinced my work to let me use linux on their laptop. They sent me instructions for setup. One of them was to install Microsoft Defender, had a link to the Ubuntu package and everything. Blew my mind.
Yup! Here's a helpful link in case you feel like spreading the joy.
maketecheasier.com/install-use…
Learn how to install and use Microsoft Defender on Linux to make sure your IT department can scan your machine for threats.John Perkins (Make Tech Easier)
Neverball.
So gaming on Linux is obviously amazing now, but back in 2006 or so when I started using it, it was less than great. I probably tried every single game in the Ubuntu repos and Neverball entertained the hell out of me.
I spent hours rolling this shiny ball around. I loved Marble Madness on NES as a kid, so it was a natural fit.
A close second was Freeciv, as I had also grown up with a copy of Civilization.
Honorable mentions to Nesticle and Snes9x.
like this
don't like this
like this
Oh,,,
It's not just advertising (and its commensurate tracking paradigm)...
Data mining for profit, SEO for profit, and pervasive Counterfeit Cognizance are all playing their part in ruining the Internet experience.
Perhaps all the above could be summed up by "Capitalist Greed"...??? 🤡 🖕
like this
Onomatopoeia doesn't like this.
Perhaps all the above could be summed up by “Capitalist Greed”…??? 🤡 🖕
No. It can't. And you're actively hurting your efforts by attaching high school edgelord bullshit to it.
Corruption has been a serious problem everywhere, forever, and does not care one bit what words the ruling party uses to express themselves. None of what is happening right now is restricted to nations which call themselves capitalist.
I mean, yes and no.
You know how when you look up at a nights sky, and the whole sky is covered in a series of rotating popup ads, with the stars as their backdrop?
What do you mean NO??? When you use your telescope to try to look at space, and all you see is a facebook ad, a mcdonalds ad, a starbucks ad, an ad for a local lawyer, you know.....space ads. We've all seen them. Just ads floating in space, illuminating the night sky.
Oh, my mistake. This is 2025. That's commonplace in 2125. See, the technology to impose global space ads isn't a thing yet.
The thing about technology is, there's always somebody looking to profit off of every new technology. The technology behind space ads is actually used to show important global events, like what the global dictator does everyday. Oh, right. In 2125 there's a global dictator who rules the entire planet through oppression and slavery. So, not much different than 2025, besides even the illusion of freedom is gone.
The point is, you don't have the technology to put ads in the sky, and therefore the advertising industry can't yet be blamed. But once it exists, they will.
It really is a chicken or the egg situation.
Sky ad technology can be developed out of the good of someone's heart. Maybe to show emergency alerts quickly. Disaster warnings. But then, it gets in the wrong hands.
We could say similar stuff about the internet. I don't think Tim Berner's Lee had bad intentions when founding the World Wide Web. It's a double edged sword. Same has happened with a lot. I even believe that God's sacrifice on the cross- an act of perfect love for all humanity- has been misused to control, manipulate and abuse. The guy who created dynamite wanted it to be used for safer mining practices, not a weapon. Many things we make as humans seems to be invented for good, but used for evil
Internet advertising wasn't initially that bad either. People would pay to have a button for their site to appear on another page. Or a video to play on a streaming site. Then someone thinks "let's actually make more relevant ads appear. This video is about videogames, let's show a videogame ad." Then: "We can see what videos this user likes, so we can get an idea that they like videogames, so let's show them videogame ads, even on other videos". And it eventually morphed into "We can see this user visited this videogame shop 1 month ago thanks to our other maps service. Let's show them adverts for that shop's sale". It's just crazy.
Kernal64 doesn't like this.
I have three teenage daughters who are currently not allowed on social media. But I want to give them some ability before they become adults. My eldest gave me a PowerPoint presentation on why she should be allowed on Snapchat, lol.
She made some good points. Her friend group has a group text and she wants to keep up with everyone but doesn’t want to get the ding notifications constantly.
Feels like a good opportunity for a Fediverse platform. Like a closed Mastodon/Pixelfed server and have some parental controls. Any projects out there?
like this
don't like this
like this
like this
A fast, modern package manager for Static Binaries, Portable Formats (AppImage|AppBundle|FlatImage|Runimage) & More [maintainer=@QaidVoid] - pkgforge/soarGitHub
Previously known as Project Orion, the conceptual phase is now completeChris Scullion (Video Games Chronicle)
If CDPR hadn't forced the team to crunch to get the game running at all on PlayStation, it probably would have been much more polished on release. A lot of the bugs you see in YouTube glitch compilations were due to this over-optimization (like NPCs vanishing or changing models when you looked away for a second).
I wonder how much better the game and its reception would have been if they'd dropped the last-gen console support during development. Those were the truly awful versions; the PC version was about even with Bethesda's launch day jank.
I also wish they'd properly managed expectations. The PC release was buggy and missing promised features, yes, but a lot of the hate came from it being a game with an open-world city with guns and driving but not mimicking GTA's systems.
LandedGentry doesn't like this.
Some people complain very loudly. It’s possible most of us actually had no problems & said nothing, leaving only the scorned to be heard.
So, believe it or not, what you said is why I was responding. To let you know “that performance issues are different for different people on different systems.” Seems like you forgot it yourself.
Have a nice day 😊
LandedGentry doesn't like this.
Could you remind me what features people were upset about? I stayed away from most of the drama since CDPR has a long history of releasing a free major upgrade a year or two after release that fixes everything people complained about.
I remember the dev diaries being pretty open about dropping features during development, like the RC drone turning from a staple of your kit into something shown off once in a mission and immediately forgotten.
Text:
I consent to Plex to: (i) sell certain personal information (hashed emails, advertising identifiers) to third-parties for advertising and marketing purposes; and (ii) store and/or access certain personal information (advertising identifiers, IP address, content being watched) on my device(s) and share that information with Plex’s advertising partners. This data is used to deliver personalised ads and content, ad and content measurement, audience insights and product development. Your consent applies to all devices on which you have Plex installed. You can withdraw your consent at any time in
Account Settings or using this page.
Soure: plex.tv/vendors/
(Might have to clear cache)
Can also read about the changes here:
plex.tv/about/privacy-legal/
Prior Versions What’s new in this version Clarified language in the Privacy Rights section. Updated “Who does Plex share...Plex
I don't know why everyone in the selfhosting community still even mentions Plex or uses it.
It's closed source, not free; Jellyfin is a no brainer yet people still go to Plex??
I don't mean to diminish your comment, but I just went through the setup process for both Plex and jellyfin (moving to new hardware) and there was no significant difference between the setups.
Maybe this wasn't the case a few years ago, but jellyfin is just a setup, point to libraries, and enable hardware accel.
LandedGentry doesn't like this.
Sorry, I meant "Plex took away free remote streaming".
You're being really, really snippy. Either have a coffee or take a breather, but calling strangers liars is way offside.
I'm not lying, I can show you my Fw config. My son called me yesterday saying he couldn't watch Plex, something about the Plex pass. I just changed the Fw rule DST nat mangle port and told him to use jellyfin. The user is local, so that's dead easy. Done in 10 minutes.
And yes, most users don't have this kind of experience, granted. But Plex comes with its own stupidities, like in 2020 when my wife had to pay $5 for the Plex app so she could access our library. Or the exercise of sharing libraries if you don't have a Plex pass, which is a real pain.
But that wasn't my point. I was trying to relay that jellyfin isn't as buggy and difficult as a lot of self hosters claim.
LandedGentry doesn't like this.
LandedGentry doesn't like this.
I mean, if they don't want to learn, there is always netflix, prime, Disney +.
Or stay with plex, no shade.
Or you take an afternoon and build something cool like this.
Proxmox LXC based Traefik Reverse Proxy with Cloudflare Tunnel - sfnemis/proxmox-traefikproxy-cloudflaretunnelGitHub
LandedGentry doesn't like this.
Jellyfin is hardly a no-brainer. I set it up out of curiosity a few weeks ago and my first question was how do I give access to my friends and family. So I searched, and all of the results were talking about setting up a VPN or a reverse proxy or whatever. Man, I just want to tell my mom "install this app on your tv and log in", which is exactly what Plex does.
I get that Plex is enshittifying, but pretending Jellyfin is a drop-in replacement is delusional.
LandedGentry doesn't like this.
Hi guys!
So...I bought a Latitude 7350 detachable laptop, as a replacement for a Surface where the cams don't work on Linux. This laptop seemed rather powerful and compatible, while still keeping the weight constrained (something the Minisforum V3 isn't as successful in). Also,
I prefer the rear being a stand thingy like on the Surface, and not some detachable flap you need to turn about 150 degrees to turn it into a mandatory stand (because when closed...it blocks the intake fans).
Anyway...Seems that while the camera module IPU6 is meant to be supported on Linux...I don't seem to be able to get any image. Any ideas what I might be doing wrong?
I installed KDE Neon (I'd prefer a KDE-based distro) and installed intel-ipu6-dkms and intel-usbio-dkms. But the camera doesn't seem to work. Any ideas how could I troubleshoot this?
A database of all the hardware that works under linuxlinux-hardware.org
The important part is the hardware id of the camera, you have to search for this, drivers and kernel modules use this number to check if they are needed: 8086:7d19
I found a documented laptop with this camera: wiki.archlinux.org/title/Dell_…
They link to some patches there, it may work with that
As I see the date of the patch is this year March, I guess simply the laptop is too new. If you don't want to fiddle, just switch to some rolling release distro, and the patches will be merged upstream soon. After a kernel update your camera will magically start working. This would be the easiest solution if you can live some more months without the camera.
file title is an option present on mkvtoolnix (92.0 eyeglow on debian 12.11)
I could single open every file, remove the file title and save, but that's gonna take ages. almost 100 files.
Current directory and all its subdirectories - to be exact 😀
You can execute the find command only (with arguments, so until the pipe) to verify modified files beforehand.
I also would use Clonezilla and make a backup of your current drive. Easy to do, and gives you a backup you can restore anywhere including a virtual machine, meaning you can have windows back inside of Linux if you forgot anything.
Or you can restore the drive if you accidentally corrupt it.
New to Linux and no clue what to start with? Try Mint. https://www.linuxmint.com/If you prefer a specific desktop environment or specific features out of the...YouTube
I'm good. But thank you for the tip.
Just posted the video, because I like that she's quite balanced in her views. The subject matter will always trigger a level of controversy, esp. on lemmy. But the advice is pretty solid.
And if Mint isn't the answer, go with Ubuntu. Or Zorin OS. Or PopOS. All of them are "right" and provide excellent beginner experiences for many people.
Is this a decent OS to move users off Win too that I won't have to do a lot of remote maintenance on? I have a few varied OS's installed on machines around and Cinnamon I have found to look/feel a lot like Windows 7 which would benefit the learning curve for family/friends looking or needing to find an OS to install on a machine that isn't newer.
Curious if anyone has used this, and if so if it is a good fit for those 60+ aged family members and such. They have all used Windows for work at least a decent amount, so keeping things similar is always good. A decent App Store would be nice though. I hated the default store in Pop_OS.
If I could say do updates and reboot every once in awhile and you should be fine it'd be great. Remoting in with RustDesk and hitting App Update/Upgrade being all that is needed also would be great, but you know how that goes. Someone will break something, and I just want something intuitive enough that they won't do it often.
Don't throw away your old computer. Install a Linux distribution that'll make it feel brand new. FunOS is here to help you out.Jack Wallen (ZDNET)
The Onyx BOOX Poke 2 Color was one of the first eBook readers to ship with a color E Ink display. And while it’s designed for reading eBooks, periodicals, and comics, it’s basically a tablet with a sunlight readable display (with a slow refresh rate) and a relatively sluggish processor: but thanks to its Android-based operating system you can install plenty of third-party apps.
So why not […]
#2old4toys #cyberdeck #denseForever #diyUmpc #lilbits #sipeedTangConsole #unihertzTitan2
Read more: liliputing.com/lilbits-retro-g…
Yesterday someone asked if one could do something like this, here is my version, in case you missed it !
Here is the list of all the softwares in this picture :
- Friendica
- GNUSocial / Mastodon
- Vernissage
- Wordpress / Writefreely / Pixelfed
- Loops
- Jlai.lu (French lemmy instance) / Lemmy (with the lemmy.world logo because it's more colorful than the plain lemmy logo)
Feel free to share it anywhere you want 😀
If you have any idea for other meme of this type for the Fediverse, please send me a DM and I might make a nice graph like this for you !
like this
don't like this
like this
Im currently trying to get my Keyboards software to work on linux, but since that won‘t be a thing, like ever, im trying to Reverse engineer the software in order to copy the get and set requests the Software sends over USB and send them over a Python Script using libUSB, so I can control it independent of OS
So I set up my Wireshark with a USB snooper and started using the software
Only problem: Since I have no idea how a Keyboard usually communicates, so I have no idea what to look for. Can someone recommend me some already reverse engeneered FOSS Keyboard software as an example? (Like the wooting software, if its even OSS)
Unless the vendor is rolling something super custom, for the communication TO the keyboard, it should use USB HID.
Start Wireshark, filter for hid, connect the KB and the first message should be a HID descriptor of the KB, look for Output Reports (it's meant from the POV of the usb master) or Feature Reports.
Though, this will probably not yield much insight - vendors love to do the easy thing, reserve opaque 32x8 bytes as a "downlink" Output communication in the Vendor Usage Page and stuff their own protocol/encoding in there.
On linux I can recommend hid-tools for working with this, in windows I believe your only solution is Wireshark.
marcusfolkesson.se/blog/hid-re…
Happy Hacking!
E: About the already reversedsoftware, for logitech (and more) stuff, there is piper but you will want to look into the underlying daemon libratbag, there is also solaar
A DBus daemon to configure input devices, mainly high-end and gaming mice - libratbag/libratbagGitHub
I reversed engineered a keyboard for a presentation in uni. I’ll drop you an excerpt of a written review:
Resources used
I learned the USB protocol from this (the relevant parts I needed). We’re thinking of including some basic understanding of the USB protocol in the slides.
beyondlogic.org/usbnutshell/us…
I got an idea of what could be going on from the following link, specifically the section I’ve set.
github.com/openrazer/openrazer…
I deciphered the protocol using the USBHID packets that would be sent. I was highly sure it was USBHID from a pointer from another Linux community member, but this article was my third source to confirming this.
hackaday.com/2020/04/14/revers…
One of the sources for information to develop these procedures was from the openRGB wiki.
This stream has to do with reversing using URB. I find this might be out of scope, and it would’ve been way tougher to reverse engineer with this.
Feel free to ask as needed here. Spam the requests on the software while monitoring wireshark to be sure of what is what.
The other large comment by “taaz” is also very useful and parts of which I did use while reverse engineering.
Open source driver and user-space daemon to control Razer lighting and other features on GNU/Linux - openrazer/openrazerGitHub
Hey guys, sorry if this is the wrong place to ask this (feel free to point me to a better community) but I'm in a weird "predicament" this summer: My AMD build plans are in shambles after receiving a free ROG Astral 5080.
Now I want to make the switch now with my current (Intel i7-13700K) hardware + this new card. I was only considering AMD before but it's really hard to say no to a video card worth more than my entire budget lol
The slightly worse performance compared to Windows is still an upgrade from my 3070 so that's fine - It's initial/recurring troubleshooting I don't really want to deal with. Most of the info I've found is from earlier this year and no one speaks highly of the beta drivers
Sorry if this is a stupid question but am I setting myself up for disappointment with this new plan? I have a few more related questions I'll toss in the comments but that's my main concern.
It's a Linux distro made specifically with gaming on Nvidia GPUs in mind. It's basically Arch, but GPU drivers are included with the installation, and Steam, Proton, and Wayland are already installed and configured for you.
Great performance and perfect for people who don't want to set up all this stuff themselves, but like I said earlier, no NV Control Panel or NV App.
It also comes with a "Dr460nized" theme that you may or may not like. It reeks of early 2000s adolescence, but I was a teenager in that era so I kind of like it. Of course you can easily disable it and use a more mature theme if you'd like.
For a first time Linux gamer I'd recommend Garuda.
Hello guys i have a qustion about which distro i should use?
I want to dual boot windows and linux
I just want a safe place away from microsoft eyes to do edit and drawing and other hobbies on my pc.
And playing some games like cs2 & 2d games
Also the distro run my wallpaper engine
Should be popular distro so if i have a problem i can ask about it
Please dont tell me linux mint because i tried it 3 times and everytime i do anything simple the distro goes off and i should re install i won't give it anymore chances
thank you 😖
Edit: thank you guys for typing your suggests. after some search i will give bazzite try and if won't work like i want. I will go with the other suggests
I really enjoyed reading all your suggests
like this
Not to get into politics but the whole point of Linux is about being open and used by anyone from anywhere. I wouldn’t be surprised to see various parts of the Linux kernel, drivers, etc developed/funded by people from Israel, Russia, and many many other countries.
Edit: the point of this message, this type of approach to your OS choice will ultimately result in throwing your PC in the trash if you dig deep enough.
There is a vast difference between a community driven project like Debian taking small contributions from people who happen to be in Israel/incorporating some things from RedHat after lots of vetting and diluting and Fedora being a direct upstream testing ground for RedHat who are the primary contributors and maintainers.
No, this type of approach will not lead to you throwing your PC in the trash, it will simply lead to you being more aware of your software and how it functions,what it contributes to, and what contributes to it. Which is a good thing imo.
For example, I use LMDE. Yes, there are most definitely contributions from redhat in my machine. the difference is between
RedHat engineers -> Fedora.
And
RedHat engineers -> Fedora -> Upstream Project acceptance-> Debian -> LMDE.
I'm not saying you need to stop using Fedora. But everyone draws a line somewhere and I'm simply making my knowledge on this known for people who's line may be in a similar place to mine.
Yeah, I'm not sure too many mitigations have been backported.
But the attack surface might also be smaller due to simpler pipelines...
Regardless, I'm too much of a perf junkie to give up my modern hardware.
like this
don't like this
like this
Aminara likes this.
cross-posted from: lemm.ee/post/65149489
try using this code do you think it will work?Below is a minimal example of how you can add a real‐time chat box that only your authenticated users can use. It uses:
- Node.js + Express for the web server
- express‐session to track logged-in users
- Socket.io for real-time messaging
You’ll need to adapt the authentication check to however you store your users (database, JWTs, etc.), but this will give you the core of “only logged‐in folks see/use the chat.”
1. Install dependencies
npm init -y npm install express express-session socket.io
2. server.js
const express = require('express'); const http = require('http'); const session = require('express-session'); const SocketIO = require('socket.io'); const app = express(); const server = http.createServer(app); const io = new SocketIO(server); // 1) Session middleware const sessionMiddleware = session({ secret: 'YOUR_SESSION_SECRET', resave: false, saveUninitialized: false, // store: you can add a store like connect-mongo here }); app.use(sessionMiddleware); // 2) Make session available in socket.handshake io.use((socket, next) => { sessionMiddleware(socket.request, socket.request.res || {}, next); }); // Serve static files (our chat page + JS) app.use(express.static('public')); // 3) A simple “login” route for demo purposes. // In real life you’d check a DB, hash passwords, etc. app.get('/login', (req, res) => { // e.g. ?user=alice const username = req.query.user; if (!username) return res.sendStatus(400); req.session.user = { name: username }; res.redirect('/chat.html'); }); // 4) Protect chat page app.get('/chat.html', (req, res, next) => { if (!req.session.user) return res.redirect('/login.html'); next(); }); // 5) Handle socket connections io.on('connection', socket => { const req = socket.request; if (!req.session.user) { // kick out any un‐authenticated socket return socket.disconnect(true); } const user = req.session.user.name; socket.broadcast.emit('message', { from: 'SYSTEM', text: `${user} has joined the chat` }); socket.on('message', msg => { io.emit('message', { from: user, text: msg }); }); socket.on('disconnect', () => { socket.broadcast.emit('message', { from: 'SYSTEM', text: `${user} has left the chat` }); }); }); server.listen(3000, () => { console.log('Listening on http://localhost:3000/'); });
3. public/chat.html
```html
> Send>
> const socket = io(); > > const form = document.getElementById('form'); > const input = document.getElementById('input'); > const messages = document.getElementById('messages'); > > socket.on('message', msg => { > const li = document.createElement('li'); > li.textContent = `${msg.from}: ${msg.text}`; > messages.appendChild(li); > messages.scrollTop = messages.scrollHeight; > }); > > form.addEventListener('submit', e => { > e.preventDefault(); > if (input.value.trim()) { > socket.emit('message', input.value); > input.value = ''; > } > }); >
```4. How It Works
- Session setup
We useexpress-session
so that when a user “logs in” (e.g. via your existing form/database), we store{ user: { name: '…' } }
inreq.session
.- Socket authentication
By re-using the same session middleware in Socket.io’sio.use(…)
, every incoming socket has access tosocket.request.session
. If there’s nosession.user
, we immediatelydisconnect()
them.- Real-time chat
- On connect/disconnect we broadcast a system message.
- On client‐side, every message the user sends is emitted and broadcast to all.
- Protecting the page
We guardchat.html
in Express so that if you go there directly, you’ll get bounced to/login.html
(you’d build a real login page).Next Steps
- Integrate with your real user database. Replace the demo
/login
route with your own logic.- Persist chat history if you want to store messages (e.g. in MongoDB or MySQL).
- Add rooms or private messaging by namespace or room support in Socket.io.
- Style it and embed it in your existing layout (lemm.ee) CSS.
like this
don't like this
🐀 A link aggregator and forum for the fediverse. Contribute to LemmyNet/lemmy development by creating an account on GitHub.GitHub
like this
like this
The US delivered its first B61-13 nuclear bomb nearly a year early. With enhanced yield and precision, it modernizes a key part of the nuclear triad amid rising global tensions.Lake Dodson (The National Interest)
Thanks to your support, we (Framasoft, a small french not-for-profit) have been developing PeerTube for seven years! From a student project to a softw...JoinPeerTube
like this
♲ NABU Jena - 2025-05-26 13:27:19 GMT
Juhu 🎉
Der #NABU hat nun seine eigene, offizielle Fediverse-Instanz. Als NABU-Jena hatten wir die Ehre, den Umzug zu testen. In Zukunft werdet ihr hoffentlich viele unserer Verbände hier wiederfinden.
#Mastodon #Fediverse #Jena #Unabhängikeit #OpenSource
Orion likes this.
N. E. Felibata 👽 reshared this.
I don't know of a specific theme in the neubrutalism/neobrutalism style (names that are generally used to describe this style or aesthetic), but it shouldn't be too hard to make.
For anyone unfamiliar it's generally defined by flat, blocky layouts, with thick borders, single color drop shadows and a few bold high contrast colors (think CGA and EGA monitors if you're that old). It often features “unpolished” elements like flat simple shapes. Bold fonts and monospace fonts are pretty common.
There are a few resources out there if anyone wants to play around with this style.
github.com/ComradeAERGO/Awesom…
dribbble.com/shots/20764973-Ne…
nngroup.com/articles/neobrutal…
As a UI design style, neobrutalism focuses on raw, unrefined elements like bold colors, simple shapes, and intentionally "unfinished" aesthetics.Hayat Sheikh (Nielsen Norman Group)
Neubrutalism?
I was developing a widget toolkit that implements neubrutalsim but it's defunct now... Fuck life
I have a pretty old laptop with an AMD dGPU and I am trying to do OpenCL compute on it to make sure that device switching is handled correctly in some stuff I am testing. All the instructions I see to install amdgpu drivers is to have --no-dkms as an install flag.
Doingamdgpu-install --usecase=opencl --no-dkms --opencl=legacy
results inERROR: using '--no-dkms' with '--opencl=legacy' is not supported
Specs:
HP Pavilion 15-br158cl
CPU: i7-8550u (HD 620 iGPU and this has working compute)
GPU: Radeon 530 2 GB DDR3
RAM: 24 GB
OS: PopOS 22.04 6.12.10-76061203-generic
Clinfo -l output
Platform #0: Intel(R) OpenCL HD Graphics
-- Device #0: Intel(R) UHD Graphics 620 [0x5917]
Platform #1: AMD Accelerated Parallel Processing
I did post this on reddit in the PopOS subreddit.
reddit.com/r/pop_os/comments/1…
popos has their own thing that will conflict with dkms
So you obviously need to manually configure that own thing to build the driver instead of relying on the installer.
I haven't found any documentation on this except "don't do it lol". Which is why I'm confused. How?
Edit: finding more info and discovering that people didn't have bricked systems after using dkms which leads me to assume that later versions of popos do not have the issue that people were trying to avoid.
I'm on Bazzite Linux 42 and was having some trouble with my 2.4GHz wireless keyboard disconnecting, so I decided to replace it. The new one is having similar issues despite being a different brand (new: XVX, old: Royal Kludge), so I suspect the culprit may actually have been software all along. I have a 2.4GHz wireless mouse connected to the same system that is generally reliable, so I don't believe it's an issue of 2.4GHz interference. The keyboards work well when connected to my Mac, so I don't believe it's faulty hardware.
This keyboard has one feature that may be helpful in troubleshooting: it flashes an LED when it’s trying to reconnect. (The previous one had no indicator.) I can clearly see that, after the keyboard has been idle for a bit, it starts trying to reconnect again. I suspected a power management issue, but I believe I’ve disabled that. I started with a rule in /etc/udev/rules.d/
:
ACTION=="add", SUBSYSTEM=="usb", ATTR{idVendor}=="1038", ATTR{idProduct}=="1830", TEST=="power/control", ATTR{power/control}="on"
ACTION=="add", SUBSYSTEM=="usb", ATTR{idVendor}=="0c45", ATTR{idProduct}=="fefe", TEST=="power/control", ATTR{power/control}="on"
lsusb
. I’m assuming the part of the ID before the colon is the vendor ID and the part after is the product ID.That didn’t seem to help at all, so I tried disabling USB power management with rpm-ostree kargs --append-if-missing="usbcore.autosuspend=-1"
. That made the problem better, but now it just seems to take longer (a couple of minutes) for the keyboard to lose connectivity. Also, now when it loses connectivity, it seems even disconnecting and reconnecting the dongle doesn't always fix it.
Anyone have ideas what I might try from here?
lsof -t
, the dongle is connected directly to the root hub (under only xHCI host controller). I noticed in powertop that those controllers were still under power management, so I disabled them. That didn't seem to help. The keyboard still lost connection.
Welcome to a new issue of "This Week in Plasma"! Every week we cover the highlights of what's happening in the world of KDE Plasma and its associated apps like Discover, System Monitor, and more.This Week in Plasma: File Transfer Progress Graphs
Both don't ship with their own Wayland compositor, but there are enough to choose from.
Xfce comes with a wayland session using labwc out of the box, but was also tested with Wayfire. The devs state you shouldn't hold your breath waiting for the native window manager xfwm to be ported into a Wayland compositor, since they don't know if/when it will be done. Almost all other Xfce components support Wayland now, while retaining X11 compatibility.
LXQt's newest stable release has full Wayland support, with 7 different Wayland compositors to choose from within a GUI settings menu: Labwc, KWin, Wayfire, Hyprland, Sway, River and Niri
xfce.org/about/news/?post=1734…
lxqt-project.org/release/2024/…
The LXQt team announces the release of LXQt 2.1.0, the Lightweight Qt Desktop Environment.lxqt-project.org
Home, Not So Sweet Home. GitHub Gist: instantly share code, notes, and snippets.Gist
It's brief, around 25:15
youtube.com/watch?v=nf7XHR3EVH…
If you've been sitting on making a post about your favorite instance, this could be a good opportunity to do so.
Going by our registration applications, a lot of people are learning about the fediverse for the first time and they're excited about the idea. I've really enjoyed reading through them 😀
John Oliver discusses Facebook’s controversial new plans for content moderation and which Animorphs he would and would not kill with his car.Connect with Las...YouTube
like this
This is a rough draft, and I'm looking for feedback on the high-level shape of it. Most important is that I added another type...GitLab
Xorg global shortcuts will work for anything using Xwayland, but not in anything thats wayland native
For example, in a game (using wine, which uses Xorg by default currently) your global shortcut will work. But in a wayland native window like Firefox, it will not if its the active window
I hear this is a rite of passage. I made it 4 weeks before I rekt all my shit (it was nvidia related). Where do I claim my sticker?
In all seriousness, now that I understand better these commands that I've been haphazardly throwing around, Id like to do a clean install. God knows what else Ive done to it. Can i just reinstall to my root partition and have my home partition work as expected?
I'm formally stepping down as a nouveau kernel maintainer. I want to stress out this is only for the kernel side of things and has and will not have any impact on my involvement in mesa.chaos.social
Torvalds: You can avoid Rust as a C maintainer, but you can’t interfere with it.Kevin Purdy (Ars Technica)
Arch is aimed at people who know their shit so they can build their own distro based on how they imagine their distro to be. It is not a good distro for beginners and non power users, no matter how often you try to make your own repository, and how many GUI installers you make for it. There's a good reason why there is no GUI installer in arch (aside from being able to load it into ram). That being that to use Arch, you need to have a basic understanding of the terminal. It is in no way hard to boot arch and type in archinstall. However, if you don't even know how to do that, your experience in whatever distro, no matter how arch based it is or not, will only last until you have a dependency error or some utter and total Arch bullshit® happens on your system and you have to run to the forums because you don't understand how a wiki works.
You want a bleeding edge distro? Use goddamn Opensuse Tumbleweed for all I care, it is on par with arch, and it has none of the arch stuff.
You have this one package that is only available on arch repos? Use goddamn flatpak and stop crying about flatpak being bloated, you probably don't even know what bloat means if you can't set up arch. And no, it dosent run worse. Those 0,0001 seconds don't matter.
You really want arch so you can be cool? Read the goddamn 50 page install guide and set it up, then we'll talk about those arch forks.
(Also, most arch forks that don't use arch repos break the aur, so you don't even have the one thing you want from arch)
Any recommendations for a linux distro that i can set up and be reasonably sure my non techy SO won't break accidentally? The set up doesn't have to be easy it just has to not break once I leave her alone with it. My first thought was popOS.
My plan is to have 2 profiles and not give her access to sudo. I just don't want to have to go into it unless she needs a new program.
Fedora is a bit too eager to deliver new updates IMO, especially KDE. As much as I love KDE, their .0 releases have had serious bugs several times in a row now. It's always better to wait for .1 patch with Plasma. It may be hard for the user to break Kinoite, but it won't save them from bugs.
Fedora's mission have always been to push new stuff when it's "mostly ready" at the cost of inconveniencing of some users, so I wouldn't recommend it for non-tech-savvy people.
I know people say that it's 100% stable for them (as they do for Arch, Tumbleweed, Debian Sid, etc) but that's survirorship bias. As any bleeding edge distro, Fedora has its periods of stability that are broken by tumultuous transitions to the new and shiny tech (like it was with Pipewire, Wayland default, major DE upgrades, etc). During these times some people's setup will break and you don't know ahead of time if it will be yours.
Why do many people dislike Linux?
Freedom and openness:
Open source, No vendor lock-in, Many distributions
Security:
By default, more secure than Windows.
Fewer viruses.
Regular security updates.
And now briefly.
Control & Flexibility,Free, Developer Friendly, Productivity, Education & Understanding, Support & Community, Support & Community, Package Managers, Server & Cloud Friendly
Oh yeah, I forgot about our gamers! They will whine that you can't play games on Linux. It's very funny because for a long time there has been a program called lux-wine that allows you to open 95% of .exe programs and even more so you can choose any version of Windows without downloading anything, there is like proton and so on.
I am ready to talk to anyone about this topic, but not for the purpose of humiliation or insult.
What's Linux? Why are you making a strawman to found yoer disagreement, there is no inherent value to what you believe to be obvious.
"Linux the kernel" is a wonder of the software world. One free and open source kernel codebase to rule them all, a culture, a license that enshrines that culture. The kernel is great as it is.
"Linux the kernel packaged with software used on the desktop" is flaming garbage. That's not to say it's worse, modern windows is like using the lava from Chernobyl to keep warm on a brisk evening. MacOS is relatively acceptable but Apple isn't. Open source BSD based OSes are cumbersome on the edges of general computing. Android is all but Google OS at this point. Ultimately no practical, actually useful alternatives to linux on the desktop actually exist. This does NOT mean we have to convince ourselves it is actually good.
"Linux the kernel and a server OS package" is great, can't go wrong with this. Love it, genuinely.
"Linux for embedded devices" is a fucking travesty. Still happens.
Various opinion roundup:
New in Linux 6.15:
Summary of the changes and new features merged in the Linux kernel during the 6.15 development cyclekernelnewbies.org
Support for larger 32-bit x86 systems (those with more than eight CPUs or more than 4GB of RAM) has been removed.
What? How do you get more than 4GB of ram on a 32-bit CPU architecture? Now I need to know what kind of black magic they used for that
So, I am one of those old school types who mains with Firefox and Noscript. And also a filthy casual that just goes on lemmy.world. But half the images are broken because I'm expected to allow scripts on like 30+ sites to see most of the posts. I'm literally expected to allow /all/ the scripts from a domain just so I can see a dang picture behind the thumbnail. That's the entirety of the scripting needed. That seems ridiculous. Is there, I don't know, a server/way that makes it so I don't have to blanket allow all these scripts? To put it in meme form (not sure I'm doing it right, never seen the show): "It's an image of a banana Michael, what should it take, one Raspberry Pi running Docker?"
[EDIT 6/1/25 - thanks to everyone who commented on this. Screenshots: lemmy.world/comment/17403335 ]
like this
don't like this
Mentioned elsewhere, and a decent workaround. Doesn't do well with thumbnails, unfortunately.
[edit: someone below suggested removing the thumbnail sampling (I'll probably try via uBlock Origins). Honestly with that and a bit of zoom, might work fine. Will be testing it.]
Ademir likes this.
I am going to buy a new graphics card and can't choose between Nvidia and AMD. I know that Nvidia has bad reputation in Linux community but how really it works? And I heard recently their drivers got better. What can you recommend?
P. S. I don't want any proprietary drivers (so I am talking about Nouveau or any other FOSS Nvidia driver if it exists)
Just not true anymore. Must have been years ago that you used Nvidia on Linux. As someone who has been using Nvidia GPUs under Linux (Manjaro KDE mostly), recently also under Wayland (since plasma 6), I can attest that the experience is very good, no "tons of small issues".
Still though, since OP wants no proprietary drivers, he has to go for AMD, since nouveau is dog shit.
So a bit under 3 years ago, I made my infamous Wayland rant post that is likely the most read post on this blog by miles. I should really actually write about music again one of these days, but that's a topic for another time. The language was perhaps a bit inflammatory, but I felt the criticisms I made at the time were fair. It was primarily born out some frustrations I had with the entire ecosystem, and it was not like I was the only sole voice. There are other people out there you can find that encountered their own unique Wayland problems and wrote about it.With that post, I probably cast myself as some anti-Wayland guy which is my own doing, but I promise you that is not the case. You can check my mpv commits, and it's businesses as usual. Lots of Wayland fixes, features, and all that good stuff. Quite some time has passed since then, and it is really overdue look at the situation again with all the new developments in mind. To be frank, my original post is very outdated and it is not fair to leave it up in its current state without acknowledging the work that has been done. So in comparison to 3 years ago, I have a much more positive outlook now.
It's not that bad. It's just German for flea market. And English speakers shouldn't have an issue with at least "Markt". Not far from a cognate.
Definitely better names but I think the bigger hurdle is getting the critical mass to get something like marketplace to work in the fediverse even with the perfect name.
GTK developers have been holding another hackfest this week for the annual FOSDEM developer conference happening this weekend in Brusselswww.phoronix.com
Just looking at this post as an example, on lemmy.world show it has 29 comments, but when i open it, there are now only 3 or 4. I replied to one comment, the user i replied to got banned, and the whole comment tree is gone from lemmy.world. Other instances still show all comments, including those from the banned user and my reply.
I think it’s very confusing when a single post appears with different comments on different instances, and have no idea how this works.
Edit: why am i forced to upload a photo for a new post?
The Debian Publicity Team is stepping away from X/Twitter, citing concerns over values and diversity.Sourav Rudra (It's FOSS News)
& all the US-based corporate social media… Facebook, Instagram, Threads, WhatsApp, Snapchat, Reddit, Discord, LinkedIn, & GitHub.
The VC-funded ones too like BlueSky
The developer behind Pixelfed, Loops, and Sup, open source alternatives to Instagram, TikTok, and WhatsApp, respectively, is now raising funds on Kickstarter to fuel the apps’ further development.
The trio is part of the growing open social web, also known as the fediverse, powered by the same ActivityPub protocol used by X alternative Mastodon. The latter saw increased signups and use after the company formerly known as Twitter sold to Elon Musk in October 2022 and during the X exodus that followed the U.S. presidential election.
In the months and years following that sale, open source and decentralized apps like Mastodon and Bluesky (which uses the newer AT Protocol), have continued to grow their user bases, as people sought alternatives to centralized social media apps controlled by billionaires like Musk and Meta’s Mark Zuckerberg.
Edit: Link to the kickstarter
I hate when people say that they'll only move when it has 100% support
People who say 'cant wait for steamOS to come out so that I can move to it' is also very similar
They never will try Linux, even if what they want comes true
They won't do it, whether they just fear change or think it'll break stuff or they can't bother
And I'm not going to lie, I don't hate them or debate with them for it, I just hate the bold lies they tell just to get with the crowd
"Fuck you Microsoft, I'm moving to Linux" says the individual that would never move if they haven't already
Frankly, I probably wouldn't move either if Windows didn't permanently break my ethernet and WiFi drivers, and reinstalling windows wasn't harder than installing Linux, fucking hell
Either way, these people kick up hype for a Linux that will be so much bigger but they never arrive
Maybe they will, due in fucking 2028 or something when they invent a really easy way to use built in Linux tools to move your files from NTFS to Linux and then when you launch steam you have a perfect library of Linux compatible games that are as good or better than windows
And don't lie, even now with 80% compatibility it feels more like 60%, whether because it depends on the system one runs or because the performance drops just make it not worth it...
At least don't lie that you'll move to Linux at a goal post that you'll just move whenever you get close, maybe say that you'll move to Linux when you finally get a new pc with a new disk or something?
It's a little strange that you think "I want feature parity with what's working for me (from my perspective)" is:
1) A lie.
2) Unreasonable to ask for.
The healthy responses would be "Well, I hope either support grows or your needs change, because of some philosophical reasons you might not care about... yet" or, if they're open to it "Oh, it can do this if you put a little work in, let me help you."
The unhealthy response is to accuse people of moving goalposts as if someone's tool of choice is a political debate. It can be, obviously, given FOSS philosophies, but honestly this kind of screed just drives people away.
This week was all about the quality of life features! As we close in on Plasma 6.2 (the soft feature freeze is in four days, eek!), some great work that’s been in progress for a long time got…Adventures in Linux and KDE
Microsoft has issued a security update that has broken dual-boot Linux and Windows machines. The update wasn’t supposed to reach dual-boot PCs.Tom Warren (The Verge)
So they were trying to patch systems that use GRUB for Windows-only installs? What a load of BS. Why would anybody install GRUB to boot only Windows with that? Or am I overlooking something?
Furthermore, if GRUB has a security issue, they should've contributed a patch at the source instead of patching it themselves somehow.
I'm a bit stunned at the audacity of touching unmounted filesystems in an OS patch. Good thing Windows still doesn't include EXT4 and BTRFS drivers because they might start messing with unencrypted Linux system drives at this rate
I've only ever used desktop Linux and don't have server admin experience (unless you count hosting Minecraft servers on my personal machine lol). Currently using Artix and Void for my desktop computers as I've grown fond of runit.
I'm going to get a VPS for some personal projects and am at the point of deciding what distro I want to use. While I imagine that systemd is generally the best for servers due to the far more widespread support (therefore it's better for the stability needs of a server), I have a somewhat high threat model compared to most people so I was wondering if maybe I should use something like runit instead which is much smaller and less vulnerable. Security needs are also the reason why I'm leaning away from using something like Debian, because how outdated the packages are would likely leave me open to vulnerabilities. Correct me if I'm misunderstanding any of that though.
Other than that I'm not sure what considerations there are to make for my server distro. Maybe a more mainstream distro would be more likely to have the software in its repos that I need to host my various projects. On the other hand, I don't have any experience with, say, Fedora, and it'd probably be a lot easier for me to stick to something I know.
In terms of what I want to do with the VPS, it'll be more general-purpose and hosting a few different projects. Currently thinking of hosting a Matrix instance, a Mastodon instance, a NextCloud instance, an SMTP server, and a light website, but I'm sure I'll want to stick more miscellaneous stuff on there too.
So what distro do you use for your server hosting? What things should I consider when picking a distro?
Snaps are meant for server applications
That's a frightening statement. I don't work in secret-squirrel shit these days, but I do private-squirrel stuff, and snaps are just everything our security guys wake up at night to, screaming. Back when I ran security for a company, the entire idea would have been an insta-fuckno . Please, carefully reconsider the choices that put you in a position where snaps are the best answer.
This graph shows the market share of desktop operating systems in Norway based on over 5 billion monthly page views.StatCounter Global Stats
For me, I really want to get into niri, but the lack of XWayland support scares me (I know there’s solutions, but I don’t understand them yet).
Also, I stopped using Emacs (even though I love its design and philosophy with my whole heart) because it’s very slow, even as a daemon.
A scrollable-tiling Wayland compositor. Contribute to YaLTeR/niri development by creating an account on GitHub.GitHub
How to update BIOS on a system that only use Linux as OS.
Asking this because some clowns at Acer decided that they will only provide BIOS updates through Windows Update.
Edit: I'm not talking about installing the BIOS file. They don't even provide BIOS file in the first place.
geteilt von: discuss.tchncs.de/post/1937702…
[...] I announce that our move off of wlroots is now complete and MR 6608 is now merged.
I'd say, read Hyprland's responses linked elsewhere in this thread before making any hasty decisions.
It seems (but I'm not sure, to be clear), that it was a situation that got solved, and people are still hung up on it.
It's like that "but you fuck one sheep" joke.
Either self-hosted or cloud, I assume many of you keep a server around for personal things. And I'm curious about the cool stuff you've got running on your personal servers.
What services do you host? Any unique stuff? Do you interact with it through ssh, termux, web server?
You might like to search this community, and also \c\self_hosted, since this question gets asked a lot.
For me:
I created two things - CodeNotes (for snippets) and a lil' Weather app myself 'cause I didn't like what I found out there.
This isn't a gloat post. In fact, I was completely oblivious to this massive outage until I tried to check my bank balance and it wouldn't log in.
Apparently Visa Paywave, banks, some TV networks, EFTPOS, etc. have gone down. Flights have had to be cancelled as some airlines systems have also gone down. Gas stations and public transport systems inoperable. As well as numerous Windows systems and Microsoft services affected. (At least according to one of my local MSMs.)
Seems insane to me that one company's messed up update could cause so much global disruption and so many systems gone down :/ This is exactly why centralisation of services and large corporations gobbling up smaller companies and becoming behemoth services is so dangerous.
Latest Crowdstrike Update Issue: The issue seems widespread, affecting machines running various CrowdStrike sensor versions. CrowdStrike has acknowledged the problem and is currently investigating the cause.Moinak Pal (Times Now)
I isn't even a Linux vs Windows thing but a competent at your job vs don't know what the fuck you are doing thing. Critical systems are immutable and isolated or as close as reasonably possible. They don't do live updates of third party software and certainly not software that is running privileged and can crash the operating system.
I couldn't face working in corporate IT with this sort of bullshit going on.
A while back there was some debate about the Linux kernel dropping support for some very old GPUs. (I can't remember the exact models, but they were roughly from the late 90's)
It spurred a lot of discussion on how many years of hardware support is reasonable to expect.
I would like to hear y'alls views on this. What do you think is reasonable?
The fact that some people were mad that their 25 year old GPU wouldn't be officially supported by the latest Linux kernel seemed pretty silly to me. At that point, the machine is a vintage piece of tech history. Valuable in its own right, and very cool to keep alive, but I don't think it's unreasonable for the devs to drop it after two and a half decades.
I think for me, a 10 year minimum seems reasonable.
And obviously, much of this work is for little to no pay, so love and gratitude to all the devs that help keep this incredible community and ecosystem alive!
And don't forget to Pay for your free software!!!
i use 10 year old hardware and its pretty capable on linux
we reached a point of diminishing returns in the advance of this technology
I undertook a sizeable upgrade today, bringing a skylake era build into the 2020s with a 13th gen. All core components- memory, motherboard, GPU, everything must go... except the drives. We were nervous, my friend really felt we should reinstall. There was debate, and drama. Considerations and exceptions. No, I couldn't let my OS go. I have spent years tweaking and tuning, molding my ideal computing environment. We pushed forward.
Well I'm pleased to say it was mostly uneventful. The ethernet adapter was renamed causing misconfigured dhcp, but otherwise it booted right up like nothing happened. Sorry, linux is boring now.
I have tried Linux as a DD on and off for years but about a year ago I decided to commit to it no matter the cost. First with Mint, then Ubuntu and a few others sprinkled in briefly. Both are "mainstream" "beginner friendly" distros, right? I don't want anything too advanced, right?
Well, ubuntu recently updated and it broke my second monitor (Ubuntu detected it but the monitor had "no signal"). After trying to fix it for a week, I decided to wipe it and reinstall. No luck. I tried a few other distros that had the same issue and I started to wonder if it was a hardware issue but I tried a Windows PC and the monitor worked no problem.
Finally, just to see what would happen I tried a distro very very different than what I'm used to: Fedora (Kinoite). And not only did everything "just work" flawlessly, but it's so much faster and more polished than I ever knew Linux to be!
Credit where it's due, a lot of the polish is due to KDE plasma. I'd never strayed from Gnome because I'm not an expert and people recommend GNOME to Linux newbies because it's "simple" and "customizable" but WOW is KDE SO MUCH SIMPLER AND STILL CUSTOMIZEABLE. Gnome is only "simple" in that it doesn't allow you to do much via the GUI. With Fedora Kinode I think I needed to use the terminal maybe once during setup? With other distros I was constantly needed to use the terminal (yes its helped me learn Linux but that curve is STEEP).
The atomic updates are fantastic too. I have not crashed once in the two weeks of setup whereas before I would have a crash maybe 1-2 times per week.
I am FULLY prepared for the responses demanding to know what I did to make it crash and telling me how I was using it wrong blah blah blah but let me tell you, if you are experienced with Windows but want to learn Linux and getting frustrated by all the "beginner" distros that get recommended, do yourself a favor and try Fedora Kinoite!
edit: i am DYING at the number of "you're using it wrong" comments here. never change people.
On Monday, the Politico website published an analysis under the headline “Why has Elon Musk disappeared from the spotlight?” It found a sharp drop in the number of times that Trump posted about Musk on his Truth Social platform, from an average of four times a week in February and March to zero since the start of April.
In addition, White House officials no longer fill their social media feeds with Musk-related content. Reporters seldom ask about him at the White House press briefing. Members of Congress are giving his name a wide berth.
Musk seems to be taking the hint. This week, the Tesla chief executive confirmed that he had reduced his role as the unofficial head of the so-called “department of government efficiency” (Doge) to just two days a week, and will also cut his political spending substantially – the latest public signal that he is shifting his attention back to his business empire amid growing investor concerns.
The president’s billionaire backer was ever-present at the start of Trump’s term but is now pulling back from politics – and Republicans want to keep it that wayDavid Smith (The Guardian)
Top US marketing professor Scott Galloway says on Pivot podcast Tesla owner ‘has alienated his core demographic’Ramon Antonio Vargas (The Guardian)
I was walking home yesterday and I just happened to come across an HP LaserJet p2035n sitting by the dumpster, waiting to be taken away. I've never owned a printer, but this thing looked like it came from an era when such devices were made to be reliable instead of forcing DRM-locked cartridges, so I picked it up and took it with me. After getting situated I started some online research and I figure this brand of printers was manufactured from about 2008-2012, and my printer has a 2012 date.
As it turns out, this tossed printer works perfectly fine. I plugged it into power and ran a test sheet, and it prints almost perfectly. I plugged it via USB-B into my PC running Fedora 41 and immediately it gets picked up and added as usable printer. I then plugged the printer into its Ethernet port and fortunately this thing is new enough to have Bonjour (i.e. mdns) services so once again my PC just immediately finds it and can print. Awesome!
My laptop is a MacBook. While it did detect the printer over the network, it couldn't add the printer because it couldn't find a driver to operate it. I honestly don't understand why that's a problem since I assume macOS also uses CUPS just like Linux. But at any rate, I found the solution:
With CUPS on Linux I can share the printer. After configuring firewall-cmd to allow the ipp service now my iPhone and my MacBook can also print to the shared printer using the generic PostScript driver. So, in conclusion, Linux helped me 1) use this printer with no additional effort of installing drivers, 2) share this printer to devices which were not plug-and-play ready, and 3) print pics of Goku and Vegeta. As always, I love Linux.
You can download Gutenprint on MacOS. An old friend was in such case, no driver for its rather old printer. I downloaded and installed the latest Gutenprint driver package, and it worked like a charm.
After Qualcomm introduced its Snapdragon X processor family last year, nearly every major PC maker introduced one or more laptops that would use a Snapdragon X series processor. But it’s been harder to find desktop computers using the chips. Lenovo and GEEKOM have both introduced models, but for the most part they still seem to be listed as “coming soon” rather than available for […]
#computex2025 #miniPc #shuttle #shuttleNanoAiMiniPcG1 #snapdragonX
Read more: liliputing.com/shuttle-nano-ai…
GNU Taler begins operating in Switzerland, distributed by the Taler Operations AG. Gnu Taler aims to be a “digital wallet” and has been used by the swiss national bank as well as the european national bank as a example for how a digital currency handed out by the state could work. It aims to be as privacy preserving as cash for the buyer while not allowing the seller to evade taxes.
Currently the Taler is brought out by a special organisation, the “Taler Operations AG”, and not the national bank, although both the national bank as well as the Taler Team have shown interest in a official digial currency by the national bank based on the Taler. But we need to relativate as the national council has stated that the introduction of a digital currency would probably take relatively major legislative changes and therefore take a bit of time.
GNU Taler, the privacy-preserving digital payment system, is now Swiss ready.Sourav Rudra (It's FOSS News)
The ledger being public doesn't prevent illicit use, like darknet markets. They use mixers or onion routed payments.
In the context of this thread, the centralized exchange is Taler Operations AG.
Taler offers anonymity for consumers but not for merchants. Every transaction everywhere - including Taler - has a sender and receiver.
Sorry if this is rude, but you are spreading misinformation, not knowledge.
Excuse me but what did I write that's misinformation? I wasn't describing Taler, I was describing bitcoin / crypto. Nothing I said was incorrect, and I was correcting your own misinformation (Mind you it's not your fault that you were misinformed and I don't think you were doing so intentionally, it's easy to pick up misinformation about unpopular subjects because people are more likely to take facts at face value).
Regarding mixers, I have a friend in US gov that says they're not immune to targeted investigation. You can hide in them only until you catch institutional attention, wherein they have a big enough database of inputs and outputs to simply know who you are. However apparently Monero is truly a pain in their ass.
And saying "a ledger is public doesn't protect it from illicit use" is kind of silly seeing as you can use any currency for illicit use if you want. What matters is if you can be caught, and its extremely easy to be caught doing something illicit if you do it with bitcoin as the transaction history is right there in front of the world.
Lucy :3
in reply to mbirth • • •Extremist right-wing party. With substantial parts legally being called Nazis.
Explains itself.
It's not. "Many people", aka. AfD supporters and the AfD themselves.
(The original toot, translated from german)
Thing is, all contents were openly collected and sorted by 3rd parties already. The report is as relevant to anyone aware of any politics as the Principia Mathematica's Section 54.43 is for thinking humans in order to prove that 1+1=2. The only usefulness lies in AfD supporters being unable to deny the obvious.
like this
TribblesBestFriend, recursive_recursion they/them, Paid_in_cheese, Cas, Agent Karyo, L3ft_F13ld!, SammyJK, flamingos-cant and Krafting like this.
mbirth doesn't like this.
mbirth
in reply to Lucy :3 • • •These are quite some mental gymnastics going from my toot:
(Correctly translated, btw.)
to:
Wow! Just wow! You should sign up as a moderator on mastodon.social. You'd fit right in.
N3M likes this.
don't like this
Cas, L3ft_F13ld!, SammyJK and haui don't like this.
InfiniteHench
in reply to mbirth • • •kudra likes this.
Lucy :3
in reply to InfiniteHench • • •If you want a more complete list, check the mentioned "secret report" in readable form here, or in original form (hand scanned from paper as to be expected by an official german government body in 2025): part A and part B. The original leaker article is actually largely hidden behind a paywall (cicero.de/innenpolitik/cicero-…). And it's 02:00 CET so i'm not gonna search for the original direct links to the files.
Edit: first link being an old version, other two links being the recent version. Both reports being relevant though.
Cicero veröffentlicht das gesamte Geheimgutachten des Verfassungsschutzes zur AfD | Cicero Online
Mathias Brodkorb (Cicero Online)Walk_blesseD likes this.
Jake Farm
in reply to Lucy :3 • • •like this
SammyJK likes this.
Lucy :3
in reply to Jake Farm • • •AfD-Politiker Höcke wegen NS-Parole zu Geldstrafe verurteilt
tagesschau.delike this
Cas, SammyJK and flamingos-cant like this.
Jake Farm
in reply to Lucy :3 • • •Lucy :3
in reply to Jake Farm • • •Jup.
Mac likes this.
mbirth
in reply to Lucy :3 • • •That slogan was originally coined in 1848 by King Ludwig I. But as with many things, the nazis severely tainted it. (Even though it was used by the socialist party after WWII, too.)
There’s a whole German Wikipedia article about this.
Parole, hauptsächlich bekannt durch ihre Verwendung der Sturmabteilung (SA)
Autoren der Wikimedia-Projekte (Wikimedia Foundation, Inc.)Mac likes this.
Nanook
in reply to mbirth • •like this
mbirth likes this.
Paid_in_cheese
in reply to mbirth • • •Being limited isn't that big a deal. My instance has them limited because of their lax moderation and an excess of reply guys. All it means is that I get a notification saying "Someone you might know sent you a notification" and I get to review and accept or deny the notification depending. Plus they have to request permission to follow me so I get to check them out before accepting.
I still have tons of mutuals on
.social
and I get new ones all the time. While each person making the choice about whether to accept notifications or follows from a particular user is going to make their own choices, I don't think it's particularly inconvenient.::: spoiler AfD sidebar
For their lack of adequate moderation capacity / interest,
.social
has one topic they tend to over-react to. AfD sympathizing isn't that one thing. Not to suggest they're right here. I'd need the thread context and a better understanding of German to weigh in on that. Moderators are human and they're going to make a bad call eventually. I'm not in a position to guess whether they made a bad call here. AfD aren't just some normal political party, though.:::
L3ft_F13ld! likes this.
mbirth
in reply to Paid_in_cheese • • •