misfortune alternatives and similar packages
Based on the "Console" category.
Alternatively, view misfortune alternatives based on common mentions on social networks and blogs.
-
hledger-flow
An hledger/ledger-cli workflow focusing on automated statement import and classification -
hledger-stockquotes
Generate an HLedger Journal Containing Daily Stock & Crypto Quotes for your Commodities -
uniq-deep
alternative of unix uniq command. 'uniq-deep' detect repeated lines unless they are adjacent. -
pasty
pasty is a linux command line tool written in Haskell for pasting from column centric plain text files.
InfluxDB - Purpose built for real-time analytics at any scale.
Do you think we are missing an alternative of misfortune or a related project?
README
misfortune
This is a fortune-mod clone. In addition to the features generally expected of a fortune
program, this can be used as a Haskell library (import Data.Fortune
) and also supports UTF-8 fortune files, configurable search paths, automatic merging of fortune databases with the same name (so you can have a local fortunes folder that just adds to existing fortune databases), filtering fortunes by line lengths, and a "print fortune matching regex" mode (instead of just "print all fortunes matching regex" mode).
Usage
Most of the command-line flags from fortune
work with misfortune
as well. To just print a fortune, run:
misfortune
To index a new fortune file (or update the index on an existing one), run:
misfortune-strfile path/to/file
To use the fortune API in your Haskell programs:
import Data.Fortune
import qualified Data.Text as T
main = do
f <- openFortuneFile "pangrams" '%' True
appendFortune f (T.pack "The quick brown fox jumps over the lazy dog.")
appendFortune f (T.pack "Quick blowing zephyrs vex daft Jim.")
closeFortuneFile f
putStrLn =<< randomFortune ["pangrams"]
This example will create or append to a file "pangrams" in the working directory, and create or update the corresponding index file "pangrams.dat". It then closes that file and requests a random fortune from all databases named "pangrams" in the search path - so it will either print one of the two just written or one found in another "pangrams" file. Every eligible fortune is equally likely.
Installation
Get the current release from Hackage:
cabal install misfortune
Or build the latest version from git:
git clone https://github.com/mokus0/misfortune.git
cd misfortune
cabal install