A tool for managing all sorts of stuff.
Warning
This is a personal tool with no versioning schema, no free use licence and no commitments of any kind.
# clone repository and follow the nupm guidelines.
use pit *Create a new trail entry.
mut entry = (trail new)
$entry.url = "https://www.seachess.net/"
$entry.title = "Seachess"
$entry.summary = "My website."
# Pick tags from previous entries.
$entry = ($entry | trail add tag)
# Pick a source from the list of sources in `data/sources.csv`.
$entry = ($entry | trail add source)
# Save the entry.
$entry | trail save
# Stash for the bulletin.
$entry | stash add | stash saveCreate a new bulletin entry from the stashed entries.
mut bulletin = (bulletin new)
$bulletin | bulletin save
mut stash = (stash list)
$stash.entries = ($bulletin.entries | stash drop)
$stash | stash save