insult

Crates.ioinsult
lib.rsinsult
version2.0.3
sourcesrc
created_at2017-10-25 12:53:55.816148
updated_at2018-06-09 08:25:03.442161
descriptioninsult is the command line "utility" to insult you with a "Oh... Sir! The Insult Simulator"-like fashion!
homepage
repositoryhttps://github.com/jD91mZM2/insult
max_upload_size
id36856
size22,341
jD91mZM2 (jD91mZM2)

documentation

README

insult - The Oh...Sir!-like insult generator

insult is the command line "utility" to insult you with a "Oh... Sir! The Insult Simulator"-like fashion!

Note: Windows is no longer supported.

Example!

Did you know that the Royal Family can't exercise because of your sister or that your wife probably murdered your husband?
Well, me neither.

Configs!

You can edit this project's config files.
They follow the XDG standard, so by default they're in ~/.config/insult.

Installing!

The easiest way to install is with cargo:

cargo install insult

Library!

Thanks to #1, the core has now been split into a separate crate!
This means you can generate your own insults from your own applications!

Example:

let words = WordsFile {
    nouns: include_str!("nouns"),
    endings: include_str!("endings"),
    verbs: include_str!("verbs")
};
println!("{}", words.generate());
Commit count: 61

cargo fmt