Skip to content

Files

Latest commit

af160c8 · Feb 3, 2021

History

History
43 lines (39 loc) · 1.14 KB

ramblings.md

File metadata and controls

43 lines (39 loc) · 1.14 KB
title layout
Ramblings
default

Ramblings

Here in lies a collection of words both technical and opinionated. I make no promise of complete clearity, nor do I wish to ramble to the point of insanity. If you find something you like here, I've done my job. Otherwise, be gone with you.

    {% assign ramblings = site.ramblings | concat: site.mathematics | sort: 'date' | reverse %}

    {% for rambling in ramblings %} {% if rambling.hidden %} {% continue %} {% endif %} {% if rambling.draft %}

  • {{ rambling.title }} {{ rambling.content | number_of_words }} words drafted on {{ rambling.date | date: "%B %d, %Y" }}.
  • {% else %}
  • {{ rambling.title }} {{ rambling.content | number_of_words }} words published on {{ rambling.date | date: "%B %d, %Y" }}.
  • {% endif %} {% endfor %}