redxef

joined 11 months ago
[–] redxef@feddit.org 5 points 1 day ago* (last edited 1 day ago)

They probably had to calculate determinants of 2x2 matrices a whole day long prior to this.

[–] redxef@feddit.org 10 points 1 week ago* (last edited 1 week ago)

I'm sure that is a good price for the soundbar, but speaking for myself it's too big, I don't have the space for it, as I imagine many others do too. It isn't too cheap either, imo.

But that is really not the point. Not everyone is a giant movie geek, they just want to be able to understand what is being said.

[–] redxef@feddit.org 30 points 1 week ago (10 children)

Cool, so you're not allowed a ~~good~~ passable movie experience if you don't invest a shitton of money for a home theater.

[–] redxef@feddit.org 2 points 1 week ago (1 children)

Ich bin sehr zufrieden mit meinem Pixel 4a mit LineageOS.

Ich hab den LineageOS build vom microG Projekt genommen, da das die wichtigen play services für die Banking Apps, etc spooft. Blöd ist nur, dass viele dann noch Safety Net abchecken - also hab ich das Handy dann noch gerootet und einen Spoofer dafür eingerichtet.

Also die Route ist nur was für Tüftler, wenn ich ehrlich bin. Man muss sich auch aufschreiben was man wie installiert hat beim OS aufsetzen, weil die Android-Versions Upgrades macht nicht die Updater App (minor Upgeades gehen darüber schon), die muss man selber wieder flashen, und wenns nicht genau so passiert wie bei der erst-installation kanns sein, dass dein Handy auf Werkseinstellungen zurück gesetzt ist.

Wenn ich jetzt ein neues Handy anschaffen würde, dann eines der neueren Pixel Geräte und GrapheneOS, das ist sicherer und ein smootherer Ride als Lineage.

[–] redxef@feddit.org 2 points 1 week ago* (last edited 1 week ago)

No, there is no reason really afaik. Firmware updates can be installed with the desktop software, but they can also be installed either OTA or by dropping the update file onto the sdcard. The Kobo devices are really easy to hack, but I have heard that newer ones come with secure boot.

I only ever tried adding custom software onto their devices, like KOReader and Syncthing, I never switched out the whole OS.

I've had and modded both the Kobo Clara and Kobo Clara Colour and never used their desktop software or even created an account to log in on the device.

[–] redxef@feddit.org 1 points 2 weeks ago

I'm using a SBC and put LibreELEC on it. That boots to Kodi. I then installed the Jellyfin plugin and am mostly happy with it. Sync and subtitle selection is sometimes weird.

[–] redxef@feddit.org 1 points 2 weeks ago (1 children)

Auf die PG16 hab ich auch schon geschaut, aber da hat mich dann leider das Headband abgeschreckt. Hatte mal ATH-M40X und wollte mir dort neue Polsterung fürs Headband kaufen, aber da gabs nur das ganze Assembly für €10,- weniger als die ganzen Kopfhöhrer neu gekostet hätten.

 

Ich suche jetzt schon seit längerem ein Headset für Homeoffice und generell Video Konferenzen, und finde einfach nichts, was mich anspricht. Was ich gerne hätte:

  1. Kabelgebunden, ich mag mich nicht mit Bluetooth herum spielen müssen.
  2. Austauschbare Ohrpolster & Kopfband. Wenn nach 3 Jahren das Kopfband beginnt sich aufzulösen würde ich es gerne austauschen können, sodass mir nicht diese nervigen Plastikflankerl um die Ohren fliegen. Beyerdynamic machts mit ihren DT770, etc. mmn genau richtig
  3. Microphon - eh klar.

Sub €100 wäre toll, wenn ich davon keinen Ohrenkrebs bekomme ist es der Überflieger.

Ich hab vor allem auf den Seiten der versch. Hersteller geschaut und auf rtings.com, bin aber entweder zu blind etwas zu finden, oder es gibt nichts.

Habt ihr vielleicht Ideen?

[–] redxef@feddit.org 6 points 3 weeks ago (1 children)

Google: Laughs in "Everybody else you communicate with who has that shit enabled"

[–] redxef@feddit.org 9 points 1 month ago (1 children)

Let's hope it's not a repeat of AKG's story.

[–] redxef@feddit.org 41 points 1 month ago

Did you waive your rights to the code anywhere? If not then it's still your code and they used it without obtaining the rights to using it - depending on your jurisdiction ofc.

[–] redxef@feddit.org 2 points 1 month ago (1 children)

Wäre interessant ein bisschen eine Einleitung zu haben, was Ziel der Befragung ist. Nicht nur ein "Link und Ausfüllen bitte". Wenigstens ist der Studienleiter angegeben und man bekommt über dessen Seite der UBC zumindest eine Idee was er macht, aber auch nicht wirklich mehr als man schon aus dem Thema der Befragung ableiten kann.

[–] redxef@feddit.org 4 points 2 months ago* (last edited 2 months ago)

I usually start inotifywatch with read events, open the program, close it and see what inotifywatch dumped.

 

I just spent 2 hours trying to figure out why fail2ban didn't increment the ban count.

***
a/fail2ban/etc/fail2ban/jail.local
+++ b/fail2ban/etc/fail2ban/jail.local
@@ -1,6 +1,6 @@
 [DEFAULT]

-bantime.incremet     = true
+bantime.increment    = true
 bantime.rndtime      =
 bantime.maxtime      =
 bantime.factor       = 1

After I found that I seriously considered becoming a goose farmer.

93
submitted 7 months ago* (last edited 7 months ago) by redxef@feddit.org to c/selfhosted@lemmy.world
 

Hi!

I've been working on a smart playlist plugin for Jellyfin for a couple of weeks, and by now it's at a stage where I can say it's usable and doesn't have any show-stopper bugs. The playlists are created and edited in the plugin's settings.

A simple configuration for all liked pop songs would look like this:

Id: Favourite Pop
Name: Favourite Pop
Program: |
  (and (is-type "Audio") (is-favorite) (is-genre "pop" (genre-list)))
SortProgram: |
  (begin *items*)

It supports reflection, so any filter or property can be added without modifying the plugin directly; most of the pre-defined filters are implemented this way.

There also is a mirror at Codeberg: codeberg.org/redxef/jellyfin-smart-playlist

 

Hey!

I have been working on a smart playlist plugin for Jellyfin. It's not much and I'm definitely no c# developer, but it's starting to take shape and a first usable prototype is ready.

You basically can generate playlists by specifying a Lisp-like filter expression, which gets called on a per-item basis.

The documentation is really bare-bones as of now, so if you want to try it and get stuck just reach out.

I also added a mirror to the repository here: codeberg.org/redxef/jellyfin-smart-playlist

view more: next ›