jrollans.com is a Fediverse instance that uses the ActivityPub protocol. In other words, users at this host can communicate with people that use software like Mastodon, Pleroma, Friendica, etc. all around the world.
This server runs the snac software and there is no automatic sign-up process.
Important research and documentation that businesses that profit from consumer data collection are lobbying governments to mandate age verification:
"Meta Platforms: Lobbying, Dark Money, and the App Store Accountability Act
An open-source intelligence investigation into how Meta Platforms built a multi-channel influence operation to pass age verification laws that shift regulatory burden from social media platforms onto Apple and Google's app stores."
https://github.com/upper-up/meta-lobbying-and-other-findings
#osint #privacy #opensource #lobbying #ageverificationlaw #security
Marknote 1.5.0 is out and is packed with new features!
Marknote is turning into a robust knowledge base while keeping the interface as clean and distraction-free as possible.
From this month's newsletter: A tip about pcap-minimizer, handy for debugging scripts and analyzers:
https://community.zeek.org/t/zeek-newsletter-issue-60-february-2026/7953
Good day all! Upcoming episode of Fireside Fedi!
The #livestream will be on: stream.firesidefedi.live
Special Guest: @matttutt@mastodon.social
I am a reluctant SEO. I am starting the No To Big Tech movement - notobigtech.org. If you want to help us shift off Big Tech - please join us!
So don't miss it!
It will happen on 25 March 2026 at 08:30 US Eastern Time ( UTC-4 )
If by any ungodly chance you miss the show:
#PeerTube ( #VOD ): tubefree.org/@firesidefedi #firesidefedi #fediverse #fedi #interview #freesoftware #opensource #userfreedom #freedom #resistance
⭐ Announcing a Major Architectural Update to RIFT ⭐
RIFT has undergone a complete rearchitecture to enhance its modularity, extensibility, and usability. An experimental build has been released on our GitHub repository, while the stable build remains available. The experimental build will continue to receive updates and improvements over time.
❓ What is RIFT?
RIFT is a valuable tool for reverse engineers, designed to generate on-demand FLIRT signatures for Rust binaries.
❗ What's new?
⚙️ Three Operation Modes:
- File Analysis Mode: Point RIFT directly at a binary.
- Direct Generation Mode: Target specific crate versions and compiler combinations.
- HTTP API Server Mode: Run RIFT as a service with an async job queue.
🔧 Modernized Ida Pro Plugin: The Ida Plugin has been rebuilt with server integration, enabling FLIRT signature generation while reversing without needing to leave the window.
For more details, visit: https://github.com/microsoft/RIFT
#reverseengineering #malware #rift #infosec #opensource #binaryanalysis
Der Saugroboter ist noch da, aber seine Intelligenz wohnt leider nicht mehr hier. 🤤
Nachdem Vorwerk die Cloud-Plattform im Oktober 2025 abgeschaltet hat, fühlen sich viele Käufer im Stich gelassen.
Zum Artikel: https://heise.de/-11206147?wt_mc=sm.red.ho.mastodon.mastodon.md_beitraege.md_beitraege&utm_source=mastodon
Self-Host Weekly (2026-03-13)
#Booklore turns sour, software updates and launches, a spotlight on #OpenDroneLog -- a #drone flight log app, and more in this week's #selfhosted recap!
https://selfh.st/weekly/2026-03-13
#selfhost #selfhosting #foss #opensource #homelab #devops #sysadmin #newsletter #privacy #security #fediverse #app #apps #smarthome #truenas #ntfy
Hello, Fediverse!
I think it's time for an #introduction to the broader audience of the fediverse.
We're the Dark Blue Project, an independent project based in Germany, which publishes content about free and open source software and educate about it. Our primary mission is to inform people about free and open source software and help them with using it.
At the time of writing this, the project is under active construction. Feel free to let a follow here and stay tuned for exciting things coming in the future.
See you!
sudo mkdir -p /etc/apt/keyrings
sudo curl -L -o /etc/apt/keyrings/ntfy.gpg https://archive.ntfy.sh/apt/keyring.gpg
sudo apt install apt-transport-https
echo "deb [arch=amd64 signed-by=/etc/apt/keyrings/ntfy.gpg] https://archive.ntfy.sh/apt stable main" \
| sudo tee /etc/apt/sources.list.d/ntfy.list
sudo apt update
sudo apt install ntfy
sudo systemctl enable ntfy
sudo systemctl start ntfy
#ntfy #notifications #programming #Android #Linux #sh #bash #csh #ksh #zsh #fish #curl #http #javascript #golang #powershell #python #php #technology #OpenSource #POSIX
Kleines Reminder für heute Abend: Das nächste Mal, bevor du irgendwas random aus dem Internet runterlädst – kurz auf GitHub schauen ob's nen Fork gibt, der noch aktiv gewartet wird. Der "originale" Repo hat manchmal seit 4 Jahren keinen Commit mehr. 🕸️
Open Source ist großartig, aber auch ein bisschen wie ein Gemüsegarten: Pflege matters.
Ik was de pop-ups, reclames en trackers van Datumprikker helemaal zat, dus bouwde ik zelf een alternatief. Altijd gratis, geen reclame, geen account, geen tracking. En #opensource zodat dat ook zo blijft. Plan je volgende etentje, vergadering of borrel eens met Prikkert.nl!
ntfy
Today I read the brief synopsis of ntfy Android. I saw there that via linux the control and operation is fairly simple & straightforward
I went to the site and started reading.
sh
curl -d "Backup successful 😀" ntfy.sh/mytopic
a.out
ntfy publish mytopic
"Backup successful 😀"
HTML
POST /mytopic HTTP/1.1
Host: ntfy.sh
Backup successful 😀
javascript
fetch('https://ntfy.sh/mytopic', {
method: 'POST', // PUT works too
body: 'Backup successful 😀'
})
golang
http.Post("https://ntfy.sh/mytopic", "text/plain",
strings.NewReader("Backup successful 😀"))
python
requests.post("https://ntfy.sh/mytopic",
data="Backup successful 😀".encode(encoding='utf-8'))
php
file_get_contents('https://ntfy.sh/mytopic', false, stream_context_create([
'http' => [
'method' => 'POST', // PUT also works
'header' => 'Content-Type: text/plain',
'content' => 'Backup successful 😀'
]
]));
Markdown formatting¶
You can format messages using Markdown 🤩. That means you can use bold text, italicized text, links, images, and more. Supported Markdown features (web app only for now):
Emphasis such as bold (bold), italics (italics)
Links (some tool)
Images ()
Code blocks (code blocks) and inline code (inline code)
Headings (# headings, ## headings, etc.)
Lists (- lists, 1. lists, etc.)
Blockquotes (> blockquotes)
Horizontal rules (---)
Read more on
https://docs.ntfy.sh/publish/#markdown-formatting
Sources:
https://docs.ntfy.sh/publish/#markdown-formatting
#ntfy #notifications #programming #Android #Linux #sh #bash #csh #ksh #zsh #fish #curl #http #javascript #golang #powershell #python #php #technology #OpenSource #POSIX
Digging into #freecad revolution #3dmodeling #design #knob #FLOSS #opensource @hkustguangzhou @hkustgz_cma #digitalfabrication #uidesign
OpenProject 17.2 integrates MCP Server for AI-assisted project work
OpenProject 17.2 brings an MCP Server for connecting AI systems, meeting templates, budget widgets, and several security fixes.
Good day all! Upcoming episode of Fireside Fedi!
The #livestream will be on: stream.firesidefedi.live
Special Guest: @rileytestut@mastodon.social from @altstore@fosstodon.org
Building emulators and app stores for iPhone with shanegill.io
So don't miss it!
It will happen on 19 March 2026 at 15:00 US Eastern Time ( UTC-4 )
If by any ungodly chance you miss the show:
#PeerTube ( #VOD ): tubefree.org/@firesidefedi #firesidefedi #fediverse #fedi #interview #freesoftware #opensource #userfreedom #freedom #resistance #altStore #iOS #iPhone #appStores #phone #smartPhone
Saturday, 28 March, there are many hackerspaces that participate to the "International Open Day".
Boost = ❤️
Visit one of the NL participating spaces :
AwesomeSpace, Hilversum
@bitlair Amersfoort
@hack42 Arnhem
@hackalot Eindhoven
@hermithive Nieuwegein
@hsdrenthe Coevorden
@HSN Nijmegen (nieuwe locatie!)
@nurdspace Wageningen
@pixelbar Rotterdam
@randomdata Utrecht
@revspace Leidschendam
Space Leiden, Leiden
@TDvenlo Venlo
@TechInc Amsterdam
@tkkrlab Enschede
See also https://hackerspaces.nl/open-dag/
https://wiki.hackerspaces.org/Open_Hackspace_Day_2026
#hackerspaces #makerspaces #DIY #linux #opensource #electronics #arduino
Heute wieder 3 Stunden damit verbracht, ein Tool zu konfigurieren, das mir 20 Minuten Arbeit erspart. Das Beste daran? Es ist Open Source, also hab ich noch 2 Stunden den Quellcode gelesen, obwohl ich ihn nie ändern werde. Produktivität 📈
RE: https://chaos.social/@davidak/116205913072553471
After some research today it becomes clear that you can't have a linux system without running LLM generated code, since the linux kernel itself and also systemd has it.
Maybe not running LLM generated code becomes a niche thing like running linux-libre and libreboot. It is not something the average user can achieve.
We need a more specific approach to handle software with LLM contributions.
https://lwn.net/Articles/1026558/
https://github.com/search?q=repo%3Asystemd%2Fsystemd+Claude&type=commits
"Anthropic launches a code review tool with multi-agent AI bug detection, but it's pricey"
"Anthropic has launched Code Review, an AI-powered system that deploys a team of agents to inspect every pull request for bugs typically missed by automated scans."
From yesterday.
The New Stack: Galileo releases Agent Control, a centralized guardrails platform for enterprise AI agents https://thenewstack.io/galileo-agent-control-open-source/ @TheNewStack @sjvn #opensource
Viele Menschen haben den Eindruck, dass sich der Blick verschoben hat. Erfolg wird häufig daran gemessen, wie schnell etwas wächst, wie viel Aufmerksamkeit es bekommt oder welchen Profit es erzeugt. In dieser Logik bleibt wenig Raum für das, was früher oft im Mittelpunkt stand, die Idee, gemeinsam etwas zu schaffen, das länger besteht als der eigene Vorteil.
Dabei waren viele der Dinge, die unsere Welt geprägt haben, nie nur aus persönlichem Gewinn entstanden. Sie wurden von Menschen getragen, die an eine Überzeugung glaubten – Menschen, die etwas entwickeln wollten, das anderen hilft, Wissen zugänglich macht oder eine Gemeinschaft stärkt. Der Antrieb war nicht nur Erfolg, sondern Bedeutung.
Vollständiger Beitrag:
https://writefreely.linuxat.de/h1-style-color-green-wenn-aus-gedanken-etwas-waechst-das-bleibt-h1
#Gemeinschaft #Menschlichkeit #Miteinander #Zusammenhalt #digitaleWelt
#Digitalisierung #echteBegegnung #HerzundSeele #WärmeundNähe #OpenSource #OpenSourceCommunity #Linux #freiheit #fediversum #fedi #fediverserecht #Foss #diday #BIGTECH #Datenschutz #Datenschutz #Daten #Sicherheit #Europa #Wirtschaft #Technologie
FreeBSD 14.4-RELEASE is now available.
The FreeBSD Project has announced the release of FreeBSD 14.4-RELEASE, the fifth release from the stable/14 branch. FreeBSD 14.4-RELEASE is available for multiple architectures and can be installed via ISO, USB, VM images, cloud platforms, and OCI containers.
Download and release information:
https://www.freebsd.org/releases/14.4R/announce/
Thank you to the Release Engineering Team and the many contributors who make each release possible.
#FreeBSD #OpenSource #ReleaseEngineering
How does a volunteer-run Linux distro comply with a $7,500 per-user fine? They can't. These "Age Assurance" bills are a death sentence for privacy-focused, open-source operating systems. Keep the OS neutral. 🐧✊ #OpenSource #Linux #DigitalRights
@GrapheneOS @attilax @LearnToLivePrivate @RustRaven @jmoupah @Yrrussaj @sebsauvage @jolla Hey Graphene OS folks.
First, it's really great that you guys have created a security focused deGoogled Android operating system.
Given the problems of American big tech, I applaud you for creating an alternative.
So full credit where credit is due.
That being said, constantly badmouthing every other non-Apple and non-Google smartphone maker and operating system is not a good look.
And jumping into any thread on Mastodon where there's a mention of another alternative smartphone maker or OS to badmouth them is not a good look.
You say Jolla is no good. SailfishOS is no good. Fairphone is no good. Murena is no good. CalyxOS is no good. Dumbphones are no good.
I'd imagine you'd probably win more people over if you talked more about why people should choose Graphene instead why they shouldn't choose one of the others.
Because right now, there are tradeoffs with every mobile OS.
That includes Graphene.
For example, there are people for whom limiting their exposure to Google and Apple is more important than choosing the most locked down option available.
For such people, needing to buy a Google Pixel phone to run Graphene is a massive negative.
That's even if the Google Pixel is the best hardware from a security perspective.
And in that case, yeah there are other options that may be a better fit for those people.
There's another issue.
There seems to be many Reddit threads and YouTube videos and blogs out there from people who were enthusiastic about Graphene, but have soured on it.
And the funny thing is there's a pattern to it. "Cult-like" and "toxic" seems to be phrases that tend to be used a lot.
I've also noticed a recurring pattern you put for why the other alternatives are bad is because people connected with those businesses or companies badmouth Graphene.
It seems to me like Graphene constantly bags those other projects. When anyone connected with those projects responds, that response is presented by you guys as evidence of bullying and harassment, without that context.
And the recurring line about how people should just stick with iOS or Google Android if they don't choose Graphene? Just shameful. And completely misses the point of why some people are looking for alternative platforms in the first place.
And the more people who choose an alternative OS, the more normal it becomes to do it, which ultimately leads to more people looking at alternatives like Graphene.
#Android #Jolla #SailfishOS #AOSP #Graphene #GrapheneOS #Murena #Calyx #CalyxOS #Linux #infosec #opensource
Viele Menschen haben den Eindruck, dass sich der Blick verschoben hat. Erfolg wird häufig daran gemessen, wie schnell etwas wächst, wie viel Aufmerksamkeit es bekommt oder welchen Profit es erzeugt. In dieser Logik bleibt wenig Raum für das, was früher oft im Mittelpunkt stand, die Idee, gemeinsam etwas zu schaffen, das länger besteht als der eigene Vorteil.
Dabei waren viele der Dinge, die unsere Welt geprägt haben, nie nur aus persönlichem Gewinn entstanden. Sie wurden von Menschen getragen, die an eine Überzeugung glaubten – Menschen, die etwas entwickeln wollten, das anderen hilft, Wissen zugänglich macht oder eine Gemeinschaft stärkt. Der Antrieb war nicht nur Erfolg, sondern Bedeutung.
Vollständiger Beitrag:
https://writefreely.linuxat.de/h1-style-color-green-wenn-aus-gedanken-etwas-waechst-das-bleibt-h1
#Gemeinschaft #Menschlichkeit #Miteinander #Zusammenhalt #digitaleWelt
#Digitalisierung #echteBegegnung #HerzundSeele #WärmeundNähe #OpenSource #OpenSourceCommunity #Linux #freiheit #fediversum #fedi #fediverserecht #Foss #diday #BIGTECH #Datenschutz #Datenschutz #Daten #Sicherheit #Europa #Wirtschaft #Technologie
#SailShark v1.1 is out! - a native Wireshark frontend for Sailfish OS.
Live packet capture · Protocol tree · Hex dump · Follow TCP Stream · Save .pcapng · Interface picker · BPF filters
Built on Wireshark 3.6.24 + Qt 5.6/Silica QML. Because your phone runs Linux and should act like it.
https://build.sailfishos.org/package/show/home:nielnielsen/Sailshark
Available now in Mesa 26.0.2, the latest bug-fix release for the current main stable version of open source graphics drivers for Linux.
https://www.gamingonlinux.com/2026/03/mesa-26-0-2-arrives-with-more-bug-fixes-for-linux-graphics-drivers/
I still have lot of unanswered questions about how I'd like to publish my game.
Make it #OpenSource is something I've already decided.
But I'm concerned someone could take the game to sell it on Steam. This is something I might do myself at some point (yet another unanswered question), but I clearly don't want someone who didn't work on it to get money from players (who could get the game for free instead but woudn't know or would be tricked into thinking they support devs)
Lutris now being built with Claude AI, developer decides to hide it after backlash https://www.gamingonlinux.com/2026/03/lutris-now-being-built-with-claude-ai-developer-decides-to-hide-it-after-backlash/
There's a bit of drama going on with the popular game manager Lutris right now, with users pointing out the developer using AI generated code via Claude.
https://www.gamingonlinux.com/2026/03/lutris-now-being-built-with-claude-ai-developer-decides-to-hide-it-after-backlash/
Chemnitzer Linux-Tage 2026: 28.–29. März – zwei Tage Open-Source-Praxis, Austausch und Inspiration. 
Besonders spannend: Unser Kollege Oliver Kautz mit seinem Vortrag „Seit 8 Jahren Infrastructure-as-Code – ein Erfahrungsbericht“. Sa., 17:00, Raum V1. 
Wenn du wissen willst, wie IaC nach Jahren Betrieb wirklich aussieht (Terraform/OpenTofu + GitOps, inklusive Lessons Learned), ist das ein Pflichttermin. 
#CLT2026 #OpenSource #Linux #IaC #Terraform #OpenTofu #GitOps #DevOps @clt_news
heise+ | Passbolt: Den europäischen Open-Source-Passwortmanager selbst hosten
Der Passwortmanager Passbolt ist Open Source und wird in Luxemburg entwickelt. Wir zeigen, wie man ihn auf eigener Hardware aus dem Heimnetz betreibt.
If you want to do livestreaming or video recording on Linux, OBS Studio is easily the best free and open source app you can get for it and v32.1.0 is out now.
https://www.gamingonlinux.com/2026/03/obs-studio-32-1-0-arrives-with-webrtc-simulcast-support-and-a-new-audio-mixer/
The D7VK project has expanded again in version 1.5 that's out now - adding in support for Direct3D 3.
https://www.gamingonlinux.com/2026/03/d7vk-version-1-5-brings-direct3d-3-support-via-vulkan-on-linux/
Viele Menschen haben den Eindruck, dass sich der Blick verschoben hat. Erfolg wird häufig daran gemessen, wie schnell etwas wächst, wie viel Aufmerksamkeit es bekommt oder welchen Profit es erzeugt. In dieser Logik bleibt wenig Raum für das, was früher oft im Mittelpunkt stand, die Idee, gemeinsam etwas zu schaffen, das länger besteht als der eigene Vorteil.
Dabei waren viele der Dinge, die unsere Welt geprägt haben, nie nur aus persönlichem Gewinn entstanden. Sie wurden von Menschen getragen, die an eine Überzeugung glaubten – Menschen, die etwas entwickeln wollten, das anderen hilft, Wissen zugänglich macht oder eine Gemeinschaft stärkt. Der Antrieb war nicht nur Erfolg, sondern Bedeutung.
Vollständiger Beitrag:
https://writefreely.linuxat.de/h1-style-color-green-wenn-aus-gedanken-etwas-waechst-das-bleibt-h1
#Gemeinschaft #Menschlichkeit #Miteinander #Zusammenhalt #digitaleWelt
#Digitalisierung #echteBegegnung #HerzundSeele #WärmeundNähe #OpenSource #OpenSourceCommunity #Linux #freiheit #fediversum #fedi #fediverserecht #Foss #diday #BIGTECH #Datenschutz #Datenschutz #Daten #Sicherheit #Europa #Wirtschaft #Technologie
📺 https://peer.adalta.social/w/5sk9hzB474qiV5SozwqV1g
🔗 [🇩🇪🇺🇸🇫🇷](https://adalta.info/articles/prstn_software_116215179304867764_fr)
🔗 [ℹ️](https://opencode.de/de/aktuelles/events/opencode-connect-maerz-2026-5717 )
PLAIN incarne un compromis stratégique délibéré entre ouverture logicielle et contrôle infrastructurel pour la souveraineté de l'État.
Inexpensive FPGA module with German chip and open-source toolchain
Manufacturer Cologne Chip solders its GateMate A1 onto a module that fits I/O boards for the Raspberry Pi CM5.
📺 https://peer.adalta.social/w/nwGWqihT1CzCCZmZSQdWaL
🔗 [🇩🇪🇺🇸🇫🇷](https://adalta.info/articles/prstn_software_116215179304867764_de)
🔗 [ℹ️](https://opencode.de/de/aktuelles/events/opencode-connect-maerz-2026-5717 )
PLAIN etabliert eine geschützte Plattform für offene Innovation in der Bundesverwaltung.
Es gibt ein scheinbar auf #SuperTuxKart basierendes (schaut euch alleine die Menüs an) #OpenSource Projekt, welches an einem #Spiel arbeitet, dass konzeptionell den alten #DestructionDerby Titeln ähneln soll.
Ziel im #Multiplayer ist es Gegenspieler kaputt zu rammen ohne selbst zu viel Schaden zu nehmen. Wer zuletzt noch übrig ist, hat gewonnen.
Aktuell und relativ frisch ist Version 0.8.0-Alpha. #Linux und #Windows werden unterstützt. Es gibt #Appimage
https://wastedgames.codeberg.page/
Viel Spaß beim Testen!
Günstiges FPGA-Modul mit deutschem Chip und Open-Source-Toolchain
Der Hersteller Cologne Chip lötet sein GateMate A1 auf ein Modul, das auf I/O-Boards für den Raspberry Pi CM5 passt.
#Y2K38 is the new #Y2K and #openSUSE developers are already finding real failures by advancing build clocks to 2038. #32-bit time assumptions are everywhere. 12 years to fix it. #Linux #OpenSource https://news.opensuse.org/2026/01/20/os-community-tackling-y2k38-epoch/
A lot of #opensource projects out there already have statements about whether they accept #ai generated code or what their policy is...
Is there some template / generator for that already?
(and don't @ me with "let AI generate one...)
Sadly, popular Linux gaming utility Lutris is now AI slop and in response to people expressing their concern, the lead maintainer decided to remove all the attributions for the AI submitted changes so no one can fork it before the changes were made. Oh, also it probably renders the license complete garbage as well too.
At least we now know why it's become notably worse over the last few months and it saves me from writing up some Github issues.
When the download progesses slowly as in log 1 just resume from a closer server as shown in log 2
curl --verbose -C - -L -o MidnightBSD-4.0.3--amd64-disc1.iso https://ns3.foolishgames.net/ftp/pub/MidnightBSD/releases/amd64/ISO-IMAGES/4.0.3/MidnightBSD-4.0.3--amd64-disc1.iso
** Resuming transfer from byte position 44871680
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- 0:00:05 --:--:-- 0* Trying 52.1.67.188:443...
curl --verbose -C - -L -o MidnightBSD-4.0.3--amd64-disc1.iso https://discovery.midnightbsd.org/ftp/releases/amd64/ISO-IMAGES/4.0.3/MidnightBSD-4.0.3--amd64-disc1.iso
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- 0:00:07 --:--:-- 0* Trying 145.239.254.58:443...
Sources
https://midnightbsd.org/notes/
https://midnightbsd.org/download/
#UNIX #BSD #freeBSD #midnightBSD #ghostBSD #programming #distribution #technology #OpenSource
Is there a free and open alternative to LucidChart? Is their marketing campaign as awesome as diagramming different kinds of dogs? Please let me know.
"We’re all grown up now! AlternativeTo is turning 18 today 🎈🎂"
"Hey everyone, we just wanted to stop by and share the crazy news thatAlternativeTo is turning 18 years old today🥳 That is a bit wild to think about, but it technically means we are old enough to drink in quite a few parts of the world, right?"
https://alternativeto.net/news/2026/3/we-re-all-grown-up-now-alternativeto-is-turning-18-today---/
The 12th call of #NGIZero Commons Fund is still open! 🤓 Deadline: April 1, 2026.
See the list of #activities #eligible for financial support:
✅ scientific research
✅ design & development of free and #opensource software and #openhardware
✅ validation / constructive inquiry into existing or novel technical solutions
✅ software engineering aimed at adapting to new usage areas / improving software quality
✅ etc.
Find more 👉 https://nlnet.nl/commonsfund/eligibility/ - and apply for funding! 🎯
#NGI #NGI0 #FOSS @nlnet
Maintaining open source projects is mostly a thankless task, but very occasionally a very kind soul drops their appreciation and thanks, and it really does make your day 🥰
▶️ Take a moment sometimes to thank the maintainers of open source projects you value!