/shortblog

Super simple file-based CLI-friendly miniblog written in Common LISP.

Primary LanguageCommon Lisp

SHORTBLOG

Super simple file-based CLI-oriented miniblog written in Common LISP.

It is set up for my own use at this stage. It's meant to be hacked to suit your need.

example diary

Install

git clone [this repo]
rm -rf ./blog/**
cd shortblog
./build.sh
chmod u+x shortblog
#[move shortblog under your $PATH]

Usage

shortblog make-post "I wrote the README for SHORTBLOG"
shortblog add-media /mnt/DCIM/xxx/IMGP0000.JPG
for img in /mnt/DCIM/xxx/*.JPG; do shortblog add-media "$img"; done
shortblog show-posts | more
shortblog save-html
shortblog share 2022-05-06    #create a html for single day (for sharing)

etc.

Requirement

  • SBCL
  • quicklisp (for uiop, ppcre)
  • buildapp
  • Imagemagick
  • facedetect

tested on linux only.

OK to Copy, Modify, Use. Please visibly credit Minori Yamashita.