<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>Forem: Christian Ahrweiler</title>
    <description>The latest articles on Forem by Christian Ahrweiler (@atec-systems).</description>
    <link>https://forem.com/atec-systems</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3695865%2F85b7dd95-c642-4109-89da-8f06805c1d61.png</url>
      <title>Forem: Christian Ahrweiler</title>
      <link>https://forem.com/atec-systems</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/atec-systems"/>
    <language>en</language>
    <item>
      <title>I Built a Mac App That Turns Any FTP Server Into a Native macOS Drive </title>
      <dc:creator>Christian Ahrweiler</dc:creator>
      <pubDate>Sat, 28 Feb 2026 16:19:06 +0000</pubDate>
      <link>https://forem.com/atec-systems/i-built-a-mac-app-that-turns-any-ftp-server-into-a-native-macos-drive-3hna</link>
      <guid>https://forem.com/atec-systems/i-built-a-mac-app-that-turns-any-ftp-server-into-a-native-macos-drive-3hna</guid>
      <description>&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fh14v6oo3rj6z1m6bbhx1.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fh14v6oo3rj6z1m6bbhx1.png" alt=" " width="800" height="400"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I built myCloudDrive — a macOS menu bar app that connects to your own server via SFTP, FTPS, or WebDAV and mounts it as a real drive in Finder. No cloud provider, no subscription, no middleman. Your files stay on your server.  The Problem&lt;/p&gt;

&lt;p&gt;I have files on my VPS. I have files on shared hosting. I have files on a NAS. Every time I need something, it's the same dance: open Transmit or Cyberduck, connect, navigate, download, edit, re-upload.&lt;/p&gt;

&lt;p&gt;What I actually wanted was simple: my server showing up in Finder like a USB drive.&lt;/p&gt;

&lt;p&gt;macOS has had "Connect to Server" for years, but it's flaky, disconnects randomly, and doesn't handle FTPS at all. Third-party mount tools exist but most are slow network filesystems that choke on large files.&lt;br&gt;
I wanted something different: a local drive that syncs — fast local reads, background sync to the server, works offline.  The Architecture&lt;/p&gt;

&lt;p&gt;myCloudDrive runs as a menu bar app and does three things:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Creates a sparse disk image and mounts it at /Volumes/myCloudDrive — it shows up in Finder's sidebar under Locations, just like an external drive&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Syncs bidirectionally with your server using a three-way merge algorithm (local state vs. remote state vs. journal of last known sync)&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Watches for changes via FSEvents and syncs automatically within seconds&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The sync engine supports three protocols:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;SFTP (SSH) — via libssh2&lt;/li&gt;
&lt;li&gt;FTPS (FTP over TLS) — via curl&lt;/li&gt;
&lt;li&gt;WebDAV (HTTP/HTTPS) — via URLSession&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Why Not the Mac App Store?&lt;/p&gt;

&lt;p&gt;I tried. The app's architecture is fundamentally incompatible with the MAS sandbox:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;hdiutil (creates the disk image) — sandboxed apps can't execute system binaries&lt;/li&gt;
&lt;li&gt;/usr/bin/curl (FTPS) — same restriction&lt;/li&gt;
&lt;li&gt;FSEventStream on /Volumes/ — sandboxed apps can't watch paths outside their container&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I also attempted Apple's File Provider extension (the "proper" way to add virtual filesystems on macOS). After weeks of fighting its poorly documented, buggy API, I abandoned it. The sparse disk image approach just works.&lt;/p&gt;

&lt;p&gt;myCloudDrive is notarized by Apple and distributed directly from myclouddrive.app. No Gatekeeper warnings, no sketchy unsigned binary. Many great Mac apps ship this way — Transmit itself left the MAS years ago.&lt;/p&gt;

&lt;p&gt;Privacy by Architecture&lt;/p&gt;

&lt;p&gt;This isn't a feature toggle. It's how the app is built:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;No account creation. You enter your server credentials, that's it.&lt;/li&gt;
&lt;li&gt;No cloud relay. The app connects directly to your server. Traffic never touches a third-party service.&lt;/li&gt;
&lt;li&gt;No analytics, no tracking, no telemetry. Zero outbound connections except to your own server.&lt;/li&gt;
&lt;li&gt;Your files never leave your infrastructure.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Try It&lt;/p&gt;

&lt;p&gt;&lt;a href="https://myclouddrive.app" rel="noopener noreferrer"&gt;myclouddrive.app&lt;/a&gt; — $24.99, one-time purchase, no subscription.&lt;br&gt;
Works with any SFTP, FTPS, or WebDAV server.&lt;br&gt;
Your VPS, your NAS, your shared hosting. Your files, your drive.&lt;/p&gt;

</description>
      <category>cloud</category>
      <category>ftp</category>
      <category>sftp</category>
      <category>webdev</category>
    </item>
    <item>
      <title>Introducing myCloudDrive — Turn Any FTP Account Into a Native macOS Drive</title>
      <dc:creator>Christian Ahrweiler</dc:creator>
      <pubDate>Wed, 25 Feb 2026 11:18:19 +0000</pubDate>
      <link>https://forem.com/atec-systems/introducing-myclouddrive-turn-any-ftp-account-into-a-native-macos-drive-3k0j</link>
      <guid>https://forem.com/atec-systems/introducing-myclouddrive-turn-any-ftp-account-into-a-native-macos-drive-3k0j</guid>
      <description>&lt;p&gt;myCloudDrive is a macOS app that turns any FTPS or SFTP account into a native drive in Finder. Your server appears like an external disk, ready for drag-and-drop access.&lt;/p&gt;

&lt;p&gt;Whether it’s web hosting, a VPS, a NAS, or client infrastructure — if it supports secure FTP, it works. Your files stay exactly where they are. myCloudDrive simply connects your Mac directly to your existing storage, giving you full control without vendor lock-in or subscriptions.&lt;/p&gt;

&lt;p&gt;Your storage. Your server. Native on macOS.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://myclouddrive.app/" rel="noopener noreferrer"&gt;https://myclouddrive.app/&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>🚀 ATECmap — Cookie-Free, Privacy-First Web Maps</title>
      <dc:creator>Christian Ahrweiler</dc:creator>
      <pubDate>Tue, 06 Jan 2026 16:13:37 +0000</pubDate>
      <link>https://forem.com/atec-systems/atecmap-cookie-free-privacy-first-web-maps-56n7</link>
      <guid>https://forem.com/atec-systems/atecmap-cookie-free-privacy-first-web-maps-56n7</guid>
      <description>&lt;p&gt;Embedding maps on your site often means loading trackers, cookies, and third-party scripts — which can slow pages and trigger GDPR consent banners. What if you could embed a map&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;❌ No cookies, no tracking, no logging — ever. &lt;/li&gt;
&lt;li&gt;🔐 GDPR / DSGVO compliant by design — no consent banner required. &lt;/li&gt;
&lt;li&gt;⚙️ Provides map data you can embed anywhere or use via API. &lt;/li&gt;
&lt;li&gt;🧭 Supports custom map icons and locations. &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;For devs, this means you can add rich location features to your site without worrying about intrusive trackers or slowing down performance.&lt;/p&gt;

&lt;p&gt;🧠 Why This Matters&lt;/p&gt;

&lt;p&gt;Most embedded maps pull from major providers but often at the cost of user privacy (tracking pixels, cookies, etc.). With ATECmap, all the map tiles and interactions are served without third-party tracking, keeping you and your users compliant without annoying consent UIs. &lt;/p&gt;

&lt;p&gt;It’s especially helpful for:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Websites that must stay clean and compliant (GDPR focus)&lt;/li&gt;
&lt;li&gt;Projects where user privacy and minimal footprint are priorities&lt;/li&gt;
&lt;li&gt;Devs who want an alternative to big map providers without trade-offs&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://atecmap.com" rel="noopener noreferrer"&gt;https://atecmap.com&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>🚀 ZeroConsent (ZCA) — Ditch the Cookie Banner, Keep the Trust</title>
      <dc:creator>Christian Ahrweiler</dc:creator>
      <pubDate>Tue, 06 Jan 2026 15:09:50 +0000</pubDate>
      <link>https://forem.com/atec-systems/zeroconsent-zca-ditch-the-cookie-banner-keep-the-trust-3f1c</link>
      <guid>https://forem.com/atec-systems/zeroconsent-zca-ditch-the-cookie-banner-keep-the-trust-3f1c</guid>
      <description>&lt;p&gt;Almost every site in the EU feels forced into the “cookie banner” treadmill — blocking content until a user clicks a confusing choice, or polluting analytics with consent noise. But what if you didn’t need a banner at all? 💭&lt;/p&gt;

&lt;p&gt;Introducing Zero-Consent Architecture (ZCA) — a new compliance approach and certification offered at zeroconsent.eu that helps you build privacy-first sites that don’t set non-essential trackers before consent. The result: no cookie banner, faster pages, and provable privacy by design. &lt;/p&gt;

&lt;p&gt;&lt;a href="https://zeroconsent.eu" rel="noopener noreferrer"&gt;https://zeroconsent.eu&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;🧠 What ZCA Is&lt;/p&gt;

&lt;p&gt;Zero-Consent Architecture is about:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;❌ No non-essential cookies or identifiers before consent&lt;/li&gt;
&lt;li&gt;🔒 No tracking, fingerprinting, or pop-ups by default&lt;/li&gt;
&lt;li&gt;📜 A public ZCA Certificate you can link on your site&lt;/li&gt;
&lt;li&gt;⚡ Better UX and performance — fewer banners, fewer blockers&lt;/li&gt;
&lt;li&gt;✅ Compliance based on what actually happens on your domain&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Instead of layering a consent banner over existing trackers, ZCA flips it: if you aren’t setting anything that requires consent, you don’t interrupt users. You prove it. &lt;/p&gt;

&lt;p&gt;📈 Why This Matters&lt;/p&gt;

&lt;p&gt;Under GDPR and related EU rules, tracking cookies and identifiers generally require freely given, informed, specific consent before they’re set. Banners became the default workaround — but they often annoy users, slow sites, and create legal ambiguity.&lt;/p&gt;

&lt;p&gt;Zero-Consent Architecture takes a different path: compliance by design, not by overlay. That reduces legal surface area and improves speed and trust — no modal, no nag screen, and no “consent fatigue.”&lt;/p&gt;

&lt;p&gt;&lt;a href="https://zeroconsent.eu" rel="noopener noreferrer"&gt;https://zeroconsent.eu&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>🚀 WP Mega Cache — Supercharge Your WordPress Performance</title>
      <dc:creator>Christian Ahrweiler</dc:creator>
      <pubDate>Tue, 06 Jan 2026 15:06:42 +0000</pubDate>
      <link>https://forem.com/atec-systems/wp-mega-cache-supercharge-your-wordpress-performance-45if</link>
      <guid>https://forem.com/atec-systems/wp-mega-cache-supercharge-your-wordpress-performance-45if</guid>
      <description>&lt;p&gt;Slow page loads are one of the biggest pains for WordPress sites — they hurt SEO, increase bounce rates, and frustrate users. Caching plugins solve this by serving static versions of pages instead of rebuilding every request. That drastically reduces load time and server resource usage. &lt;/p&gt;

&lt;p&gt;Today I’m excited to share WP Mega Cache — a fast, flexible page cache plugin designed to get WordPress sites super responsive with minimal configuration. &lt;/p&gt;

&lt;p&gt;&lt;a href="https://wpmegacache.com" rel="noopener noreferrer"&gt;https://wpmegacache.com&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;⚡ What WP Mega Cache Does&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;🔁 Extremely low response times — caching can drop processing from ~130 ms to ~0.25 ms in real cases. &lt;/li&gt;
&lt;li&gt;🧠 8 storage backends — APCu, Redis, Memcached, Disk, MariaDB, MySQL and more. &lt;/li&gt;
&lt;li&gt;🛍 WooCommerce support &amp;amp; custom post types ⚡ &lt;/li&gt;
&lt;li&gt;☁️ CDN integrations (Cloudflare, Bunny.net) for global delivery. &lt;/li&gt;
&lt;li&gt;🗣 Multilingual support (Polylang, WPML, TranslatePress). &lt;/li&gt;
&lt;li&gt;🧹 HTML minify, cache priming, and more performance tweaks. &lt;/li&gt;
&lt;li&gt;📦 Free basic version + optional one-time Pro license (no subs). &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;🧠 Why This Matters&lt;/p&gt;

&lt;p&gt;A good cache plugin doesn’t just store files — it improves server speed, reduces CPU and memory usage, and delivers content faster for your visitors. That’s crucial for SEO, Core Web Vitals, and overall UX. &lt;/p&gt;

&lt;p&gt;WP Mega Cache focuses on real performance, with advanced storage options and simple setup — even on shared hosting.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://wpmegacache.com" rel="noopener noreferrer"&gt;https://wpmegacache.com&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>🚀 EMDR.chat — Secure Teletherapy with Integrated EMDR Stimulation</title>
      <dc:creator>Christian Ahrweiler</dc:creator>
      <pubDate>Tue, 06 Jan 2026 15:04:01 +0000</pubDate>
      <link>https://forem.com/atec-systems/emdrchat-secure-teletherapy-with-integrated-emdr-stimulation-1l1o</link>
      <guid>https://forem.com/atec-systems/emdrchat-secure-teletherapy-with-integrated-emdr-stimulation-1l1o</guid>
      <description>&lt;p&gt;EMDR (Eye Movement Desensitization and Reprocessing) is a structured psychotherapy technique used to help clients process and heal from traumatic memories and emotional distress. It involves bilateral stimulation (like guided eye movements or visuals) while working through trauma with a trained therapist. &lt;/p&gt;

&lt;p&gt;Today I’m excited to share EMDR.chat — a teletherapy platform designed specifically for secure, reliable EMDR sessions online. &lt;a href="https://emdr.chat" rel="noopener noreferrer"&gt;https://emdr.chat&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;🧠 What It Is&lt;/p&gt;

&lt;p&gt;EMDR.chat is a peer-to-peer video conferencing tool tailored for EMDR therapists and clients:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;🔒 Secure, GDPR-compliant video calls&lt;/li&gt;
&lt;li&gt;🎯 Built-in EMDR visual stimulation tools — no external devices needed&lt;/li&gt;
&lt;li&gt;🌐 Works across browsers &amp;amp; OS (Chrome, Edge, Safari, Firefox, macOS, Windows, Linux)&lt;/li&gt;
&lt;li&gt;📅 Session scheduling &amp;amp; reusable session credentials&lt;/li&gt;
&lt;li&gt;⚡ Reliable P2P with relay fallback for connection stability&lt;/li&gt;
&lt;li&gt;💼 Designed for therapists — secure and private by default&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It removes the need for separate video tools + physical EMDR devices and lets clinicians focus on the therapy. &lt;/p&gt;

&lt;p&gt;🤝 Why this matters&lt;/p&gt;

&lt;p&gt;Virtual therapy has become an important part of accessible mental health care — and EMDR sessions are no exception. Online tools that support real EMDR workflows (including bilateral stimulation) help clinicians meet clients where they are without sacrificing safety or experience. &lt;/p&gt;

&lt;p&gt;EMDR itself is widely used and studied as a method to help people reduce distress related to traumatic memories and associated symptoms. &lt;/p&gt;

&lt;p&gt;👉 Check it out&lt;br&gt;
👉 &lt;a href="https://emdr.chat/" rel="noopener noreferrer"&gt;https://emdr.chat/&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>🚀 Beaver Tools — Tiny macOS Utilities That Just Work</title>
      <dc:creator>Christian Ahrweiler</dc:creator>
      <pubDate>Tue, 06 Jan 2026 15:00:40 +0000</pubDate>
      <link>https://forem.com/atec-systems/beaver-tools-tiny-macos-utilities-that-just-work-3p03</link>
      <guid>https://forem.com/atec-systems/beaver-tools-tiny-macos-utilities-that-just-work-3p03</guid>
      <description>&lt;p&gt;I’m excited to share Beaver Tools — a suite of small, focused macOS utilities built for everyday workflow tasks you’d actually use. They’re designed to be fast, native, and unobtrusive — no subs, no clutter, no trackers. &lt;br&gt;
Beaver Tools&lt;/p&gt;

&lt;p&gt;🧰 What It Is&lt;/p&gt;

&lt;p&gt;Beaver Tools is a growing collection of tiny macOS apps that solve common productivity problems without getting in your way. With a simple drag-and-drop or click:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;📦 Extract archives (ZIP, 7Z, RAR, ZST, or all in one) &lt;/li&gt;
&lt;li&gt;🖼 Convert and optimize images (AVIF, WebP, HEIC) &lt;/li&gt;
&lt;li&gt;🗑 Clean up leftover app files with App Remover &lt;/li&gt;
&lt;li&gt;🎨 Capture colors with Color Picker Pro &lt;/li&gt;
&lt;li&gt;🪄 Remove metadata or backgrounds from images &amp;amp; PDFs &lt;/li&gt;
&lt;li&gt;🎛 Convert video to GIF or audio — and more &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Everything runs locally on your Mac — files aren’t uploaded anywhere. &lt;/p&gt;

&lt;p&gt;📦 What Makes It Different&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Native macOS experience (no weird installers) &lt;/li&gt;
&lt;li&gt;Zero tracking or data collection &lt;/li&gt;
&lt;li&gt;Simple pricing (mostly one-time App Store purchases) &lt;/li&gt;
&lt;li&gt;Tools you can drop into your daily workflow without thinking &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;👉 Check it out: &lt;a href="https://beavertools.app/" rel="noopener noreferrer"&gt;https://beavertools.app/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Would love to hear what tools you wish existed on macOS — happy to discuss ideas or hear how you use Beaver Tools in your own workflow! 😊&lt;/p&gt;

</description>
      <category>productivity</category>
      <category>showdev</category>
      <category>tooling</category>
      <category>webdev</category>
    </item>
    <item>
      <title>🚀 fastTURN — Fast, Global STUN &amp; TURN for WebRTC &amp; SIP Apps</title>
      <dc:creator>Christian Ahrweiler</dc:creator>
      <pubDate>Tue, 06 Jan 2026 14:57:52 +0000</pubDate>
      <link>https://forem.com/atec-systems/fastturn-fast-global-stun-turn-for-webrtc-sip-apps-40mb</link>
      <guid>https://forem.com/atec-systems/fastturn-fast-global-stun-turn-for-webrtc-sip-apps-40mb</guid>
      <description>&lt;p&gt;Real-time communication (WebRTC, SIP, video calls, chat apps, apps with peer-to-peer connections) often needs more than just signaling — it needs reliable STUN/TURN servers to get traffic through NATs and firewalls. &lt;br&gt;
WebRTC&lt;/p&gt;

&lt;p&gt;I’m excited to share fastTURN — a professional, globally distributed STUN &amp;amp; TURN service built for speed, reliability, and simplicity. &lt;/p&gt;

&lt;p&gt;🚦 Why fastTURN&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;🌍 Global network with 24+ locations — auto-routes users to the closest server&lt;/li&gt;
&lt;li&gt;⚡ Optimized for super fast handshakes (STUN resolution avg ~49 ms)&lt;/li&gt;
&lt;li&gt;🔒 Secure connections with SSL support (optional)&lt;/li&gt;
&lt;li&gt;📈 Reliable uptime &amp;amp; bandwidth — 99.99% availability&lt;/li&gt;
&lt;li&gt;💸 Affordable plans + a free tier for testing/dev&lt;/li&gt;
&lt;li&gt;🔁 Works with SIP, ICE, WebRTC apps out of the box&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Whether you’re building video chat, VoIP, or any peer-to-peer app, this gives you the fallback connectivity infrastructure you need without hosting your own TURN servers. &lt;/p&gt;

&lt;p&gt;👉 Check it out: &lt;a href="https://fastturn.net/" rel="noopener noreferrer"&gt;https://fastturn.net/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Would love to hear:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;What real-time stack you’re using&lt;/li&gt;
&lt;li&gt;How you handle TURN/STUN now&lt;/li&gt;
&lt;li&gt;Pain points you’ve run into in production&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Happy to answer questions! 🚀&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Introducing atec Plugins — A Introducing atec Plugins — High-Performance, Handcrafted WordPress Plugin Suite</title>
      <dc:creator>Christian Ahrweiler</dc:creator>
      <pubDate>Tue, 06 Jan 2026 13:53:08 +0000</pubDate>
      <link>https://forem.com/atec-systems/introducing-atec-plugins-a-introducing-atec-plugins-high-performance-handcrafted-wordpress-1o6e</link>
      <guid>https://forem.com/atec-systems/introducing-atec-plugins-a-introducing-atec-plugins-high-performance-handcrafted-wordpress-1o6e</guid>
      <description>&lt;p&gt;WordPress plugins are how you extend your site’s functionality — from caching and SEO to backups and custom tools. &lt;/p&gt;

&lt;p&gt;I’ve been working on a set of WP plugins under atec Plugins that are built for speed, efficiency, and real-world use. All are handcrafted and optimized for minimal CPU footprint so they’re fast and lightweight even when combined. &lt;br&gt;
&lt;a href="https://atecplugins.com" rel="noopener noreferrer"&gt;https://atecplugins.com&lt;br&gt;
&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;What It Is&lt;/p&gt;

&lt;p&gt;atec Plugins is:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;🧰 A comprehensive suite of WordPress plugins&lt;/li&gt;
&lt;li&gt;⚡ Optimized for size, speed &amp;amp; memory — average CPU footprint under 1 ms&lt;/li&gt;
&lt;li&gt;🛠️ Built on a shared “atec-WP-plugin” framework to reduce bloat&lt;/li&gt;
&lt;li&gt;🧩 Fully multisite compatible and tested on Linux, Windows &amp;amp; macOS&lt;/li&gt;
&lt;li&gt;📦 Easy install via a free 1-Click-Install manager&lt;/li&gt;
&lt;li&gt;💡 Free basics + optional Pro lifetime license for advanced features&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;No subscription required &lt;/p&gt;

&lt;p&gt;What You Get&lt;/p&gt;

&lt;p&gt;A mix of essential, performance, security, and tools plugins, including (among others): &lt;br&gt;
atecplugins.com&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;CACHE-APCU &amp;amp; CACHE-INFO — effective object &amp;amp; page caching&lt;/li&gt;
&lt;li&gt;Backup &amp;amp; Database tools&lt;/li&gt;
&lt;li&gt;SMTP-Mail with DKIM support&lt;/li&gt;
&lt;li&gt;System-Info &amp;amp; Debug tools&lt;/li&gt;
&lt;li&gt;Anti-spam &amp;amp; Limit-Login security helpers&lt;/li&gt;
&lt;li&gt;Redirect manager, 404 tracker, SVG support&lt;/li&gt;
&lt;li&gt;CDN integrations (BunnyCDN, FoxyFy)&lt;/li&gt;
&lt;li&gt;Maintenance and admin helpers
…and a Pro package with 50+ valuable plugins at a one-time price. &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Why It Matters&lt;/p&gt;

&lt;p&gt;There’s a huge ecosystem of WordPress plugins, but many can be bloated, inefficient, or poorly maintained. &lt;br&gt;
WordPress.org&lt;/p&gt;

&lt;p&gt;atec Plugins aims for reliability, performance, and developer-friendly design — the stuff you actually want on production sites without the overhead. &lt;br&gt;
&lt;a href="https://atecplugins.com" rel="noopener noreferrer"&gt;https://atecplugins.com&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I’m iterating, improving compatibility, and adding new tools — so if you’re building or optimizing WordPress sites, give it a spin and tell me what you think. Built in the spirit of the&lt;/p&gt;

</description>
      <category>performance</category>
      <category>showdev</category>
      <category>tooling</category>
      <category>wordpress</category>
    </item>
    <item>
      <title>I’m Sharing ATEC Systems — Our Software &amp; Web Services + Dev Tools</title>
      <dc:creator>Christian Ahrweiler</dc:creator>
      <pubDate>Tue, 06 Jan 2026 13:21:37 +0000</pubDate>
      <link>https://forem.com/atec-systems/im-sharing-atec-systems-our-software-web-services-dev-tools-pe6</link>
      <guid>https://forem.com/atec-systems/im-sharing-atec-systems-our-software-web-services-dev-tools-pe6</guid>
      <description>&lt;p&gt;Over the past while I’ve been building and expanding a suite of tools and services under ATEC Systems — a software design and development company focused on modern web and app solutions.&lt;/p&gt;

&lt;p&gt;We build custom software, websites, web apps, and native apps — but we also publish helpful tools that you can use today.&lt;br&gt;
&lt;a href="//atec-systems.com"&gt;atec-systems.com&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;What ATEC Systems Does&lt;/p&gt;

&lt;p&gt;At its core, ATEC Systems is about creating tailored digital solutions:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;🧠 Custom Software — built to your needs and designed to evolve with your business.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;🌐 Websites &amp;amp; Web Apps — from WordPress to fully custom builds powered by modern frameworks.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;📱 Mobile/Desktop Apps — native and standalone apps for Android, iOS, and macOS.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Everything is crafted with performance, usability, and scalability in mind.&lt;/p&gt;

&lt;p&gt;Besides client projects, we maintain a set of developer-centric services:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;🛠 Network &amp;amp; Infrastructure tools like servers, CDN, DNS, and routing utilities.&lt;/li&gt;
&lt;li&gt;🗺️ GDPR-compliant maps without tracking.&lt;/li&gt;
&lt;li&gt;📸 Screenshot/image sharing by link.&lt;/li&gt;
&lt;li&gt;💬 WebRTC &amp;amp; video communication helpers.&lt;/li&gt;
&lt;li&gt;🔁 Fast TURN services for SIP, ICE &amp;amp; RTC workflows.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;These are available to use or integrate into your workflow without heavy setup.&lt;/p&gt;

&lt;p&gt;Why This Matters&lt;/p&gt;

&lt;p&gt;I’ve been in the trenches solving real problems for clients — performance, security, maintainability, UX — and a lot of the tools we’ve built help us day to day. I figured they’d help others too.&lt;/p&gt;

&lt;p&gt;Whether you need a fast micro-utility or a full custom build, we’re exploring practical, developer-friendly ways to ship better software.&lt;/p&gt;

&lt;p&gt;Try It &amp;amp; Share Feedback&lt;/p&gt;

&lt;p&gt;👉 &lt;a href="https://atec-systems.com/" rel="noopener noreferrer"&gt;https://atec-systems.com/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;If something doesn’t quite fit your workflow yet, or you have ideas for improvement — I’d love to hear them. Built in the spirit of DEV Community 💡&lt;/p&gt;

</description>
    </item>
    <item>
      <title>I Built FoxyFy — A Modern, Performance-First Web Platform</title>
      <dc:creator>Christian Ahrweiler</dc:creator>
      <pubDate>Tue, 06 Jan 2026 09:41:59 +0000</pubDate>
      <link>https://forem.com/atec-systems/i-built-foxyfy-a-modern-performance-first-web-platform-58ll</link>
      <guid>https://forem.com/atec-systems/i-built-foxyfy-a-modern-performance-first-web-platform-58ll</guid>
      <description>&lt;p&gt;If you’ve ever wrestled with complex server stacks, slow CDNs, or fragmented DNS tooling, you’ve been there: too many moving parts and too many knobs to turn.&lt;/p&gt;

&lt;p&gt;I wanted something that feels fast, simple, and developer-friendly — from the edge to DNS to core infrastructure.&lt;/p&gt;

&lt;p&gt;So I built FoxyFy. &lt;br&gt;
&lt;a href="//foxyfy.net"&gt;foxyfy.net&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;What FoxyFy Is&lt;/p&gt;

&lt;p&gt;FoxyFy is a 6th-generation web platform that gives you:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;⚡ Ultra-fast web server with HTTP/3 and hot reload&lt;/li&gt;
&lt;li&gt;🌍 Global CDN built for performance and simplicity&lt;/li&gt;
&lt;li&gt;🔁 DNS resolver and DynDNS tools&lt;/li&gt;
&lt;li&gt;🧰 Connectivity and network utilities (speed, ping, WebRTC)&lt;/li&gt;
&lt;li&gt;🔎 Essentials like MyIP, Geo lookup, and maps&lt;/li&gt;
&lt;li&gt;—all in one place. &lt;/li&gt;
&lt;li&gt;foxyfy.net&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It’s designed to accelerate your web presence without wrestling with 5+ different services.&lt;/p&gt;

&lt;p&gt;Why I Built It&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Traditional stacks often mean:&lt;/li&gt;
&lt;li&gt;juggling web servers, CDNs, DNS, utilities separately&lt;/li&gt;
&lt;li&gt;heavy tooling and dashboards&lt;/li&gt;
&lt;li&gt;inconsistent performance and complex configs&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;FoxyFy’s goal is to combine these core pieces into a cohesive, lightweight platform that scales nicely and remains easy to use. &lt;br&gt;
foxyfy.net&lt;/p&gt;

&lt;p&gt;Who It’s For&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Devs managing their own backend infrastructure&lt;/li&gt;
&lt;li&gt;Teams who want simpler global performance tools&lt;/li&gt;
&lt;li&gt;Projects that need DNS, CDN, and edge tooling in one place&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Try It / Feedback Welcome&lt;/p&gt;

&lt;p&gt;👉 &lt;a href="https://foxyfy.net/" rel="noopener noreferrer"&gt;https://foxyfy.net/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This is an ongoing effort — if you have thoughts on features, UX, performance trade-offs, or workflows that aren’t covered yet, I’d love to hear them.&lt;/p&gt;

</description>
      <category>performance</category>
      <category>showdev</category>
      <category>tooling</category>
      <category>webdev</category>
    </item>
    <item>
      <title>I Built screen2.link to Share Screenshots Without Uploading Them Everywhere</title>
      <dc:creator>Christian Ahrweiler</dc:creator>
      <pubDate>Tue, 06 Jan 2026 09:38:08 +0000</pubDate>
      <link>https://forem.com/atec-systems/i-built-screen2link-to-share-screenshots-without-uploading-them-everywhere-4i7o</link>
      <guid>https://forem.com/atec-systems/i-built-screen2link-to-share-screenshots-without-uploading-them-everywhere-4i7o</guid>
      <description>&lt;p&gt;Sharing a screenshot sounds simple — until it isn’t.&lt;/p&gt;

&lt;p&gt;Most options mean:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Uploading to a third-party service&lt;/li&gt;
&lt;li&gt;Creating an account&lt;/li&gt;
&lt;li&gt;Leaving images around forever&lt;/li&gt;
&lt;li&gt;Accidentally oversharing more than you intended&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I wanted something faster and more disposable.&lt;/p&gt;

&lt;p&gt;So I built &lt;a href="//screen2.link"&gt;screen2.link&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;What it does&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;📸 Share screenshots with a single link&lt;/li&gt;
&lt;li&gt;🕳️ One-time or temporary access&lt;/li&gt;
&lt;li&gt;⏳ Optional expiration&lt;/li&gt;
&lt;li&gt;🚫 No accounts, no feeds, no tracking&lt;/li&gt;
&lt;li&gt;⚡ Lightweight and fast&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Open it, view it, and it’s gone.&lt;/p&gt;

&lt;p&gt;Why I made it&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Screenshots are often:&lt;/li&gt;
&lt;li&gt;Debug output&lt;/li&gt;
&lt;li&gt;Error messages&lt;/li&gt;
&lt;li&gt;Internal tools&lt;/li&gt;
&lt;li&gt;Temporary context&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;They don’t need to live forever in chat history, cloud albums, or random image hosts.&lt;/p&gt;

&lt;p&gt;This is for the “can you look at this real quick?” moments.&lt;/p&gt;

&lt;p&gt;Who it’s for&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Developers sharing bugs or logs&lt;/li&gt;
&lt;li&gt;Teams collaborating asynchronously&lt;/li&gt;
&lt;li&gt;Anyone who wants ephemeral screenshots instead of permanent uploads&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Try it / feedback welcome&lt;/p&gt;

&lt;p&gt;👉 &lt;a href="https://screen2.link/" rel="noopener noreferrer"&gt;https://screen2.link/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I’m actively iterating and would love feedback — especially around UX, edge cases, or workflows you wish this fit into better.&lt;/p&gt;

&lt;p&gt;Built and shared in the spirit of the DEV Community ❤️&lt;/p&gt;

</description>
      <category>privacy</category>
      <category>productivity</category>
      <category>showdev</category>
      <category>tooling</category>
    </item>
  </channel>
</rss>
