Skip to content

Instantly share code, notes, and snippets.

View alexhwoods's full-sized avatar

Alex Woods alexhwoods

View GitHub Profile
@alexhwoods
alexhwoods / localhost.md
Created May 26, 2023 13:43
Route *.localhost traffic to localhost

Route *.localhost traffic to localhost

Inspired and adjusted from this gist.

  1. Install dnsmasq
brew install dnsmasq
  1. Setup
@alexhwoods
alexhwoods / schema.sql
Last active August 17, 2024 12:28
Basketball Schema
create table teams (
id uuid primary key default gen_random_uuid(),
name text not null,
city text not null
);
create table players (
id uuid primary key default gen_random_uuid(),
team_id uuid references teams(id),
name text,