mindnum
is a CLI tool to get the mind number.
Mind number is the number obtained by breaking down all dates of birth in the Western calendar and adding them to a single digit. To calculate the mind number, you take the full date of birth (year, month, and day) and break it down into individual digits. Then, you sum these digits together. If the resulting sum is a multi-digit number, you continue to add the digits together until you get a single-digit number.
For example, if the date of birth is July 19, 1990 (1990-07-19):
- Break down the date into individual digits: 1, 9, 9, 0, 0, 7, 1, 9
- Sum these digits: 1 + 9 + 9 + 0 + 0 + 7 + 1 + 9 = 36
- Since 36 is a multi-digit number, break it down again: 3 + 6 = 9
- The mind number is 9.
This single-digit number is believed to have a specific meaning or personality description associated with it.
Usage:
mindnum [command]
Available Commands:
get ๐ง Get a mind number from an argument or the birthday flag and show the personality description
help ๐ค Help about any command
completion ๐ง Generate the autocompletion script for the specified shell
version ๐ Show the version of mindnum
Flags:
-h, --help ๐ค help for mindnum
-v, --version ๐ version for mindnum
go install github.com/yanosea/mindnum/app/presentation/cli/mindnum@latest
brew tap yanosea/tap
brew install yanosea/tap/mindnum
Go to the Releases and download the latest binary for your platform.
Reinstall mindnum
!
go install github.com/yanosea/mindnum/app/presentation/cli/mindnum@latest
brew update
brew upgrade mindnum
Download the latest binary from the Releases page and replace the old binary in your $PATH
.
This is my first golang application and also first GitHub public repository,
so please feel free to point me in the right direction๐