Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
| Commit type | Emoji |
|---|---|
| Initial commit | 🎉 :tada: |
| Version tag | 🔖 :bookmark: |
| New feature | ✨ :sparkles: |
| Bugfix | 🐛 :bug: |
| # make sure you have `tac` [1] (if on on macOS) and `atuin` [2] installed, then drop the below in your ~/.zshrc | |
| # | |
| # [1]: https://unix.stackexchange.com/questions/114041/how-can-i-get-the-tac-command-on-os-x | |
| # [2]: https://github.com/ellie/atuin | |
| atuin-setup() { | |
| ! hash atuin && return | |
| bindkey '^E' _atuin_search_widget | |
| export ATUIN_NOBIND="true" |
| """ | |
| Copyright 2019 Jason Hu <awaregit at gmail.com> | |
| Licensed under the Apache License, Version 2.0 (the "License"); | |
| you may not use this file except in compliance with the License. | |
| You may obtain a copy of the License at | |
| http://www.apache.org/licenses/LICENSE-2.0 | |
| Unless required by applicable law or agreed to in writing, software |
| #!/bin/bash | |
| # This script is used to check and update your GoDaddy DNS server to the IP address of your current internet connection. | |
| # Special thanks to mfox for his ps script | |
| # https://github.com/markafox/GoDaddy_Powershell_DDNS | |
| # | |
| # First go to GoDaddy developer site to create a developer account and get your key and secret | |
| # | |
| # https://developer.godaddy.com/getstarted | |
| # Be aware that there are 2 types of key and secret - one for the test server and one for the production server |
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
| Commit type | Emoji |
|---|---|
| Initial commit | 🎉 :tada: |
| Version tag | 🔖 :bookmark: |
| New feature | ✨ :sparkles: |
| Bugfix | 🐛 :bug: |
| #!/usr/bin/env bash | |
| # print usage | |
| DOMAIN=$1 | |
| if [ -z "$1" ]; then | |
| echo "USAGE: $0 domain.lan" | |
| echo "" | |
| echo "This will generate a non-secure self-signed wildcard certificate for given domain." | |
| echo "This should only be used in a development environment." |