weeklyOSM minified RSS feed with feed-minifier

Intro For the OpenStreetMap news site weeklyOSM I have created minified RSS feeds with a self-written tool called feed-minifier. This saves a lot of bandwidth when subscribing to that news site. What are the differences compared to the original weeklyOSM feed? The number of weeklyOSM articles in the feed is reduced to only contain the latest edition. Flags of the OSM calendar events are replaced with emoticons. Language indicator icons for the translation links are replaced by text links with the language code. All other images are replaced with a text in square brackets naming the image source URL, the alt text and the image size. This way no images are loaded automatically when loading the RSS item. New lines in the source of the article content are deleted. HTML comments and CSS classes are removed. The advantage of all this extra processing of the feed to a minimized version is a reduction of around 90 % in size. E.g. the feed including the Italian weeklyOSM #754 could be reduced from 360,889 bytes to 31,646 bytes. Additionally, the ten title images are not loaded, e.g. the one for weeklyOSM #754 has a size of 464,872 bytes. ...

Januar 5, 2025 · 2 Minuten

RSS Feed Pflege: Volltext-Feed

Heute habe ich mal meine RSS Feeds genauer unter die Lupe genommen und ein paar Anpassungen vorgenommen. Es wird nun ein Volltext-Feed und wie bisher ein gekürzter Feed mit Teasern generiert. Bisher dachte ich, dass mit Hugo automatisch ein Volltext-Feed generiert wird. Aber dem war nicht so. Zum Glück kann man das ändern. Dazu habe ich ein neues OutputFormat erzeugt, ein neues Template basierend auf dem derzeitigen RSS Feed Template erstellt und angepasst und den neuen Feed in meinem Theme verlinkt. Das wars.

November 12, 2023 · 1 Minute

Tiny Tiny RSS systemd Service Unit

Inspiriert von TauSys Blogeintrag Tiny Tiny RSS Update-Daemon unter systemd betreiben habe ich mein init.d Script für TT-RSS mal entfernt und durch eine systemd Service Unit ersetzt. Ganz übernehmen konnte ich Tausys Unit nicht, minimale Änderungen mussten her und nun sieht meine Unit so aus: $ cat /lib/systemd/system/ttrss.service [Unit] Description=Tiny Tiny RSS update daemon After=network.target mysql.service Requires=network.target remote-fs.target nss-lookup.target mysql.service [Service] User=www-data Group=www-data WorkingDirectory=/var/www/ttrss Type=simple StandardOutput=null StandardError=journal ExecStart=/usr/bin/php ./update_daemon2.php PrivateTmp=true InaccessibleDirectories=/home /root /boot /opt /mnt /media ReadOnlyDirectories=/etc /usr Restart=always [Install] WantedBy=multi-user.target Update 16.8.16: Service umbenannt, StandardOutput=journal, StandardError=journal, Restart=always Update 22.8.16: StandardOutput=null

September 22, 2015 · 1 Minute

Tiny Tiny RSS Update von Version 1.7.8 nach 1.7.9: Rückgängigmachen der geänderten Schriftart und -größe

Wer die neue Schriftart Segoe UI und die auf 14 Pixel vergrößerte Schrift und das veränderte Verhalten von den Titelzeilen (alle Headlines fett, nicht nur ungelesene) von TT-RSS nach dem aktuellen Update auf Version 1.7.9 nicht mag, kann die Änderungen des CSS überschreiben. Diese Funktionalität bringt TTRSS von Haus aus mit und eine Änderung ist komfortabel möglich. Dazu geht man in die Einstellungen von TTRSS und scrollt zu der Einstellung, wo man ein benutzerdefiniertes Stylesheet anpassen kann, siehe: Dort klickt man auf Anpassen und in dem sich öffnenden Popup überschreibt man die CSS-Eigenschaften, die einem nicht gefallen: Der CSS-Code für Copy&Paste: body#ttrssMain, body#ttrssPrefs, body#ttrssLogin, body { font-size: 12px; } #feedTree { font-family : sans-serif; } .hl div.hlTitle a { font-weight : normal; } .hl.Unread div.hlTitle a { font-weight : bold; } Zusammengefasst, falls jemand nur spezifische Änderungen übernehmen möchte, ändern die oben stehenden CSS Blöcke das Erscheinungsbild wie folgt: Z. 01-03: allgemeine Schriftgröße von 14px auf 12px reduzieren Z. 04-07: Schriftart Segoe UI und Tahoma im Feedtree nicht mehr nutzen und auf sans-serif zurückfallen Z. 09-15: nur ungelesene Titelzeilen fett gedruckt darstellen und gelesene bzw. alle anderen Titelzeilen normal gedruckt darstellen

Mai 14, 2013 · 1 Minute