cloud J
638 posts


@cloud_sec_J @AltSchoolAfrica Congrats, I’m resuming first semester on Monday.
I’ll be in your DMs anytime. 🤤
English

Another semester down, more cloud skills are unlocked! 🔓 Big thanks to the @AltSchoolAfrica team for the solid curriculum. We keep moving, we keep pushing forward! 🚀📈 #CloudEngineering #TechAfrica #AltSchool

English
cloud J أُعيد تغريده
cloud J أُعيد تغريده
cloud J أُعيد تغريده

It's time to understand the future of money. @AltSchoolAfrica and @LunoGlobal are partnering to offer you a fully funded scholarship.
English
cloud J أُعيد تغريده

Big news! 🚀 Applications for the upcoming Baraka 2025 Cohort are officially open!
If you’ve been thinking about diving into tech, leveling up your skills, or just learning something new, now’s your chance!
We’ve got courses designed to get you prepped for the digital world and ready to crush it. 🙌
Don’t sleep on this – apply now at altschoolafrica.com!

English
cloud J أُعيد تغريده
cloud J أُعيد تغريده

We launched suoops.com January 2026 — thank God how far we have come. 🙏
In just weeks:• 695 registered businesses• 986 invoices created• ₦45M+ revenue tracked• Real SMEs getting paid faster (avg ~2 days)Still early. Still building. 🚀Invoice → Get Paid → Stay in Control.

English
cloud J أُعيد تغريده
cloud J أُعيد تغريده
cloud J أُعيد تغريده
cloud J أُعيد تغريده
cloud J أُعيد تغريده
cloud J أُعيد تغريده
cloud J أُعيد تغريده

GitHub Actions Survival Guide
GitHub Actions automates your CI/CD - turning commits into deployable apps. Here’s how it plays out for a typical FastAPI project 👇
1️⃣ Commit Push - You push code to GitHub; the workflow in .github/workflows/ci.yml is triggered.
2️⃣ Workflow - Defines one or more jobs that describe your pipeline (build, test, deploy).
3️⃣ Job - Runs in a fresh runner (a GitHub-hosted VM or self-hosted machine). Each job has multiple steps.
4️⃣ Checkout Code - The first step pulls your FastAPI source code into the runner.
5️⃣ Caching - Dependencies (e.g., pip packages, Docker layers) are restored to speed up builds.
6️⃣ Install Dependencies - The runner sets up Python and installs your project’s requirements.
7️⃣ Unit Tests - pytest runs your FastAPI test suite; results determine build success.
8️⃣ Docker Build - A Docker image is built for your app (often tagged with the commit SHA).
9️⃣ Push to Registry - The image is pushed to a container registry (like Docker Hub or GHCR).
🔟 (Optional) Deploy Step — The workflow can trigger a deployment (to Kubernetes, ECS, etc.).
From Commit ➜ Workflow ➜ Job ➜ Runner ➜ Steps ➜ Cache ➜ Test ➜ Build ➜ Deploy — that’s CI/CD the GitHub Actions way.

English














