Infrastructure as Code (IaC): Building Reliable Systems with Code – TheLinuxCode
I still remember the day a minor security patch took down an entire staging cluster. Nothing dramatic—just a few manual tweaks on “that one server.” But the environment never matched production again, and the team lost two days chasing a phantom bug. That was my turning point: if infrastructure matters as much as application code, […]
Docker lazy loading at Grab: Accelerating container startup times
Large container images were causing slow cold starts and poor auto-scaling for Grab's data platforms. This post explores how we implemented Docker image lazy loading with Seekable OCI (SOCI) technology, to achieve faster image pulls and startup times. The blog discusses how lazy loading works, the technology behind SOCI and eStargz, and finally how this configuration delivered a 60% improvement in download times.
How do I configure copyparty on Synology if I want to share existing shared folders? · 9001/copyparty · Discussion #414
I would rather use copyparty to browse the files I have on my Synology DiskStation than log into Synology's homepage and use their crappy DSM File Station. However, I'm not sure how I would configu...
Setting up a VPC Route Server with Pulumi - Scott's Weblog - The weblog of an IT pro focusing on cloud computing, Kubernetes, Linux, containers, and networking
If you need to work with BGP in your AWS VPCs—so that BGP-learned routes can be injected into a VPC route table—then you will likely need a VPC Route Server. While you could set up a VPC Route Server manually, what’s the fun in that? In this post, I will walk you through a Pulumi program that will set up a VPC Route Server. Afterward, I will discuss some ways you could check the functionality of the VPC Route Server to show that it is indeed working as expected.
muzi ᴡᴏʀᴋꜱ makes tools for your adventures, wherever they make take you. Our Meshtastic devices based on open source, off-grid, decentralized, mesh network built to run on affordable, low-power devices. Your one stop shop for overlanding, hiking, rock climbing, skiing, snowboarding, travel, urban adventures and more.
Your new project really could use a block device for Linux. File systems are easy to do with FUSE, but that’s sometimes too high-level. But a block driver can be tough to write and debug, esp…
Everything you need from a Managed SIEM, nothing you don’t. We cut complexity and unpredictable pricing with 24/7 managed security. Flip the script today.
Intel Wireless setup on fresh nixos install - Help - NixOS Discourse
I cannot get wifi to work on a fresh nixos install. Hardware: Dell Latitude E7250. Ethernet connection works out-of-the-box. Desktop Env: Budgie configuration.nix (extract) users.users.xa = { isNormalUser = true; description = "xa"; shell = pkgs.fish; extraGroups = [ "networkmanager" "wheel" ]; packages = with pkgs; [ ]; }; nixpkgs.config.allowUnfree = true; networking.networkmanager.enable = true; networking.wireless.enable = false; # The wiki seems to say that...