- Click the Manage button next to the domain in the Domain List view
- In the Domain tab, scroll down and remove any entries in the Redirect Domain list
- In the Advanced DNS tab...
- Turn on Dynamic DNS and make a note of the password
- Add an A Record for @ pointing to 127.0.0.1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
echo "⌘ | bash=$0 param1=finder terminal=false" | |
echo '---' | |
if [[ "$1" == 'finder' ]] ; then | |
open /Users/reidcooper -a /System/Library/CoreServices/Finder.app | |
fi |
This is my ZSH theme. I've had it for years, this adoption is for use as an antigen theme.
The git prompt looks like this:
- Current git project name (blue: last exit status was ok, red: last exit status failed)
- Time since last commit
- Branch name or commit ref (green: working tree is clean, red: dirty working tree)
- Merge status (↑ is you can push, ↓ is you can pull, ↕ means you have diverged)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
"testing" | |
"github.com/stretchr/testify/assert" | |
) | |
type DatabaseFetcher struct { |