"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."
#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
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.
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.
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...)
🖥️ CLI11 — Command line parsing for C++ without the pain
Every server tool, every daemon, every diagnostic utility needs command line arguments. And every C++ developer has at some point wrestled with getopt, manually parsed argv, or pulled in Boost just for program_options.
There’s a better way. 🎯
📦 Header-only & C++11
Drop in a single header, done. No build system changes, no extra dependencies, works on any compiler supporting C++11 and up. Perfect for embedded Linux targets and minimal server builds where you control the toolchain.
⚙️ The basics are refreshingly clean:
app.add_option("-p,--port", port, "Port to listen on");
app.add_flag("-v,--verbose", verbose, "Enable verbose output");
CLI11_PARSE(app, argc, argv);
That’s it. Types, defaults, descriptions — all in one line per argument.
🌳 Subcommands — for tools that grow
When your binary does more than one thing, CLI11 handles it naturally:
auto start = app.add_subcommand("start", "Start the server");
auto stop = app.add_subcommand("stop", "Stop the server");
Same pattern as git, docker, systemctl. Your users already know how it works.
🛡️ And because it’s CLI11, you get automatic –help, type validation, and useful error messages for free — without writing a single line of parsing logic yourself.
🐧 Less boilerplate. More server.
SailShark for #SailfishOS!
A native Silica frontend for tshark — because why should desktop users have all the fun?
✅ Live packet capture
✅ Protocol colour coding
✅ Choose your interface
✅ Capture filters
✅ Save to .pcapng
✅ Hex + ASCII dump per packet
Still rough around the edges but fully usable. Built with Qt/QML on top of Wireshark 3.6.24.
Source dropping soon. Feedback welcome! 🐾
#Wireshark #NetworkAnalysis #Linux #MobileLinux #OpenSource #Qt
Offene Formate gewinnen: EU-Kommission reagiert auf LibreOffice-Kritik
Nach Kritik der Document Foundation hat die EU-Kommission das Feedback-Template für die CRA-Leitlinien auch als ODS-Datei bereitgestellt.
#CRA #DigitaleSouveränität #DocumentFoundation #EU #IT #LibreOffice #Netzpolitik #ODF #OfficeSuite #OpenSource #news
📺 https://peer.adalta.social/w/oFkYwxD2kc5P6xybfVDG6e
🔗 [🇩🇪🇺🇸🇫🇷](https://p4u.xyz/ID_P6NCNAPK/1)
🔗 [ℹ️](https://negativepid.blog/global-open-source-platforms-and-cloud/")
The global software ecosystem is now fundamentally dependent on a complex, corporate-backed open-source infrastructure that balances innovation with profound strategic tensions.
An analysis of how the FBI traced a cryptowallet connected to the Bitfinex hack. As anonymous crypto sometimes seems, its still very traceable by connecting the dots #osint #privacy #hack #opensource #cybersecurity https://privacyinsightsolutions.com/blog/bitfinex-fbi-wallet-blockchain-trace
🔍 Optimizing base64 decoding in jwt-cpp
jwt-cpp is a popular header-only C++ library for creating and verifying JSON Web Tokens. Clean, lightweight, no heavy dependencies — exactly the kind of lib you want in a Linux server stack.
While working with it I noticed a performance issue in the base64 decoding path. 🐛
⚙️ The old approach:
For every character in the input, the decoder called std::find_if to search linearly through a 64-char alphabet array.
→ O(n) per character lookup
→ Called for every single byte being decoded
→ A JWT with a large payload = a lot of unnecessary searching
🔧 The fix — a reverse lookup table:
Instead of searching, I precomputed a 256-entry lookup table. Each array index represents a byte value, each entry its base64 value — or -1 if invalid.
Decoding a character becomes a single array access:
auto index = rdata[static_cast<unsigned char>(symbol)];
→ O(1) per character lookup
→ No iteration, no comparisons
→ constexpr — lives in read-only memory, CPU cache friendly
📊 For JWT verification on a busy server this happens thousands of times per second. Small change, real impact.
👉 github.com/Thalhammer/jwt-cpp/commit/59cdb43
*Unpopular opinions:* :comfy_blob_cat:
The #Internet needs a "Great Reboot", IMHO, where:
- #Mastodon is the new IRC, X, Threads, Bluesky, LinkedIn, and Facebook
- #Deltachat is the new email and two-way email mailing list
- #RSS is the new one-way email mailing list
- static content generators (say, #Hugo, #Jekyll, etc) are the new web CMS'. No CDN, as they're so lightweight.
- #XMPP is the new #Discord - and no encryption is used in groups
- #Flarum is the new goto for a persisting, searchable support forum
- #Signal is for encrypted 1-to-1 chats and encrypted group chats (when none of the above suffice), as they get the encryption right in a very reliable way *for the group chat* (despite being a centralized service).
Bericht: Finanzinvestor EQT erwägt Verkauf von SUSE Linux
Investor EQT könnte den Linux-Pionier SUSE verkaufen und dafür bis zu sechs Milliarden US-Dollareinstreichen. SUSE gilt als möglicher Gewinner des KI-Booms.
Two #AI-related events over the past week — the #Chardet licensing controversy and legendary computer scientist #DonKnuth's shock over AI helping discover a theorem for a problem he'd not yet solved — demand a reckoning: precisely how creative is AI? https://reviews.ofb.biz/sa1401
#Creativity #Licensing #OpenSource #Python #DonaldKnuth #TAOCP #Claude
Trying to wrap my head around osc the command line for the openSUSE Build System.
Why on earth did they need to make it so complicated. Even the early days of git was easier to use than this. And they even did the cardinal sin of making it behave like svn in many aspects.
Ubuntu 26.04 LTS: Authd für Cloud-Authentifizierung offiziell verfügbar
Mit Ubuntu 26.04 LTS wird Authd erstmals offiziell über die Paketquellen verfügbar. Der Daemon erlaubt die Authentifizierung mit Cloud-Providern wie Microsoft.
Have You Ever Thought About Drones in MISP?
To better support the documentation and analysis of drone-related incidents, several new resources have been integrated into MISP.
#drone #drones #intelligence #misp #opensource #uavs #uav
🔗 https://www.misp-project.org/2026/03/10/have-you-ever-thought-about-drones-in-misp.html/
🤝 CH Open Hauptversammlung 2026
Gemeinsam blicken wir auf ein erfolgreiches Jahr für Open Source in der Schweiz zurück. Vielen Dank an alle Mitglieder für eure Unterstützung und dafür, dass ihr Innovation, Offenheit und Zusammenarbeit aktiv mitgestaltet.
📅 Montag, 23. März 2026, 🕓 ab 16:00 Uhr
📍 Mobiliar, Bundesgasse 35, Bern
Neben den statutarischen Traktanden erwartet euch eine spannende Keynote von Andreas Grütter (die Mobiliar) zum Thema „Umgang mit Technologie Risiken“ sowie ein Networking-Apéro zum Austausch mit der Community 🍸💬
👉 Wir freuen uns auf eure Teilnahme, jetzt anmelden: https://www.ch-open.ch/hauptversammlung-2026/
KI-Agent schürft heimlich Kryptowährung während des Trainings
Ein chinesischer KI-Agent sollte eigentlich trainiert werden. Stattdessen schürfte er heimlich Kryptowährung und baute Tunnelverbindungen ins Internet auf.
#Alibaba #IT #KünstlicheIntelligenz #OpenSource #Programmierung #Security #Wissenschaft #news
Subscribe to #opensource entries via RSS feed