


Just a regular Dutch guy doing what’s normal!





Cylinder you mean the one thats stands up in the middle
Yes they come in different lengths (and strengths) and I wanted a taller one because I’m tall.


Not exactly but sort of. What I have done is buy a moderately priced desk chair and then upgrade the cylinder and the wheels to much nicer ones. Makes a world of different.


I edit video on linux for years and I’m as normal as normal gets lol


I honestly haven’t checked if it all works — the AI kept telling me it compiled and the endpoints returned 200, so I’m gonna take its word for it.
I try be be an open minded guy but that’s where I stop reading. OP if you don’t care enough to even test it, why would I?
Altijd hetzelfde drama in het buitenland!
As a Dutch for me its quit simple. Where can I get coffee, beer, bread and groceries I can walk or cycle to


In my experience, big chain movie theaters in the US rarely show foreign language films. You got to an “art house” cinema to see those and then they are almost always in the original language with subtitles.
Most distros include a tool to convert or install packages from other formats. I’d look into that. I’ve never used Arch so unfortunately I can’t be more specific.
If you and your boyfriend’s wife are lesbians, why are you both in a relationship with a man?
I’ve never used that printer or Cachy OS. That being said, I don’t think installing HP printer software will help with an Epson printer.
Epson do have printer drivers for linux and you can look up your specific printer download here https://download-center.epson.com/search/


but according to guardian, “Bigotry” is really just a name for any opinion with which you happen to disagree.
Wow you totally misrepresented that link.
The linked article isn’t even about the meaning of the word bigot, its a debate between two people about whether a politician should use the word bigot.
One of the debaters asserts that “Bigotry is really just a name for any opinion with which you happen to disagree.” which is his personal opinion, not a statement by The Guardian.
The assertion is never supported, contradicts the dictionary, and isn’t shared by the other debater in the article.


Pay a bunch of simps to make posts all over about how they tried switching to linux and/or GIMP but it was too hard and broke all the time, claiming that open source is “just a hobby.”
I know this would be an Microsoft Propaganda post
Why not just use movim?
the microsoft version
I tried Windows once but literally nothing worked at all so I didn’t like that very much. I went back to DOS.


Full Fry-up Breakfast


If the naming of each series is that consistent, you could just use parameters in bash and build the new title out of it and then do the rename, in a loop. It would be a very short shell script.
eta: using printf to format the new title variable will let it handle the number formatting clearnly, like 01 for 1
eta: something like this
for f in *"Season "*; do s_ep="${f#*Season }"; s="${s_ep%% Episode*}"; ep_t="${s_ep#*Episode }"; ep="${ep_t%% - *}"; t="${ep_t#* - }"; printf -v new "S%02dE%02d - %s" "$s" "$ep" "$t"; mv "$f" "$new"; done