Compare commits
No commits in common. "d9a5cc257fd95cc3204baebe062c085d8a716bb5" and "6c82ffe1aa229bdc9b040ecd5d12e6155673279d" have entirely different histories.
d9a5cc257f
...
6c82ffe1aa
26
justfile
26
justfile
@ -35,7 +35,7 @@ rss:
|
|||||||
echo '</channel></rss>'
|
echo '</channel></rss>'
|
||||||
|
|
||||||
# make html and rss
|
# make html and rss
|
||||||
build: index html rss recfeed
|
build: index html rss
|
||||||
|
|
||||||
# upload
|
# upload
|
||||||
up:
|
up:
|
||||||
@ -43,27 +43,3 @@ up:
|
|||||||
|
|
||||||
# build and upload
|
# build and upload
|
||||||
all: build up
|
all: build up
|
||||||
|
|
||||||
# build recfeed
|
|
||||||
recfeed:
|
|
||||||
#!/usr/bin/env sh
|
|
||||||
if [ ! -f src/feed.rec ]
|
|
||||||
then recinf -d /Users/cb/blogs/lunaware/doc/feed.rec > src/feed.rec
|
|
||||||
fi
|
|
||||||
for file in `ls src/*.md | grep 'src/\d\{5\}.md'`
|
|
||||||
do
|
|
||||||
sed -e '/^---$/,/^---$/!d' -e '/---/d' "$file"
|
|
||||||
echo "location: $(pwd)/$file"
|
|
||||||
echo
|
|
||||||
done \
|
|
||||||
| recsel \
|
|
||||||
-p title,date:published,location \
|
|
||||||
| awk 'BEGIN { RS=""; FS="\n" }
|
|
||||||
{
|
|
||||||
s = "recins src/feed.rec -t item --verbose";
|
|
||||||
for(x = 1; x <= NF; x++) {
|
|
||||||
split($x,a,": ");
|
|
||||||
s = s " -f " a[1] " -v \"" a[2] "\"";
|
|
||||||
}
|
|
||||||
system(s)
|
|
||||||
}'
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
name: 00001
|
name: 00001
|
||||||
title: stuff that starts with s that i like to do when i spend the afternoon at the gym
|
title: stuff that start with s that i like to do when i spend the afternoon at the gym
|
||||||
date: 2023-09-21
|
date: 2023-09-21
|
||||||
---
|
---
|
||||||
|
|
||||||
|
13
src/00017.md
13
src/00017.md
@ -1,13 +0,0 @@
|
|||||||
---
|
|
||||||
name: 00017
|
|
||||||
title: everyday i fill things with water
|
|
||||||
date: 2024-02-22
|
|
||||||
---
|
|
||||||
|
|
||||||
- water bottles
|
|
||||||
- water bowl for dog
|
|
||||||
- tea kettle
|
|
||||||
- humidifier
|
|
||||||
- difuser
|
|
||||||
- bathtub (most days)
|
|
||||||
- CPAP
|
|
10
src/00018.md
10
src/00018.md
@ -1,10 +0,0 @@
|
|||||||
---
|
|
||||||
name: 00017
|
|
||||||
title: a good morning on computer
|
|
||||||
date: 2024-03-01
|
|
||||||
---
|
|
||||||
|
|
||||||
- browse articles in rss reader
|
|
||||||
- find a blog post i really like
|
|
||||||
- email author and tell them i like their blog
|
|
||||||
- repeat
|
|
277
src/feed.rec
277
src/feed.rec
@ -1,277 +0,0 @@
|
|||||||
%rec: feed
|
|
||||||
%doc: metadata about a recfeed
|
|
||||||
%type: updated date
|
|
||||||
%type: author,title,summary,location line
|
|
||||||
%mandatory: author title location updated
|
|
||||||
%allowed: author title summary location updated contact
|
|
||||||
|
|
||||||
author: dozens
|
|
||||||
title: lists
|
|
||||||
summary: a blog that is just a bunch of lists
|
|
||||||
location: /Users/cb/blogs/listblog/src/feed.rec
|
|
||||||
updated: 2024-02-11T12:41:53-07:00
|
|
||||||
|
|
||||||
%rec: item
|
|
||||||
%doc: an item belonging to a recfeed
|
|
||||||
%key: id
|
|
||||||
%type: id int
|
|
||||||
%auto: id
|
|
||||||
%type: title,summary,location line
|
|
||||||
%type: published,updated date
|
|
||||||
%mandatory: id title location published
|
|
||||||
%allowed: id title location published summary updated
|
|
||||||
|
|
||||||
id: 0
|
|
||||||
title: stuff that starts with s that i like to do when i spend the afternoon at the gym
|
|
||||||
published: 2023-09-21
|
|
||||||
location: /Users/cb/blogs/listblog/src/00001.md
|
|
||||||
|
|
||||||
id: 1
|
|
||||||
title: how to cheer someone up
|
|
||||||
published: 2023-09-23
|
|
||||||
location: /Users/cb/blogs/listblog/src/00002.md
|
|
||||||
|
|
||||||
id: 2
|
|
||||||
title: markup and layout i have used to publish games on itch.io
|
|
||||||
published: 2023-09-26
|
|
||||||
location: /Users/cb/blogs/listblog/src/00003.md
|
|
||||||
|
|
||||||
id: 3
|
|
||||||
title: things that subvert expectations of normalcy if you don't already know the ending
|
|
||||||
published: 2023-09-28
|
|
||||||
location: /Users/cb/blogs/listblog/src/00004.md
|
|
||||||
|
|
||||||
id: 4
|
|
||||||
title: 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
|
|
||||||
published: 2023-09-30
|
|
||||||
location: /Users/cb/blogs/listblog/src/00005.md
|
|
||||||
|
|
||||||
id: 5
|
|
||||||
title: for kindrobot, some good games to sideload on your playdate
|
|
||||||
published: 2023-10-06
|
|
||||||
location: /Users/cb/blogs/listblog/src/00006.md
|
|
||||||
|
|
||||||
id: 6
|
|
||||||
title: every studio i have ever taught yoga at has ended up closing
|
|
||||||
published: 2023-10-10
|
|
||||||
location: /Users/cb/blogs/listblog/src/00007.md
|
|
||||||
|
|
||||||
id: 7
|
|
||||||
title: things that are not coins according to coinstar.com
|
|
||||||
published: 2023-10-11
|
|
||||||
location: /Users/cb/blogs/listblog/src/00008.md
|
|
||||||
|
|
||||||
id: 8
|
|
||||||
title: how in the name of heck are you supposed to do all the things in a day
|
|
||||||
published: 2023-10-20
|
|
||||||
location: /Users/cb/blogs/listblog/src/00009.md
|
|
||||||
|
|
||||||
id: 9
|
|
||||||
title: recent creative works based on frasier
|
|
||||||
published: 2023-10-21
|
|
||||||
location: /Users/cb/blogs/listblog/src/00010.md
|
|
||||||
|
|
||||||
id: 10
|
|
||||||
title: all of my computing devices
|
|
||||||
published: 2023-10-23
|
|
||||||
location: /Users/cb/blogs/listblog/src/00011.md
|
|
||||||
|
|
||||||
id: 11
|
|
||||||
title: a typical day of screentime
|
|
||||||
published: 2023-11-16
|
|
||||||
location: /Users/cb/blogs/listblog/src/00012.md
|
|
||||||
|
|
||||||
id: 12
|
|
||||||
title: how to get into the holiday spirit
|
|
||||||
published: 2023-12-07
|
|
||||||
location: /Users/cb/blogs/listblog/src/00013.md
|
|
||||||
|
|
||||||
id: 13
|
|
||||||
title: new year resolutions
|
|
||||||
published: 2024-01-02
|
|
||||||
location: /Users/cb/blogs/listblog/src/00014.md
|
|
||||||
|
|
||||||
id: 14
|
|
||||||
title: things i've always wanted to say
|
|
||||||
published: 2024-01-27
|
|
||||||
location: /Users/cb/blogs/listblog/src/00015.md
|
|
||||||
|
|
||||||
id: 15
|
|
||||||
title: software i love
|
|
||||||
published: 2024-02-02
|
|
||||||
location: /Users/cb/blogs/listblog/src/00016.md
|
|
||||||
|
|
||||||
id: 16
|
|
||||||
title: stuff that starts with s that i like to do when i spend the afternoon at the gym
|
|
||||||
published: 2023-09-21
|
|
||||||
location: /Users/cb/blogs/listblog/src/00001.md
|
|
||||||
|
|
||||||
id: 17
|
|
||||||
title: how to cheer someone up
|
|
||||||
published: 2023-09-23
|
|
||||||
location: /Users/cb/blogs/listblog/src/00002.md
|
|
||||||
|
|
||||||
id: 18
|
|
||||||
title: markup and layout i have used to publish games on itch.io
|
|
||||||
published: 2023-09-26
|
|
||||||
location: /Users/cb/blogs/listblog/src/00003.md
|
|
||||||
|
|
||||||
id: 19
|
|
||||||
title: things that subvert expectations of normalcy if you don't already know the ending
|
|
||||||
published: 2023-09-28
|
|
||||||
location: /Users/cb/blogs/listblog/src/00004.md
|
|
||||||
|
|
||||||
id: 20
|
|
||||||
title: 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
|
|
||||||
published: 2023-09-30
|
|
||||||
location: /Users/cb/blogs/listblog/src/00005.md
|
|
||||||
|
|
||||||
id: 21
|
|
||||||
title: for kindrobot, some good games to sideload on your playdate
|
|
||||||
published: 2023-10-06
|
|
||||||
location: /Users/cb/blogs/listblog/src/00006.md
|
|
||||||
|
|
||||||
id: 22
|
|
||||||
title: every studio i have ever taught yoga at has ended up closing
|
|
||||||
published: 2023-10-10
|
|
||||||
location: /Users/cb/blogs/listblog/src/00007.md
|
|
||||||
|
|
||||||
id: 23
|
|
||||||
title: things that are not coins according to coinstar.com
|
|
||||||
published: 2023-10-11
|
|
||||||
location: /Users/cb/blogs/listblog/src/00008.md
|
|
||||||
|
|
||||||
id: 24
|
|
||||||
title: how in the name of heck are you supposed to do all the things in a day
|
|
||||||
published: 2023-10-20
|
|
||||||
location: /Users/cb/blogs/listblog/src/00009.md
|
|
||||||
|
|
||||||
id: 25
|
|
||||||
title: recent creative works based on frasier
|
|
||||||
published: 2023-10-21
|
|
||||||
location: /Users/cb/blogs/listblog/src/00010.md
|
|
||||||
|
|
||||||
id: 26
|
|
||||||
title: all of my computing devices
|
|
||||||
published: 2023-10-23
|
|
||||||
location: /Users/cb/blogs/listblog/src/00011.md
|
|
||||||
|
|
||||||
id: 27
|
|
||||||
title: a typical day of screentime
|
|
||||||
published: 2023-11-16
|
|
||||||
location: /Users/cb/blogs/listblog/src/00012.md
|
|
||||||
|
|
||||||
id: 28
|
|
||||||
title: how to get into the holiday spirit
|
|
||||||
published: 2023-12-07
|
|
||||||
location: /Users/cb/blogs/listblog/src/00013.md
|
|
||||||
|
|
||||||
id: 29
|
|
||||||
title: new year resolutions
|
|
||||||
published: 2024-01-02
|
|
||||||
location: /Users/cb/blogs/listblog/src/00014.md
|
|
||||||
|
|
||||||
id: 30
|
|
||||||
title: things i've always wanted to say
|
|
||||||
published: 2024-01-27
|
|
||||||
location: /Users/cb/blogs/listblog/src/00015.md
|
|
||||||
|
|
||||||
id: 31
|
|
||||||
title: software i love
|
|
||||||
published: 2024-02-02
|
|
||||||
location: /Users/cb/blogs/listblog/src/00016.md
|
|
||||||
|
|
||||||
id: 32
|
|
||||||
title: everyday i fill things with water
|
|
||||||
published: 2024-02-22
|
|
||||||
location: /Users/cb/blogs/listblog/src/00017.md
|
|
||||||
|
|
||||||
id: 33
|
|
||||||
title: stuff that starts with s that i like to do when i spend the afternoon at the gym
|
|
||||||
published: 2023-09-21
|
|
||||||
location: /Users/cb/blogs/listblog/src/00001.md
|
|
||||||
|
|
||||||
id: 34
|
|
||||||
title: how to cheer someone up
|
|
||||||
published: 2023-09-23
|
|
||||||
location: /Users/cb/blogs/listblog/src/00002.md
|
|
||||||
|
|
||||||
id: 35
|
|
||||||
title: markup and layout i have used to publish games on itch.io
|
|
||||||
published: 2023-09-26
|
|
||||||
location: /Users/cb/blogs/listblog/src/00003.md
|
|
||||||
|
|
||||||
id: 36
|
|
||||||
title: things that subvert expectations of normalcy if you don't already know the ending
|
|
||||||
published: 2023-09-28
|
|
||||||
location: /Users/cb/blogs/listblog/src/00004.md
|
|
||||||
|
|
||||||
id: 37
|
|
||||||
title: 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
|
|
||||||
published: 2023-09-30
|
|
||||||
location: /Users/cb/blogs/listblog/src/00005.md
|
|
||||||
|
|
||||||
id: 38
|
|
||||||
title: for kindrobot, some good games to sideload on your playdate
|
|
||||||
published: 2023-10-06
|
|
||||||
location: /Users/cb/blogs/listblog/src/00006.md
|
|
||||||
|
|
||||||
id: 39
|
|
||||||
title: every studio i have ever taught yoga at has ended up closing
|
|
||||||
published: 2023-10-10
|
|
||||||
location: /Users/cb/blogs/listblog/src/00007.md
|
|
||||||
|
|
||||||
id: 40
|
|
||||||
title: things that are not coins according to coinstar.com
|
|
||||||
published: 2023-10-11
|
|
||||||
location: /Users/cb/blogs/listblog/src/00008.md
|
|
||||||
|
|
||||||
id: 41
|
|
||||||
title: how in the name of heck are you supposed to do all the things in a day
|
|
||||||
published: 2023-10-20
|
|
||||||
location: /Users/cb/blogs/listblog/src/00009.md
|
|
||||||
|
|
||||||
id: 42
|
|
||||||
title: recent creative works based on frasier
|
|
||||||
published: 2023-10-21
|
|
||||||
location: /Users/cb/blogs/listblog/src/00010.md
|
|
||||||
|
|
||||||
id: 43
|
|
||||||
title: all of my computing devices
|
|
||||||
published: 2023-10-23
|
|
||||||
location: /Users/cb/blogs/listblog/src/00011.md
|
|
||||||
|
|
||||||
id: 44
|
|
||||||
title: a typical day of screentime
|
|
||||||
published: 2023-11-16
|
|
||||||
location: /Users/cb/blogs/listblog/src/00012.md
|
|
||||||
|
|
||||||
id: 45
|
|
||||||
title: how to get into the holiday spirit
|
|
||||||
published: 2023-12-07
|
|
||||||
location: /Users/cb/blogs/listblog/src/00013.md
|
|
||||||
|
|
||||||
id: 46
|
|
||||||
title: new year resolutions
|
|
||||||
published: 2024-01-02
|
|
||||||
location: /Users/cb/blogs/listblog/src/00014.md
|
|
||||||
|
|
||||||
id: 47
|
|
||||||
title: things i've always wanted to say
|
|
||||||
published: 2024-01-27
|
|
||||||
location: /Users/cb/blogs/listblog/src/00015.md
|
|
||||||
|
|
||||||
id: 48
|
|
||||||
title: software i love
|
|
||||||
published: 2024-02-02
|
|
||||||
location: /Users/cb/blogs/listblog/src/00016.md
|
|
||||||
|
|
||||||
id: 49
|
|
||||||
title: everyday i fill things with water
|
|
||||||
published: 2024-02-22
|
|
||||||
location: /Users/cb/blogs/listblog/src/00017.md
|
|
||||||
|
|
||||||
id: 50
|
|
||||||
title: a good morning on computer
|
|
||||||
published: 2024-03-01
|
|
||||||
location: /Users/cb/blogs/listblog/src/00018.md
|
|
@ -5,7 +5,7 @@
|
|||||||
<meta name="generator" content="pandoc" />
|
<meta name="generator" content="pandoc" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
|
||||||
<meta name="dcterms.date" content="2023-09-21" />
|
<meta name="dcterms.date" content="2023-09-21" />
|
||||||
<title>stuff that starts with s that i like to do when i spend the afternoon at the gym</title>
|
<title>stuff that start with s that i like to do when i spend the afternoon at the gym</title>
|
||||||
<style>
|
<style>
|
||||||
html {
|
html {
|
||||||
color: #1a1a1a;
|
color: #1a1a1a;
|
||||||
@ -174,8 +174,8 @@
|
|||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<header id="title-block-header">
|
<header id="title-block-header">
|
||||||
<h1 class="title">stuff that starts with s that i like to do when i
|
<h1 class="title">stuff that start with s that i like to do when i spend
|
||||||
spend the afternoon at the gym</h1>
|
the afternoon at the gym</h1>
|
||||||
<p class="date">2023-09-21</p>
|
<p class="date">2023-09-21</p>
|
||||||
</header>
|
</header>
|
||||||
<ul>
|
<ul>
|
||||||
|
190
www/00017.html
190
www/00017.html
@ -1,190 +0,0 @@
|
|||||||
<!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-02-22" />
|
|
||||||
<title>everyday i fill things with water</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">everyday i fill things with water</h1>
|
|
||||||
<p class="date">2024-02-22</p>
|
|
||||||
</header>
|
|
||||||
<ul>
|
|
||||||
<li>water bottles</li>
|
|
||||||
<li>water bowl for dog</li>
|
|
||||||
<li>tea kettle</li>
|
|
||||||
<li>humidifier</li>
|
|
||||||
<li>difuser</li>
|
|
||||||
<li>bathtub (most days)</li>
|
|
||||||
<li>CPAP</li>
|
|
||||||
</ul>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
187
www/00018.html
187
www/00018.html
@ -1,187 +0,0 @@
|
|||||||
<!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-01" />
|
|
||||||
<title>a good morning on computer</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">a good morning on computer</h1>
|
|
||||||
<p class="date">2024-03-01</p>
|
|
||||||
</header>
|
|
||||||
<ul>
|
|
||||||
<li>browse articles in rss reader</li>
|
|
||||||
<li>find a blog post i really like</li>
|
|
||||||
<li>email author and tell them i like their blog</li>
|
|
||||||
<li>repeat</li>
|
|
||||||
</ul>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
37
www/feed.xml
37
www/feed.xml
@ -1,7 +1,7 @@
|
|||||||
<rss version="2.0"><channel><title>list blog</title>
|
<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"/>
|
<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"/>
|
||||||
<item>
|
<item>
|
||||||
<title>00001: stuff that starts with s that i like to do when i spend the afternoon at the gym</title>
|
<title>00001: stuff that start 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>
|
<link>http://tilde.town/~dozens/listblog/00001.html</link>
|
||||||
<guid isPermaLink="false">2023-09-21 00001</guid>
|
<guid isPermaLink="false">2023-09-21 00001</guid>
|
||||||
<pubDate>Thu Sep 21 00:00:00 MDT 2023
|
<pubDate>Thu Sep 21 00:00:00 MDT 2023
|
||||||
@ -415,39 +415,4 @@
|
|||||||
]]>
|
]]>
|
||||||
</description>
|
</description>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
|
||||||
<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>
|
|
||||||
<description>
|
|
||||||
<![CDATA[
|
|
||||||
|
|
||||||
<li>water bottles
|
|
||||||
<li>water bowl for dog
|
|
||||||
<li>tea kettle
|
|
||||||
<li>humidifier
|
|
||||||
<li>difuser
|
|
||||||
<li>bathtub (most days)
|
|
||||||
<li>CPAP
|
|
||||||
]]>
|
|
||||||
</description>
|
|
||||||
</item>
|
|
||||||
<item>
|
|
||||||
<title>00017: a good morning on computer</title>
|
|
||||||
<link>http://tilde.town/~dozens/listblog/00017.html</link>
|
|
||||||
<guid isPermaLink="false">2024-03-01 00017</guid>
|
|
||||||
<pubDate>Fri Mar 1 00:00:00 MST 2024
|
|
||||||
</pubDate>
|
|
||||||
<description>
|
|
||||||
<![CDATA[
|
|
||||||
|
|
||||||
<li>browse articles in rss reader
|
|
||||||
<li>find a blog post i really like
|
|
||||||
<li>email author and tell them i like their blog
|
|
||||||
<li>repeat
|
|
||||||
]]>
|
|
||||||
</description>
|
|
||||||
</item>
|
|
||||||
</channel></rss>
|
</channel></rss>
|
||||||
|
@ -199,10 +199,6 @@
|
|||||||
<h1 class="title">a blog that is just a bunch of lists</h1>
|
<h1 class="title">a blog that is just a bunch of lists</h1>
|
||||||
</header>
|
</header>
|
||||||
<ul>
|
<ul>
|
||||||
<li><p><time>2024-03-01</time> <a href="00017.html">a good morning on
|
|
||||||
computer</a></p></li>
|
|
||||||
<li><p><time>2024-02-22</time> <a href="00017.html">everyday i fill
|
|
||||||
things with water</a></p></li>
|
|
||||||
<li><p><time>2024-02-02</time> <a href="00016.html">software i
|
<li><p><time>2024-02-02</time> <a href="00016.html">software i
|
||||||
love</a></p></li>
|
love</a></p></li>
|
||||||
<li><p><time>2024-01-27</time> <a href="00015.html">things i’ve always
|
<li><p><time>2024-01-27</time> <a href="00015.html">things i’ve always
|
||||||
@ -235,7 +231,7 @@ ending</a></p></li>
|
|||||||
have used to publish games on itch.io</a></p></li>
|
have used to publish games on itch.io</a></p></li>
|
||||||
<li><p><time>2023-09-23</time> <a href="00002.html">how to cheer someone
|
<li><p><time>2023-09-23</time> <a href="00002.html">how to cheer someone
|
||||||
up</a></p></li>
|
up</a></p></li>
|
||||||
<li><p><time>2023-09-21</time> <a href="00001.html">stuff that starts
|
<li><p><time>2023-09-21</time> <a href="00001.html">stuff that start
|
||||||
with s that i like to do when i spend the afternoon at the
|
with s that i like to do when i spend the afternoon at the
|
||||||
gym</a></p></li>
|
gym</a></p></li>
|
||||||
</ul>
|
</ul>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user