Back to Linux!

Ich hab mich letztens bei der LinuxHeld*innen-Aktion von LinuxGuides angemeldet und vor der Vorstellungsrunde versucht rauszufinden, wann ich eigtl. das erste Mal Linux benutzt hab.

Ich kann mich irgendwie erinnern zu Schulzeiten mal so eine Schachtel mit CDs oder so gehabt zu haben, kein Plan, ob das Knoppix war, … ne das war irgendwas von RedHat, wirklich benutzt hamwas aber nie.

2008 hab ich Linux / Ubuntu das erste Mal im Blog erwähnt, anscheinend Ubuntu 8.04 Hardy Heron. Aber schon 2009 ging’s dann zurück zum Mac, weil das T40 gestorben war. Ich weiß, dass ich dann zwischendurch immer mal wieder Ubuntu oder Linux mit auf ner Dual-Boot-Partition hatte aber auch als dann Wifi einigermaßen funzte waren externe Monitore, Grafikarten und Sleep-Modus immer noch kein Spaß (letzteres krieg ich auch 2025 mit keiner Distro auf Susis altem Dell hin) und ich habe mir lange eingeredet, dass ich Dank Adobe Creative Cloud (würg) und Unity-Plugins/-Assets (brech) halt MacOS / Windoge brauche.

Ich weiß garnicht mehr, was dann der Auslöser war* aber ich hab dann irgendwann auf Windoge angefangen mir Inkscape / Krita und Scribus beizubringen, das war nach 15+ Jahren Adobe-Software schon hart, aber ging. The Shadow (2023) hab ich auf jeden Fall mit Scribus gesetzt (und vorher 2021 das Storyboard dafür mit Krita / Inkscape gemacht) und aus der Zeit stammen auch die ersten Inkscape-Vektor-Arbeiten. Wann genau ich den Umstieg auf Linux gemacht habe weiß ich leider nicht mehr genau, wahrscheinlich so Ende 2022 / Anfang 2023? Ich hatte ja zweimal so Razer Blade-Laptops, auf denen ich auf jeden Fall tw. am Ende Fedora laufen hatte. Im März 2022 schreibe ich im Tagebuch, dass Valheim unter Linux nich so geil läuft, und im April 2023 gibt es einen Eintrag über Probleme mit externen Monitoren bei Fedora, dh das kommt einigermaßen hin. Bin dann Mitte / Ende 2024 auf Bazzite umgestiegen und das läuft absurd stabil.

So, ich hau das jetzt schnell raus, bevor es wieder in den Entwürfen verschwindet!

* Ich glaube, das war alles noch vor Adobe-AI-Rotz, Unity-Enshittification etc. Ich vermute, es war dieses „Dark Patterns und andere illegale Dinge (gab’s da nich sogar Gerichtsverfahren in den USA?), wenn du versuchst dein Abo zu kündigen“ bei Adobe?

Edit: Anscheinend hab ich aber z. B. 2013 auch hart mit Linux auf nem Macbook rumgenerdet. Und 2014 auch.

Fedicard

An illustration of a Magic – The Gathering style trading card showing an island at night saying „Temporary Respite > Birch Cove – Fantastic Landscape: It can be a cruel world out there, so stay a while, look at some pretty art, recharge and then go on changing it for the better.“ The card is surrounded by flowers and grass, a butterfly, a ladybug, a cup of coffee, drawing utensils as well as a small plate with nuts, chocolate and raspberries on it.

Hi! Remember #FediCard? I decided to make an illustration around one, way after it was cool and then kinda lost steam … But since it’s theme seems to only getting more relevant I decided to post it anyway in all it’s unfinished glory ^__^

I’ve long struggled with my art not being deep or political enough and while I do see a worth in giving people the chance of not thinking about terrible events for a second it still feels not enough …

Emoji by #OpenMoji

#JfmlArt #art #illustration #creative #DigitalArt #FediArt #MastoArt #CreativeToots #ArtWithOpenSource #ArtistsOnMastodon #Inkscape #coffee #relax #nature #flowers #holiday #chocolate #nuts #island #night #moon #drawing #butterfly #ladybug #diablo

How to import meshes as .res to Godot from Blender

The excellent Spatial-Gardener Addon for Godot needs it’s assets to be .res files and one way to do that from Blender (or probably any 3D-object) in Godot is:

The object should probably a single mesh (ctrl-j in Blender), export it as a .obj (probably optional but easy to just export the single mesh that way).

Select file in Godot’s file browser, in the „Import“ options tab (up left a tab next to the Scene tree view), change „Import As“ to „Scene“ and press the „Advanced …“ button.

Press „Actions …“ on the upper left and choose „Select Mesh Save Paths“, select a folder where you want to save the mesh and press „Reimport“

Voila!

Briefwechsel Michael Ende und Werner Zurfluh

Da ich grade nochmal panisch danach gesucht habe, hier der Link zu einem Briefwechsel zwischen Michael Ende und dem Klartraum-Forscher Werner Zurfluh (1945 – 2008):

https://oobe.ch/endebr.htm

Ist auch auf archive.org archiviert, insofern bleibt uns das wohl erhalten.

Ich weiß noch, dass ich das damals super faszinierend und traurig fand, dass Ende so unfassbar fantastische Geschichten schrieb, also Zugang zu solchen Welten hatte in den Briefen aber auf mich irgendwie verzweifelt wirkte in seinem Wunsch sowas auch erträumen zu können.

How to batch-convert videos with ffmpeg including all audio and subtitles

Since I spend quite a bit of time tinkering with this I though it might be interesting to others.

The following can be executed on a folder with a bunch of videos which ffmpeg will convert including all audio and subtitle streams and put in a subfolder (not very) originally called „Done“ (not sure if you need to create that folder or if ffmpeg will do that*):

for i in *.*; do ffmpeg -hwaccel_output_format cuda -i "$i" -map 0:v:0 -map 0:a? -map 0:s? -c:v hevc_nvenc -b:v 2000k -preset slow -c:a aac -b:a 128k -c:s copy "Done/${i%.*}.mkv"; done

All the for i in for the batch-conversion is way above my tiny „I can’t learn programming“ brain and is taken from this StackExchange thread (among other things I can’t find now). You could do *.mp4 or *.mkv if you only want those types of videos to be converted.

-hwaccel_output_format cuda and -c:v hevc_nvenc? tells ffmpeg to use the GPU with Cuda (so will probably only work with NVIDIA) and use HEVC (x265) as the video-codec.

The interesting bits are -map 0:v:0 -map 0:a? -map 0:s? which selects all video(?), audio streams and subtitles. I was using -map 0 before but this sometimes created empty video or audio streams which caused all video players I tried to crash (except for good old VLC who did not care). Not ideal.

-c:v and -c:a select the audio and video codecs (c = codec) with slow preset in this case, whereas

-b:v and -b:a tells ffmpeg the bitrate (b = bitrate).

-c:s copy copies the subtitles.

* Edit: You do need to have a folder withe name you specify there in the folder where you run the script. If someone knows how to automate that I’d be happy to hear how ^__^

„Fixing“(?) Duplicati MissingRemoteHash error

I recently got a few errors like this:

2023-11-30 23:46:34 +00 - [Warning-Duplicati.Library.Main.Operation.FilelistProcessor-MissingRemoteHash]: remote file duplicati-[stringofnumbersandletters].dblock.zip is listed as Verified with size 0 but should be 52383505, please verify the sha256 hash "[anotherstringofnumbersandletters]"

rebuild-missing-dblock-files and no-local-blocks (saw that on the Duplicati forum) didn’t work, so I copied the files Duplicati was complaining about somewhere else and deleted the originals.

I then deleted and recreated the database via the Web-GUI (got errors that said files where missing and registered as such 😱), ran backup again, no warnings or errors, anymore. Profit?

There’s a lingering doubt that the files are just gone and not recreated but at least there are no more errors +__+

How to fix hyphenation not working for Scribus on Fedora Linux

I just found out how to fix #hyphenation not working in #Scribus on #Fedora (probably for #languages that aren’t system language):

Check that the text frame (Windows > Content Properties), character and paragraph styles (Edit > Styles, maybe you need to double click on a style to edit) are all the correct language (in my case German on an English system).

If Extras > Hyphenate Text still isn’t working, go to Windows > Resources > Hyphenation Dictionaries and check that you have the correct .dics installed (for me it was only English) and download the appropriate ones if necessary. You can also see the path where they are installed on the system here, so you could manually move a .dic there if you manage to find one.

Tadaa 🎉

EDIT: Writing this down has already helped my once, amazing! You might need to restart Scribus after all these steps before it starts working, at least that’s how it was for me just now.

Cute Planets: Mercury

A vector illustration of mercury looking hot but also happy at the same time saying „I got the craters.“

Hi! What’s the coolest thing about #tiny, inconspicuous #Mercury? That they’re #HeavyMetal (70% iron)? Got most craters? Traveling fastest? Something else?

This is the second #planet for my #CutePlanets #poster ^__^

#space #astronomy #cute #inkscape #vector #solarsystem #science #design #typography