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.
git clone [this repo]
rm -rf ./blog/**
cd shortblog
./build.sh
chmod u+x shortblog
#[move shortblog under your $PATH]
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.
- SBCL
- quicklisp (for uiop, ppcre)
- buildapp
- Imagemagick
- facedetect
tested on linux only.
OK to Copy, Modify, Use. Please visibly credit Minori Yamashita.