Skip to content

Instantly share code, notes, and snippets.

@Skeeg
Skeeg / resume.html
Created December 26, 2024 19:40 — forked from TravisBumgarner/resume.html
Resume in HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Travis Bumgarner Resume</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
@Skeeg
Skeeg / Brew Caveats
Last active February 3, 2024 00:37 — forked from ChristopherA/brew-bundle-brewfile-tips.md
Brew Bundle Brewfile Tips
==> Caveats
==> dotnet@6
For other software to find dotnet you may need to set:
export DOTNET_ROOT="/opt/homebrew/opt/dotnet@6/libexec"
dotnet@6 is keg-only, which means it was not symlinked into /opt/homebrew,
because this is an alternate version of another formula.
If you need to have dotnet@6 first in your PATH, run:
echo 'export PATH="/opt/homebrew/opt/dotnet@6/bin:$PATH"' >> ~/.zshrc