kaitlinseng.bsky.social
@kaitlinseng.bsky.social
GitHub Actions: GitHub-hosted vs Self-hosted Runners Cost Analysis 💸

Wondering about costs when you exceed GitHub's free CI/CD quota? Let's compare GitHub-hosted runners against self-hosting on AWS EC2! 🧵⬇️

#DevOps #GitHub #AWS
November 5, 2025 at 11:45 PM
Demystifying GitHub-Hosted Runners: The Engines Behind Your Actions ⚙️

GitHub-Hosted Runners power your CI/CD workflows across:

🐧 Linux
🪟 Windows
🍎 macOS

All run on robust Azure VMs, with dedicated data centers for macOS.

#GitHubActions #DevOps
November 4, 2025 at 1:54 PM
1/7 💡 Did you know? GitHub Actions isn't just powerful - it's FREE for many situations!
GitHub Actions is GitHub's built-in tool for automating builds, tests, and deployments.
November 3, 2025 at 1:56 PM
Have you logged into GitHub today? They've updated the color scheme to be festive. Happy Halloween!
October 31, 2025 at 2:32 PM
Did you experience any issues accessing web applications yesterday? It felt like déjà vu with so much of the internet affected by the AWS outage early last week, but this time it was Microsoft's Azure cloud service. Link to the official Preliminary Report in thread 🧵⬇️
October 30, 2025 at 1:26 PM
1/5 How I'm Actually Using AI in My Development Workflow 🤖

I recently heard someone describe AI as "spicy autocomplete," and after chuckling, I realized it's a perfect description of how I benefit from AI daily.
October 29, 2025 at 1:55 PM
Today's bash regex puzzle: Can you spot the problem? 🤔

Goal: Match alphanumeric tokens with dots, hyphens, and underscores. Examples:
abc123.test-token_example
my-awesome.token_123
user_token-2.0

First attempt:
$token =~ [A-Za-z0-9.\-_]+

(answers in thread...)
October 28, 2025 at 6:29 PM