To setup your computer to work with *.test domains, e.g. project.test, awesome.test and so on, without having to add to your hosts file each time.
- Homebrew
- Mountain Lion -> High Sierra
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Whimsy Forge Mobile v1 — Wireframes & Data Map</title> | |
| <link rel="preconnect" href="https://fonts.googleapis.com"> | |
| <link href="https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Lustria&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet"> | |
| <style> | |
| *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; } |
To setup your computer to work with *.test domains, e.g. project.test, awesome.test and so on, without having to add to your hosts file each time.
| Documentation: | |
| Enabled: false | |
| Metrics/LineLength: | |
| Max: 100 |
| #!/bin/sh | |
| unset GIT_DIR | |
| bundle exec pronto run --staged --exit-code |
| function gclone() { | |
| git clone $1 | |
| repo=$(basename $1) | |
| directory=${repo%.*} | |
| cd $directory | |
| git config user.email "user@email.com" | |
| git config user.name "First Last" | |
| } |