Skip to content
View MacLeanLuke's full-sized avatar

Highlights

  • Pro

Block or report MacLeanLuke

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
MacLeanLuke/README.md
Luke MacLean — Senior Full Stack & Platform Engineer — Dallas, TX

I build the screens people stare at all day to make decisions that cost real money, and the unglamorous plumbing underneath that keeps them up. Based in Dallas.

The work I'm proudest of is rarely a feature. It's the Friday-evening patch that buys back the weekend, followed by the Tuesday fix that means it doesn't happen again — and knowing which of those two you're being asked for.

luke-mac.com · LinkedIn


More detail, if you want it

Stack & tooling

Senior Full Stack / Platform Engineer — Dallas, TX.

Focus Operator-critical systems — high volume, real consequences, no tolerance for a wrong number
Front React · TypeScript · Next.js · Astro · AG Grid
Back Node.js · GraphQL · REST · MCP · PostgreSQL · SQL Server
Infra AWS · GCP · Vercel · Docker · Kubernetes · GitHub Actions
Certs Apollo Graph Developer (Professional) · AWS Certified Cloud Practitioner

The part that's hard to get across in a bullet list: being the person who can hold the whole path in their head — local, staging, production, front to back — at 11pm, when something is broken and the fix has to be small enough to be safe.

Work history is on LinkedIn. Most of my recent work is in private repos; what's public is below, and each one has a writeup explaining why it exists.

How I think about the work

Numbers should be derived, not asserted. The thing I keep building is the model that shows its work. page-load-anatomy doesn't tell you a cold TLS 1.2 connection is slow — it counts the seven round trips and puts each one in a test. If a README claims it, the test suite should be able to prove it.

Prefer the boring mechanism. My site rebuilds itself when its content changes. WordPress's free plan can't install a webhook plugin, so rather than storing state, a cron job compares the fingerprint WordPress reports now against the one baked into the live deployment. Nothing to cache, nothing to go stale, and a manual redeploy self-corrects. The deployed half is public — check it yourself:

curl -s https://www.luke-mac.com/content-fingerprint.json

The subtle bug is usually at a boundary. That fingerprint gets computed twice: once in TypeScript at build time, once in bash inside the Action. They have to agree byte for byte, which means the shell sort needs LC_ALL=C to match JavaScript's .sort(). Two implementations of "the same" hash that silently disagree is exactly the sort of thing that pages you at 2am.

Guard the repo, not just the code. This profile is public, so it's set up to refuse anything that isn't a README. .gitignore is deny-by-default, scripts/guard.sh blocks credential shapes and a private denylist — as a pre-commit hook and as required CI — and main takes no direct pushes. The denylist itself is never committed: a public denylist is a public index of precisely which words are sensitive.

Selected code
  • page-load-anatomy — a deterministic model of a browser page load. Real protocol arithmetic, asserted in tests. Change the RTT and watch what moves downstream.
  • rental-property-analyzer — hold-vs-sell modelling in the browser. Exports an Excel workbook where every projection is a live formula, not a pasted value.
  • mercy-networks — natural-language search connecting people experiencing homelessness, and the caseworkers serving them, to shelters and housing programs.
  • neural-tools — published npm toolkit for scaffolding MCP servers and AI agents, with evals by default.

What I've been working on

Pulled from public push activity, newest first — not a hand-picked list.

Project What it is Writeup
all-the-scripts
Shell · 2d ago
A bunch of great scripts that I've developed over time. Everything from environment setup
neural-tools
TypeScript · 2d ago
Complete AI productivity toolkit for building MCPs, Claude commands, and AI workflows Read
rental-property-analyzer
TypeScript · 2d ago
Decide whether to keep or sell a rental property. Live hold-vs-sell analysis in the browser, plus a downloadable Excel workbook where every projection is a live formula. Read
mercy-networks
TypeScript · 2d ago
Connects people experiencing homelessness and their caseworkers to shelters, meals, and housing programs via natural-language search. Next.js + Vercel AI SDK + Postgres. Read
page-load-anatomy
TypeScript · 2d ago
A dissectible model of what actually happens when a browser loads a page. Real protocol arithmetic, not an animation. Read

Latest writing

All posts at luke-mac.com.


Regenerated 2026-08-12 by build-readme.mjs · 5 active repos · 5 posts

Popular repositories Loading

  1. plyer plyer Public

    Forked from kivy/plyer

    Plyer is a platform-independent Python wrapper for platform-dependent APIs

    Python

  2. DfwUniversity DfwUniversity Public

    Forked from rick-maclean/DfwUniversity

    C#

  3. coder-dex coder-dex Public

    Forked from narcisolobo/coder-dex

    https://macleanluke.github.io/coder-dex/

    CSS

  4. demo-pokemon-generator-starter demo-pokemon-generator-starter Public

    Forked from colbyfayock/demo-pokemon-generator-starter

    JavaScript

  5. astro astro Public

    Forked from withastro/astro

    The web framework for content-driven websites. ⭐️ Star to support our work!

    TypeScript

  6. all-the-scripts all-the-scripts Public

    A bunch of great scripts that I've developed over time. Everything from environment setup

    Shell