Follow this walk-through in video format
- GitHub Account: https://github.com/
- GitHub Desktop: https://desktop.github.com/
- Homebrew: https://brew.sh/
# Setup dual-architecture Homebrew on a M1 Mac. | |
# 1. Install Rosetta (if necessary): | |
softwareupdate --install-rosetta | |
# 2. Install Homebrew for M1: | |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
# 2. Install Homebrew for Rosetta: | |
arch -x86_64 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" |
Follow this walk-through in video format
# An example global gitignore file | |
# | |
# Place a copy if this at ~/.gitignore_global | |
# Run `git config --global core.excludesfile ~/.gitignore_global` | |
# Folder view configuration files | |
.DS_Store | |
# Files that might appear on external disks | |
.Spotlight-V100 |
Based on this tutorial.
Prerequisites:
% sw_vers
ProductName: macOS
ProductVersion: 11.6
Based on this tutorial.
Prerequisites:
% sw_vers
ProductName: macOS
ProductVersion: 11.6
This short document gives suggestions for how to deploy websites in 2022 without any more expenses or work than is necessary. After getting accustomed to the right tools, it should be able to set up a fast and secure hosted website in about 30 minutes while only paying the cost of the domain name.
Cloudflare offers low/no markup domain name registration with a free DNS service. This will virtually always be your cheapest option for domain name renewals. They don't list prices for all TLDs upfront, so use this list to get your best estimate.
Notes:
A list of XKCD-like style resources:
Fonts:
Using code like this in the HTML head:
<link rel="alternate" hreflang="en-US” href="https://mywebsite.com" />
<link rel="alternate" hreflang="fr” href="https://mywebsite.com/fr" />
<link rel="alternate" hreflang="zh-Hans” href="https://mywebsite.com/cn" />