summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorCase Duckworth2022-08-19 16:12:35 -0500
committerCase Duckworth2022-08-19 16:12:35 -0500
commit30d0cdf4059439786699b77cf0d406947f727894 (patch)
tree68148b17dd974ca62dd2bd8525a2e06b65497c00
parentInitialize (diff)
downloadfwendplanet-30d0cdf4059439786699b77cf0d406947f727894.tar.gz
fwendplanet-30d0cdf4059439786699b77cf0d406947f727894.zip
Paginate
-rw-r--r--.gitignore1
-rw-r--r--Makefile20
-rwxr-xr-xfwendplanet.sh31
-rwxr-xr-xfwendplanet_html.awk61
-rw-r--r--index.html3300
-rw-r--r--style.css168
6 files changed, 1938 insertions, 1643 deletions
diff --git a/.gitignore b/.gitignore index 0e07134..d2efdb9 100644 --- a/.gitignore +++ b/.gitignore
@@ -1,2 +1,3 @@
1feeds/ 1feeds/
2sfeedrc 2sfeedrc
3p*.html
diff --git a/Makefile b/Makefile index 1fa687a..28c668e 100644 --- a/Makefile +++ b/Makefile
@@ -3,19 +3,29 @@ REPO = https://tildegit.org/casa/pages/raw/branch/main/opml/mug.of.opml
3OUTD = /var/www/acdw.casa/fwends/ 3OUTD = /var/www/acdw.casa/fwends/
4RC = sfeedrc 4RC = sfeedrc
5FEEDS = feeds 5FEEDS = feeds
6FILES = index.html style.css 6FILES = index.html style.css p*.html
7AGGREGATOR = ./fwendplanet.sh 7AGGREGATOR = ./fwendplanet.sh
8MAXAGE = 60 8PAGEN = 60 # 2 months
9 9
10.PHONY: publish 10.PHONY: publish
11publish: build 11publish: build
12 mkdir -p $(OUTD) 12 mkdir -p $(OUTD)
13 cp $(FILES) $(OUTD) 13 rsync -avz --delete $(FILES) $(OUTD)
14 14
15.PHONY: build 15.PHONY: build
16build: $(RC) 16build: $(RC)
17 sfeed_update $(RC) || true 17 -rm p*.html
18 $(AGGREGATOR) $(FEEDS) $(MAXAGE) >index.html 18 #-sfeed_update $(RC)
19 NEXT=p2.html PREV=0 $(AGGREGATOR) $(FEEDS) 1 $(PAGEN) >index.html
20 NEXT=p3.html PREV=index.html $(AGGREGATOR) $(FEEDS) 2 $(PAGEN) >pn.html
21 N=2; while grep '<details>' pn.html >/dev/null 2>&1; do \
22 mv pn.html p$$N.html; \
23 N=$$((N+1)); \
24 NEXT=p$$((N+1)).html PREV=p$$((N-1)).html\
25 $(AGGREGATOR) $(FEEDS) $$N $(PAGEN) >pn.html; \
26 done; \
27 rm pn.html; \
28 NEXT=0 PREV=p$$((N-2)).html $(AGGREGATOR) $(FEEDS) $$((N-1)) $(PAGEN) >p$$((N-1)).html
19 29
20$(RC): 30$(RC):
21 curl -L $(REPO) | sfeed_opml_import > $@ 31 curl -L $(REPO) | sfeed_opml_import > $@
diff --git a/fwendplanet.sh b/fwendplanet.sh index 586f934..7ec7eb8 100755 --- a/fwendplanet.sh +++ b/fwendplanet.sh
@@ -6,12 +6,31 @@ curd="$PWD"
6cd "$1" || return 1 6cd "$1" || return 1
7 7
8if [ -n "$2" ]; then 8if [ -n "$2" ]; then
9 old="$(($(date +%s) - ($2 * 24 * 3600)))" 9 page="$2"
10else 10else
11 old=0 11 page=1
12fi 12fi
13 13
14awk -v old="$old" \ 14if [ -n "$3" ]; then
15 'BEGIN{FS="\t";OFS="\t";} int($1)>=old{$2="["FILENAME"] "$2;print}' * | 15 groupn="$(($3 * 24 * 3600))"
16 sort -k1,1rn | 16else
17 "$curd/fwendplanet_html.awk" 17 groupn=1
18fi
19
20# echo "$@" "$page" "$groupn" >&2
21
22awk -v page="$page" -v groupn="$groupn" -v now="$(date +%s)" \
23 'BEGIN { FS = "\t"; OFS = "\t"; }
24 {
25 oldest = groupn*page
26 if (oldest) oldest=now-oldest; else oldest=0
27 newest = groupn*(page-1)
28 if (newest) newest=now-newest; else newest=now
29 d=int($1)
30 if (d>oldest && d<=newest) {
31 # printf "%s\t%s\t%s\n", d, oldest, newest > "/dev/stderr"
32 $2 = "[" FILENAME "] " $2
33 print
34 }
35 }
36' * | sort -k1,1rn | "$curd/fwendplanet_html.awk"
diff --git a/fwendplanet_html.awk b/fwendplanet_html.awk index c4ebe0e..84f29a6 100755 --- a/fwendplanet_html.awk +++ b/fwendplanet_html.awk
@@ -4,6 +4,8 @@
4BEGIN { 4BEGIN {
5 TITLE = "fwend planet" 5 TITLE = "fwend planet"
6 FS = "\t" 6 FS = "\t"
7 NEXT = ENVIRON["NEXT"]
8 PREV = ENVIRON["PREV"]
7} 9}
8 10
9BEGIN { 11BEGIN {
@@ -18,7 +20,22 @@ BEGIN {
18 print "<link rel=\"stylesheet\" type=\"text/css\" href=\"style.css\">" 20 print "<link rel=\"stylesheet\" type=\"text/css\" href=\"style.css\">"
19 print "</head>" 21 print "</head>"
20 print "<body>" 22 print "<body>"
21 print "<h1>fwend planet</h1>" 23 print "<div id=\"main\">"
24 print "<h1>fwend planet"
25 if (PREV) {
26 p = (PREV ~ /index/ ? 1 : PREV)
27 gsub(/[^0-9]/, "", p)
28 print "p. " (int(p) + 1)
29 }
30 print "</h1>"
31 print "<div class=\"nav\">"
32 if (PREV) {
33 print "<a href=\"" PREV "\">prev</a>"
34 }
35 if (NEXT) {
36 print "<a href=\"" NEXT "\">next</a>"
37 }
38 print "</div>"
22} 39}
23 40
24{ 41{
@@ -32,30 +49,50 @@ BEGIN {
32 author = $7 49 author = $7
33 enclosure = $8 50 enclosure = $8
34 category = $9 51 category = $9
52 datecmd = "date -d@" timestamp " +%F"
53 datecmd | getline date
54 close(datecmd)
35 print "<details>" 55 print "<details>"
36 print "<summary>" title "</summary>" 56 print "<summary>" (title ? title : "<untitled>") " : <time class=\"time\">" date "</time></summary>"
37 print "<div class=\"links\">" 57 print "<div class=\"links\">"
38 print "<a href=\"" link "\">read original</a>" 58 if (link && title !~ /linkbudz/ && link != enclosure) {
59 print "<a href=\"" link "\">read original</a>"
60 }
39 if (enclosure) { 61 if (enclosure) {
40 print "<a href=\"" enclosure "\">enclosure</a>" 62 print "<a href=\"" enclosure "\">enclosure</a>"
41 } 63 }
42 print "</div>" 64 print "</div>"
43 print "<div class=\"content\">" content "</div>" 65 print "<div class=\"content\">" content "</div>"
44 print "<details class=\"info\"><summary>item information</summary>" 66 print "<details class=\"info\"><summary>item information</summary>"
45 print "timestamp: " timestamp 67 print "<dl>"
46 print "title: " title 68 print "<dt>timestamp</dt><dd>" timestamp "</dd>"
47 print "link: " link 69 print "<dt>title</dt><dd>" title "</dd>"
48 print "content_type: " content_type 70 print "<dt>link</dt><dd>" link "</dd>"
49 print "id: " id 71 print "<dt>content_type</dt><dd>" content_type "</dd>"
50 print "author: " author 72 print "<dt>id</dt><dd>" id "</dd>"
51 print "enclosure: " enclosure 73 print "<dt>author</dt><dd>" author "</dd>"
52 print "category: " category 74 print "<dt>enclosure</dt><dd>" enclosure "</dd>"
75 print "<dt>category</dt><dd>" category "</dd>"
76 print "</dl>"
53 print "</details>" 77 print "</details>"
54 print "</details>" 78 print "</details>"
55} 79}
56 80
57END { 81END {
58 print "<a href=\"mailto:fwends@me.acdw.net\">email acdw</a> if you have issues." 82 print "<div class=\"nav\">"
83 if (PREV) {
84 print "<a href=\"" PREV "\">prev</a>"
85 }
86 if (NEXT) {
87 print "<a href=\"" NEXT "\">next</a>"
88 }
89 print "</div>"
90 print "<div id=\"footer\">"
91 print "sourced from <a href=\"https://tildegit.org/casa/pages/src/branch/main/opml/mug.of.opml\">"
92 print "a mug of opml</a>."
93 print "<a href=\"mailto:fwends@me.acdw.net\">problems? suggestions?</a>"
94 print "</div>"
95 print "</div>"
59 print "</body>" 96 print "</body>"
60 print "</html>" 97 print "</html>"
61} 98}
diff --git a/index.html b/index.html index 7e58612..62cef65 100644 --- a/index.html +++ b/index.html
@@ -9,81 +9,90 @@
9<link rel="stylesheet" type="text/css" href="style.css"> 9<link rel="stylesheet" type="text/css" href="style.css">
10</head> 10</head>
11<body> 11<body>
12<h1>fwend planet</h1> 12<div id="main">
13<h1>fwend planet
14</h1>
15<div class="nav">
16<a href="p2.html">next</a>
17</div>
13<details> 18<details>
14<summary>[linkbudz rss feed] ed is the standard editor</summary> 19<summary>[linkbudz rss feed] ed is the standard editor : <time class="time">2022-08-18</time></summary>
15<div class="links"> 20<div class="links">
16<a href="https://tube.tchncs.de/w/g1ZKSzvDaqbpWQQgxGfW3z">read original</a>
17</div> 21</div>
18<div class="content"><p><a href="https://tube.tchncs.de/w/g1ZKSzvDaqbpWQQgxGfW3z">ed is the standard editor</a></p> 22<div class="content"><p><a href="https://tube.tchncs.de/w/g1ZKSzvDaqbpWQQgxGfW3z">ed is the standard editor</a></p>
19 <p>[https] posted by dozens on August 18, 2022</p></div> 23 <p>[https] posted by dozens on August 18, 2022</p></div>
20<details class="info"><summary>item information</summary> 24<details class="info"><summary>item information</summary>
21timestamp: 1660839707 25<dl>
22title: [linkbudz rss feed] ed is the standard editor 26<dt>timestamp</dt><dd>1660839707</dd>
23link: https://tube.tchncs.de/w/g1ZKSzvDaqbpWQQgxGfW3z 27<dt>title</dt><dd>[linkbudz rss feed] ed is the standard editor</dd>
24content_type: html 28<dt>link</dt><dd>https://tube.tchncs.de/w/g1ZKSzvDaqbpWQQgxGfW3z</dd>
25id: dozens20220818162147 29<dt>content_type</dt><dd>html</dd>
26author: 30<dt>id</dt><dd>dozens20220818162147</dd>
27enclosure: 31<dt>author</dt><dd></dd>
28category: https 32<dt>enclosure</dt><dd></dd>
33<dt>category</dt><dd>https</dd>
34</dl>
29</details> 35</details>
30</details> 36</details>
31<details> 37<details>
32<summary>[linkbudz rss feed] Rhythm Nation causes a vulnerability</summary> 38<summary>[linkbudz rss feed] Rhythm Nation causes a vulnerability : <time class="time">2022-08-18</time></summary>
33<div class="links"> 39<div class="links">
34<a href="https://nvd.nist.gov/vuln/detail/CVE-2022-38392">read original</a>
35</div> 40</div>
36<div class="content"><p><a href="https://nvd.nist.gov/vuln/detail/CVE-2022-38392">Rhythm Nation causes a vulnerability</a></p> 41<div class="content"><p><a href="https://nvd.nist.gov/vuln/detail/CVE-2022-38392">Rhythm Nation causes a vulnerability</a></p>
37 <p>[https] posted by lucidiot on August 18, 2022</p></div> 42 <p>[https] posted by lucidiot on August 18, 2022</p></div>
38<details class="info"><summary>item information</summary> 43<details class="info"><summary>item information</summary>
39timestamp: 1660837077 44<dl>
40title: [linkbudz rss feed] Rhythm Nation causes a vulnerability 45<dt>timestamp</dt><dd>1660837077</dd>
41link: https://nvd.nist.gov/vuln/detail/CVE-2022-38392 46<dt>title</dt><dd>[linkbudz rss feed] Rhythm Nation causes a vulnerability</dd>
42content_type: html 47<dt>link</dt><dd>https://nvd.nist.gov/vuln/detail/CVE-2022-38392</dd>
43id: lucidiot20220818153757 48<dt>content_type</dt><dd>html</dd>
44author: 49<dt>id</dt><dd>lucidiot20220818153757</dd>
45enclosure: 50<dt>author</dt><dd></dd>
46category: https 51<dt>enclosure</dt><dd></dd>
52<dt>category</dt><dd>https</dd>
53</dl>
47</details> 54</details>
48</details> 55</details>
49<details> 56<details>
50<summary>[linkbudz rss feed] fwends!</summary> 57<summary>[linkbudz rss feed] fwends! : <time class="time">2022-08-18</time></summary>
51<div class="links"> 58<div class="links">
52<a href="https://acdw.casa/fwends/">read original</a>
53</div> 59</div>
54<div class="content"><p><a href="https://acdw.casa/fwends/">fwends!</a></p> 60<div class="content"><p><a href="https://acdw.casa/fwends/">fwends!</a></p>
55 <p>[https] posted by acdw on August 18, 2022</p></div> 61 <p>[https] posted by acdw on August 18, 2022</p></div>
56<details class="info"><summary>item information</summary> 62<details class="info"><summary>item information</summary>
57timestamp: 1660835383 63<dl>
58title: [linkbudz rss feed] fwends! 64<dt>timestamp</dt><dd>1660835383</dd>
59link: https://acdw.casa/fwends/ 65<dt>title</dt><dd>[linkbudz rss feed] fwends!</dd>
60content_type: html 66<dt>link</dt><dd>https://acdw.casa/fwends/</dd>
61id: acdw20220818150943 67<dt>content_type</dt><dd>html</dd>
62author: 68<dt>id</dt><dd>acdw20220818150943</dd>
63enclosure: 69<dt>author</dt><dd></dd>
64category: https 70<dt>enclosure</dt><dd></dd>
71<dt>category</dt><dd>https</dd>
72</dl>
65</details> 73</details>
66</details> 74</details>
67<details> 75<details>
68<summary>[linkbudz rss feed] Why I left PINE64</summary> 76<summary>[linkbudz rss feed] Why I left PINE64 : <time class="time">2022-08-18</time></summary>
69<div class="links"> 77<div class="links">
70<a href="https://blog.brixit.nl/why-i-left-pine64/">read original</a>
71</div> 78</div>
72<div class="content"><p><a href="https://blog.brixit.nl/why-i-left-pine64/">Why I left PINE64</a></p> 79<div class="content"><p><a href="https://blog.brixit.nl/why-i-left-pine64/">Why I left PINE64</a></p>
73 <p>[https] posted by lucidiot on August 18, 2022</p></div> 80 <p>[https] posted by lucidiot on August 18, 2022</p></div>
74<details class="info"><summary>item information</summary> 81<details class="info"><summary>item information</summary>
75timestamp: 1660829064 82<dl>
76title: [linkbudz rss feed] Why I left PINE64 83<dt>timestamp</dt><dd>1660829064</dd>
77link: https://blog.brixit.nl/why-i-left-pine64/ 84<dt>title</dt><dd>[linkbudz rss feed] Why I left PINE64</dd>
78content_type: html 85<dt>link</dt><dd>https://blog.brixit.nl/why-i-left-pine64/</dd>
79id: lucidiot20220818132424 86<dt>content_type</dt><dd>html</dd>
80author: 87<dt>id</dt><dd>lucidiot20220818132424</dd>
81enclosure: 88<dt>author</dt><dd></dd>
82category: https 89<dt>enclosure</dt><dd></dd>
90<dt>category</dt><dd>https</dd>
91</dl>
83</details> 92</details>
84</details> 93</details>
85<details> 94<details>
86<summary>[(lambda (x) (create x))] Shiny New Lang</summary> 95<summary>[(lambda (x) (create x))] Shiny New Lang : <time class="time">2022-08-18</time></summary>
87<div class="links"> 96<div class="links">
88<a href="https://lambdacreate.com/posts/39">read original</a> 97<a href="https://lambdacreate.com/posts/39">read original</a>
89</div> 98</div>
@@ -224,124 +233,134 @@ echo lcp()
224 233
225<p>Hopefully these little examples got you curious, or even better excited, to give Nim a try. For me this fits a really nice niche where I want a batteries included, very well documented language that will be fast and absolutely minuscule. I'll probably leave my prototyping to Golang, but Nim's definitely finding a home in my tool-chain, especially considering that after only a few hours of poking and very cursory reading I'm already rewriting some of my existing tools, I think I definitely had an "Ooh shiny" moment with Nim. And I tend to get very much stuck on those.</p></div> 234<p>Hopefully these little examples got you curious, or even better excited, to give Nim a try. For me this fits a really nice niche where I want a batteries included, very well documented language that will be fast and absolutely minuscule. I'll probably leave my prototyping to Golang, but Nim's definitely finding a home in my tool-chain, especially considering that after only a few hours of poking and very cursory reading I'm already rewriting some of my existing tools, I think I definitely had an "Ooh shiny" moment with Nim. And I tend to get very much stuck on those.</p></div>
226<details class="info"><summary>item information</summary> 235<details class="info"><summary>item information</summary>
227timestamp: 1660824000 236<dl>
228title: [(lambda (x) (create x))] Shiny New Lang 237<dt>timestamp</dt><dd>1660824000</dd>
229link: https://lambdacreate.com/posts/39 238<dt>title</dt><dd>[(lambda (x) (create x))] Shiny New Lang</dd>
230content_type: html 239<dt>link</dt><dd>https://lambdacreate.com/posts/39</dd>
231id: https://lambdacreate.com/posts/39 240<dt>content_type</dt><dd>html</dd>
232author: 241<dt>id</dt><dd>https://lambdacreate.com/posts/39</dd>
233enclosure: 242<dt>author</dt><dd></dd>
234category: 243<dt>enclosure</dt><dd></dd>
244<dt>category</dt><dd></dd>
245</dl>
235</details> 246</details>
236</details> 247</details>
237<details> 248<details>
238<summary>[lipu pi jan Niko] how I made Sheepspin (the NOVA 2022 wild compo winner)</summary> 249<summary>[lipu pi jan Niko] how I made Sheepspin (the NOVA 2022 wild compo winner) : <time class="time">2022-08-17</time></summary>
239<div class="links"> 250<div class="links">
240<a href="https://tilde.town/~nihilazo/log/sheepspin.html">read original</a> 251<a href="https://tilde.town/~nihilazo/log/sheepspin.html">read original</a>
241</div> 252</div>
242<div class="content">This last weekend was the NOVA 2022 demoparty, which was really fun and a great time. I was involved in 5 productions at the party (both solo and group prods). Most were shitposts but my TIC-80 intro, Sheepspin, turned out to win the wild compo. I really didn&rsquo;t expect that but I got a few questions about how it worked and I figured I&rsquo;d do a little writeup of it. This won&rsquo;t be a complete deep dive into everything - there honestly isn&rsquo;t all that much to dive into - so I&rsquo;m going to go scene by scene1 and talk about what is most interesting in that scene, using code snippets and such.</div> 253<div class="content">This last weekend was the NOVA 2022 demoparty, which was really fun and a great time. I was involved in 5 productions at the party (both solo and group prods). Most were shitposts but my TIC-80 intro, Sheepspin, turned out to win the wild compo. I really didn&rsquo;t expect that but I got a few questions about how it worked and I figured I&rsquo;d do a little writeup of it. This won&rsquo;t be a complete deep dive into everything - there honestly isn&rsquo;t all that much to dive into - so I&rsquo;m going to go scene by scene1 and talk about what is most interesting in that scene, using code snippets and such.</div>
243<details class="info"><summary>item information</summary> 254<details class="info"><summary>item information</summary>
244timestamp: 1660780800 255<dl>
245title: [lipu pi jan Niko] how I made Sheepspin (the NOVA 2022 wild compo winner) 256<dt>timestamp</dt><dd>1660780800</dd>
246link: https://tilde.town/~nihilazo/log/sheepspin.html 257<dt>title</dt><dd>[lipu pi jan Niko] how I made Sheepspin (the NOVA 2022 wild compo winner)</dd>
247content_type: html 258<dt>link</dt><dd>https://tilde.town/~nihilazo/log/sheepspin.html</dd>
248id: https://tilde.town/~nihilazo/log/sheepspin.html 259<dt>content_type</dt><dd>html</dd>
249author: 260<dt>id</dt><dd>https://tilde.town/~nihilazo/log/sheepspin.html</dd>
250enclosure: 261<dt>author</dt><dd></dd>
251category: 262<dt>enclosure</dt><dd></dd>
263<dt>category</dt><dd></dd>
264</dl>
252</details> 265</details>
253</details> 266</details>
254<details> 267<details>
255<summary>[linkbudz rss feed] Defmacro for C</summary> 268<summary>[linkbudz rss feed] Defmacro for C : <time class="time">2022-08-17</time></summary>
256<div class="links"> 269<div class="links">
257<a href="https://www.european-lisp-symposium.org/static/2014/selgrad.pdf">read original</a>
258</div> 270</div>
259<div class="content"><p><a href="https://www.european-lisp-symposium.org/static/2014/selgrad.pdf">Defmacro for C</a></p> 271<div class="content"><p><a href="https://www.european-lisp-symposium.org/static/2014/selgrad.pdf">Defmacro for C</a></p>
260 <p>[https] posted by wsinatra on August 17, 2022</p></div> 272 <p>[https] posted by wsinatra on August 17, 2022</p></div>
261<details class="info"><summary>item information</summary> 273<details class="info"><summary>item information</summary>
262timestamp: 1660750368 274<dl>
263title: [linkbudz rss feed] Defmacro for C 275<dt>timestamp</dt><dd>1660750368</dd>
264link: https://www.european-lisp-symposium.org/static/2014/selgrad.pdf 276<dt>title</dt><dd>[linkbudz rss feed] Defmacro for C</dd>
265content_type: html 277<dt>link</dt><dd>https://www.european-lisp-symposium.org/static/2014/selgrad.pdf</dd>
266id: wsinatra20220817153248 278<dt>content_type</dt><dd>html</dd>
267author: 279<dt>id</dt><dd>wsinatra20220817153248</dd>
268enclosure: 280<dt>author</dt><dd></dd>
269category: https 281<dt>enclosure</dt><dd></dd>
282<dt>category</dt><dd>https</dd>
283</dl>
270</details> 284</details>
271</details> 285</details>
272<details> 286<details>
273<summary>[linkbudz rss feed] JavaScript PDP 11/70 emulator</summary> 287<summary>[linkbudz rss feed] JavaScript PDP 11/70 emulator : <time class="time">2022-08-16</time></summary>
274<div class="links"> 288<div class="links">
275<a href="https://skn.noip.me/pdp11/pdp11.html">read original</a>
276</div> 289</div>
277<div class="content"><p><a href="https://skn.noip.me/pdp11/pdp11.html">JavaScript PDP 11/70 emulator</a></p> 290<div class="content"><p><a href="https://skn.noip.me/pdp11/pdp11.html">JavaScript PDP 11/70 emulator</a></p>
278 <p>[https] posted by m455 on August 17, 2022</p></div> 291 <p>[https] posted by m455 on August 17, 2022</p></div>
279<details class="info"><summary>item information</summary> 292<details class="info"><summary>item information</summary>
280timestamp: 1660704727 293<dl>
281title: [linkbudz rss feed] JavaScript PDP 11/70 emulator 294<dt>timestamp</dt><dd>1660704727</dd>
282link: https://skn.noip.me/pdp11/pdp11.html 295<dt>title</dt><dd>[linkbudz rss feed] JavaScript PDP 11/70 emulator</dd>
283content_type: html 296<dt>link</dt><dd>https://skn.noip.me/pdp11/pdp11.html</dd>
284id: m45520220817025207 297<dt>content_type</dt><dd>html</dd>
285author: 298<dt>id</dt><dd>m45520220817025207</dd>
286enclosure: 299<dt>author</dt><dd></dd>
287category: https 300<dt>enclosure</dt><dd></dd>
301<dt>category</dt><dd>https</dd>
302</dl>
288</details> 303</details>
289</details> 304</details>
290<details> 305<details>
291<summary>[linkbudz rss feed] tenpo ko: a universal timezone clock</summary> 306<summary>[linkbudz rss feed] tenpo ko: a universal timezone clock : <time class="time">2022-08-16</time></summary>
292<div class="links"> 307<div class="links">
293<a href="http://tilde.town/~dozens/tenpoko/">read original</a>
294</div> 308</div>
295<div class="content"><p><a href="http://tilde.town/~dozens/tenpoko/">tenpo ko: a universal timezone clock</a></p> 309<div class="content"><p><a href="http://tilde.town/~dozens/tenpoko/">tenpo ko: a universal timezone clock</a></p>
296 <p>[http] posted by dozens on August 17, 2022</p></div> 310 <p>[http] posted by dozens on August 17, 2022</p></div>
297<details class="info"><summary>item information</summary> 311<details class="info"><summary>item information</summary>
298timestamp: 1660696023 312<dl>
299title: [linkbudz rss feed] tenpo ko: a universal timezone clock 313<dt>timestamp</dt><dd>1660696023</dd>
300link: http://tilde.town/~dozens/tenpoko/ 314<dt>title</dt><dd>[linkbudz rss feed] tenpo ko: a universal timezone clock</dd>
301content_type: html 315<dt>link</dt><dd>http://tilde.town/~dozens/tenpoko/</dd>
302id: dozens20220817002703 316<dt>content_type</dt><dd>html</dd>
303author: 317<dt>id</dt><dd>dozens20220817002703</dd>
304enclosure: 318<dt>author</dt><dd></dd>
305category: http 319<dt>enclosure</dt><dd></dd>
320<dt>category</dt><dd>http</dd>
321</dl>
306</details> 322</details>
307</details> 323</details>
308<details> 324<details>
309<summary>[Brainshit] Big Mac Chicken</summary> 325<summary>[Brainshit] Big Mac Chicken : <time class="time">2022-08-16</time></summary>
310<div class="links"> 326<div class="links">
311<a href="https://brainshit.fr/read/315">read original</a> 327<a href="https://brainshit.fr/read/315">read original</a>
312</div> 328</div>
313<div class="content">McDonald's tente de déclencher une guerre civile en sortant une version poulet de son burger phare. Le Big Mac Chicken a la même taille décevante que le Big Mac, et comme le poulet a encore moins de goût que le bœuf, on sent ressortir encore plus la sauce Big Mac, ce qui pourrait faire plaisir à ses fans s'ils se décident à accepter qu'on puisse essayer d'innover sur leur burger. Tout comme le P'tit Wrap Bœuf Deluxe, c'est pas super intéressant, mais pas mauvais non plus. <strong>Meh / 7</strong></div> 329<div class="content">McDonald's tente de déclencher une guerre civile en sortant une version poulet de son burger phare. Le Big Mac Chicken a la même taille décevante que le Big Mac, et comme le poulet a encore moins de goût que le bœuf, on sent ressortir encore plus la sauce Big Mac, ce qui pourrait faire plaisir à ses fans s'ils se décident à accepter qu'on puisse essayer d'innover sur leur burger. Tout comme le P'tit Wrap Bœuf Deluxe, c'est pas super intéressant, mais pas mauvais non plus. <strong>Meh / 7</strong></div>
314<details class="info"><summary>item information</summary> 330<details class="info"><summary>item information</summary>
315timestamp: 1660687200 331<dl>
316title: [Brainshit] Big Mac Chicken 332<dt>timestamp</dt><dd>1660687200</dd>
317link: https://brainshit.fr/read/315 333<dt>title</dt><dd>[Brainshit] Big Mac Chicken</dd>
318content_type: html 334<dt>link</dt><dd>https://brainshit.fr/read/315</dd>
319id: https://brainshit.fr/read/315 335<dt>content_type</dt><dd>html</dd>
320author: neuron@brainshit.fr (Lucidiot) 336<dt>id</dt><dd>https://brainshit.fr/read/315</dd>
321enclosure: 337<dt>author</dt><dd>neuron@brainshit.fr (Lucidiot)</dd>
322category: Gastronomie 338<dt>enclosure</dt><dd></dd>
339<dt>category</dt><dd>Gastronomie</dd>
340</dl>
323</details> 341</details>
324</details> 342</details>
325<details> 343<details>
326<summary>[linkbudz rss feed] Hank explains the new US climate law, and why we can be optimistic about it.</summary> 344<summary>[linkbudz rss feed] Hank explains the new US climate law, and why we can be optimistic about it. : <time class="time">2022-08-15</time></summary>
327<div class="links"> 345<div class="links">
328<a href="https://www.youtube.com/watch?v=qw5zzrOpo2s">read original</a>
329</div> 346</div>
330<div class="content"><p><a href="https://www.youtube.com/watch?v=qw5zzrOpo2s">Hank explains the new US climate law, and why we can be optimistic about it.</a></p> 347<div class="content"><p><a href="https://www.youtube.com/watch?v=qw5zzrOpo2s">Hank explains the new US climate law, and why we can be optimistic about it.</a></p>
331 <p>[https] posted by kindrobot on August 15, 2022</p></div> 348 <p>[https] posted by kindrobot on August 15, 2022</p></div>
332<details class="info"><summary>item information</summary> 349<details class="info"><summary>item information</summary>
333timestamp: 1660574445 350<dl>
334title: [linkbudz rss feed] Hank explains the new US climate law, and why we can be optimistic about it. 351<dt>timestamp</dt><dd>1660574445</dd>
335link: https://www.youtube.com/watch?v=qw5zzrOpo2s 352<dt>title</dt><dd>[linkbudz rss feed] Hank explains the new US climate law, and why we can be optimistic about it.</dd>
336content_type: html 353<dt>link</dt><dd>https://www.youtube.com/watch?v=qw5zzrOpo2s</dd>
337id: kindrobot20220815144045 354<dt>content_type</dt><dd>html</dd>
338author: 355<dt>id</dt><dd>kindrobot20220815144045</dd>
339enclosure: 356<dt>author</dt><dd></dd>
340category: https 357<dt>enclosure</dt><dd></dd>
358<dt>category</dt><dd>https</dd>
359</dl>
341</details> 360</details>
342</details> 361</details>
343<details> 362<details>
344<summary>[(lambda (x) (create x))] Auskultanto</summary> 363<summary>[(lambda (x) (create x))] Auskultanto : <time class="time">2022-08-15</time></summary>
345<div class="links"> 364<div class="links">
346<a href="https://lambdacreate.com/posts/38">read original</a> 365<a href="https://lambdacreate.com/posts/38">read original</a>
347</div> 366</div>
@@ -450,107 +469,116 @@ Scripts:
450 469
451<p>Once again, this tool is just a prototype, something thrown together in a couple of hours to see if it can even be done. I'm proud of how resilient and flexible it seems right out the box. I'll continue to work at the idea and expand on the functionality in the future, but for now enjoy a toy monitoring system.</p></div> 470<p>Once again, this tool is just a prototype, something thrown together in a couple of hours to see if it can even be done. I'm proud of how resilient and flexible it seems right out the box. I'll continue to work at the idea and expand on the functionality in the future, but for now enjoy a toy monitoring system.</p></div>
452<details class="info"><summary>item information</summary> 471<details class="info"><summary>item information</summary>
453timestamp: 1660564800 472<dl>
454title: [(lambda (x) (create x))] Auskultanto 473<dt>timestamp</dt><dd>1660564800</dd>
455link: https://lambdacreate.com/posts/38 474<dt>title</dt><dd>[(lambda (x) (create x))] Auskultanto</dd>
456content_type: html 475<dt>link</dt><dd>https://lambdacreate.com/posts/38</dd>
457id: https://lambdacreate.com/posts/38 476<dt>content_type</dt><dd>html</dd>
458author: 477<dt>id</dt><dd>https://lambdacreate.com/posts/38</dd>
459enclosure: 478<dt>author</dt><dd></dd>
460category: 479<dt>enclosure</dt><dd></dd>
480<dt>category</dt><dd></dd>
481</dl>
461</details> 482</details>
462</details> 483</details>
463<details> 484<details>
464<summary>[RSRSSS] tilde whirl</summary> 485<summary>[RSRSSS] tilde whirl : <time class="time">2022-08-15</time></summary>
465<div class="links"> 486<div class="links">
466<a href="http://tilde.town/~dozens/podcast/rss.xml">read original</a> 487<a href="http://tilde.town/~dozens/podcast/rss.xml">read original</a>
467</div> 488</div>
468<div class="content"><p>~dozens has started a podcast with tildeverse citizens as its guests. Since podcasts are fully backed by RSS, well there is an RSS feed available. I helped him iron out some details on the feed, since I had never toyed with RSS feeds for podcasts before and wanted to look at them a bit more in-depth. Maybe if I get enough experience helping <a href="https://casa.tildepages.org/" target="_blank">casakhstan</a> people set up their podcast feeds, I will write about it here…</p></div> 489<div class="content"><p>~dozens has started a podcast with tildeverse citizens as its guests. Since podcasts are fully backed by RSS, well there is an RSS feed available. I helped him iron out some details on the feed, since I had never toyed with RSS feeds for podcasts before and wanted to look at them a bit more in-depth. Maybe if I get enough experience helping <a href="https://casa.tildepages.org/" target="_blank">casakhstan</a> people set up their podcast feeds, I will write about it here…</p></div>
469<details class="info"><summary>item information</summary> 490<details class="info"><summary>item information</summary>
470timestamp: 1660564323 491<dl>
471title: [RSRSSS] tilde whirl 492<dt>timestamp</dt><dd>1660564323</dd>
472link: http://tilde.town/~dozens/podcast/rss.xml 493<dt>title</dt><dd>[RSRSSS] tilde whirl</dd>
473content_type: html 494<dt>link</dt><dd>http://tilde.town/~dozens/podcast/rss.xml</dd>
474id: tilde-whirl 495<dt>content_type</dt><dd>html</dd>
475author: 496<dt>id</dt><dd>tilde-whirl</dd>
476enclosure: 497<dt>author</dt><dd></dd>
477category: Feed|Podcast 498<dt>enclosure</dt><dd></dd>
499<dt>category</dt><dd>Feed|Podcast</dd>
500</dl>
478</details> 501</details>
479</details> 502</details>
480<details> 503<details>
481<summary>[~lucidiot's wiki] tank</summary> 504<summary>[~lucidiot's wiki] tank : <time class="time">2022-08-15</time></summary>
482<div class="links"> 505<div class="links">
483<a href="https://envs.net/~lucidiot/tank.html">read original</a> 506<a href="https://envs.net/~lucidiot/tank.html">read original</a>
484</div> 507</div>
485<div class="content"></div> 508<div class="content"></div>
486<details class="info"><summary>item information</summary> 509<details class="info"><summary>item information</summary>
487timestamp: 1660550801 510<dl>
488title: [~lucidiot's wiki] tank 511<dt>timestamp</dt><dd>1660550801</dd>
489link: https://envs.net/~lucidiot/tank.html 512<dt>title</dt><dd>[~lucidiot's wiki] tank</dd>
490content_type: 513<dt>link</dt><dd>https://envs.net/~lucidiot/tank.html</dd>
491id: https://envs.net/~lucidiot/tank.html 514<dt>content_type</dt><dd></dd>
492author: 515<dt>id</dt><dd>https://envs.net/~lucidiot/tank.html</dd>
493enclosure: 516<dt>author</dt><dd></dd>
494category: 517<dt>enclosure</dt><dd></dd>
518<dt>category</dt><dd></dd>
519</dl>
495</details> 520</details>
496</details> 521</details>
497<details> 522<details>
498<summary>[~lucidiot's wiki] notebooks</summary> 523<summary>[~lucidiot's wiki] notebooks : <time class="time">2022-08-15</time></summary>
499<div class="links"> 524<div class="links">
500<a href="https://envs.net/~lucidiot/notebooks.html">read original</a> 525<a href="https://envs.net/~lucidiot/notebooks.html">read original</a>
501</div> 526</div>
502<div class="content"></div> 527<div class="content"></div>
503<details class="info"><summary>item information</summary> 528<details class="info"><summary>item information</summary>
504timestamp: 1660542735 529<dl>
505title: [~lucidiot's wiki] notebooks 530<dt>timestamp</dt><dd>1660542735</dd>
506link: https://envs.net/~lucidiot/notebooks.html 531<dt>title</dt><dd>[~lucidiot's wiki] notebooks</dd>
507content_type: 532<dt>link</dt><dd>https://envs.net/~lucidiot/notebooks.html</dd>
508id: https://envs.net/~lucidiot/notebooks.html 533<dt>content_type</dt><dd></dd>
509author: 534<dt>id</dt><dd>https://envs.net/~lucidiot/notebooks.html</dd>
510enclosure: 535<dt>author</dt><dd></dd>
511category: 536<dt>enclosure</dt><dd></dd>
537<dt>category</dt><dd></dd>
538</dl>
512</details> 539</details>
513</details> 540</details>
514<details> 541<details>
515<summary>[linkbudz rss feed] C Isn't A Programming Language Anymore</summary> 542<summary>[linkbudz rss feed] C Isn't A Programming Language Anymore : <time class="time">2022-08-14</time></summary>
516<div class="links"> 543<div class="links">
517<a href="https://gankra.github.io/blah/c-isnt-a-language/">read original</a>
518</div> 544</div>
519<div class="content"><p><a href="https://gankra.github.io/blah/c-isnt-a-language/">C Isn't A Programming Language Anymore</a></p> 545<div class="content"><p><a href="https://gankra.github.io/blah/c-isnt-a-language/">C Isn't A Programming Language Anymore</a></p>
520 <p>[https] posted by dozens on August 15, 2022</p></div> 546 <p>[https] posted by dozens on August 15, 2022</p></div>
521<details class="info"><summary>item information</summary> 547<details class="info"><summary>item information</summary>
522timestamp: 1660528100 548<dl>
523title: [linkbudz rss feed] C Isn't A Programming Language Anymore 549<dt>timestamp</dt><dd>1660528100</dd>
524link: https://gankra.github.io/blah/c-isnt-a-language/ 550<dt>title</dt><dd>[linkbudz rss feed] C Isn't A Programming Language Anymore</dd>
525content_type: html 551<dt>link</dt><dd>https://gankra.github.io/blah/c-isnt-a-language/</dd>
526id: dozens20220815014820 552<dt>content_type</dt><dd>html</dd>
527author: 553<dt>id</dt><dd>dozens20220815014820</dd>
528enclosure: 554<dt>author</dt><dd></dd>
529category: https 555<dt>enclosure</dt><dd></dd>
556<dt>category</dt><dd>https</dd>
557</dl>
530</details> 558</details>
531</details> 559</details>
532<details> 560<details>
533<summary>[linkbudz rss feed] 43beans</summary> 561<summary>[linkbudz rss feed] 43beans : <time class="time">2022-08-14</time></summary>
534<div class="links"> 562<div class="links">
535<a href="https://www.youtube.com/watch?v=3V84Bi-mzQM">read original</a>
536</div> 563</div>
537<div class="content"><p><a href="https://www.youtube.com/watch?v=3V84Bi-mzQM">43beans</a></p> 564<div class="content"><p><a href="https://www.youtube.com/watch?v=3V84Bi-mzQM">43beans</a></p>
538 <p>[https] posted by acdw on August 14, 2022</p></div> 565 <p>[https] posted by acdw on August 14, 2022</p></div>
539<details class="info"><summary>item information</summary> 566<details class="info"><summary>item information</summary>
540timestamp: 1660490080 567<dl>
541title: [linkbudz rss feed] 43beans 568<dt>timestamp</dt><dd>1660490080</dd>
542link: https://www.youtube.com/watch?v=3V84Bi-mzQM 569<dt>title</dt><dd>[linkbudz rss feed] 43beans</dd>
543content_type: html 570<dt>link</dt><dd>https://www.youtube.com/watch?v=3V84Bi-mzQM</dd>
544id: acdw20220814151440 571<dt>content_type</dt><dd>html</dd>
545author: 572<dt>id</dt><dd>acdw20220814151440</dd>
546enclosure: 573<dt>author</dt><dd></dd>
547category: https 574<dt>enclosure</dt><dd></dd>
575<dt>category</dt><dd>https</dd>
576</dl>
548</details> 577</details>
549</details> 578</details>
550<details> 579<details>
551<summary>[dozens weed] 00030 re: [acdw] 2</summary> 580<summary>[dozens weed] 00030 re: [acdw] 2 : <time class="time">2022-08-14</time></summary>
552<div class="links"> 581<div class="links">
553<a href="">read original</a>
554</div> 582</div>
555<div class="content"><blockquote> 583<div class="content"><blockquote>
556 <p>I’ve subscribed to friends’ weeds (really dozens for now—hi dozens!) under a hidden link on my planet.acdw.net thing. I hope this is okay with everyone.</p> 584 <p>I’ve subscribed to friends’ weeds (really dozens for now—hi dozens!) under a hidden link on my planet.acdw.net thing. I hope this is okay with everyone.</p>
@@ -577,20 +605,21 @@ category: https
577 <p>I did use rlwrap! I like having command history for the most part. But yeah that does provide some better cursor control.</p> 605 <p>I did use rlwrap! I like having command history for the most part. But yeah that does provide some better cursor control.</p>
578 <p>Whoa, just read the manpage on readline and it is much more configurable than I ever realized..</p></div> 606 <p>Whoa, just read the manpage on readline and it is much more configurable than I ever realized..</p></div>
579<details class="info"><summary>item information</summary> 607<details class="info"><summary>item information</summary>
580timestamp: 1660486377 608<dl>
581title: [dozens weed] 00030 re: [acdw] 2 609<dt>timestamp</dt><dd>1660486377</dd>
582link: 610<dt>title</dt><dd>[dozens weed] 00030 re: [acdw] 2</dd>
583content_type: html 611<dt>link</dt><dd></dd>
584id: Sun, 14 Aug 2022 10:12:57 -0400 612<dt>content_type</dt><dd>html</dd>
585author: dozens sin leche 613<dt>id</dt><dd>Sun, 14 Aug 2022 10:12:57 -0400</dd>
586enclosure: 614<dt>author</dt><dd>dozens sin leche</dd>
587category: 615<dt>enclosure</dt><dd></dd>
616<dt>category</dt><dd></dd>
617</dl>
588</details> 618</details>
589</details> 619</details>
590<details> 620<details>
591<summary>[dozens weed] 00029 ed</summary> 621<summary>[dozens weed] 00029 ed : <time class="time">2022-08-13</time></summary>
592<div class="links"> 622<div class="links">
593<a href="">read original</a>
594</div> 623</div>
595<div class="content"><blockquote> 624<div class="content"><blockquote>
596 <p>ed is the standard editor</p> 625 <p>ed is the standard editor</p>
@@ -629,304 +658,324 @@ category:
629 <p>There is no vimrc to get distracted by. No config to waste time tweaking. All there is to do is just write. There is nothing else.</p> 658 <p>There is no vimrc to get distracted by. No config to waste time tweaking. All there is to do is just write. There is nothing else.</p>
630 <p>I do think that my little e-ink typewriter might be both more fun and more useful if I had the option to write and edit in ed. Now that I’ve spent some time with it, I do think that a line based editor is both more useful and more elegant than the primative character based editor it has.</p></div> 659 <p>I do think that my little e-ink typewriter might be both more fun and more useful if I had the option to write and edit in ed. Now that I’ve spent some time with it, I do think that a line based editor is both more useful and more elegant than the primative character based editor it has.</p></div>
631<details class="info"><summary>item information</summary> 660<details class="info"><summary>item information</summary>
632timestamp: 1660443015 661<dl>
633title: [dozens weed] 00029 ed 662<dt>timestamp</dt><dd>1660443015</dd>
634link: 663<dt>title</dt><dd>[dozens weed] 00029 ed</dd>
635content_type: html 664<dt>link</dt><dd></dd>
636id: Sat, 13 Aug 2022 22:10:15 -0400 665<dt>content_type</dt><dd>html</dd>
637author: dozens sin leche 666<dt>id</dt><dd>Sat, 13 Aug 2022 22:10:15 -0400</dd>
638enclosure: 667<dt>author</dt><dd>dozens sin leche</dd>
639category: 668<dt>enclosure</dt><dd></dd>
669<dt>category</dt><dd></dd>
670</dl>
640</details> 671</details>
641</details> 672</details>
642<details> 673<details>
643<summary>[linkbudz rss feed] How can Santa keep his lists when the GDPR is around?</summary> 674<summary>[linkbudz rss feed] How can Santa keep his lists when the GDPR is around? : <time class="time">2022-08-13</time></summary>
644<div class="links"> 675<div class="links">
645<a href="https://worldbuilding.stackexchange.com/q/114033">read original</a>
646</div> 676</div>
647<div class="content"><p><a href="https://worldbuilding.stackexchange.com/q/114033">How can Santa keep his lists when the GDPR is around?</a></p> 677<div class="content"><p><a href="https://worldbuilding.stackexchange.com/q/114033">How can Santa keep his lists when the GDPR is around?</a></p>
648 <p>[https] posted by lucidiot on August 13, 2022</p></div> 678 <p>[https] posted by lucidiot on August 13, 2022</p></div>
649<details class="info"><summary>item information</summary> 679<details class="info"><summary>item information</summary>
650timestamp: 1660432338 680<dl>
651title: [linkbudz rss feed] How can Santa keep his lists when the GDPR is around? 681<dt>timestamp</dt><dd>1660432338</dd>
652link: https://worldbuilding.stackexchange.com/q/114033 682<dt>title</dt><dd>[linkbudz rss feed] How can Santa keep his lists when the GDPR is around?</dd>
653content_type: html 683<dt>link</dt><dd>https://worldbuilding.stackexchange.com/q/114033</dd>
654id: lucidiot20220813231218 684<dt>content_type</dt><dd>html</dd>
655author: 685<dt>id</dt><dd>lucidiot20220813231218</dd>
656enclosure: 686<dt>author</dt><dd></dd>
657category: https 687<dt>enclosure</dt><dd></dd>
688<dt>category</dt><dd>https</dd>
689</dl>
658</details> 690</details>
659</details> 691</details>
660<details> 692<details>
661<summary>[Brainshit] Blog-Driven Development</summary> 693<summary>[Brainshit] Blog-Driven Development : <time class="time">2022-08-13</time></summary>
662<div class="links"> 694<div class="links">
663<a href="https://brainshit.fr/read/314">read original</a> 695<a href="https://brainshit.fr/read/314">read original</a>
664</div> 696</div>
665<div class="content">Une longue réflexion sur une pratique que j'ai commencé sans vraiment y penser depuis un an.</div> 697<div class="content">Une longue réflexion sur une pratique que j'ai commencé sans vraiment y penser depuis un an.</div>
666<details class="info"><summary>item information</summary> 698<details class="info"><summary>item information</summary>
667timestamp: 1660428000 699<dl>
668title: [Brainshit] Blog-Driven Development 700<dt>timestamp</dt><dd>1660428000</dd>
669link: https://brainshit.fr/read/314 701<dt>title</dt><dd>[Brainshit] Blog-Driven Development</dd>
670content_type: html 702<dt>link</dt><dd>https://brainshit.fr/read/314</dd>
671id: https://brainshit.fr/read/314 703<dt>content_type</dt><dd>html</dd>
672author: neuron@brainshit.fr (Lucidiot) 704<dt>id</dt><dd>https://brainshit.fr/read/314</dd>
673enclosure: 705<dt>author</dt><dd>neuron@brainshit.fr (Lucidiot)</dd>
674category: Productivité 706<dt>enclosure</dt><dd></dd>
707<dt>category</dt><dd>Productivité</dd>
708</dl>
675</details> 709</details>
676</details> 710</details>
677<details> 711<details>
678<summary>[linkbudz rss feed] writing an xml schema validator in… xml</summary> 712<summary>[linkbudz rss feed] writing an xml schema validator in… xml : <time class="time">2022-08-11</time></summary>
679<div class="links"> 713<div class="links">
680<a href="https://www.saxonica.com/papers/markupuk-2018mhk.pdf">read original</a>
681</div> 714</div>
682<div class="content"><p><a href="https://www.saxonica.com/papers/markupuk-2018mhk.pdf">writing an xml schema validator in… xml</a></p> 715<div class="content"><p><a href="https://www.saxonica.com/papers/markupuk-2018mhk.pdf">writing an xml schema validator in… xml</a></p>
683 <p>[https] posted by lucidiot on August 11, 2022</p></div> 716 <p>[https] posted by lucidiot on August 11, 2022</p></div>
684<details class="info"><summary>item information</summary> 717<details class="info"><summary>item information</summary>
685timestamp: 1660254767 718<dl>
686title: [linkbudz rss feed] writing an xml schema validator in… xml 719<dt>timestamp</dt><dd>1660254767</dd>
687link: https://www.saxonica.com/papers/markupuk-2018mhk.pdf 720<dt>title</dt><dd>[linkbudz rss feed] writing an xml schema validator in… xml</dd>
688content_type: html 721<dt>link</dt><dd>https://www.saxonica.com/papers/markupuk-2018mhk.pdf</dd>
689id: lucidiot20220811215247 722<dt>content_type</dt><dd>html</dd>
690author: 723<dt>id</dt><dd>lucidiot20220811215247</dd>
691enclosure: 724<dt>author</dt><dd></dd>
692category: https 725<dt>enclosure</dt><dd></dd>
726<dt>category</dt><dd>https</dd>
727</dl>
693</details> 728</details>
694</details> 729</details>
695<details> 730<details>
696<summary>[linkbudz rss feed] A Picture of a Hot Dog</summary> 731<summary>[linkbudz rss feed] A Picture of a Hot Dog : <time class="time">2022-08-11</time></summary>
697<div class="links"> 732<div class="links">
698<a href="https://www.pictureofhotdog.com/">read original</a>
699</div> 733</div>
700<div class="content"><p><a href="https://www.pictureofhotdog.com/">A Picture of a Hot Dog</a></p> 734<div class="content"><p><a href="https://www.pictureofhotdog.com/">A Picture of a Hot Dog</a></p>
701 <p>[https] posted by acdw on August 11, 2022</p></div> 735 <p>[https] posted by acdw on August 11, 2022</p></div>
702<details class="info"><summary>item information</summary> 736<details class="info"><summary>item information</summary>
703timestamp: 1660250944 737<dl>
704title: [linkbudz rss feed] A Picture of a Hot Dog 738<dt>timestamp</dt><dd>1660250944</dd>
705link: https://www.pictureofhotdog.com/ 739<dt>title</dt><dd>[linkbudz rss feed] A Picture of a Hot Dog</dd>
706content_type: html 740<dt>link</dt><dd>https://www.pictureofhotdog.com/</dd>
707id: acdw20220811204904 741<dt>content_type</dt><dd>html</dd>
708author: 742<dt>id</dt><dd>acdw20220811204904</dd>
709enclosure: 743<dt>author</dt><dd></dd>
710category: https 744<dt>enclosure</dt><dd></dd>
745<dt>category</dt><dd>https</dd>
746</dl>
711</details> 747</details>
712</details> 748</details>
713<details> 749<details>
714<summary>[linkbudz rss feed] ansi tarot art</summary> 750<summary>[linkbudz rss feed] ansi tarot art : <time class="time">2022-08-11</time></summary>
715<div class="links"> 751<div class="links">
716<a href="https://16colo.rs/pack/lbs-tarot/">read original</a>
717</div> 752</div>
718<div class="content"><p><a href="https://16colo.rs/pack/lbs-tarot/">ansi tarot art</a></p> 753<div class="content"><p><a href="https://16colo.rs/pack/lbs-tarot/">ansi tarot art</a></p>
719 <p>[https] posted by dozens on August 11, 2022</p></div> 754 <p>[https] posted by dozens on August 11, 2022</p></div>
720<details class="info"><summary>item information</summary> 755<details class="info"><summary>item information</summary>
721timestamp: 1660248227 756<dl>
722title: [linkbudz rss feed] ansi tarot art 757<dt>timestamp</dt><dd>1660248227</dd>
723link: https://16colo.rs/pack/lbs-tarot/ 758<dt>title</dt><dd>[linkbudz rss feed] ansi tarot art</dd>
724content_type: html 759<dt>link</dt><dd>https://16colo.rs/pack/lbs-tarot/</dd>
725id: dozens20220811200347 760<dt>content_type</dt><dd>html</dd>
726author: 761<dt>id</dt><dd>dozens20220811200347</dd>
727enclosure: 762<dt>author</dt><dd></dd>
728category: https 763<dt>enclosure</dt><dd></dd>
764<dt>category</dt><dd>https</dd>
765</dl>
729</details> 766</details>
730</details> 767</details>
731<details> 768<details>
732<summary>[linkbudz rss feed] IRC bot written in Retro Forth</summary> 769<summary>[linkbudz rss feed] IRC bot written in Retro Forth : <time class="time">2022-08-11</time></summary>
733<div class="links"> 770<div class="links">
734<a href="http://retroforth.org/examples/irc-bot.retro.html">read original</a>
735</div> 771</div>
736<div class="content"><p><a href="http://retroforth.org/examples/irc-bot.retro.html">IRC bot written in Retro Forth</a></p> 772<div class="content"><p><a href="http://retroforth.org/examples/irc-bot.retro.html">IRC bot written in Retro Forth</a></p>
737 <p>[http] posted by wsinatra on August 11, 2022</p></div> 773 <p>[http] posted by wsinatra on August 11, 2022</p></div>
738<details class="info"><summary>item information</summary> 774<details class="info"><summary>item information</summary>
739timestamp: 1660232892 775<dl>
740title: [linkbudz rss feed] IRC bot written in Retro Forth 776<dt>timestamp</dt><dd>1660232892</dd>
741link: http://retroforth.org/examples/irc-bot.retro.html 777<dt>title</dt><dd>[linkbudz rss feed] IRC bot written in Retro Forth</dd>
742content_type: html 778<dt>link</dt><dd>http://retroforth.org/examples/irc-bot.retro.html</dd>
743id: wsinatra20220811154812 779<dt>content_type</dt><dd>html</dd>
744author: 780<dt>id</dt><dd>wsinatra20220811154812</dd>
745enclosure: 781<dt>author</dt><dd></dd>
746category: http 782<dt>enclosure</dt><dd></dd>
783<dt>category</dt><dd>http</dd>
784</dl>
747</details> 785</details>
748</details> 786</details>
749<details> 787<details>
750<summary>[linkbudz rss feed] Gemini Server written in Retro Forth</summary> 788<summary>[linkbudz rss feed] Gemini Server written in Retro Forth : <time class="time">2022-08-11</time></summary>
751<div class="links"> 789<div class="links">
752<a href="http://retroforth.org/examples/atua-gemini.retro.html">read original</a>
753</div> 790</div>
754<div class="content"><p><a href="http://retroforth.org/examples/atua-gemini.retro.html">Gemini Server written in Retro Forth</a></p> 791<div class="content"><p><a href="http://retroforth.org/examples/atua-gemini.retro.html">Gemini Server written in Retro Forth</a></p>
755 <p>[http] posted by wsinatra on August 11, 2022</p></div> 792 <p>[http] posted by wsinatra on August 11, 2022</p></div>
756<details class="info"><summary>item information</summary> 793<details class="info"><summary>item information</summary>
757timestamp: 1660232253 794<dl>
758title: [linkbudz rss feed] Gemini Server written in Retro Forth 795<dt>timestamp</dt><dd>1660232253</dd>
759link: http://retroforth.org/examples/atua-gemini.retro.html 796<dt>title</dt><dd>[linkbudz rss feed] Gemini Server written in Retro Forth</dd>
760content_type: html 797<dt>link</dt><dd>http://retroforth.org/examples/atua-gemini.retro.html</dd>
761id: wsinatra20220811153733 798<dt>content_type</dt><dd>html</dd>
762author: 799<dt>id</dt><dd>wsinatra20220811153733</dd>
763enclosure: 800<dt>author</dt><dd></dd>
764category: http 801<dt>enclosure</dt><dd></dd>
802<dt>category</dt><dd>http</dd>
803</dl>
765</details> 804</details>
766</details> 805</details>
767<details> 806<details>
768<summary>[linkbudz rss feed] apparently the basement allows you to turn your account into an IRC bouncer by setting an "always on" thingy to true??</summary> 807<summary>[linkbudz rss feed] apparently the basement allows you to turn your account into an IRC bouncer by setting an "always on" thingy to true?? : <time class="time">2022-08-10</time></summary>
769<div class="links"> 808<div class="links">
770<a href="https://github.com/ergochat/ergo/blob/stable/docs/USERGUIDE.md#always-on">read original</a>
771</div> 809</div>
772<div class="content"><p><a href="https://github.com/ergochat/ergo/blob/stable/docs/USERGUIDE.md#always-on">apparently the basement allows you to turn your account into an IRC bouncer by setting an "always on" thingy to true??</a></p> 810<div class="content"><p><a href="https://github.com/ergochat/ergo/blob/stable/docs/USERGUIDE.md#always-on">apparently the basement allows you to turn your account into an IRC bouncer by setting an "always on" thingy to true??</a></p>
773 <p>[https] posted by m455 on August 11, 2022</p></div> 811 <p>[https] posted by m455 on August 11, 2022</p></div>
774<details class="info"><summary>item information</summary> 812<details class="info"><summary>item information</summary>
775timestamp: 1660184500 813<dl>
776title: [linkbudz rss feed] apparently the basement allows you to turn your account into an IRC bouncer by setting an "always on" thingy to true?? 814<dt>timestamp</dt><dd>1660184500</dd>
777link: https://github.com/ergochat/ergo/blob/stable/docs/USERGUIDE.md#always-on 815<dt>title</dt><dd>[linkbudz rss feed] apparently the basement allows you to turn your account into an IRC bouncer by setting an "always on" thingy to true??</dd>
778content_type: html 816<dt>link</dt><dd>https://github.com/ergochat/ergo/blob/stable/docs/USERGUIDE.md#always-on</dd>
779id: m45520220811022140 817<dt>content_type</dt><dd>html</dd>
780author: 818<dt>id</dt><dd>m45520220811022140</dd>
781enclosure: 819<dt>author</dt><dd></dd>
782category: https 820<dt>enclosure</dt><dd></dd>
821<dt>category</dt><dd>https</dd>
822</dl>
783</details> 823</details>
784</details> 824</details>
785<details> 825<details>
786<summary>[linkbudz rss feed] the joy of smol projects</summary> 826<summary>[linkbudz rss feed] the joy of smol projects : <time class="time">2022-08-10</time></summary>
787<div class="links"> 827<div class="links">
788<a href="https://schroer.ca/2022/04/10/the-joy-of-small-projects/">read original</a>
789</div> 828</div>
790<div class="content"><p><a href="https://schroer.ca/2022/04/10/the-joy-of-small-projects/">the joy of smol projects</a></p> 829<div class="content"><p><a href="https://schroer.ca/2022/04/10/the-joy-of-small-projects/">the joy of smol projects</a></p>
791 <p>[https] posted by lucidiot on August 10, 2022</p></div> 830 <p>[https] posted by lucidiot on August 10, 2022</p></div>
792<details class="info"><summary>item information</summary> 831<details class="info"><summary>item information</summary>
793timestamp: 1660165621 832<dl>
794title: [linkbudz rss feed] the joy of smol projects 833<dt>timestamp</dt><dd>1660165621</dd>
795link: https://schroer.ca/2022/04/10/the-joy-of-small-projects/ 834<dt>title</dt><dd>[linkbudz rss feed] the joy of smol projects</dd>
796content_type: html 835<dt>link</dt><dd>https://schroer.ca/2022/04/10/the-joy-of-small-projects/</dd>
797id: lucidiot20220810210701 836<dt>content_type</dt><dd>html</dd>
798author: 837<dt>id</dt><dd>lucidiot20220810210701</dd>
799enclosure: 838<dt>author</dt><dd></dd>
800category: https 839<dt>enclosure</dt><dd></dd>
840<dt>category</dt><dd>https</dd>
841</dl>
801</details> 842</details>
802</details> 843</details>
803<details> 844<details>
804<summary>[linkbudz rss feed] leprd.space: free web hosting for hobbyists</summary> 845<summary>[linkbudz rss feed] leprd.space: free web hosting for hobbyists : <time class="time">2022-08-10</time></summary>
805<div class="links"> 846<div class="links">
806<a href="https://leprd.space/">read original</a>
807</div> 847</div>
808<div class="content"><p><a href="https://leprd.space/">leprd.space: free web hosting for hobbyists</a></p> 848<div class="content"><p><a href="https://leprd.space/">leprd.space: free web hosting for hobbyists</a></p>
809 <p>[https] posted by m455 on August 10, 2022</p></div> 849 <p>[https] posted by m455 on August 10, 2022</p></div>
810<details class="info"><summary>item information</summary> 850<details class="info"><summary>item information</summary>
811timestamp: 1660117262 851<dl>
812title: [linkbudz rss feed] leprd.space: free web hosting for hobbyists 852<dt>timestamp</dt><dd>1660117262</dd>
813link: https://leprd.space/ 853<dt>title</dt><dd>[linkbudz rss feed] leprd.space: free web hosting for hobbyists</dd>
814content_type: html 854<dt>link</dt><dd>https://leprd.space/</dd>
815id: m45520220810074102 855<dt>content_type</dt><dd>html</dd>
816author: 856<dt>id</dt><dd>m45520220810074102</dd>
817enclosure: 857<dt>author</dt><dd></dd>
818category: https 858<dt>enclosure</dt><dd></dd>
859<dt>category</dt><dd>https</dd>
860</dl>
819</details> 861</details>
820</details> 862</details>
821<details> 863<details>
822<summary>[Dozens and Dragons] Wicked Grin</summary> 864<summary>[Dozens and Dragons] Wicked Grin : <time class="time">2022-08-09</time></summary>
823<div class="links"> 865<div class="links">
824<a href="https://dozensanddragons.neocities.org/31.html">read original</a> 866<a href="https://dozensanddragons.neocities.org/31.html">read original</a>
825</div> 867</div>
826<div class="content">Lightweight Quickstart Rules for Seriously Fun Games</div> 868<div class="content">Lightweight Quickstart Rules for Seriously Fun Games</div>
827<details class="info"><summary>item information</summary> 869<details class="info"><summary>item information</summary>
828timestamp: 1660104000 870<dl>
829title: [Dozens and Dragons] Wicked Grin 871<dt>timestamp</dt><dd>1660104000</dd>
830link: https://dozensanddragons.neocities.org/31.html 872<dt>title</dt><dd>[Dozens and Dragons] Wicked Grin</dd>
831content_type: html 873<dt>link</dt><dd>https://dozensanddragons.neocities.org/31.html</dd>
832id: https://dozensanddragons.neocities.org/31.html 874<dt>content_type</dt><dd>html</dd>
833author: 875<dt>id</dt><dd>https://dozensanddragons.neocities.org/31.html</dd>
834enclosure: 876<dt>author</dt><dd></dd>
835category: 877<dt>enclosure</dt><dd></dd>
878<dt>category</dt><dd></dd>
879</dl>
836</details> 880</details>
837</details> 881</details>
838<details> 882<details>
839<summary>[linkbudz rss feed] m455 finally made a CNAME to point friends.m455.casa to casa.tildepages.org! long live the commonhealth of casakhstan!</summary> 883<summary>[linkbudz rss feed] m455 finally made a CNAME to point friends.m455.casa to casa.tildepages.org! long live the commonhealth of casakhstan! : <time class="time">2022-08-09</time></summary>
840<div class="links"> 884<div class="links">
841<a href="https://friends.m455.casa/">read original</a>
842</div> 885</div>
843<div class="content"><p><a href="https://friends.m455.casa/">m455 finally made a CNAME to point friends.m455.casa to casa.tildepages.org! long live the commonhealth of casakhstan!</a></p> 886<div class="content"><p><a href="https://friends.m455.casa/">m455 finally made a CNAME to point friends.m455.casa to casa.tildepages.org! long live the commonhealth of casakhstan!</a></p>
844 <p>[https] posted by m455 on August 09, 2022</p></div> 887 <p>[https] posted by m455 on August 09, 2022</p></div>
845<details class="info"><summary>item information</summary> 888<details class="info"><summary>item information</summary>
846timestamp: 1660060603 889<dl>
847title: [linkbudz rss feed] m455 finally made a CNAME to point friends.m455.casa to casa.tildepages.org! long live the commonhealth of casakhstan! 890<dt>timestamp</dt><dd>1660060603</dd>
848link: https://friends.m455.casa/ 891<dt>title</dt><dd>[linkbudz rss feed] m455 finally made a CNAME to point friends.m455.casa to casa.tildepages.org! long live the commonhealth of casakhstan!</dd>
849content_type: html 892<dt>link</dt><dd>https://friends.m455.casa/</dd>
850id: m45520220809155643 893<dt>content_type</dt><dd>html</dd>
851author: 894<dt>id</dt><dd>m45520220809155643</dd>
852enclosure: 895<dt>author</dt><dd></dd>
853category: https 896<dt>enclosure</dt><dd></dd>
897<dt>category</dt><dd>https</dd>
898</dl>
854</details> 899</details>
855</details> 900</details>
856<details> 901<details>
857<summary>[linkbudz rss feed] acdw has a new authoring tool and markup language!</summary> 902<summary>[linkbudz rss feed] acdw has a new authoring tool and markup language! : <time class="time">2022-08-08</time></summary>
858<div class="links"> 903<div class="links">
859<a href="https://git.acdw.net/ht">read original</a>
860</div> 904</div>
861<div class="content"><p><a href="https://git.acdw.net/ht">acdw has a new authoring tool and markup language!</a></p> 905<div class="content"><p><a href="https://git.acdw.net/ht">acdw has a new authoring tool and markup language!</a></p>
862 <p>[https] posted by m455 on August 09, 2022</p></div> 906 <p>[https] posted by m455 on August 09, 2022</p></div>
863<details class="info"><summary>item information</summary> 907<details class="info"><summary>item information</summary>
864timestamp: 1660010615 908<dl>
865title: [linkbudz rss feed] acdw has a new authoring tool and markup language! 909<dt>timestamp</dt><dd>1660010615</dd>
866link: https://git.acdw.net/ht 910<dt>title</dt><dd>[linkbudz rss feed] acdw has a new authoring tool and markup language!</dd>
867content_type: html 911<dt>link</dt><dd>https://git.acdw.net/ht</dd>
868id: m45520220809020335 912<dt>content_type</dt><dd>html</dd>
869author: 913<dt>id</dt><dd>m45520220809020335</dd>
870enclosure: 914<dt>author</dt><dd></dd>
871category: https 915<dt>enclosure</dt><dd></dd>
916<dt>category</dt><dd>https</dd>
917</dl>
872</details> 918</details>
873</details> 919</details>
874<details> 920<details>
875<summary>[linkbudz rss feed] Gemini/Gopher simple intro</summary> 921<summary>[linkbudz rss feed] Gemini/Gopher simple intro : <time class="time">2022-08-08</time></summary>
876<div class="links"> 922<div class="links">
877<a href="https://thedorkweb.substack.com/p/gopher-gemini-and-the-smol-internet">read original</a>
878</div> 923</div>
879<div class="content"><p><a href="https://thedorkweb.substack.com/p/gopher-gemini-and-the-smol-internet">Gemini/Gopher simple intro</a></p> 924<div class="content"><p><a href="https://thedorkweb.substack.com/p/gopher-gemini-and-the-smol-internet">Gemini/Gopher simple intro</a></p>
880 <p>[https] posted by wsinatra on August 08, 2022</p></div> 925 <p>[https] posted by wsinatra on August 08, 2022</p></div>
881<details class="info"><summary>item information</summary> 926<details class="info"><summary>item information</summary>
882timestamp: 1659979984 927<dl>
883title: [linkbudz rss feed] Gemini/Gopher simple intro 928<dt>timestamp</dt><dd>1659979984</dd>
884link: https://thedorkweb.substack.com/p/gopher-gemini-and-the-smol-internet 929<dt>title</dt><dd>[linkbudz rss feed] Gemini/Gopher simple intro</dd>
885content_type: html 930<dt>link</dt><dd>https://thedorkweb.substack.com/p/gopher-gemini-and-the-smol-internet</dd>
886id: wsinatra20220808173304 931<dt>content_type</dt><dd>html</dd>
887author: 932<dt>id</dt><dd>wsinatra20220808173304</dd>
888enclosure: 933<dt>author</dt><dd></dd>
889category: https 934<dt>enclosure</dt><dd></dd>
935<dt>category</dt><dd>https</dd>
936</dl>
890</details> 937</details>
891</details> 938</details>
892<details> 939<details>
893<summary>[linkbudz rss feed] EFF Defcon 30 appearances</summary> 940<summary>[linkbudz rss feed] EFF Defcon 30 appearances : <time class="time">2022-08-08</time></summary>
894<div class="links"> 941<div class="links">
895<a href="https://www.eff.org/deeplinks/2022/07/hacking-future-def-con-30">read original</a>
896</div> 942</div>
897<div class="content"><p><a href="https://www.eff.org/deeplinks/2022/07/hacking-future-def-con-30">EFF Defcon 30 appearances</a></p> 943<div class="content"><p><a href="https://www.eff.org/deeplinks/2022/07/hacking-future-def-con-30">EFF Defcon 30 appearances</a></p>
898 <p>[https] posted by wsinatra on August 08, 2022</p></div> 944 <p>[https] posted by wsinatra on August 08, 2022</p></div>
899<details class="info"><summary>item information</summary> 945<details class="info"><summary>item information</summary>
900timestamp: 1659979886 946<dl>
901title: [linkbudz rss feed] EFF Defcon 30 appearances 947<dt>timestamp</dt><dd>1659979886</dd>
902link: https://www.eff.org/deeplinks/2022/07/hacking-future-def-con-30 948<dt>title</dt><dd>[linkbudz rss feed] EFF Defcon 30 appearances</dd>
903content_type: html 949<dt>link</dt><dd>https://www.eff.org/deeplinks/2022/07/hacking-future-def-con-30</dd>
904id: wsinatra20220808173126 950<dt>content_type</dt><dd>html</dd>
905author: 951<dt>id</dt><dd>wsinatra20220808173126</dd>
906enclosure: 952<dt>author</dt><dd></dd>
907category: https 953<dt>enclosure</dt><dd></dd>
954<dt>category</dt><dd>https</dd>
955</dl>
908</details> 956</details>
909</details> 957</details>
910<details> 958<details>
911<summary>[linkbudz rss feed] proposing a 'systems' lisp</summary> 959<summary>[linkbudz rss feed] proposing a 'systems' lisp : <time class="time">2022-08-08</time></summary>
912<div class="links"> 960<div class="links">
913<a href="https://dustycloud.org/blog/guile-steel-proposal/">read original</a>
914</div> 961</div>
915<div class="content"><p><a href="https://dustycloud.org/blog/guile-steel-proposal/">proposing a 'systems' lisp</a></p> 962<div class="content"><p><a href="https://dustycloud.org/blog/guile-steel-proposal/">proposing a 'systems' lisp</a></p>
916 <p>[https] posted by dozens on August 08, 2022</p></div> 963 <p>[https] posted by dozens on August 08, 2022</p></div>
917<details class="info"><summary>item information</summary> 964<details class="info"><summary>item information</summary>
918timestamp: 1659963300 965<dl>
919title: [linkbudz rss feed] proposing a 'systems' lisp 966<dt>timestamp</dt><dd>1659963300</dd>
920link: https://dustycloud.org/blog/guile-steel-proposal/ 967<dt>title</dt><dd>[linkbudz rss feed] proposing a 'systems' lisp</dd>
921content_type: html 968<dt>link</dt><dd>https://dustycloud.org/blog/guile-steel-proposal/</dd>
922id: dozens20220808125500 969<dt>content_type</dt><dd>html</dd>
923author: 970<dt>id</dt><dd>dozens20220808125500</dd>
924enclosure: 971<dt>author</dt><dd></dd>
925category: https 972<dt>enclosure</dt><dd></dd>
973<dt>category</dt><dd>https</dd>
974</dl>
926</details> 975</details>
927</details> 976</details>
928<details> 977<details>
929<summary>[m455.casa] meet lol, my new website generator!</summary> 978<summary>[m455.casa] meet lol, my new website generator! : <time class="time">2022-08-07</time></summary>
930<div class="links"> 979<div class="links">
931<a href="https://m455.casa/posts/2022/meet-lol-my-new-website-generator.html">read original</a> 980<a href="https://m455.casa/posts/2022/meet-lol-my-new-website-generator.html">read original</a>
932</div> 981</div>
@@ -1090,20 +1139,21 @@ old posts because they bring back good programming adventure memories for me.</p
1090<p>If you want to check out the source code for my new website generator, you can 1139<p>If you want to check out the source code for my new website generator, you can
1091view it <a href="https://git.m455.casa/lol">here</a>.</p></div> 1140view it <a href="https://git.m455.casa/lol">here</a>.</p></div>
1092<details class="info"><summary>item information</summary> 1141<details class="info"><summary>item information</summary>
1093timestamp: 1659916800 1142<dl>
1094title: [m455.casa] meet lol, my new website generator! 1143<dt>timestamp</dt><dd>1659916800</dd>
1095link: https://m455.casa/posts/2022/meet-lol-my-new-website-generator.html 1144<dt>title</dt><dd>[m455.casa] meet lol, my new website generator!</dd>
1096content_type: html 1145<dt>link</dt><dd>https://m455.casa/posts/2022/meet-lol-my-new-website-generator.html</dd>
1097id: https://m455.casa/posts/2022/meet-lol-my-new-website-generator.html 1146<dt>content_type</dt><dd>html</dd>
1098author: 1147<dt>id</dt><dd>https://m455.casa/posts/2022/meet-lol-my-new-website-generator.html</dd>
1099enclosure: 1148<dt>author</dt><dd></dd>
1100category: 1149<dt>enclosure</dt><dd></dd>
1150<dt>category</dt><dd></dd>
1151</dl>
1101</details> 1152</details>
1102</details> 1153</details>
1103<details> 1154<details>
1104<summary>[RSRSSS] Gitea has most feeds, except the most important one</summary> 1155<summary>[RSRSSS] Gitea has most feeds, except the most important one : <time class="time">2022-08-07</time></summary>
1105<div class="links"> 1156<div class="links">
1106<a href="">read original</a>
1107</div> 1157</div>
1108<div class="content"><p>While Gitea's 1.16.0 release <a href="https://github.com/go-gitea/gitea/pull/16002" target="_blank">added support for user feeds</a>, it was laching the feeds for repositories, organizations, releases and commits. The 1.17.0 release <a href="https://github.com/go-gitea/gitea/pull/19055" target="_blank">adds support for feeds on repositories</a> and <a href="https://github.com/go-gitea/gitea/pull/17714" target="_blank">adds support for feeds on organizations</a>, but the feed for releases, the most well-known and most commonly used feed on GitHub, is still missing.</p> 1158<div class="content"><p>While Gitea's 1.16.0 release <a href="https://github.com/go-gitea/gitea/pull/16002" target="_blank">added support for user feeds</a>, it was laching the feeds for repositories, organizations, releases and commits. The 1.17.0 release <a href="https://github.com/go-gitea/gitea/pull/19055" target="_blank">adds support for feeds on repositories</a> and <a href="https://github.com/go-gitea/gitea/pull/17714" target="_blank">adds support for feeds on organizations</a>, but the feed for releases, the most well-known and most commonly used feed on GitHub, is still missing.</p>
1109 <p>As mentioned earlier when I talked about the 1.16.0 release, the feeds are accessible either by setting the <code>Accept</code> header to <code>application/rss+xml</code> or <code>application/atom+xml</code> when requesting a user, an organization or a repository's URL, or by appending .rss or .atom to the username, repository name or organization name. Some examples:</p> 1159 <p>As mentioned earlier when I talked about the 1.16.0 release, the feeds are accessible either by setting the <code>Accept</code> header to <code>application/rss+xml</code> or <code>application/atom+xml</code> when requesting a user, an organization or a repository's URL, or by appending .rss or .atom to the username, repository name or organization name. Some examples:</p>
@@ -1115,216 +1165,229 @@ category:
1115 <p>I hope that we will see <a href="https://github.com/go-gitea/gitea/issues/19091" target="_blank">the feeds for releases</a> in the next release, so that Gitea adds the one missing feature to make package maintainers happy.</p> 1165 <p>I hope that we will see <a href="https://github.com/go-gitea/gitea/issues/19091" target="_blank">the feeds for releases</a> in the next release, so that Gitea adds the one missing feature to make package maintainers happy.</p>
1116 <p>By the way, <a href="https://tildegit.org/lucidiot/rsrsss.rss" target="_blank">the RSS feed for the RSRSSS repo</a> could be called the Really Simple RSRSSS Repository Syndication feed, or <abbr title="Really Simple Really Simple Really Simple Syndication Syndication Repository Syndication">RSRSRSSSRS</abbr>.</p></div> 1166 <p>By the way, <a href="https://tildegit.org/lucidiot/rsrsss.rss" target="_blank">the RSS feed for the RSRSSS repo</a> could be called the Really Simple RSRSSS Repository Syndication feed, or <abbr title="Really Simple Really Simple Really Simple Syndication Syndication Repository Syndication">RSRSRSSSRS</abbr>.</p></div>
1117<details class="info"><summary>item information</summary> 1167<details class="info"><summary>item information</summary>
1118timestamp: 1659914883 1168<dl>
1119title: [RSRSSS] Gitea has most feeds, except the most important one 1169<dt>timestamp</dt><dd>1659914883</dd>
1120link: 1170<dt>title</dt><dd>[RSRSSS] Gitea has most feeds, except the most important one</dd>
1121content_type: html 1171<dt>link</dt><dd></dd>
1122id: gitea-most-feeds 1172<dt>content_type</dt><dd>html</dd>
1123author: 1173<dt>id</dt><dd>gitea-most-feeds</dd>
1124enclosure: 1174<dt>author</dt><dd></dd>
1125category: Tip 1175<dt>enclosure</dt><dd></dd>
1176<dt>category</dt><dd>Tip</dd>
1177</dl>
1126</details> 1178</details>
1127</details> 1179</details>
1128<details> 1180<details>
1129<summary>[linkbudz rss feed] CISA 2021 Top Malware Strains</summary> 1181<summary>[linkbudz rss feed] CISA 2021 Top Malware Strains : <time class="time">2022-08-05</time></summary>
1130<div class="links"> 1182<div class="links">
1131<a href="https://www.cisa.gov/uscert/ncas/alerts/aa22-216a">read original</a>
1132</div> 1183</div>
1133<div class="content"><p><a href="https://www.cisa.gov/uscert/ncas/alerts/aa22-216a">CISA 2021 Top Malware Strains</a></p> 1184<div class="content"><p><a href="https://www.cisa.gov/uscert/ncas/alerts/aa22-216a">CISA 2021 Top Malware Strains</a></p>
1134 <p>[https] posted by wsinatra on August 05, 2022</p></div> 1185 <p>[https] posted by wsinatra on August 05, 2022</p></div>
1135<details class="info"><summary>item information</summary> 1186<details class="info"><summary>item information</summary>
1136timestamp: 1659707012 1187<dl>
1137title: [linkbudz rss feed] CISA 2021 Top Malware Strains 1188<dt>timestamp</dt><dd>1659707012</dd>
1138link: https://www.cisa.gov/uscert/ncas/alerts/aa22-216a 1189<dt>title</dt><dd>[linkbudz rss feed] CISA 2021 Top Malware Strains</dd>
1139content_type: html 1190<dt>link</dt><dd>https://www.cisa.gov/uscert/ncas/alerts/aa22-216a</dd>
1140id: wsinatra20220805134332 1191<dt>content_type</dt><dd>html</dd>
1141author: 1192<dt>id</dt><dd>wsinatra20220805134332</dd>
1142enclosure: 1193<dt>author</dt><dd></dd>
1143category: https 1194<dt>enclosure</dt><dd></dd>
1195<dt>category</dt><dd>https</dd>
1196</dl>
1144</details> 1197</details>
1145</details> 1198</details>
1146<details> 1199<details>
1147<summary>[linkbudz rss feed] How to surf the web</summary> 1200<summary>[linkbudz rss feed] How to surf the web : <time class="time">2022-08-04</time></summary>
1148<div class="links"> 1201<div class="links">
1149<a href="https://sadgrl.online/cyberspace/surf-the-web.html">read original</a>
1150</div> 1202</div>
1151<div class="content"><p><a href="https://sadgrl.online/cyberspace/surf-the-web.html">How to surf the web</a></p> 1203<div class="content"><p><a href="https://sadgrl.online/cyberspace/surf-the-web.html">How to surf the web</a></p>
1152 <p>[https] posted by mio on August 04, 2022</p></div> 1204 <p>[https] posted by mio on August 04, 2022</p></div>
1153<details class="info"><summary>item information</summary> 1205<details class="info"><summary>item information</summary>
1154timestamp: 1659650190 1206<dl>
1155title: [linkbudz rss feed] How to surf the web 1207<dt>timestamp</dt><dd>1659650190</dd>
1156link: https://sadgrl.online/cyberspace/surf-the-web.html 1208<dt>title</dt><dd>[linkbudz rss feed] How to surf the web</dd>
1157content_type: html 1209<dt>link</dt><dd>https://sadgrl.online/cyberspace/surf-the-web.html</dd>
1158id: mio20220804215630 1210<dt>content_type</dt><dd>html</dd>
1159author: 1211<dt>id</dt><dd>mio20220804215630</dd>
1160enclosure: 1212<dt>author</dt><dd></dd>
1161category: https 1213<dt>enclosure</dt><dd></dd>
1214<dt>category</dt><dd>https</dd>
1215</dl>
1162</details> 1216</details>
1163</details> 1217</details>
1164<details> 1218<details>
1165<summary>[linkbudz rss feed] oh god, rss3 is coming</summary> 1219<summary>[linkbudz rss feed] oh god, rss3 is coming : <time class="time">2022-08-04</time></summary>
1166<div class="links"> 1220<div class="links">
1167<a href="https://blog.rss3.io/">read original</a>
1168</div> 1221</div>
1169<div class="content"><p><a href="https://blog.rss3.io/">oh god, rss3 is coming</a></p> 1222<div class="content"><p><a href="https://blog.rss3.io/">oh god, rss3 is coming</a></p>
1170 <p>[https] posted by acdw on August 04, 2022</p></div> 1223 <p>[https] posted by acdw on August 04, 2022</p></div>
1171<details class="info"><summary>item information</summary> 1224<details class="info"><summary>item information</summary>
1172timestamp: 1659633296 1225<dl>
1173title: [linkbudz rss feed] oh god, rss3 is coming 1226<dt>timestamp</dt><dd>1659633296</dd>
1174link: https://blog.rss3.io/ 1227<dt>title</dt><dd>[linkbudz rss feed] oh god, rss3 is coming</dd>
1175content_type: html 1228<dt>link</dt><dd>https://blog.rss3.io/</dd>
1176id: acdw20220804171456 1229<dt>content_type</dt><dd>html</dd>
1177author: 1230<dt>id</dt><dd>acdw20220804171456</dd>
1178enclosure: 1231<dt>author</dt><dd></dd>
1179category: https 1232<dt>enclosure</dt><dd></dd>
1233<dt>category</dt><dd>https</dd>
1234</dl>
1180</details> 1235</details>
1181</details> 1236</details>
1182<details> 1237<details>
1183<summary>[linkbudz rss feed] Simple CA Tutorial</summary> 1238<summary>[linkbudz rss feed] Simple CA Tutorial : <time class="time">2022-08-04</time></summary>
1184<div class="links"> 1239<div class="links">
1185<a href="https://jamielinux.com/docs/openssl-certificate-authority/introduction.html">read original</a>
1186</div> 1240</div>
1187<div class="content"><p><a href="https://jamielinux.com/docs/openssl-certificate-authority/introduction.html">Simple CA Tutorial</a></p> 1241<div class="content"><p><a href="https://jamielinux.com/docs/openssl-certificate-authority/introduction.html">Simple CA Tutorial</a></p>
1188 <p>[https] posted by wsinatra on August 04, 2022</p></div> 1242 <p>[https] posted by wsinatra on August 04, 2022</p></div>
1189<details class="info"><summary>item information</summary> 1243<details class="info"><summary>item information</summary>
1190timestamp: 1659621190 1244<dl>
1191title: [linkbudz rss feed] Simple CA Tutorial 1245<dt>timestamp</dt><dd>1659621190</dd>
1192link: https://jamielinux.com/docs/openssl-certificate-authority/introduction.html 1246<dt>title</dt><dd>[linkbudz rss feed] Simple CA Tutorial</dd>
1193content_type: html 1247<dt>link</dt><dd>https://jamielinux.com/docs/openssl-certificate-authority/introduction.html</dd>
1194id: wsinatra20220804135310 1248<dt>content_type</dt><dd>html</dd>
1195author: 1249<dt>id</dt><dd>wsinatra20220804135310</dd>
1196enclosure: 1250<dt>author</dt><dd></dd>
1197category: https 1251<dt>enclosure</dt><dd></dd>
1252<dt>category</dt><dd>https</dd>
1253</dl>
1198</details> 1254</details>
1199</details> 1255</details>
1200<details> 1256<details>
1201<summary>[linkbudz rss feed] Wazuh, an open source SIEM platform</summary> 1257<summary>[linkbudz rss feed] Wazuh, an open source SIEM platform : <time class="time">2022-08-03</time></summary>
1202<div class="links"> 1258<div class="links">
1203<a href="https://wazuh.com/">read original</a>
1204</div> 1259</div>
1205<div class="content"><p><a href="https://wazuh.com/">Wazuh, an open source SIEM platform</a></p> 1260<div class="content"><p><a href="https://wazuh.com/">Wazuh, an open source SIEM platform</a></p>
1206 <p>[https] posted by wsinatra on August 03, 2022</p></div> 1261 <p>[https] posted by wsinatra on August 03, 2022</p></div>
1207<details class="info"><summary>item information</summary> 1262<details class="info"><summary>item information</summary>
1208timestamp: 1659557326 1263<dl>
1209title: [linkbudz rss feed] Wazuh, an open source SIEM platform 1264<dt>timestamp</dt><dd>1659557326</dd>
1210link: https://wazuh.com/ 1265<dt>title</dt><dd>[linkbudz rss feed] Wazuh, an open source SIEM platform</dd>
1211content_type: html 1266<dt>link</dt><dd>https://wazuh.com/</dd>
1212id: wsinatra20220803200846 1267<dt>content_type</dt><dd>html</dd>
1213author: 1268<dt>id</dt><dd>wsinatra20220803200846</dd>
1214enclosure: 1269<dt>author</dt><dd></dd>
1215category: https 1270<dt>enclosure</dt><dd></dd>
1271<dt>category</dt><dd>https</dd>
1272</dl>
1216</details> 1273</details>
1217</details> 1274</details>
1218<details> 1275<details>
1219<summary>[linkbudz rss feed] Google map hacks</summary> 1276<summary>[linkbudz rss feed] Google map hacks : <time class="time">2022-08-03</time></summary>
1220<div class="links"> 1277<div class="links">
1221<a href="http://www.simonweckert.com/googlemapshacks.html">read original</a>
1222</div> 1278</div>
1223<div class="content"><p><a href="http://www.simonweckert.com/googlemapshacks.html">Google map hacks</a></p> 1279<div class="content"><p><a href="http://www.simonweckert.com/googlemapshacks.html">Google map hacks</a></p>
1224 <p>[http] posted by m455 on August 03, 2022</p></div> 1280 <p>[http] posted by m455 on August 03, 2022</p></div>
1225<details class="info"><summary>item information</summary> 1281<details class="info"><summary>item information</summary>
1226timestamp: 1659556751 1282<dl>
1227title: [linkbudz rss feed] Google map hacks 1283<dt>timestamp</dt><dd>1659556751</dd>
1228link: http://www.simonweckert.com/googlemapshacks.html 1284<dt>title</dt><dd>[linkbudz rss feed] Google map hacks</dd>
1229content_type: html 1285<dt>link</dt><dd>http://www.simonweckert.com/googlemapshacks.html</dd>
1230id: m45520220803195911 1286<dt>content_type</dt><dd>html</dd>
1231author: 1287<dt>id</dt><dd>m45520220803195911</dd>
1232enclosure: 1288<dt>author</dt><dd></dd>
1233category: http 1289<dt>enclosure</dt><dd></dd>
1290<dt>category</dt><dd>http</dd>
1291</dl>
1234</details> 1292</details>
1235</details> 1293</details>
1236<details> 1294<details>
1237<summary>[linkbudz rss feed] cursed software bugs, with rss feed</summary> 1295<summary>[linkbudz rss feed] cursed software bugs, with rss feed : <time class="time">2022-08-03</time></summary>
1238<div class="links"> 1296<div class="links">
1239<a href="https://500mile.email/">read original</a>
1240</div> 1297</div>
1241<div class="content"><p><a href="https://500mile.email/">cursed software bugs, with rss feed</a></p> 1298<div class="content"><p><a href="https://500mile.email/">cursed software bugs, with rss feed</a></p>
1242 <p>[https] posted by lucidiot on August 03, 2022</p></div> 1299 <p>[https] posted by lucidiot on August 03, 2022</p></div>
1243<details class="info"><summary>item information</summary> 1300<details class="info"><summary>item information</summary>
1244timestamp: 1659546117 1301<dl>
1245title: [linkbudz rss feed] cursed software bugs, with rss feed 1302<dt>timestamp</dt><dd>1659546117</dd>
1246link: https://500mile.email/ 1303<dt>title</dt><dd>[linkbudz rss feed] cursed software bugs, with rss feed</dd>
1247content_type: html 1304<dt>link</dt><dd>https://500mile.email/</dd>
1248id: lucidiot20220803170157 1305<dt>content_type</dt><dd>html</dd>
1249author: 1306<dt>id</dt><dd>lucidiot20220803170157</dd>
1250enclosure: 1307<dt>author</dt><dd></dd>
1251category: https 1308<dt>enclosure</dt><dd></dd>
1309<dt>category</dt><dd>https</dd>
1310</dl>
1252</details> 1311</details>
1253</details> 1312</details>
1254<details> 1313<details>
1255<summary>[linkbudz rss feed] We can't send email more than 500 miles</summary> 1314<summary>[linkbudz rss feed] We can't send email more than 500 miles : <time class="time">2022-08-03</time></summary>
1256<div class="links"> 1315<div class="links">
1257<a href="https://web.mit.edu/jemorris/humor/500-miles">read original</a>
1258</div> 1316</div>
1259<div class="content"><p><a href="https://web.mit.edu/jemorris/humor/500-miles">We can't send email more than 500 miles</a></p> 1317<div class="content"><p><a href="https://web.mit.edu/jemorris/humor/500-miles">We can't send email more than 500 miles</a></p>
1260 <p>[https] posted by wsinatra on August 03, 2022</p></div> 1318 <p>[https] posted by wsinatra on August 03, 2022</p></div>
1261<details class="info"><summary>item information</summary> 1319<details class="info"><summary>item information</summary>
1262timestamp: 1659546065 1320<dl>
1263title: [linkbudz rss feed] We can't send email more than 500 miles 1321<dt>timestamp</dt><dd>1659546065</dd>
1264link: https://web.mit.edu/jemorris/humor/500-miles 1322<dt>title</dt><dd>[linkbudz rss feed] We can't send email more than 500 miles</dd>
1265content_type: html 1323<dt>link</dt><dd>https://web.mit.edu/jemorris/humor/500-miles</dd>
1266id: wsinatra20220803170105 1324<dt>content_type</dt><dd>html</dd>
1267author: 1325<dt>id</dt><dd>wsinatra20220803170105</dd>
1268enclosure: 1326<dt>author</dt><dd></dd>
1269category: https 1327<dt>enclosure</dt><dd></dd>
1328<dt>category</dt><dd>https</dd>
1329</dl>
1270</details> 1330</details>
1271</details> 1331</details>
1272<details> 1332<details>
1273<summary>[linkbudz rss feed] if you type in your pw, it will show as stars</summary> 1333<summary>[linkbudz rss feed] if you type in your pw, it will show as stars : <time class="time">2022-08-03</time></summary>
1274<div class="links"> 1334<div class="links">
1275<a href="http://bash.org/?244321">read original</a>
1276</div> 1335</div>
1277<div class="content"><p><a href="http://bash.org/?244321">if you type in your pw, it will show as stars</a></p> 1336<div class="content"><p><a href="http://bash.org/?244321">if you type in your pw, it will show as stars</a></p>
1278 <p>[http] posted by wsinatra on August 03, 2022</p></div> 1337 <p>[http] posted by wsinatra on August 03, 2022</p></div>
1279<details class="info"><summary>item information</summary> 1338<details class="info"><summary>item information</summary>
1280timestamp: 1659546000 1339<dl>
1281title: [linkbudz rss feed] if you type in your pw, it will show as stars 1340<dt>timestamp</dt><dd>1659546000</dd>
1282link: http://bash.org/?244321 1341<dt>title</dt><dd>[linkbudz rss feed] if you type in your pw, it will show as stars</dd>
1283content_type: html 1342<dt>link</dt><dd>http://bash.org/?244321</dd>
1284id: wsinatra20220803170000 1343<dt>content_type</dt><dd>html</dd>
1285author: 1344<dt>id</dt><dd>wsinatra20220803170000</dd>
1286enclosure: 1345<dt>author</dt><dd></dd>
1287category: http 1346<dt>enclosure</dt><dd></dd>
1347<dt>category</dt><dd>http</dd>
1348</dl>
1288</details> 1349</details>
1289</details> 1350</details>
1290<details> 1351<details>
1291<summary>[linkbudz rss feed] RAID is not a policing method</summary> 1352<summary>[linkbudz rss feed] RAID is not a policing method : <time class="time">2022-08-03</time></summary>
1292<div class="links"> 1353<div class="links">
1293<a href="https://en.wikipedia.org/wiki/Standard_RAID_levels">read original</a>
1294</div> 1354</div>
1295<div class="content"><p><a href="https://en.wikipedia.org/wiki/Standard_RAID_levels">RAID is not a policing method</a></p> 1355<div class="content"><p><a href="https://en.wikipedia.org/wiki/Standard_RAID_levels">RAID is not a policing method</a></p>
1296 <p>[https] posted by wsinatra on August 03, 2022</p></div> 1356 <p>[https] posted by wsinatra on August 03, 2022</p></div>
1297<details class="info"><summary>item information</summary> 1357<details class="info"><summary>item information</summary>
1298timestamp: 1659533694 1358<dl>
1299title: [linkbudz rss feed] RAID is not a policing method 1359<dt>timestamp</dt><dd>1659533694</dd>
1300link: https://en.wikipedia.org/wiki/Standard_RAID_levels 1360<dt>title</dt><dd>[linkbudz rss feed] RAID is not a policing method</dd>
1301content_type: html 1361<dt>link</dt><dd>https://en.wikipedia.org/wiki/Standard_RAID_levels</dd>
1302id: wsinatra20220803133454 1362<dt>content_type</dt><dd>html</dd>
1303author: 1363<dt>id</dt><dd>wsinatra20220803133454</dd>
1304enclosure: 1364<dt>author</dt><dd></dd>
1305category: https 1365<dt>enclosure</dt><dd></dd>
1366<dt>category</dt><dd>https</dd>
1367</dl>
1306</details> 1368</details>
1307</details> 1369</details>
1308<details> 1370<details>
1309<summary>[linkbudz rss feed] the french police is not a backup.</summary> 1371<summary>[linkbudz rss feed] the french police is not a backup. : <time class="time">2022-08-03</time></summary>
1310<div class="links"> 1372<div class="links">
1311<a href="https://en.wikipedia.org/wiki/RAID_(French_police_unit)">read original</a>
1312</div> 1373</div>
1313<div class="content"><p><a href="https://en.wikipedia.org/wiki/RAID_(French_police_unit)">the french police is not a backup.</a></p> 1374<div class="content"><p><a href="https://en.wikipedia.org/wiki/RAID_(French_police_unit)">the french police is not a backup.</a></p>
1314 <p>[https] posted by lucidiot on August 03, 2022</p></div> 1375 <p>[https] posted by lucidiot on August 03, 2022</p></div>
1315<details class="info"><summary>item information</summary> 1376<details class="info"><summary>item information</summary>
1316timestamp: 1659533332 1377<dl>
1317title: [linkbudz rss feed] the french police is not a backup. 1378<dt>timestamp</dt><dd>1659533332</dd>
1318link: https://en.wikipedia.org/wiki/RAID_(French_police_unit) 1379<dt>title</dt><dd>[linkbudz rss feed] the french police is not a backup.</dd>
1319content_type: html 1380<dt>link</dt><dd>https://en.wikipedia.org/wiki/RAID_(French_police_unit)</dd>
1320id: lucidiot20220803132852 1381<dt>content_type</dt><dd>html</dd>
1321author: 1382<dt>id</dt><dd>lucidiot20220803132852</dd>
1322enclosure: 1383<dt>author</dt><dd></dd>
1323category: https 1384<dt>enclosure</dt><dd></dd>
1385<dt>category</dt><dd>https</dd>
1386</dl>
1324</details> 1387</details>
1325</details> 1388</details>
1326<details> 1389<details>
1327<summary>[Lowtech Radio Gazette] The Hardest Part</summary> 1390<summary>[Lowtech Radio Gazette] The Hardest Part : <time class="time">2022-08-03</time></summary>
1328<div class="links"> 1391<div class="links">
1329<a href="https://lambdacreate.com/podcast/ltrg/1">read original</a> 1392<a href="https://lambdacreate.com/podcast/ltrg/1">read original</a>
1330<a href="https://lambdacreate.com/static/ltrg/ltrg-1.mp3">enclosure</a> 1393<a href="https://lambdacreate.com/static/ltrg/ltrg-1.mp3">enclosure</a>
@@ -1352,572 +1415,609 @@ category: https
1352<h3>Admin Note</h3> 1415<h3>Admin Note</h3>
1353<p>If anyone listens and would like to give feedback, please reach out to me at wpsinatra@gmail.com. I'm very actively trying to refine the quality of the podcast, so constructive criticism is welcomed.</p></div> 1416<p>If anyone listens and would like to give feedback, please reach out to me at wpsinatra@gmail.com. I'm very actively trying to refine the quality of the podcast, so constructive criticism is welcomed.</p></div>
1354<details class="info"><summary>item information</summary> 1417<details class="info"><summary>item information</summary>
1355timestamp: 1659528000 1418<dl>
1356title: [Lowtech Radio Gazette] The Hardest Part 1419<dt>timestamp</dt><dd>1659528000</dd>
1357link: https://lambdacreate.com/podcast/ltrg/1 1420<dt>title</dt><dd>[Lowtech Radio Gazette] The Hardest Part</dd>
1358content_type: html 1421<dt>link</dt><dd>https://lambdacreate.com/podcast/ltrg/1</dd>
1359id: ltrg-1 1422<dt>content_type</dt><dd>html</dd>
1360author: 1423<dt>id</dt><dd>ltrg-1</dd>
1361enclosure: https://lambdacreate.com/static/ltrg/ltrg-1.mp3 1424<dt>author</dt><dd></dd>
1362category: 1425<dt>enclosure</dt><dd>https://lambdacreate.com/static/ltrg/ltrg-1.mp3</dd>
1426<dt>category</dt><dd></dd>
1427</dl>
1363</details> 1428</details>
1364</details> 1429</details>
1365<details> 1430<details>
1366<summary>[linkbudz rss feed] a blog about plaintext</summary> 1431<summary>[linkbudz rss feed] a blog about plaintext : <time class="time">2022-08-03</time></summary>
1367<div class="links"> 1432<div class="links">
1368<a href="https://plaintextproject.online/">read original</a>
1369</div> 1433</div>
1370<div class="content"><p><a href="https://plaintextproject.online/">a blog about plaintext</a></p> 1434<div class="content"><p><a href="https://plaintextproject.online/">a blog about plaintext</a></p>
1371 <p>[https] posted by lucidiot on August 03, 2022</p></div> 1435 <p>[https] posted by lucidiot on August 03, 2022</p></div>
1372<details class="info"><summary>item information</summary> 1436<details class="info"><summary>item information</summary>
1373timestamp: 1659509363 1437<dl>
1374title: [linkbudz rss feed] a blog about plaintext 1438<dt>timestamp</dt><dd>1659509363</dd>
1375link: https://plaintextproject.online/ 1439<dt>title</dt><dd>[linkbudz rss feed] a blog about plaintext</dd>
1376content_type: html 1440<dt>link</dt><dd>https://plaintextproject.online/</dd>
1377id: lucidiot20220803064923 1441<dt>content_type</dt><dd>html</dd>
1378author: 1442<dt>id</dt><dd>lucidiot20220803064923</dd>
1379enclosure: 1443<dt>author</dt><dd></dd>
1380category: https 1444<dt>enclosure</dt><dd></dd>
1445<dt>category</dt><dd>https</dd>
1446</dl>
1381</details> 1447</details>
1382</details> 1448</details>
1383<details> 1449<details>
1384<summary>[linkbudz rss feed] smol Windows, Palm OS and OSX apps</summary> 1450<summary>[linkbudz rss feed] smol Windows, Palm OS and OSX apps : <time class="time">2022-08-03</time></summary>
1385<div class="links"> 1451<div class="links">
1386<a href="https://tinyapps.org/">read original</a>
1387</div> 1452</div>
1388<div class="content"><p><a href="https://tinyapps.org/">smol Windows, Palm OS and OSX apps</a></p> 1453<div class="content"><p><a href="https://tinyapps.org/">smol Windows, Palm OS and OSX apps</a></p>
1389 <p>[https] posted by lucidiot on August 03, 2022</p></div> 1454 <p>[https] posted by lucidiot on August 03, 2022</p></div>
1390<details class="info"><summary>item information</summary> 1455<details class="info"><summary>item information</summary>
1391timestamp: 1659509331 1456<dl>
1392title: [linkbudz rss feed] smol Windows, Palm OS and OSX apps 1457<dt>timestamp</dt><dd>1659509331</dd>
1393link: https://tinyapps.org/ 1458<dt>title</dt><dd>[linkbudz rss feed] smol Windows, Palm OS and OSX apps</dd>
1394content_type: html 1459<dt>link</dt><dd>https://tinyapps.org/</dd>
1395id: lucidiot20220803064851 1460<dt>content_type</dt><dd>html</dd>
1396author: 1461<dt>id</dt><dd>lucidiot20220803064851</dd>
1397enclosure: 1462<dt>author</dt><dd></dd>
1398category: https 1463<dt>enclosure</dt><dd></dd>
1464<dt>category</dt><dd>https</dd>
1465</dl>
1399</details> 1466</details>
1400</details> 1467</details>
1401<details> 1468<details>
1402<summary>[linkbudz rss feed] Interneting is Hard - webdev tutorials for beginners</summary> 1469<summary>[linkbudz rss feed] Interneting is Hard - webdev tutorials for beginners : <time class="time">2022-08-02</time></summary>
1403<div class="links"> 1470<div class="links">
1404<a href="https://www.internetingishard.com/">read original</a>
1405</div> 1471</div>
1406<div class="content"><p><a href="https://www.internetingishard.com/">Interneting is Hard - webdev tutorials for beginners</a></p> 1472<div class="content"><p><a href="https://www.internetingishard.com/">Interneting is Hard - webdev tutorials for beginners</a></p>
1407 <p>[https] posted by mio on August 02, 2022</p></div> 1473 <p>[https] posted by mio on August 02, 2022</p></div>
1408<details class="info"><summary>item information</summary> 1474<details class="info"><summary>item information</summary>
1409timestamp: 1659455230 1475<dl>
1410title: [linkbudz rss feed] Interneting is Hard - webdev tutorials for beginners 1476<dt>timestamp</dt><dd>1659455230</dd>
1411link: https://www.internetingishard.com/ 1477<dt>title</dt><dd>[linkbudz rss feed] Interneting is Hard - webdev tutorials for beginners</dd>
1412content_type: html 1478<dt>link</dt><dd>https://www.internetingishard.com/</dd>
1413id: mio20220802154710 1479<dt>content_type</dt><dd>html</dd>
1414author: 1480<dt>id</dt><dd>mio20220802154710</dd>
1415enclosure: 1481<dt>author</dt><dd></dd>
1416category: https 1482<dt>enclosure</dt><dd></dd>
1483<dt>category</dt><dd>https</dd>
1484</dl>
1417</details> 1485</details>
1418</details> 1486</details>
1419<details> 1487<details>
1420<summary>[linkbudz rss feed] a 'quick and dirty' literate programming tool in awk</summary> 1488<summary>[linkbudz rss feed] a 'quick and dirty' literate programming tool in awk : <time class="time">2022-08-02</time></summary>
1421<div class="links"> 1489<div class="links">
1422<a href="https://acdw.casa/docawk/">read original</a>
1423</div> 1490</div>
1424<div class="content"><p><a href="https://acdw.casa/docawk/">a 'quick and dirty' literate programming tool in awk</a></p> 1491<div class="content"><p><a href="https://acdw.casa/docawk/">a 'quick and dirty' literate programming tool in awk</a></p>
1425 <p>[https] posted by acdw on August 02, 2022</p></div> 1492 <p>[https] posted by acdw on August 02, 2022</p></div>
1426<details class="info"><summary>item information</summary> 1493<details class="info"><summary>item information</summary>
1427timestamp: 1659450727 1494<dl>
1428title: [linkbudz rss feed] a 'quick and dirty' literate programming tool in awk 1495<dt>timestamp</dt><dd>1659450727</dd>
1429link: https://acdw.casa/docawk/ 1496<dt>title</dt><dd>[linkbudz rss feed] a 'quick and dirty' literate programming tool in awk</dd>
1430content_type: html 1497<dt>link</dt><dd>https://acdw.casa/docawk/</dd>
1431id: acdw20220802143207 1498<dt>content_type</dt><dd>html</dd>
1432author: 1499<dt>id</dt><dd>acdw20220802143207</dd>
1433enclosure: 1500<dt>author</dt><dd></dd>
1434category: https 1501<dt>enclosure</dt><dd></dd>
1502<dt>category</dt><dd>https</dd>
1503</dl>
1435</details> 1504</details>
1436</details> 1505</details>
1437<details> 1506<details>
1438<summary>[linkbudz rss feed] Wikipedia is a quality resource</summary> 1507<summary>[linkbudz rss feed] Wikipedia is a quality resource : <time class="time">2022-08-01</time></summary>
1439<div class="links"> 1508<div class="links">
1440<a href="https://en.wikipedia.org/wiki/Category:Wikipedia_slapping_templates">read original</a>
1441</div> 1509</div>
1442<div class="content"><p><a href="https://en.wikipedia.org/wiki/Category:Wikipedia_slapping_templates">Wikipedia is a quality resource</a></p> 1510<div class="content"><p><a href="https://en.wikipedia.org/wiki/Category:Wikipedia_slapping_templates">Wikipedia is a quality resource</a></p>
1443 <p>[https] posted by lucidiot on August 01, 2022</p></div> 1511 <p>[https] posted by lucidiot on August 01, 2022</p></div>
1444<details class="info"><summary>item information</summary> 1512<details class="info"><summary>item information</summary>
1445timestamp: 1659380358 1513<dl>
1446title: [linkbudz rss feed] Wikipedia is a quality resource 1514<dt>timestamp</dt><dd>1659380358</dd>
1447link: https://en.wikipedia.org/wiki/Category:Wikipedia_slapping_templates 1515<dt>title</dt><dd>[linkbudz rss feed] Wikipedia is a quality resource</dd>
1448content_type: html 1516<dt>link</dt><dd>https://en.wikipedia.org/wiki/Category:Wikipedia_slapping_templates</dd>
1449id: lucidiot20220801185918 1517<dt>content_type</dt><dd>html</dd>
1450author: 1518<dt>id</dt><dd>lucidiot20220801185918</dd>
1451enclosure: 1519<dt>author</dt><dd></dd>
1452category: https 1520<dt>enclosure</dt><dd></dd>
1521<dt>category</dt><dd>https</dd>
1522</dl>
1453</details> 1523</details>
1454</details> 1524</details>
1455<details> 1525<details>
1456<summary>[linkbudz rss feed] The free and healthy typeface for bread and butter use</summary> 1526<summary>[linkbudz rss feed] The free and healthy typeface for bread and butter use : <time class="time">2022-08-01</time></summary>
1457<div class="links"> 1527<div class="links">
1458<a href="http://vollkorn-typeface.com/">read original</a>
1459</div> 1528</div>
1460<div class="content"><p><a href="http://vollkorn-typeface.com/">The free and healthy typeface for bread and butter use</a></p> 1529<div class="content"><p><a href="http://vollkorn-typeface.com/">The free and healthy typeface for bread and butter use</a></p>
1461 <p>[http] posted by dozens on August 01, 2022</p></div> 1530 <p>[http] posted by dozens on August 01, 2022</p></div>
1462<details class="info"><summary>item information</summary> 1531<details class="info"><summary>item information</summary>
1463timestamp: 1659372207 1532<dl>
1464title: [linkbudz rss feed] The free and healthy typeface for bread and butter use 1533<dt>timestamp</dt><dd>1659372207</dd>
1465link: http://vollkorn-typeface.com/ 1534<dt>title</dt><dd>[linkbudz rss feed] The free and healthy typeface for bread and butter use</dd>
1466content_type: html 1535<dt>link</dt><dd>http://vollkorn-typeface.com/</dd>
1467id: dozens20220801164327 1536<dt>content_type</dt><dd>html</dd>
1468author: 1537<dt>id</dt><dd>dozens20220801164327</dd>
1469enclosure: 1538<dt>author</dt><dd></dd>
1470category: http 1539<dt>enclosure</dt><dd></dd>
1540<dt>category</dt><dd>http</dd>
1541</dl>
1471</details> 1542</details>
1472</details> 1543</details>
1473<details> 1544<details>
1474<summary>[linkbudz rss feed] Open letter to Google Security team from a librarian (warning: GDocs link)</summary> 1545<summary>[linkbudz rss feed] Open letter to Google Security team from a librarian (warning: GDocs link) : <time class="time">2022-08-01</time></summary>
1475<div class="links"> 1546<div class="links">
1476<a href="https://docs.google.com/document/d/1f6HPQbUjslcbjVHkJkAgYmQmBV3PRRHEcx4WL5rxuE8/preview">read original</a>
1477</div> 1547</div>
1478<div class="content"><p><a href="https://docs.google.com/document/d/1f6HPQbUjslcbjVHkJkAgYmQmBV3PRRHEcx4WL5rxuE8/preview">Open letter to Google Security team from a librarian (warning: GDocs link)</a></p> 1548<div class="content"><p><a href="https://docs.google.com/document/d/1f6HPQbUjslcbjVHkJkAgYmQmBV3PRRHEcx4WL5rxuE8/preview">Open letter to Google Security team from a librarian (warning: GDocs link)</a></p>
1479 <p>[https] posted by acdw on August 01, 2022</p></div> 1549 <p>[https] posted by acdw on August 01, 2022</p></div>
1480<details class="info"><summary>item information</summary> 1550<details class="info"><summary>item information</summary>
1481timestamp: 1659370095 1551<dl>
1482title: [linkbudz rss feed] Open letter to Google Security team from a librarian (warning: GDocs link) 1552<dt>timestamp</dt><dd>1659370095</dd>
1483link: https://docs.google.com/document/d/1f6HPQbUjslcbjVHkJkAgYmQmBV3PRRHEcx4WL5rxuE8/preview 1553<dt>title</dt><dd>[linkbudz rss feed] Open letter to Google Security team from a librarian (warning: GDocs link)</dd>
1484content_type: html 1554<dt>link</dt><dd>https://docs.google.com/document/d/1f6HPQbUjslcbjVHkJkAgYmQmBV3PRRHEcx4WL5rxuE8/preview</dd>
1485id: acdw20220801160815 1555<dt>content_type</dt><dd>html</dd>
1486author: 1556<dt>id</dt><dd>acdw20220801160815</dd>
1487enclosure: 1557<dt>author</dt><dd></dd>
1488category: https 1558<dt>enclosure</dt><dd></dd>
1559<dt>category</dt><dd>https</dd>
1560</dl>
1489</details> 1561</details>
1490</details> 1562</details>
1491<details> 1563<details>
1492<summary>[Brainshit] Les assistants Web de Windows XP</summary> 1564<summary>[Brainshit] Les assistants Web de Windows XP : <time class="time">2022-07-30</time></summary>
1493<div class="links"> 1565<div class="links">
1494<a href="https://brainshit.fr/read/308">read original</a> 1566<a href="https://brainshit.fr/read/308">read original</a>
1495</div> 1567</div>
1496<div class="content">À la découverte de quelques assistants très particuliers de Windows XP.</div> 1568<div class="content">À la découverte de quelques assistants très particuliers de Windows XP.</div>
1497<details class="info"><summary>item information</summary> 1569<details class="info"><summary>item information</summary>
1498timestamp: 1659218400 1570<dl>
1499title: [Brainshit] Les assistants Web de Windows XP 1571<dt>timestamp</dt><dd>1659218400</dd>
1500link: https://brainshit.fr/read/308 1572<dt>title</dt><dd>[Brainshit] Les assistants Web de Windows XP</dd>
1501content_type: html 1573<dt>link</dt><dd>https://brainshit.fr/read/308</dd>
1502id: https://brainshit.fr/read/308 1574<dt>content_type</dt><dd>html</dd>
1503author: neuron@brainshit.fr (Lucidiot) 1575<dt>id</dt><dd>https://brainshit.fr/read/308</dd>
1504enclosure: 1576<dt>author</dt><dd>neuron@brainshit.fr (Lucidiot)</dd>
1505category: Informatique 1577<dt>enclosure</dt><dd></dd>
1578<dt>category</dt><dd>Informatique</dd>
1579</dl>
1506</details> 1580</details>
1507</details> 1581</details>
1508<details> 1582<details>
1509<summary>[linkbudz rss feed] Simple Firewalls with iptables</summary> 1583<summary>[linkbudz rss feed] Simple Firewalls with iptables : <time class="time">2022-07-29</time></summary>
1510<div class="links"> 1584<div class="links">
1511<a href="http://lambdacreate.com/posts/37">read original</a>
1512</div> 1585</div>
1513<div class="content"><p><a href="http://lambdacreate.com/posts/37">Simple Firewalls with iptables</a></p> 1586<div class="content"><p><a href="http://lambdacreate.com/posts/37">Simple Firewalls with iptables</a></p>
1514 <p>[http] posted by wsinatra on July 29, 2022</p></div> 1587 <p>[http] posted by wsinatra on July 29, 2022</p></div>
1515<details class="info"><summary>item information</summary> 1588<details class="info"><summary>item information</summary>
1516timestamp: 1659101991 1589<dl>
1517title: [linkbudz rss feed] Simple Firewalls with iptables 1590<dt>timestamp</dt><dd>1659101991</dd>
1518link: http://lambdacreate.com/posts/37 1591<dt>title</dt><dd>[linkbudz rss feed] Simple Firewalls with iptables</dd>
1519content_type: html 1592<dt>link</dt><dd>http://lambdacreate.com/posts/37</dd>
1520id: wsinatra20220729133951 1593<dt>content_type</dt><dd>html</dd>
1521author: 1594<dt>id</dt><dd>wsinatra20220729133951</dd>
1522enclosure: 1595<dt>author</dt><dd></dd>
1523category: http 1596<dt>enclosure</dt><dd></dd>
1597<dt>category</dt><dd>http</dd>
1598</dl>
1524</details> 1599</details>
1525</details> 1600</details>
1526<details> 1601<details>
1527<summary>[linkbudz rss feed] The Old School Computer Challenge Rules!</summary> 1602<summary>[linkbudz rss feed] The Old School Computer Challenge Rules! : <time class="time">2022-07-29</time></summary>
1528<div class="links"> 1603<div class="links">
1529<a href="https://dataswamp.org/~solene/2021-07-07-old-computer-challenge.html">read original</a>
1530</div> 1604</div>
1531<div class="content"><p><a href="https://dataswamp.org/~solene/2021-07-07-old-computer-challenge.html">The Old School Computer Challenge Rules!</a></p> 1605<div class="content"><p><a href="https://dataswamp.org/~solene/2021-07-07-old-computer-challenge.html">The Old School Computer Challenge Rules!</a></p>
1532 <p>[https] posted by wsinatra on July 29, 2022</p></div> 1606 <p>[https] posted by wsinatra on July 29, 2022</p></div>
1533<details class="info"><summary>item information</summary> 1607<details class="info"><summary>item information</summary>
1534timestamp: 1659101724 1608<dl>
1535title: [linkbudz rss feed] The Old School Computer Challenge Rules! 1609<dt>timestamp</dt><dd>1659101724</dd>
1536link: https://dataswamp.org/~solene/2021-07-07-old-computer-challenge.html 1610<dt>title</dt><dd>[linkbudz rss feed] The Old School Computer Challenge Rules!</dd>
1537content_type: html 1611<dt>link</dt><dd>https://dataswamp.org/~solene/2021-07-07-old-computer-challenge.html</dd>
1538id: wsinatra20220729133524 1612<dt>content_type</dt><dd>html</dd>
1539author: 1613<dt>id</dt><dd>wsinatra20220729133524</dd>
1540enclosure: 1614<dt>author</dt><dd></dd>
1541category: https 1615<dt>enclosure</dt><dd></dd>
1616<dt>category</dt><dd>https</dd>
1617</dl>
1542</details> 1618</details>
1543</details> 1619</details>
1544<details> 1620<details>
1545<summary>[linkbudz rss feed] Mess with DNS</summary> 1621<summary>[linkbudz rss feed] Mess with DNS : <time class="time">2022-07-29</time></summary>
1546<div class="links"> 1622<div class="links">
1547<a href="https://jvns.ca/blog/2021/12/15/mess-with-dns/">read original</a>
1548</div> 1623</div>
1549<div class="content"><p><a href="https://jvns.ca/blog/2021/12/15/mess-with-dns/">Mess with DNS</a></p> 1624<div class="content"><p><a href="https://jvns.ca/blog/2021/12/15/mess-with-dns/">Mess with DNS</a></p>
1550 <p>[https] posted by wsinatra on July 29, 2022</p></div> 1625 <p>[https] posted by wsinatra on July 29, 2022</p></div>
1551<details class="info"><summary>item information</summary> 1626<details class="info"><summary>item information</summary>
1552timestamp: 1659101325 1627<dl>
1553title: [linkbudz rss feed] Mess with DNS 1628<dt>timestamp</dt><dd>1659101325</dd>
1554link: https://jvns.ca/blog/2021/12/15/mess-with-dns/ 1629<dt>title</dt><dd>[linkbudz rss feed] Mess with DNS</dd>
1555content_type: html 1630<dt>link</dt><dd>https://jvns.ca/blog/2021/12/15/mess-with-dns/</dd>
1556id: wsinatra20220729132845 1631<dt>content_type</dt><dd>html</dd>
1557author: 1632<dt>id</dt><dd>wsinatra20220729132845</dd>
1558enclosure: 1633<dt>author</dt><dd></dd>
1559category: https 1634<dt>enclosure</dt><dd></dd>
1635<dt>category</dt><dd>https</dd>
1636</dl>
1560</details> 1637</details>
1561</details> 1638</details>
1562<details> 1639<details>
1563<summary>[linkbudz rss feed] Quirky DNS overview</summary> 1640<summary>[linkbudz rss feed] Quirky DNS overview : <time class="time">2022-07-29</time></summary>
1564<div class="links"> 1641<div class="links">
1565<a href="https://jvns.ca/blog/2022/02/01/a-dns-resolver-in-80-lines-of-go/">read original</a>
1566</div> 1642</div>
1567<div class="content"><p><a href="https://jvns.ca/blog/2022/02/01/a-dns-resolver-in-80-lines-of-go/">Quirky DNS overview</a></p> 1643<div class="content"><p><a href="https://jvns.ca/blog/2022/02/01/a-dns-resolver-in-80-lines-of-go/">Quirky DNS overview</a></p>
1568 <p>[https] posted by wsinatra on July 29, 2022</p></div> 1644 <p>[https] posted by wsinatra on July 29, 2022</p></div>
1569<details class="info"><summary>item information</summary> 1645<details class="info"><summary>item information</summary>
1570timestamp: 1659101292 1646<dl>
1571title: [linkbudz rss feed] Quirky DNS overview 1647<dt>timestamp</dt><dd>1659101292</dd>
1572link: https://jvns.ca/blog/2022/02/01/a-dns-resolver-in-80-lines-of-go/ 1648<dt>title</dt><dd>[linkbudz rss feed] Quirky DNS overview</dd>
1573content_type: html 1649<dt>link</dt><dd>https://jvns.ca/blog/2022/02/01/a-dns-resolver-in-80-lines-of-go/</dd>
1574id: wsinatra20220729132812 1650<dt>content_type</dt><dd>html</dd>
1575author: 1651<dt>id</dt><dd>wsinatra20220729132812</dd>
1576enclosure: 1652<dt>author</dt><dd></dd>
1577category: https 1653<dt>enclosure</dt><dd></dd>
1654<dt>category</dt><dd>https</dd>
1655</dl>
1578</details> 1656</details>
1579</details> 1657</details>
1580<details> 1658<details>
1581<summary>[linkbudz rss feed] Firecracker VM</summary> 1659<summary>[linkbudz rss feed] Firecracker VM : <time class="time">2022-07-29</time></summary>
1582<div class="links"> 1660<div class="links">
1583<a href="https://jvns.ca/blog/2021/01/23/firecracker--start-a-vm-in-less-than-a-second/">read original</a>
1584</div> 1661</div>
1585<div class="content"><p><a href="https://jvns.ca/blog/2021/01/23/firecracker--start-a-vm-in-less-than-a-second/">Firecracker VM</a></p> 1662<div class="content"><p><a href="https://jvns.ca/blog/2021/01/23/firecracker--start-a-vm-in-less-than-a-second/">Firecracker VM</a></p>
1586 <p>[https] posted by wsinatra on July 29, 2022</p></div> 1663 <p>[https] posted by wsinatra on July 29, 2022</p></div>
1587<details class="info"><summary>item information</summary> 1664<details class="info"><summary>item information</summary>
1588timestamp: 1659100757 1665<dl>
1589title: [linkbudz rss feed] Firecracker VM 1666<dt>timestamp</dt><dd>1659100757</dd>
1590link: https://jvns.ca/blog/2021/01/23/firecracker--start-a-vm-in-less-than-a-second/ 1667<dt>title</dt><dd>[linkbudz rss feed] Firecracker VM</dd>
1591content_type: html 1668<dt>link</dt><dd>https://jvns.ca/blog/2021/01/23/firecracker--start-a-vm-in-less-than-a-second/</dd>
1592id: wsinatra20220729131917 1669<dt>content_type</dt><dd>html</dd>
1593author: 1670<dt>id</dt><dd>wsinatra20220729131917</dd>
1594enclosure: 1671<dt>author</dt><dd></dd>
1595category: https 1672<dt>enclosure</dt><dd></dd>
1673<dt>category</dt><dd>https</dd>
1674</dl>
1596</details> 1675</details>
1597</details> 1676</details>
1598<details> 1677<details>
1599<summary>[linkbudz rss feed] Recutils, GOOPS and virtual slots</summary> 1678<summary>[linkbudz rss feed] Recutils, GOOPS and virtual slots : <time class="time">2022-07-28</time></summary>
1600<div class="links"> 1679<div class="links">
1601<a href="https://ane.iki.fi/lisp/goops-virtual-slots-and-ffi.html">read original</a>
1602</div> 1680</div>
1603<div class="content"><p><a href="https://ane.iki.fi/lisp/goops-virtual-slots-and-ffi.html">Recutils, GOOPS and virtual slots</a></p> 1681<div class="content"><p><a href="https://ane.iki.fi/lisp/goops-virtual-slots-and-ffi.html">Recutils, GOOPS and virtual slots</a></p>
1604 <p>[https] posted by dozens on July 28, 2022</p></div> 1682 <p>[https] posted by dozens on July 28, 2022</p></div>
1605<details class="info"><summary>item information</summary> 1683<details class="info"><summary>item information</summary>
1606timestamp: 1659052448 1684<dl>
1607title: [linkbudz rss feed] Recutils, GOOPS and virtual slots 1685<dt>timestamp</dt><dd>1659052448</dd>
1608link: https://ane.iki.fi/lisp/goops-virtual-slots-and-ffi.html 1686<dt>title</dt><dd>[linkbudz rss feed] Recutils, GOOPS and virtual slots</dd>
1609content_type: html 1687<dt>link</dt><dd>https://ane.iki.fi/lisp/goops-virtual-slots-and-ffi.html</dd>
1610id: dozens20220728235408 1688<dt>content_type</dt><dd>html</dd>
1611author: 1689<dt>id</dt><dd>dozens20220728235408</dd>
1612enclosure: 1690<dt>author</dt><dd></dd>
1613category: https 1691<dt>enclosure</dt><dd></dd>
1692<dt>category</dt><dd>https</dd>
1693</dl>
1614</details> 1694</details>
1615</details> 1695</details>
1616<details> 1696<details>
1617<summary>[linkbudz rss feed] Calendar handling with mutt</summary> 1697<summary>[linkbudz rss feed] Calendar handling with mutt : <time class="time">2022-07-28</time></summary>
1618<div class="links"> 1698<div class="links">
1619<a href="https://dacav.roundhousecode.com/blog/2019-11/09-mutt-calendar-and-such.html">read original</a>
1620</div> 1699</div>
1621<div class="content"><p><a href="https://dacav.roundhousecode.com/blog/2019-11/09-mutt-calendar-and-such.html">Calendar handling with mutt</a></p> 1700<div class="content"><p><a href="https://dacav.roundhousecode.com/blog/2019-11/09-mutt-calendar-and-such.html">Calendar handling with mutt</a></p>
1622 <p>[https] posted by wsinatra on July 28, 2022</p></div> 1701 <p>[https] posted by wsinatra on July 28, 2022</p></div>
1623<details class="info"><summary>item information</summary> 1702<details class="info"><summary>item information</summary>
1624timestamp: 1659030089 1703<dl>
1625title: [linkbudz rss feed] Calendar handling with mutt 1704<dt>timestamp</dt><dd>1659030089</dd>
1626link: https://dacav.roundhousecode.com/blog/2019-11/09-mutt-calendar-and-such.html 1705<dt>title</dt><dd>[linkbudz rss feed] Calendar handling with mutt</dd>
1627content_type: html 1706<dt>link</dt><dd>https://dacav.roundhousecode.com/blog/2019-11/09-mutt-calendar-and-such.html</dd>
1628id: wsinatra20220728174129 1707<dt>content_type</dt><dd>html</dd>
1629author: 1708<dt>id</dt><dd>wsinatra20220728174129</dd>
1630enclosure: 1709<dt>author</dt><dd></dd>
1631category: https 1710<dt>enclosure</dt><dd></dd>
1711<dt>category</dt><dd>https</dd>
1712</dl>
1632</details> 1713</details>
1633</details> 1714</details>
1634<details> 1715<details>
1635<summary>[linkbudz rss feed] charmbracelet goodness for shell scripts without go</summary> 1716<summary>[linkbudz rss feed] charmbracelet goodness for shell scripts without go : <time class="time">2022-07-28</time></summary>
1636<div class="links"> 1717<div class="links">
1637<a href="https://github.com/charmbracelet/gum">read original</a>
1638</div> 1718</div>
1639<div class="content"><p><a href="https://github.com/charmbracelet/gum">charmbracelet goodness for shell scripts without go</a></p> 1719<div class="content"><p><a href="https://github.com/charmbracelet/gum">charmbracelet goodness for shell scripts without go</a></p>
1640 <p>[https] posted by dozens on July 28, 2022</p></div> 1720 <p>[https] posted by dozens on July 28, 2022</p></div>
1641<details class="info"><summary>item information</summary> 1721<details class="info"><summary>item information</summary>
1642timestamp: 1659029764 1722<dl>
1643title: [linkbudz rss feed] charmbracelet goodness for shell scripts without go 1723<dt>timestamp</dt><dd>1659029764</dd>
1644link: https://github.com/charmbracelet/gum 1724<dt>title</dt><dd>[linkbudz rss feed] charmbracelet goodness for shell scripts without go</dd>
1645content_type: html 1725<dt>link</dt><dd>https://github.com/charmbracelet/gum</dd>
1646id: dozens20220728173604 1726<dt>content_type</dt><dd>html</dd>
1647author: 1727<dt>id</dt><dd>dozens20220728173604</dd>
1648enclosure: 1728<dt>author</dt><dd></dd>
1649category: https 1729<dt>enclosure</dt><dd></dd>
1730<dt>category</dt><dd>https</dd>
1731</dl>
1650</details> 1732</details>
1651</details> 1733</details>
1652<details> 1734<details>
1653<summary>[linkbudz rss feed] AI Protein Folding? Nifty.</summary> 1735<summary>[linkbudz rss feed] AI Protein Folding? Nifty. : <time class="time">2022-07-28</time></summary>
1654<div class="links"> 1736<div class="links">
1655<a href="https://www.deepmind.com/blog/alphafold-reveals-the-structure-of-the-protein-universe">read original</a>
1656</div> 1737</div>
1657<div class="content"><p><a href="https://www.deepmind.com/blog/alphafold-reveals-the-structure-of-the-protein-universe">AI Protein Folding? Nifty.</a></p> 1738<div class="content"><p><a href="https://www.deepmind.com/blog/alphafold-reveals-the-structure-of-the-protein-universe">AI Protein Folding? Nifty.</a></p>
1658 <p>[https] posted by marcus on July 28, 2022</p></div> 1739 <p>[https] posted by marcus on July 28, 2022</p></div>
1659<details class="info"><summary>item information</summary> 1740<details class="info"><summary>item information</summary>
1660timestamp: 1659017104 1741<dl>
1661title: [linkbudz rss feed] AI Protein Folding? Nifty. 1742<dt>timestamp</dt><dd>1659017104</dd>
1662link: https://www.deepmind.com/blog/alphafold-reveals-the-structure-of-the-protein-universe 1743<dt>title</dt><dd>[linkbudz rss feed] AI Protein Folding? Nifty.</dd>
1663content_type: html 1744<dt>link</dt><dd>https://www.deepmind.com/blog/alphafold-reveals-the-structure-of-the-protein-universe</dd>
1664id: marcus20220728140504 1745<dt>content_type</dt><dd>html</dd>
1665author: 1746<dt>id</dt><dd>marcus20220728140504</dd>
1666enclosure: 1747<dt>author</dt><dd></dd>
1667category: https 1748<dt>enclosure</dt><dd></dd>
1749<dt>category</dt><dd>https</dd>
1750</dl>
1668</details> 1751</details>
1669</details> 1752</details>
1670<details> 1753<details>
1671<summary>[linkbudz rss feed] Velocipedia - bicycles based on people's attempts to draw them from memory</summary> 1754<summary>[linkbudz rss feed] Velocipedia - bicycles based on people's attempts to draw them from memory : <time class="time">2022-07-28</time></summary>
1672<div class="links"> 1755<div class="links">
1673<a href="https://www.gianlucagimini.it/portfolio-item/velocipedia/">read original</a>
1674</div> 1756</div>
1675<div class="content"><p><a href="https://www.gianlucagimini.it/portfolio-item/velocipedia/">Velocipedia - bicycles based on people's attempts to draw them from memory</a></p> 1757<div class="content"><p><a href="https://www.gianlucagimini.it/portfolio-item/velocipedia/">Velocipedia - bicycles based on people's attempts to draw them from memory</a></p>
1676 <p>[https] posted by mio on July 28, 2022</p></div> 1758 <p>[https] posted by mio on July 28, 2022</p></div>
1677<details class="info"><summary>item information</summary> 1759<details class="info"><summary>item information</summary>
1678timestamp: 1659016198 1760<dl>
1679title: [linkbudz rss feed] Velocipedia - bicycles based on people's attempts to draw them from memory 1761<dt>timestamp</dt><dd>1659016198</dd>
1680link: https://www.gianlucagimini.it/portfolio-item/velocipedia/ 1762<dt>title</dt><dd>[linkbudz rss feed] Velocipedia - bicycles based on people's attempts to draw them from memory</dd>
1681content_type: html 1763<dt>link</dt><dd>https://www.gianlucagimini.it/portfolio-item/velocipedia/</dd>
1682id: mio20220728134958 1764<dt>content_type</dt><dd>html</dd>
1683author: 1765<dt>id</dt><dd>mio20220728134958</dd>
1684enclosure: 1766<dt>author</dt><dd></dd>
1685category: https 1767<dt>enclosure</dt><dd></dd>
1768<dt>category</dt><dd>https</dd>
1769</dl>
1686</details> 1770</details>
1687</details> 1771</details>
1688<details> 1772<details>
1689<summary>[linkbudz rss feed] Zero to chiptune in one hour (2017)</summary> 1773<summary>[linkbudz rss feed] Zero to chiptune in one hour (2017) : <time class="time">2022-07-27</time></summary>
1690<div class="links"> 1774<div class="links">
1691<a href="https://media.ccc.de/v/SHA2017-175-zero_to_chiptune_in_one_hour">read original</a>
1692</div> 1775</div>
1693<div class="content"><p><a href="https://media.ccc.de/v/SHA2017-175-zero_to_chiptune_in_one_hour">Zero to chiptune in one hour (2017)</a></p> 1776<div class="content"><p><a href="https://media.ccc.de/v/SHA2017-175-zero_to_chiptune_in_one_hour">Zero to chiptune in one hour (2017)</a></p>
1694 <p>[https] posted by mio on July 28, 2022</p></div> 1777 <p>[https] posted by mio on July 28, 2022</p></div>
1695<details class="info"><summary>item information</summary> 1778<details class="info"><summary>item information</summary>
1696timestamp: 1658972062 1779<dl>
1697title: [linkbudz rss feed] Zero to chiptune in one hour (2017) 1780<dt>timestamp</dt><dd>1658972062</dd>
1698link: https://media.ccc.de/v/SHA2017-175-zero_to_chiptune_in_one_hour 1781<dt>title</dt><dd>[linkbudz rss feed] Zero to chiptune in one hour (2017)</dd>
1699content_type: html 1782<dt>link</dt><dd>https://media.ccc.de/v/SHA2017-175-zero_to_chiptune_in_one_hour</dd>
1700id: mio20220728013422 1783<dt>content_type</dt><dd>html</dd>
1701author: 1784<dt>id</dt><dd>mio20220728013422</dd>
1702enclosure: 1785<dt>author</dt><dd></dd>
1703category: https 1786<dt>enclosure</dt><dd></dd>
1787<dt>category</dt><dd>https</dd>
1788</dl>
1704</details> 1789</details>
1705</details> 1790</details>
1706<details> 1791<details>
1707<summary>[linkbudz rss feed] The Ultimate Amiga 500 Talk: Amiga Hardware Design and Programming (2015)</summary> 1792<summary>[linkbudz rss feed] The Ultimate Amiga 500 Talk: Amiga Hardware Design and Programming (2015) : <time class="time">2022-07-27</time></summary>
1708<div class="links"> 1793<div class="links">
1709<a href="https://media.ccc.de/v/32c3-7468-the_ultimate_amiga_500_talk">read original</a>
1710</div> 1794</div>
1711<div class="content"><p><a href="https://media.ccc.de/v/32c3-7468-the_ultimate_amiga_500_talk">The Ultimate Amiga 500 Talk: Amiga Hardware Design and Programming (2015)</a></p> 1795<div class="content"><p><a href="https://media.ccc.de/v/32c3-7468-the_ultimate_amiga_500_talk">The Ultimate Amiga 500 Talk: Amiga Hardware Design and Programming (2015)</a></p>
1712 <p>[https] posted by mio on July 28, 2022</p></div> 1796 <p>[https] posted by mio on July 28, 2022</p></div>
1713<details class="info"><summary>item information</summary> 1797<details class="info"><summary>item information</summary>
1714timestamp: 1658972022 1798<dl>
1715title: [linkbudz rss feed] The Ultimate Amiga 500 Talk: Amiga Hardware Design and Programming (2015) 1799<dt>timestamp</dt><dd>1658972022</dd>
1716link: https://media.ccc.de/v/32c3-7468-the_ultimate_amiga_500_talk 1800<dt>title</dt><dd>[linkbudz rss feed] The Ultimate Amiga 500 Talk: Amiga Hardware Design and Programming (2015)</dd>
1717content_type: html 1801<dt>link</dt><dd>https://media.ccc.de/v/32c3-7468-the_ultimate_amiga_500_talk</dd>
1718id: mio20220728013342 1802<dt>content_type</dt><dd>html</dd>
1719author: 1803<dt>id</dt><dd>mio20220728013342</dd>
1720enclosure: 1804<dt>author</dt><dd></dd>
1721category: https 1805<dt>enclosure</dt><dd></dd>
1806<dt>category</dt><dd>https</dd>
1807</dl>
1722</details> 1808</details>
1723</details> 1809</details>
1724<details> 1810<details>
1725<summary>[linkbudz rss feed] The Ultimate Game Boy Talk (2016)</summary> 1811<summary>[linkbudz rss feed] The Ultimate Game Boy Talk (2016) : <time class="time">2022-07-27</time></summary>
1726<div class="links"> 1812<div class="links">
1727<a href="https://media.ccc.de/v/33c3-8029-the_ultimate_game_boy_talk">read original</a>
1728</div> 1813</div>
1729<div class="content"><p><a href="https://media.ccc.de/v/33c3-8029-the_ultimate_game_boy_talk">The Ultimate Game Boy Talk (2016)</a></p> 1814<div class="content"><p><a href="https://media.ccc.de/v/33c3-8029-the_ultimate_game_boy_talk">The Ultimate Game Boy Talk (2016)</a></p>
1730 <p>[https] posted by mio on July 28, 2022</p></div> 1815 <p>[https] posted by mio on July 28, 2022</p></div>
1731<details class="info"><summary>item information</summary> 1816<details class="info"><summary>item information</summary>
1732timestamp: 1658971950 1817<dl>
1733title: [linkbudz rss feed] The Ultimate Game Boy Talk (2016) 1818<dt>timestamp</dt><dd>1658971950</dd>
1734link: https://media.ccc.de/v/33c3-8029-the_ultimate_game_boy_talk 1819<dt>title</dt><dd>[linkbudz rss feed] The Ultimate Game Boy Talk (2016)</dd>
1735content_type: html 1820<dt>link</dt><dd>https://media.ccc.de/v/33c3-8029-the_ultimate_game_boy_talk</dd>
1736id: mio20220728013230 1821<dt>content_type</dt><dd>html</dd>
1737author: 1822<dt>id</dt><dd>mio20220728013230</dd>
1738enclosure: 1823<dt>author</dt><dd></dd>
1739category: https 1824<dt>enclosure</dt><dd></dd>
1825<dt>category</dt><dd>https</dd>
1826</dl>
1740</details> 1827</details>
1741</details> 1828</details>
1742<details> 1829<details>
1743<summary>[linkbudz rss feed] Cosmopolitan C</summary> 1830<summary>[linkbudz rss feed] Cosmopolitan C : <time class="time">2022-07-27</time></summary>
1744<div class="links"> 1831<div class="links">
1745<a href="https://justine.lol/cosmopolitan/">read original</a>
1746</div> 1832</div>
1747<div class="content"><p><a href="https://justine.lol/cosmopolitan/">Cosmopolitan C</a></p> 1833<div class="content"><p><a href="https://justine.lol/cosmopolitan/">Cosmopolitan C</a></p>
1748 <p>[https] posted by acdw on July 27, 2022</p></div> 1834 <p>[https] posted by acdw on July 27, 2022</p></div>
1749<details class="info"><summary>item information</summary> 1835<details class="info"><summary>item information</summary>
1750timestamp: 1658946453 1836<dl>
1751title: [linkbudz rss feed] Cosmopolitan C 1837<dt>timestamp</dt><dd>1658946453</dd>
1752link: https://justine.lol/cosmopolitan/ 1838<dt>title</dt><dd>[linkbudz rss feed] Cosmopolitan C</dd>
1753content_type: html 1839<dt>link</dt><dd>https://justine.lol/cosmopolitan/</dd>
1754id: acdw20220727182733 1840<dt>content_type</dt><dd>html</dd>
1755author: 1841<dt>id</dt><dd>acdw20220727182733</dd>
1756enclosure: 1842<dt>author</dt><dd></dd>
1757category: https 1843<dt>enclosure</dt><dd></dd>
1844<dt>category</dt><dd>https</dd>
1845</dl>
1758</details> 1846</details>
1759</details> 1847</details>
1760<details> 1848<details>
1761<summary>[linkbudz rss feed] The History of &</summary> 1849<summary>[linkbudz rss feed] The History of & : <time class="time">2022-07-27</time></summary>
1762<div class="links"> 1850<div class="links">
1763<a href="https://www.merriam-webster.com/words-at-play/the-history-of-ampersand">read original</a>
1764</div> 1851</div>
1765<div class="content"><p><a href="https://www.merriam-webster.com/words-at-play/the-history-of-ampersand">The History of &</a></p> 1852<div class="content"><p><a href="https://www.merriam-webster.com/words-at-play/the-history-of-ampersand">The History of &</a></p>
1766 <p>[https] posted by acdw on July 27, 2022</p></div> 1853 <p>[https] posted by acdw on July 27, 2022</p></div>
1767<details class="info"><summary>item information</summary> 1854<details class="info"><summary>item information</summary>
1768timestamp: 1658933616 1855<dl>
1769title: [linkbudz rss feed] The History of & 1856<dt>timestamp</dt><dd>1658933616</dd>
1770link: https://www.merriam-webster.com/words-at-play/the-history-of-ampersand 1857<dt>title</dt><dd>[linkbudz rss feed] The History of &</dd>
1771content_type: html 1858<dt>link</dt><dd>https://www.merriam-webster.com/words-at-play/the-history-of-ampersand</dd>
1772id: acdw20220727145336 1859<dt>content_type</dt><dd>html</dd>
1773author: 1860<dt>id</dt><dd>acdw20220727145336</dd>
1774enclosure: 1861<dt>author</dt><dd></dd>
1775category: https 1862<dt>enclosure</dt><dd></dd>
1863<dt>category</dt><dd>https</dd>
1864</dl>
1776</details> 1865</details>
1777</details> 1866</details>
1778<details> 1867<details>
1779<summary>[linkbudz rss feed] TIC-80 byte jam</summary> 1868<summary>[linkbudz rss feed] TIC-80 byte jam : <time class="time">2022-07-26</time></summary>
1780<div class="links"> 1869<div class="links">
1781<a href="https://media.ccc.de/v/mch2022-226-tic-80-byte-jam">read original</a>
1782</div> 1870</div>
1783<div class="content"><p><a href="https://media.ccc.de/v/mch2022-226-tic-80-byte-jam">TIC-80 byte jam</a></p> 1871<div class="content"><p><a href="https://media.ccc.de/v/mch2022-226-tic-80-byte-jam">TIC-80 byte jam</a></p>
1784 <p>[https] posted by mio on July 26, 2022</p></div> 1872 <p>[https] posted by mio on July 26, 2022</p></div>
1785<details class="info"><summary>item information</summary> 1873<details class="info"><summary>item information</summary>
1786timestamp: 1658877880 1874<dl>
1787title: [linkbudz rss feed] TIC-80 byte jam 1875<dt>timestamp</dt><dd>1658877880</dd>
1788link: https://media.ccc.de/v/mch2022-226-tic-80-byte-jam 1876<dt>title</dt><dd>[linkbudz rss feed] TIC-80 byte jam</dd>
1789content_type: html 1877<dt>link</dt><dd>https://media.ccc.de/v/mch2022-226-tic-80-byte-jam</dd>
1790id: mio20220726232440 1878<dt>content_type</dt><dd>html</dd>
1791author: 1879<dt>id</dt><dd>mio20220726232440</dd>
1792enclosure: 1880<dt>author</dt><dd></dd>
1793category: https 1881<dt>enclosure</dt><dd></dd>
1882<dt>category</dt><dd>https</dd>
1883</dl>
1794</details> 1884</details>
1795</details> 1885</details>
1796<details> 1886<details>
1797<summary>[linkbudz rss feed] Rocking the Web Bloat: Modern Gopher, Gemini and the Small Internet</summary> 1887<summary>[linkbudz rss feed] Rocking the Web Bloat: Modern Gopher, Gemini and the Small Internet : <time class="time">2022-07-26</time></summary>
1798<div class="links"> 1888<div class="links">
1799<a href="https://media.ccc.de/v/mch2022-83-rocking-the-web-bloat-modern-gopher-gemini-and-the-small-internet">read original</a>
1800</div> 1889</div>
1801<div class="content"><p><a href="https://media.ccc.de/v/mch2022-83-rocking-the-web-bloat-modern-gopher-gemini-and-the-small-internet">Rocking the Web Bloat: Modern Gopher, Gemini and the Small Internet</a></p> 1890<div class="content"><p><a href="https://media.ccc.de/v/mch2022-83-rocking-the-web-bloat-modern-gopher-gemini-and-the-small-internet">Rocking the Web Bloat: Modern Gopher, Gemini and the Small Internet</a></p>
1802 <p>[https] posted by mio on July 26, 2022</p></div> 1891 <p>[https] posted by mio on July 26, 2022</p></div>
1803<details class="info"><summary>item information</summary> 1892<details class="info"><summary>item information</summary>
1804timestamp: 1658877076 1893<dl>
1805title: [linkbudz rss feed] Rocking the Web Bloat: Modern Gopher, Gemini and the Small Internet 1894<dt>timestamp</dt><dd>1658877076</dd>
1806link: https://media.ccc.de/v/mch2022-83-rocking-the-web-bloat-modern-gopher-gemini-and-the-small-internet 1895<dt>title</dt><dd>[linkbudz rss feed] Rocking the Web Bloat: Modern Gopher, Gemini and the Small Internet</dd>
1807content_type: html 1896<dt>link</dt><dd>https://media.ccc.de/v/mch2022-83-rocking-the-web-bloat-modern-gopher-gemini-and-the-small-internet</dd>
1808id: mio20220726231116 1897<dt>content_type</dt><dd>html</dd>
1809author: 1898<dt>id</dt><dd>mio20220726231116</dd>
1810enclosure: 1899<dt>author</dt><dd></dd>
1811category: https 1900<dt>enclosure</dt><dd></dd>
1901<dt>category</dt><dd>https</dd>
1902</dl>
1812</details> 1903</details>
1813</details> 1904</details>
1814<details> 1905<details>
1815<summary>[linkbudz rss feed] plop a license in ur projects</summary> 1906<summary>[linkbudz rss feed] plop a license in ur projects : <time class="time">2022-07-26</time></summary>
1816<div class="links"> 1907<div class="links">
1817<a href="https://git.acdw.net/licensor/">read original</a>
1818</div> 1908</div>
1819<div class="content"><p><a href="https://git.acdw.net/licensor/">plop a license in ur projects</a></p> 1909<div class="content"><p><a href="https://git.acdw.net/licensor/">plop a license in ur projects</a></p>
1820 <p>[https] posted by acdw on July 26, 2022</p></div> 1910 <p>[https] posted by acdw on July 26, 2022</p></div>
1821<details class="info"><summary>item information</summary> 1911<details class="info"><summary>item information</summary>
1822timestamp: 1658867912 1912<dl>
1823title: [linkbudz rss feed] plop a license in ur projects 1913<dt>timestamp</dt><dd>1658867912</dd>
1824link: https://git.acdw.net/licensor/ 1914<dt>title</dt><dd>[linkbudz rss feed] plop a license in ur projects</dd>
1825content_type: html 1915<dt>link</dt><dd>https://git.acdw.net/licensor/</dd>
1826id: acdw20220726203832 1916<dt>content_type</dt><dd>html</dd>
1827author: 1917<dt>id</dt><dd>acdw20220726203832</dd>
1828enclosure: 1918<dt>author</dt><dd></dd>
1829category: https 1919<dt>enclosure</dt><dd></dd>
1920<dt>category</dt><dd>https</dd>
1921</dl>
1830</details> 1922</details>
1831</details> 1923</details>
1832<details> 1924<details>
1833<summary>[linkbudz rss feed] A doctor for your Palm PDAs</summary> 1925<summary>[linkbudz rss feed] A doctor for your Palm PDAs : <time class="time">2022-07-26</time></summary>
1834<div class="links"> 1926<div class="links">
1835<a href="https://www.palmdr.com/cart/">read original</a>
1836</div> 1927</div>
1837<div class="content"><p><a href="https://www.palmdr.com/cart/">A doctor for your Palm PDAs</a></p> 1928<div class="content"><p><a href="https://www.palmdr.com/cart/">A doctor for your Palm PDAs</a></p>
1838 <p>[https] posted by wsinatra on July 26, 2022</p></div> 1929 <p>[https] posted by wsinatra on July 26, 2022</p></div>
1839<details class="info"><summary>item information</summary> 1930<details class="info"><summary>item information</summary>
1840timestamp: 1658864880 1931<dl>
1841title: [linkbudz rss feed] A doctor for your Palm PDAs 1932<dt>timestamp</dt><dd>1658864880</dd>
1842link: https://www.palmdr.com/cart/ 1933<dt>title</dt><dd>[linkbudz rss feed] A doctor for your Palm PDAs</dd>
1843content_type: html 1934<dt>link</dt><dd>https://www.palmdr.com/cart/</dd>
1844id: wsinatra20220726194800 1935<dt>content_type</dt><dd>html</dd>
1845author: 1936<dt>id</dt><dd>wsinatra20220726194800</dd>
1846enclosure: 1937<dt>author</dt><dd></dd>
1847category: https 1938<dt>enclosure</dt><dd></dd>
1939<dt>category</dt><dd>https</dd>
1940</dl>
1848</details> 1941</details>
1849</details> 1942</details>
1850<details> 1943<details>
1851<summary>[linkbudz rss feed] rewrite it in rust, but in french</summary> 1944<summary>[linkbudz rss feed] rewrite it in rust, but in french : <time class="time">2022-07-26</time></summary>
1852<div class="links"> 1945<div class="links">
1853<a href="https://github.com/bnjbvr/rouille">read original</a>
1854</div> 1946</div>
1855<div class="content"><p><a href="https://github.com/bnjbvr/rouille">rewrite it in rust, but in french</a></p> 1947<div class="content"><p><a href="https://github.com/bnjbvr/rouille">rewrite it in rust, but in french</a></p>
1856 <p>[https] posted by lucidiot on July 26, 2022</p></div> 1948 <p>[https] posted by lucidiot on July 26, 2022</p></div>
1857<details class="info"><summary>item information</summary> 1949<details class="info"><summary>item information</summary>
1858timestamp: 1658864623 1950<dl>
1859title: [linkbudz rss feed] rewrite it in rust, but in french 1951<dt>timestamp</dt><dd>1658864623</dd>
1860link: https://github.com/bnjbvr/rouille 1952<dt>title</dt><dd>[linkbudz rss feed] rewrite it in rust, but in french</dd>
1861content_type: html 1953<dt>link</dt><dd>https://github.com/bnjbvr/rouille</dd>
1862id: lucidiot20220726194343 1954<dt>content_type</dt><dd>html</dd>
1863author: 1955<dt>id</dt><dd>lucidiot20220726194343</dd>
1864enclosure: 1956<dt>author</dt><dd></dd>
1865category: https 1957<dt>enclosure</dt><dd></dd>
1958<dt>category</dt><dd>https</dd>
1959</dl>
1866</details> 1960</details>
1867</details> 1961</details>
1868<details> 1962<details>
1869<summary>[Brainshit] Trouver des synonymes en craquant un orteil</summary> 1963<summary>[Brainshit] Trouver des synonymes en craquant un orteil : <time class="time">2022-07-25</time></summary>
1870<div class="links"> 1964<div class="links">
1871<a href="https://brainshit.fr/read/312">read original</a> 1965<a href="https://brainshit.fr/read/312">read original</a>
1872</div> 1966</div>
1873<div class="content">Non, mon cerveau n'est pas en train de craquer. Enfin… pas cette fois.</div> 1967<div class="content">Non, mon cerveau n'est pas en train de craquer. Enfin… pas cette fois.</div>
1874<details class="info"><summary>item information</summary> 1968<details class="info"><summary>item information</summary>
1875timestamp: 1658786400 1969<dl>
1876title: [Brainshit] Trouver des synonymes en craquant un orteil 1970<dt>timestamp</dt><dd>1658786400</dd>
1877link: https://brainshit.fr/read/312 1971<dt>title</dt><dd>[Brainshit] Trouver des synonymes en craquant un orteil</dd>
1878content_type: html 1972<dt>link</dt><dd>https://brainshit.fr/read/312</dd>
1879id: https://brainshit.fr/read/312 1973<dt>content_type</dt><dd>html</dd>
1880author: neuron@brainshit.fr (Lucidiot) 1974<dt>id</dt><dd>https://brainshit.fr/read/312</dd>
1881enclosure: 1975<dt>author</dt><dd>neuron@brainshit.fr (Lucidiot)</dd>
1882category: Informatique 1976<dt>enclosure</dt><dd></dd>
1977<dt>category</dt><dd>Informatique</dd>
1978</dl>
1883</details> 1979</details>
1884</details> 1980</details>
1885<details> 1981<details>
1886<summary>[Dozens and Dragons] It is Time To Plant The Beans</summary> 1982<summary>[Dozens and Dragons] It is Time To Plant The Beans : <time class="time">2022-07-24</time></summary>
1887<div class="links"> 1983<div class="links">
1888<a href="https://dozensanddragons.neocities.org/30.html">read original</a> 1984<a href="https://dozensanddragons.neocities.org/30.html">read original</a>
1889</div> 1985</div>
1890<div class="content">actual play</div> 1986<div class="content">actual play</div>
1891<details class="info"><summary>item information</summary> 1987<details class="info"><summary>item information</summary>
1892timestamp: 1658721600 1988<dl>
1893title: [Dozens and Dragons] It is Time To Plant The Beans 1989<dt>timestamp</dt><dd>1658721600</dd>
1894link: https://dozensanddragons.neocities.org/30.html 1990<dt>title</dt><dd>[Dozens and Dragons] It is Time To Plant The Beans</dd>
1895content_type: html 1991<dt>link</dt><dd>https://dozensanddragons.neocities.org/30.html</dd>
1896id: https://dozensanddragons.neocities.org/30.html 1992<dt>content_type</dt><dd>html</dd>
1897author: 1993<dt>id</dt><dd>https://dozensanddragons.neocities.org/30.html</dd>
1898enclosure: 1994<dt>author</dt><dd></dd>
1899category: 1995<dt>enclosure</dt><dd></dd>
1996<dt>category</dt><dd></dd>
1997</dl>
1900</details> 1998</details>
1901</details> 1999</details>
1902<details> 2000<details>
1903<summary>[lipu pi jan Niko] Minecraft 1.14 was a failure, but here's how to (maybe) improve it</summary> 2001<summary>[lipu pi jan Niko] Minecraft 1.14 was a failure, but here's how to (maybe) improve it : <time class="time">2022-07-24</time></summary>
1904<div class="links"> 2002<div class="links">
1905<a href="https://tilde.town/~nihilazo/log/minecraftvillage.html">read original</a> 2003<a href="https://tilde.town/~nihilazo/log/minecraftvillage.html">read original</a>
1906</div> 2004</div>
1907<div class="content">Minecraft 1.14: Village and Pillage was meant to make villages actually interesting to players and increase their importance and make players actually care about them. But as we reach 1.19 and beyond, it’s clear that this didn’t work, and most players still don’t care about villages beyond being a place to pillage earlygame items, sleep the first few nights, and maybe trap a few villagers to use in farms. So why did it fail?</div> 2005<div class="content">Minecraft 1.14: Village and Pillage was meant to make villages actually interesting to players and increase their importance and make players actually care about them. But as we reach 1.19 and beyond, it’s clear that this didn’t work, and most players still don’t care about villages beyond being a place to pillage earlygame items, sleep the first few nights, and maybe trap a few villagers to use in farms. So why did it fail?</div>
1908<details class="info"><summary>item information</summary> 2006<details class="info"><summary>item information</summary>
1909timestamp: 1658707200 2007<dl>
1910title: [lipu pi jan Niko] Minecraft 1.14 was a failure, but here's how to (maybe) improve it 2008<dt>timestamp</dt><dd>1658707200</dd>
1911link: https://tilde.town/~nihilazo/log/minecraftvillage.html 2009<dt>title</dt><dd>[lipu pi jan Niko] Minecraft 1.14 was a failure, but here's how to (maybe) improve it</dd>
1912content_type: html 2010<dt>link</dt><dd>https://tilde.town/~nihilazo/log/minecraftvillage.html</dd>
1913id: https://tilde.town/~nihilazo/log/minecraftvillage.html 2011<dt>content_type</dt><dd>html</dd>
1914author: 2012<dt>id</dt><dd>https://tilde.town/~nihilazo/log/minecraftvillage.html</dd>
1915enclosure: 2013<dt>author</dt><dd></dd>
1916category: 2014<dt>enclosure</dt><dd></dd>
2015<dt>category</dt><dd></dd>
2016</dl>
1917</details> 2017</details>
1918</details> 2018</details>
1919<details> 2019<details>
1920<summary>[Tilde Whirl Tildeverse Podcast] episode 9</summary> 2020<summary>[Tilde Whirl Tildeverse Podcast] episode 9 : <time class="time">2022-07-24</time></summary>
1921<div class="links"> 2021<div class="links">
1922<a href="https://tilde.town/~dozens/podcast/2022-07-24-episode-9-tomasino.html">read original</a> 2022<a href="https://tilde.town/~dozens/podcast/2022-07-24-episode-9-tomasino.html">read original</a>
1923<a href="https://archive.org/download/tilderwhirl-S01E01/tildewhirl-s01e09.mp3">enclosure</a> 2023<a href="https://archive.org/download/tilderwhirl-S01E01/tildewhirl-s01e09.mp3">enclosure</a>
@@ -1996,52 +2096,58 @@ category:
1996<li><a href="https://freesound.org/people/Victor_Natas/sounds/544897/" class="uri">https://freesound.org/people/Victor_Natas/sounds/544897/</a></li> 2096<li><a href="https://freesound.org/people/Victor_Natas/sounds/544897/" class="uri">https://freesound.org/people/Victor_Natas/sounds/544897/</a></li>
1997</ul></div> 2097</ul></div>
1998<details class="info"><summary>item information</summary> 2098<details class="info"><summary>item information</summary>
1999timestamp: 1658689932 2099<dl>
2000title: [Tilde Whirl Tildeverse Podcast] episode 9 2100<dt>timestamp</dt><dd>1658689932</dd>
2001link: https://tilde.town/~dozens/podcast/2022-07-24-episode-9-tomasino.html 2101<dt>title</dt><dd>[Tilde Whirl Tildeverse Podcast] episode 9</dd>
2002content_type: html 2102<dt>link</dt><dd>https://tilde.town/~dozens/podcast/2022-07-24-episode-9-tomasino.html</dd>
2003id: Thu, 24 July 2022 12:12:12 -0700 2103<dt>content_type</dt><dd>html</dd>
2004author: 2104<dt>id</dt><dd>Thu, 24 July 2022 12:12:12 -0700</dd>
2005enclosure: https://archive.org/download/tilderwhirl-S01E01/tildewhirl-s01e09.mp3 2105<dt>author</dt><dd></dd>
2006category: 2106<dt>enclosure</dt><dd>https://archive.org/download/tilderwhirl-S01E01/tildewhirl-s01e09.mp3</dd>
2107<dt>category</dt><dd></dd>
2108</dl>
2007</details> 2109</details>
2008</details> 2110</details>
2009<details> 2111<details>
2010<summary>[~lucidiot's wiki] Compiled Qt translations</summary> 2112<summary>[~lucidiot's wiki] Compiled Qt translations : <time class="time">2022-07-23</time></summary>
2011<div class="links"> 2113<div class="links">
2012<a href="https://envs.net/~lucidiot/qm.html">read original</a> 2114<a href="https://envs.net/~lucidiot/qm.html">read original</a>
2013</div> 2115</div>
2014<div class="content"></div> 2116<div class="content"></div>
2015<details class="info"><summary>item information</summary> 2117<details class="info"><summary>item information</summary>
2016timestamp: 1658594619 2118<dl>
2017title: [~lucidiot's wiki] Compiled Qt translations 2119<dt>timestamp</dt><dd>1658594619</dd>
2018link: https://envs.net/~lucidiot/qm.html 2120<dt>title</dt><dd>[~lucidiot's wiki] Compiled Qt translations</dd>
2019content_type: 2121<dt>link</dt><dd>https://envs.net/~lucidiot/qm.html</dd>
2020id: https://envs.net/~lucidiot/qm.html 2122<dt>content_type</dt><dd></dd>
2021author: 2123<dt>id</dt><dd>https://envs.net/~lucidiot/qm.html</dd>
2022enclosure: 2124<dt>author</dt><dd></dd>
2023category: 2125<dt>enclosure</dt><dd></dd>
2126<dt>category</dt><dd></dd>
2127</dl>
2024</details> 2128</details>
2025</details> 2129</details>
2026<details> 2130<details>
2027<summary>[~lucidiot's wiki] Agora Nomic</summary> 2131<summary>[~lucidiot's wiki] Agora Nomic : <time class="time">2022-07-23</time></summary>
2028<div class="links"> 2132<div class="links">
2029<a href="https://envs.net/~lucidiot/agoranomic.html">read original</a> 2133<a href="https://envs.net/~lucidiot/agoranomic.html">read original</a>
2030</div> 2134</div>
2031<div class="content"></div> 2135<div class="content"></div>
2032<details class="info"><summary>item information</summary> 2136<details class="info"><summary>item information</summary>
2033timestamp: 1658594498 2137<dl>
2034title: [~lucidiot's wiki] Agora Nomic 2138<dt>timestamp</dt><dd>1658594498</dd>
2035link: https://envs.net/~lucidiot/agoranomic.html 2139<dt>title</dt><dd>[~lucidiot's wiki] Agora Nomic</dd>
2036content_type: 2140<dt>link</dt><dd>https://envs.net/~lucidiot/agoranomic.html</dd>
2037id: https://envs.net/~lucidiot/agoranomic.html 2141<dt>content_type</dt><dd></dd>
2038author: 2142<dt>id</dt><dd>https://envs.net/~lucidiot/agoranomic.html</dd>
2039enclosure: 2143<dt>author</dt><dd></dd>
2040category: 2144<dt>enclosure</dt><dd></dd>
2145<dt>category</dt><dd></dd>
2146</dl>
2041</details> 2147</details>
2042</details> 2148</details>
2043<details> 2149<details>
2044<summary>[(lambda (x) (create x))] Simple Iptables Firewalls</summary> 2150<summary>[(lambda (x) (create x))] Simple Iptables Firewalls : <time class="time">2022-07-23</time></summary>
2045<div class="links"> 2151<div class="links">
2046<a href="https://lambdacreate.com/posts/37">read original</a> 2152<a href="https://lambdacreate.com/posts/37">read original</a>
2047</div> 2153</div>
@@ -2182,36 +2288,39 @@ If all of that checks out, jump to the ACCEPT chain, and push the traffic throug
2182 2288
2183<p>I'll revisit this topic sometime in the future so we can work through desigining a NATing firewall with iptables. There's a lot of dependent systems there too, so that will give us a chance to dig into DHCPD, and BIND at very least. I've got an idea in mind, it just needs to be fleshed out before I actually bring it to the blog.</p></div> 2289<p>I'll revisit this topic sometime in the future so we can work through desigining a NATing firewall with iptables. There's a lot of dependent systems there too, so that will give us a chance to dig into DHCPD, and BIND at very least. I've got an idea in mind, it just needs to be fleshed out before I actually bring it to the blog.</p></div>
2184<details class="info"><summary>item information</summary> 2290<details class="info"><summary>item information</summary>
2185timestamp: 1658577600 2291<dl>
2186title: [(lambda (x) (create x))] Simple Iptables Firewalls 2292<dt>timestamp</dt><dd>1658577600</dd>
2187link: https://lambdacreate.com/posts/37 2293<dt>title</dt><dd>[(lambda (x) (create x))] Simple Iptables Firewalls</dd>
2188content_type: html 2294<dt>link</dt><dd>https://lambdacreate.com/posts/37</dd>
2189id: https://lambdacreate.com/posts/37 2295<dt>content_type</dt><dd>html</dd>
2190author: 2296<dt>id</dt><dd>https://lambdacreate.com/posts/37</dd>
2191enclosure: 2297<dt>author</dt><dd></dd>
2192category: 2298<dt>enclosure</dt><dd></dd>
2299<dt>category</dt><dd></dd>
2300</dl>
2193</details> 2301</details>
2194</details> 2302</details>
2195<details> 2303<details>
2196<summary>[linkbudz rss feed] Racket Summer #lang Party</summary> 2304<summary>[linkbudz rss feed] Racket Summer #lang Party : <time class="time">2022-07-21</time></summary>
2197<div class="links"> 2305<div class="links">
2198<a href="https://racket.discourse.group/t/summer-lang-party/1128">read original</a>
2199</div> 2306</div>
2200<div class="content"><p><a href="https://racket.discourse.group/t/summer-lang-party/1128">Racket Summer #lang Party</a></p> 2307<div class="content"><p><a href="https://racket.discourse.group/t/summer-lang-party/1128">Racket Summer #lang Party</a></p>
2201 <p>[https] posted by elioat on July 22, 2022</p></div> 2308 <p>[https] posted by elioat on July 22, 2022</p></div>
2202<details class="info"><summary>item information</summary> 2309<details class="info"><summary>item information</summary>
2203timestamp: 1658454815 2310<dl>
2204title: [linkbudz rss feed] Racket Summer #lang Party 2311<dt>timestamp</dt><dd>1658454815</dd>
2205link: https://racket.discourse.group/t/summer-lang-party/1128 2312<dt>title</dt><dd>[linkbudz rss feed] Racket Summer #lang Party</dd>
2206content_type: html 2313<dt>link</dt><dd>https://racket.discourse.group/t/summer-lang-party/1128</dd>
2207id: elioat20220722015335 2314<dt>content_type</dt><dd>html</dd>
2208author: 2315<dt>id</dt><dd>elioat20220722015335</dd>
2209enclosure: 2316<dt>author</dt><dd></dd>
2210category: https 2317<dt>enclosure</dt><dd></dd>
2318<dt>category</dt><dd>https</dd>
2319</dl>
2211</details> 2320</details>
2212</details> 2321</details>
2213<details> 2322<details>
2214<summary>[~mio_gemlog] Old Computer Challenge, July 10-17 2022</summary> 2323<summary>[~mio_gemlog] Old Computer Challenge, July 10-17 2022 : <time class="time">2022-07-21</time></summary>
2215<div class="links"> 2324<div class="links">
2216<a href="gemini://tilde.town/~mio/log/2022-07-21-occ-2022.gmi">read original</a> 2325<a href="gemini://tilde.town/~mio/log/2022-07-21-occ-2022.gmi">read original</a>
2217</div> 2326</div>
@@ -2482,36 +2591,39 @@ Related to this was an undercurrent of slight dissatisfaction with the configura
2482 2591
2483Overall, it was a mildly unpleasant week for someone used to accessing the internet in short bursts anytime throughout the day to look up one thing or another and subsequently had to mentally plan ahead briefly to maximise the time blocks. However, it was also not a hard time, as there were plenty of other things I could do that didn't require an active internet connection. I wouldn't want to do this every day, but a week is roughly enough time to begin seeing patterns, including what worked and what didn't work so well, for future reference.</div> 2592Overall, it was a mildly unpleasant week for someone used to accessing the internet in short bursts anytime throughout the day to look up one thing or another and subsequently had to mentally plan ahead briefly to maximise the time blocks. However, it was also not a hard time, as there were plenty of other things I could do that didn't require an active internet connection. I wouldn't want to do this every day, but a week is roughly enough time to begin seeing patterns, including what worked and what didn't work so well, for future reference.</div>
2484<details class="info"><summary>item information</summary> 2593<details class="info"><summary>item information</summary>
2485timestamp: 1658436720 2594<dl>
2486title: [~mio_gemlog] Old Computer Challenge, July 10-17 2022 2595<dt>timestamp</dt><dd>1658436720</dd>
2487link: gemini://tilde.town/~mio/log/2022-07-21-occ-2022.gmi 2596<dt>title</dt><dd>[~mio_gemlog] Old Computer Challenge, July 10-17 2022</dd>
2488content_type: plain 2597<dt>link</dt><dd>gemini://tilde.town/~mio/log/2022-07-21-occ-2022.gmi</dd>
2489id: gemini://tilde.town/~mio/log/2022-07-21-occ-2022.gmi 2598<dt>content_type</dt><dd>plain</dd>
2490author: mio 2599<dt>id</dt><dd>gemini://tilde.town/~mio/log/2022-07-21-occ-2022.gmi</dd>
2491enclosure: 2600<dt>author</dt><dd>mio</dd>
2492category: 2601<dt>enclosure</dt><dd></dd>
2602<dt>category</dt><dd></dd>
2603</dl>
2493</details> 2604</details>
2494</details> 2605</details>
2495<details> 2606<details>
2496<summary>[linkbudz rss feed] literate programming ish</summary> 2607<summary>[linkbudz rss feed] literate programming ish : <time class="time">2022-07-20</time></summary>
2497<div class="links"> 2608<div class="links">
2498<a href="https://rtomayko.github.io/shocco/">read original</a>
2499</div> 2609</div>
2500<div class="content"><p><a href="https://rtomayko.github.io/shocco/">literate programming ish</a></p> 2610<div class="content"><p><a href="https://rtomayko.github.io/shocco/">literate programming ish</a></p>
2501 <p>[https] posted by acdw on July 21, 2022</p></div> 2611 <p>[https] posted by acdw on July 21, 2022</p></div>
2502<details class="info"><summary>item information</summary> 2612<details class="info"><summary>item information</summary>
2503timestamp: 1658376499 2613<dl>
2504title: [linkbudz rss feed] literate programming ish 2614<dt>timestamp</dt><dd>1658376499</dd>
2505link: https://rtomayko.github.io/shocco/ 2615<dt>title</dt><dd>[linkbudz rss feed] literate programming ish</dd>
2506content_type: html 2616<dt>link</dt><dd>https://rtomayko.github.io/shocco/</dd>
2507id: acdw20220721040819 2617<dt>content_type</dt><dd>html</dd>
2508author: 2618<dt>id</dt><dd>acdw20220721040819</dd>
2509enclosure: 2619<dt>author</dt><dd></dd>
2510category: https 2620<dt>enclosure</dt><dd></dd>
2621<dt>category</dt><dd>https</dd>
2622</dl>
2511</details> 2623</details>
2512</details> 2624</details>
2513<details> 2625<details>
2514<summary>[blog __ ~ben] git diff-highlight</summary> 2626<summary>[blog __ ~ben] git diff-highlight : <time class="time">2022-07-20</time></summary>
2515<div class="links"> 2627<div class="links">
2516<a href="https://tilde.team/~ben/blog/git-diff-highlight.html">read original</a> 2628<a href="https://tilde.team/~ben/blog/git-diff-highlight.html">read original</a>
2517</div> 2629</div>
@@ -2536,144 +2648,153 @@ diff = diff-highlight | less
2536</code></pre> 2648</code></pre>
2537<p>see the <a href="https://github.com/git/git/blob/master/contrib/diff-highlight/README">documentation</a> for more usage tips!</p></div> 2649<p>see the <a href="https://github.com/git/git/blob/master/contrib/diff-highlight/README">documentation</a> for more usage tips!</p></div>
2538<details class="info"><summary>item information</summary> 2650<details class="info"><summary>item information</summary>
2539timestamp: 1658370190 2651<dl>
2540title: [blog __ ~ben] git diff-highlight 2652<dt>timestamp</dt><dd>1658370190</dd>
2541link: https://tilde.team/~ben/blog/git-diff-highlight.html 2653<dt>title</dt><dd>[blog __ ~ben] git diff-highlight</dd>
2542content_type: html 2654<dt>link</dt><dd>https://tilde.team/~ben/blog/git-diff-highlight.html</dd>
2543id: https://tilde.team/~ben/blog/git-diff-highlight.html 2655<dt>content_type</dt><dd>html</dd>
2544author: 2656<dt>id</dt><dd>https://tilde.team/~ben/blog/git-diff-highlight.html</dd>
2545enclosure: 2657<dt>author</dt><dd></dd>
2546category: 2658<dt>enclosure</dt><dd></dd>
2659<dt>category</dt><dd></dd>
2660</dl>
2547</details> 2661</details>
2548</details> 2662</details>
2549<details> 2663<details>
2550<summary>[linkbudz rss feed] How to setup aescbc secstore on plan9</summary> 2664<summary>[linkbudz rss feed] How to setup aescbc secstore on plan9 : <time class="time">2022-07-20</time></summary>
2551<div class="links"> 2665<div class="links">
2552<a href="https://9p.io/wiki/plan9/Using_aescbc_to_store_factotum_keys/index.html">read original</a>
2553</div> 2666</div>
2554<div class="content"><p><a href="https://9p.io/wiki/plan9/Using_aescbc_to_store_factotum_keys/index.html">How to setup aescbc secstore on plan9</a></p> 2667<div class="content"><p><a href="https://9p.io/wiki/plan9/Using_aescbc_to_store_factotum_keys/index.html">How to setup aescbc secstore on plan9</a></p>
2555 <p>[https] posted by wsinatra on July 21, 2022</p></div> 2668 <p>[https] posted by wsinatra on July 21, 2022</p></div>
2556<details class="info"><summary>item information</summary> 2669<details class="info"><summary>item information</summary>
2557timestamp: 1658363172 2670<dl>
2558title: [linkbudz rss feed] How to setup aescbc secstore on plan9 2671<dt>timestamp</dt><dd>1658363172</dd>
2559link: https://9p.io/wiki/plan9/Using_aescbc_to_store_factotum_keys/index.html 2672<dt>title</dt><dd>[linkbudz rss feed] How to setup aescbc secstore on plan9</dd>
2560content_type: html 2673<dt>link</dt><dd>https://9p.io/wiki/plan9/Using_aescbc_to_store_factotum_keys/index.html</dd>
2561id: wsinatra20220721002612 2674<dt>content_type</dt><dd>html</dd>
2562author: 2675<dt>id</dt><dd>wsinatra20220721002612</dd>
2563enclosure: 2676<dt>author</dt><dd></dd>
2564category: https 2677<dt>enclosure</dt><dd></dd>
2678<dt>category</dt><dd>https</dd>
2679</dl>
2565</details> 2680</details>
2566</details> 2681</details>
2567<details> 2682<details>
2568<summary>[linkbudz rss feed] Jenga tower dice alternate for sttrpgs</summary> 2683<summary>[linkbudz rss feed] Jenga tower dice alternate for sttrpgs : <time class="time">2022-07-20</time></summary>
2569<div class="links"> 2684<div class="links">
2570<a href="https://itch.io/jam/wretched-jam/topic/796498/dice-substitute-for-jenga-towers">read original</a>
2571</div> 2685</div>
2572<div class="content"><p><a href="https://itch.io/jam/wretched-jam/topic/796498/dice-substitute-for-jenga-towers">Jenga tower dice alternate for sttrpgs</a></p> 2686<div class="content"><p><a href="https://itch.io/jam/wretched-jam/topic/796498/dice-substitute-for-jenga-towers">Jenga tower dice alternate for sttrpgs</a></p>
2573 <p>[https] posted by wsinatra on July 21, 2022</p></div> 2687 <p>[https] posted by wsinatra on July 21, 2022</p></div>
2574<details class="info"><summary>item information</summary> 2688<details class="info"><summary>item information</summary>
2575timestamp: 1658363123 2689<dl>
2576title: [linkbudz rss feed] Jenga tower dice alternate for sttrpgs 2690<dt>timestamp</dt><dd>1658363123</dd>
2577link: https://itch.io/jam/wretched-jam/topic/796498/dice-substitute-for-jenga-towers 2691<dt>title</dt><dd>[linkbudz rss feed] Jenga tower dice alternate for sttrpgs</dd>
2578content_type: html 2692<dt>link</dt><dd>https://itch.io/jam/wretched-jam/topic/796498/dice-substitute-for-jenga-towers</dd>
2579id: wsinatra20220721002523 2693<dt>content_type</dt><dd>html</dd>
2580author: 2694<dt>id</dt><dd>wsinatra20220721002523</dd>
2581enclosure: 2695<dt>author</dt><dd></dd>
2582category: https 2696<dt>enclosure</dt><dd></dd>
2697<dt>category</dt><dd>https</dd>
2698</dl>
2583</details> 2699</details>
2584</details> 2700</details>
2585<details> 2701<details>
2586<summary>[linkbudz rss feed] "Plan9 Desktop Guide!"</summary> 2702<summary>[linkbudz rss feed] "Plan9 Desktop Guide!" : <time class="time">2022-07-20</time></summary>
2587<div class="links"> 2703<div class="links">
2588<a href="https://pspodcasting.net/dan/blog/2019/plan9_desktop.html">read original</a>
2589</div> 2704</div>
2590<div class="content"><p><a href="https://pspodcasting.net/dan/blog/2019/plan9_desktop.html">"Plan9 Desktop Guide!"</a></p> 2705<div class="content"><p><a href="https://pspodcasting.net/dan/blog/2019/plan9_desktop.html">"Plan9 Desktop Guide!"</a></p>
2591 <p>[https] posted by wsinatra on July 21, 2022</p></div> 2706 <p>[https] posted by wsinatra on July 21, 2022</p></div>
2592<details class="info"><summary>item information</summary> 2707<details class="info"><summary>item information</summary>
2593timestamp: 1658363062 2708<dl>
2594title: [linkbudz rss feed] "Plan9 Desktop Guide!" 2709<dt>timestamp</dt><dd>1658363062</dd>
2595link: https://pspodcasting.net/dan/blog/2019/plan9_desktop.html 2710<dt>title</dt><dd>[linkbudz rss feed] "Plan9 Desktop Guide!"</dd>
2596content_type: html 2711<dt>link</dt><dd>https://pspodcasting.net/dan/blog/2019/plan9_desktop.html</dd>
2597id: wsinatra20220721002422 2712<dt>content_type</dt><dd>html</dd>
2598author: 2713<dt>id</dt><dd>wsinatra20220721002422</dd>
2599enclosure: 2714<dt>author</dt><dd></dd>
2600category: https 2715<dt>enclosure</dt><dd></dd>
2716<dt>category</dt><dd>https</dd>
2717</dl>
2601</details> 2718</details>
2602</details> 2719</details>
2603<details> 2720<details>
2604<summary>[linkbudz rss feed] HOT DRINKS</summary> 2721<summary>[linkbudz rss feed] HOT DRINKS : <time class="time">2022-07-20</time></summary>
2605<div class="links"> 2722<div class="links">
2606<a href="https://www.youtube.com/watch?v=_ZXeFPpPJeI">read original</a>
2607</div> 2723</div>
2608<div class="content"><p><a href="https://www.youtube.com/watch?v=_ZXeFPpPJeI">HOT DRINKS</a></p> 2724<div class="content"><p><a href="https://www.youtube.com/watch?v=_ZXeFPpPJeI">HOT DRINKS</a></p>
2609 <p>[https] posted by acdw on July 20, 2022</p></div> 2725 <p>[https] posted by acdw on July 20, 2022</p></div>
2610<details class="info"><summary>item information</summary> 2726<details class="info"><summary>item information</summary>
2611timestamp: 1658345113 2727<dl>
2612title: [linkbudz rss feed] HOT DRINKS 2728<dt>timestamp</dt><dd>1658345113</dd>
2613link: https://www.youtube.com/watch?v=_ZXeFPpPJeI 2729<dt>title</dt><dd>[linkbudz rss feed] HOT DRINKS</dd>
2614content_type: html 2730<dt>link</dt><dd>https://www.youtube.com/watch?v=_ZXeFPpPJeI</dd>
2615id: acdw20220720192513 2731<dt>content_type</dt><dd>html</dd>
2616author: 2732<dt>id</dt><dd>acdw20220720192513</dd>
2617enclosure: 2733<dt>author</dt><dd></dd>
2618category: https 2734<dt>enclosure</dt><dd></dd>
2735<dt>category</dt><dd>https</dd>
2736</dl>
2619</details> 2737</details>
2620</details> 2738</details>
2621<details> 2739<details>
2622<summary>[linkbudz rss feed] gators lol</summary> 2740<summary>[linkbudz rss feed] gators lol : <time class="time">2022-07-19</time></summary>
2623<div class="links"> 2741<div class="links">
2624<a href="https://twitter.com/GatorsDaily/status/1545215138332086274">read original</a>
2625</div> 2742</div>
2626<div class="content"><p><a href="https://twitter.com/GatorsDaily/status/1545215138332086274">gators lol</a></p> 2743<div class="content"><p><a href="https://twitter.com/GatorsDaily/status/1545215138332086274">gators lol</a></p>
2627 <p>[https] posted by acdw on July 19, 2022</p></div> 2744 <p>[https] posted by acdw on July 19, 2022</p></div>
2628<details class="info"><summary>item information</summary> 2745<details class="info"><summary>item information</summary>
2629timestamp: 1658259306 2746<dl>
2630title: [linkbudz rss feed] gators lol 2747<dt>timestamp</dt><dd>1658259306</dd>
2631link: https://twitter.com/GatorsDaily/status/1545215138332086274 2748<dt>title</dt><dd>[linkbudz rss feed] gators lol</dd>
2632content_type: html 2749<dt>link</dt><dd>https://twitter.com/GatorsDaily/status/1545215138332086274</dd>
2633id: acdw20220719193506 2750<dt>content_type</dt><dd>html</dd>
2634author: 2751<dt>id</dt><dd>acdw20220719193506</dd>
2635enclosure: 2752<dt>author</dt><dd></dd>
2636category: https 2753<dt>enclosure</dt><dd></dd>
2754<dt>category</dt><dd>https</dd>
2755</dl>
2637</details> 2756</details>
2638</details> 2757</details>
2639<details> 2758<details>
2640<summary>[linkbudz rss feed] paper airplane designs</summary> 2759<summary>[linkbudz rss feed] paper airplane designs : <time class="time">2022-07-18</time></summary>
2641<div class="links"> 2760<div class="links">
2642<a href="https://www.foldnfly.com/">read original</a>
2643</div> 2761</div>
2644<div class="content"><p><a href="https://www.foldnfly.com/">paper airplane designs</a></p> 2762<div class="content"><p><a href="https://www.foldnfly.com/">paper airplane designs</a></p>
2645 <p>[https] posted by dozens on July 19, 2022</p></div> 2763 <p>[https] posted by dozens on July 19, 2022</p></div>
2646<details class="info"><summary>item information</summary> 2764<details class="info"><summary>item information</summary>
2647timestamp: 1658198147 2765<dl>
2648title: [linkbudz rss feed] paper airplane designs 2766<dt>timestamp</dt><dd>1658198147</dd>
2649link: https://www.foldnfly.com/ 2767<dt>title</dt><dd>[linkbudz rss feed] paper airplane designs</dd>
2650content_type: html 2768<dt>link</dt><dd>https://www.foldnfly.com/</dd>
2651id: dozens20220719023547 2769<dt>content_type</dt><dd>html</dd>
2652author: 2770<dt>id</dt><dd>dozens20220719023547</dd>
2653enclosure: 2771<dt>author</dt><dd></dd>
2654category: https 2772<dt>enclosure</dt><dd></dd>
2773<dt>category</dt><dd>https</dd>
2774</dl>
2655</details> 2775</details>
2656</details> 2776</details>
2657<details> 2777<details>
2658<summary>[linkbudz rss feed] nofetch, a new fetch tool by acdw</summary> 2778<summary>[linkbudz rss feed] nofetch, a new fetch tool by acdw : <time class="time">2022-07-18</time></summary>
2659<div class="links"> 2779<div class="links">
2660<a href="https://git.acdw.net/nofetch/">read original</a>
2661</div> 2780</div>
2662<div class="content"><p><a href="https://git.acdw.net/nofetch/">nofetch, a new fetch tool by acdw</a></p> 2781<div class="content"><p><a href="https://git.acdw.net/nofetch/">nofetch, a new fetch tool by acdw</a></p>
2663 <p>[https] posted by acdw on July 18, 2022</p></div> 2782 <p>[https] posted by acdw on July 18, 2022</p></div>
2664<details class="info"><summary>item information</summary> 2783<details class="info"><summary>item information</summary>
2665timestamp: 1658180624 2784<dl>
2666title: [linkbudz rss feed] nofetch, a new fetch tool by acdw 2785<dt>timestamp</dt><dd>1658180624</dd>
2667link: https://git.acdw.net/nofetch/ 2786<dt>title</dt><dd>[linkbudz rss feed] nofetch, a new fetch tool by acdw</dd>
2668content_type: html 2787<dt>link</dt><dd>https://git.acdw.net/nofetch/</dd>
2669id: acdw20220718214344 2788<dt>content_type</dt><dd>html</dd>
2670author: 2789<dt>id</dt><dd>acdw20220718214344</dd>
2671enclosure: 2790<dt>author</dt><dd></dd>
2672category: https 2791<dt>enclosure</dt><dd></dd>
2792<dt>category</dt><dd>https</dd>
2793</dl>
2673</details> 2794</details>
2674</details> 2795</details>
2675<details> 2796<details>
2676<summary>[p1k3::feed] monday, september 20, 2021</summary> 2797<summary>[p1k3::feed] monday, september 20, 2021 : <time class="time">2022-07-18</time></summary>
2677<div class="links"> 2798<div class="links">
2678<a href="https://p1k3.com/2021/9/20">read original</a> 2799<a href="https://p1k3.com/2021/9/20">read original</a>
2679</div> 2800</div>
@@ -2690,36 +2811,39 @@ you're always packing to go home</p>
2690<a href="/2021/9/20/" title="20">20</a></p> 2811<a href="/2021/9/20/" title="20">20</a></p>
2691</div></article></div> 2812</div></article></div>
2692<details class="info"><summary>item information</summary> 2813<details class="info"><summary>item information</summary>
2693timestamp: 1658176064 2814<dl>
2694title: [p1k3::feed] monday, september 20, 2021 2815<dt>timestamp</dt><dd>1658176064</dd>
2695link: https://p1k3.com/2021/9/20 2816<dt>title</dt><dd>[p1k3::feed] monday, september 20, 2021</dd>
2696content_type: html 2817<dt>link</dt><dd>https://p1k3.com/2021/9/20</dd>
2697id: /2021/9/20 2818<dt>content_type</dt><dd>html</dd>
2698author: 2819<dt>id</dt><dd>/2021/9/20</dd>
2699enclosure: 2820<dt>author</dt><dd></dd>
2700category: 2821<dt>enclosure</dt><dd></dd>
2822<dt>category</dt><dd></dd>
2823</dl>
2701</details> 2824</details>
2702</details> 2825</details>
2703<details> 2826<details>
2704<summary>[linkbudz rss feed] WordPerfect ... for UNIX !</summary> 2827<summary>[linkbudz rss feed] WordPerfect ... for UNIX ! : <time class="time">2022-07-18</time></summary>
2705<div class="links"> 2828<div class="links">
2706<a href="https://lock.cmpxchg8b.com/wordperfect.html">read original</a>
2707</div> 2829</div>
2708<div class="content"><p><a href="https://lock.cmpxchg8b.com/wordperfect.html">WordPerfect ... for UNIX !</a></p> 2830<div class="content"><p><a href="https://lock.cmpxchg8b.com/wordperfect.html">WordPerfect ... for UNIX !</a></p>
2709 <p>[https] posted by acdw on July 18, 2022</p></div> 2831 <p>[https] posted by acdw on July 18, 2022</p></div>
2710<details class="info"><summary>item information</summary> 2832<details class="info"><summary>item information</summary>
2711timestamp: 1658173878 2833<dl>
2712title: [linkbudz rss feed] WordPerfect ... for UNIX ! 2834<dt>timestamp</dt><dd>1658173878</dd>
2713link: https://lock.cmpxchg8b.com/wordperfect.html 2835<dt>title</dt><dd>[linkbudz rss feed] WordPerfect ... for UNIX !</dd>
2714content_type: html 2836<dt>link</dt><dd>https://lock.cmpxchg8b.com/wordperfect.html</dd>
2715id: acdw20220718195118 2837<dt>content_type</dt><dd>html</dd>
2716author: 2838<dt>id</dt><dd>acdw20220718195118</dd>
2717enclosure: 2839<dt>author</dt><dd></dd>
2718category: https 2840<dt>enclosure</dt><dd></dd>
2841<dt>category</dt><dd>https</dd>
2842</dl>
2719</details> 2843</details>
2720</details> 2844</details>
2721<details> 2845<details>
2722<summary>[(lambda (x) (create x))] Old School Computer Challenge 2022</summary> 2846<summary>[(lambda (x) (create x))] Old School Computer Challenge 2022 : <time class="time">2022-07-18</time></summary>
2723<div class="links"> 2847<div class="links">
2724<a href="https://lambdacreate.com/posts/36">read original</a> 2848<a href="https://lambdacreate.com/posts/36">read original</a>
2725</div> 2849</div>
@@ -2846,105 +2970,115 @@ ssh username@tcp!192.168.88.101!20022
2846 2970
2847<p>Anyways, this is getting a bit rambly I think. If you've read through and are on the edge of giving Plan9 a shot, I would say go for it. If you're curious you'll discover an interesting and unique environment to explore. If you're thinking about turning that ancient netbook into a usable system, Plan9 is a great fit for it too! And if you're here from the Old School Computer challenge, then thanks for the read and the awesome challenge again this year!</p></div> 2971<p>Anyways, this is getting a bit rambly I think. If you've read through and are on the edge of giving Plan9 a shot, I would say go for it. If you're curious you'll discover an interesting and unique environment to explore. If you're thinking about turning that ancient netbook into a usable system, Plan9 is a great fit for it too! And if you're here from the Old School Computer challenge, then thanks for the read and the awesome challenge again this year!</p></div>
2848<details class="info"><summary>item information</summary> 2972<details class="info"><summary>item information</summary>
2849timestamp: 1658145600 2973<dl>
2850title: [(lambda (x) (create x))] Old School Computer Challenge 2022 2974<dt>timestamp</dt><dd>1658145600</dd>
2851link: https://lambdacreate.com/posts/36 2975<dt>title</dt><dd>[(lambda (x) (create x))] Old School Computer Challenge 2022</dd>
2852content_type: html 2976<dt>link</dt><dd>https://lambdacreate.com/posts/36</dd>
2853id: https://lambdacreate.com/posts/36 2977<dt>content_type</dt><dd>html</dd>
2854author: 2978<dt>id</dt><dd>https://lambdacreate.com/posts/36</dd>
2855enclosure: 2979<dt>author</dt><dd></dd>
2856category: 2980<dt>enclosure</dt><dd></dd>
2981<dt>category</dt><dd></dd>
2982</dl>
2857</details> 2983</details>
2858</details> 2984</details>
2859<details> 2985<details>
2860<summary>[Dozens and Dragons] Thousand Year Old Vampire</summary> 2986<summary>[Dozens and Dragons] Thousand Year Old Vampire : <time class="time">2022-07-16</time></summary>
2861<div class="links"> 2987<div class="links">
2862<a href="https://dozensanddragons.neocities.org/29.html">read original</a> 2988<a href="https://dozensanddragons.neocities.org/29.html">read original</a>
2863</div> 2989</div>
2864<div class="content">game play and review</div> 2990<div class="content">game play and review</div>
2865<details class="info"><summary>item information</summary> 2991<details class="info"><summary>item information</summary>
2866timestamp: 1658030400 2992<dl>
2867title: [Dozens and Dragons] Thousand Year Old Vampire 2993<dt>timestamp</dt><dd>1658030400</dd>
2868link: https://dozensanddragons.neocities.org/29.html 2994<dt>title</dt><dd>[Dozens and Dragons] Thousand Year Old Vampire</dd>
2869content_type: html 2995<dt>link</dt><dd>https://dozensanddragons.neocities.org/29.html</dd>
2870id: https://dozensanddragons.neocities.org/29.html 2996<dt>content_type</dt><dd>html</dd>
2871author: 2997<dt>id</dt><dd>https://dozensanddragons.neocities.org/29.html</dd>
2872enclosure: 2998<dt>author</dt><dd></dd>
2873category: 2999<dt>enclosure</dt><dd></dd>
3000<dt>category</dt><dd></dd>
3001</dl>
2874</details> 3002</details>
2875</details> 3003</details>
2876<details> 3004<details>
2877<summary>[Brainshit] La version méconnue du texte bien connu, seconde partie</summary> 3005<summary>[Brainshit] La version méconnue du texte bien connu, seconde partie : <time class="time">2022-07-16</time></summary>
2878<div class="links"> 3006<div class="links">
2879<a href="https://brainshit.fr/read/307">read original</a> 3007<a href="https://brainshit.fr/read/307">read original</a>
2880</div> 3008</div>
2881<div class="content">Une expression régulière qui pourrait gagner un concours d'obfuscation.</div> 3009<div class="content">Une expression régulière qui pourrait gagner un concours d'obfuscation.</div>
2882<details class="info"><summary>item information</summary> 3010<details class="info"><summary>item information</summary>
2883timestamp: 1658008800 3011<dl>
2884title: [Brainshit] La version méconnue du texte bien connu, seconde partie 3012<dt>timestamp</dt><dd>1658008800</dd>
2885link: https://brainshit.fr/read/307 3013<dt>title</dt><dd>[Brainshit] La version méconnue du texte bien connu, seconde partie</dd>
2886content_type: html 3014<dt>link</dt><dd>https://brainshit.fr/read/307</dd>
2887id: https://brainshit.fr/read/307 3015<dt>content_type</dt><dd>html</dd>
2888author: neuron@brainshit.fr (Lucidiot) 3016<dt>id</dt><dd>https://brainshit.fr/read/307</dd>
2889enclosure: 3017<dt>author</dt><dd>neuron@brainshit.fr (Lucidiot)</dd>
2890category: Informatique 3018<dt>enclosure</dt><dd></dd>
3019<dt>category</dt><dd>Informatique</dd>
3020</dl>
2891</details> 3021</details>
2892</details> 3022</details>
2893<details> 3023<details>
2894<summary>[linkbudz rss feed] static site hosting from tildegit repos</summary> 3024<summary>[linkbudz rss feed] static site hosting from tildegit repos : <time class="time">2022-07-16</time></summary>
2895<div class="links"> 3025<div class="links">
2896<a href="https://tildepages.org/">read original</a>
2897</div> 3026</div>
2898<div class="content"><p><a href="https://tildepages.org/">static site hosting from tildegit repos</a></p> 3027<div class="content"><p><a href="https://tildepages.org/">static site hosting from tildegit repos</a></p>
2899 <p>[https] posted by dozens on July 16, 2022</p></div> 3028 <p>[https] posted by dozens on July 16, 2022</p></div>
2900<details class="info"><summary>item information</summary> 3029<details class="info"><summary>item information</summary>
2901timestamp: 1657979669 3030<dl>
2902title: [linkbudz rss feed] static site hosting from tildegit repos 3031<dt>timestamp</dt><dd>1657979669</dd>
2903link: https://tildepages.org/ 3032<dt>title</dt><dd>[linkbudz rss feed] static site hosting from tildegit repos</dd>
2904content_type: html 3033<dt>link</dt><dd>https://tildepages.org/</dd>
2905id: dozens20220716135429 3034<dt>content_type</dt><dd>html</dd>
2906author: 3035<dt>id</dt><dd>dozens20220716135429</dd>
2907enclosure: 3036<dt>author</dt><dd></dd>
2908category: https 3037<dt>enclosure</dt><dd></dd>
3038<dt>category</dt><dd>https</dd>
3039</dl>
2909</details> 3040</details>
2910</details> 3041</details>
2911<details> 3042<details>
2912<summary>[linkbudz rss feed] writing and running a bbs on a Macintosh plus</summary> 3043<summary>[linkbudz rss feed] writing and running a bbs on a Macintosh plus : <time class="time">2022-07-15</time></summary>
2913<div class="links"> 3044<div class="links">
2914<a href="https://jcs.org/2022/07/15/kludge">read original</a>
2915</div> 3045</div>
2916<div class="content"><p><a href="https://jcs.org/2022/07/15/kludge">writing and running a bbs on a Macintosh plus</a></p> 3046<div class="content"><p><a href="https://jcs.org/2022/07/15/kludge">writing and running a bbs on a Macintosh plus</a></p>
2917 <p>[https] posted by elioat on July 15, 2022</p></div> 3047 <p>[https] posted by elioat on July 15, 2022</p></div>
2918<details class="info"><summary>item information</summary> 3048<details class="info"><summary>item information</summary>
2919timestamp: 1657898458 3049<dl>
2920title: [linkbudz rss feed] writing and running a bbs on a Macintosh plus 3050<dt>timestamp</dt><dd>1657898458</dd>
2921link: https://jcs.org/2022/07/15/kludge 3051<dt>title</dt><dd>[linkbudz rss feed] writing and running a bbs on a Macintosh plus</dd>
2922content_type: html 3052<dt>link</dt><dd>https://jcs.org/2022/07/15/kludge</dd>
2923id: elioat20220715152058 3053<dt>content_type</dt><dd>html</dd>
2924author: 3054<dt>id</dt><dd>elioat20220715152058</dd>
2925enclosure: 3055<dt>author</dt><dd></dd>
2926category: https 3056<dt>enclosure</dt><dd></dd>
3057<dt>category</dt><dd>https</dd>
3058</dl>
2927</details> 3059</details>
2928</details> 3060</details>
2929<details> 3061<details>
2930<summary>[~lucidiot's wiki] Channel Definition Format</summary> 3062<summary>[~lucidiot's wiki] Channel Definition Format : <time class="time">2022-07-15</time></summary>
2931<div class="links"> 3063<div class="links">
2932<a href="https://envs.net/~lucidiot/cdf.html">read original</a> 3064<a href="https://envs.net/~lucidiot/cdf.html">read original</a>
2933</div> 3065</div>
2934<div class="content"></div> 3066<div class="content"></div>
2935<details class="info"><summary>item information</summary> 3067<details class="info"><summary>item information</summary>
2936timestamp: 1657877322 3068<dl>
2937title: [~lucidiot's wiki] Channel Definition Format 3069<dt>timestamp</dt><dd>1657877322</dd>
2938link: https://envs.net/~lucidiot/cdf.html 3070<dt>title</dt><dd>[~lucidiot's wiki] Channel Definition Format</dd>
2939content_type: 3071<dt>link</dt><dd>https://envs.net/~lucidiot/cdf.html</dd>
2940id: https://envs.net/~lucidiot/cdf.html 3072<dt>content_type</dt><dd></dd>
2941author: 3073<dt>id</dt><dd>https://envs.net/~lucidiot/cdf.html</dd>
2942enclosure: 3074<dt>author</dt><dd></dd>
2943category: 3075<dt>enclosure</dt><dd></dd>
3076<dt>category</dt><dd></dd>
3077</dl>
2944</details> 3078</details>
2945</details> 3079</details>
2946<details> 3080<details>
2947<summary>[p1k3::feed] Friday, July 15, 2022</summary> 3081<summary>[p1k3::feed] Friday, July 15, 2022 : <time class="time">2022-07-15</time></summary>
2948<div class="links"> 3082<div class="links">
2949<a href="https://p1k3.com/2022/7/15">read original</a> 3083<a href="https://p1k3.com/2022/7/15">read original</a>
2950</div> 3084</div>
@@ -2960,18 +3094,20 @@ category:
2960<a href="/2022/7/15/" title="15">15</a></p> 3094<a href="/2022/7/15/" title="15">15</a></p>
2961</div></article></div> 3095</div></article></div>
2962<details class="info"><summary>item information</summary> 3096<details class="info"><summary>item information</summary>
2963timestamp: 1657869250 3097<dl>
2964title: [p1k3::feed] Friday, July 15, 2022 3098<dt>timestamp</dt><dd>1657869250</dd>
2965link: https://p1k3.com/2022/7/15 3099<dt>title</dt><dd>[p1k3::feed] Friday, July 15, 2022</dd>
2966content_type: html 3100<dt>link</dt><dd>https://p1k3.com/2022/7/15</dd>
2967id: /2022/7/15 3101<dt>content_type</dt><dd>html</dd>
2968author: 3102<dt>id</dt><dd>/2022/7/15</dd>
2969enclosure: 3103<dt>author</dt><dd></dd>
2970category: 3104<dt>enclosure</dt><dd></dd>
3105<dt>category</dt><dd></dd>
3106</dl>
2971</details> 3107</details>
2972</details> 3108</details>
2973<details> 3109<details>
2974<summary>[p1k3::feed] wednesday, december 18, 2019 - notes to a much younger self, to the extent that i can reconstruct him</summary> 3110<summary>[p1k3::feed] wednesday, december 18, 2019 - notes to a much younger self, to the extent that i can reconstruct him : <time class="time">2022-07-15</time></summary>
2975<div class="links"> 3111<div class="links">
2976<a href="https://p1k3.com/2019/12/18">read original</a> 3112<a href="https://p1k3.com/2019/12/18">read original</a>
2977</div> 3113</div>
@@ -3029,71 +3165,77 @@ there's any truer self to be found.</p>
3029<a href="/2019/12/18/" title="18">18</a></p> 3165<a href="/2019/12/18/" title="18">18</a></p>
3030</div></article></div> 3166</div></article></div>
3031<details class="info"><summary>item information</summary> 3167<details class="info"><summary>item information</summary>
3032timestamp: 1657869250 3168<dl>
3033title: [p1k3::feed] wednesday, december 18, 2019 - notes to a much younger self, to the extent that i can reconstruct him 3169<dt>timestamp</dt><dd>1657869250</dd>
3034link: https://p1k3.com/2019/12/18 3170<dt>title</dt><dd>[p1k3::feed] wednesday, december 18, 2019 - notes to a much younger self, to the extent that i can reconstruct him</dd>
3035content_type: html 3171<dt>link</dt><dd>https://p1k3.com/2019/12/18</dd>
3036id: /2019/12/18 3172<dt>content_type</dt><dd>html</dd>
3037author: 3173<dt>id</dt><dd>/2019/12/18</dd>
3038enclosure: 3174<dt>author</dt><dd></dd>
3039category: 3175<dt>enclosure</dt><dd></dd>
3176<dt>category</dt><dd></dd>
3177</dl>
3040</details> 3178</details>
3041</details> 3179</details>
3042<details> 3180<details>
3043<summary>[#fridaypostcard] pipe dreams</summary> 3181<summary>[#fridaypostcard] pipe dreams : <time class="time">2022-07-14</time></summary>
3044<div class="links"> 3182<div class="links">
3045<a href="http://live.staticflickr.com/65535/52160774612_bc67c42811_c.jpg">read original</a>
3046<a href="http://live.staticflickr.com/65535/52160774612_bc67c42811_c.jpg">enclosure</a> 3183<a href="http://live.staticflickr.com/65535/52160774612_bc67c42811_c.jpg">enclosure</a>
3047</div> 3184</div>
3048<div class="content">pipe dreams<br />~rogbeer</div> 3185<div class="content">pipe dreams<br />~rogbeer</div>
3049<details class="info"><summary>item information</summary> 3186<details class="info"><summary>item information</summary>
3050timestamp: 1657853842 3187<dl>
3051title: [#fridaypostcard] pipe dreams 3188<dt>timestamp</dt><dd>1657853842</dd>
3052link: http://live.staticflickr.com/65535/52160774612_bc67c42811_c.jpg 3189<dt>title</dt><dd>[#fridaypostcard] pipe dreams</dd>
3053content_type: html 3190<dt>link</dt><dd>http://live.staticflickr.com/65535/52160774612_bc67c42811_c.jpg</dd>
3054id: http://live.staticflickr.com/65535/52160774612_bc67c42811_c.jpg 3191<dt>content_type</dt><dd>html</dd>
3055author: rogbeer@tilde.town (rogbeer) 3192<dt>id</dt><dd>http://live.staticflickr.com/65535/52160774612_bc67c42811_c.jpg</dd>
3056enclosure: http://live.staticflickr.com/65535/52160774612_bc67c42811_c.jpg 3193<dt>author</dt><dd>rogbeer@tilde.town (rogbeer)</dd>
3057category: 3194<dt>enclosure</dt><dd>http://live.staticflickr.com/65535/52160774612_bc67c42811_c.jpg</dd>
3195<dt>category</dt><dd></dd>
3196</dl>
3058</details> 3197</details>
3059</details> 3198</details>
3060<details> 3199<details>
3061<summary>[Dozens and Dragons] Shoes in the Dark</summary> 3200<summary>[Dozens and Dragons] Shoes in the Dark : <time class="time">2022-07-12</time></summary>
3062<div class="links"> 3201<div class="links">
3063<a href="https://dozensanddragons.neocities.org/28.html">read original</a> 3202<a href="https://dozensanddragons.neocities.org/28.html">read original</a>
3064</div> 3203</div>
3065<div class="content">a postcard-sized ttrpg</div> 3204<div class="content">a postcard-sized ttrpg</div>
3066<details class="info"><summary>item information</summary> 3205<details class="info"><summary>item information</summary>
3067timestamp: 1657684800 3206<dl>
3068title: [Dozens and Dragons] Shoes in the Dark 3207<dt>timestamp</dt><dd>1657684800</dd>
3069link: https://dozensanddragons.neocities.org/28.html 3208<dt>title</dt><dd>[Dozens and Dragons] Shoes in the Dark</dd>
3070content_type: html 3209<dt>link</dt><dd>https://dozensanddragons.neocities.org/28.html</dd>
3071id: https://dozensanddragons.neocities.org/28.html 3210<dt>content_type</dt><dd>html</dd>
3072author: 3211<dt>id</dt><dd>https://dozensanddragons.neocities.org/28.html</dd>
3073enclosure: 3212<dt>author</dt><dd></dd>
3074category: 3213<dt>enclosure</dt><dd></dd>
3214<dt>category</dt><dd></dd>
3215</dl>
3075</details> 3216</details>
3076</details> 3217</details>
3077<details> 3218<details>
3078<summary>[linkbudz rss feed] FizzBuzz in GNU make</summary> 3219<summary>[linkbudz rss feed] FizzBuzz in GNU make : <time class="time">2022-07-12</time></summary>
3079<div class="links"> 3220<div class="links">
3080<a href="https://citizen428.net/blog/fizzbuzz-in-gnu-make/">read original</a>
3081</div> 3221</div>
3082<div class="content"><p><a href="https://citizen428.net/blog/fizzbuzz-in-gnu-make/">FizzBuzz in GNU make</a></p> 3222<div class="content"><p><a href="https://citizen428.net/blog/fizzbuzz-in-gnu-make/">FizzBuzz in GNU make</a></p>
3083 <p>[https] posted by dozens on July 13, 2022</p></div> 3223 <p>[https] posted by dozens on July 13, 2022</p></div>
3084<details class="info"><summary>item information</summary> 3224<details class="info"><summary>item information</summary>
3085timestamp: 1657672683 3225<dl>
3086title: [linkbudz rss feed] FizzBuzz in GNU make 3226<dt>timestamp</dt><dd>1657672683</dd>
3087link: https://citizen428.net/blog/fizzbuzz-in-gnu-make/ 3227<dt>title</dt><dd>[linkbudz rss feed] FizzBuzz in GNU make</dd>
3088content_type: html 3228<dt>link</dt><dd>https://citizen428.net/blog/fizzbuzz-in-gnu-make/</dd>
3089id: dozens20220713003803 3229<dt>content_type</dt><dd>html</dd>
3090author: 3230<dt>id</dt><dd>dozens20220713003803</dd>
3091enclosure: 3231<dt>author</dt><dd></dd>
3092category: https 3232<dt>enclosure</dt><dd></dd>
3233<dt>category</dt><dd>https</dd>
3234</dl>
3093</details> 3235</details>
3094</details> 3236</details>
3095<details> 3237<details>
3096<summary>[Tilde Whirl Tildeverse Podcast] episode 8</summary> 3238<summary>[Tilde Whirl Tildeverse Podcast] episode 8 : <time class="time">2022-07-12</time></summary>
3097<div class="links"> 3239<div class="links">
3098<a href="https://tilde.town/~dozens/podcast/2022-07-12-episode-8-eli.html">read original</a> 3240<a href="https://tilde.town/~dozens/podcast/2022-07-12-episode-8-eli.html">read original</a>
3099<a href="https://archive.org/download/tilderwhirl-S01E01/tildewhirl-s01e08.mp3">enclosure</a> 3241<a href="https://archive.org/download/tilderwhirl-S01E01/tildewhirl-s01e08.mp3">enclosure</a>
@@ -3168,124 +3310,134 @@ category: https
3168<li>csvkit – <a href="https://csvkit.readthedocs.io/en/latest/index.html" class="uri">https://csvkit.readthedocs.io/en/latest/index.html</a></li> 3310<li>csvkit – <a href="https://csvkit.readthedocs.io/en/latest/index.html" class="uri">https://csvkit.readthedocs.io/en/latest/index.html</a></li>
3169</ul></div> 3311</ul></div>
3170<details class="info"><summary>item information</summary> 3312<details class="info"><summary>item information</summary>
3171timestamp: 1657653132 3313<dl>
3172title: [Tilde Whirl Tildeverse Podcast] episode 8 3314<dt>timestamp</dt><dd>1657653132</dd>
3173link: https://tilde.town/~dozens/podcast/2022-07-12-episode-8-eli.html 3315<dt>title</dt><dd>[Tilde Whirl Tildeverse Podcast] episode 8</dd>
3174content_type: html 3316<dt>link</dt><dd>https://tilde.town/~dozens/podcast/2022-07-12-episode-8-eli.html</dd>
3175id: Thu, 12 July 2022 12:12:12 -0700 3317<dt>content_type</dt><dd>html</dd>
3176author: 3318<dt>id</dt><dd>Thu, 12 July 2022 12:12:12 -0700</dd>
3177enclosure: https://archive.org/download/tilderwhirl-S01E01/tildewhirl-s01e08.mp3 3319<dt>author</dt><dd></dd>
3178category: 3320<dt>enclosure</dt><dd>https://archive.org/download/tilderwhirl-S01E01/tildewhirl-s01e08.mp3</dd>
3321<dt>category</dt><dd></dd>
3322</dl>
3179</details> 3323</details>
3180</details> 3324</details>
3181<details> 3325<details>
3182<summary>[linkbudz rss feed] james webb first images</summary> 3326<summary>[linkbudz rss feed] james webb first images : <time class="time">2022-07-12</time></summary>
3183<div class="links"> 3327<div class="links">
3184<a href="https://www.nasa.gov/webbfirstimages">read original</a>
3185</div> 3328</div>
3186<div class="content"><p><a href="https://www.nasa.gov/webbfirstimages">james webb first images</a></p> 3329<div class="content"><p><a href="https://www.nasa.gov/webbfirstimages">james webb first images</a></p>
3187 <p>[https] posted by acdw on July 12, 2022</p></div> 3330 <p>[https] posted by acdw on July 12, 2022</p></div>
3188<details class="info"><summary>item information</summary> 3331<details class="info"><summary>item information</summary>
3189timestamp: 1657648512 3332<dl>
3190title: [linkbudz rss feed] james webb first images 3333<dt>timestamp</dt><dd>1657648512</dd>
3191link: https://www.nasa.gov/webbfirstimages 3334<dt>title</dt><dd>[linkbudz rss feed] james webb first images</dd>
3192content_type: html 3335<dt>link</dt><dd>https://www.nasa.gov/webbfirstimages</dd>
3193id: acdw20220712175512 3336<dt>content_type</dt><dd>html</dd>
3194author: 3337<dt>id</dt><dd>acdw20220712175512</dd>
3195enclosure: 3338<dt>author</dt><dd></dd>
3196category: https 3339<dt>enclosure</dt><dd></dd>
3340<dt>category</dt><dd>https</dd>
3341</dl>
3197</details> 3342</details>
3198</details> 3343</details>
3199<details> 3344<details>
3200<summary>[linkbudz rss feed] relative vs absolute urls in rss content hell</summary> 3345<summary>[linkbudz rss feed] relative vs absolute urls in rss content hell : <time class="time">2022-07-11</time></summary>
3201<div class="links"> 3346<div class="links">
3202<a href="https://www.jessesquires.com/blog/2021/06/06/rss-feeds-jekyll-and-absolute-versus-relative-urls/">read original</a>
3203</div> 3347</div>
3204<div class="content"><p><a href="https://www.jessesquires.com/blog/2021/06/06/rss-feeds-jekyll-and-absolute-versus-relative-urls/">relative vs absolute urls in rss content hell</a></p> 3348<div class="content"><p><a href="https://www.jessesquires.com/blog/2021/06/06/rss-feeds-jekyll-and-absolute-versus-relative-urls/">relative vs absolute urls in rss content hell</a></p>
3205 <p>[https] posted by m455 on July 12, 2022</p></div> 3349 <p>[https] posted by m455 on July 12, 2022</p></div>
3206<details class="info"><summary>item information</summary> 3350<details class="info"><summary>item information</summary>
3207timestamp: 1657592772 3351<dl>
3208title: [linkbudz rss feed] relative vs absolute urls in rss content hell 3352<dt>timestamp</dt><dd>1657592772</dd>
3209link: https://www.jessesquires.com/blog/2021/06/06/rss-feeds-jekyll-and-absolute-versus-relative-urls/ 3353<dt>title</dt><dd>[linkbudz rss feed] relative vs absolute urls in rss content hell</dd>
3210content_type: html 3354<dt>link</dt><dd>https://www.jessesquires.com/blog/2021/06/06/rss-feeds-jekyll-and-absolute-versus-relative-urls/</dd>
3211id: m45520220712022612 3355<dt>content_type</dt><dd>html</dd>
3212author: 3356<dt>id</dt><dd>m45520220712022612</dd>
3213enclosure: 3357<dt>author</dt><dd></dd>
3214category: https 3358<dt>enclosure</dt><dd></dd>
3359<dt>category</dt><dd>https</dd>
3360</dl>
3215</details> 3361</details>
3216</details> 3362</details>
3217<details> 3363<details>
3218<summary>[~lucidiot's wiki] books</summary> 3364<summary>[~lucidiot's wiki] books : <time class="time">2022-07-11</time></summary>
3219<div class="links"> 3365<div class="links">
3220<a href="https://envs.net/~lucidiot/books.html">read original</a> 3366<a href="https://envs.net/~lucidiot/books.html">read original</a>
3221</div> 3367</div>
3222<div class="content"></div> 3368<div class="content"></div>
3223<details class="info"><summary>item information</summary> 3369<details class="info"><summary>item information</summary>
3224timestamp: 1657530341 3370<dl>
3225title: [~lucidiot's wiki] books 3371<dt>timestamp</dt><dd>1657530341</dd>
3226link: https://envs.net/~lucidiot/books.html 3372<dt>title</dt><dd>[~lucidiot's wiki] books</dd>
3227content_type: 3373<dt>link</dt><dd>https://envs.net/~lucidiot/books.html</dd>
3228id: https://envs.net/~lucidiot/books.html 3374<dt>content_type</dt><dd></dd>
3229author: 3375<dt>id</dt><dd>https://envs.net/~lucidiot/books.html</dd>
3230enclosure: 3376<dt>author</dt><dd></dd>
3231category: 3377<dt>enclosure</dt><dd></dd>
3378<dt>category</dt><dd></dd>
3379</dl>
3232</details> 3380</details>
3233</details> 3381</details>
3234<details> 3382<details>
3235<summary>[linkbudz rss feed] web-based system administration for Unix</summary> 3383<summary>[linkbudz rss feed] web-based system administration for Unix : <time class="time">2022-07-11</time></summary>
3236<div class="links"> 3384<div class="links">
3237<a href="https://www.webmin.com/demo.html">read original</a>
3238</div> 3385</div>
3239<div class="content"><p><a href="https://www.webmin.com/demo.html">web-based system administration for Unix</a></p> 3386<div class="content"><p><a href="https://www.webmin.com/demo.html">web-based system administration for Unix</a></p>
3240 <p>[https] posted by m455 on July 11, 2022</p></div> 3387 <p>[https] posted by m455 on July 11, 2022</p></div>
3241<details class="info"><summary>item information</summary> 3388<details class="info"><summary>item information</summary>
3242timestamp: 1657515744 3389<dl>
3243title: [linkbudz rss feed] web-based system administration for Unix 3390<dt>timestamp</dt><dd>1657515744</dd>
3244link: https://www.webmin.com/demo.html 3391<dt>title</dt><dd>[linkbudz rss feed] web-based system administration for Unix</dd>
3245content_type: html 3392<dt>link</dt><dd>https://www.webmin.com/demo.html</dd>
3246id: m45520220711050224 3393<dt>content_type</dt><dd>html</dd>
3247author: 3394<dt>id</dt><dd>m45520220711050224</dd>
3248enclosure: 3395<dt>author</dt><dd></dd>
3249category: https 3396<dt>enclosure</dt><dd></dd>
3397<dt>category</dt><dd>https</dd>
3398</dl>
3250</details> 3399</details>
3251</details> 3400</details>
3252<details> 3401<details>
3253<summary>[linkbudz rss feed] stylish text generator (all of the early msn messenger nickname ascii art you need)</summary> 3402<summary>[linkbudz rss feed] stylish text generator (all of the early msn messenger nickname ascii art you need) : <time class="time">2022-07-10</time></summary>
3254<div class="links"> 3403<div class="links">
3255<a href="https://www.webestools.com/stylish-text-generator-nickname-message-msn-facebook-windows-live-messenger-text-accents-effect-ascii-text.html">read original</a>
3256</div> 3404</div>
3257<div class="content"><p><a href="https://www.webestools.com/stylish-text-generator-nickname-message-msn-facebook-windows-live-messenger-text-accents-effect-ascii-text.html">stylish text generator (all of the early msn messenger nickname ascii art you need)</a></p> 3405<div class="content"><p><a href="https://www.webestools.com/stylish-text-generator-nickname-message-msn-facebook-windows-live-messenger-text-accents-effect-ascii-text.html">stylish text generator (all of the early msn messenger nickname ascii art you need)</a></p>
3258 <p>[https] posted by m455 on July 11, 2022</p></div> 3406 <p>[https] posted by m455 on July 11, 2022</p></div>
3259<details class="info"><summary>item information</summary> 3407<details class="info"><summary>item information</summary>
3260timestamp: 1657511814 3408<dl>
3261title: [linkbudz rss feed] stylish text generator (all of the early msn messenger nickname ascii art you need) 3409<dt>timestamp</dt><dd>1657511814</dd>
3262link: https://www.webestools.com/stylish-text-generator-nickname-message-msn-facebook-windows-live-messenger-text-accents-effect-ascii-text.html 3410<dt>title</dt><dd>[linkbudz rss feed] stylish text generator (all of the early msn messenger nickname ascii art you need)</dd>
3263content_type: html 3411<dt>link</dt><dd>https://www.webestools.com/stylish-text-generator-nickname-message-msn-facebook-windows-live-messenger-text-accents-effect-ascii-text.html</dd>
3264id: m45520220711035654 3412<dt>content_type</dt><dd>html</dd>
3265author: 3413<dt>id</dt><dd>m45520220711035654</dd>
3266enclosure: 3414<dt>author</dt><dd></dd>
3267category: https 3415<dt>enclosure</dt><dd></dd>
3416<dt>category</dt><dd>https</dd>
3417</dl>
3268</details> 3418</details>
3269</details> 3419</details>
3270<details> 3420<details>
3271<summary>[Brainshit] La version méconnue du texte bien connu, première partie</summary> 3421<summary>[Brainshit] La version méconnue du texte bien connu, première partie : <time class="time">2022-07-10</time></summary>
3272<div class="links"> 3422<div class="links">
3273<a href="https://brainshit.fr/read/306">read original</a> 3423<a href="https://brainshit.fr/read/306">read original</a>
3274</div> 3424</div>
3275<div class="content">Le grand retour du terrible standard ISO.</div> 3425<div class="content">Le grand retour du terrible standard ISO.</div>
3276<details class="info"><summary>item information</summary> 3426<details class="info"><summary>item information</summary>
3277timestamp: 1657490400 3427<dl>
3278title: [Brainshit] La version méconnue du texte bien connu, première partie 3428<dt>timestamp</dt><dd>1657490400</dd>
3279link: https://brainshit.fr/read/306 3429<dt>title</dt><dd>[Brainshit] La version méconnue du texte bien connu, première partie</dd>
3280content_type: html 3430<dt>link</dt><dd>https://brainshit.fr/read/306</dd>
3281id: https://brainshit.fr/read/306 3431<dt>content_type</dt><dd>html</dd>
3282author: neuron@brainshit.fr (Lucidiot) 3432<dt>id</dt><dd>https://brainshit.fr/read/306</dd>
3283enclosure: 3433<dt>author</dt><dd>neuron@brainshit.fr (Lucidiot)</dd>
3284category: Informatique 3434<dt>enclosure</dt><dd></dd>
3435<dt>category</dt><dd>Informatique</dd>
3436</dl>
3285</details> 3437</details>
3286</details> 3438</details>
3287<details> 3439<details>
3288<summary>[ Oatmeal] </summary> 3440<summary>[ Oatmeal] : <time class="time">2022-07-10</time></summary>
3289<div class="links"> 3441<div class="links">
3290<a href="https://eli.li/2022/07/10/%F0%9F%91%8B-oh-hai">read original</a> 3442<a href="https://eli.li/2022/07/10/%F0%9F%91%8B-oh-hai">read original</a>
3291</div> 3443</div>
@@ -3293,35 +3445,39 @@ category: Informatique
3293<p><span class="small-caps">&#x1F44B;</span> Oh hai!</p> 3445<p><span class="small-caps">&#x1F44B;</span> Oh hai!</p>
3294<p>I was interviewed on a podcast!</p></div> 3446<p>I was interviewed on a podcast!</p></div>
3295<details class="info"><summary>item information</summary> 3447<details class="info"><summary>item information</summary>
3296timestamp: 1657482512 3448<dl>
3297title: [ Oatmeal] 3449<dt>timestamp</dt><dd>1657482512</dd>
3298link: https://eli.li/2022/07/10/%F0%9F%91%8B-oh-hai 3450<dt>title</dt><dd>[ Oatmeal] </dd>
3299content_type: html 3451<dt>link</dt><dd>https://eli.li/2022/07/10/%F0%9F%91%8B-oh-hai</dd>
3300id: https://eli.li/2022/07/10/%F0%9F%91%8B-oh-hai 3452<dt>content_type</dt><dd>html</dd>
3301author: 3453<dt>id</dt><dd>https://eli.li/2022/07/10/%F0%9F%91%8B-oh-hai</dd>
3302enclosure: 3454<dt>author</dt><dd></dd>
3303category: 3455<dt>enclosure</dt><dd></dd>
3456<dt>category</dt><dd></dd>
3457</dl>
3304</details> 3458</details>
3305</details> 3459</details>
3306<details> 3460<details>
3307<summary>[ Oatmeal] </summary> 3461<summary>[ Oatmeal] : <time class="time">2022-07-09</time></summary>
3308<div class="links"> 3462<div class="links">
3309<a href="https://eli.li/2022/07/9/2022-07-09-11-48-32">read original</a> 3463<a href="https://eli.li/2022/07/9/2022-07-09-11-48-32">read original</a>
3310</div> 3464</div>
3311<div class="content"><p><img src="https://eli.li/_assets/_images/ios/F8755BC7-6B7E-4774-870E-A4FF74EB4F2F.png" class="u-photo" alt="Toddler holding a stuffy wanders by a community garden nestled into the edge of some woods."></p></div> 3465<div class="content"><p><img src="https://eli.li/_assets/_images/ios/F8755BC7-6B7E-4774-870E-A4FF74EB4F2F.png" class="u-photo" alt="Toddler holding a stuffy wanders by a community garden nestled into the edge of some woods."></p></div>
3312<details class="info"><summary>item information</summary> 3466<details class="info"><summary>item information</summary>
3313timestamp: 1657381712 3467<dl>
3314title: [ Oatmeal] 3468<dt>timestamp</dt><dd>1657381712</dd>
3315link: https://eli.li/2022/07/9/2022-07-09-11-48-32 3469<dt>title</dt><dd>[ Oatmeal] </dd>
3316content_type: html 3470<dt>link</dt><dd>https://eli.li/2022/07/9/2022-07-09-11-48-32</dd>
3317id: https://eli.li/2022/07/9/2022-07-09-11-48-32 3471<dt>content_type</dt><dd>html</dd>
3318author: 3472<dt>id</dt><dd>https://eli.li/2022/07/9/2022-07-09-11-48-32</dd>
3319enclosure: 3473<dt>author</dt><dd></dd>
3320category: 3474<dt>enclosure</dt><dd></dd>
3475<dt>category</dt><dd></dd>
3476</dl>
3321</details> 3477</details>
3322</details> 3478</details>
3323<details> 3479<details>
3324<summary>[ Oatmeal] </summary> 3480<summary>[ Oatmeal] : <time class="time">2022-07-09</time></summary>
3325<div class="links"> 3481<div class="links">
3326<a href="https://eli.li/2022/07/9/this-is-also-something-people-keep-getting-wrong-about-markdown-as-originally-presented">read original</a> 3482<a href="https://eli.li/2022/07/9/this-is-also-something-people-keep-getting-wrong-about-markdown-as-originally-presented">read original</a>
3327</div> 3483</div>
@@ -3332,267 +3488,287 @@ category:
3332<p>Yes yes yes yes yes yes!</p> 3488<p>Yes yes yes yes yes yes!</p>
3333<p>Markdown isn&#x2019;t supposed to be a markup language unto itself. It is an intermediary format that usually targets <span class="small-caps">HTML</span> as it&#x2019;s final form.</p></div> 3489<p>Markdown isn&#x2019;t supposed to be a markup language unto itself. It is an intermediary format that usually targets <span class="small-caps">HTML</span> as it&#x2019;s final form.</p></div>
3334<details class="info"><summary>item information</summary> 3490<details class="info"><summary>item information</summary>
3335timestamp: 1657370538 3491<dl>
3336title: [ Oatmeal] 3492<dt>timestamp</dt><dd>1657370538</dd>
3337link: https://eli.li/2022/07/9/this-is-also-something-people-keep-getting-wrong-about-markdown-as-originally-presented 3493<dt>title</dt><dd>[ Oatmeal] </dd>
3338content_type: html 3494<dt>link</dt><dd>https://eli.li/2022/07/9/this-is-also-something-people-keep-getting-wrong-about-markdown-as-originally-presented</dd>
3339id: https://eli.li/2022/07/9/this-is-also-something-people-keep-getting-wrong-about-markdown-as-originally-presented 3495<dt>content_type</dt><dd>html</dd>
3340author: 3496<dt>id</dt><dd>https://eli.li/2022/07/9/this-is-also-something-people-keep-getting-wrong-about-markdown-as-originally-presented</dd>
3341enclosure: 3497<dt>author</dt><dd></dd>
3342category: 3498<dt>enclosure</dt><dd></dd>
3499<dt>category</dt><dd></dd>
3500</dl>
3343</details> 3501</details>
3344</details> 3502</details>
3345<details> 3503<details>
3346<summary>[linkbudz rss feed] Barrett's Privateers</summary> 3504<summary>[linkbudz rss feed] Barrett's Privateers : <time class="time">2022-07-08</time></summary>
3347<div class="links"> 3505<div class="links">
3348<a href="https://www.youtube.com/watch?v=ZIwzRkjn86w">read original</a>
3349</div> 3506</div>
3350<div class="content"><p><a href="https://www.youtube.com/watch?v=ZIwzRkjn86w">Barrett's Privateers</a></p> 3507<div class="content"><p><a href="https://www.youtube.com/watch?v=ZIwzRkjn86w">Barrett's Privateers</a></p>
3351 <p>[https] posted by acdw on July 08, 2022</p></div> 3508 <p>[https] posted by acdw on July 08, 2022</p></div>
3352<details class="info"><summary>item information</summary> 3509<details class="info"><summary>item information</summary>
3353timestamp: 1657313546 3510<dl>
3354title: [linkbudz rss feed] Barrett's Privateers 3511<dt>timestamp</dt><dd>1657313546</dd>
3355link: https://www.youtube.com/watch?v=ZIwzRkjn86w 3512<dt>title</dt><dd>[linkbudz rss feed] Barrett's Privateers</dd>
3356content_type: html 3513<dt>link</dt><dd>https://www.youtube.com/watch?v=ZIwzRkjn86w</dd>
3357id: acdw20220708205226 3514<dt>content_type</dt><dd>html</dd>
3358author: 3515<dt>id</dt><dd>acdw20220708205226</dd>
3359enclosure: 3516<dt>author</dt><dd></dd>
3360category: https 3517<dt>enclosure</dt><dd></dd>
3518<dt>category</dt><dd>https</dd>
3519</dl>
3361</details> 3520</details>
3362</details> 3521</details>
3363<details> 3522<details>
3364<summary>[#fridaypostcard] "GAME" designed by Leo Kupper</summary> 3523<summary>[#fridaypostcard] "GAME" designed by Leo Kupper : <time class="time">2022-07-08</time></summary>
3365<div class="links"> 3524<div class="links">
3366<a href="http://ttm.sh/w8c.jpg">read original</a>
3367<a href="http://ttm.sh/w8c.jpg">enclosure</a> 3525<a href="http://ttm.sh/w8c.jpg">enclosure</a>
3368</div> 3526</div>
3369<div class="content">"GAME" designed by Leo Kupper<br />~flowercorpse</div> 3527<div class="content">"GAME" designed by Leo Kupper<br />~flowercorpse</div>
3370<details class="info"><summary>item information</summary> 3528<details class="info"><summary>item information</summary>
3371timestamp: 1657311695 3529<dl>
3372title: [#fridaypostcard] "GAME" designed by Leo Kupper 3530<dt>timestamp</dt><dd>1657311695</dd>
3373link: http://ttm.sh/w8c.jpg 3531<dt>title</dt><dd>[#fridaypostcard] "GAME" designed by Leo Kupper</dd>
3374content_type: html 3532<dt>link</dt><dd>http://ttm.sh/w8c.jpg</dd>
3375id: http://ttm.sh/w8c.jpg 3533<dt>content_type</dt><dd>html</dd>
3376author: flowercorpse@tilde.town (flowercorpse) 3534<dt>id</dt><dd>http://ttm.sh/w8c.jpg</dd>
3377enclosure: http://ttm.sh/w8c.jpg 3535<dt>author</dt><dd>flowercorpse@tilde.town (flowercorpse)</dd>
3378category: 3536<dt>enclosure</dt><dd>http://ttm.sh/w8c.jpg</dd>
3537<dt>category</dt><dd></dd>
3538</dl>
3379</details> 3539</details>
3380</details> 3540</details>
3381<details> 3541<details>
3382<summary>[linkbudz rss feed] SEA SHANTY RADIOOOOOO</summary> 3542<summary>[linkbudz rss feed] SEA SHANTY RADIOOOOOO : <time class="time">2022-07-08</time></summary>
3383<div class="links"> 3543<div class="links">
3384<a href="https://www.smshantyradio.com/">read original</a>
3385</div> 3544</div>
3386<div class="content"><p><a href="https://www.smshantyradio.com/">SEA SHANTY RADIOOOOOO</a></p> 3545<div class="content"><p><a href="https://www.smshantyradio.com/">SEA SHANTY RADIOOOOOO</a></p>
3387 <p>[https] posted by acdw on July 08, 2022</p></div> 3546 <p>[https] posted by acdw on July 08, 2022</p></div>
3388<details class="info"><summary>item information</summary> 3547<details class="info"><summary>item information</summary>
3389timestamp: 1657308844 3548<dl>
3390title: [linkbudz rss feed] SEA SHANTY RADIOOOOOO 3549<dt>timestamp</dt><dd>1657308844</dd>
3391link: https://www.smshantyradio.com/ 3550<dt>title</dt><dd>[linkbudz rss feed] SEA SHANTY RADIOOOOOO</dd>
3392content_type: html 3551<dt>link</dt><dd>https://www.smshantyradio.com/</dd>
3393id: acdw20220708193404 3552<dt>content_type</dt><dd>html</dd>
3394author: 3553<dt>id</dt><dd>acdw20220708193404</dd>
3395enclosure: 3554<dt>author</dt><dd></dd>
3396category: https 3555<dt>enclosure</dt><dd></dd>
3556<dt>category</dt><dd>https</dd>
3557</dl>
3397</details> 3558</details>
3398</details> 3559</details>
3399<details> 3560<details>
3400<summary>[linkbudz rss feed] How to build a web app with Clack/Lack (Common Lisp)</summary> 3561<summary>[linkbudz rss feed] How to build a web app with Clack/Lack (Common Lisp) : <time class="time">2022-07-08</time></summary>
3401<div class="links"> 3562<div class="links">
3402<a href="https://fukamachi.hashnode.dev/how-to-build-a-web-app-with-clack-and-lack-1">read original</a>
3403</div> 3563</div>
3404<div class="content"><p><a href="https://fukamachi.hashnode.dev/how-to-build-a-web-app-with-clack-and-lack-1">How to build a web app with Clack/Lack (Common Lisp)</a></p> 3564<div class="content"><p><a href="https://fukamachi.hashnode.dev/how-to-build-a-web-app-with-clack-and-lack-1">How to build a web app with Clack/Lack (Common Lisp)</a></p>
3405 <p>[https] posted by elioat on July 08, 2022</p></div> 3565 <p>[https] posted by elioat on July 08, 2022</p></div>
3406<details class="info"><summary>item information</summary> 3566<details class="info"><summary>item information</summary>
3407timestamp: 1657287327 3567<dl>
3408title: [linkbudz rss feed] How to build a web app with Clack/Lack (Common Lisp) 3568<dt>timestamp</dt><dd>1657287327</dd>
3409link: https://fukamachi.hashnode.dev/how-to-build-a-web-app-with-clack-and-lack-1 3569<dt>title</dt><dd>[linkbudz rss feed] How to build a web app with Clack/Lack (Common Lisp)</dd>
3410content_type: html 3570<dt>link</dt><dd>https://fukamachi.hashnode.dev/how-to-build-a-web-app-with-clack-and-lack-1</dd>
3411id: elioat20220708133527 3571<dt>content_type</dt><dd>html</dd>
3412author: 3572<dt>id</dt><dd>elioat20220708133527</dd>
3413enclosure: 3573<dt>author</dt><dd></dd>
3414category: https 3574<dt>enclosure</dt><dd></dd>
3575<dt>category</dt><dd>https</dd>
3576</dl>
3415</details> 3577</details>
3416</details> 3578</details>
3417<details> 3579<details>
3418<summary>[linkbudz rss feed] Apparently, a new search engine disgned with devs in mind.</summary> 3580<summary>[linkbudz rss feed] Apparently, a new search engine disgned with devs in mind. : <time class="time">2022-07-07</time></summary>
3419<div class="links"> 3581<div class="links">
3420<a href="https://beta.sayhello.so/">read original</a>
3421</div> 3582</div>
3422<div class="content"><p><a href="https://beta.sayhello.so/">Apparently, a new search engine disgned with devs in mind.</a></p> 3583<div class="content"><p><a href="https://beta.sayhello.so/">Apparently, a new search engine disgned with devs in mind.</a></p>
3423 <p>[https] posted by marcus on July 07, 2022</p></div> 3584 <p>[https] posted by marcus on July 07, 2022</p></div>
3424<details class="info"><summary>item information</summary> 3585<details class="info"><summary>item information</summary>
3425timestamp: 1657219689 3586<dl>
3426title: [linkbudz rss feed] Apparently, a new search engine disgned with devs in mind. 3587<dt>timestamp</dt><dd>1657219689</dd>
3427link: https://beta.sayhello.so/ 3588<dt>title</dt><dd>[linkbudz rss feed] Apparently, a new search engine disgned with devs in mind.</dd>
3428content_type: html 3589<dt>link</dt><dd>https://beta.sayhello.so/</dd>
3429id: marcus20220707184809 3590<dt>content_type</dt><dd>html</dd>
3430author: 3591<dt>id</dt><dd>marcus20220707184809</dd>
3431enclosure: 3592<dt>author</dt><dd></dd>
3432category: https 3593<dt>enclosure</dt><dd></dd>
3594<dt>category</dt><dd>https</dd>
3595</dl>
3433</details> 3596</details>
3434</details> 3597</details>
3435<details> 3598<details>
3436<summary>[linkbudz rss feed] a blog platform for hackers</summary> 3599<summary>[linkbudz rss feed] a blog platform for hackers : <time class="time">2022-07-07</time></summary>
3437<div class="links"> 3600<div class="links">
3438<a href="https://prose.sh/">read original</a>
3439</div> 3601</div>
3440<div class="content"><p><a href="https://prose.sh/">a blog platform for hackers</a></p> 3602<div class="content"><p><a href="https://prose.sh/">a blog platform for hackers</a></p>
3441 <p>[https] posted by acdw on July 07, 2022</p></div> 3603 <p>[https] posted by acdw on July 07, 2022</p></div>
3442<details class="info"><summary>item information</summary> 3604<details class="info"><summary>item information</summary>
3443timestamp: 1657217758 3605<dl>
3444title: [linkbudz rss feed] a blog platform for hackers 3606<dt>timestamp</dt><dd>1657217758</dd>
3445link: https://prose.sh/ 3607<dt>title</dt><dd>[linkbudz rss feed] a blog platform for hackers</dd>
3446content_type: html 3608<dt>link</dt><dd>https://prose.sh/</dd>
3447id: acdw20220707181558 3609<dt>content_type</dt><dd>html</dd>
3448author: 3610<dt>id</dt><dd>acdw20220707181558</dd>
3449enclosure: 3611<dt>author</dt><dd></dd>
3450category: https 3612<dt>enclosure</dt><dd></dd>
3613<dt>category</dt><dd>https</dd>
3614</dl>
3451</details> 3615</details>
3452</details> 3616</details>
3453<details> 3617<details>
3454<summary>[linkbudz rss feed] a scheme primer</summary> 3618<summary>[linkbudz rss feed] a scheme primer : <time class="time">2022-07-07</time></summary>
3455<div class="links"> 3619<div class="links">
3456<a href="https://spritely.institute/static/papers/scheme-primer.html">read original</a>
3457</div> 3620</div>
3458<div class="content"><p><a href="https://spritely.institute/static/papers/scheme-primer.html">a scheme primer</a></p> 3621<div class="content"><p><a href="https://spritely.institute/static/papers/scheme-primer.html">a scheme primer</a></p>
3459 <p>[https] posted by mio on July 07, 2022</p></div> 3622 <p>[https] posted by mio on July 07, 2022</p></div>
3460<details class="info"><summary>item information</summary> 3623<details class="info"><summary>item information</summary>
3461timestamp: 1657217609 3624<dl>
3462title: [linkbudz rss feed] a scheme primer 3625<dt>timestamp</dt><dd>1657217609</dd>
3463link: https://spritely.institute/static/papers/scheme-primer.html 3626<dt>title</dt><dd>[linkbudz rss feed] a scheme primer</dd>
3464content_type: html 3627<dt>link</dt><dd>https://spritely.institute/static/papers/scheme-primer.html</dd>
3465id: mio20220707181329 3628<dt>content_type</dt><dd>html</dd>
3466author: 3629<dt>id</dt><dd>mio20220707181329</dd>
3467enclosure: 3630<dt>author</dt><dd></dd>
3468category: https 3631<dt>enclosure</dt><dd></dd>
3632<dt>category</dt><dd>https</dd>
3633</dl>
3469</details> 3634</details>
3470</details> 3635</details>
3471<details> 3636<details>
3472<summary>[linkbudz rss feed] fraidycat: like RSS but more</summary> 3637<summary>[linkbudz rss feed] fraidycat: like RSS but more : <time class="time">2022-07-07</time></summary>
3473<div class="links"> 3638<div class="links">
3474<a href="https://github.com/kickscondor/fraidycat">read original</a>
3475</div> 3639</div>
3476<div class="content"><p><a href="https://github.com/kickscondor/fraidycat">fraidycat: like RSS but more</a></p> 3640<div class="content"><p><a href="https://github.com/kickscondor/fraidycat">fraidycat: like RSS but more</a></p>
3477 <p>[https] posted by dozens on July 07, 2022</p></div> 3641 <p>[https] posted by dozens on July 07, 2022</p></div>
3478<details class="info"><summary>item information</summary> 3642<details class="info"><summary>item information</summary>
3479timestamp: 1657203690 3643<dl>
3480title: [linkbudz rss feed] fraidycat: like RSS but more 3644<dt>timestamp</dt><dd>1657203690</dd>
3481link: https://github.com/kickscondor/fraidycat 3645<dt>title</dt><dd>[linkbudz rss feed] fraidycat: like RSS but more</dd>
3482content_type: html 3646<dt>link</dt><dd>https://github.com/kickscondor/fraidycat</dd>
3483id: dozens20220707142130 3647<dt>content_type</dt><dd>html</dd>
3484author: 3648<dt>id</dt><dd>dozens20220707142130</dd>
3485enclosure: 3649<dt>author</dt><dd></dd>
3486category: https 3650<dt>enclosure</dt><dd></dd>
3651<dt>category</dt><dd>https</dd>
3652</dl>
3487</details> 3653</details>
3488</details> 3654</details>
3489<details> 3655<details>
3490<summary>[Dozens and Dragons] magic words</summary> 3656<summary>[Dozens and Dragons] magic words : <time class="time">2022-07-06</time></summary>
3491<div class="links"> 3657<div class="links">
3492<a href="https://dozensanddragons.neocities.org/27.html">read original</a> 3658<a href="https://dozensanddragons.neocities.org/27.html">read original</a>
3493</div> 3659</div>
3494<div class="content">bibliomantic generation of spells and grimories</div> 3660<div class="content">bibliomantic generation of spells and grimories</div>
3495<details class="info"><summary>item information</summary> 3661<details class="info"><summary>item information</summary>
3496timestamp: 1657166400 3662<dl>
3497title: [Dozens and Dragons] magic words 3663<dt>timestamp</dt><dd>1657166400</dd>
3498link: https://dozensanddragons.neocities.org/27.html 3664<dt>title</dt><dd>[Dozens and Dragons] magic words</dd>
3499content_type: html 3665<dt>link</dt><dd>https://dozensanddragons.neocities.org/27.html</dd>
3500id: https://dozensanddragons.neocities.org/27.html 3666<dt>content_type</dt><dd>html</dd>
3501author: 3667<dt>id</dt><dd>https://dozensanddragons.neocities.org/27.html</dd>
3502enclosure: 3668<dt>author</dt><dd></dd>
3503category: 3669<dt>enclosure</dt><dd></dd>
3670<dt>category</dt><dd></dd>
3671</dl>
3504</details> 3672</details>
3505</details> 3673</details>
3506<details> 3674<details>
3507<summary>[lipu pi jan Niko] some writing thoughts, and probably leaving gemini</summary> 3675<summary>[lipu pi jan Niko] some writing thoughts, and probably leaving gemini : <time class="time">2022-07-06</time></summary>
3508<div class="links"> 3676<div class="links">
3509<a href="https://tilde.town/~nihilazo/log/onwriting.html">read original</a> 3677<a href="https://tilde.town/~nihilazo/log/onwriting.html">read original</a>
3510</div> 3678</div>
3511<div class="content">Starting a new post is hard. This seems to be a universally accepted fact among people who post stuff (except, maybe, the people who are actually good at it). When you have nothing but ideas and a blank page, and you want to somehow communicate those ideas, in a form that is readable and understandable. 3679<div class="content">Starting a new post is hard. This seems to be a universally accepted fact among people who post stuff (except, maybe, the people who are actually good at it). When you have nothing but ideas and a blank page, and you want to somehow communicate those ideas, in a form that is readable and understandable.
3512A lot of writers have special tricks for starting posts - starting with research notes or a system like zettelkasten can be a good start, but is difficult for posts that are based on personal thoughts (like most things I personally write).</div> 3680A lot of writers have special tricks for starting posts - starting with research notes or a system like zettelkasten can be a good start, but is difficult for posts that are based on personal thoughts (like most things I personally write).</div>
3513<details class="info"><summary>item information</summary> 3681<details class="info"><summary>item information</summary>
3514timestamp: 1657152000 3682<dl>
3515title: [lipu pi jan Niko] some writing thoughts, and probably leaving gemini 3683<dt>timestamp</dt><dd>1657152000</dd>
3516link: https://tilde.town/~nihilazo/log/onwriting.html 3684<dt>title</dt><dd>[lipu pi jan Niko] some writing thoughts, and probably leaving gemini</dd>
3517content_type: html 3685<dt>link</dt><dd>https://tilde.town/~nihilazo/log/onwriting.html</dd>
3518id: https://tilde.town/~nihilazo/log/onwriting.html 3686<dt>content_type</dt><dd>html</dd>
3519author: 3687<dt>id</dt><dd>https://tilde.town/~nihilazo/log/onwriting.html</dd>
3520enclosure: 3688<dt>author</dt><dd></dd>
3521category: 3689<dt>enclosure</dt><dd></dd>
3690<dt>category</dt><dd></dd>
3691</dl>
3522</details> 3692</details>
3523</details> 3693</details>
3524<details> 3694<details>
3525<summary>[Brainshit] Bada Bing</summary> 3695<summary>[Brainshit] Bada Bing : <time class="time">2022-07-06</time></summary>
3526<div class="links"> 3696<div class="links">
3527<a href="https://brainshit.fr/read/310">read original</a> 3697<a href="https://brainshit.fr/read/310">read original</a>
3528</div> 3698</div>
3529<div class="content">Un test de burger en pleine fête de la musique.</div> 3699<div class="content">Un test de burger en pleine fête de la musique.</div>
3530<details class="info"><summary>item information</summary> 3700<details class="info"><summary>item information</summary>
3531timestamp: 1657144800 3701<dl>
3532title: [Brainshit] Bada Bing 3702<dt>timestamp</dt><dd>1657144800</dd>
3533link: https://brainshit.fr/read/310 3703<dt>title</dt><dd>[Brainshit] Bada Bing</dd>
3534content_type: html 3704<dt>link</dt><dd>https://brainshit.fr/read/310</dd>
3535id: https://brainshit.fr/read/310 3705<dt>content_type</dt><dd>html</dd>
3536author: neuron@brainshit.fr (Lucidiot) 3706<dt>id</dt><dd>https://brainshit.fr/read/310</dd>
3537enclosure: 3707<dt>author</dt><dd>neuron@brainshit.fr (Lucidiot)</dd>
3538category: Gastronomie 3708<dt>enclosure</dt><dd></dd>
3709<dt>category</dt><dd>Gastronomie</dd>
3710</dl>
3539</details> 3711</details>
3540</details> 3712</details>
3541<details> 3713<details>
3542<summary>[bakersdozen gemlog] Thoughts On The Fourth Of July In The Year 2022</summary> 3714<summary>[bakersdozen gemlog] Thoughts On The Fourth Of July In The Year 2022 : <time class="time">2022-07-06</time></summary>
3543<div class="links"> 3715<div class="links">
3544<a href="gemini://breadpunk.club/~bakersdozen/gemlog/13.gmi">read original</a> 3716<a href="gemini://breadpunk.club/~bakersdozen/gemlog/13.gmi">read original</a>
3545</div> 3717</div>
3546<div class="content"></div> 3718<div class="content"></div>
3547<details class="info"><summary>item information</summary> 3719<details class="info"><summary>item information</summary>
3548timestamp: 1657129342 3720<dl>
3549title: [bakersdozen gemlog] Thoughts On The Fourth Of July In The Year 2022 3721<dt>timestamp</dt><dd>1657129342</dd>
3550link: gemini://breadpunk.club/~bakersdozen/gemlog/13.gmi 3722<dt>title</dt><dd>[bakersdozen gemlog] Thoughts On The Fourth Of July In The Year 2022</dd>
3551content_type: 3723<dt>link</dt><dd>gemini://breadpunk.club/~bakersdozen/gemlog/13.gmi</dd>
3552id: gemini://breadpunk.club/~bakersdozen/gemlog/13.gmi 3724<dt>content_type</dt><dd></dd>
3553author: 3725<dt>id</dt><dd>gemini://breadpunk.club/~bakersdozen/gemlog/13.gmi</dd>
3554enclosure: 3726<dt>author</dt><dd></dd>
3555category: 3727<dt>enclosure</dt><dd></dd>
3728<dt>category</dt><dd></dd>
3729</dl>
3556</details> 3730</details>
3557</details> 3731</details>
3558<details> 3732<details>
3559<summary>[linkbudz rss feed] has this been posted yet?</summary> 3733<summary>[linkbudz rss feed] has this been posted yet? : <time class="time">2022-07-06</time></summary>
3560<div class="links"> 3734<div class="links">
3561<a href="https://neal.fun/absurd-trolley-problems/">read original</a>
3562</div> 3735</div>
3563<div class="content"><p><a href="https://neal.fun/absurd-trolley-problems/">has this been posted yet?</a></p> 3736<div class="content"><p><a href="https://neal.fun/absurd-trolley-problems/">has this been posted yet?</a></p>
3564 <p>[https] posted by acdw on July 06, 2022</p></div> 3737 <p>[https] posted by acdw on July 06, 2022</p></div>
3565<details class="info"><summary>item information</summary> 3738<details class="info"><summary>item information</summary>
3566timestamp: 1657118195 3739<dl>
3567title: [linkbudz rss feed] has this been posted yet? 3740<dt>timestamp</dt><dd>1657118195</dd>
3568link: https://neal.fun/absurd-trolley-problems/ 3741<dt>title</dt><dd>[linkbudz rss feed] has this been posted yet?</dd>
3569content_type: html 3742<dt>link</dt><dd>https://neal.fun/absurd-trolley-problems/</dd>
3570id: acdw20220706143635 3743<dt>content_type</dt><dd>html</dd>
3571author: 3744<dt>id</dt><dd>acdw20220706143635</dd>
3572enclosure: 3745<dt>author</dt><dd></dd>
3573category: https 3746<dt>enclosure</dt><dd></dd>
3747<dt>category</dt><dd>https</dd>
3748</dl>
3574</details> 3749</details>
3575</details> 3750</details>
3576<details> 3751<details>
3577<summary>[linkbudz rss feed] learn a language with forth!</summary> 3752<summary>[linkbudz rss feed] learn a language with forth! : <time class="time">2022-07-06</time></summary>
3578<div class="links"> 3753<div class="links">
3579<a href="https://zserge.com/posts/too-many-forths/">read original</a>
3580</div> 3754</div>
3581<div class="content"><p><a href="https://zserge.com/posts/too-many-forths/">learn a language with forth!</a></p> 3755<div class="content"><p><a href="https://zserge.com/posts/too-many-forths/">learn a language with forth!</a></p>
3582 <p>[https] posted by acdw on July 06, 2022</p></div> 3756 <p>[https] posted by acdw on July 06, 2022</p></div>
3583<details class="info"><summary>item information</summary> 3757<details class="info"><summary>item information</summary>
3584timestamp: 1657117491 3758<dl>
3585title: [linkbudz rss feed] learn a language with forth! 3759<dt>timestamp</dt><dd>1657117491</dd>
3586link: https://zserge.com/posts/too-many-forths/ 3760<dt>title</dt><dd>[linkbudz rss feed] learn a language with forth!</dd>
3587content_type: html 3761<dt>link</dt><dd>https://zserge.com/posts/too-many-forths/</dd>
3588id: acdw20220706142451 3762<dt>content_type</dt><dd>html</dd>
3589author: 3763<dt>id</dt><dd>acdw20220706142451</dd>
3590enclosure: 3764<dt>author</dt><dd></dd>
3591category: https 3765<dt>enclosure</dt><dd></dd>
3766<dt>category</dt><dd>https</dd>
3767</dl>
3592</details> 3768</details>
3593</details> 3769</details>
3594<details> 3770<details>
3595<summary>[ Oatmeal] Lamination for a lost explorer</summary> 3771<summary>[ Oatmeal] Lamination for a lost explorer : <time class="time">2022-07-06</time></summary>
3596<div class="links"> 3772<div class="links">
3597<a href="https://eli.li/2022/07/6/lamination-for-a-lost-explorer">read original</a> 3773<a href="https://eli.li/2022/07/6/lamination-for-a-lost-explorer">read original</a>
3598</div> 3774</div>
@@ -3601,18 +3777,20 @@ category: https
3601<p>There are folks doing similar web archeology&#x2026;<a href="https://eli.li/tagged/link-log">I do some of it myself</a>&#x2026;but no one does it like Kicks was doing it; there was often a feeling of unknown, but ulterior motive behind the curation&#x2009;&#x2014;&#x2009;bits building towards a cohesive something.</p> 3777<p>There are folks doing similar web archeology&#x2026;<a href="https://eli.li/tagged/link-log">I do some of it myself</a>&#x2026;but no one does it like Kicks was doing it; there was often a feeling of unknown, but ulterior motive behind the curation&#x2009;&#x2014;&#x2009;bits building towards a cohesive something.</p>
3602<p>Perhaps Kicks got lost in the web&#x2009;&#x2014;&#x2009;out there still?</p></div> 3778<p>Perhaps Kicks got lost in the web&#x2009;&#x2014;&#x2009;out there still?</p></div>
3603<details class="info"><summary>item information</summary> 3779<details class="info"><summary>item information</summary>
3604timestamp: 1657116113 3780<dl>
3605title: [ Oatmeal] Lamination for a lost explorer 3781<dt>timestamp</dt><dd>1657116113</dd>
3606link: https://eli.li/2022/07/6/lamination-for-a-lost-explorer 3782<dt>title</dt><dd>[ Oatmeal] Lamination for a lost explorer</dd>
3607content_type: html 3783<dt>link</dt><dd>https://eli.li/2022/07/6/lamination-for-a-lost-explorer</dd>
3608id: https://eli.li/2022/07/6/lamination-for-a-lost-explorer 3784<dt>content_type</dt><dd>html</dd>
3609author: 3785<dt>id</dt><dd>https://eli.li/2022/07/6/lamination-for-a-lost-explorer</dd>
3610enclosure: 3786<dt>author</dt><dd></dd>
3611category: 3787<dt>enclosure</dt><dd></dd>
3788<dt>category</dt><dd></dd>
3789</dl>
3612</details> 3790</details>
3613</details> 3791</details>
3614<details> 3792<details>
3615<summary>[blog __ ~ben] sqlite3 for wordpress</summary> 3793<summary>[blog __ ~ben] sqlite3 for wordpress : <time class="time">2022-07-06</time></summary>
3616<div class="links"> 3794<div class="links">
3617<a href="https://tilde.team/~ben/blog/sqlite3-for-wordpress.html">read original</a> 3795<a href="https://tilde.team/~ben/blog/sqlite3-for-wordpress.html">read original</a>
3618</div> 3796</div>
@@ -3687,72 +3865,77 @@ server {
3687} 3865}
3688</code></pre></div> 3866</code></pre></div>
3689<details class="info"><summary>item information</summary> 3867<details class="info"><summary>item information</summary>
3690timestamp: 1657115580 3868<dl>
3691title: [blog __ ~ben] sqlite3 for wordpress 3869<dt>timestamp</dt><dd>1657115580</dd>
3692link: https://tilde.team/~ben/blog/sqlite3-for-wordpress.html 3870<dt>title</dt><dd>[blog __ ~ben] sqlite3 for wordpress</dd>
3693content_type: html 3871<dt>link</dt><dd>https://tilde.team/~ben/blog/sqlite3-for-wordpress.html</dd>
3694id: https://tilde.team/~ben/blog/sqlite3-for-wordpress.html 3872<dt>content_type</dt><dd>html</dd>
3695author: 3873<dt>id</dt><dd>https://tilde.team/~ben/blog/sqlite3-for-wordpress.html</dd>
3696enclosure: 3874<dt>author</dt><dd></dd>
3697category: 3875<dt>enclosure</dt><dd></dd>
3876<dt>category</dt><dd></dd>
3877</dl>
3698</details> 3878</details>
3699</details> 3879</details>
3700<details> 3880<details>
3701<summary>[linkbudz rss feed] grug brain developer</summary> 3881<summary>[linkbudz rss feed] grug brain developer : <time class="time">2022-07-06</time></summary>
3702<div class="links"> 3882<div class="links">
3703<a href="https://grugbrain.dev">read original</a>
3704</div> 3883</div>
3705<div class="content"><p><a href="https://grugbrain.dev">grug brain developer</a></p> 3884<div class="content"><p><a href="https://grugbrain.dev">grug brain developer</a></p>
3706 <p>[https] posted by elioat on July 06, 2022</p></div> 3885 <p>[https] posted by elioat on July 06, 2022</p></div>
3707<details class="info"><summary>item information</summary> 3886<details class="info"><summary>item information</summary>
3708timestamp: 1657114822 3887<dl>
3709title: [linkbudz rss feed] grug brain developer 3888<dt>timestamp</dt><dd>1657114822</dd>
3710link: https://grugbrain.dev 3889<dt>title</dt><dd>[linkbudz rss feed] grug brain developer</dd>
3711content_type: html 3890<dt>link</dt><dd>https://grugbrain.dev</dd>
3712id: elioat20220706134022 3891<dt>content_type</dt><dd>html</dd>
3713author: 3892<dt>id</dt><dd>elioat20220706134022</dd>
3714enclosure: 3893<dt>author</dt><dd></dd>
3715category: https 3894<dt>enclosure</dt><dd></dd>
3895<dt>category</dt><dd>https</dd>
3896</dl>
3716</details> 3897</details>
3717</details> 3898</details>
3718<details> 3899<details>
3719<summary>[linkbudz rss feed] html journal format</summary> 3900<summary>[linkbudz rss feed] html journal format : <time class="time">2022-07-05</time></summary>
3720<div class="links"> 3901<div class="links">
3721<a href="https://journal.miso.town/">read original</a>
3722</div> 3902</div>
3723<div class="content"><p><a href="https://journal.miso.town/">html journal format</a></p> 3903<div class="content"><p><a href="https://journal.miso.town/">html journal format</a></p>
3724 <p>[https] posted by dozens on July 05, 2022</p></div> 3904 <p>[https] posted by dozens on July 05, 2022</p></div>
3725<details class="info"><summary>item information</summary> 3905<details class="info"><summary>item information</summary>
3726timestamp: 1657040286 3906<dl>
3727title: [linkbudz rss feed] html journal format 3907<dt>timestamp</dt><dd>1657040286</dd>
3728link: https://journal.miso.town/ 3908<dt>title</dt><dd>[linkbudz rss feed] html journal format</dd>
3729content_type: html 3909<dt>link</dt><dd>https://journal.miso.town/</dd>
3730id: dozens20220705165806 3910<dt>content_type</dt><dd>html</dd>
3731author: 3911<dt>id</dt><dd>dozens20220705165806</dd>
3732enclosure: 3912<dt>author</dt><dd></dd>
3733category: https 3913<dt>enclosure</dt><dd></dd>
3914<dt>category</dt><dd>https</dd>
3915</dl>
3734</details> 3916</details>
3735</details> 3917</details>
3736<details> 3918<details>
3737<summary>[linkbudz rss feed] Genealogy of ELIZA programs</summary> 3919<summary>[linkbudz rss feed] Genealogy of ELIZA programs : <time class="time">2022-07-05</time></summary>
3738<div class="links"> 3920<div class="links">
3739<a href="https://sites.google.com/view/elizagen-org/the-original-eliza">read original</a>
3740</div> 3921</div>
3741<div class="content"><p><a href="https://sites.google.com/view/elizagen-org/the-original-eliza">Genealogy of ELIZA programs</a></p> 3922<div class="content"><p><a href="https://sites.google.com/view/elizagen-org/the-original-eliza">Genealogy of ELIZA programs</a></p>
3742 <p>[https] posted by elioat on July 05, 2022</p></div> 3923 <p>[https] posted by elioat on July 05, 2022</p></div>
3743<details class="info"><summary>item information</summary> 3924<details class="info"><summary>item information</summary>
3744timestamp: 1657027698 3925<dl>
3745title: [linkbudz rss feed] Genealogy of ELIZA programs 3926<dt>timestamp</dt><dd>1657027698</dd>
3746link: https://sites.google.com/view/elizagen-org/the-original-eliza 3927<dt>title</dt><dd>[linkbudz rss feed] Genealogy of ELIZA programs</dd>
3747content_type: html 3928<dt>link</dt><dd>https://sites.google.com/view/elizagen-org/the-original-eliza</dd>
3748id: elioat20220705132818 3929<dt>content_type</dt><dd>html</dd>
3749author: 3930<dt>id</dt><dd>elioat20220705132818</dd>
3750enclosure: 3931<dt>author</dt><dd></dd>
3751category: https 3932<dt>enclosure</dt><dd></dd>
3933<dt>category</dt><dd>https</dd>
3934</dl>
3752</details> 3935</details>
3753</details> 3936</details>
3754<details> 3937<details>
3755<summary>[(lambda (x) (create x))] Truly using Lapis</summary> 3938<summary>[(lambda (x) (create x))] Truly using Lapis : <time class="time">2022-07-05</time></summary>
3756<div class="links"> 3939<div class="links">
3757<a href="https://lambdacreate.com/posts/35">read original</a> 3940<a href="https://lambdacreate.com/posts/35">read original</a>
3758</div> 3941</div>
@@ -3987,196 +4170,211 @@ app:match("paste", "/paste(/:file)", respond_to({
3987 4170
3988<p>If you're curious about Lapis and want to try it out, Leafo has some pretty amazing documentation <a href="https://leafo.net/lapis">here</a>, and I encourage you to take a look at <a href="https://github.com/karai17/lapis-chan">Karai17's Lapischan</a>, both of these are excellent resources for learning what Lapis can really do.</p></div> 4171<p>If you're curious about Lapis and want to try it out, Leafo has some pretty amazing documentation <a href="https://leafo.net/lapis">here</a>, and I encourage you to take a look at <a href="https://github.com/karai17/lapis-chan">Karai17's Lapischan</a>, both of these are excellent resources for learning what Lapis can really do.</p></div>
3989<details class="info"><summary>item information</summary> 4172<details class="info"><summary>item information</summary>
3990timestamp: 1657022400 4173<dl>
3991title: [(lambda (x) (create x))] Truly using Lapis 4174<dt>timestamp</dt><dd>1657022400</dd>
3992link: https://lambdacreate.com/posts/35 4175<dt>title</dt><dd>[(lambda (x) (create x))] Truly using Lapis</dd>
3993content_type: html 4176<dt>link</dt><dd>https://lambdacreate.com/posts/35</dd>
3994id: https://lambdacreate.com/posts/35 4177<dt>content_type</dt><dd>html</dd>
3995author: 4178<dt>id</dt><dd>https://lambdacreate.com/posts/35</dd>
3996enclosure: 4179<dt>author</dt><dd></dd>
3997category: 4180<dt>enclosure</dt><dd></dd>
4181<dt>category</dt><dd></dd>
4182</dl>
3998</details> 4183</details>
3999</details> 4184</details>
4000<details> 4185<details>
4001<summary>[linkbudz rss feed] a Perl/CGI program that lets you access IRC from a web browser</summary> 4186<summary>[linkbudz rss feed] a Perl/CGI program that lets you access IRC from a web browser : <time class="time">2022-07-04</time></summary>
4002<div class="links"> 4187<div class="links">
4003<a href="http://cgiirc.org/">read original</a>
4004</div> 4188</div>
4005<div class="content"><p><a href="http://cgiirc.org/">a Perl/CGI program that lets you access IRC from a web browser</a></p> 4189<div class="content"><p><a href="http://cgiirc.org/">a Perl/CGI program that lets you access IRC from a web browser</a></p>
4006 <p>[http] posted by m455 on July 05, 2022</p></div> 4190 <p>[http] posted by m455 on July 05, 2022</p></div>
4007<details class="info"><summary>item information</summary> 4191<details class="info"><summary>item information</summary>
4008timestamp: 1656986746 4192<dl>
4009title: [linkbudz rss feed] a Perl/CGI program that lets you access IRC from a web browser 4193<dt>timestamp</dt><dd>1656986746</dd>
4010link: http://cgiirc.org/ 4194<dt>title</dt><dd>[linkbudz rss feed] a Perl/CGI program that lets you access IRC from a web browser</dd>
4011content_type: html 4195<dt>link</dt><dd>http://cgiirc.org/</dd>
4012id: m45520220705020546 4196<dt>content_type</dt><dd>html</dd>
4013author: 4197<dt>id</dt><dd>m45520220705020546</dd>
4014enclosure: 4198<dt>author</dt><dd></dd>
4015category: http 4199<dt>enclosure</dt><dd></dd>
4200<dt>category</dt><dd>http</dd>
4201</dl>
4016</details> 4202</details>
4017</details> 4203</details>
4018<details> 4204<details>
4019<summary>[linkbudz rss feed] reference for escaping characters in xml documents</summary> 4205<summary>[linkbudz rss feed] reference for escaping characters in xml documents : <time class="time">2022-07-04</time></summary>
4020<div class="links"> 4206<div class="links">
4021<a href="https://stackoverflow.com/questions/1091945/what-characters-do-i-need-to-escape-in-xml-documents">read original</a>
4022</div> 4207</div>
4023<div class="content"><p><a href="https://stackoverflow.com/questions/1091945/what-characters-do-i-need-to-escape-in-xml-documents">reference for escaping characters in xml documents</a></p> 4208<div class="content"><p><a href="https://stackoverflow.com/questions/1091945/what-characters-do-i-need-to-escape-in-xml-documents">reference for escaping characters in xml documents</a></p>
4024 <p>[https] posted by m455 on July 05, 2022</p></div> 4209 <p>[https] posted by m455 on July 05, 2022</p></div>
4025<details class="info"><summary>item information</summary> 4210<details class="info"><summary>item information</summary>
4026timestamp: 1656979687 4211<dl>
4027title: [linkbudz rss feed] reference for escaping characters in xml documents 4212<dt>timestamp</dt><dd>1656979687</dd>
4028link: https://stackoverflow.com/questions/1091945/what-characters-do-i-need-to-escape-in-xml-documents 4213<dt>title</dt><dd>[linkbudz rss feed] reference for escaping characters in xml documents</dd>
4029content_type: html 4214<dt>link</dt><dd>https://stackoverflow.com/questions/1091945/what-characters-do-i-need-to-escape-in-xml-documents</dd>
4030id: m45520220705000807 4215<dt>content_type</dt><dd>html</dd>
4031author: 4216<dt>id</dt><dd>m45520220705000807</dd>
4032enclosure: 4217<dt>author</dt><dd></dd>
4033category: https 4218<dt>enclosure</dt><dd></dd>
4219<dt>category</dt><dd>https</dd>
4220</dl>
4034</details> 4221</details>
4035</details> 4222</details>
4036<details> 4223<details>
4037<summary>[Brainshit] Extended Well-Known Text</summary> 4224<summary>[Brainshit] Extended Well-Known Text : <time class="time">2022-07-04</time></summary>
4038<div class="links"> 4225<div class="links">
4039<a href="https://brainshit.fr/read/302">read original</a> 4226<a href="https://brainshit.fr/read/302">read original</a>
4040</div> 4227</div>
4041<div class="content">Je croyais en avoir fini avec mes expressions régulières, mais ce serait trop facile.</div> 4228<div class="content">Je croyais en avoir fini avec mes expressions régulières, mais ce serait trop facile.</div>
4042<details class="info"><summary>item information</summary> 4229<details class="info"><summary>item information</summary>
4043timestamp: 1656972000 4230<dl>
4044title: [Brainshit] Extended Well-Known Text 4231<dt>timestamp</dt><dd>1656972000</dd>
4045link: https://brainshit.fr/read/302 4232<dt>title</dt><dd>[Brainshit] Extended Well-Known Text</dd>
4046content_type: html 4233<dt>link</dt><dd>https://brainshit.fr/read/302</dd>
4047id: https://brainshit.fr/read/302 4234<dt>content_type</dt><dd>html</dd>
4048author: neuron@brainshit.fr (Lucidiot) 4235<dt>id</dt><dd>https://brainshit.fr/read/302</dd>
4049enclosure: 4236<dt>author</dt><dd>neuron@brainshit.fr (Lucidiot)</dd>
4050category: Informatique 4237<dt>enclosure</dt><dd></dd>
4238<dt>category</dt><dd>Informatique</dd>
4239</dl>
4051</details> 4240</details>
4052</details> 4241</details>
4053<details> 4242<details>
4054<summary>[linkbudz rss feed] Harder Drives (includes how to use ping has a block storage device)</summary> 4243<summary>[linkbudz rss feed] Harder Drives (includes how to use ping has a block storage device) : <time class="time">2022-07-03</time></summary>
4055<div class="links"> 4244<div class="links">
4056<a href="https://www.youtube.com/watch?v=JcJSW7Rprio">read original</a>
4057</div> 4245</div>
4058<div class="content"><p><a href="https://www.youtube.com/watch?v=JcJSW7Rprio">Harder Drives (includes how to use ping has a block storage device)</a></p> 4246<div class="content"><p><a href="https://www.youtube.com/watch?v=JcJSW7Rprio">Harder Drives (includes how to use ping has a block storage device)</a></p>
4059 <p>[https] posted by kindrobot on July 03, 2022</p></div> 4247 <p>[https] posted by kindrobot on July 03, 2022</p></div>
4060<details class="info"><summary>item information</summary> 4248<details class="info"><summary>item information</summary>
4061timestamp: 1656868499 4249<dl>
4062title: [linkbudz rss feed] Harder Drives (includes how to use ping has a block storage device) 4250<dt>timestamp</dt><dd>1656868499</dd>
4063link: https://www.youtube.com/watch?v=JcJSW7Rprio 4251<dt>title</dt><dd>[linkbudz rss feed] Harder Drives (includes how to use ping has a block storage device)</dd>
4064content_type: html 4252<dt>link</dt><dd>https://www.youtube.com/watch?v=JcJSW7Rprio</dd>
4065id: kindrobot20220703171459 4253<dt>content_type</dt><dd>html</dd>
4066author: 4254<dt>id</dt><dd>kindrobot20220703171459</dd>
4067enclosure: 4255<dt>author</dt><dd></dd>
4068category: https 4256<dt>enclosure</dt><dd></dd>
4257<dt>category</dt><dd>https</dd>
4258</dl>
4069</details> 4259</details>
4070</details> 4260</details>
4071<details> 4261<details>
4072<summary>[linkbudz rss feed] rss</summary> 4262<summary>[linkbudz rss feed] rss : <time class="time">2022-07-02</time></summary>
4073<div class="links"> 4263<div class="links">
4074<a href="https://feddit.de/pictrs/image/9cf64a24-87ec-4f3a-b5f1-6dabf0e56d63.jpeg">read original</a>
4075</div> 4264</div>
4076<div class="content"><p><a href="https://feddit.de/pictrs/image/9cf64a24-87ec-4f3a-b5f1-6dabf0e56d63.jpeg">rss</a></p> 4265<div class="content"><p><a href="https://feddit.de/pictrs/image/9cf64a24-87ec-4f3a-b5f1-6dabf0e56d63.jpeg">rss</a></p>
4077 <p>[https] posted by dozens on July 03, 2022</p></div> 4266 <p>[https] posted by dozens on July 03, 2022</p></div>
4078<details class="info"><summary>item information</summary> 4267<details class="info"><summary>item information</summary>
4079timestamp: 1656806726 4268<dl>
4080title: [linkbudz rss feed] rss 4269<dt>timestamp</dt><dd>1656806726</dd>
4081link: https://feddit.de/pictrs/image/9cf64a24-87ec-4f3a-b5f1-6dabf0e56d63.jpeg 4270<dt>title</dt><dd>[linkbudz rss feed] rss</dd>
4082content_type: html 4271<dt>link</dt><dd>https://feddit.de/pictrs/image/9cf64a24-87ec-4f3a-b5f1-6dabf0e56d63.jpeg</dd>
4083id: dozens20220703000526 4272<dt>content_type</dt><dd>html</dd>
4084author: 4273<dt>id</dt><dd>dozens20220703000526</dd>
4085enclosure: 4274<dt>author</dt><dd></dd>
4086category: https 4275<dt>enclosure</dt><dd></dd>
4276<dt>category</dt><dd>https</dd>
4277</dl>
4087</details> 4278</details>
4088</details> 4279</details>
4089<details> 4280<details>
4090<summary>[ Oatmeal] </summary> 4281<summary>[ Oatmeal] : <time class="time">2022-07-02</time></summary>
4091<div class="links"> 4282<div class="links">
4092<a href="https://eli.li/2022/07/2/2022-07-02-10-42-53">read original</a> 4283<a href="https://eli.li/2022/07/2/2022-07-02-10-42-53">read original</a>
4093</div> 4284</div>
4094<div class="content"><p><img src="https://eli.li/_assets/_images/ios/IMG_0387.png" class="u-photo" alt="A toddler picks some snap peas with a stuffed hippo in tow."></p> 4285<div class="content"><p><img src="https://eli.li/_assets/_images/ios/IMG_0387.png" class="u-photo" alt="A toddler picks some snap peas with a stuffed hippo in tow."></p>
4095<p><span class="small-caps">&#x1F331;&#x1F99B;</span></p></div> 4286<p><span class="small-caps">&#x1F331;&#x1F99B;</span></p></div>
4096<details class="info"><summary>item information</summary> 4287<details class="info"><summary>item information</summary>
4097timestamp: 1656772973 4288<dl>
4098title: [ Oatmeal] 4289<dt>timestamp</dt><dd>1656772973</dd>
4099link: https://eli.li/2022/07/2/2022-07-02-10-42-53 4290<dt>title</dt><dd>[ Oatmeal] </dd>
4100content_type: html 4291<dt>link</dt><dd>https://eli.li/2022/07/2/2022-07-02-10-42-53</dd>
4101id: https://eli.li/2022/07/2/2022-07-02-10-42-53 4292<dt>content_type</dt><dd>html</dd>
4102author: 4293<dt>id</dt><dd>https://eli.li/2022/07/2/2022-07-02-10-42-53</dd>
4103enclosure: 4294<dt>author</dt><dd></dd>
4104category: 4295<dt>enclosure</dt><dd></dd>
4296<dt>category</dt><dd></dd>
4297</dl>
4105</details> 4298</details>
4106</details> 4299</details>
4107<details> 4300<details>
4108<summary>[linkbudz rss feed] linkbud went on too many dates</summary> 4301<summary>[linkbudz rss feed] linkbud went on too many dates : <time class="time">2022-07-01</time></summary>
4109<div class="links"> 4302<div class="links">
4110<a href="https://git.m455.casa/linkbud/commit/?id=93a9b61963f6369fac04c765f98c635f9a0aecf6">read original</a>
4111</div> 4303</div>
4112<div class="content"><p><a href="https://git.m455.casa/linkbud/commit/?id=93a9b61963f6369fac04c765f98c635f9a0aecf6">linkbud went on too many dates</a></p> 4304<div class="content"><p><a href="https://git.m455.casa/linkbud/commit/?id=93a9b61963f6369fac04c765f98c635f9a0aecf6">linkbud went on too many dates</a></p>
4113 <p>[https] posted by m455 on July 01, 2022</p></div> 4305 <p>[https] posted by m455 on July 01, 2022</p></div>
4114<details class="info"><summary>item information</summary> 4306<details class="info"><summary>item information</summary>
4115timestamp: 1656693166 4307<dl>
4116title: [linkbudz rss feed] linkbud went on too many dates 4308<dt>timestamp</dt><dd>1656693166</dd>
4117link: https://git.m455.casa/linkbud/commit/?id=93a9b61963f6369fac04c765f98c635f9a0aecf6 4309<dt>title</dt><dd>[linkbudz rss feed] linkbud went on too many dates</dd>
4118content_type: html 4310<dt>link</dt><dd>https://git.m455.casa/linkbud/commit/?id=93a9b61963f6369fac04c765f98c635f9a0aecf6</dd>
4119id: m45520220701163246 4311<dt>content_type</dt><dd>html</dd>
4120author: 4312<dt>id</dt><dd>m45520220701163246</dd>
4121enclosure: 4313<dt>author</dt><dd></dd>
4122category: https 4314<dt>enclosure</dt><dd></dd>
4315<dt>category</dt><dd>https</dd>
4316</dl>
4123</details> 4317</details>
4124</details> 4318</details>
4125<details> 4319<details>
4126<summary>[linkbudz rss feed] I'm never not going to post this</summary> 4320<summary>[linkbudz rss feed] I'm never not going to post this : <time class="time">2022-06-29</time></summary>
4127<div class="links"> 4321<div class="links">
4128<a href="https://www.youtube.com/watch?v=rv4wf7bzfFE">read original</a>
4129</div> 4322</div>
4130<div class="content"><p><a href="https://www.youtube.com/watch?v=rv4wf7bzfFE">I'm never not going to post this</a></p> 4323<div class="content"><p><a href="https://www.youtube.com/watch?v=rv4wf7bzfFE">I'm never not going to post this</a></p>
4131 <p>[https] posted by acdw on June 29, 2022</p></div> 4324 <p>[https] posted by acdw on June 29, 2022</p></div>
4132<details class="info"><summary>item information</summary> 4325<details class="info"><summary>item information</summary>
4133timestamp: 1656537802 4326<dl>
4134title: [linkbudz rss feed] I'm never not going to post this 4327<dt>timestamp</dt><dd>1656537802</dd>
4135link: https://www.youtube.com/watch?v=rv4wf7bzfFE 4328<dt>title</dt><dd>[linkbudz rss feed] I'm never not going to post this</dd>
4136content_type: html 4329<dt>link</dt><dd>https://www.youtube.com/watch?v=rv4wf7bzfFE</dd>
4137id: acdw20220629212322 4330<dt>content_type</dt><dd>html</dd>
4138author: 4331<dt>id</dt><dd>acdw20220629212322</dd>
4139enclosure: 4332<dt>author</dt><dd></dd>
4140category: https 4333<dt>enclosure</dt><dd></dd>
4334<dt>category</dt><dd>https</dd>
4335</dl>
4141</details> 4336</details>
4142</details> 4337</details>
4143<details> 4338<details>
4144<summary>[linkbudz rss feed] Databases and like, complicatedness</summary> 4339<summary>[linkbudz rss feed] Databases and like, complicatedness : <time class="time">2022-06-29</time></summary>
4145<div class="links"> 4340<div class="links">
4146<a href="https://www.twilio.com/blog/sqlite-postgresql-complicated">read original</a>
4147</div> 4341</div>
4148<div class="content"><p><a href="https://www.twilio.com/blog/sqlite-postgresql-complicated">Databases and like, complicatedness</a></p> 4342<div class="content"><p><a href="https://www.twilio.com/blog/sqlite-postgresql-complicated">Databases and like, complicatedness</a></p>
4149 <p>[https] posted by acdw on June 29, 2022</p></div> 4343 <p>[https] posted by acdw on June 29, 2022</p></div>
4150<details class="info"><summary>item information</summary> 4344<details class="info"><summary>item information</summary>
4151timestamp: 1656535907 4345<dl>
4152title: [linkbudz rss feed] Databases and like, complicatedness 4346<dt>timestamp</dt><dd>1656535907</dd>
4153link: https://www.twilio.com/blog/sqlite-postgresql-complicated 4347<dt>title</dt><dd>[linkbudz rss feed] Databases and like, complicatedness</dd>
4154content_type: html 4348<dt>link</dt><dd>https://www.twilio.com/blog/sqlite-postgresql-complicated</dd>
4155id: acdw20220629205147 4349<dt>content_type</dt><dd>html</dd>
4156author: 4350<dt>id</dt><dd>acdw20220629205147</dd>
4157enclosure: 4351<dt>author</dt><dd></dd>
4158category: https 4352<dt>enclosure</dt><dd></dd>
4353<dt>category</dt><dd>https</dd>
4354</dl>
4159</details> 4355</details>
4160</details> 4356</details>
4161<details> 4357<details>
4162<summary>[Dozens and Dragons] through the white forest to the house of the fae lord</summary> 4358<summary>[Dozens and Dragons] through the white forest to the house of the fae lord : <time class="time">2022-06-27</time></summary>
4163<div class="links"> 4359<div class="links">
4164<a href="https://dozensanddragons.neocities.org/26.html">read original</a> 4360<a href="https://dozensanddragons.neocities.org/26.html">read original</a>
4165</div> 4361</div>
4166<div class="content">weird stuff happening in surreal places</div> 4362<div class="content">weird stuff happening in surreal places</div>
4167<details class="info"><summary>item information</summary> 4363<details class="info"><summary>item information</summary>
4168timestamp: 1656388800 4364<dl>
4169title: [Dozens and Dragons] through the white forest to the house of the fae lord 4365<dt>timestamp</dt><dd>1656388800</dd>
4170link: https://dozensanddragons.neocities.org/26.html 4366<dt>title</dt><dd>[Dozens and Dragons] through the white forest to the house of the fae lord</dd>
4171content_type: html 4367<dt>link</dt><dd>https://dozensanddragons.neocities.org/26.html</dd>
4172id: https://dozensanddragons.neocities.org/26.html 4368<dt>content_type</dt><dd>html</dd>
4173author: 4369<dt>id</dt><dd>https://dozensanddragons.neocities.org/26.html</dd>
4174enclosure: 4370<dt>author</dt><dd></dd>
4175category: 4371<dt>enclosure</dt><dd></dd>
4372<dt>category</dt><dd></dd>
4373</dl>
4176</details> 4374</details>
4177</details> 4375</details>
4178<details> 4376<details>
4179<summary>[p1k3::feed] Monday, June 27, 2022 - aphoristic noodling</summary> 4377<summary>[p1k3::feed] Monday, June 27, 2022 - aphoristic noodling : <time class="time">2022-06-27</time></summary>
4180<div class="links"> 4378<div class="links">
4181<a href="https://p1k3.com/2022/6/27">read original</a> 4379<a href="https://p1k3.com/2022/6/27">read original</a>
4182</div> 4380</div>
@@ -4295,52 +4493,58 @@ document one of these days.</p>
4295<a href="/2022/6/27/" title="27">27</a></p> 4493<a href="/2022/6/27/" title="27">27</a></p>
4296</div></article></div> 4494</div></article></div>
4297<details class="info"><summary>item information</summary> 4495<details class="info"><summary>item information</summary>
4298timestamp: 1656318192 4496<dl>
4299title: [p1k3::feed] Monday, June 27, 2022 - aphoristic noodling 4497<dt>timestamp</dt><dd>1656318192</dd>
4300link: https://p1k3.com/2022/6/27 4498<dt>title</dt><dd>[p1k3::feed] Monday, June 27, 2022 - aphoristic noodling</dd>
4301content_type: html 4499<dt>link</dt><dd>https://p1k3.com/2022/6/27</dd>
4302id: /2022/6/27 4500<dt>content_type</dt><dd>html</dd>
4303author: 4501<dt>id</dt><dd>/2022/6/27</dd>
4304enclosure: 4502<dt>author</dt><dd></dd>
4305category: 4503<dt>enclosure</dt><dd></dd>
4504<dt>category</dt><dd></dd>
4505</dl>
4306</details> 4506</details>
4307</details> 4507</details>
4308<details> 4508<details>
4309<summary>[Brainshit] Blockchain Nomic</summary> 4509<summary>[Brainshit] Blockchain Nomic : <time class="time">2022-06-26</time></summary>
4310<div class="links"> 4510<div class="links">
4311<a href="https://brainshit.fr/read/309">read original</a> 4511<a href="https://brainshit.fr/read/309">read original</a>
4312</div> 4512</div>
4313<div class="content">Une variante d'un jeu dont le but est de changer les règles, où les règles ne peuvent plus exactement être changées.</div> 4513<div class="content">Une variante d'un jeu dont le but est de changer les règles, où les règles ne peuvent plus exactement être changées.</div>
4314<details class="info"><summary>item information</summary> 4514<details class="info"><summary>item information</summary>
4315timestamp: 1656280800 4515<dl>
4316title: [Brainshit] Blockchain Nomic 4516<dt>timestamp</dt><dd>1656280800</dd>
4317link: https://brainshit.fr/read/309 4517<dt>title</dt><dd>[Brainshit] Blockchain Nomic</dd>
4318content_type: html 4518<dt>link</dt><dd>https://brainshit.fr/read/309</dd>
4319id: https://brainshit.fr/read/309 4519<dt>content_type</dt><dd>html</dd>
4320author: neuron@brainshit.fr (Lucidiot) 4520<dt>id</dt><dd>https://brainshit.fr/read/309</dd>
4321enclosure: 4521<dt>author</dt><dd>neuron@brainshit.fr (Lucidiot)</dd>
4322category: Réflexions 4522<dt>enclosure</dt><dd></dd>
4523<dt>category</dt><dd>Réflexions</dd>
4524</dl>
4323</details> 4525</details>
4324</details> 4526</details>
4325<details> 4527<details>
4326<summary>[ Oatmeal] </summary> 4528<summary>[ Oatmeal] : <time class="time">2022-06-26</time></summary>
4327<div class="links"> 4529<div class="links">
4328<a href="https://eli.li/2022/06/26/2022-06-26-06-49-15">read original</a> 4530<a href="https://eli.li/2022/06/26/2022-06-26-06-49-15">read original</a>
4329</div> 4531</div>
4330<div class="content"><p><img src="https://eli.li/_assets/_images/ios/23BA2FC9-DEFE-4C16-AE10-490F23250F1A.png" class="u-photo" alt="A large cat lying on the sill of an open window. "></p></div> 4532<div class="content"><p><img src="https://eli.li/_assets/_images/ios/23BA2FC9-DEFE-4C16-AE10-490F23250F1A.png" class="u-photo" alt="A large cat lying on the sill of an open window. "></p></div>
4331<details class="info"><summary>item information</summary> 4533<details class="info"><summary>item information</summary>
4332timestamp: 1656240555 4534<dl>
4333title: [ Oatmeal] 4535<dt>timestamp</dt><dd>1656240555</dd>
4334link: https://eli.li/2022/06/26/2022-06-26-06-49-15 4536<dt>title</dt><dd>[ Oatmeal] </dd>
4335content_type: html 4537<dt>link</dt><dd>https://eli.li/2022/06/26/2022-06-26-06-49-15</dd>
4336id: https://eli.li/2022/06/26/2022-06-26-06-49-15 4538<dt>content_type</dt><dd>html</dd>
4337author: 4539<dt>id</dt><dd>https://eli.li/2022/06/26/2022-06-26-06-49-15</dd>
4338enclosure: 4540<dt>author</dt><dd></dd>
4339category: 4541<dt>enclosure</dt><dd></dd>
4542<dt>category</dt><dd></dd>
4543</dl>
4340</details> 4544</details>
4341</details> 4545</details>
4342<details> 4546<details>
4343<summary>[ Oatmeal] </summary> 4547<summary>[ Oatmeal] : <time class="time">2022-06-25</time></summary>
4344<div class="links"> 4548<div class="links">
4345<a href="https://eli.li/2022/06/25/after-giving-my-brain-bleed-time-to-heal-the-neurosurgeon-called-me-back-in-to-hospital-the-plan-was">read original</a> 4549<a href="https://eli.li/2022/06/25/after-giving-my-brain-bleed-time-to-heal-the-neurosurgeon-called-me-back-in-to-hospital-the-plan-was">read original</a>
4346</div> 4550</div>
@@ -4352,89 +4556,96 @@ category:
4352<p>There are too many people to thank directly here, but to all those who&#x2019;ve supported me and my family throughout this bananas unexpected experience&#x2009;&#x2014;&#x2009;for realizes&#x2009;&#x2014;&#x2009;thank you so much. The words of support, well wishes, meals, help with kids and everything have been so deeply felt, and I honestly can&#x2019;t imagine how I would have navigated this without ya&#x2019;ll.</p> 4556<p>There are too many people to thank directly here, but to all those who&#x2019;ve supported me and my family throughout this bananas unexpected experience&#x2009;&#x2014;&#x2009;for realizes&#x2009;&#x2014;&#x2009;thank you so much. The words of support, well wishes, meals, help with kids and everything have been so deeply felt, and I honestly can&#x2019;t imagine how I would have navigated this without ya&#x2019;ll.</p>
4353<p>Hopefully this is my last health update for a long time, and I can go back to posting about forth now!</p></div> 4557<p>Hopefully this is my last health update for a long time, and I can go back to posting about forth now!</p></div>
4354<details class="info"><summary>item information</summary> 4558<details class="info"><summary>item information</summary>
4355timestamp: 1656212772 4559<dl>
4356title: [ Oatmeal] 4560<dt>timestamp</dt><dd>1656212772</dd>
4357link: https://eli.li/2022/06/25/after-giving-my-brain-bleed-time-to-heal-the-neurosurgeon-called-me-back-in-to-hospital-the-plan-was 4561<dt>title</dt><dd>[ Oatmeal] </dd>
4358content_type: html 4562<dt>link</dt><dd>https://eli.li/2022/06/25/after-giving-my-brain-bleed-time-to-heal-the-neurosurgeon-called-me-back-in-to-hospital-the-plan-was</dd>
4359id: https://eli.li/2022/06/25/after-giving-my-brain-bleed-time-to-heal-the-neurosurgeon-called-me-back-in-to-hospital-the-plan-was 4563<dt>content_type</dt><dd>html</dd>
4360author: 4564<dt>id</dt><dd>https://eli.li/2022/06/25/after-giving-my-brain-bleed-time-to-heal-the-neurosurgeon-called-me-back-in-to-hospital-the-plan-was</dd>
4361enclosure: 4565<dt>author</dt><dd></dd>
4362category: 4566<dt>enclosure</dt><dd></dd>
4567<dt>category</dt><dd></dd>
4568</dl>
4363</details> 4569</details>
4364</details> 4570</details>
4365<details> 4571<details>
4366<summary>[linkbudz rss feed] Mipui - open source collaborative grid map editor for tabletop games</summary> 4572<summary>[linkbudz rss feed] Mipui - open source collaborative grid map editor for tabletop games : <time class="time">2022-06-25</time></summary>
4367<div class="links"> 4573<div class="links">
4368<a href="https://www.mipui.net/">read original</a>
4369</div> 4574</div>
4370<div class="content"><p><a href="https://www.mipui.net/">Mipui - open source collaborative grid map editor for tabletop games</a></p> 4575<div class="content"><p><a href="https://www.mipui.net/">Mipui - open source collaborative grid map editor for tabletop games</a></p>
4371 <p>[https] posted by mio on June 25, 2022</p></div> 4576 <p>[https] posted by mio on June 25, 2022</p></div>
4372<details class="info"><summary>item information</summary> 4577<details class="info"><summary>item information</summary>
4373timestamp: 1656168162 4578<dl>
4374title: [linkbudz rss feed] Mipui - open source collaborative grid map editor for tabletop games 4579<dt>timestamp</dt><dd>1656168162</dd>
4375link: https://www.mipui.net/ 4580<dt>title</dt><dd>[linkbudz rss feed] Mipui - open source collaborative grid map editor for tabletop games</dd>
4376content_type: html 4581<dt>link</dt><dd>https://www.mipui.net/</dd>
4377id: mio20220625144242 4582<dt>content_type</dt><dd>html</dd>
4378author: 4583<dt>id</dt><dd>mio20220625144242</dd>
4379enclosure: 4584<dt>author</dt><dd></dd>
4380category: https 4585<dt>enclosure</dt><dd></dd>
4586<dt>category</dt><dd>https</dd>
4587</dl>
4381</details> 4588</details>
4382</details> 4589</details>
4383<details> 4590<details>
4384<summary>[linkbudz rss feed] Start all of your shell scripts with a comma</summary> 4591<summary>[linkbudz rss feed] Start all of your shell scripts with a comma : <time class="time">2022-06-24</time></summary>
4385<div class="links"> 4592<div class="links">
4386<a href="https://rhodesmill.org/brandon/2009/commands-with-comma/">read original</a>
4387</div> 4593</div>
4388<div class="content"><p><a href="https://rhodesmill.org/brandon/2009/commands-with-comma/">Start all of your shell scripts with a comma</a></p> 4594<div class="content"><p><a href="https://rhodesmill.org/brandon/2009/commands-with-comma/">Start all of your shell scripts with a comma</a></p>
4389 <p>[https] posted by m455 on June 24, 2022</p></div> 4595 <p>[https] posted by m455 on June 24, 2022</p></div>
4390<details class="info"><summary>item information</summary> 4596<details class="info"><summary>item information</summary>
4391timestamp: 1656080609 4597<dl>
4392title: [linkbudz rss feed] Start all of your shell scripts with a comma 4598<dt>timestamp</dt><dd>1656080609</dd>
4393link: https://rhodesmill.org/brandon/2009/commands-with-comma/ 4599<dt>title</dt><dd>[linkbudz rss feed] Start all of your shell scripts with a comma</dd>
4394content_type: html 4600<dt>link</dt><dd>https://rhodesmill.org/brandon/2009/commands-with-comma/</dd>
4395id: m45520220624142329 4601<dt>content_type</dt><dd>html</dd>
4396author: 4602<dt>id</dt><dd>m45520220624142329</dd>
4397enclosure: 4603<dt>author</dt><dd></dd>
4398category: https 4604<dt>enclosure</dt><dd></dd>
4605<dt>category</dt><dd>https</dd>
4606</dl>
4399</details> 4607</details>
4400</details> 4608</details>
4401<details> 4609<details>
4402<summary>[linkbudz rss feed] directly query csv with sqlite</summary> 4610<summary>[linkbudz rss feed] directly query csv with sqlite : <time class="time">2022-06-22</time></summary>
4403<div class="links"> 4611<div class="links">
4404<a href="https://til.simonwillison.net/sqlite/one-line-csv-operations">read original</a>
4405</div> 4612</div>
4406<div class="content"><p><a href="https://til.simonwillison.net/sqlite/one-line-csv-operations">directly query csv with sqlite</a></p> 4613<div class="content"><p><a href="https://til.simonwillison.net/sqlite/one-line-csv-operations">directly query csv with sqlite</a></p>
4407 <p>[https] posted by dozens on June 22, 2022</p></div> 4614 <p>[https] posted by dozens on June 22, 2022</p></div>
4408<details class="info"><summary>item information</summary> 4615<details class="info"><summary>item information</summary>
4409timestamp: 1655929342 4616<dl>
4410title: [linkbudz rss feed] directly query csv with sqlite 4617<dt>timestamp</dt><dd>1655929342</dd>
4411link: https://til.simonwillison.net/sqlite/one-line-csv-operations 4618<dt>title</dt><dd>[linkbudz rss feed] directly query csv with sqlite</dd>
4412content_type: html 4619<dt>link</dt><dd>https://til.simonwillison.net/sqlite/one-line-csv-operations</dd>
4413id: dozens20220622202222 4620<dt>content_type</dt><dd>html</dd>
4414author: 4621<dt>id</dt><dd>dozens20220622202222</dd>
4415enclosure: 4622<dt>author</dt><dd></dd>
4416category: https 4623<dt>enclosure</dt><dd></dd>
4624<dt>category</dt><dd>https</dd>
4625</dl>
4417</details> 4626</details>
4418</details> 4627</details>
4419<details> 4628<details>
4420<summary>[~lucidiot's wiki] forest</summary> 4629<summary>[~lucidiot's wiki] forest : <time class="time">2022-06-22</time></summary>
4421<div class="links"> 4630<div class="links">
4422<a href="https://envs.net/~lucidiot/forest.html">read original</a> 4631<a href="https://envs.net/~lucidiot/forest.html">read original</a>
4423</div> 4632</div>
4424<div class="content"></div> 4633<div class="content"></div>
4425<details class="info"><summary>item information</summary> 4634<details class="info"><summary>item information</summary>
4426timestamp: 1655877494 4635<dl>
4427title: [~lucidiot's wiki] forest 4636<dt>timestamp</dt><dd>1655877494</dd>
4428link: https://envs.net/~lucidiot/forest.html 4637<dt>title</dt><dd>[~lucidiot's wiki] forest</dd>
4429content_type: 4638<dt>link</dt><dd>https://envs.net/~lucidiot/forest.html</dd>
4430id: https://envs.net/~lucidiot/forest.html 4639<dt>content_type</dt><dd></dd>
4431author: 4640<dt>id</dt><dd>https://envs.net/~lucidiot/forest.html</dd>
4432enclosure: 4641<dt>author</dt><dd></dd>
4433category: 4642<dt>enclosure</dt><dd></dd>
4643<dt>category</dt><dd></dd>
4644</dl>
4434</details> 4645</details>
4435</details> 4646</details>
4436<details> 4647<details>
4437<summary>[trash cat tech chat] 004 - Matrix, part 2</summary> 4648<summary>[trash cat tech chat] 004 - Matrix, part 2 : <time class="time">2022-06-21</time></summary>
4438<div class="links"> 4649<div class="links">
4439<a href="https://podcast.librepunk.club/tctc/004">read original</a> 4650<a href="https://podcast.librepunk.club/tctc/004">read original</a>
4440<a href="https://podcast.librepunk.club/tctc/tctc_004_Matrix,-part-2.ogg">enclosure</a> 4651<a href="https://podcast.librepunk.club/tctc/tctc_004_Matrix,-part-2.ogg">enclosure</a>
@@ -4596,52 +4807,45 @@ category:
4596<h2>Credits</h2> 4807<h2>Credits</h2>
4597<p>Music by <a href="https://karlcasey.bandcamp.com/">Karl Casey</a> @ <a href="https://whitebataudio.com/">White Bat Audio</a></p></div> 4808<p>Music by <a href="https://karlcasey.bandcamp.com/">Karl Casey</a> @ <a href="https://whitebataudio.com/">White Bat Audio</a></p></div>
4598<details class="info"><summary>item information</summary> 4809<details class="info"><summary>item information</summary>
4599timestamp: 1655867272 4810<dl>
4600title: [trash cat tech chat] 004 - Matrix, part 2 4811<dt>timestamp</dt><dd>1655867272</dd>
4601link: https://podcast.librepunk.club/tctc/004 4812<dt>title</dt><dd>[trash cat tech chat] 004 - Matrix, part 2</dd>
4602content_type: html 4813<dt>link</dt><dd>https://podcast.librepunk.club/tctc/004</dd>
4603id: https://podcast.librepunk.club/tctc/004 4814<dt>content_type</dt><dd>html</dd>
4604author: 4815<dt>id</dt><dd>https://podcast.librepunk.club/tctc/004</dd>
4605enclosure: https://podcast.librepunk.club/tctc/tctc_004_Matrix,-part-2.ogg 4816<dt>author</dt><dd></dd>
4606category: 4817<dt>enclosure</dt><dd>https://podcast.librepunk.club/tctc/tctc_004_Matrix,-part-2.ogg</dd>
4818<dt>category</dt><dd></dd>
4819</dl>
4607</details> 4820</details>
4608</details> 4821</details>
4609<details> 4822<details>
4610<summary>[linkbudz rss feed] Running Doom on a chip from a $15 smart lamp</summary> 4823<summary>[linkbudz rss feed] Running Doom on a chip from a $15 smart lamp : <time class="time">2022-06-20</time></summary>
4611<div class="links"> 4824<div class="links">
4612<a href="https://uk.pcmag.com/games/133930/you-can-run-doom-on-a-chip-from-a-15-ikea-smart-lamp">read original</a>
4613</div> 4825</div>
4614<div class="content"><p><a href="https://uk.pcmag.com/games/133930/you-can-run-doom-on-a-chip-from-a-15-ikea-smart-lamp">Running Doom on a chip from a $15 smart lamp</a></p> 4826<div class="content"><p><a href="https://uk.pcmag.com/games/133930/you-can-run-doom-on-a-chip-from-a-15-ikea-smart-lamp">Running Doom on a chip from a $15 smart lamp</a></p>
4615 <p>[https] posted by mio on June 21, 2022</p></div> 4827 <p>[https] posted by mio on June 21, 2022</p></div>
4616<details class="info"><summary>item information</summary> 4828<details class="info"><summary>item information</summary>
4617timestamp: 1655774852 4829<dl>
4618title: [linkbudz rss feed] Running Doom on a chip from a $15 smart lamp 4830<dt>timestamp</dt><dd>1655774852</dd>
4619link: https://uk.pcmag.com/games/133930/you-can-run-doom-on-a-chip-from-a-15-ikea-smart-lamp 4831<dt>title</dt><dd>[linkbudz rss feed] Running Doom on a chip from a $15 smart lamp</dd>
4620content_type: html 4832<dt>link</dt><dd>https://uk.pcmag.com/games/133930/you-can-run-doom-on-a-chip-from-a-15-ikea-smart-lamp</dd>
4621id: mio20220621012732 4833<dt>content_type</dt><dd>html</dd>
4622author: 4834<dt>id</dt><dd>mio20220621012732</dd>
4623enclosure: 4835<dt>author</dt><dd></dd>
4624category: https 4836<dt>enclosure</dt><dd></dd>
4837<dt>category</dt><dd>https</dd>
4838</dl>
4625</details> 4839</details>
4626</details> 4840</details>
4627<details> 4841<div class="nav">
4628<summary>[linkbudz rss feed] Old-school blogging, retro computers, and decentralisation</summary> 4842<a href="p2.html">next</a>
4629<div class="links"> 4843</div>
4630<a href="https://andregarzia.com/2022/05/Old-school-blogging-retro-computers-and-decentralisation.html">read original</a> 4844<div id="footer">
4845sourced from <a href="https://tildegit.org/casa/pages/src/branch/main/opml/mug.of.opml">
4846a mug of opml</a>.
4847<a href="mailto:fwends@me.acdw.net">problems? suggestions?</a>
4848</div>
4631</div> 4849</div>
4632<div class="content"><p><a href="https://andregarzia.com/2022/05/Old-school-blogging-retro-computers-and-decentralisation.html">Old-school blogging, retro computers, and decentralisation</a></p>
4633 <p>[https] posted by m455 on June 20, 2022</p></div>
4634<details class="info"><summary>item information</summary>
4635timestamp: 1655733653
4636title: [linkbudz rss feed] Old-school blogging, retro computers, and decentralisation
4637link: https://andregarzia.com/2022/05/Old-school-blogging-retro-computers-and-decentralisation.html
4638content_type: html
4639id: m45520220620140053
4640author:
4641enclosure:
4642category: https
4643</details>
4644</details>
4645<a href="mailto:fwends@me.acdw.net">email acdw</a> if you have issues.
4646</body> 4850</body>
4647</html> 4851</html>
diff --git a/style.css b/style.css index 299b98b..2e59c5d 100644 --- a/style.css +++ b/style.css
@@ -1,117 +1,141 @@
1body { 1body {
2 font-size: 14pt; 2 font-size: 14pt;
3 line-spacing: 1.4; 3 line-spacing: 1.4;
4} 4}
5 5
6img { 6img {
7 max-width: 100%; 7 max-width: 100%;
8} 8}
9 9
10pre, 10pre,
11code { 11code {
12 overflow: scroll; 12 overflow: scroll;
13}
14
15#main {
16 max-width: 932px;
17 margin: auto;
18}
19
20.nav {
21 text-align: right;
13} 22}
14 23
15details { 24details {
16 margin: 1ch; 25 margin: 5px;
17 max-width: 78ch; 26 padding: 5px;
18 margin: auto; 27 position: relative;
19 padding: 1ch;
20 position: relative;
21} 28}
22 29
23details[open] { 30details[open] {
24 border: 1px solid; 31 border: 1px solid;
25 border-radius: 1ch; 32 border-radius: 5px;
26 min-height: 4.2em; 33 min-height: 4.2em;
34}
35
36.info {
37 position: relative;
38}
39.info[open] summary {
40 position: absolute;
41 bottom: 5px;
42 right: 5px;
27} 43}
28 44
29summary { 45summary {
30 display: block; 46 border-radius: 5px;
31 padding: 1ch; 47 display: block;
32 margin: -1ch; 48 padding: 5px;
33 font: 12pt monospace; 49 margin: -5px;
50 font: 12pt monospace;
34} 51}
35 52
36.info { 53.info {
37 font: 10pt monospace; 54 font: 10pt monospace;
38 position: absolute; 55 position: absolute;
39 right: 0; 56 right: 0;
40 bottom: 1px; 57 bottom: 1px;
41 border-radius: 1ch; 58 border-radius: 5px;
42} 59}
43.info summary { 60.info summary {
44 font: inherit; 61 font: inherit;
45 text-align: right; 62 text-align: right;
46} 63}
47 64
48summary:hover { 65summary:hover {
49 text-transform: uppercase; 66 text-transform: uppercase;
50 border-radius: 1ch; 67 border-radius: 5px;
68}
69
70time,
71.time {
72 float: right;
51} 73}
52 74
53.links { 75.links {
54 float: right; 76 float: right;
55} 77}
56 78
57.content { 79.content {
58 margin: 2ch; 80 margin: 10px;
59} 81}
60 82
61a { 83a {
62 text-decoration: none; 84 text-decoration: none;
63 padding: 2px; 85 padding: 2px;
64} 86}
65 87
66a:link, 88a:link,
67a:visited { 89a:visited {
68 color: inherit; 90 color: inherit;
69} 91}
70 92
71@media screen and (prefers-color-scheme: light) { 93@media screen and (prefers-color-scheme: light) {
72 body { 94 body {
73 background: white; 95 background: white;
74 color: black; 96 color: black;
75 } 97 }
76 details { 98 details {
77 background: #ddd; 99 background: #ddd;
78 } 100 }
79 details[open] { 101 details[open] {
80 background: #bbb; 102 background: #bbb;
81 } 103 }
82 a:link { 104 a:link {
83 background: cyan; 105 background: cyan;
84 } 106 }
85 a:hover, 107 a:hover,
86 summary:hover { 108 summary:hover,
87 background: yellow; 109 details[open] > summary {
88 } 110 background: yellow;
89 pre, 111 }
90 code { 112 pre,
91 background: #eee; 113 code {
92 } 114 background: #eee;
115 }
93} 116}
94 117
95@media screen and (prefers-color-scheme: dark) { 118@media screen and (prefers-color-scheme: dark) {
96 body { 119 body {
97 background: #002222; 120 background: #002222;
98 color: #dee; 121 color: #dee;
99 } 122 }
100 details { 123 details {
101 background: #220000; 124 background: #220000;
102 } 125 }
103 details[open] { 126 details[open] {
104 background: #333; 127 background: #333;
105 } 128 }
106 a:link { 129 a:link {
107 background: #002244; 130 background: #002244;
108 } 131 }
109 a:hover, 132 a:hover,
110 summary:hover { 133 summary:hover,
111 background: brown; 134 details[open] > summary {
112 } 135 background: brown;
113 pre, 136 }
114 code { 137 pre,
115 background: #111; 138 code {
116 } 139 background: #111;
140 }
117} 141}