https://github.com/s0rg/inm
Impaled Northern Moonforest song title generator for golang
https://github.com/s0rg/inm
text-generation
Last synced: 7 months ago
JSON representation
Impaled Northern Moonforest song title generator for golang
- Host: GitHub
- URL: https://github.com/s0rg/inm
- Owner: s0rg
- License: unlicense
- Created: 2022-12-28T23:24:28.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2023-12-11T02:35:07.000Z (almost 2 years ago)
- Last Synced: 2025-01-18T05:31:04.023Z (9 months ago)
- Topics: text-generation
- Language: Go
- Homepage:
- Size: 25.4 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://pkg.go.dev/github.com/s0rg/inm)
[](https://github.com/s0rg/inm/blob/main/LICENSE)
[](go.mod)
[](https://github.com/s0rg/inm/tags)# Impaled Northern Moonforest song title generator
[What its all about](https://en.wikipedia.org/wiki/Seth_Putnam#Impaled_Northern_Moonforest)
The original generator was available at http://inm.necrobation.org, but its dead, so only way to obtain it
is [web-archive](https://web.archive.org/web/20060816025359fw_/http://inm.necrobation.org/generator.zip).This generator is result of reverse-enginering binary (PE32 written in VB 6.0) to make results as close to original as
possible, so code is pure hell 😈# installation
- [binaries / deb / rpm](https://github.com/s0rg/inm/releases) for Linux, FreeBSD, macOS and Windows.
# cli usage
Just run the `inmfortune` and enjoy.
# lib usage
```go
import (
"fmt""github.com/s0rg/inm"
)func main() {
gen := inm.New()fmt.Println(gen)
}
```