Skip to content

Instantly share code, notes, and snippets.

View AlexAtkinson's full-sized avatar
🚀
AI Powered DevOps

Alex Atkinson AlexAtkinson

🚀
AI Powered DevOps
  • Toronto
View GitHub Profile
@AlexAtkinson
AlexAtkinson / AI_Prompt_Vendor_Economics.md
Last active February 21, 2026 09:21
AI Prompt: Vendor Economics

[Year/Quarter] AI Vendor Profitability & Unit Economics1

Executive Summary

  1. The "Loss-Model" State
  • Current Market Trend: (e.g., Aggressive land-grab vs. focus on operational efficiency)
  • Primary Growth Driver: (e.g., Infrastructure scaling, R&D spend, or enterprise adoption)
  • The Profitability Split: Briefly distinguish between "Pure-Play Labs" (OpenAI/Anthropic) and "Ecosystem Providers" (Google/Meta/Microsoft).
@AlexAtkinson
AlexAtkinson / COMPLIANCE.md
Last active February 24, 2026 06:04
Compliance & InfoSec Primer

Compliance & InfoSec Primer

Important

Disclaimer: This IS NOT legal advice.

Until the mid-2010's the "technology industry" was widely considered to be unregulated, resulting in tremendous harm. The colloquialism "move fast and break things" is from these times, and despite being a proven travesty, continues to influence leadership across industry.

Fortunately, today, both data and related business operations are regulated.
Unfortunately, there are many in leadership roles who see the compliance-related fines and penalties as acceptable business risks -- especially as their expected tenure ostensibly limits personal exposure to said risks.

@AlexAtkinson
AlexAtkinson / AI_Prompt_Primers.md
Last active February 24, 2026 18:00
AI Prompt Primers

AI Prompt Primers

These primers are designed to improve user AIX, optimize AI cost, and bias toward ethical, legal, and organizationally approved engineering practices.

Prompt

Act as my engineering assistant. Your primary directive is to read, adhere to, and apply the rules defined in AI_Prompt_Primers.md located at:
https://gist.githubusercontent.com/AlexAtkinson/0967496361367d0279d1b70843e7b0e3/raw/AI_Prompt_Primers.md
Once you have processed the rules, begin by assessing this project and generating a prioritized TODO list."

@AlexAtkinson
AlexAtkinson / SDLC.md
Last active February 24, 2026 06:05
An overview of the SDLC, ALM, and CICD

SDLC, ALM, and CI/CD

RELATED: Git Branching Strategies, Versioning, Artifacting

These processes comprise the bulk of the technical footprint necessary for developing and releasing software products.

Important

Like Git, there are too few who understand this material -- especially in startups.
While this material may not initially be as appealing to non-technical leadership as shipping a feature, it becomes imperative with the first major outage, failed InfoSec audit, or data breach.

@AlexAtkinson
AlexAtkinson / Git_Branching_Strategies.md
Last active February 24, 2026 06:05
An actionable overview of branching strategies.

Git Branching Strategies

RELATED: SDLC, ALM, & SDLC, Versioning, Artifacting

From the merge hell of SVN and the early days of Git to the refined tactics we enjoy today, there have been many developments in branching strategies, but only a few remain relevant. This document covers these strategies as well as their adoption considerations.

Branching Strategies

The first three strategies are the most commonly used, with the fourth highlighting a critical anti-pattern, and the last being used for Linux kernel development; and some other large projects. Skip learning about the last two for now, but know that they exist.

@AlexAtkinson
AlexAtkinson / genpass2.sh
Created January 28, 2026 04:17
Password Generator v2
#!/usr/bin/env bash
# v1: https://gist.github.com/AlexAtkinson/7a60dc26a8dd94fb910e01529b379ae2
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# PW Material Generator
# Notes:
# - Used by genpass
# - Generates 20 characters per invocation
# - Takes ~1ms per character generated on an average
# system
# - Will _always_ lead with an ALPHA character
@AlexAtkinson
AlexAtkinson / iptables.md
Last active February 24, 2026 06:05
Guide: iptables

iptables

NOTICE: iptables is being deprecated. See nftables.

Architecture

Understanding the architecture of netfilters is helpful, but not necessary to make use of the information here.

@AlexAtkinson
AlexAtkinson / Ansible.md
Last active February 24, 2026 06:04
Ansible Cheat

Ansible Cheat Sheet

Stuff I forgot...

TODO: Remember the stuff that drove me nuts as a noob...

Personal Use Tactics

These tactics shouldn't be employed in production.

@AlexAtkinson
AlexAtkinson / Linux_Redirects.md
Last active February 24, 2026 06:05
Linux Redirects

Linux Redirects

Redirect operations are quite involved. Here are a few of the highlights:

  • The files: '/dev/std{in,out,err}', are symlinks to file descriptors.
  • File descriptors (aka file handles) are numbers that identify open files.
  • A file is an object that stores data, information, settings, or commands.
  • The numbers commonly seen in the redirect '2>&1' are file descriptors.
  • Running 'file /dev/std*' outputs: /dev/stdin: symbolic link to /proc/self/fd/0 /dev/stdout: symbolic link to /proc/self/fd/1
@AlexAtkinson
AlexAtkinson / genpass.sh
Last active January 28, 2026 04:17
Password Generator v1
#!/usr/bin/env bash
# v2: https://gist.github.com/AlexAtkinson/99e7eb85fdc95b36a1978e4e7e8e92ac
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# PW Material Generator
# Notes:
# - Used by genpass
# - Generates 20 characters per invocation
# - Takes ~1ms per character generated on an average
# system
# - Will _always_ lead with an ALPHA character