An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

[![PkgGoDev](https://pkg.go.dev/badge/github.com/s0rg/inm)](https://pkg.go.dev/github.com/s0rg/inm)
[![License](https://img.shields.io/github/license/s0rg/inm)](https://github.com/s0rg/inm/blob/main/LICENSE)
[![Go Version](https://img.shields.io/github/go-mod/go-version/s0rg/inm)](go.mod)
[![Tag](https://img.shields.io/github/v/tag/s0rg/inm?sort=semver)](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)
}
```