Open Source keeps your business running, but most maintainers aren’t paid. It’s time to treat Open Source as a strategy, not a charity.
🔗 Read more: Open Source Office: How Open Source Can Be More Than Charity
https://www.korte.co/pf6q
#OpenSource #TechLeadership #Cybersecurity #DigitalTransformation
@ct_Magazin "KI-FOMO frisst Sicherheit" trifft es genau. MCP-Server werden ausgerollt, bevor irgendjemand fragt: Wer darf welches Tool aufrufen? Was passiert mit den Daten bevor sie das LLM erreichen? Das Protokoll selbst liefert keine Antworten darauf.
Deshalb bauen wir an ToolMesh — ein MCP-Gateway mit Autorisierung, Audit Trail und Output-Filtering. #MCP #Security #OpenSource
Save the Date: Open Source Multitudes – 03.–05. März 2027, Hannover.
Digitale Hochschullehre fußt auf Open-Source-Software. Gute Sache - eigentlich.
Aber die Software-Projekte sind selten dauerhaft abgesichert, Core-Entwicklung ist schwer planbar. Open Source Multitudes bringt alle zusammen, die daran arbeiten und das ändern wollen.
Unsere Website und der Newsletter sind live: https://open-source-multitudes.de/
#OpenSource #Hochschullehre #DigitaleSouveränität #FirstToot #Hochschule
• I Tried Apt Command's New Rollback Feature — Here’s How It Went
[It's FOSS] https://feed.itsfoss.com/link/24361/17316349/apt-3-2-release
• FFmpeg Introduces Vulkan-Accelerated 360 Degree Video Conversion
[Phoronix] https://www.phoronix.com/news/FFmpeg-360-Degree-Vulkan
• LibreOffice State of the Project (April 2025 – March 2026)
[The Document Fdn.] https://blog.documentfoundation.org/blog/2026/04/09/libreoffice-state-of-the-project/
#LogicielLibre #OpenSource #Libre
🐧 Actu logiciel libre du 09/04/2026
• CPU Ex0239 L'IA fait son cinéma, première partie
[LinuxFR Journaux] https://linuxfr.org/users/dascritch/journaux/cpu-ex0239-l-ia-fait-son-cinema-premiere-partie
• CPU Ex0239 L'IA fait son cinéma, première partie
[Le Journal du Hacker] https://cpu.dascritch.net/post/2026/04/09/Ex0239-L-IA-fait-son-cin%C3%A9ma%2C-premi%C3%A8re-partie
#LogicielLibre #OpenSource #Libre
Microsoft sospende gli account di progetti open source
La sospensione automatica degli account sviluppatore da parte di Microsoft ha colpito alcuni dei progetti #opensource più critici per la sicurezza degli utenti Windows. Tra i software coinvolti figurano strumenti fondamentali come #wireguard #veracrypt #memtest86 e #windscribeVPN tutti improvvisamente impossibilitati a pubblicare aggiornamenti e patch di sicurezza per la piattaforma #windows
https://www.tomshw.it/hardware/microsoft-blocca-sviluppatori-open-source-noti-2026-04-09
Our latest devlog video for our fantasy point and click, Aster Pebble and the Case of Bad Bureaucracy, is out now!
Watch it on:
PeerTube
https://makertube.net/w/icXcU7PbGDLjfzeBBmxXGy
YouTube
https://youtu.be/FBRDkIELXYU
#GameDev #IndieGame #GodotEngine #CozyGame #Godot #PixelArt #PointAndClick #Devlog #OpenSource #FOSS

I often get asked how to move from being a contributor to a maintainer in open source. My path to leadership wasn’t built on hundreds of PRs. It was built by staying longer than anyone else.
Read my latest post: https://dev.to/adiatiayu/from-helping-out-to-taking-ownership-the-art-of-sticking-around-55h1
#OpenSource #OpenSourceCommunity
force-fosses you. relicenses your ass to gpl 3.0. 🚀 📈 #OpenSource #FOSS
Il futuro di VeraCrypt su Windows è improvvisamente in bilico dopo la chiusura dell’account di firma. Ecco cosa sta succedendo davvero. #VeraCrypt #Sicurezza #Linux #OpenSource
The origins of open source culture
https://negativepid.blog/the-origins-of-open-source-culture/
#openSource #onlineCommunities #openSourceSoftware #linux #internetInfrastructure #IT #tech #coding #onlineGroups #openSourceProjects #forums
#Java EffectHandlers without the boilerplate?
In Higher-Kinded-J 0.4.1 — you define the what, the tooling generates the how.
You write this:
@EffectAlgebra
public sealed interface PaymentGatewayOp<A>
permits Authorise, Charge, Refund { ... }
It generates five classes:
✦ Kind marker + Witness — HKT plumbing
✦ KindHelper — safe widen/narrow conversions
✦ Functor — auto-detects your mapK method
✦ Ops + Bound — smart constructors for building programs
✦ Interpreter skeleton — abstract class with exhaustive switch
Composing multiple effects?
@ComposeEffects
public record AppEffects(
Class<GatewayOp<?>> gateway,
Class<FraudOp<?>> fraud,
Class<LedgerOp<?>> ledger) {}
This generates Inject factories, a composed Functor, a BoundSet, and an interpret() bridge. All type-safe. All compile-time checked.
You define records. You write interpreters. The processor handles everything in between.
👉 https://higher-kinded-j.github.io/latest/effect/effect_handlers_intro.html
#Java #DOP #FP #OpenSource #FunctionalProgramming