main
parent
87dc9830d3
commit
70ab31af4a
7
justfile
7
justfile
|
@ -27,10 +27,11 @@ html:
|
|||
rss:
|
||||
#!/usr/bin/env sh
|
||||
exec > www/feed.xml
|
||||
echo "<rss version=\"2.0\"><channel><title>list blog</title>"
|
||||
echo "<link>http://tilde.town/~dozens/listblog/index.html</link><description>a blog that is just a bunch of lists</description><atom:link rel=\"self\" type=\"application/rss+xml\" href=\"http://tilde.town/~dozens/listblog/episodes.xml\"/>"
|
||||
echo "<rss version=\"2.0\" xmlns:atom=\"http://www.w3.org/2005/Atom\"><channel><title>list blog</title>"
|
||||
echo "<atom:link href=\"http://tilde.town/~dozens/listblog/feed.xml\" rel=\"self\" type=\"application/rss+xml\" />"
|
||||
echo "<link>http://tilde.town/~dozens/listblog/index.html</link><description>a blog that is just a bunch of lists</description><atom:link rel=\"self\" type=\"application/rss+xml\" href=\"http://tilde.town/~dozens/listblog/feed.xml\" />"
|
||||
for f in `ls src/*.md`; do
|
||||
ed -s $f < commands.ed | recfmt -f templates/template.recfmt | m4
|
||||
ed -s $f < commands.ed | recfmt -f templates/feeditem.recfmt | m4
|
||||
done
|
||||
echo '</channel></rss>'
|
||||
|
||||
|
|
|
@ -0,0 +1,13 @@
|
|||
---
|
||||
name: 00022
|
||||
title: stuff i do while procrastinating instead of getting stuff done
|
||||
date: 2024-03-29
|
||||
---
|
||||
|
||||
- have another coffee
|
||||
- scroll irc buffers
|
||||
- make some breakfast
|
||||
- tweak some dotfiles
|
||||
- fill up the water bottle
|
||||
- think about awk and how composite keys are not the same as multidimensional arrays
|
||||
- make a list about procrastinating
|
|
@ -9,7 +9,7 @@ author: dozens
|
|||
title: lists
|
||||
summary: a blog that is just a bunch of lists
|
||||
location: /Users/cb/blogs/listblog/src/feed.rec
|
||||
updated: 2024-03-18T17:00:01-06:00
|
||||
updated: 2024-03-29T13:02:00-06:00
|
||||
|
||||
%rec: item
|
||||
%doc: an item belonging to a recfeed
|
||||
|
@ -125,3 +125,8 @@ id: 20
|
|||
title: how to do a floral arrangement
|
||||
published: 2024-03-18
|
||||
location: /Users/cb/blogs/listblog/src/00021.md
|
||||
|
||||
id: 21
|
||||
title: stuff i do while procrastinating instead of getting stuff done
|
||||
published: 2024-03-29
|
||||
location: /Users/cb/blogs/listblog/src/00022.md
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
<title>{{name}}: {{title}}</title>
|
||||
<link>http://tilde.town/~dozens/listblog/{{name}}.html</link>
|
||||
<guid isPermaLink="false">{{date}} {{name}}</guid>
|
||||
<pubDate>syscmd(`gdate -d {{date}}')</pubDate>
|
||||
<pubDate>syscmd(`gdate -d {{date}} -R')</pubDate>
|
||||
<description>
|
||||
<![CDATA[
|
||||
changequote(<%,%>)dnl
|
|
@ -0,0 +1,192 @@
|
|||
<!DOCTYPE html>
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="generator" content="pandoc" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
|
||||
<meta name="dcterms.date" content="2024-03-29" />
|
||||
<title>stuff i do while procrastinating instead of getting stuff done</title>
|
||||
<style>
|
||||
html {
|
||||
color: #1a1a1a;
|
||||
background-color: #fdfdfd;
|
||||
}
|
||||
body {
|
||||
margin: 0 auto;
|
||||
max-width: 36em;
|
||||
padding-left: 50px;
|
||||
padding-right: 50px;
|
||||
padding-top: 50px;
|
||||
padding-bottom: 50px;
|
||||
hyphens: auto;
|
||||
overflow-wrap: break-word;
|
||||
text-rendering: optimizeLegibility;
|
||||
font-kerning: normal;
|
||||
}
|
||||
@media (max-width: 600px) {
|
||||
body {
|
||||
font-size: 0.9em;
|
||||
padding: 12px;
|
||||
}
|
||||
h1 {
|
||||
font-size: 1.8em;
|
||||
}
|
||||
}
|
||||
@media print {
|
||||
html {
|
||||
background-color: white;
|
||||
}
|
||||
body {
|
||||
background-color: transparent;
|
||||
color: black;
|
||||
font-size: 12pt;
|
||||
}
|
||||
p, h2, h3 {
|
||||
orphans: 3;
|
||||
widows: 3;
|
||||
}
|
||||
h2, h3, h4 {
|
||||
page-break-after: avoid;
|
||||
}
|
||||
}
|
||||
p {
|
||||
margin: 1em 0;
|
||||
}
|
||||
a {
|
||||
color: #1a1a1a;
|
||||
}
|
||||
a:visited {
|
||||
color: #1a1a1a;
|
||||
}
|
||||
img {
|
||||
max-width: 100%;
|
||||
}
|
||||
svg {
|
||||
height; auto;
|
||||
max-width: 100%;
|
||||
}
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
margin-top: 1.4em;
|
||||
}
|
||||
h5, h6 {
|
||||
font-size: 1em;
|
||||
font-style: italic;
|
||||
}
|
||||
h6 {
|
||||
font-weight: normal;
|
||||
}
|
||||
ol, ul {
|
||||
padding-left: 1.7em;
|
||||
margin-top: 1em;
|
||||
}
|
||||
li > ol, li > ul {
|
||||
margin-top: 0;
|
||||
}
|
||||
blockquote {
|
||||
margin: 1em 0 1em 1.7em;
|
||||
padding-left: 1em;
|
||||
border-left: 2px solid #e6e6e6;
|
||||
color: #606060;
|
||||
}
|
||||
code {
|
||||
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
|
||||
font-size: 85%;
|
||||
margin: 0;
|
||||
hyphens: manual;
|
||||
}
|
||||
pre {
|
||||
margin: 1em 0;
|
||||
overflow: auto;
|
||||
}
|
||||
pre code {
|
||||
padding: 0;
|
||||
overflow: visible;
|
||||
overflow-wrap: normal;
|
||||
}
|
||||
.sourceCode {
|
||||
background-color: transparent;
|
||||
overflow: visible;
|
||||
}
|
||||
hr {
|
||||
background-color: #1a1a1a;
|
||||
border: none;
|
||||
height: 1px;
|
||||
margin: 1em 0;
|
||||
}
|
||||
table {
|
||||
margin: 1em 0;
|
||||
border-collapse: collapse;
|
||||
width: 100%;
|
||||
overflow-x: auto;
|
||||
display: block;
|
||||
font-variant-numeric: lining-nums tabular-nums;
|
||||
}
|
||||
table caption {
|
||||
margin-bottom: 0.75em;
|
||||
}
|
||||
tbody {
|
||||
margin-top: 0.5em;
|
||||
border-top: 1px solid #1a1a1a;
|
||||
border-bottom: 1px solid #1a1a1a;
|
||||
}
|
||||
th {
|
||||
border-top: 1px solid #1a1a1a;
|
||||
padding: 0.25em 0.5em 0.25em 0.5em;
|
||||
}
|
||||
td {
|
||||
padding: 0.125em 0.5em 0.25em 0.5em;
|
||||
}
|
||||
header {
|
||||
margin-bottom: 4em;
|
||||
text-align: center;
|
||||
}
|
||||
#TOC li {
|
||||
list-style: none;
|
||||
}
|
||||
#TOC ul {
|
||||
padding-left: 1.3em;
|
||||
}
|
||||
#TOC > ul {
|
||||
padding-left: 0;
|
||||
}
|
||||
#TOC a:not(:hover) {
|
||||
text-decoration: none;
|
||||
}
|
||||
code{white-space: pre-wrap;}
|
||||
span.smallcaps{font-variant: small-caps;}
|
||||
div.columns{display: flex; gap: min(4vw, 1.5em);}
|
||||
div.column{flex: auto; overflow-x: auto;}
|
||||
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
|
||||
/* The extra [class] is a hack that increases specificity enough to
|
||||
override a similar rule in reveal.js */
|
||||
ul.task-list[class]{list-style: none;}
|
||||
ul.task-list li input[type="checkbox"] {
|
||||
font-size: inherit;
|
||||
width: 0.8em;
|
||||
margin: 0 0.8em 0.2em -1.6em;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
|
||||
</style>
|
||||
<!--[if lt IE 9]>
|
||||
<script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv-printshiv.min.js"></script>
|
||||
<![endif]-->
|
||||
</head>
|
||||
<body>
|
||||
<header id="title-block-header">
|
||||
<h1 class="title">stuff i do while procrastinating instead of getting
|
||||
stuff done</h1>
|
||||
<p class="date">2024-03-29</p>
|
||||
</header>
|
||||
<ul>
|
||||
<li>have another coffee</li>
|
||||
<li>scroll irc buffers</li>
|
||||
<li>make some breakfast</li>
|
||||
<li>tweak some dotfiles</li>
|
||||
<li>fill up the water bottle</li>
|
||||
<li>think about awk and how composite keys are not the same as
|
||||
multidimensional arrays</li>
|
||||
<li>make a list about procrastinating</li>
|
||||
</ul>
|
||||
</body>
|
||||
</html>
|
66
www/feed.xml
66
www/feed.xml
|
@ -1,10 +1,11 @@
|
|||
<rss version="2.0"><channel><title>list blog</title>
|
||||
<link>http://tilde.town/~dozens/listblog/index.html</link><description>a blog that is just a bunch of lists</description><atom:link rel="self" type="application/rss+xml" href="http://tilde.town/~dozens/listblog/episodes.xml"/>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>list blog</title>
|
||||
<atom:link href="http://tilde.town/~dozens/listblog/feed.xml" rel="self" type="application/rss+xml" />
|
||||
<link>http://tilde.town/~dozens/listblog/index.html</link><description>a blog that is just a bunch of lists</description><atom:link rel="self" type="application/rss+xml" href="http://tilde.town/~dozens/listblog/feed.xml" />
|
||||
<item>
|
||||
<title>00001: stuff that starts with s that i like to do when i spend the afternoon at the gym</title>
|
||||
<link>http://tilde.town/~dozens/listblog/00001.html</link>
|
||||
<guid isPermaLink="false">2023-09-21 00001</guid>
|
||||
<pubDate>Thu Sep 21 00:00:00 MDT 2023
|
||||
<pubDate>Thu, 21 Sep 2023 00:00:00 -0600
|
||||
</pubDate>
|
||||
<description>
|
||||
<![CDATA[
|
||||
|
@ -22,7 +23,7 @@
|
|||
<title>00002: how to cheer someone up </title>
|
||||
<link>http://tilde.town/~dozens/listblog/00002.html</link>
|
||||
<guid isPermaLink="false">2023-09-23 00002</guid>
|
||||
<pubDate>Sat Sep 23 00:00:00 MDT 2023
|
||||
<pubDate>Sat, 23 Sep 2023 00:00:00 -0600
|
||||
</pubDate>
|
||||
<description>
|
||||
<![CDATA[
|
||||
|
@ -37,7 +38,7 @@
|
|||
<title>00003: markup and layout i have used to publish games on itch.io</title>
|
||||
<link>http://tilde.town/~dozens/listblog/00003.html</link>
|
||||
<guid isPermaLink="false">2023-09-26 00003</guid>
|
||||
<pubDate>Tue Sep 26 00:00:00 MDT 2023
|
||||
<pubDate>Tue, 26 Sep 2023 00:00:00 -0600
|
||||
</pubDate>
|
||||
<description>
|
||||
<![CDATA[
|
||||
|
@ -55,7 +56,7 @@
|
|||
<title>00004: things that subvert expectations of normalcy if you don't already know the ending</title>
|
||||
<link>http://tilde.town/~dozens/listblog/00004.html</link>
|
||||
<guid isPermaLink="false">2023-09-28 00004</guid>
|
||||
<pubDate>Thu Sep 28 00:00:00 MDT 2023
|
||||
<pubDate>Thu, 28 Sep 2023 00:00:00 -0600
|
||||
</pubDate>
|
||||
<description>
|
||||
<![CDATA[
|
||||
|
@ -69,7 +70,7 @@
|
|||
<title>00005: things that my elderly dog cannot or will not do any longer that taken as a whole let me know that i will need to put him down soon</title>
|
||||
<link>http://tilde.town/~dozens/listblog/00005.html</link>
|
||||
<guid isPermaLink="false">2023-09-30 00005</guid>
|
||||
<pubDate>Sat Sep 30 00:00:00 MDT 2023
|
||||
<pubDate>Sat, 30 Sep 2023 00:00:00 -0600
|
||||
</pubDate>
|
||||
<description>
|
||||
<![CDATA[
|
||||
|
@ -89,7 +90,7 @@
|
|||
<title>00006: for kindrobot, some good games to sideload on your playdate</title>
|
||||
<link>http://tilde.town/~dozens/listblog/00006.html</link>
|
||||
<guid isPermaLink="false">2023-10-06 00006</guid>
|
||||
<pubDate>Fri Oct 6 00:00:00 MDT 2023
|
||||
<pubDate>Fri, 06 Oct 2023 00:00:00 -0600
|
||||
</pubDate>
|
||||
<description>
|
||||
<![CDATA[
|
||||
|
@ -107,7 +108,7 @@
|
|||
<title>00007: every studio i have ever taught yoga at has ended up closing</title>
|
||||
<link>http://tilde.town/~dozens/listblog/00007.html</link>
|
||||
<guid isPermaLink="false">2023-10-10 00007</guid>
|
||||
<pubDate>Tue Oct 10 00:00:00 MDT 2023
|
||||
<pubDate>Tue, 10 Oct 2023 00:00:00 -0600
|
||||
</pubDate>
|
||||
<description>
|
||||
<![CDATA[
|
||||
|
@ -123,7 +124,7 @@
|
|||
<title>00008: things that are not coins according to coinstar.com</title>
|
||||
<link>http://tilde.town/~dozens/listblog/00008.html</link>
|
||||
<guid isPermaLink="false">2023-10-11 00008</guid>
|
||||
<pubDate>Wed Oct 11 00:00:00 MDT 2023
|
||||
<pubDate>Wed, 11 Oct 2023 00:00:00 -0600
|
||||
</pubDate>
|
||||
<description>
|
||||
<![CDATA[
|
||||
|
@ -245,7 +246,7 @@
|
|||
<title>00009: how in the name of heck are you supposed to do all the things in a day</title>
|
||||
<link>http://tilde.town/~dozens/listblog/00009.html</link>
|
||||
<guid isPermaLink="false">2023-10-20 00009</guid>
|
||||
<pubDate>Fri Oct 20 00:00:00 MDT 2023
|
||||
<pubDate>Fri, 20 Oct 2023 00:00:00 -0600
|
||||
</pubDate>
|
||||
<description>
|
||||
<![CDATA[
|
||||
|
@ -273,7 +274,7 @@
|
|||
<title>00010: recent creative works based on frasier</title>
|
||||
<link>http://tilde.town/~dozens/listblog/00010.html</link>
|
||||
<guid isPermaLink="false">2023-10-21 00010</guid>
|
||||
<pubDate>Sat Oct 21 00:00:00 MDT 2023
|
||||
<pubDate>Sat, 21 Oct 2023 00:00:00 -0600
|
||||
</pubDate>
|
||||
<description>
|
||||
<![CDATA[
|
||||
|
@ -287,7 +288,7 @@
|
|||
<title>00011: all of my computing devices</title>
|
||||
<link>http://tilde.town/~dozens/listblog/00011.html</link>
|
||||
<guid isPermaLink="false">2023-10-23 00011</guid>
|
||||
<pubDate>Mon Oct 23 00:00:00 MDT 2023
|
||||
<pubDate>Mon, 23 Oct 2023 00:00:00 -0600
|
||||
</pubDate>
|
||||
<description>
|
||||
<![CDATA[
|
||||
|
@ -308,7 +309,7 @@
|
|||
<title>00012: a typical day of screentime</title>
|
||||
<link>http://tilde.town/~dozens/listblog/00012.html</link>
|
||||
<guid isPermaLink="false">2023-11-16 00012</guid>
|
||||
<pubDate>Thu Nov 16 00:00:00 MST 2023
|
||||
<pubDate>Thu, 16 Nov 2023 00:00:00 -0700
|
||||
</pubDate>
|
||||
<description>
|
||||
<![CDATA[
|
||||
|
@ -326,7 +327,7 @@
|
|||
<title>00013: how to get into the holiday spirit</title>
|
||||
<link>http://tilde.town/~dozens/listblog/00013.html</link>
|
||||
<guid isPermaLink="false">2023-12-07 00013</guid>
|
||||
<pubDate>Thu Dec 7 00:00:00 MST 2023
|
||||
<pubDate>Thu, 07 Dec 2023 00:00:00 -0700
|
||||
</pubDate>
|
||||
<description>
|
||||
<![CDATA[
|
||||
|
@ -354,7 +355,7 @@
|
|||
<title>00014: new year resolutions</title>
|
||||
<link>http://tilde.town/~dozens/listblog/00014.html</link>
|
||||
<guid isPermaLink="false">2024-01-02 00014</guid>
|
||||
<pubDate>Tue Jan 2 00:00:00 MST 2024
|
||||
<pubDate>Tue, 02 Jan 2024 00:00:00 -0700
|
||||
</pubDate>
|
||||
<description>
|
||||
<![CDATA[
|
||||
|
@ -384,7 +385,7 @@
|
|||
<title>00015: things i've always wanted to say</title>
|
||||
<link>http://tilde.town/~dozens/listblog/00015.html</link>
|
||||
<guid isPermaLink="false">2024-01-27 00015</guid>
|
||||
<pubDate>Sat Jan 27 00:00:00 MST 2024
|
||||
<pubDate>Sat, 27 Jan 2024 00:00:00 -0700
|
||||
</pubDate>
|
||||
<description>
|
||||
<![CDATA[
|
||||
|
@ -400,7 +401,7 @@
|
|||
<title>00016: software i love</title>
|
||||
<link>http://tilde.town/~dozens/listblog/00016.html</link>
|
||||
<guid isPermaLink="false">2024-02-02 00016</guid>
|
||||
<pubDate>Fri Feb 2 00:00:00 MST 2024
|
||||
<pubDate>Fri, 02 Feb 2024 00:00:00 -0700
|
||||
</pubDate>
|
||||
<description>
|
||||
<![CDATA[
|
||||
|
@ -419,7 +420,7 @@
|
|||
<title>00017: everyday i fill things with water</title>
|
||||
<link>http://tilde.town/~dozens/listblog/00017.html</link>
|
||||
<guid isPermaLink="false">2024-02-22 00017</guid>
|
||||
<pubDate>Thu Feb 22 00:00:00 MST 2024
|
||||
<pubDate>Thu, 22 Feb 2024 00:00:00 -0700
|
||||
</pubDate>
|
||||
<description>
|
||||
<![CDATA[
|
||||
|
@ -438,7 +439,7 @@
|
|||
<title>00018: a good morning on computer</title>
|
||||
<link>http://tilde.town/~dozens/listblog/00018.html</link>
|
||||
<guid isPermaLink="false">2024-03-01 00018</guid>
|
||||
<pubDate>Fri Mar 1 00:00:00 MST 2024
|
||||
<pubDate>Fri, 01 Mar 2024 00:00:00 -0700
|
||||
</pubDate>
|
||||
<description>
|
||||
<![CDATA[
|
||||
|
@ -454,7 +455,7 @@
|
|||
<title>00019: all of my grandparents</title>
|
||||
<link>http://tilde.town/~dozens/listblog/00019.html</link>
|
||||
<guid isPermaLink="false">2024-03-04 00019</guid>
|
||||
<pubDate>Mon Mar 4 00:00:00 MST 2024
|
||||
<pubDate>Mon, 04 Mar 2024 00:00:00 -0700
|
||||
</pubDate>
|
||||
<description>
|
||||
<![CDATA[
|
||||
|
@ -472,7 +473,7 @@
|
|||
<title>00020: things that because of the ruptured disc in my back I cannot do or can only do with great difficulty and or pain</title>
|
||||
<link>http://tilde.town/~dozens/listblog/00020.html</link>
|
||||
<guid isPermaLink="false">2024-03-07 00020</guid>
|
||||
<pubDate>Thu Mar 7 00:00:00 MST 2024
|
||||
<pubDate>Thu, 07 Mar 2024 00:00:00 -0700
|
||||
</pubDate>
|
||||
<description>
|
||||
<![CDATA[
|
||||
|
@ -507,7 +508,7 @@
|
|||
<title>00021: how to do a floral arrangement</title>
|
||||
<link>http://tilde.town/~dozens/listblog/00021.html</link>
|
||||
<guid isPermaLink="false">2024-03-18 00021</guid>
|
||||
<pubDate>Mon Mar 18 00:00:00 MDT 2024
|
||||
<pubDate>Mon, 18 Mar 2024 00:00:00 -0600
|
||||
</pubDate>
|
||||
<description>
|
||||
<![CDATA[
|
||||
|
@ -524,4 +525,23 @@
|
|||
]]>
|
||||
</description>
|
||||
</item>
|
||||
<item>
|
||||
<title>00022: stuff i do while procrastinating instead of getting stuff done</title>
|
||||
<link>http://tilde.town/~dozens/listblog/00022.html</link>
|
||||
<guid isPermaLink="false">2024-03-29 00022</guid>
|
||||
<pubDate>Fri, 29 Mar 2024 00:00:00 -0600
|
||||
</pubDate>
|
||||
<description>
|
||||
<![CDATA[
|
||||
|
||||
<li>have another coffee
|
||||
<li>scroll irc buffers
|
||||
<li>make some breakfast
|
||||
<li>tweak some dotfiles
|
||||
<li>fill up the water bottle
|
||||
<li>think about awk and how composite keys are not the same as multidimensional arrays
|
||||
<li>make a list about procrastinating
|
||||
]]>
|
||||
</description>
|
||||
</item>
|
||||
</channel></rss>
|
||||
|
|
|
@ -199,6 +199,8 @@
|
|||
<h1 class="title">a blog that is just a bunch of lists</h1>
|
||||
</header>
|
||||
<ul>
|
||||
<li><p><time>2024-03-29</time> <a href="00022.html">stuff i do while
|
||||
procrastinating instead of getting stuff done</a></p></li>
|
||||
<li><p><time>2024-03-18</time> <a href="00021.html">how to do a floral
|
||||
arrangement</a></p></li>
|
||||
<li><p><time>2024-03-07</time> <a href="00020.html">things that because
|
||||
|
|
Loading…
Reference in New Issue