Det tidligere storlaget Lyon har over to MILLIARDER i gjeld.
https://www.vg.no/sport/i/RzMyGW/storklubben-lyon-degradert-til-ligue-2 Ligue 1: Lyon degradert av det franske fotballforbundet
Poster på norsk og noe engelsk. Booster (?) i tillegg ting som er på dansk, svensk og tysk. Posts in Norwegian and English. Might boost posts in Danish, Swedish and some German. 🗺️ #Trondheim, #Norway 🧑💻 #NTNU #searchable
Det tidligere storlaget Lyon har over to MILLIARDER i gjeld.
https://www.vg.no/sport/i/RzMyGW/storklubben-lyon-degradert-til-ligue-2 Ligue 1: Lyon degradert av det franske fotballforbundet
Just saw this scrolling through Facebook. I don't know anything about the matter, but my point remains valid: using other people's platforms does not and never will guarantee the safety of your data.
@_elena 's video is extremely relevant: https://tube.bsd.cafe/w/64VuNCccZNrP4u9MfgbhkN
Welsh born textile artist and knitwear designer Kate Jenkins creates fun crochet/knit creations #womensart 🏴
Why has the guillotine emoji not been included in unicode when it is clearly so useful?
Hey @simplex is this really your founder? 👀
https://xcancel.com/epoberezkin
Folks have taken exception in the past with my claim that SimpleX is "run by nazis".
I base that on the fact that it presents popular/recommended "rooms" as part of the UX, and a bunch of those are nazi shit.
No, "that's just algorithmic outside their control" is not an excuse. If you're publishing an app and find it in any way promoting nazi shit, especially to someone who didn't actually seek that out, and you're not a nazi, that's a maximum-priority bug to be fixed. By removing the recommendations entirely if nothing else.
If you're ok with it being there, you're fucking nazis.
SimpleX is fucking nazis.
SCHRIER: Have you ever treated measles?
RFK JR: No
SCHRIER: Well I have. Let me tell you how miserable these kids is. The great thing is there's a vaccine to prevent it ... they only work if you actually give them
Waiting for SQL:202y: Vectors https://peter.eisentraut.org/blog/2025/06/24/waiting-for-sql-202y-vectors #sql
it's happening! "The Secret Rules of the Terminal" is coming out tomorrow!
(update: it's out now!! you can get it here: https://wizardzines.com/zines/terminal/)
here's the table of contents:
La série continue : le loup et le petit chaperon fêtent l'été (une nouvelle illustration)
On the winter solstice I fixed a pinhole camera to the shed, and I took it down on the summer solstice. The photographic paper recorded the path of the sun over six months.
So 120 Labour MPs have expressed support for an amendment to the Welfare Reform Bill next week seeking (the required) consultation with disabled groups over the change in PIP & an assessment by the OBR of its impact...
At the moment Keir Stramer is trying to tough it out wth Pat McFadden warning MPs that voting against the cuts would be a 'serious thing'.... which is right, it is a serious thing, which is why people want their MPs to vote against it!
#disability #benefits #politics
h/t FT
Now that ECH is happening, which implies SVCB... can we pleeeeease get DANE/TLSA and in-band DNSSEC in TLS?
In-band DNSSEC addresses the complaints from browsers about DNS queries, and SVCB could be a perfect solution to the downgrade issue with in-band DNSSEC.
Or better yet... just replace TLSA with an SVCB SvcParam, drastically simplifying the whole thing.
I have little hope, seeing as everyone seems to have gotten burned last time. A real shame, since the argument may as well be moot now.
Registration opened https://www.postgresql.eu/events/pgconfeu2025/news/registration-opened-178/
Style your WordPress Atom feed
https://shkspr.mobi/blog/2023/06/style-your-wordpress-atom-feed/
I recently read Darek Kay's excellent post about styling RSS feeds and wanted to do something similar.
So, here's my simple guide to styling your WordPress blog's RSS / Atom theme. The end result is that if someone clicks on a link to your feed, they see something nicely formatted, like this:
Prerequisites
This involves editing your WordPress blog's theme. If you don't know what you're doing, you can mess up your blog0. Make sure you take some backups before experimenting on your live site.
Download an XSLT
You can download my Style Sheet which I stole from Darek's website and then enhanced. Save it as rss-style.xsl
in your theme's root directory.
Edit it in a regular text editor to have the name of your blog.
Create a new Atom Feed Template
WordPress has a bunch of built in feed templates.
Copy the file /wp-includes/feed-atom.php
and paste it into your theme's root directory. Rename it custom-feed-atom.php
There are three lines which need editing.
Near the top you should see
header( 'Content-Type: ' . feed_content_type( 'atom' ) . '; charset=' . get_option( 'blog_charset' ), true );
The feed_content_type
needs to be set to rss-http
- otherwise most modern browsers will try to download the Atom feed rather than display it. The new line should be:
header( 'Content-Type: ' . feed_content_type( 'rss-http' ) . '; charset=' . get_option( 'blog_charset' ), true );
After that, add the line:
$theme = $args["theme"];
That will allow us to get the theme directory.
Finally, find the line:
echo '<?xml version="1.0" encoding="' . get_option( 'blog_charset' ) . '"?' . '>';
Immediately after that, add the line:
echo '<?xml-stylesheet href="' . $theme . '/rss-style.xsl" type="text/xsl"?>';
That allows the browser to see the stylesheet you saved earlier.
Functions
Finally, it is time to edit your theme's functions.php
file. This will remove the old Atom feed and add your new one.
I don't know how your functions.php
file is set up. But, generally speaking, you can safely add these lines to the very end of it:
function my_custom_atom() { get_template_part( 'custom-feed', 'atom', array( "theme" => get_stylesheet_directory_uri() ) );}remove_all_actions( 'do_feed_atom' );add_action( 'do_feed_atom', 'my_custom_atom', 10, 1 );
That removes your old Atom feed, and calls the new template that you saved earlier, and passes it the URl for your CSS.
Done!
You can see what it looks like at https://shkspr.mobi/blog/feed/atom/
Nice!
TBF, you can mess up even if you do know what you are doing. ↩︎
@blog WordPress already use XSLT for the sitemap e.g. https://shkspr.mobi/blog/wp-sitemap.xml
Maybe WP should standardise on a xlst for other xml-formats it produces?
We talked about the roadmap for #AlpineLinux 3.23 yesterday. So far we have:
- apk-tools 3.0
- gcc 15
- python 3.13
- improve/clean up Alpine user handbook (we need volunteers for this)
See
https://gitlab.alpinelinux.org/alpine/aports/-/issues/17294 if you want help or have things you are working on that should be included.