38 lines
612 B
Markdown
38 lines
612 B
Markdown
# Anix
|
|
|
|
A simple CLI that will auto generate a list of animal + occupation pairs.
|
|
|
|
## Why?
|
|
|
|
I made this so I could come up with some fun ideas to model in 3D. But it can be used or modified for a bunch of random idea generation.
|
|
|
|
## How?
|
|
|
|
```bash
|
|
go build -o ./anix
|
|
```
|
|
|
|
```bash
|
|
# Example output
|
|
|
|
Bear Astronaut
|
|
Sheep Writer
|
|
Owl Firefighter
|
|
Mouse Detective
|
|
Elephant Artist
|
|
Cat Teacher
|
|
Squirrel Veterinarian
|
|
Koala Engineer
|
|
Fox Scientist
|
|
Deer Zookeeper
|
|
Hedgehog Farmer
|
|
Chick Photographer
|
|
Otter Librarian
|
|
Sloth Carpenter
|
|
Panda Mechanic
|
|
Raccoon Police Officer
|
|
Turtle Musician
|
|
Dog Doctor
|
|
Penguin Pilot
|
|
Rabbit Chef
|
|
``` |