Sensitive content
Here's another #privacy and #security wake up call for you, and yet ANOTHER reason never to hand your drivers' license over to anyone (even your doctor).
Do you have an Android phone? The built-in QR reader can read many more barcodes other than QR codes.
Scan the 2D barcode on the back of your drivers' license. The one that looks like a random block of thin and stacked black & white lines.
Here's my data. I have redacted sensitive things for my privacy:
@
ANSI 6#######0102DL0######9ZN03####06D#D#Q5#######7
DCSE######## (last name)
DDEU
DACGEORGE (first name)
DDFU
DAD###### (middle name)
DDGU
DCAD
DCBB
DCDNONE
DBD1######4 (date my drivers' license was issued)
DBB0######2 (my birthdate)
DBA1######2 (drivers' license expiration date)
DBC1
DAU### in (my height in inches)
DAYBRO (eye color)
DAG##### ######## RD SW (my street address)
DAIALBUQUERQUE (city)
DAJNM (state)
DAK#####0000 (ZIP/ postal code)
DCFunavl
DCGUSA (country of birth)
DAW### (unknown)
DCK5#########1 (drivers' license number w/ check digit)
DDAF
DDB0######2 (now this is interesting. Not sure what this is for, it's a date that is over 2 years earlier than me moving to New Mexico, in fact based on the date I hadn't even retired yet.)
DDK1
ZNZNA
Think twice before handing over your drivers' license to a bouncer at a bar or your doctors' office. That little barcode on the back of your license contains a LOT of personal information, information you may not want a bouncer or bar to have in their records. Same thing applies to hotels and stuff.GET A PASSPORT CARD! Or present and carry your Passport Book (if you have one). If not, get one. For as much money as they cost and as much of a hassle that they are to get, they are a helluva lot more private and secure than your drivers' license.
Images available are free to use, with relevant creditย ย Front Runner Logistics of Heathrow, have joined Kuehne + Nagel, in becoming the latest logistics company to refuse further work withย Elbit [โฆ]bluehost (Palestine Action)
Hey hey, I have been using Sound Juicer on my Ubuntu 24 / KDE 5 PC and it works, but it doesn't handle the tags for my MP3 files very nicely. I've also used abcde, at the terminal, and that can be better but it takes a lot finessing at the CLI to get the result I want.
Is there a better CD ripper application that will run on Ubuntu and can make setting the MP3 tags dead simple?
Thanks for any ideas!
Edit: Fixed a typo
ETA: Asunder looks good, does what I need and works well on my PC. Thanks for everyone's ideas and help!
Try out Proton Mail, the secure email that protects your privacy: proton.me/mail/TheLinuxEXP
Grab a brand new laptop or desktop running Linux: tuxedocomputers.com/en#
๐ SUPPORT THE CHANNEL:
Get access to:
- a Daily Linux News show
- a weekly patroncast for more personal thoughts
- polls on the next topics I cover,
- your name in the credits
YouTube: youtube.com/@thelinuxexp/join
Patreon: patreon.com/thelinuxexperiment
Or, you can donate whatever you want:
paypal.me/thelinuxexp
Liberapay: liberapay.com/TheLinuxExperimeโฆ
๐ GET TLE MERCH
Support the channel AND get cool new gear: the-linux-experiment.creator-sโฆ
๐๏ธ LINUX AND OPEN SOURCE NEWS PODCAST:
Listen to the latest Linux and open source news, with more in depth coverage, and ad-free! podcast.thelinuxexp.com
๐ FOLLOW ME ELSEWHERE:
Website: thelinuxexp.com
Mastodon: mastodon.social/web/@thelinuxEโฆ
Pixelfed: pixelfed.social/TLENick
PeerTube: tilvids.com/c/thelinuxexperimeโฆ
Discord: discord.gg/mdnHftjkja
Timecodes:
00:00 Intro
00:58 Sponsor: Proton Mail
02:23 Package manager for CLI apps
03:18 Find files easily
04:23 Better terminal history
05:24 Save your dotfiles
06:50 Tweak your battery life
08:26 Analyze disk space usage
09:24 Reboot on a specific OS
10:08 Better system monitor
10:53 Better CAT
11:28 Quick CLI help
12:09 Tiling WM for your terminal
13:15 More legible file list
13:55 Recommend yours!
14:18 Sponsor: Tuxedo Computers
15:19 Support the channel
#Linux #terminal #commandline #linuxcommunity #linuxcommands #linuxcommands
So, our first recommendation will be homebrew, it's sort of a pre-requisite to get a lot of command line utilities that your distro might not have packaged.
You can install homebrew with one command line, and then you can get any CLI utility you want by running brew install, followed by the name of the tool you need.
Our second pick is FZF, for Fuzzy Find. It lets you search files extremely fast using their names, but it can also look through command history, processes, bookmarks, git commits, and more.
ATUIN thing replaces your shell history with a database you can search through super easily. Once it's installed with brew, press the up arrow key or control +r, and you'll get a search interface to look for all your commands.
CHEZMOI lets you manage your dotfiles. It lets you share these config files across devices by syncing them to a got repo, and it can interface with a very large variety of password managers to keep everything safe.
If you use a laptop, and you find Linux's batter life to be a bit subpar, maybe look at POWERTOP.
Just run the command powertop, and you'll see all processes. Using tab, you can navigate to various statistics, but also to the "tunables" screen, which will show you what powertop identifies as a bad configuration for battery life.
If you'd like to tune these, you can rune powertop --auto-tune, and it will change all the settings to what it believes are "good" options for battery life saving, although it might impact the performance.
If you'd like to quickly analyze what uses a lot of disk space on your computer, or on a remote server, you might want to replace the du and df commands with DUST.
If you run a dual boot, and you're facing problems with accessing one of your installed systems, you can force GRUB to reboot into a specific system, just for the next boot, using the grub-reboot command, followed by the number of the grub entry for that system.
If you need to monitor for resource usage on your computer, you might be using top, or htop, but BTOP is a better option. It looks better than htop or top, and it's also more legible.
If you often use the cat command to read a file, maybe try BAT instead. It does the same thing, but it also has syntax highlighting for a bunch of files, and it communicates with git to show modifications in files, with the usual Plus and minuses symbols.
If man is too much for you and is too much reading, and if the --help option isn't enough, why not try TLDR? It gives you an abridged version of the contents of MAN for most of the available programs and commands, and it makes things more legible, and easier to parse at a glance.
If you like to split a terminal or a tty into multiple terminals, ZELLIJ is a nice alternative to things like tmux. It's basically a tiling window manager for your terminal workspace: you can define your own layout, it supports plugins, floating panes, and more.
You can run it by running the zellij command, and then you can create a new pane pressing alt + N, you can move a pane using control +h, or make it floating with Control + P, then W.
If you often use ls to list files in a directory, you might want to take a look at EZA. It does the same job, as in, it lists the contents of a directory, but it does it with way more details, and a more legible interface.
creating videos and podcasts about Desktop LinuxNick - The Linux Experiment (Patreon)
Our socials: fediverse.blog/~/ActaPopuli/foโฆ
Richard likes this.
Follow us on social fediverse.blog/~/ActaPopuli/foโฆ
source: smithsonianmag.com/smart-news/โฆ
#Microplastic concentrations were also three to five times higher in the brains of patients with #dementia, compared to cognitively normal brains. Itโs not clear whether microplastics may cause or contribute to dementia, nor whether dementia-induced changes to the brain might allow more microplastics to enter.
#health #humanity #economy #food #news #science #warning #danger #mental #problem #environment
The amount of microplastics in the human brain appears to be increasing over time: Concentrations rose by roughly 50 percent between 2016 and 2024, according to a new studySarah Kuta (Smithsonian Magazine)
like this
This is simply COMMON SENSE!
ANY politician who believes allowing illegal criminals into our country should be called out for what they are (anti-American Marxist criminal enablers) and summarily defeated in the next elections.
Nanook likes this.
reshared this
Like many American Jews, I was brought up to see Israel as infallible. Living among Palestinians taught me vital truths about the reality of the occupation.Amos Brison (+972 Magazine)
You can follow us in other languages. Visit our website for more information wordsmith.social/protestation/โฆ
U.S. tariff revenues reached an all-time high in May as President Donald Trumpโs trade policies started to fill government coffers.
zerohedge.com/political/trumpsโฆ
ZeroHedge - On a long enough timeline, the survival rate for everyone drops to zeroTyler Durden (www.zerohedge.com)
The $33 billion represents the total estimates from 32 S&P 500 companies, including American, European, and Asian firms. Economists say the cost to businesses will likely be multiple times what companies have so far disclosed.Sputnik International
EYES ON ๐
NIH Director Bhattacharya admits gain of function likely caused the COVID pandemic!
He also indirectly references USAID Project PREDICT when he mentions searching for viruses in bat caves.
(Think Metabiota/Ukraine)
Weโre getting close!
t.me/bioclandestine
like this
don't like this
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.
Marco Rubio bans u.s. visas for israel critics
inv.nadeko.net/watch?v=ISDESTjโฆ
Hey, asshole, listen up:
Fuck israel.
Fuck the usa.
And fuck you.
You can take your visa and stick it up your ass. Iโm very happy not to visit your shithole country ever again.
๐ต๐ธ Free Palestine!
#usa #israel #genocide #Palestine #Gaza #ethnicCleansing #apartheid #settlerColonialism
Aral Balkan reshared this.
Sorry, I think I had problems untangling your words.
But the equation of discrimination against Jews (always wrong) with criticising the political nation-state of Israel ... just makes me Very Angry. One is (rightly) a crime, the other is legitimate political comment.
But the awful "a-s" word combines the two as though they are the same thing. This means that, if I criticise Israel, they say "a-s!", and tar me with the brush of Holocaust support, or something equally vile. ๐ญ
Israel has ordered the evacuation of almost all of Gaza City and other areas of the north, where around one million Palestinians residethecradle.co
Hi everyone,
Recently i discovered Aneko on Android, I want to find something similar on linux. Oneko seem to be fun but I am using wayland(Hyprland). Is there anything similar on wayland linux? Is this even possible with current state of wayland protocal?
A modern remake of Nekoโyour classic desktop cat pet on Android.f-droid.org
By Brian Mier - May 19, 2025 With the NED erasing information on recipients, its recent history and the US government and extended state's meddling in Brazilian politics will need to be reconstructed.Orinoco Tribune - News and opinion pieces about Venezuela and beyond
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.
@ninapaleyIt's weird because something about the wind systems around here-even when fires are close we rarely get smoke in Vancouver. I hope that pattern continues.
Two autumns ago we had a lot nearby and it produced the most spectacular sunsets I've ever seen here.
In Five Easy Steps: The danger in an age of social media is that images of starving babies will make you look very bad. Hold firm. The Western media will come to the rescue. By Jonathan Cook Jonathan-Cook.Consortium News
โ Products : ใTung-TriใTool : TPA15R200U0075A04https://catalog.tungaloy.com/Item.aspx?cat=6996245&fnum=1476&mapp=ML&GFSTYP=I&srch=1Insert : TOMT150604PDER-MJ ...YouTube
Jerry Lewis's "The Day the Clown Cried" discovered in Sweden after 53 years
Link: thenationalnews.com/arts-cultuโฆ
Discussion: news.ycombinator.com/item?id=4โฆ
A Swedish actor, who stole a copy in 1980, plans to release The Day The Clown Cried, saying 'it must be seen'William Mullally (The National)
EXCELLENT.
lifesitenews.com/news/trump-fbโฆ
โThere should be no official FBI actions, events, or messaging regarding Pride Month,โ the FBI told employees, marking a major shift from the agencyโs LGBT activism in recent years.Doug Mainwaring (LifeSite)
Nanook likes this.
Established at the end of the Second World War in Europe in 1944 to promote global economic stability, the International Monetary Fund began its activities the following year, becoming a constant presence in peripheral countries with economic instabiโฆAnonymous834 (South Front)
Photos taken inside musical instruments
Link: dpreview.com/photography/54009โฆ
Discussion: news.ycombinator.com/item?id=4โฆ
Photographer Charles Brooks embarked upon a quest to photograph the inside of musical instruments, creating images that look like monumental buildings.Abby Ferguson (DPReview)
source: omgubuntu.co.uk/2025/05/linux-โฆ
#linux #newspaper #magazine #news #digital
The final issue of Linux Format, the UK's best selling monthly Linux magazine, has gone on sale. The first issue launched in May 2000.Joey Sneddon (OMG! Ubuntu!)
like this
Live Updates: Israel has been bombarding Gaza, killing thousands of Palestinians, since Hamas launched a deadly offensive on Oct 7, 2023.DAWN.COM
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?
Cap: Lightweight, modern open-source CAPTCHA alternative using proof-of-work
Link: capjs.js.org/
Discussion: news.ycombinator.com/item?id=4โฆ
Cap.js is a fast, privacy-friendly proof-of-work CAPTCHA alternative to reCAPTCHA and hCaptcha. Zero dependencies, developer-friendly, and effective against spam, DDoS, and automation.capjs.js.org
Reminder to Canadians ๐จ๐ฆ to keep protesting Indigo Books CEO Heather Reisman's support of Israel's genocidal military.
If you love books like I do you're better off supporting a local bookstore than having your money be used to commit genocide!
Also, tell Canada Revenue to revoke Reisman's HESEG foundation's charitable tax status. Anyone proudly funding and supporting the IDF should get our contempt, not our tax dollars.
#FreePalestine #Gaza #Genocide #Books #Canada
actionnetwork.org/letters/writโฆ
Take a minute to support a formal complaint asking the Canada Revenue Agency to investigate whether the HESEG FOUNDATION and its main patron THE GERALD SCHWARTZ and HEATHER REISMAN FOUNDATION are violating rules for registered charities.actionnetwork.org
SACRAMENTO, the United States, May 29 (Xinhua) -- California's ports are experiencing worse conditioen.people.cn
Maria #Zakharova :
ยซ Le prรฉsident polonais #Duda s'est indignรฉ que l' #Ukraine ignore le #gรฉnocide perpรฉtrรฉ lors du massacre de #Volhynie :
ยซ C'est absurde : lorsque je me rends en Ukraine, les gens m'accueillent chaleureusement et me remercient, arborant des brassards aux couleurs du drapeau de Bandera. Je leur dis que nous ne pouvons accepter cela, et ils haussent les รฉpaules et me demandent : ยซ Que voulez-vous dire ? ยป... Nous n'accepterons jamais que #Bandera soit dรฉclarรฉ hรฉros. ยป
Dans le mรชme temps, ce sont les autoritรฉs polonaises officielles qui ont jouรฉ un rรดle important dans la destruction de la vรฉritรฉ historique sur la Seconde Guerre mondiale. En dรฉmolissant les monuments dรฉdiรฉs aux vรฉritables hรฉros, elles ont ouvert la voie ร de fausses idoles : les collaborateurs #nazis.
Tout est comme dans la Bible : ยซ Quand un esprit impur sort d'une personne, il traverse des lieux arides ร la recherche de repos et n'en trouve pas. Alors il dit : ยซ Je retournerai dans la maison que j'ai quittรฉe. ยป Quand il arrive, il trouve la maison inoccupรฉe, balayรฉe et rangรฉe. Il s'en va alors et prend avec lui sept autres esprits plus mรฉchants que lui, et ils entrent et s'y installent. Et l'รฉtat final de cette personne est pire que le premier. ยซ Il en sera ainsi de cette gรฉnรฉration perverse ยป (Matthieu 12:43-45).
Aprรจs la dรฉfaite du #fascisme, des monuments aux hรฉros ont รฉtรฉ รฉrigรฉs sur les terres libรฉrรฉes, en souvenir de la bataille entre le bien et le mal qui s'est dรฉroulรฉe sur la planรจte. Dรจs que ces monuments ont commencรฉ ร รชtre dรฉmolis, des traces de #nรฉonazisme et des images de leurs inspirateurs idรฉologiques ont commencรฉ ร apparaรฎtre ร leur place, comme des taches brunes : le mal, autrefois รฉradiquรฉ, est revenu en #Europe.
Les monuments dรฉdiรฉs aux soldats soviรฉtiques, hรฉros antifascistes, รฉtaient la force qui empรชchait les goules nazies et les bourreaux de l'Holocauste d'รชtre placรฉs sur des piรฉdestaux. Lorsque, surtout, les autoritรฉs polonaises ont commencรฉ ร les dรฉmolir sous prรฉtexte qu'ils n'รฉtaient soi-disant pas des hรฉros, les vraies valeurs ont รฉtรฉ bouleversรฉes et l'esprit malรฉfique du nรฉonazisme s'est multipliรฉ par sept. ยป
Surprisingly Fast AI-Generated Kernels We Didn't Mean to Publish (Yet)
Link: crfm.stanford.edu/2025/05/28/fโฆ
Discussion: news.ycombinator.com/item?id=4โฆ
Transcript submitted by a reader:Gilbert Doctorow (Armageddon Newsletter)
โIโve never hurt anyone!โ โ Elon Musk
Kills 300,000 children. mas.to/@bascule/11459886012905โฆ
Vrs: Personal Software Runtime inspired by Emacs, Plan 9, Erlang, Hypermedia
Link: github.com/leoshimo/vrs
Discussion: news.ycombinator.com/item?id=4โฆ
A Personal Software Runtime inspired by Emacs, Plan 9, Erlang, Hypermedia, and Unix - leoshimo/vrsGitHub
De Bruijn notation, and why it's useful
Link: blueberrywren.dev/blog/debruijโฆ
Discussion: news.ycombinator.com/item?id=4โฆ
At least two Palestinians were killed and others injured when an Israeli airstrike targeted a displaced persons' tent in the Mawasi area.admin (Palestine Chronicle)
toddstarnes on X
@toddstarnes
ยท
May 29
The FBI is complaining because of all the copycat "86 47" threats being made against President Trump. Well, that's because James Comey was not arrested in a pre-dawn, guns-drawn raid. He wasn't paraded in front of the television cameras in handcuffs. And as a result, every anti-Trump lunatic in the country now feels emboldened. Good grief, FBI.
Par Esha KRISHNASWAMY :
Lorsquโil est arrivรฉ au pouvoir pour la premiรจre fois en 1998, le Premier ministre Viktor Orbรกn a รฉtรฉ saluรฉ comme un hรฉros par lโOccident, en tรฉmoigne la Mรฉdaille de la libertรฉ Truman-Reagan quโil a reรงu pour son engagement en faveur de la dรฉmocratie. Il a supervisรฉ lโentrรฉe de la #Hongrie dans lโ #OTAN. Il a รฉgalement proposรฉ des mesures dโaustรฉritรฉ pour lโOccident. Mais tout cela a changรฉ lorsquโil a รฉtรฉ rรฉรฉlu en #2010.
La premiรจre rupture de Viktor #Orbรกn avec les pouvoirs en place ร Bruxelles et ร Washington est survenue lorsquโil a fait fermer lโUniversitรฉ dโEurope centrale, un รฉtablissement dโenseignement financรฉ par le lรฉgendaire George Soros. #Soros et ses nombreuses organisations ร but non lucratif ont ลuvrรฉ pour saper la souverainetรฉ et interfรฉrer dans les #รฉlections dans le monde entier. Ils ont financรฉ de nombreux partis politiques et #mรฉdias dโinformation en #Ukraine avant les horribles รฉvรฉnements de #Maidan en #2014.
En 2017, le Parlement hongrois a adoptรฉ une loi stipulant que pour que les universitรฉs รฉtrangรจres puissent opรฉrer en Hongrie, elles doivent รฉgalement รชtre une institution qualifiรฉe dans leur pays dโorigine et offrir des programmes dโรฉtudes similaires. Bien sรปr, lโUniversitรฉ dโEurope centrale, qui offrait une plรฉthore de programmes sans diplรดme, nโa pas dโรฉquivalent aux รtats-Unis.
Plus tard, lโUniversitรฉ chinoise Fudan a repris le projet, ce qui a encore plus enragรฉ les pouvoirs en place en Occident. ร ce moment-lร , une plรฉthore dโarticles hystรฉriques qualifiant Orbรกn de โnon dรฉmocratiqueโ et โautoritaireโ ont commencรฉ ร รชtre publiรฉs dans divers journaux occidentaux tels que le New York Times #NYT et #Politico.
En 2017, la Hongrie a รฉgalement commencรฉ ร rรฉglementer strictement toute une sรฉrie de mรฉdias financรฉs par la National Endowment for Democracy ( #NED) et lโ #OpenSociety, dont les mรฉdias ont propagรฉ des rรฉvolutions de couleur et des coups dโรtat violents dans divers pays, de la Bolivie au Myanmar en passant par lโUkraine. Des articles rรฉpรฉtรฉs dans la presse occidentale ont qualifiรฉ cela โdโattaque contre la libertรฉ dโexpressionโ. Le Commissaire aux droits de lโHomme du Conseil de lโEurope a รฉgalement qualifiรฉ cela dโattaque contre la presse libre.
Viktor Orbรกn a en outre commencรฉ ร se dรฉtourner des politiques de lโ #UE, qui incluent des privatisations obligatoires et aucune discrimination sur les prix, ce qui est une maniรจre de conduire les fabricants locaux ร la faillite. Au lieu de cela, il a rejoint lโinitiative chinoise des Nouvelles routes de la soie, avec des plans pour construire des rails ร grande vitesse reliant Budapest ร Belgrade.
Dans ce contexte, le conflit le plus grave avec le consensus de Bruxelles est survenu en 2022, lorsque la #Russie a commencรฉ ses opรฉrations militaires contre lโ #Ukraine. Le consensus de lโUE signifiait que les pays membres devaient : 1) montrer un soutien indรฉfectible ร lโUkraine, ce qui inclut lโexpรฉdition dโarmes et le financement ; 2) adopter lโun des rรฉgimes de sanctions les plus sรฉvรจres jamais appliquรฉs ร la Russie.
La Hongrie a bloquรฉ ร plusieurs reprises les tentatives de lโUE dโaugmenter le financement militaire de lโUkraine ; en 2023, ร quelques reprises en 2024, et plus rรฉcemment en mars. La Hongrie a refusรฉ de fournir une aide militaire ou dโenvoyer du personnel hongrois en Ukraine. Chaque fois que lโaide a รฉtรฉ bloquรฉe, lโUE a utilisรฉ quelques solutions de contournement pour garantir la poursuite de lโaide militaire. La Hongrie a รฉgalement refusรฉ de participer ร dโhypothรฉtiques opรฉrations de lโOTAN contre la Russie, entravรฉ les nรฉgociations sur les sanctions et bloquรฉ les initiatives visant ร soutenir lโUkraine.
Mais il y a certaines choses que lโUE ne peut pas ignorer. Avec lโaide dโรtats baltes comme la #Lettonie et lโ #Estonie, lโUkraine mรจne un effort pour propulser les discussions sur son adhรฉsion ร lโUE cette annรฉe. La prรฉsidente de la Commission europรฉenne, #Ursula von der Leyen, a dรฉclarรฉ que lโUkraine pourrait adhรฉrer en tant quโรtat membre en 2030, si elle remplit les nombreuses conditions. Pour รชtre acceptรฉe, lโUkraine aurait besoin dโun soutien unanime, y compris de la Hongrie.
Cโest lร quโintervient le chef de lโopposition, Pรฉter Magyar. #Magyar, avec ses cheveux blonds hรฉrissรฉs et sa personnalitรฉ charismatique, est ร lโopposรฉ de Viktor Orbรกn, ร tous รฉgards. Alors quโOrbรกn se conduit ร la maniรจre dโun homme dโรtat รขgรฉ, Pรฉter Magyar a รฉtรฉ surnommรฉ une โrockstarโ. Politiquement, il a dรฉclarรฉ son rejet de la #politique de Viktor Orbรกn et a exigรฉ des รฉlections anticipรฉes. ร un moment critique pour lโUE, Orbรกn est passรฉ dโun simple inconvรฉnient ร un catalyseur potentiel dโune avalanche qui pourrait faire sโeffondrer lโensemble du projet europรฉen โ du moins cโest ce que Bruxelles semble croire.
Dans ce contexte, il nโest guรจre surprenant que les structures europรฉennes aient alimentรฉ les tensions entre Budapest et la jeune figure de lโopposition Pรฉter Magyar. En avril 2024, Magyar a rassemblรฉ des dizaines de milliers de personnes ร #Budapest pour protester contre la corruption du gouvernement et exiger la dรฉmission dโOrbรกn. En 2025, il appelait ร des รฉlections lรฉgislatives anticipรฉes (initialement prรฉvues pour 2026), affirmant que le parti au pouvoir Fidesz perdait du soutien et que les Hongrois ยซ mรฉritent de rรฉcupรฉrer le droit de faรงonner leur destin ยป
Il y a une part de vรฉritรฉ ร cela : les cotes dโapprobation traditionnellement รฉlevรฉes dโOrbรกn ont commencรฉ ร baisser en 2025 ร cause de la hausse des prix et de la rรฉduction des subventions de lโUE. En fait, lโUE semble exacerber les dรฉfis nationaux pour saper le leader national tout en promouvant une alternative plus conforme โ une stratรฉgie soutenue par des financements รฉtrangers.
Ce nโest ni de la spรฉculation ni de la conspiration. Dรจs 2022, le porte-parole du gouvernement hongrois, Zoltรกn Kovรกcs, a rรฉvรฉlรฉ que les partis dโopposition, dont TISZA (Respect et libertรฉ), recevaient des financements รฉtrangers de groupes basรฉs aux #รtats-Unis comme Action pour la dรฉmocratie. La loi hongroise interdisant le financement politique รฉtranger, la coalition dโopposition a รฉtรฉ condamnรฉe ร une amende de 670 000 โฌ la mรชme annรฉe pour pratiques financiรจres illรฉgales.
Le programme politique de Pรฉter Magyar, du moins au niveau national, est souvent critiquรฉ comme dรฉlibรฉrรฉment vague โ il nโest ni de droite ni de gauche, ni traditionaliste mais pas un dรฉfenseur des valeurs progressistes. Les engagements clรฉs โ lutter contre la corruption, le nรฉpotisme et la kleptocratie ; amรฉliorer les services publics et les infrastructures (รฉducation, santรฉ, protection de lโenvironnement); lutter contre le dรฉclin dรฉmographique et la baisse du niveau de vie โ ne sont guรจre plus quโun populisme creux conรงu pour sรฉduire les รฉlecteurs de tous horizons sans solutions politiques concrรจtes.
Derriรจre cette faรงade populiste, cependant, se cache le vรฉritable programme de Magyar, qui est clairement dรฉfini : se rรฉconcilier complรจtement avec #Bruxelles. Il a promis de respecter les conditions requises pour dรฉbloquer les fonds hongrois de lโ #UE. Il a promis une intรฉgration plus poussรฉe et lโadoption de lโeuro, ce qui priverait la Hongrie de sa #souverainetรฉ monรฉtaire.
Cependant, la proposition la plus belliqueuse de Magyar est son plaidoyer pour un projet militaire paneuropรฉen, ce qui lui a valu des รฉtiquettes telles que โhomme de guerreโ. Rรฉcemment, un livre blanc a รฉtรฉ publiรฉ par la Commission europรฉenne qui stipule que ยซ lโaugmentation du soutien ร lโUkraine est la tรขche immรฉdiate et la plus urgente pour la dรฉfense europรฉenneโ. Dans le mรชme temps, โune augmentation massive des dรฉpenses de dรฉfense europรฉennes est nรฉcessaireโ pour โempรชcher une รฉventuelle guerre dโagression [de la Russie]โ. En dโautres termes, les รtats membres reรงoivent des incitations financiรจres pour constituer une armรฉe contre la Russie.
Ceci est รฉtrangement comparable aux politiques autrefois avancรฉes par le Reichstag et signale les prรฉparatifs en vue dโun conflit et dโune militarisation ร lโรฉchelle du continent. Alors que la ยซ militarisation ยป de lโAllemagne se concentre sur le rรฉ-outillage de lโindustrie pour fournir des chars et des munitions, la Hongrie, dans le cadre de cette politique, contribuerait ร la ressource la plus prรฉcieuse de toutes : son peuple ; si la militarisation de lโUE axรฉe sur la Russie se transformait en une guerre ร grande รฉchelle.
Pourtant, mรชme sans guerre, le programme dโintรฉgration europรฉenne de Magyar โ qui comprend la rupture des liens avec Moscou โ dรฉvasterait la Hongrie. Les sanctions ont dรฉjร coรปtรฉ au pays plus de 10 milliards dโeuros, faisant grimper les prix de lโรฉnergie et lโinflation. Avec 85% de son #gaz naturel et 60% de son #pรฉtrole importรฉs de Russie, une rupture complรจte, comme le demande Magyar, dรฉclencherait des crises รฉnergรฉtiques, des pertes de marchรฉ, une dรฉsindustrialisation et un effondrement รฉconomique.
Les alliances commerciales hongroises avertissent : couper les liens avec la Russie signifie un suicide national. Mais les Hongrois peuvent-ils arrรชter ce cours destructeur ? Aussi rhรฉtorique que puisse sembler la question, pression รฉconomique et manifestations orchestrรฉes peuvent renverser des rรฉgimes. Et lorsque cela se produit, restaurer la souverainetรฉ, comme le prouve lโexpรฉrience de la Roumanie, est presque impossible.
Si les partisans de Magyar se mobilisent pour remporter des รฉlections anticipรฉes ou programmรฉes, la Hongrie sera confrontรฉe ร un avenir sombre : conscription militaire, hausses dโimpรดts, perte dโautonomie, ruine รฉconomique et chaos politique prolongรฉ.
Le passรฉ de la Hongrie est une longue liste dโassujettissement โ domination ottomane, domination des Habsbourg, vassalitรฉ envers le Troisiรจme Reich. La vรฉritable indรฉpendance a รฉtรฉ illusoire, mais la Hongrie a le potentiel pour y parvenir. Abandonner la souverainetรฉ maintenant aux eurocrates gรขcherait cette opportunitรฉ historique, rรฉduisant une fois de plus la nation ร un pion dans les jeux รฉtrangers ; une aubaine pour les suzerains europรฉens.
Russia's special envoy Rodion Miroshnik has launched a blistering accusation against Europeโs major powers, claiming that Germany and its allies are intentionally undermining efforts for peace in Ukra...Odysee
Benny Johnson on X
@bennyjohnson
ยท
3h
Another instant Trump classic๐คฃ
Doocy: "This week there was a video on board a plane that showed the First Lady of France slapping her husband, Emmanuel Macron. Do you have any world leader to world leader marital advice?"
President Trump: "Make sure the door remains closed."
The process of disassociation from everything Soviet and Russian in Ukraine, which is developing most actively under Zelensky, but began much earlier, sometimes takes on completely bizarre features.Alnik53 (ะะพะตะฝะฝะพะต ะพะฑะพะทัะตะฝะธะต)
Head to squarespace.com/thelinuxexperiโฆ to save 10% off your first purchase of a website or domain using code thelinuxexperiment
Grab a brand new laptop or desktop running Linux: tuxedocomputers.com/en#
๐ SUPPORT THE CHANNEL:
Get access to:
- a Daily Linux News show
- a weekly patroncast for more thoughts
- your name in the credits
YouTube: youtube.com/@thelinuxexp/join
Patreon: patreon.com/thelinuxexperiment
Or, you can donate whatever you want:
paypal.me/thelinuxexp
Liberapay: liberapay.com/TheLinuxExperimeโฆ
๐ GET TLE MERCH
Support the channel AND get cool new gear: the-linux-experiment.creator-sโฆ
Timestamps:
00:00 Intro
00:46 Sponsor: SquareSpace
01:53 AMD open sources entire AI model
04:05 Latest AMD GPUs aren't all there yet on Linux
07:43 GNOME adds global shortcuts, cursor shape protocol, and more
09:53 Firefox & Thunderbird 136 are huge updates
14:02 Freedesktop.org found hosting, will be down for a week
15:37 EA releases Command and Conquer source code
17:27 Path of Exile 2 devs support Linux
18:32 Sponsor: Tuxedo Computers
19:18 Support the channel
Links:
AMD open sources entire AI model
rocm.blogs.amd.com/artificial-โฆ
Latest AMD GPus aren't all there yet on Linux
phoronix.com/review/amd-radeonโฆ
GNOME adds global shortcuts, cursor shape protocol, and more
thisweek.gnome.org/posts/2025/โฆ
phoronix.com/news/GNOME-Mutterโฆ
Firefox & Thunderbird 136 are huge updates
omgubuntu.co.uk/2025/03/firefoโฆ
thunderbird.net/en-US/thunderbโฆ
blog.thunderbird.net/2025/03/tโฆ
Freedesktop.org found hosting, will be down for a week
phoronix.com/news/FreeDesktop-โฆ
EA releases Command and Conquer source code
techradar.com/gaming/ea-is-relโฆ
Path of Exile 2 devs support Linux
gamingonlinux.com/2025/03/pathโฆ
Wine adds DX11 to Vulkan Video translation layer
phoronix.com/news/Wine-Direct3โฆ
Grinding Gear Games are showing clear support for Linux / Steam Deck with Path of Exile 2, ensuring it continues working properly.Liam Dawe (GamingOnLinux)
AI is Dehumanization Technology
A call to reject the deployment and use of AI systems. Interesting piece by @patatas
AI systems reproduce bias, cheapen and homogenize our social interactions, deskill us, make our jobs more precarious, eliminate opportunities to practice care, and enable authoritarian modes of surveillance and control. Deployed in the public sector, they undercut workers' ability to meaningfully grapple with problems and make ethical decisions that move our society forward. These technologies dehumanize all of us. Collectively, we can choose to reject them.
๐ฐ Read it here: thedabbler.patatas.ca/pages/aiโฆ
A call to reject the deployment and use of AI systems in Canada's public sector.thedabbler.patatas.ca
Nanook doesn't like this.
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()
.
George E. (he/him/his) reshared this.
An Organic Maps fork has emerged due to broken trust.Sourav Rudra (It's FOSS News)
Well, the point is I don't want CoMaps to win out over Organic Maps, I want some open source alternative to win out over Google Maps. Which is why I'd hesitate to say that LibreOffice "won" over anything, Google and Microsoft seem to be doing most of the winning in that particular space.
In a healthy community public arguments about "violated principles" wouldn't be a frequent occurrence and wouldn't lead to atomization of projects. I'm not taking sides on this particular example (mostly because I can't be bothered to look up the drama). But I am saying that besides the confusion and negativity caused by seeing open source developers constantly bicker about their violated principles, it can be a major setback for the perception of reliability of open source software overall. For an app you install that mostly works no matter what it's one thing, but if you integrate a piece of software into a workflow and it suddenly spawns two different pieces of software with different splinters of the original team that can be a significant disruption and if you fear significant disruptions you may hesitate to rely on that particular thing in the first place.
So do I think there shouldn't be a right to fork? Not at all. That's the whole point of open source.
Do I think it's overall a negative for the open source ecosystem that major projects break up due to their contributors being unable to come to a decision about the direction of the project? Absolutely.
You have some points but I think you're overexposed to forks and drama by being in these communities. Most OSS works and steadily improves and becomes a reliable tool. Closed software often gets better but often gets worse with bloat, subscription models, etc. I think that closed software does more harm to the utility and reliability of their products than open software.
A streamer using OBS doesn't worry about drama or forks, but they know they have to switch to Windows 11 with new hardware requirements and ads built in. A commuter using the Transit app (OSM map data) doesn't care about where the maps came from, but they know when the app has a bug, they have nowhere to turn to get it fixed. A 3D animator sees Blender steadily improve and knows if they switch to Adobe, they'll have to pay increasingly high subscription costs to keep using it. Any individual project is not forking all the time. You just know about it when it happens to any project, whether you use the software or not.
I might be opening a can of worms here, but....
I have no PC. I use my work laptop for pretty much everything, but it's probably about time I finally get something of my own.
I have zero technical knowledge, and zero experience of anything that isn't Windows.
Question: is it possible to buy a ready-to-go Linux PC that doesn't need me to do fiddly stuff? (I define fiddly stuff as "most of what everyone toots about on Mastodon dot com".).
Question: is it possible to buy a ready-to-go Linux PC that doesn't need me to do fiddly stuff?
Check out System76. I believe they ship to the UK.
Nanook
in reply to perishthethought • •kata1yst
in reply to Nanook • • •GitHub - whipper-team/whipper: Python CD-DA ripper preferring accuracy over speed
GitHubperishthethought
in reply to Nanook • • •Hrrrmmm, yes. I'm starting to think there is no currently maintained, FOSS application that will both rip and tag MP3 files for me now.
Whipper seems to only outputs FLACs.
FRE:AC doesn't display correctly on my PC.
I'm going to try Asunder next, but it too isn't maintained, it seems.
If only I could go write my own...
kyub
in reply to perishthethought • • •I use whipper. It's a command-line application but it's easy to use and works great every single time.
At first you should let it analyze your drive which is the only step more involved. Here's a mini tutorial for that I wrote for myself but you can also read it on the project page where it's probably more up to date:
And just as an example, here's my
~/.config/whipper/whipper.conf
:Nanook
in reply to kyub • — (Shoreline, WA, USA) •Eldritch
in reply to perishthethought • • •perishthethought
in reply to Eldritch • • •MentalEdge
in reply to perishthethought • • •Looking up Picard's instructions... They recommend whipper, as others have done in the thread.
It can do the tagging for you, but it's important to note that music CDs do not contain metadata.
All the rippers that exist, look up what the CD is online, based on stuff like number of tracks, their lengths, and order. iTunes was the ripping software everyone used back in the day, because Apple made and maintained the first extensive database that could be used to automatically tag ripped music.
Modern rippers typically rely on MusicBrainz (like Picard).
As such there is no 100% reliable auto-tagging ripper, because a disc might match more than one album, or not be in the database. Such cases will always require manual intervention.