The Day GlusterFS Tried to Kill My Career
https://it-notes.dragas.net/2025/05/21/the_day_glusterfs_tried_to_kill_my_career/
#ITNotes #data #horrorstories #ownyourdata #server #IT #SysAdmin
The Day GlusterFS Tried to Kill My Career
https://it-notes.dragas.net/2025/05/21/the_day_glusterfs_tried_to_kill_my_career/
#ITNotes #data #horrorstories #ownyourdata #server #IT #SysAdmin
My blog post yesterday on IT-Notes had unexpected success.
The number of views is incredibly high and keeps skyrocketing by the hour. Itβs yet another confirmation that, in a world flooded with fake or AI-generated content, people still need (and want) to read true stories - real experiences from real life.
The only thing that makes me sad:
Even though I eventually edited the article to clarify that there was no organized crime involved, many comments keep insisting that, since it happened in Italy, there must be organized crime or the mafia behind it.
As if things like this could only happen in Italy, and only if organized crime is involved.
https://it-notes.dragas.net/2025/05/13/the_server_that_wasnt_meant_to_exist/
The Server That Wasn't Meant to Exist
A story from 16 years ago - trust, tech, and a server that had to disappear. They offered me a blank check. I said no.
https://it-notes.dragas.net/2025/05/13/the_server_that_wasnt_meant_to_exist/
I've just finished to review the next ITNotes blog post, that I'll publish tomorrow morning (if the at daemon will do its job, it'll autopublish at 07:31 tomorrow morning π )
Stay tuned!
Everything's ready.
Tomorrow morning, I'll release and announce #BSSG - stay tuned! π
I've updated some of my Fediverse-related blog posts to feature the beautiful photo kindly provided by @_elena
Some of these are still on the index page, and I believe it's a much more fitting image than the previous one.
I've just launched the version of my blog with a BSD-based theme. The main colors are inspired by the BSDs, and badges will appear if a post includes one (or more) BSD in its categories. I've applied a few fixes (there are more to come), but it's already fully usable.
The site is designed to be navigable even without images or JavaScript, and can be used with text-based browsers. The only feature that requires JavaScript is the search function, which runs locally in the user's browser for maximum security and privacy.
For those who have already visited the site in recent days, you might not see the new theme correctly as some CSS parts could still be cached in your browser. Iβve set long expiration times for the CSS, so browsers may not notice the changes right away.
I've just published a new release of my blog, created by my SSG - it's in beta. I think the RSS readers will re-fetch the articles as it's a different structure, but should be working. Permalinks should also be preserved.
I just finished the blog post on FediMeteo, how it was created and what it's made of. In the end, it turned out less technical than expected, but that's fine. Iβll be publishing it tomorrow morning.
a2enmod expires cache cache_disk
<LocationMatch "^/social/[^/]+/[xys]/|^/social/nodeinfo_2_0">This will use the disk cache to cache everything under the $username/s/, /x/ and /y/ paths, as well as for the
CacheEnable disk
Header set Cache-Control "max-age=86400, public" "expr=%{REQUEST_STATUS} == 200"
ExpiresActive On
ExpiresDefault "access plus 86400 seconds"
</LocationMatch>
/nodeinfo_2_0
path, utilizing mod_expires
to generate the appropriate cache headers (for lazy ones like me). In this case caching it for 1 day.no-cache
on that location and mod_expires
will honor that if we don't override it. I set it to the same Cache-Control value as mod_expires
would. (I use mod_expires
because it will additionally calculate the date and put that in the expires
header. (hence the name I guess π )^/[^/] /[xs]/