diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | Makefile | 20 | ||||
-rwxr-xr-x | fwendplanet.sh | 31 | ||||
-rwxr-xr-x | fwendplanet_html.awk | 61 | ||||
-rw-r--r-- | index.html | 3300 | ||||
-rw-r--r-- | style.css | 168 |
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 @@ | |||
1 | feeds/ | 1 | feeds/ |
2 | sfeedrc | 2 | sfeedrc |
3 | p*.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 | |||
3 | OUTD = /var/www/acdw.casa/fwends/ | 3 | OUTD = /var/www/acdw.casa/fwends/ |
4 | RC = sfeedrc | 4 | RC = sfeedrc |
5 | FEEDS = feeds | 5 | FEEDS = feeds |
6 | FILES = index.html style.css | 6 | FILES = index.html style.css p*.html |
7 | AGGREGATOR = ./fwendplanet.sh | 7 | AGGREGATOR = ./fwendplanet.sh |
8 | MAXAGE = 60 | 8 | PAGEN = 60 # 2 months |
9 | 9 | ||
10 | .PHONY: publish | 10 | .PHONY: publish |
11 | publish: build | 11 | publish: 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 |
16 | build: $(RC) | 16 | build: $(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" | |||
6 | cd "$1" || return 1 | 6 | cd "$1" || return 1 |
7 | 7 | ||
8 | if [ -n "$2" ]; then | 8 | if [ -n "$2" ]; then |
9 | old="$(($(date +%s) - ($2 * 24 * 3600)))" | 9 | page="$2" |
10 | else | 10 | else |
11 | old=0 | 11 | page=1 |
12 | fi | 12 | fi |
13 | 13 | ||
14 | awk -v old="$old" \ | 14 | if [ -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 | | 16 | else |
17 | "$curd/fwendplanet_html.awk" | 17 | groupn=1 |
18 | fi | ||
19 | |||
20 | # echo "$@" "$page" "$groupn" >&2 | ||
21 | |||
22 | awk -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 | |||
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 @@ | |||
4 | BEGIN { | 4 | BEGIN { |
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 | ||
9 | BEGIN { | 11 | BEGIN { |
@@ -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 | ||
57 | END { | 81 | END { |
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> |
21 | timestamp: 1660839707 | 25 | <dl> |
22 | title: [linkbudz rss feed] ed is the standard editor | 26 | <dt>timestamp</dt><dd>1660839707</dd> |
23 | link: https://tube.tchncs.de/w/g1ZKSzvDaqbpWQQgxGfW3z | 27 | <dt>title</dt><dd>[linkbudz rss feed] ed is the standard editor</dd> |
24 | content_type: html | 28 | <dt>link</dt><dd>https://tube.tchncs.de/w/g1ZKSzvDaqbpWQQgxGfW3z</dd> |
25 | id: dozens20220818162147 | 29 | <dt>content_type</dt><dd>html</dd> |
26 | author: | 30 | <dt>id</dt><dd>dozens20220818162147</dd> |
27 | enclosure: | 31 | <dt>author</dt><dd></dd> |
28 | category: 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> |
39 | timestamp: 1660837077 | 44 | <dl> |
40 | title: [linkbudz rss feed] Rhythm Nation causes a vulnerability | 45 | <dt>timestamp</dt><dd>1660837077</dd> |
41 | link: https://nvd.nist.gov/vuln/detail/CVE-2022-38392 | 46 | <dt>title</dt><dd>[linkbudz rss feed] Rhythm Nation causes a vulnerability</dd> |
42 | content_type: html | 47 | <dt>link</dt><dd>https://nvd.nist.gov/vuln/detail/CVE-2022-38392</dd> |
43 | id: lucidiot20220818153757 | 48 | <dt>content_type</dt><dd>html</dd> |
44 | author: | 49 | <dt>id</dt><dd>lucidiot20220818153757</dd> |
45 | enclosure: | 50 | <dt>author</dt><dd></dd> |
46 | category: 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> |
57 | timestamp: 1660835383 | 63 | <dl> |
58 | title: [linkbudz rss feed] fwends! | 64 | <dt>timestamp</dt><dd>1660835383</dd> |
59 | link: https://acdw.casa/fwends/ | 65 | <dt>title</dt><dd>[linkbudz rss feed] fwends!</dd> |
60 | content_type: html | 66 | <dt>link</dt><dd>https://acdw.casa/fwends/</dd> |
61 | id: acdw20220818150943 | 67 | <dt>content_type</dt><dd>html</dd> |
62 | author: | 68 | <dt>id</dt><dd>acdw20220818150943</dd> |
63 | enclosure: | 69 | <dt>author</dt><dd></dd> |
64 | category: 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> |
75 | timestamp: 1660829064 | 82 | <dl> |
76 | title: [linkbudz rss feed] Why I left PINE64 | 83 | <dt>timestamp</dt><dd>1660829064</dd> |
77 | link: https://blog.brixit.nl/why-i-left-pine64/ | 84 | <dt>title</dt><dd>[linkbudz rss feed] Why I left PINE64</dd> |
78 | content_type: html | 85 | <dt>link</dt><dd>https://blog.brixit.nl/why-i-left-pine64/</dd> |
79 | id: lucidiot20220818132424 | 86 | <dt>content_type</dt><dd>html</dd> |
80 | author: | 87 | <dt>id</dt><dd>lucidiot20220818132424</dd> |
81 | enclosure: | 88 | <dt>author</dt><dd></dd> |
82 | category: 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> |
227 | timestamp: 1660824000 | 236 | <dl> |
228 | title: [(lambda (x) (create x))] Shiny New Lang | 237 | <dt>timestamp</dt><dd>1660824000</dd> |
229 | link: https://lambdacreate.com/posts/39 | 238 | <dt>title</dt><dd>[(lambda (x) (create x))] Shiny New Lang</dd> |
230 | content_type: html | 239 | <dt>link</dt><dd>https://lambdacreate.com/posts/39</dd> |
231 | id: https://lambdacreate.com/posts/39 | 240 | <dt>content_type</dt><dd>html</dd> |
232 | author: | 241 | <dt>id</dt><dd>https://lambdacreate.com/posts/39</dd> |
233 | enclosure: | 242 | <dt>author</dt><dd></dd> |
234 | category: | 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’t expect that but I got a few questions about how it worked and I figured I’d do a little writeup of it. This won’t be a complete deep dive into everything - there honestly isn’t all that much to dive into - so I’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’t expect that but I got a few questions about how it worked and I figured I’d do a little writeup of it. This won’t be a complete deep dive into everything - there honestly isn’t all that much to dive into - so I’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> |
244 | timestamp: 1660780800 | 255 | <dl> |
245 | title: [lipu pi jan Niko] how I made Sheepspin (the NOVA 2022 wild compo winner) | 256 | <dt>timestamp</dt><dd>1660780800</dd> |
246 | link: 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> |
247 | content_type: html | 258 | <dt>link</dt><dd>https://tilde.town/~nihilazo/log/sheepspin.html</dd> |
248 | id: https://tilde.town/~nihilazo/log/sheepspin.html | 259 | <dt>content_type</dt><dd>html</dd> |
249 | author: | 260 | <dt>id</dt><dd>https://tilde.town/~nihilazo/log/sheepspin.html</dd> |
250 | enclosure: | 261 | <dt>author</dt><dd></dd> |
251 | category: | 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> |
262 | timestamp: 1660750368 | 274 | <dl> |
263 | title: [linkbudz rss feed] Defmacro for C | 275 | <dt>timestamp</dt><dd>1660750368</dd> |
264 | link: https://www.european-lisp-symposium.org/static/2014/selgrad.pdf | 276 | <dt>title</dt><dd>[linkbudz rss feed] Defmacro for C</dd> |
265 | content_type: html | 277 | <dt>link</dt><dd>https://www.european-lisp-symposium.org/static/2014/selgrad.pdf</dd> |
266 | id: wsinatra20220817153248 | 278 | <dt>content_type</dt><dd>html</dd> |
267 | author: | 279 | <dt>id</dt><dd>wsinatra20220817153248</dd> |
268 | enclosure: | 280 | <dt>author</dt><dd></dd> |
269 | category: 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> |
280 | timestamp: 1660704727 | 293 | <dl> |
281 | title: [linkbudz rss feed] JavaScript PDP 11/70 emulator | 294 | <dt>timestamp</dt><dd>1660704727</dd> |
282 | link: https://skn.noip.me/pdp11/pdp11.html | 295 | <dt>title</dt><dd>[linkbudz rss feed] JavaScript PDP 11/70 emulator</dd> |
283 | content_type: html | 296 | <dt>link</dt><dd>https://skn.noip.me/pdp11/pdp11.html</dd> |
284 | id: m45520220817025207 | 297 | <dt>content_type</dt><dd>html</dd> |
285 | author: | 298 | <dt>id</dt><dd>m45520220817025207</dd> |
286 | enclosure: | 299 | <dt>author</dt><dd></dd> |
287 | category: 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> |
298 | timestamp: 1660696023 | 312 | <dl> |
299 | title: [linkbudz rss feed] tenpo ko: a universal timezone clock | 313 | <dt>timestamp</dt><dd>1660696023</dd> |
300 | link: http://tilde.town/~dozens/tenpoko/ | 314 | <dt>title</dt><dd>[linkbudz rss feed] tenpo ko: a universal timezone clock</dd> |
301 | content_type: html | 315 | <dt>link</dt><dd>http://tilde.town/~dozens/tenpoko/</dd> |
302 | id: dozens20220817002703 | 316 | <dt>content_type</dt><dd>html</dd> |
303 | author: | 317 | <dt>id</dt><dd>dozens20220817002703</dd> |
304 | enclosure: | 318 | <dt>author</dt><dd></dd> |
305 | category: 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> |
315 | timestamp: 1660687200 | 331 | <dl> |
316 | title: [Brainshit] Big Mac Chicken | 332 | <dt>timestamp</dt><dd>1660687200</dd> |
317 | link: https://brainshit.fr/read/315 | 333 | <dt>title</dt><dd>[Brainshit] Big Mac Chicken</dd> |
318 | content_type: html | 334 | <dt>link</dt><dd>https://brainshit.fr/read/315</dd> |
319 | id: https://brainshit.fr/read/315 | 335 | <dt>content_type</dt><dd>html</dd> |
320 | author: neuron@brainshit.fr (Lucidiot) | 336 | <dt>id</dt><dd>https://brainshit.fr/read/315</dd> |
321 | enclosure: | 337 | <dt>author</dt><dd>neuron@brainshit.fr (Lucidiot)</dd> |
322 | category: 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> |
333 | timestamp: 1660574445 | 350 | <dl> |
334 | title: [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> |
335 | link: 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> |
336 | content_type: html | 353 | <dt>link</dt><dd>https://www.youtube.com/watch?v=qw5zzrOpo2s</dd> |
337 | id: kindrobot20220815144045 | 354 | <dt>content_type</dt><dd>html</dd> |
338 | author: | 355 | <dt>id</dt><dd>kindrobot20220815144045</dd> |
339 | enclosure: | 356 | <dt>author</dt><dd></dd> |
340 | category: 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> |
453 | timestamp: 1660564800 | 472 | <dl> |
454 | title: [(lambda (x) (create x))] Auskultanto | 473 | <dt>timestamp</dt><dd>1660564800</dd> |
455 | link: https://lambdacreate.com/posts/38 | 474 | <dt>title</dt><dd>[(lambda (x) (create x))] Auskultanto</dd> |
456 | content_type: html | 475 | <dt>link</dt><dd>https://lambdacreate.com/posts/38</dd> |
457 | id: https://lambdacreate.com/posts/38 | 476 | <dt>content_type</dt><dd>html</dd> |
458 | author: | 477 | <dt>id</dt><dd>https://lambdacreate.com/posts/38</dd> |
459 | enclosure: | 478 | <dt>author</dt><dd></dd> |
460 | category: | 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> |
470 | timestamp: 1660564323 | 491 | <dl> |
471 | title: [RSRSSS] tilde whirl | 492 | <dt>timestamp</dt><dd>1660564323</dd> |
472 | link: http://tilde.town/~dozens/podcast/rss.xml | 493 | <dt>title</dt><dd>[RSRSSS] tilde whirl</dd> |
473 | content_type: html | 494 | <dt>link</dt><dd>http://tilde.town/~dozens/podcast/rss.xml</dd> |
474 | id: tilde-whirl | 495 | <dt>content_type</dt><dd>html</dd> |
475 | author: | 496 | <dt>id</dt><dd>tilde-whirl</dd> |
476 | enclosure: | 497 | <dt>author</dt><dd></dd> |
477 | category: 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> |
487 | timestamp: 1660550801 | 510 | <dl> |
488 | title: [~lucidiot's wiki] tank | 511 | <dt>timestamp</dt><dd>1660550801</dd> |
489 | link: https://envs.net/~lucidiot/tank.html | 512 | <dt>title</dt><dd>[~lucidiot's wiki] tank</dd> |
490 | content_type: | 513 | <dt>link</dt><dd>https://envs.net/~lucidiot/tank.html</dd> |
491 | id: https://envs.net/~lucidiot/tank.html | 514 | <dt>content_type</dt><dd></dd> |
492 | author: | 515 | <dt>id</dt><dd>https://envs.net/~lucidiot/tank.html</dd> |
493 | enclosure: | 516 | <dt>author</dt><dd></dd> |
494 | category: | 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> |
504 | timestamp: 1660542735 | 529 | <dl> |
505 | title: [~lucidiot's wiki] notebooks | 530 | <dt>timestamp</dt><dd>1660542735</dd> |
506 | link: https://envs.net/~lucidiot/notebooks.html | 531 | <dt>title</dt><dd>[~lucidiot's wiki] notebooks</dd> |
507 | content_type: | 532 | <dt>link</dt><dd>https://envs.net/~lucidiot/notebooks.html</dd> |
508 | id: https://envs.net/~lucidiot/notebooks.html | 533 | <dt>content_type</dt><dd></dd> |
509 | author: | 534 | <dt>id</dt><dd>https://envs.net/~lucidiot/notebooks.html</dd> |
510 | enclosure: | 535 | <dt>author</dt><dd></dd> |
511 | category: | 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> |
522 | timestamp: 1660528100 | 548 | <dl> |
523 | title: [linkbudz rss feed] C Isn't A Programming Language Anymore | 549 | <dt>timestamp</dt><dd>1660528100</dd> |
524 | link: 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> |
525 | content_type: html | 551 | <dt>link</dt><dd>https://gankra.github.io/blah/c-isnt-a-language/</dd> |
526 | id: dozens20220815014820 | 552 | <dt>content_type</dt><dd>html</dd> |
527 | author: | 553 | <dt>id</dt><dd>dozens20220815014820</dd> |
528 | enclosure: | 554 | <dt>author</dt><dd></dd> |
529 | category: 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> |
540 | timestamp: 1660490080 | 567 | <dl> |
541 | title: [linkbudz rss feed] 43beans | 568 | <dt>timestamp</dt><dd>1660490080</dd> |
542 | link: https://www.youtube.com/watch?v=3V84Bi-mzQM | 569 | <dt>title</dt><dd>[linkbudz rss feed] 43beans</dd> |
543 | content_type: html | 570 | <dt>link</dt><dd>https://www.youtube.com/watch?v=3V84Bi-mzQM</dd> |
544 | id: acdw20220814151440 | 571 | <dt>content_type</dt><dd>html</dd> |
545 | author: | 572 | <dt>id</dt><dd>acdw20220814151440</dd> |
546 | enclosure: | 573 | <dt>author</dt><dd></dd> |
547 | category: 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> |
580 | timestamp: 1660486377 | 608 | <dl> |
581 | title: [dozens weed] 00030 re: [acdw] 2 | 609 | <dt>timestamp</dt><dd>1660486377</dd> |
582 | link: | 610 | <dt>title</dt><dd>[dozens weed] 00030 re: [acdw] 2</dd> |
583 | content_type: html | 611 | <dt>link</dt><dd></dd> |
584 | id: Sun, 14 Aug 2022 10:12:57 -0400 | 612 | <dt>content_type</dt><dd>html</dd> |
585 | author: dozens sin leche | 613 | <dt>id</dt><dd>Sun, 14 Aug 2022 10:12:57 -0400</dd> |
586 | enclosure: | 614 | <dt>author</dt><dd>dozens sin leche</dd> |
587 | category: | 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> |
632 | timestamp: 1660443015 | 661 | <dl> |
633 | title: [dozens weed] 00029 ed | 662 | <dt>timestamp</dt><dd>1660443015</dd> |
634 | link: | 663 | <dt>title</dt><dd>[dozens weed] 00029 ed</dd> |
635 | content_type: html | 664 | <dt>link</dt><dd></dd> |
636 | id: Sat, 13 Aug 2022 22:10:15 -0400 | 665 | <dt>content_type</dt><dd>html</dd> |
637 | author: dozens sin leche | 666 | <dt>id</dt><dd>Sat, 13 Aug 2022 22:10:15 -0400</dd> |
638 | enclosure: | 667 | <dt>author</dt><dd>dozens sin leche</dd> |
639 | category: | 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> |
650 | timestamp: 1660432338 | 680 | <dl> |
651 | title: [linkbudz rss feed] How can Santa keep his lists when the GDPR is around? | 681 | <dt>timestamp</dt><dd>1660432338</dd> |
652 | link: 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> |
653 | content_type: html | 683 | <dt>link</dt><dd>https://worldbuilding.stackexchange.com/q/114033</dd> |
654 | id: lucidiot20220813231218 | 684 | <dt>content_type</dt><dd>html</dd> |
655 | author: | 685 | <dt>id</dt><dd>lucidiot20220813231218</dd> |
656 | enclosure: | 686 | <dt>author</dt><dd></dd> |
657 | category: 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> |
667 | timestamp: 1660428000 | 699 | <dl> |
668 | title: [Brainshit] Blog-Driven Development | 700 | <dt>timestamp</dt><dd>1660428000</dd> |
669 | link: https://brainshit.fr/read/314 | 701 | <dt>title</dt><dd>[Brainshit] Blog-Driven Development</dd> |
670 | content_type: html | 702 | <dt>link</dt><dd>https://brainshit.fr/read/314</dd> |
671 | id: https://brainshit.fr/read/314 | 703 | <dt>content_type</dt><dd>html</dd> |
672 | author: neuron@brainshit.fr (Lucidiot) | 704 | <dt>id</dt><dd>https://brainshit.fr/read/314</dd> |
673 | enclosure: | 705 | <dt>author</dt><dd>neuron@brainshit.fr (Lucidiot)</dd> |
674 | category: 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> |
685 | timestamp: 1660254767 | 718 | <dl> |
686 | title: [linkbudz rss feed] writing an xml schema validator in… xml | 719 | <dt>timestamp</dt><dd>1660254767</dd> |
687 | link: https://www.saxonica.com/papers/markupuk-2018mhk.pdf | 720 | <dt>title</dt><dd>[linkbudz rss feed] writing an xml schema validator in… xml</dd> |
688 | content_type: html | 721 | <dt>link</dt><dd>https://www.saxonica.com/papers/markupuk-2018mhk.pdf</dd> |
689 | id: lucidiot20220811215247 | 722 | <dt>content_type</dt><dd>html</dd> |
690 | author: | 723 | <dt>id</dt><dd>lucidiot20220811215247</dd> |
691 | enclosure: | 724 | <dt>author</dt><dd></dd> |
692 | category: 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> |
703 | timestamp: 1660250944 | 737 | <dl> |
704 | title: [linkbudz rss feed] A Picture of a Hot Dog | 738 | <dt>timestamp</dt><dd>1660250944</dd> |
705 | link: https://www.pictureofhotdog.com/ | 739 | <dt>title</dt><dd>[linkbudz rss feed] A Picture of a Hot Dog</dd> |
706 | content_type: html | 740 | <dt>link</dt><dd>https://www.pictureofhotdog.com/</dd> |
707 | id: acdw20220811204904 | 741 | <dt>content_type</dt><dd>html</dd> |
708 | author: | 742 | <dt>id</dt><dd>acdw20220811204904</dd> |
709 | enclosure: | 743 | <dt>author</dt><dd></dd> |
710 | category: 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> |
721 | timestamp: 1660248227 | 756 | <dl> |
722 | title: [linkbudz rss feed] ansi tarot art | 757 | <dt>timestamp</dt><dd>1660248227</dd> |
723 | link: https://16colo.rs/pack/lbs-tarot/ | 758 | <dt>title</dt><dd>[linkbudz rss feed] ansi tarot art</dd> |
724 | content_type: html | 759 | <dt>link</dt><dd>https://16colo.rs/pack/lbs-tarot/</dd> |
725 | id: dozens20220811200347 | 760 | <dt>content_type</dt><dd>html</dd> |
726 | author: | 761 | <dt>id</dt><dd>dozens20220811200347</dd> |
727 | enclosure: | 762 | <dt>author</dt><dd></dd> |
728 | category: 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> |
739 | timestamp: 1660232892 | 775 | <dl> |
740 | title: [linkbudz rss feed] IRC bot written in Retro Forth | 776 | <dt>timestamp</dt><dd>1660232892</dd> |
741 | link: http://retroforth.org/examples/irc-bot.retro.html | 777 | <dt>title</dt><dd>[linkbudz rss feed] IRC bot written in Retro Forth</dd> |
742 | content_type: html | 778 | <dt>link</dt><dd>http://retroforth.org/examples/irc-bot.retro.html</dd> |
743 | id: wsinatra20220811154812 | 779 | <dt>content_type</dt><dd>html</dd> |
744 | author: | 780 | <dt>id</dt><dd>wsinatra20220811154812</dd> |
745 | enclosure: | 781 | <dt>author</dt><dd></dd> |
746 | category: 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> |
757 | timestamp: 1660232253 | 794 | <dl> |
758 | title: [linkbudz rss feed] Gemini Server written in Retro Forth | 795 | <dt>timestamp</dt><dd>1660232253</dd> |
759 | link: http://retroforth.org/examples/atua-gemini.retro.html | 796 | <dt>title</dt><dd>[linkbudz rss feed] Gemini Server written in Retro Forth</dd> |
760 | content_type: html | 797 | <dt>link</dt><dd>http://retroforth.org/examples/atua-gemini.retro.html</dd> |
761 | id: wsinatra20220811153733 | 798 | <dt>content_type</dt><dd>html</dd> |
762 | author: | 799 | <dt>id</dt><dd>wsinatra20220811153733</dd> |
763 | enclosure: | 800 | <dt>author</dt><dd></dd> |
764 | category: 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> |
775 | timestamp: 1660184500 | 813 | <dl> |
776 | title: [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> |
777 | link: 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> |
778 | content_type: html | 816 | <dt>link</dt><dd>https://github.com/ergochat/ergo/blob/stable/docs/USERGUIDE.md#always-on</dd> |
779 | id: m45520220811022140 | 817 | <dt>content_type</dt><dd>html</dd> |
780 | author: | 818 | <dt>id</dt><dd>m45520220811022140</dd> |
781 | enclosure: | 819 | <dt>author</dt><dd></dd> |
782 | category: 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> |
793 | timestamp: 1660165621 | 832 | <dl> |
794 | title: [linkbudz rss feed] the joy of smol projects | 833 | <dt>timestamp</dt><dd>1660165621</dd> |
795 | link: 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> |
796 | content_type: html | 835 | <dt>link</dt><dd>https://schroer.ca/2022/04/10/the-joy-of-small-projects/</dd> |
797 | id: lucidiot20220810210701 | 836 | <dt>content_type</dt><dd>html</dd> |
798 | author: | 837 | <dt>id</dt><dd>lucidiot20220810210701</dd> |
799 | enclosure: | 838 | <dt>author</dt><dd></dd> |
800 | category: 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> |
811 | timestamp: 1660117262 | 851 | <dl> |
812 | title: [linkbudz rss feed] leprd.space: free web hosting for hobbyists | 852 | <dt>timestamp</dt><dd>1660117262</dd> |
813 | link: https://leprd.space/ | 853 | <dt>title</dt><dd>[linkbudz rss feed] leprd.space: free web hosting for hobbyists</dd> |
814 | content_type: html | 854 | <dt>link</dt><dd>https://leprd.space/</dd> |
815 | id: m45520220810074102 | 855 | <dt>content_type</dt><dd>html</dd> |
816 | author: | 856 | <dt>id</dt><dd>m45520220810074102</dd> |
817 | enclosure: | 857 | <dt>author</dt><dd></dd> |
818 | category: 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> |
828 | timestamp: 1660104000 | 870 | <dl> |
829 | title: [Dozens and Dragons] Wicked Grin | 871 | <dt>timestamp</dt><dd>1660104000</dd> |
830 | link: https://dozensanddragons.neocities.org/31.html | 872 | <dt>title</dt><dd>[Dozens and Dragons] Wicked Grin</dd> |
831 | content_type: html | 873 | <dt>link</dt><dd>https://dozensanddragons.neocities.org/31.html</dd> |
832 | id: https://dozensanddragons.neocities.org/31.html | 874 | <dt>content_type</dt><dd>html</dd> |
833 | author: | 875 | <dt>id</dt><dd>https://dozensanddragons.neocities.org/31.html</dd> |
834 | enclosure: | 876 | <dt>author</dt><dd></dd> |
835 | category: | 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> |
846 | timestamp: 1660060603 | 889 | <dl> |
847 | title: [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> |
848 | link: 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> |
849 | content_type: html | 892 | <dt>link</dt><dd>https://friends.m455.casa/</dd> |
850 | id: m45520220809155643 | 893 | <dt>content_type</dt><dd>html</dd> |
851 | author: | 894 | <dt>id</dt><dd>m45520220809155643</dd> |
852 | enclosure: | 895 | <dt>author</dt><dd></dd> |
853 | category: 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> |
864 | timestamp: 1660010615 | 908 | <dl> |
865 | title: [linkbudz rss feed] acdw has a new authoring tool and markup language! | 909 | <dt>timestamp</dt><dd>1660010615</dd> |
866 | link: https://git.acdw.net/ht | 910 | <dt>title</dt><dd>[linkbudz rss feed] acdw has a new authoring tool and markup language!</dd> |
867 | content_type: html | 911 | <dt>link</dt><dd>https://git.acdw.net/ht</dd> |
868 | id: m45520220809020335 | 912 | <dt>content_type</dt><dd>html</dd> |
869 | author: | 913 | <dt>id</dt><dd>m45520220809020335</dd> |
870 | enclosure: | 914 | <dt>author</dt><dd></dd> |
871 | category: 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> |
882 | timestamp: 1659979984 | 927 | <dl> |
883 | title: [linkbudz rss feed] Gemini/Gopher simple intro | 928 | <dt>timestamp</dt><dd>1659979984</dd> |
884 | link: https://thedorkweb.substack.com/p/gopher-gemini-and-the-smol-internet | 929 | <dt>title</dt><dd>[linkbudz rss feed] Gemini/Gopher simple intro</dd> |
885 | content_type: html | 930 | <dt>link</dt><dd>https://thedorkweb.substack.com/p/gopher-gemini-and-the-smol-internet</dd> |
886 | id: wsinatra20220808173304 | 931 | <dt>content_type</dt><dd>html</dd> |
887 | author: | 932 | <dt>id</dt><dd>wsinatra20220808173304</dd> |
888 | enclosure: | 933 | <dt>author</dt><dd></dd> |
889 | category: 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> |
900 | timestamp: 1659979886 | 946 | <dl> |
901 | title: [linkbudz rss feed] EFF Defcon 30 appearances | 947 | <dt>timestamp</dt><dd>1659979886</dd> |
902 | link: 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> |
903 | content_type: html | 949 | <dt>link</dt><dd>https://www.eff.org/deeplinks/2022/07/hacking-future-def-con-30</dd> |
904 | id: wsinatra20220808173126 | 950 | <dt>content_type</dt><dd>html</dd> |
905 | author: | 951 | <dt>id</dt><dd>wsinatra20220808173126</dd> |
906 | enclosure: | 952 | <dt>author</dt><dd></dd> |
907 | category: 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> |
918 | timestamp: 1659963300 | 965 | <dl> |
919 | title: [linkbudz rss feed] proposing a 'systems' lisp | 966 | <dt>timestamp</dt><dd>1659963300</dd> |
920 | link: https://dustycloud.org/blog/guile-steel-proposal/ | 967 | <dt>title</dt><dd>[linkbudz rss feed] proposing a 'systems' lisp</dd> |
921 | content_type: html | 968 | <dt>link</dt><dd>https://dustycloud.org/blog/guile-steel-proposal/</dd> |
922 | id: dozens20220808125500 | 969 | <dt>content_type</dt><dd>html</dd> |
923 | author: | 970 | <dt>id</dt><dd>dozens20220808125500</dd> |
924 | enclosure: | 971 | <dt>author</dt><dd></dd> |
925 | category: 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 |
1091 | view it <a href="https://git.m455.casa/lol">here</a>.</p></div> | 1140 | view 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> |
1093 | timestamp: 1659916800 | 1142 | <dl> |
1094 | title: [m455.casa] meet lol, my new website generator! | 1143 | <dt>timestamp</dt><dd>1659916800</dd> |
1095 | link: 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> |
1096 | content_type: html | 1145 | <dt>link</dt><dd>https://m455.casa/posts/2022/meet-lol-my-new-website-generator.html</dd> |
1097 | id: https://m455.casa/posts/2022/meet-lol-my-new-website-generator.html | 1146 | <dt>content_type</dt><dd>html</dd> |
1098 | author: | 1147 | <dt>id</dt><dd>https://m455.casa/posts/2022/meet-lol-my-new-website-generator.html</dd> |
1099 | enclosure: | 1148 | <dt>author</dt><dd></dd> |
1100 | category: | 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> |
1118 | timestamp: 1659914883 | 1168 | <dl> |
1119 | title: [RSRSSS] Gitea has most feeds, except the most important one | 1169 | <dt>timestamp</dt><dd>1659914883</dd> |
1120 | link: | 1170 | <dt>title</dt><dd>[RSRSSS] Gitea has most feeds, except the most important one</dd> |
1121 | content_type: html | 1171 | <dt>link</dt><dd></dd> |
1122 | id: gitea-most-feeds | 1172 | <dt>content_type</dt><dd>html</dd> |
1123 | author: | 1173 | <dt>id</dt><dd>gitea-most-feeds</dd> |
1124 | enclosure: | 1174 | <dt>author</dt><dd></dd> |
1125 | category: 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> |
1136 | timestamp: 1659707012 | 1187 | <dl> |
1137 | title: [linkbudz rss feed] CISA 2021 Top Malware Strains | 1188 | <dt>timestamp</dt><dd>1659707012</dd> |
1138 | link: https://www.cisa.gov/uscert/ncas/alerts/aa22-216a | 1189 | <dt>title</dt><dd>[linkbudz rss feed] CISA 2021 Top Malware Strains</dd> |
1139 | content_type: html | 1190 | <dt>link</dt><dd>https://www.cisa.gov/uscert/ncas/alerts/aa22-216a</dd> |
1140 | id: wsinatra20220805134332 | 1191 | <dt>content_type</dt><dd>html</dd> |
1141 | author: | 1192 | <dt>id</dt><dd>wsinatra20220805134332</dd> |
1142 | enclosure: | 1193 | <dt>author</dt><dd></dd> |
1143 | category: 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> |
1154 | timestamp: 1659650190 | 1206 | <dl> |
1155 | title: [linkbudz rss feed] How to surf the web | 1207 | <dt>timestamp</dt><dd>1659650190</dd> |
1156 | link: https://sadgrl.online/cyberspace/surf-the-web.html | 1208 | <dt>title</dt><dd>[linkbudz rss feed] How to surf the web</dd> |
1157 | content_type: html | 1209 | <dt>link</dt><dd>https://sadgrl.online/cyberspace/surf-the-web.html</dd> |
1158 | id: mio20220804215630 | 1210 | <dt>content_type</dt><dd>html</dd> |
1159 | author: | 1211 | <dt>id</dt><dd>mio20220804215630</dd> |
1160 | enclosure: | 1212 | <dt>author</dt><dd></dd> |
1161 | category: 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> |
1172 | timestamp: 1659633296 | 1225 | <dl> |
1173 | title: [linkbudz rss feed] oh god, rss3 is coming | 1226 | <dt>timestamp</dt><dd>1659633296</dd> |
1174 | link: https://blog.rss3.io/ | 1227 | <dt>title</dt><dd>[linkbudz rss feed] oh god, rss3 is coming</dd> |
1175 | content_type: html | 1228 | <dt>link</dt><dd>https://blog.rss3.io/</dd> |
1176 | id: acdw20220804171456 | 1229 | <dt>content_type</dt><dd>html</dd> |
1177 | author: | 1230 | <dt>id</dt><dd>acdw20220804171456</dd> |
1178 | enclosure: | 1231 | <dt>author</dt><dd></dd> |
1179 | category: 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> |
1190 | timestamp: 1659621190 | 1244 | <dl> |
1191 | title: [linkbudz rss feed] Simple CA Tutorial | 1245 | <dt>timestamp</dt><dd>1659621190</dd> |
1192 | link: https://jamielinux.com/docs/openssl-certificate-authority/introduction.html | 1246 | <dt>title</dt><dd>[linkbudz rss feed] Simple CA Tutorial</dd> |
1193 | content_type: html | 1247 | <dt>link</dt><dd>https://jamielinux.com/docs/openssl-certificate-authority/introduction.html</dd> |
1194 | id: wsinatra20220804135310 | 1248 | <dt>content_type</dt><dd>html</dd> |
1195 | author: | 1249 | <dt>id</dt><dd>wsinatra20220804135310</dd> |
1196 | enclosure: | 1250 | <dt>author</dt><dd></dd> |
1197 | category: 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> |
1208 | timestamp: 1659557326 | 1263 | <dl> |
1209 | title: [linkbudz rss feed] Wazuh, an open source SIEM platform | 1264 | <dt>timestamp</dt><dd>1659557326</dd> |
1210 | link: https://wazuh.com/ | 1265 | <dt>title</dt><dd>[linkbudz rss feed] Wazuh, an open source SIEM platform</dd> |
1211 | content_type: html | 1266 | <dt>link</dt><dd>https://wazuh.com/</dd> |
1212 | id: wsinatra20220803200846 | 1267 | <dt>content_type</dt><dd>html</dd> |
1213 | author: | 1268 | <dt>id</dt><dd>wsinatra20220803200846</dd> |
1214 | enclosure: | 1269 | <dt>author</dt><dd></dd> |
1215 | category: 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> |
1226 | timestamp: 1659556751 | 1282 | <dl> |
1227 | title: [linkbudz rss feed] Google map hacks | 1283 | <dt>timestamp</dt><dd>1659556751</dd> |
1228 | link: http://www.simonweckert.com/googlemapshacks.html | 1284 | <dt>title</dt><dd>[linkbudz rss feed] Google map hacks</dd> |
1229 | content_type: html | 1285 | <dt>link</dt><dd>http://www.simonweckert.com/googlemapshacks.html</dd> |
1230 | id: m45520220803195911 | 1286 | <dt>content_type</dt><dd>html</dd> |
1231 | author: | 1287 | <dt>id</dt><dd>m45520220803195911</dd> |
1232 | enclosure: | 1288 | <dt>author</dt><dd></dd> |
1233 | category: 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> |
1244 | timestamp: 1659546117 | 1301 | <dl> |
1245 | title: [linkbudz rss feed] cursed software bugs, with rss feed | 1302 | <dt>timestamp</dt><dd>1659546117</dd> |
1246 | link: https://500mile.email/ | 1303 | <dt>title</dt><dd>[linkbudz rss feed] cursed software bugs, with rss feed</dd> |
1247 | content_type: html | 1304 | <dt>link</dt><dd>https://500mile.email/</dd> |
1248 | id: lucidiot20220803170157 | 1305 | <dt>content_type</dt><dd>html</dd> |
1249 | author: | 1306 | <dt>id</dt><dd>lucidiot20220803170157</dd> |
1250 | enclosure: | 1307 | <dt>author</dt><dd></dd> |
1251 | category: 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> |
1262 | timestamp: 1659546065 | 1320 | <dl> |
1263 | title: [linkbudz rss feed] We can't send email more than 500 miles | 1321 | <dt>timestamp</dt><dd>1659546065</dd> |
1264 | link: 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> |
1265 | content_type: html | 1323 | <dt>link</dt><dd>https://web.mit.edu/jemorris/humor/500-miles</dd> |
1266 | id: wsinatra20220803170105 | 1324 | <dt>content_type</dt><dd>html</dd> |
1267 | author: | 1325 | <dt>id</dt><dd>wsinatra20220803170105</dd> |
1268 | enclosure: | 1326 | <dt>author</dt><dd></dd> |
1269 | category: 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> |
1280 | timestamp: 1659546000 | 1339 | <dl> |
1281 | title: [linkbudz rss feed] if you type in your pw, it will show as stars | 1340 | <dt>timestamp</dt><dd>1659546000</dd> |
1282 | link: http://bash.org/?244321 | 1341 | <dt>title</dt><dd>[linkbudz rss feed] if you type in your pw, it will show as stars</dd> |
1283 | content_type: html | 1342 | <dt>link</dt><dd>http://bash.org/?244321</dd> |
1284 | id: wsinatra20220803170000 | 1343 | <dt>content_type</dt><dd>html</dd> |
1285 | author: | 1344 | <dt>id</dt><dd>wsinatra20220803170000</dd> |
1286 | enclosure: | 1345 | <dt>author</dt><dd></dd> |
1287 | category: 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> |
1298 | timestamp: 1659533694 | 1358 | <dl> |
1299 | title: [linkbudz rss feed] RAID is not a policing method | 1359 | <dt>timestamp</dt><dd>1659533694</dd> |
1300 | link: https://en.wikipedia.org/wiki/Standard_RAID_levels | 1360 | <dt>title</dt><dd>[linkbudz rss feed] RAID is not a policing method</dd> |
1301 | content_type: html | 1361 | <dt>link</dt><dd>https://en.wikipedia.org/wiki/Standard_RAID_levels</dd> |
1302 | id: wsinatra20220803133454 | 1362 | <dt>content_type</dt><dd>html</dd> |
1303 | author: | 1363 | <dt>id</dt><dd>wsinatra20220803133454</dd> |
1304 | enclosure: | 1364 | <dt>author</dt><dd></dd> |
1305 | category: 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> |
1316 | timestamp: 1659533332 | 1377 | <dl> |
1317 | title: [linkbudz rss feed] the french police is not a backup. | 1378 | <dt>timestamp</dt><dd>1659533332</dd> |
1318 | link: 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> |
1319 | content_type: html | 1380 | <dt>link</dt><dd>https://en.wikipedia.org/wiki/RAID_(French_police_unit)</dd> |
1320 | id: lucidiot20220803132852 | 1381 | <dt>content_type</dt><dd>html</dd> |
1321 | author: | 1382 | <dt>id</dt><dd>lucidiot20220803132852</dd> |
1322 | enclosure: | 1383 | <dt>author</dt><dd></dd> |
1323 | category: 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> |
1355 | timestamp: 1659528000 | 1418 | <dl> |
1356 | title: [Lowtech Radio Gazette] The Hardest Part | 1419 | <dt>timestamp</dt><dd>1659528000</dd> |
1357 | link: https://lambdacreate.com/podcast/ltrg/1 | 1420 | <dt>title</dt><dd>[Lowtech Radio Gazette] The Hardest Part</dd> |
1358 | content_type: html | 1421 | <dt>link</dt><dd>https://lambdacreate.com/podcast/ltrg/1</dd> |
1359 | id: ltrg-1 | 1422 | <dt>content_type</dt><dd>html</dd> |
1360 | author: | 1423 | <dt>id</dt><dd>ltrg-1</dd> |
1361 | enclosure: https://lambdacreate.com/static/ltrg/ltrg-1.mp3 | 1424 | <dt>author</dt><dd></dd> |
1362 | category: | 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> |
1373 | timestamp: 1659509363 | 1437 | <dl> |
1374 | title: [linkbudz rss feed] a blog about plaintext | 1438 | <dt>timestamp</dt><dd>1659509363</dd> |
1375 | link: https://plaintextproject.online/ | 1439 | <dt>title</dt><dd>[linkbudz rss feed] a blog about plaintext</dd> |
1376 | content_type: html | 1440 | <dt>link</dt><dd>https://plaintextproject.online/</dd> |
1377 | id: lucidiot20220803064923 | 1441 | <dt>content_type</dt><dd>html</dd> |
1378 | author: | 1442 | <dt>id</dt><dd>lucidiot20220803064923</dd> |
1379 | enclosure: | 1443 | <dt>author</dt><dd></dd> |
1380 | category: 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> |
1391 | timestamp: 1659509331 | 1456 | <dl> |
1392 | title: [linkbudz rss feed] smol Windows, Palm OS and OSX apps | 1457 | <dt>timestamp</dt><dd>1659509331</dd> |
1393 | link: https://tinyapps.org/ | 1458 | <dt>title</dt><dd>[linkbudz rss feed] smol Windows, Palm OS and OSX apps</dd> |
1394 | content_type: html | 1459 | <dt>link</dt><dd>https://tinyapps.org/</dd> |
1395 | id: lucidiot20220803064851 | 1460 | <dt>content_type</dt><dd>html</dd> |
1396 | author: | 1461 | <dt>id</dt><dd>lucidiot20220803064851</dd> |
1397 | enclosure: | 1462 | <dt>author</dt><dd></dd> |
1398 | category: 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> |
1409 | timestamp: 1659455230 | 1475 | <dl> |
1410 | title: [linkbudz rss feed] Interneting is Hard - webdev tutorials for beginners | 1476 | <dt>timestamp</dt><dd>1659455230</dd> |
1411 | link: https://www.internetingishard.com/ | 1477 | <dt>title</dt><dd>[linkbudz rss feed] Interneting is Hard - webdev tutorials for beginners</dd> |
1412 | content_type: html | 1478 | <dt>link</dt><dd>https://www.internetingishard.com/</dd> |
1413 | id: mio20220802154710 | 1479 | <dt>content_type</dt><dd>html</dd> |
1414 | author: | 1480 | <dt>id</dt><dd>mio20220802154710</dd> |
1415 | enclosure: | 1481 | <dt>author</dt><dd></dd> |
1416 | category: 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> |
1427 | timestamp: 1659450727 | 1494 | <dl> |
1428 | title: [linkbudz rss feed] a 'quick and dirty' literate programming tool in awk | 1495 | <dt>timestamp</dt><dd>1659450727</dd> |
1429 | link: https://acdw.casa/docawk/ | 1496 | <dt>title</dt><dd>[linkbudz rss feed] a 'quick and dirty' literate programming tool in awk</dd> |
1430 | content_type: html | 1497 | <dt>link</dt><dd>https://acdw.casa/docawk/</dd> |
1431 | id: acdw20220802143207 | 1498 | <dt>content_type</dt><dd>html</dd> |
1432 | author: | 1499 | <dt>id</dt><dd>acdw20220802143207</dd> |
1433 | enclosure: | 1500 | <dt>author</dt><dd></dd> |
1434 | category: 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> |
1445 | timestamp: 1659380358 | 1513 | <dl> |
1446 | title: [linkbudz rss feed] Wikipedia is a quality resource | 1514 | <dt>timestamp</dt><dd>1659380358</dd> |
1447 | link: https://en.wikipedia.org/wiki/Category:Wikipedia_slapping_templates | 1515 | <dt>title</dt><dd>[linkbudz rss feed] Wikipedia is a quality resource</dd> |
1448 | content_type: html | 1516 | <dt>link</dt><dd>https://en.wikipedia.org/wiki/Category:Wikipedia_slapping_templates</dd> |
1449 | id: lucidiot20220801185918 | 1517 | <dt>content_type</dt><dd>html</dd> |
1450 | author: | 1518 | <dt>id</dt><dd>lucidiot20220801185918</dd> |
1451 | enclosure: | 1519 | <dt>author</dt><dd></dd> |
1452 | category: 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> |
1463 | timestamp: 1659372207 | 1532 | <dl> |
1464 | title: [linkbudz rss feed] The free and healthy typeface for bread and butter use | 1533 | <dt>timestamp</dt><dd>1659372207</dd> |
1465 | link: http://vollkorn-typeface.com/ | 1534 | <dt>title</dt><dd>[linkbudz rss feed] The free and healthy typeface for bread and butter use</dd> |
1466 | content_type: html | 1535 | <dt>link</dt><dd>http://vollkorn-typeface.com/</dd> |
1467 | id: dozens20220801164327 | 1536 | <dt>content_type</dt><dd>html</dd> |
1468 | author: | 1537 | <dt>id</dt><dd>dozens20220801164327</dd> |
1469 | enclosure: | 1538 | <dt>author</dt><dd></dd> |
1470 | category: 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> |
1481 | timestamp: 1659370095 | 1551 | <dl> |
1482 | title: [linkbudz rss feed] Open letter to Google Security team from a librarian (warning: GDocs link) | 1552 | <dt>timestamp</dt><dd>1659370095</dd> |
1483 | link: 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> |
1484 | content_type: html | 1554 | <dt>link</dt><dd>https://docs.google.com/document/d/1f6HPQbUjslcbjVHkJkAgYmQmBV3PRRHEcx4WL5rxuE8/preview</dd> |
1485 | id: acdw20220801160815 | 1555 | <dt>content_type</dt><dd>html</dd> |
1486 | author: | 1556 | <dt>id</dt><dd>acdw20220801160815</dd> |
1487 | enclosure: | 1557 | <dt>author</dt><dd></dd> |
1488 | category: 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> |
1498 | timestamp: 1659218400 | 1570 | <dl> |
1499 | title: [Brainshit] Les assistants Web de Windows XP | 1571 | <dt>timestamp</dt><dd>1659218400</dd> |
1500 | link: https://brainshit.fr/read/308 | 1572 | <dt>title</dt><dd>[Brainshit] Les assistants Web de Windows XP</dd> |
1501 | content_type: html | 1573 | <dt>link</dt><dd>https://brainshit.fr/read/308</dd> |
1502 | id: https://brainshit.fr/read/308 | 1574 | <dt>content_type</dt><dd>html</dd> |
1503 | author: neuron@brainshit.fr (Lucidiot) | 1575 | <dt>id</dt><dd>https://brainshit.fr/read/308</dd> |
1504 | enclosure: | 1576 | <dt>author</dt><dd>neuron@brainshit.fr (Lucidiot)</dd> |
1505 | category: 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> |
1516 | timestamp: 1659101991 | 1589 | <dl> |
1517 | title: [linkbudz rss feed] Simple Firewalls with iptables | 1590 | <dt>timestamp</dt><dd>1659101991</dd> |
1518 | link: http://lambdacreate.com/posts/37 | 1591 | <dt>title</dt><dd>[linkbudz rss feed] Simple Firewalls with iptables</dd> |
1519 | content_type: html | 1592 | <dt>link</dt><dd>http://lambdacreate.com/posts/37</dd> |
1520 | id: wsinatra20220729133951 | 1593 | <dt>content_type</dt><dd>html</dd> |
1521 | author: | 1594 | <dt>id</dt><dd>wsinatra20220729133951</dd> |
1522 | enclosure: | 1595 | <dt>author</dt><dd></dd> |
1523 | category: 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> |
1534 | timestamp: 1659101724 | 1608 | <dl> |
1535 | title: [linkbudz rss feed] The Old School Computer Challenge Rules! | 1609 | <dt>timestamp</dt><dd>1659101724</dd> |
1536 | link: 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> |
1537 | content_type: html | 1611 | <dt>link</dt><dd>https://dataswamp.org/~solene/2021-07-07-old-computer-challenge.html</dd> |
1538 | id: wsinatra20220729133524 | 1612 | <dt>content_type</dt><dd>html</dd> |
1539 | author: | 1613 | <dt>id</dt><dd>wsinatra20220729133524</dd> |
1540 | enclosure: | 1614 | <dt>author</dt><dd></dd> |
1541 | category: 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> |
1552 | timestamp: 1659101325 | 1627 | <dl> |
1553 | title: [linkbudz rss feed] Mess with DNS | 1628 | <dt>timestamp</dt><dd>1659101325</dd> |
1554 | link: https://jvns.ca/blog/2021/12/15/mess-with-dns/ | 1629 | <dt>title</dt><dd>[linkbudz rss feed] Mess with DNS</dd> |
1555 | content_type: html | 1630 | <dt>link</dt><dd>https://jvns.ca/blog/2021/12/15/mess-with-dns/</dd> |
1556 | id: wsinatra20220729132845 | 1631 | <dt>content_type</dt><dd>html</dd> |
1557 | author: | 1632 | <dt>id</dt><dd>wsinatra20220729132845</dd> |
1558 | enclosure: | 1633 | <dt>author</dt><dd></dd> |
1559 | category: 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> |
1570 | timestamp: 1659101292 | 1646 | <dl> |
1571 | title: [linkbudz rss feed] Quirky DNS overview | 1647 | <dt>timestamp</dt><dd>1659101292</dd> |
1572 | link: 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> |
1573 | content_type: html | 1649 | <dt>link</dt><dd>https://jvns.ca/blog/2022/02/01/a-dns-resolver-in-80-lines-of-go/</dd> |
1574 | id: wsinatra20220729132812 | 1650 | <dt>content_type</dt><dd>html</dd> |
1575 | author: | 1651 | <dt>id</dt><dd>wsinatra20220729132812</dd> |
1576 | enclosure: | 1652 | <dt>author</dt><dd></dd> |
1577 | category: 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> |
1588 | timestamp: 1659100757 | 1665 | <dl> |
1589 | title: [linkbudz rss feed] Firecracker VM | 1666 | <dt>timestamp</dt><dd>1659100757</dd> |
1590 | link: 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> |
1591 | content_type: html | 1668 | <dt>link</dt><dd>https://jvns.ca/blog/2021/01/23/firecracker--start-a-vm-in-less-than-a-second/</dd> |
1592 | id: wsinatra20220729131917 | 1669 | <dt>content_type</dt><dd>html</dd> |
1593 | author: | 1670 | <dt>id</dt><dd>wsinatra20220729131917</dd> |
1594 | enclosure: | 1671 | <dt>author</dt><dd></dd> |
1595 | category: 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> |
1606 | timestamp: 1659052448 | 1684 | <dl> |
1607 | title: [linkbudz rss feed] Recutils, GOOPS and virtual slots | 1685 | <dt>timestamp</dt><dd>1659052448</dd> |
1608 | link: 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> |
1609 | content_type: html | 1687 | <dt>link</dt><dd>https://ane.iki.fi/lisp/goops-virtual-slots-and-ffi.html</dd> |
1610 | id: dozens20220728235408 | 1688 | <dt>content_type</dt><dd>html</dd> |
1611 | author: | 1689 | <dt>id</dt><dd>dozens20220728235408</dd> |
1612 | enclosure: | 1690 | <dt>author</dt><dd></dd> |
1613 | category: 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> |
1624 | timestamp: 1659030089 | 1703 | <dl> |
1625 | title: [linkbudz rss feed] Calendar handling with mutt | 1704 | <dt>timestamp</dt><dd>1659030089</dd> |
1626 | link: 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> |
1627 | content_type: html | 1706 | <dt>link</dt><dd>https://dacav.roundhousecode.com/blog/2019-11/09-mutt-calendar-and-such.html</dd> |
1628 | id: wsinatra20220728174129 | 1707 | <dt>content_type</dt><dd>html</dd> |
1629 | author: | 1708 | <dt>id</dt><dd>wsinatra20220728174129</dd> |
1630 | enclosure: | 1709 | <dt>author</dt><dd></dd> |
1631 | category: 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> |
1642 | timestamp: 1659029764 | 1722 | <dl> |
1643 | title: [linkbudz rss feed] charmbracelet goodness for shell scripts without go | 1723 | <dt>timestamp</dt><dd>1659029764</dd> |
1644 | link: https://github.com/charmbracelet/gum | 1724 | <dt>title</dt><dd>[linkbudz rss feed] charmbracelet goodness for shell scripts without go</dd> |
1645 | content_type: html | 1725 | <dt>link</dt><dd>https://github.com/charmbracelet/gum</dd> |
1646 | id: dozens20220728173604 | 1726 | <dt>content_type</dt><dd>html</dd> |
1647 | author: | 1727 | <dt>id</dt><dd>dozens20220728173604</dd> |
1648 | enclosure: | 1728 | <dt>author</dt><dd></dd> |
1649 | category: 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> |
1660 | timestamp: 1659017104 | 1741 | <dl> |
1661 | title: [linkbudz rss feed] AI Protein Folding? Nifty. | 1742 | <dt>timestamp</dt><dd>1659017104</dd> |
1662 | link: 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> |
1663 | content_type: html | 1744 | <dt>link</dt><dd>https://www.deepmind.com/blog/alphafold-reveals-the-structure-of-the-protein-universe</dd> |
1664 | id: marcus20220728140504 | 1745 | <dt>content_type</dt><dd>html</dd> |
1665 | author: | 1746 | <dt>id</dt><dd>marcus20220728140504</dd> |
1666 | enclosure: | 1747 | <dt>author</dt><dd></dd> |
1667 | category: 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> |
1678 | timestamp: 1659016198 | 1760 | <dl> |
1679 | title: [linkbudz rss feed] Velocipedia - bicycles based on people's attempts to draw them from memory | 1761 | <dt>timestamp</dt><dd>1659016198</dd> |
1680 | link: 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> |
1681 | content_type: html | 1763 | <dt>link</dt><dd>https://www.gianlucagimini.it/portfolio-item/velocipedia/</dd> |
1682 | id: mio20220728134958 | 1764 | <dt>content_type</dt><dd>html</dd> |
1683 | author: | 1765 | <dt>id</dt><dd>mio20220728134958</dd> |
1684 | enclosure: | 1766 | <dt>author</dt><dd></dd> |
1685 | category: 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> |
1696 | timestamp: 1658972062 | 1779 | <dl> |
1697 | title: [linkbudz rss feed] Zero to chiptune in one hour (2017) | 1780 | <dt>timestamp</dt><dd>1658972062</dd> |
1698 | link: 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> |
1699 | content_type: html | 1782 | <dt>link</dt><dd>https://media.ccc.de/v/SHA2017-175-zero_to_chiptune_in_one_hour</dd> |
1700 | id: mio20220728013422 | 1783 | <dt>content_type</dt><dd>html</dd> |
1701 | author: | 1784 | <dt>id</dt><dd>mio20220728013422</dd> |
1702 | enclosure: | 1785 | <dt>author</dt><dd></dd> |
1703 | category: 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> |
1714 | timestamp: 1658972022 | 1798 | <dl> |
1715 | title: [linkbudz rss feed] The Ultimate Amiga 500 Talk: Amiga Hardware Design and Programming (2015) | 1799 | <dt>timestamp</dt><dd>1658972022</dd> |
1716 | link: 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> |
1717 | content_type: html | 1801 | <dt>link</dt><dd>https://media.ccc.de/v/32c3-7468-the_ultimate_amiga_500_talk</dd> |
1718 | id: mio20220728013342 | 1802 | <dt>content_type</dt><dd>html</dd> |
1719 | author: | 1803 | <dt>id</dt><dd>mio20220728013342</dd> |
1720 | enclosure: | 1804 | <dt>author</dt><dd></dd> |
1721 | category: 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> |
1732 | timestamp: 1658971950 | 1817 | <dl> |
1733 | title: [linkbudz rss feed] The Ultimate Game Boy Talk (2016) | 1818 | <dt>timestamp</dt><dd>1658971950</dd> |
1734 | link: 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> |
1735 | content_type: html | 1820 | <dt>link</dt><dd>https://media.ccc.de/v/33c3-8029-the_ultimate_game_boy_talk</dd> |
1736 | id: mio20220728013230 | 1821 | <dt>content_type</dt><dd>html</dd> |
1737 | author: | 1822 | <dt>id</dt><dd>mio20220728013230</dd> |
1738 | enclosure: | 1823 | <dt>author</dt><dd></dd> |
1739 | category: 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> |
1750 | timestamp: 1658946453 | 1836 | <dl> |
1751 | title: [linkbudz rss feed] Cosmopolitan C | 1837 | <dt>timestamp</dt><dd>1658946453</dd> |
1752 | link: https://justine.lol/cosmopolitan/ | 1838 | <dt>title</dt><dd>[linkbudz rss feed] Cosmopolitan C</dd> |
1753 | content_type: html | 1839 | <dt>link</dt><dd>https://justine.lol/cosmopolitan/</dd> |
1754 | id: acdw20220727182733 | 1840 | <dt>content_type</dt><dd>html</dd> |
1755 | author: | 1841 | <dt>id</dt><dd>acdw20220727182733</dd> |
1756 | enclosure: | 1842 | <dt>author</dt><dd></dd> |
1757 | category: 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> |
1768 | timestamp: 1658933616 | 1855 | <dl> |
1769 | title: [linkbudz rss feed] The History of & | 1856 | <dt>timestamp</dt><dd>1658933616</dd> |
1770 | link: https://www.merriam-webster.com/words-at-play/the-history-of-ampersand | 1857 | <dt>title</dt><dd>[linkbudz rss feed] The History of &</dd> |
1771 | content_type: html | 1858 | <dt>link</dt><dd>https://www.merriam-webster.com/words-at-play/the-history-of-ampersand</dd> |
1772 | id: acdw20220727145336 | 1859 | <dt>content_type</dt><dd>html</dd> |
1773 | author: | 1860 | <dt>id</dt><dd>acdw20220727145336</dd> |
1774 | enclosure: | 1861 | <dt>author</dt><dd></dd> |
1775 | category: 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> |
1786 | timestamp: 1658877880 | 1874 | <dl> |
1787 | title: [linkbudz rss feed] TIC-80 byte jam | 1875 | <dt>timestamp</dt><dd>1658877880</dd> |
1788 | link: https://media.ccc.de/v/mch2022-226-tic-80-byte-jam | 1876 | <dt>title</dt><dd>[linkbudz rss feed] TIC-80 byte jam</dd> |
1789 | content_type: html | 1877 | <dt>link</dt><dd>https://media.ccc.de/v/mch2022-226-tic-80-byte-jam</dd> |
1790 | id: mio20220726232440 | 1878 | <dt>content_type</dt><dd>html</dd> |
1791 | author: | 1879 | <dt>id</dt><dd>mio20220726232440</dd> |
1792 | enclosure: | 1880 | <dt>author</dt><dd></dd> |
1793 | category: 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> |
1804 | timestamp: 1658877076 | 1893 | <dl> |
1805 | title: [linkbudz rss feed] Rocking the Web Bloat: Modern Gopher, Gemini and the Small Internet | 1894 | <dt>timestamp</dt><dd>1658877076</dd> |
1806 | link: 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> |
1807 | content_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> |
1808 | id: mio20220726231116 | 1897 | <dt>content_type</dt><dd>html</dd> |
1809 | author: | 1898 | <dt>id</dt><dd>mio20220726231116</dd> |
1810 | enclosure: | 1899 | <dt>author</dt><dd></dd> |
1811 | category: 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> |
1822 | timestamp: 1658867912 | 1912 | <dl> |
1823 | title: [linkbudz rss feed] plop a license in ur projects | 1913 | <dt>timestamp</dt><dd>1658867912</dd> |
1824 | link: https://git.acdw.net/licensor/ | 1914 | <dt>title</dt><dd>[linkbudz rss feed] plop a license in ur projects</dd> |
1825 | content_type: html | 1915 | <dt>link</dt><dd>https://git.acdw.net/licensor/</dd> |
1826 | id: acdw20220726203832 | 1916 | <dt>content_type</dt><dd>html</dd> |
1827 | author: | 1917 | <dt>id</dt><dd>acdw20220726203832</dd> |
1828 | enclosure: | 1918 | <dt>author</dt><dd></dd> |
1829 | category: 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> |
1840 | timestamp: 1658864880 | 1931 | <dl> |
1841 | title: [linkbudz rss feed] A doctor for your Palm PDAs | 1932 | <dt>timestamp</dt><dd>1658864880</dd> |
1842 | link: https://www.palmdr.com/cart/ | 1933 | <dt>title</dt><dd>[linkbudz rss feed] A doctor for your Palm PDAs</dd> |
1843 | content_type: html | 1934 | <dt>link</dt><dd>https://www.palmdr.com/cart/</dd> |
1844 | id: wsinatra20220726194800 | 1935 | <dt>content_type</dt><dd>html</dd> |
1845 | author: | 1936 | <dt>id</dt><dd>wsinatra20220726194800</dd> |
1846 | enclosure: | 1937 | <dt>author</dt><dd></dd> |
1847 | category: 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> |
1858 | timestamp: 1658864623 | 1950 | <dl> |
1859 | title: [linkbudz rss feed] rewrite it in rust, but in french | 1951 | <dt>timestamp</dt><dd>1658864623</dd> |
1860 | link: https://github.com/bnjbvr/rouille | 1952 | <dt>title</dt><dd>[linkbudz rss feed] rewrite it in rust, but in french</dd> |
1861 | content_type: html | 1953 | <dt>link</dt><dd>https://github.com/bnjbvr/rouille</dd> |
1862 | id: lucidiot20220726194343 | 1954 | <dt>content_type</dt><dd>html</dd> |
1863 | author: | 1955 | <dt>id</dt><dd>lucidiot20220726194343</dd> |
1864 | enclosure: | 1956 | <dt>author</dt><dd></dd> |
1865 | category: 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> |
1875 | timestamp: 1658786400 | 1969 | <dl> |
1876 | title: [Brainshit] Trouver des synonymes en craquant un orteil | 1970 | <dt>timestamp</dt><dd>1658786400</dd> |
1877 | link: https://brainshit.fr/read/312 | 1971 | <dt>title</dt><dd>[Brainshit] Trouver des synonymes en craquant un orteil</dd> |
1878 | content_type: html | 1972 | <dt>link</dt><dd>https://brainshit.fr/read/312</dd> |
1879 | id: https://brainshit.fr/read/312 | 1973 | <dt>content_type</dt><dd>html</dd> |
1880 | author: neuron@brainshit.fr (Lucidiot) | 1974 | <dt>id</dt><dd>https://brainshit.fr/read/312</dd> |
1881 | enclosure: | 1975 | <dt>author</dt><dd>neuron@brainshit.fr (Lucidiot)</dd> |
1882 | category: 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> |
1892 | timestamp: 1658721600 | 1988 | <dl> |
1893 | title: [Dozens and Dragons] It is Time To Plant The Beans | 1989 | <dt>timestamp</dt><dd>1658721600</dd> |
1894 | link: https://dozensanddragons.neocities.org/30.html | 1990 | <dt>title</dt><dd>[Dozens and Dragons] It is Time To Plant The Beans</dd> |
1895 | content_type: html | 1991 | <dt>link</dt><dd>https://dozensanddragons.neocities.org/30.html</dd> |
1896 | id: https://dozensanddragons.neocities.org/30.html | 1992 | <dt>content_type</dt><dd>html</dd> |
1897 | author: | 1993 | <dt>id</dt><dd>https://dozensanddragons.neocities.org/30.html</dd> |
1898 | enclosure: | 1994 | <dt>author</dt><dd></dd> |
1899 | category: | 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> |
1909 | timestamp: 1658707200 | 2007 | <dl> |
1910 | title: [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> |
1911 | link: 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> |
1912 | content_type: html | 2010 | <dt>link</dt><dd>https://tilde.town/~nihilazo/log/minecraftvillage.html</dd> |
1913 | id: https://tilde.town/~nihilazo/log/minecraftvillage.html | 2011 | <dt>content_type</dt><dd>html</dd> |
1914 | author: | 2012 | <dt>id</dt><dd>https://tilde.town/~nihilazo/log/minecraftvillage.html</dd> |
1915 | enclosure: | 2013 | <dt>author</dt><dd></dd> |
1916 | category: | 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> |
1999 | timestamp: 1658689932 | 2099 | <dl> |
2000 | title: [Tilde Whirl Tildeverse Podcast] episode 9 | 2100 | <dt>timestamp</dt><dd>1658689932</dd> |
2001 | link: https://tilde.town/~dozens/podcast/2022-07-24-episode-9-tomasino.html | 2101 | <dt>title</dt><dd>[Tilde Whirl Tildeverse Podcast] episode 9</dd> |
2002 | content_type: html | 2102 | <dt>link</dt><dd>https://tilde.town/~dozens/podcast/2022-07-24-episode-9-tomasino.html</dd> |
2003 | id: Thu, 24 July 2022 12:12:12 -0700 | 2103 | <dt>content_type</dt><dd>html</dd> |
2004 | author: | 2104 | <dt>id</dt><dd>Thu, 24 July 2022 12:12:12 -0700</dd> |
2005 | enclosure: https://archive.org/download/tilderwhirl-S01E01/tildewhirl-s01e09.mp3 | 2105 | <dt>author</dt><dd></dd> |
2006 | category: | 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> |
2016 | timestamp: 1658594619 | 2118 | <dl> |
2017 | title: [~lucidiot's wiki] Compiled Qt translations | 2119 | <dt>timestamp</dt><dd>1658594619</dd> |
2018 | link: https://envs.net/~lucidiot/qm.html | 2120 | <dt>title</dt><dd>[~lucidiot's wiki] Compiled Qt translations</dd> |
2019 | content_type: | 2121 | <dt>link</dt><dd>https://envs.net/~lucidiot/qm.html</dd> |
2020 | id: https://envs.net/~lucidiot/qm.html | 2122 | <dt>content_type</dt><dd></dd> |
2021 | author: | 2123 | <dt>id</dt><dd>https://envs.net/~lucidiot/qm.html</dd> |
2022 | enclosure: | 2124 | <dt>author</dt><dd></dd> |
2023 | category: | 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> |
2033 | timestamp: 1658594498 | 2137 | <dl> |
2034 | title: [~lucidiot's wiki] Agora Nomic | 2138 | <dt>timestamp</dt><dd>1658594498</dd> |
2035 | link: https://envs.net/~lucidiot/agoranomic.html | 2139 | <dt>title</dt><dd>[~lucidiot's wiki] Agora Nomic</dd> |
2036 | content_type: | 2140 | <dt>link</dt><dd>https://envs.net/~lucidiot/agoranomic.html</dd> |
2037 | id: https://envs.net/~lucidiot/agoranomic.html | 2141 | <dt>content_type</dt><dd></dd> |
2038 | author: | 2142 | <dt>id</dt><dd>https://envs.net/~lucidiot/agoranomic.html</dd> |
2039 | enclosure: | 2143 | <dt>author</dt><dd></dd> |
2040 | category: | 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> |
2185 | timestamp: 1658577600 | 2291 | <dl> |
2186 | title: [(lambda (x) (create x))] Simple Iptables Firewalls | 2292 | <dt>timestamp</dt><dd>1658577600</dd> |
2187 | link: https://lambdacreate.com/posts/37 | 2293 | <dt>title</dt><dd>[(lambda (x) (create x))] Simple Iptables Firewalls</dd> |
2188 | content_type: html | 2294 | <dt>link</dt><dd>https://lambdacreate.com/posts/37</dd> |
2189 | id: https://lambdacreate.com/posts/37 | 2295 | <dt>content_type</dt><dd>html</dd> |
2190 | author: | 2296 | <dt>id</dt><dd>https://lambdacreate.com/posts/37</dd> |
2191 | enclosure: | 2297 | <dt>author</dt><dd></dd> |
2192 | category: | 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> |
2203 | timestamp: 1658454815 | 2310 | <dl> |
2204 | title: [linkbudz rss feed] Racket Summer #lang Party | 2311 | <dt>timestamp</dt><dd>1658454815</dd> |
2205 | link: https://racket.discourse.group/t/summer-lang-party/1128 | 2312 | <dt>title</dt><dd>[linkbudz rss feed] Racket Summer #lang Party</dd> |
2206 | content_type: html | 2313 | <dt>link</dt><dd>https://racket.discourse.group/t/summer-lang-party/1128</dd> |
2207 | id: elioat20220722015335 | 2314 | <dt>content_type</dt><dd>html</dd> |
2208 | author: | 2315 | <dt>id</dt><dd>elioat20220722015335</dd> |
2209 | enclosure: | 2316 | <dt>author</dt><dd></dd> |
2210 | category: 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 | ||
2483 | Overall, 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> | 2592 | Overall, 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> |
2485 | timestamp: 1658436720 | 2594 | <dl> |
2486 | title: [~mio_gemlog] Old Computer Challenge, July 10-17 2022 | 2595 | <dt>timestamp</dt><dd>1658436720</dd> |
2487 | link: 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> |
2488 | content_type: plain | 2597 | <dt>link</dt><dd>gemini://tilde.town/~mio/log/2022-07-21-occ-2022.gmi</dd> |
2489 | id: gemini://tilde.town/~mio/log/2022-07-21-occ-2022.gmi | 2598 | <dt>content_type</dt><dd>plain</dd> |
2490 | author: mio | 2599 | <dt>id</dt><dd>gemini://tilde.town/~mio/log/2022-07-21-occ-2022.gmi</dd> |
2491 | enclosure: | 2600 | <dt>author</dt><dd>mio</dd> |
2492 | category: | 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> |
2503 | timestamp: 1658376499 | 2613 | <dl> |
2504 | title: [linkbudz rss feed] literate programming ish | 2614 | <dt>timestamp</dt><dd>1658376499</dd> |
2505 | link: https://rtomayko.github.io/shocco/ | 2615 | <dt>title</dt><dd>[linkbudz rss feed] literate programming ish</dd> |
2506 | content_type: html | 2616 | <dt>link</dt><dd>https://rtomayko.github.io/shocco/</dd> |
2507 | id: acdw20220721040819 | 2617 | <dt>content_type</dt><dd>html</dd> |
2508 | author: | 2618 | <dt>id</dt><dd>acdw20220721040819</dd> |
2509 | enclosure: | 2619 | <dt>author</dt><dd></dd> |
2510 | category: 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> |
2539 | timestamp: 1658370190 | 2651 | <dl> |
2540 | title: [blog __ ~ben] git diff-highlight | 2652 | <dt>timestamp</dt><dd>1658370190</dd> |
2541 | link: https://tilde.team/~ben/blog/git-diff-highlight.html | 2653 | <dt>title</dt><dd>[blog __ ~ben] git diff-highlight</dd> |
2542 | content_type: html | 2654 | <dt>link</dt><dd>https://tilde.team/~ben/blog/git-diff-highlight.html</dd> |
2543 | id: https://tilde.team/~ben/blog/git-diff-highlight.html | 2655 | <dt>content_type</dt><dd>html</dd> |
2544 | author: | 2656 | <dt>id</dt><dd>https://tilde.team/~ben/blog/git-diff-highlight.html</dd> |
2545 | enclosure: | 2657 | <dt>author</dt><dd></dd> |
2546 | category: | 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> |
2557 | timestamp: 1658363172 | 2670 | <dl> |
2558 | title: [linkbudz rss feed] How to setup aescbc secstore on plan9 | 2671 | <dt>timestamp</dt><dd>1658363172</dd> |
2559 | link: 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> |
2560 | content_type: html | 2673 | <dt>link</dt><dd>https://9p.io/wiki/plan9/Using_aescbc_to_store_factotum_keys/index.html</dd> |
2561 | id: wsinatra20220721002612 | 2674 | <dt>content_type</dt><dd>html</dd> |
2562 | author: | 2675 | <dt>id</dt><dd>wsinatra20220721002612</dd> |
2563 | enclosure: | 2676 | <dt>author</dt><dd></dd> |
2564 | category: 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> |
2575 | timestamp: 1658363123 | 2689 | <dl> |
2576 | title: [linkbudz rss feed] Jenga tower dice alternate for sttrpgs | 2690 | <dt>timestamp</dt><dd>1658363123</dd> |
2577 | link: 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> |
2578 | content_type: html | 2692 | <dt>link</dt><dd>https://itch.io/jam/wretched-jam/topic/796498/dice-substitute-for-jenga-towers</dd> |
2579 | id: wsinatra20220721002523 | 2693 | <dt>content_type</dt><dd>html</dd> |
2580 | author: | 2694 | <dt>id</dt><dd>wsinatra20220721002523</dd> |
2581 | enclosure: | 2695 | <dt>author</dt><dd></dd> |
2582 | category: 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> |
2593 | timestamp: 1658363062 | 2708 | <dl> |
2594 | title: [linkbudz rss feed] "Plan9 Desktop Guide!" | 2709 | <dt>timestamp</dt><dd>1658363062</dd> |
2595 | link: https://pspodcasting.net/dan/blog/2019/plan9_desktop.html | 2710 | <dt>title</dt><dd>[linkbudz rss feed] "Plan9 Desktop Guide!"</dd> |
2596 | content_type: html | 2711 | <dt>link</dt><dd>https://pspodcasting.net/dan/blog/2019/plan9_desktop.html</dd> |
2597 | id: wsinatra20220721002422 | 2712 | <dt>content_type</dt><dd>html</dd> |
2598 | author: | 2713 | <dt>id</dt><dd>wsinatra20220721002422</dd> |
2599 | enclosure: | 2714 | <dt>author</dt><dd></dd> |
2600 | category: 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> |
2611 | timestamp: 1658345113 | 2727 | <dl> |
2612 | title: [linkbudz rss feed] HOT DRINKS | 2728 | <dt>timestamp</dt><dd>1658345113</dd> |
2613 | link: https://www.youtube.com/watch?v=_ZXeFPpPJeI | 2729 | <dt>title</dt><dd>[linkbudz rss feed] HOT DRINKS</dd> |
2614 | content_type: html | 2730 | <dt>link</dt><dd>https://www.youtube.com/watch?v=_ZXeFPpPJeI</dd> |
2615 | id: acdw20220720192513 | 2731 | <dt>content_type</dt><dd>html</dd> |
2616 | author: | 2732 | <dt>id</dt><dd>acdw20220720192513</dd> |
2617 | enclosure: | 2733 | <dt>author</dt><dd></dd> |
2618 | category: 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> |
2629 | timestamp: 1658259306 | 2746 | <dl> |
2630 | title: [linkbudz rss feed] gators lol | 2747 | <dt>timestamp</dt><dd>1658259306</dd> |
2631 | link: https://twitter.com/GatorsDaily/status/1545215138332086274 | 2748 | <dt>title</dt><dd>[linkbudz rss feed] gators lol</dd> |
2632 | content_type: html | 2749 | <dt>link</dt><dd>https://twitter.com/GatorsDaily/status/1545215138332086274</dd> |
2633 | id: acdw20220719193506 | 2750 | <dt>content_type</dt><dd>html</dd> |
2634 | author: | 2751 | <dt>id</dt><dd>acdw20220719193506</dd> |
2635 | enclosure: | 2752 | <dt>author</dt><dd></dd> |
2636 | category: 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> |
2647 | timestamp: 1658198147 | 2765 | <dl> |
2648 | title: [linkbudz rss feed] paper airplane designs | 2766 | <dt>timestamp</dt><dd>1658198147</dd> |
2649 | link: https://www.foldnfly.com/ | 2767 | <dt>title</dt><dd>[linkbudz rss feed] paper airplane designs</dd> |
2650 | content_type: html | 2768 | <dt>link</dt><dd>https://www.foldnfly.com/</dd> |
2651 | id: dozens20220719023547 | 2769 | <dt>content_type</dt><dd>html</dd> |
2652 | author: | 2770 | <dt>id</dt><dd>dozens20220719023547</dd> |
2653 | enclosure: | 2771 | <dt>author</dt><dd></dd> |
2654 | category: 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> |
2665 | timestamp: 1658180624 | 2784 | <dl> |
2666 | title: [linkbudz rss feed] nofetch, a new fetch tool by acdw | 2785 | <dt>timestamp</dt><dd>1658180624</dd> |
2667 | link: https://git.acdw.net/nofetch/ | 2786 | <dt>title</dt><dd>[linkbudz rss feed] nofetch, a new fetch tool by acdw</dd> |
2668 | content_type: html | 2787 | <dt>link</dt><dd>https://git.acdw.net/nofetch/</dd> |
2669 | id: acdw20220718214344 | 2788 | <dt>content_type</dt><dd>html</dd> |
2670 | author: | 2789 | <dt>id</dt><dd>acdw20220718214344</dd> |
2671 | enclosure: | 2790 | <dt>author</dt><dd></dd> |
2672 | category: 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> |
2693 | timestamp: 1658176064 | 2814 | <dl> |
2694 | title: [p1k3::feed] monday, september 20, 2021 | 2815 | <dt>timestamp</dt><dd>1658176064</dd> |
2695 | link: https://p1k3.com/2021/9/20 | 2816 | <dt>title</dt><dd>[p1k3::feed] monday, september 20, 2021</dd> |
2696 | content_type: html | 2817 | <dt>link</dt><dd>https://p1k3.com/2021/9/20</dd> |
2697 | id: /2021/9/20 | 2818 | <dt>content_type</dt><dd>html</dd> |
2698 | author: | 2819 | <dt>id</dt><dd>/2021/9/20</dd> |
2699 | enclosure: | 2820 | <dt>author</dt><dd></dd> |
2700 | category: | 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> |
2711 | timestamp: 1658173878 | 2833 | <dl> |
2712 | title: [linkbudz rss feed] WordPerfect ... for UNIX ! | 2834 | <dt>timestamp</dt><dd>1658173878</dd> |
2713 | link: https://lock.cmpxchg8b.com/wordperfect.html | 2835 | <dt>title</dt><dd>[linkbudz rss feed] WordPerfect ... for UNIX !</dd> |
2714 | content_type: html | 2836 | <dt>link</dt><dd>https://lock.cmpxchg8b.com/wordperfect.html</dd> |
2715 | id: acdw20220718195118 | 2837 | <dt>content_type</dt><dd>html</dd> |
2716 | author: | 2838 | <dt>id</dt><dd>acdw20220718195118</dd> |
2717 | enclosure: | 2839 | <dt>author</dt><dd></dd> |
2718 | category: 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> |
2849 | timestamp: 1658145600 | 2973 | <dl> |
2850 | title: [(lambda (x) (create x))] Old School Computer Challenge 2022 | 2974 | <dt>timestamp</dt><dd>1658145600</dd> |
2851 | link: https://lambdacreate.com/posts/36 | 2975 | <dt>title</dt><dd>[(lambda (x) (create x))] Old School Computer Challenge 2022</dd> |
2852 | content_type: html | 2976 | <dt>link</dt><dd>https://lambdacreate.com/posts/36</dd> |
2853 | id: https://lambdacreate.com/posts/36 | 2977 | <dt>content_type</dt><dd>html</dd> |
2854 | author: | 2978 | <dt>id</dt><dd>https://lambdacreate.com/posts/36</dd> |
2855 | enclosure: | 2979 | <dt>author</dt><dd></dd> |
2856 | category: | 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> |
2866 | timestamp: 1658030400 | 2992 | <dl> |
2867 | title: [Dozens and Dragons] Thousand Year Old Vampire | 2993 | <dt>timestamp</dt><dd>1658030400</dd> |
2868 | link: https://dozensanddragons.neocities.org/29.html | 2994 | <dt>title</dt><dd>[Dozens and Dragons] Thousand Year Old Vampire</dd> |
2869 | content_type: html | 2995 | <dt>link</dt><dd>https://dozensanddragons.neocities.org/29.html</dd> |
2870 | id: https://dozensanddragons.neocities.org/29.html | 2996 | <dt>content_type</dt><dd>html</dd> |
2871 | author: | 2997 | <dt>id</dt><dd>https://dozensanddragons.neocities.org/29.html</dd> |
2872 | enclosure: | 2998 | <dt>author</dt><dd></dd> |
2873 | category: | 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> |
2883 | timestamp: 1658008800 | 3011 | <dl> |
2884 | title: [Brainshit] La version méconnue du texte bien connu, seconde partie | 3012 | <dt>timestamp</dt><dd>1658008800</dd> |
2885 | link: https://brainshit.fr/read/307 | 3013 | <dt>title</dt><dd>[Brainshit] La version méconnue du texte bien connu, seconde partie</dd> |
2886 | content_type: html | 3014 | <dt>link</dt><dd>https://brainshit.fr/read/307</dd> |
2887 | id: https://brainshit.fr/read/307 | 3015 | <dt>content_type</dt><dd>html</dd> |
2888 | author: neuron@brainshit.fr (Lucidiot) | 3016 | <dt>id</dt><dd>https://brainshit.fr/read/307</dd> |
2889 | enclosure: | 3017 | <dt>author</dt><dd>neuron@brainshit.fr (Lucidiot)</dd> |
2890 | category: 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> |
2901 | timestamp: 1657979669 | 3030 | <dl> |
2902 | title: [linkbudz rss feed] static site hosting from tildegit repos | 3031 | <dt>timestamp</dt><dd>1657979669</dd> |
2903 | link: https://tildepages.org/ | 3032 | <dt>title</dt><dd>[linkbudz rss feed] static site hosting from tildegit repos</dd> |
2904 | content_type: html | 3033 | <dt>link</dt><dd>https://tildepages.org/</dd> |
2905 | id: dozens20220716135429 | 3034 | <dt>content_type</dt><dd>html</dd> |
2906 | author: | 3035 | <dt>id</dt><dd>dozens20220716135429</dd> |
2907 | enclosure: | 3036 | <dt>author</dt><dd></dd> |
2908 | category: 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> |
2919 | timestamp: 1657898458 | 3049 | <dl> |
2920 | title: [linkbudz rss feed] writing and running a bbs on a Macintosh plus | 3050 | <dt>timestamp</dt><dd>1657898458</dd> |
2921 | link: 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> |
2922 | content_type: html | 3052 | <dt>link</dt><dd>https://jcs.org/2022/07/15/kludge</dd> |
2923 | id: elioat20220715152058 | 3053 | <dt>content_type</dt><dd>html</dd> |
2924 | author: | 3054 | <dt>id</dt><dd>elioat20220715152058</dd> |
2925 | enclosure: | 3055 | <dt>author</dt><dd></dd> |
2926 | category: 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> |
2936 | timestamp: 1657877322 | 3068 | <dl> |
2937 | title: [~lucidiot's wiki] Channel Definition Format | 3069 | <dt>timestamp</dt><dd>1657877322</dd> |
2938 | link: https://envs.net/~lucidiot/cdf.html | 3070 | <dt>title</dt><dd>[~lucidiot's wiki] Channel Definition Format</dd> |
2939 | content_type: | 3071 | <dt>link</dt><dd>https://envs.net/~lucidiot/cdf.html</dd> |
2940 | id: https://envs.net/~lucidiot/cdf.html | 3072 | <dt>content_type</dt><dd></dd> |
2941 | author: | 3073 | <dt>id</dt><dd>https://envs.net/~lucidiot/cdf.html</dd> |
2942 | enclosure: | 3074 | <dt>author</dt><dd></dd> |
2943 | category: | 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> |
2963 | timestamp: 1657869250 | 3097 | <dl> |
2964 | title: [p1k3::feed] Friday, July 15, 2022 | 3098 | <dt>timestamp</dt><dd>1657869250</dd> |
2965 | link: https://p1k3.com/2022/7/15 | 3099 | <dt>title</dt><dd>[p1k3::feed] Friday, July 15, 2022</dd> |
2966 | content_type: html | 3100 | <dt>link</dt><dd>https://p1k3.com/2022/7/15</dd> |
2967 | id: /2022/7/15 | 3101 | <dt>content_type</dt><dd>html</dd> |
2968 | author: | 3102 | <dt>id</dt><dd>/2022/7/15</dd> |
2969 | enclosure: | 3103 | <dt>author</dt><dd></dd> |
2970 | category: | 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> |
3032 | timestamp: 1657869250 | 3168 | <dl> |
3033 | title: [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> |
3034 | link: 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> |
3035 | content_type: html | 3171 | <dt>link</dt><dd>https://p1k3.com/2019/12/18</dd> |
3036 | id: /2019/12/18 | 3172 | <dt>content_type</dt><dd>html</dd> |
3037 | author: | 3173 | <dt>id</dt><dd>/2019/12/18</dd> |
3038 | enclosure: | 3174 | <dt>author</dt><dd></dd> |
3039 | category: | 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> |
3050 | timestamp: 1657853842 | 3187 | <dl> |
3051 | title: [#fridaypostcard] pipe dreams | 3188 | <dt>timestamp</dt><dd>1657853842</dd> |
3052 | link: http://live.staticflickr.com/65535/52160774612_bc67c42811_c.jpg | 3189 | <dt>title</dt><dd>[#fridaypostcard] pipe dreams</dd> |
3053 | content_type: html | 3190 | <dt>link</dt><dd>http://live.staticflickr.com/65535/52160774612_bc67c42811_c.jpg</dd> |
3054 | id: http://live.staticflickr.com/65535/52160774612_bc67c42811_c.jpg | 3191 | <dt>content_type</dt><dd>html</dd> |
3055 | author: rogbeer@tilde.town (rogbeer) | 3192 | <dt>id</dt><dd>http://live.staticflickr.com/65535/52160774612_bc67c42811_c.jpg</dd> |
3056 | enclosure: http://live.staticflickr.com/65535/52160774612_bc67c42811_c.jpg | 3193 | <dt>author</dt><dd>rogbeer@tilde.town (rogbeer)</dd> |
3057 | category: | 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> |
3067 | timestamp: 1657684800 | 3206 | <dl> |
3068 | title: [Dozens and Dragons] Shoes in the Dark | 3207 | <dt>timestamp</dt><dd>1657684800</dd> |
3069 | link: https://dozensanddragons.neocities.org/28.html | 3208 | <dt>title</dt><dd>[Dozens and Dragons] Shoes in the Dark</dd> |
3070 | content_type: html | 3209 | <dt>link</dt><dd>https://dozensanddragons.neocities.org/28.html</dd> |
3071 | id: https://dozensanddragons.neocities.org/28.html | 3210 | <dt>content_type</dt><dd>html</dd> |
3072 | author: | 3211 | <dt>id</dt><dd>https://dozensanddragons.neocities.org/28.html</dd> |
3073 | enclosure: | 3212 | <dt>author</dt><dd></dd> |
3074 | category: | 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> |
3085 | timestamp: 1657672683 | 3225 | <dl> |
3086 | title: [linkbudz rss feed] FizzBuzz in GNU make | 3226 | <dt>timestamp</dt><dd>1657672683</dd> |
3087 | link: https://citizen428.net/blog/fizzbuzz-in-gnu-make/ | 3227 | <dt>title</dt><dd>[linkbudz rss feed] FizzBuzz in GNU make</dd> |
3088 | content_type: html | 3228 | <dt>link</dt><dd>https://citizen428.net/blog/fizzbuzz-in-gnu-make/</dd> |
3089 | id: dozens20220713003803 | 3229 | <dt>content_type</dt><dd>html</dd> |
3090 | author: | 3230 | <dt>id</dt><dd>dozens20220713003803</dd> |
3091 | enclosure: | 3231 | <dt>author</dt><dd></dd> |
3092 | category: 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> |
3171 | timestamp: 1657653132 | 3313 | <dl> |
3172 | title: [Tilde Whirl Tildeverse Podcast] episode 8 | 3314 | <dt>timestamp</dt><dd>1657653132</dd> |
3173 | link: https://tilde.town/~dozens/podcast/2022-07-12-episode-8-eli.html | 3315 | <dt>title</dt><dd>[Tilde Whirl Tildeverse Podcast] episode 8</dd> |
3174 | content_type: html | 3316 | <dt>link</dt><dd>https://tilde.town/~dozens/podcast/2022-07-12-episode-8-eli.html</dd> |
3175 | id: Thu, 12 July 2022 12:12:12 -0700 | 3317 | <dt>content_type</dt><dd>html</dd> |
3176 | author: | 3318 | <dt>id</dt><dd>Thu, 12 July 2022 12:12:12 -0700</dd> |
3177 | enclosure: https://archive.org/download/tilderwhirl-S01E01/tildewhirl-s01e08.mp3 | 3319 | <dt>author</dt><dd></dd> |
3178 | category: | 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> |
3189 | timestamp: 1657648512 | 3332 | <dl> |
3190 | title: [linkbudz rss feed] james webb first images | 3333 | <dt>timestamp</dt><dd>1657648512</dd> |
3191 | link: https://www.nasa.gov/webbfirstimages | 3334 | <dt>title</dt><dd>[linkbudz rss feed] james webb first images</dd> |
3192 | content_type: html | 3335 | <dt>link</dt><dd>https://www.nasa.gov/webbfirstimages</dd> |
3193 | id: acdw20220712175512 | 3336 | <dt>content_type</dt><dd>html</dd> |
3194 | author: | 3337 | <dt>id</dt><dd>acdw20220712175512</dd> |
3195 | enclosure: | 3338 | <dt>author</dt><dd></dd> |
3196 | category: 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> |
3207 | timestamp: 1657592772 | 3351 | <dl> |
3208 | title: [linkbudz rss feed] relative vs absolute urls in rss content hell | 3352 | <dt>timestamp</dt><dd>1657592772</dd> |
3209 | link: 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> |
3210 | content_type: html | 3354 | <dt>link</dt><dd>https://www.jessesquires.com/blog/2021/06/06/rss-feeds-jekyll-and-absolute-versus-relative-urls/</dd> |
3211 | id: m45520220712022612 | 3355 | <dt>content_type</dt><dd>html</dd> |
3212 | author: | 3356 | <dt>id</dt><dd>m45520220712022612</dd> |
3213 | enclosure: | 3357 | <dt>author</dt><dd></dd> |
3214 | category: 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> |
3224 | timestamp: 1657530341 | 3370 | <dl> |
3225 | title: [~lucidiot's wiki] books | 3371 | <dt>timestamp</dt><dd>1657530341</dd> |
3226 | link: https://envs.net/~lucidiot/books.html | 3372 | <dt>title</dt><dd>[~lucidiot's wiki] books</dd> |
3227 | content_type: | 3373 | <dt>link</dt><dd>https://envs.net/~lucidiot/books.html</dd> |
3228 | id: https://envs.net/~lucidiot/books.html | 3374 | <dt>content_type</dt><dd></dd> |
3229 | author: | 3375 | <dt>id</dt><dd>https://envs.net/~lucidiot/books.html</dd> |
3230 | enclosure: | 3376 | <dt>author</dt><dd></dd> |
3231 | category: | 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> |
3242 | timestamp: 1657515744 | 3389 | <dl> |
3243 | title: [linkbudz rss feed] web-based system administration for Unix | 3390 | <dt>timestamp</dt><dd>1657515744</dd> |
3244 | link: https://www.webmin.com/demo.html | 3391 | <dt>title</dt><dd>[linkbudz rss feed] web-based system administration for Unix</dd> |
3245 | content_type: html | 3392 | <dt>link</dt><dd>https://www.webmin.com/demo.html</dd> |
3246 | id: m45520220711050224 | 3393 | <dt>content_type</dt><dd>html</dd> |
3247 | author: | 3394 | <dt>id</dt><dd>m45520220711050224</dd> |
3248 | enclosure: | 3395 | <dt>author</dt><dd></dd> |
3249 | category: 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> |
3260 | timestamp: 1657511814 | 3408 | <dl> |
3261 | title: [linkbudz rss feed] stylish text generator (all of the early msn messenger nickname ascii art you need) | 3409 | <dt>timestamp</dt><dd>1657511814</dd> |
3262 | link: 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> |
3263 | content_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> |
3264 | id: m45520220711035654 | 3412 | <dt>content_type</dt><dd>html</dd> |
3265 | author: | 3413 | <dt>id</dt><dd>m45520220711035654</dd> |
3266 | enclosure: | 3414 | <dt>author</dt><dd></dd> |
3267 | category: 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> |
3277 | timestamp: 1657490400 | 3427 | <dl> |
3278 | title: [Brainshit] La version méconnue du texte bien connu, première partie | 3428 | <dt>timestamp</dt><dd>1657490400</dd> |
3279 | link: https://brainshit.fr/read/306 | 3429 | <dt>title</dt><dd>[Brainshit] La version méconnue du texte bien connu, première partie</dd> |
3280 | content_type: html | 3430 | <dt>link</dt><dd>https://brainshit.fr/read/306</dd> |
3281 | id: https://brainshit.fr/read/306 | 3431 | <dt>content_type</dt><dd>html</dd> |
3282 | author: neuron@brainshit.fr (Lucidiot) | 3432 | <dt>id</dt><dd>https://brainshit.fr/read/306</dd> |
3283 | enclosure: | 3433 | <dt>author</dt><dd>neuron@brainshit.fr (Lucidiot)</dd> |
3284 | category: 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">👋</span> Oh hai!</p> | 3445 | <p><span class="small-caps">👋</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> |
3296 | timestamp: 1657482512 | 3448 | <dl> |
3297 | title: [ Oatmeal] | 3449 | <dt>timestamp</dt><dd>1657482512</dd> |
3298 | link: https://eli.li/2022/07/10/%F0%9F%91%8B-oh-hai | 3450 | <dt>title</dt><dd>[ Oatmeal] </dd> |
3299 | content_type: html | 3451 | <dt>link</dt><dd>https://eli.li/2022/07/10/%F0%9F%91%8B-oh-hai</dd> |
3300 | id: https://eli.li/2022/07/10/%F0%9F%91%8B-oh-hai | 3452 | <dt>content_type</dt><dd>html</dd> |
3301 | author: | 3453 | <dt>id</dt><dd>https://eli.li/2022/07/10/%F0%9F%91%8B-oh-hai</dd> |
3302 | enclosure: | 3454 | <dt>author</dt><dd></dd> |
3303 | category: | 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> |
3313 | timestamp: 1657381712 | 3467 | <dl> |
3314 | title: [ Oatmeal] | 3468 | <dt>timestamp</dt><dd>1657381712</dd> |
3315 | link: https://eli.li/2022/07/9/2022-07-09-11-48-32 | 3469 | <dt>title</dt><dd>[ Oatmeal] </dd> |
3316 | content_type: html | 3470 | <dt>link</dt><dd>https://eli.li/2022/07/9/2022-07-09-11-48-32</dd> |
3317 | id: https://eli.li/2022/07/9/2022-07-09-11-48-32 | 3471 | <dt>content_type</dt><dd>html</dd> |
3318 | author: | 3472 | <dt>id</dt><dd>https://eli.li/2022/07/9/2022-07-09-11-48-32</dd> |
3319 | enclosure: | 3473 | <dt>author</dt><dd></dd> |
3320 | category: | 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’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’s final form.</p></div> | 3489 | <p>Markdown isn’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’s final form.</p></div> |
3334 | <details class="info"><summary>item information</summary> | 3490 | <details class="info"><summary>item information</summary> |
3335 | timestamp: 1657370538 | 3491 | <dl> |
3336 | title: [ Oatmeal] | 3492 | <dt>timestamp</dt><dd>1657370538</dd> |
3337 | link: 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> |
3338 | content_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> |
3339 | id: 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> |
3340 | author: | 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> |
3341 | enclosure: | 3497 | <dt>author</dt><dd></dd> |
3342 | category: | 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> |
3353 | timestamp: 1657313546 | 3510 | <dl> |
3354 | title: [linkbudz rss feed] Barrett's Privateers | 3511 | <dt>timestamp</dt><dd>1657313546</dd> |
3355 | link: https://www.youtube.com/watch?v=ZIwzRkjn86w | 3512 | <dt>title</dt><dd>[linkbudz rss feed] Barrett's Privateers</dd> |
3356 | content_type: html | 3513 | <dt>link</dt><dd>https://www.youtube.com/watch?v=ZIwzRkjn86w</dd> |
3357 | id: acdw20220708205226 | 3514 | <dt>content_type</dt><dd>html</dd> |
3358 | author: | 3515 | <dt>id</dt><dd>acdw20220708205226</dd> |
3359 | enclosure: | 3516 | <dt>author</dt><dd></dd> |
3360 | category: 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> |
3371 | timestamp: 1657311695 | 3529 | <dl> |
3372 | title: [#fridaypostcard] "GAME" designed by Leo Kupper | 3530 | <dt>timestamp</dt><dd>1657311695</dd> |
3373 | link: http://ttm.sh/w8c.jpg | 3531 | <dt>title</dt><dd>[#fridaypostcard] "GAME" designed by Leo Kupper</dd> |
3374 | content_type: html | 3532 | <dt>link</dt><dd>http://ttm.sh/w8c.jpg</dd> |
3375 | id: http://ttm.sh/w8c.jpg | 3533 | <dt>content_type</dt><dd>html</dd> |
3376 | author: flowercorpse@tilde.town (flowercorpse) | 3534 | <dt>id</dt><dd>http://ttm.sh/w8c.jpg</dd> |
3377 | enclosure: http://ttm.sh/w8c.jpg | 3535 | <dt>author</dt><dd>flowercorpse@tilde.town (flowercorpse)</dd> |
3378 | category: | 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> |
3389 | timestamp: 1657308844 | 3548 | <dl> |
3390 | title: [linkbudz rss feed] SEA SHANTY RADIOOOOOO | 3549 | <dt>timestamp</dt><dd>1657308844</dd> |
3391 | link: https://www.smshantyradio.com/ | 3550 | <dt>title</dt><dd>[linkbudz rss feed] SEA SHANTY RADIOOOOOO</dd> |
3392 | content_type: html | 3551 | <dt>link</dt><dd>https://www.smshantyradio.com/</dd> |
3393 | id: acdw20220708193404 | 3552 | <dt>content_type</dt><dd>html</dd> |
3394 | author: | 3553 | <dt>id</dt><dd>acdw20220708193404</dd> |
3395 | enclosure: | 3554 | <dt>author</dt><dd></dd> |
3396 | category: 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> |
3407 | timestamp: 1657287327 | 3567 | <dl> |
3408 | title: [linkbudz rss feed] How to build a web app with Clack/Lack (Common Lisp) | 3568 | <dt>timestamp</dt><dd>1657287327</dd> |
3409 | link: 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> |
3410 | content_type: html | 3570 | <dt>link</dt><dd>https://fukamachi.hashnode.dev/how-to-build-a-web-app-with-clack-and-lack-1</dd> |
3411 | id: elioat20220708133527 | 3571 | <dt>content_type</dt><dd>html</dd> |
3412 | author: | 3572 | <dt>id</dt><dd>elioat20220708133527</dd> |
3413 | enclosure: | 3573 | <dt>author</dt><dd></dd> |
3414 | category: 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> |
3425 | timestamp: 1657219689 | 3586 | <dl> |
3426 | title: [linkbudz rss feed] Apparently, a new search engine disgned with devs in mind. | 3587 | <dt>timestamp</dt><dd>1657219689</dd> |
3427 | link: https://beta.sayhello.so/ | 3588 | <dt>title</dt><dd>[linkbudz rss feed] Apparently, a new search engine disgned with devs in mind.</dd> |
3428 | content_type: html | 3589 | <dt>link</dt><dd>https://beta.sayhello.so/</dd> |
3429 | id: marcus20220707184809 | 3590 | <dt>content_type</dt><dd>html</dd> |
3430 | author: | 3591 | <dt>id</dt><dd>marcus20220707184809</dd> |
3431 | enclosure: | 3592 | <dt>author</dt><dd></dd> |
3432 | category: 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> |
3443 | timestamp: 1657217758 | 3605 | <dl> |
3444 | title: [linkbudz rss feed] a blog platform for hackers | 3606 | <dt>timestamp</dt><dd>1657217758</dd> |
3445 | link: https://prose.sh/ | 3607 | <dt>title</dt><dd>[linkbudz rss feed] a blog platform for hackers</dd> |
3446 | content_type: html | 3608 | <dt>link</dt><dd>https://prose.sh/</dd> |
3447 | id: acdw20220707181558 | 3609 | <dt>content_type</dt><dd>html</dd> |
3448 | author: | 3610 | <dt>id</dt><dd>acdw20220707181558</dd> |
3449 | enclosure: | 3611 | <dt>author</dt><dd></dd> |
3450 | category: 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> |
3461 | timestamp: 1657217609 | 3624 | <dl> |
3462 | title: [linkbudz rss feed] a scheme primer | 3625 | <dt>timestamp</dt><dd>1657217609</dd> |
3463 | link: https://spritely.institute/static/papers/scheme-primer.html | 3626 | <dt>title</dt><dd>[linkbudz rss feed] a scheme primer</dd> |
3464 | content_type: html | 3627 | <dt>link</dt><dd>https://spritely.institute/static/papers/scheme-primer.html</dd> |
3465 | id: mio20220707181329 | 3628 | <dt>content_type</dt><dd>html</dd> |
3466 | author: | 3629 | <dt>id</dt><dd>mio20220707181329</dd> |
3467 | enclosure: | 3630 | <dt>author</dt><dd></dd> |
3468 | category: 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> |
3479 | timestamp: 1657203690 | 3643 | <dl> |
3480 | title: [linkbudz rss feed] fraidycat: like RSS but more | 3644 | <dt>timestamp</dt><dd>1657203690</dd> |
3481 | link: https://github.com/kickscondor/fraidycat | 3645 | <dt>title</dt><dd>[linkbudz rss feed] fraidycat: like RSS but more</dd> |
3482 | content_type: html | 3646 | <dt>link</dt><dd>https://github.com/kickscondor/fraidycat</dd> |
3483 | id: dozens20220707142130 | 3647 | <dt>content_type</dt><dd>html</dd> |
3484 | author: | 3648 | <dt>id</dt><dd>dozens20220707142130</dd> |
3485 | enclosure: | 3649 | <dt>author</dt><dd></dd> |
3486 | category: 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> |
3496 | timestamp: 1657166400 | 3662 | <dl> |
3497 | title: [Dozens and Dragons] magic words | 3663 | <dt>timestamp</dt><dd>1657166400</dd> |
3498 | link: https://dozensanddragons.neocities.org/27.html | 3664 | <dt>title</dt><dd>[Dozens and Dragons] magic words</dd> |
3499 | content_type: html | 3665 | <dt>link</dt><dd>https://dozensanddragons.neocities.org/27.html</dd> |
3500 | id: https://dozensanddragons.neocities.org/27.html | 3666 | <dt>content_type</dt><dd>html</dd> |
3501 | author: | 3667 | <dt>id</dt><dd>https://dozensanddragons.neocities.org/27.html</dd> |
3502 | enclosure: | 3668 | <dt>author</dt><dd></dd> |
3503 | category: | 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. |
3512 | A 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> | 3680 | A 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> |
3514 | timestamp: 1657152000 | 3682 | <dl> |
3515 | title: [lipu pi jan Niko] some writing thoughts, and probably leaving gemini | 3683 | <dt>timestamp</dt><dd>1657152000</dd> |
3516 | link: https://tilde.town/~nihilazo/log/onwriting.html | 3684 | <dt>title</dt><dd>[lipu pi jan Niko] some writing thoughts, and probably leaving gemini</dd> |
3517 | content_type: html | 3685 | <dt>link</dt><dd>https://tilde.town/~nihilazo/log/onwriting.html</dd> |
3518 | id: https://tilde.town/~nihilazo/log/onwriting.html | 3686 | <dt>content_type</dt><dd>html</dd> |
3519 | author: | 3687 | <dt>id</dt><dd>https://tilde.town/~nihilazo/log/onwriting.html</dd> |
3520 | enclosure: | 3688 | <dt>author</dt><dd></dd> |
3521 | category: | 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> |
3531 | timestamp: 1657144800 | 3701 | <dl> |
3532 | title: [Brainshit] Bada Bing | 3702 | <dt>timestamp</dt><dd>1657144800</dd> |
3533 | link: https://brainshit.fr/read/310 | 3703 | <dt>title</dt><dd>[Brainshit] Bada Bing</dd> |
3534 | content_type: html | 3704 | <dt>link</dt><dd>https://brainshit.fr/read/310</dd> |
3535 | id: https://brainshit.fr/read/310 | 3705 | <dt>content_type</dt><dd>html</dd> |
3536 | author: neuron@brainshit.fr (Lucidiot) | 3706 | <dt>id</dt><dd>https://brainshit.fr/read/310</dd> |
3537 | enclosure: | 3707 | <dt>author</dt><dd>neuron@brainshit.fr (Lucidiot)</dd> |
3538 | category: 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> |
3548 | timestamp: 1657129342 | 3720 | <dl> |
3549 | title: [bakersdozen gemlog] Thoughts On The Fourth Of July In The Year 2022 | 3721 | <dt>timestamp</dt><dd>1657129342</dd> |
3550 | link: 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> |
3551 | content_type: | 3723 | <dt>link</dt><dd>gemini://breadpunk.club/~bakersdozen/gemlog/13.gmi</dd> |
3552 | id: gemini://breadpunk.club/~bakersdozen/gemlog/13.gmi | 3724 | <dt>content_type</dt><dd></dd> |
3553 | author: | 3725 | <dt>id</dt><dd>gemini://breadpunk.club/~bakersdozen/gemlog/13.gmi</dd> |
3554 | enclosure: | 3726 | <dt>author</dt><dd></dd> |
3555 | category: | 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> |
3566 | timestamp: 1657118195 | 3739 | <dl> |
3567 | title: [linkbudz rss feed] has this been posted yet? | 3740 | <dt>timestamp</dt><dd>1657118195</dd> |
3568 | link: https://neal.fun/absurd-trolley-problems/ | 3741 | <dt>title</dt><dd>[linkbudz rss feed] has this been posted yet?</dd> |
3569 | content_type: html | 3742 | <dt>link</dt><dd>https://neal.fun/absurd-trolley-problems/</dd> |
3570 | id: acdw20220706143635 | 3743 | <dt>content_type</dt><dd>html</dd> |
3571 | author: | 3744 | <dt>id</dt><dd>acdw20220706143635</dd> |
3572 | enclosure: | 3745 | <dt>author</dt><dd></dd> |
3573 | category: 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> |
3584 | timestamp: 1657117491 | 3758 | <dl> |
3585 | title: [linkbudz rss feed] learn a language with forth! | 3759 | <dt>timestamp</dt><dd>1657117491</dd> |
3586 | link: https://zserge.com/posts/too-many-forths/ | 3760 | <dt>title</dt><dd>[linkbudz rss feed] learn a language with forth!</dd> |
3587 | content_type: html | 3761 | <dt>link</dt><dd>https://zserge.com/posts/too-many-forths/</dd> |
3588 | id: acdw20220706142451 | 3762 | <dt>content_type</dt><dd>html</dd> |
3589 | author: | 3763 | <dt>id</dt><dd>acdw20220706142451</dd> |
3590 | enclosure: | 3764 | <dt>author</dt><dd></dd> |
3591 | category: 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…<a href="https://eli.li/tagged/link-log">I do some of it myself</a>…but no one does it like Kicks was doing it; there was often a feeling of unknown, but ulterior motive behind the curation — bits building towards a cohesive something.</p> | 3777 | <p>There are folks doing similar web archeology…<a href="https://eli.li/tagged/link-log">I do some of it myself</a>…but no one does it like Kicks was doing it; there was often a feeling of unknown, but ulterior motive behind the curation — bits building towards a cohesive something.</p> |
3602 | <p>Perhaps Kicks got lost in the web — out there still?</p></div> | 3778 | <p>Perhaps Kicks got lost in the web — out there still?</p></div> |
3603 | <details class="info"><summary>item information</summary> | 3779 | <details class="info"><summary>item information</summary> |
3604 | timestamp: 1657116113 | 3780 | <dl> |
3605 | title: [ Oatmeal] Lamination for a lost explorer | 3781 | <dt>timestamp</dt><dd>1657116113</dd> |
3606 | link: https://eli.li/2022/07/6/lamination-for-a-lost-explorer | 3782 | <dt>title</dt><dd>[ Oatmeal] Lamination for a lost explorer</dd> |
3607 | content_type: html | 3783 | <dt>link</dt><dd>https://eli.li/2022/07/6/lamination-for-a-lost-explorer</dd> |
3608 | id: https://eli.li/2022/07/6/lamination-for-a-lost-explorer | 3784 | <dt>content_type</dt><dd>html</dd> |
3609 | author: | 3785 | <dt>id</dt><dd>https://eli.li/2022/07/6/lamination-for-a-lost-explorer</dd> |
3610 | enclosure: | 3786 | <dt>author</dt><dd></dd> |
3611 | category: | 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> |
3690 | timestamp: 1657115580 | 3868 | <dl> |
3691 | title: [blog __ ~ben] sqlite3 for wordpress | 3869 | <dt>timestamp</dt><dd>1657115580</dd> |
3692 | link: https://tilde.team/~ben/blog/sqlite3-for-wordpress.html | 3870 | <dt>title</dt><dd>[blog __ ~ben] sqlite3 for wordpress</dd> |
3693 | content_type: html | 3871 | <dt>link</dt><dd>https://tilde.team/~ben/blog/sqlite3-for-wordpress.html</dd> |
3694 | id: https://tilde.team/~ben/blog/sqlite3-for-wordpress.html | 3872 | <dt>content_type</dt><dd>html</dd> |
3695 | author: | 3873 | <dt>id</dt><dd>https://tilde.team/~ben/blog/sqlite3-for-wordpress.html</dd> |
3696 | enclosure: | 3874 | <dt>author</dt><dd></dd> |
3697 | category: | 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> |
3708 | timestamp: 1657114822 | 3887 | <dl> |
3709 | title: [linkbudz rss feed] grug brain developer | 3888 | <dt>timestamp</dt><dd>1657114822</dd> |
3710 | link: https://grugbrain.dev | 3889 | <dt>title</dt><dd>[linkbudz rss feed] grug brain developer</dd> |
3711 | content_type: html | 3890 | <dt>link</dt><dd>https://grugbrain.dev</dd> |
3712 | id: elioat20220706134022 | 3891 | <dt>content_type</dt><dd>html</dd> |
3713 | author: | 3892 | <dt>id</dt><dd>elioat20220706134022</dd> |
3714 | enclosure: | 3893 | <dt>author</dt><dd></dd> |
3715 | category: 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> |
3726 | timestamp: 1657040286 | 3906 | <dl> |
3727 | title: [linkbudz rss feed] html journal format | 3907 | <dt>timestamp</dt><dd>1657040286</dd> |
3728 | link: https://journal.miso.town/ | 3908 | <dt>title</dt><dd>[linkbudz rss feed] html journal format</dd> |
3729 | content_type: html | 3909 | <dt>link</dt><dd>https://journal.miso.town/</dd> |
3730 | id: dozens20220705165806 | 3910 | <dt>content_type</dt><dd>html</dd> |
3731 | author: | 3911 | <dt>id</dt><dd>dozens20220705165806</dd> |
3732 | enclosure: | 3912 | <dt>author</dt><dd></dd> |
3733 | category: 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> |
3744 | timestamp: 1657027698 | 3925 | <dl> |
3745 | title: [linkbudz rss feed] Genealogy of ELIZA programs | 3926 | <dt>timestamp</dt><dd>1657027698</dd> |
3746 | link: https://sites.google.com/view/elizagen-org/the-original-eliza | 3927 | <dt>title</dt><dd>[linkbudz rss feed] Genealogy of ELIZA programs</dd> |
3747 | content_type: html | 3928 | <dt>link</dt><dd>https://sites.google.com/view/elizagen-org/the-original-eliza</dd> |
3748 | id: elioat20220705132818 | 3929 | <dt>content_type</dt><dd>html</dd> |
3749 | author: | 3930 | <dt>id</dt><dd>elioat20220705132818</dd> |
3750 | enclosure: | 3931 | <dt>author</dt><dd></dd> |
3751 | category: 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> |
3990 | timestamp: 1657022400 | 4173 | <dl> |
3991 | title: [(lambda (x) (create x))] Truly using Lapis | 4174 | <dt>timestamp</dt><dd>1657022400</dd> |
3992 | link: https://lambdacreate.com/posts/35 | 4175 | <dt>title</dt><dd>[(lambda (x) (create x))] Truly using Lapis</dd> |
3993 | content_type: html | 4176 | <dt>link</dt><dd>https://lambdacreate.com/posts/35</dd> |
3994 | id: https://lambdacreate.com/posts/35 | 4177 | <dt>content_type</dt><dd>html</dd> |
3995 | author: | 4178 | <dt>id</dt><dd>https://lambdacreate.com/posts/35</dd> |
3996 | enclosure: | 4179 | <dt>author</dt><dd></dd> |
3997 | category: | 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> |
4008 | timestamp: 1656986746 | 4192 | <dl> |
4009 | title: [linkbudz rss feed] a Perl/CGI program that lets you access IRC from a web browser | 4193 | <dt>timestamp</dt><dd>1656986746</dd> |
4010 | link: 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> |
4011 | content_type: html | 4195 | <dt>link</dt><dd>http://cgiirc.org/</dd> |
4012 | id: m45520220705020546 | 4196 | <dt>content_type</dt><dd>html</dd> |
4013 | author: | 4197 | <dt>id</dt><dd>m45520220705020546</dd> |
4014 | enclosure: | 4198 | <dt>author</dt><dd></dd> |
4015 | category: 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> |
4026 | timestamp: 1656979687 | 4211 | <dl> |
4027 | title: [linkbudz rss feed] reference for escaping characters in xml documents | 4212 | <dt>timestamp</dt><dd>1656979687</dd> |
4028 | link: 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> |
4029 | content_type: html | 4214 | <dt>link</dt><dd>https://stackoverflow.com/questions/1091945/what-characters-do-i-need-to-escape-in-xml-documents</dd> |
4030 | id: m45520220705000807 | 4215 | <dt>content_type</dt><dd>html</dd> |
4031 | author: | 4216 | <dt>id</dt><dd>m45520220705000807</dd> |
4032 | enclosure: | 4217 | <dt>author</dt><dd></dd> |
4033 | category: 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> |
4043 | timestamp: 1656972000 | 4230 | <dl> |
4044 | title: [Brainshit] Extended Well-Known Text | 4231 | <dt>timestamp</dt><dd>1656972000</dd> |
4045 | link: https://brainshit.fr/read/302 | 4232 | <dt>title</dt><dd>[Brainshit] Extended Well-Known Text</dd> |
4046 | content_type: html | 4233 | <dt>link</dt><dd>https://brainshit.fr/read/302</dd> |
4047 | id: https://brainshit.fr/read/302 | 4234 | <dt>content_type</dt><dd>html</dd> |
4048 | author: neuron@brainshit.fr (Lucidiot) | 4235 | <dt>id</dt><dd>https://brainshit.fr/read/302</dd> |
4049 | enclosure: | 4236 | <dt>author</dt><dd>neuron@brainshit.fr (Lucidiot)</dd> |
4050 | category: 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> |
4061 | timestamp: 1656868499 | 4249 | <dl> |
4062 | title: [linkbudz rss feed] Harder Drives (includes how to use ping has a block storage device) | 4250 | <dt>timestamp</dt><dd>1656868499</dd> |
4063 | link: 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> |
4064 | content_type: html | 4252 | <dt>link</dt><dd>https://www.youtube.com/watch?v=JcJSW7Rprio</dd> |
4065 | id: kindrobot20220703171459 | 4253 | <dt>content_type</dt><dd>html</dd> |
4066 | author: | 4254 | <dt>id</dt><dd>kindrobot20220703171459</dd> |
4067 | enclosure: | 4255 | <dt>author</dt><dd></dd> |
4068 | category: 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> |
4079 | timestamp: 1656806726 | 4268 | <dl> |
4080 | title: [linkbudz rss feed] rss | 4269 | <dt>timestamp</dt><dd>1656806726</dd> |
4081 | link: https://feddit.de/pictrs/image/9cf64a24-87ec-4f3a-b5f1-6dabf0e56d63.jpeg | 4270 | <dt>title</dt><dd>[linkbudz rss feed] rss</dd> |
4082 | content_type: html | 4271 | <dt>link</dt><dd>https://feddit.de/pictrs/image/9cf64a24-87ec-4f3a-b5f1-6dabf0e56d63.jpeg</dd> |
4083 | id: dozens20220703000526 | 4272 | <dt>content_type</dt><dd>html</dd> |
4084 | author: | 4273 | <dt>id</dt><dd>dozens20220703000526</dd> |
4085 | enclosure: | 4274 | <dt>author</dt><dd></dd> |
4086 | category: 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">🌱🦛</span></p></div> | 4286 | <p><span class="small-caps">🌱🦛</span></p></div> |
4096 | <details class="info"><summary>item information</summary> | 4287 | <details class="info"><summary>item information</summary> |
4097 | timestamp: 1656772973 | 4288 | <dl> |
4098 | title: [ Oatmeal] | 4289 | <dt>timestamp</dt><dd>1656772973</dd> |
4099 | link: https://eli.li/2022/07/2/2022-07-02-10-42-53 | 4290 | <dt>title</dt><dd>[ Oatmeal] </dd> |
4100 | content_type: html | 4291 | <dt>link</dt><dd>https://eli.li/2022/07/2/2022-07-02-10-42-53</dd> |
4101 | id: https://eli.li/2022/07/2/2022-07-02-10-42-53 | 4292 | <dt>content_type</dt><dd>html</dd> |
4102 | author: | 4293 | <dt>id</dt><dd>https://eli.li/2022/07/2/2022-07-02-10-42-53</dd> |
4103 | enclosure: | 4294 | <dt>author</dt><dd></dd> |
4104 | category: | 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> |
4115 | timestamp: 1656693166 | 4307 | <dl> |
4116 | title: [linkbudz rss feed] linkbud went on too many dates | 4308 | <dt>timestamp</dt><dd>1656693166</dd> |
4117 | link: https://git.m455.casa/linkbud/commit/?id=93a9b61963f6369fac04c765f98c635f9a0aecf6 | 4309 | <dt>title</dt><dd>[linkbudz rss feed] linkbud went on too many dates</dd> |
4118 | content_type: html | 4310 | <dt>link</dt><dd>https://git.m455.casa/linkbud/commit/?id=93a9b61963f6369fac04c765f98c635f9a0aecf6</dd> |
4119 | id: m45520220701163246 | 4311 | <dt>content_type</dt><dd>html</dd> |
4120 | author: | 4312 | <dt>id</dt><dd>m45520220701163246</dd> |
4121 | enclosure: | 4313 | <dt>author</dt><dd></dd> |
4122 | category: 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> |
4133 | timestamp: 1656537802 | 4326 | <dl> |
4134 | title: [linkbudz rss feed] I'm never not going to post this | 4327 | <dt>timestamp</dt><dd>1656537802</dd> |
4135 | link: https://www.youtube.com/watch?v=rv4wf7bzfFE | 4328 | <dt>title</dt><dd>[linkbudz rss feed] I'm never not going to post this</dd> |
4136 | content_type: html | 4329 | <dt>link</dt><dd>https://www.youtube.com/watch?v=rv4wf7bzfFE</dd> |
4137 | id: acdw20220629212322 | 4330 | <dt>content_type</dt><dd>html</dd> |
4138 | author: | 4331 | <dt>id</dt><dd>acdw20220629212322</dd> |
4139 | enclosure: | 4332 | <dt>author</dt><dd></dd> |
4140 | category: 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> |
4151 | timestamp: 1656535907 | 4345 | <dl> |
4152 | title: [linkbudz rss feed] Databases and like, complicatedness | 4346 | <dt>timestamp</dt><dd>1656535907</dd> |
4153 | link: https://www.twilio.com/blog/sqlite-postgresql-complicated | 4347 | <dt>title</dt><dd>[linkbudz rss feed] Databases and like, complicatedness</dd> |
4154 | content_type: html | 4348 | <dt>link</dt><dd>https://www.twilio.com/blog/sqlite-postgresql-complicated</dd> |
4155 | id: acdw20220629205147 | 4349 | <dt>content_type</dt><dd>html</dd> |
4156 | author: | 4350 | <dt>id</dt><dd>acdw20220629205147</dd> |
4157 | enclosure: | 4351 | <dt>author</dt><dd></dd> |
4158 | category: 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> |
4168 | timestamp: 1656388800 | 4364 | <dl> |
4169 | title: [Dozens and Dragons] through the white forest to the house of the fae lord | 4365 | <dt>timestamp</dt><dd>1656388800</dd> |
4170 | link: 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> |
4171 | content_type: html | 4367 | <dt>link</dt><dd>https://dozensanddragons.neocities.org/26.html</dd> |
4172 | id: https://dozensanddragons.neocities.org/26.html | 4368 | <dt>content_type</dt><dd>html</dd> |
4173 | author: | 4369 | <dt>id</dt><dd>https://dozensanddragons.neocities.org/26.html</dd> |
4174 | enclosure: | 4370 | <dt>author</dt><dd></dd> |
4175 | category: | 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> |
4298 | timestamp: 1656318192 | 4496 | <dl> |
4299 | title: [p1k3::feed] Monday, June 27, 2022 - aphoristic noodling | 4497 | <dt>timestamp</dt><dd>1656318192</dd> |
4300 | link: https://p1k3.com/2022/6/27 | 4498 | <dt>title</dt><dd>[p1k3::feed] Monday, June 27, 2022 - aphoristic noodling</dd> |
4301 | content_type: html | 4499 | <dt>link</dt><dd>https://p1k3.com/2022/6/27</dd> |
4302 | id: /2022/6/27 | 4500 | <dt>content_type</dt><dd>html</dd> |
4303 | author: | 4501 | <dt>id</dt><dd>/2022/6/27</dd> |
4304 | enclosure: | 4502 | <dt>author</dt><dd></dd> |
4305 | category: | 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> |
4315 | timestamp: 1656280800 | 4515 | <dl> |
4316 | title: [Brainshit] Blockchain Nomic | 4516 | <dt>timestamp</dt><dd>1656280800</dd> |
4317 | link: https://brainshit.fr/read/309 | 4517 | <dt>title</dt><dd>[Brainshit] Blockchain Nomic</dd> |
4318 | content_type: html | 4518 | <dt>link</dt><dd>https://brainshit.fr/read/309</dd> |
4319 | id: https://brainshit.fr/read/309 | 4519 | <dt>content_type</dt><dd>html</dd> |
4320 | author: neuron@brainshit.fr (Lucidiot) | 4520 | <dt>id</dt><dd>https://brainshit.fr/read/309</dd> |
4321 | enclosure: | 4521 | <dt>author</dt><dd>neuron@brainshit.fr (Lucidiot)</dd> |
4322 | category: 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> |
4332 | timestamp: 1656240555 | 4534 | <dl> |
4333 | title: [ Oatmeal] | 4535 | <dt>timestamp</dt><dd>1656240555</dd> |
4334 | link: https://eli.li/2022/06/26/2022-06-26-06-49-15 | 4536 | <dt>title</dt><dd>[ Oatmeal] </dd> |
4335 | content_type: html | 4537 | <dt>link</dt><dd>https://eli.li/2022/06/26/2022-06-26-06-49-15</dd> |
4336 | id: https://eli.li/2022/06/26/2022-06-26-06-49-15 | 4538 | <dt>content_type</dt><dd>html</dd> |
4337 | author: | 4539 | <dt>id</dt><dd>https://eli.li/2022/06/26/2022-06-26-06-49-15</dd> |
4338 | enclosure: | 4540 | <dt>author</dt><dd></dd> |
4339 | category: | 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’ve supported me and my family throughout this bananas unexpected experience — for realizes — 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’t imagine how I would have navigated this without ya’ll.</p> | 4556 | <p>There are too many people to thank directly here, but to all those who’ve supported me and my family throughout this bananas unexpected experience — for realizes — 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’t imagine how I would have navigated this without ya’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> |
4355 | timestamp: 1656212772 | 4559 | <dl> |
4356 | title: [ Oatmeal] | 4560 | <dt>timestamp</dt><dd>1656212772</dd> |
4357 | link: 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> |
4358 | content_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> |
4359 | id: 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> |
4360 | author: | 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> |
4361 | enclosure: | 4565 | <dt>author</dt><dd></dd> |
4362 | category: | 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> |
4373 | timestamp: 1656168162 | 4578 | <dl> |
4374 | title: [linkbudz rss feed] Mipui - open source collaborative grid map editor for tabletop games | 4579 | <dt>timestamp</dt><dd>1656168162</dd> |
4375 | link: https://www.mipui.net/ | 4580 | <dt>title</dt><dd>[linkbudz rss feed] Mipui - open source collaborative grid map editor for tabletop games</dd> |
4376 | content_type: html | 4581 | <dt>link</dt><dd>https://www.mipui.net/</dd> |
4377 | id: mio20220625144242 | 4582 | <dt>content_type</dt><dd>html</dd> |
4378 | author: | 4583 | <dt>id</dt><dd>mio20220625144242</dd> |
4379 | enclosure: | 4584 | <dt>author</dt><dd></dd> |
4380 | category: 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> |
4391 | timestamp: 1656080609 | 4597 | <dl> |
4392 | title: [linkbudz rss feed] Start all of your shell scripts with a comma | 4598 | <dt>timestamp</dt><dd>1656080609</dd> |
4393 | link: 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> |
4394 | content_type: html | 4600 | <dt>link</dt><dd>https://rhodesmill.org/brandon/2009/commands-with-comma/</dd> |
4395 | id: m45520220624142329 | 4601 | <dt>content_type</dt><dd>html</dd> |
4396 | author: | 4602 | <dt>id</dt><dd>m45520220624142329</dd> |
4397 | enclosure: | 4603 | <dt>author</dt><dd></dd> |
4398 | category: 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> |
4409 | timestamp: 1655929342 | 4616 | <dl> |
4410 | title: [linkbudz rss feed] directly query csv with sqlite | 4617 | <dt>timestamp</dt><dd>1655929342</dd> |
4411 | link: https://til.simonwillison.net/sqlite/one-line-csv-operations | 4618 | <dt>title</dt><dd>[linkbudz rss feed] directly query csv with sqlite</dd> |
4412 | content_type: html | 4619 | <dt>link</dt><dd>https://til.simonwillison.net/sqlite/one-line-csv-operations</dd> |
4413 | id: dozens20220622202222 | 4620 | <dt>content_type</dt><dd>html</dd> |
4414 | author: | 4621 | <dt>id</dt><dd>dozens20220622202222</dd> |
4415 | enclosure: | 4622 | <dt>author</dt><dd></dd> |
4416 | category: 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> |
4426 | timestamp: 1655877494 | 4635 | <dl> |
4427 | title: [~lucidiot's wiki] forest | 4636 | <dt>timestamp</dt><dd>1655877494</dd> |
4428 | link: https://envs.net/~lucidiot/forest.html | 4637 | <dt>title</dt><dd>[~lucidiot's wiki] forest</dd> |
4429 | content_type: | 4638 | <dt>link</dt><dd>https://envs.net/~lucidiot/forest.html</dd> |
4430 | id: https://envs.net/~lucidiot/forest.html | 4639 | <dt>content_type</dt><dd></dd> |
4431 | author: | 4640 | <dt>id</dt><dd>https://envs.net/~lucidiot/forest.html</dd> |
4432 | enclosure: | 4641 | <dt>author</dt><dd></dd> |
4433 | category: | 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> |
4599 | timestamp: 1655867272 | 4810 | <dl> |
4600 | title: [trash cat tech chat] 004 - Matrix, part 2 | 4811 | <dt>timestamp</dt><dd>1655867272</dd> |
4601 | link: https://podcast.librepunk.club/tctc/004 | 4812 | <dt>title</dt><dd>[trash cat tech chat] 004 - Matrix, part 2</dd> |
4602 | content_type: html | 4813 | <dt>link</dt><dd>https://podcast.librepunk.club/tctc/004</dd> |
4603 | id: https://podcast.librepunk.club/tctc/004 | 4814 | <dt>content_type</dt><dd>html</dd> |
4604 | author: | 4815 | <dt>id</dt><dd>https://podcast.librepunk.club/tctc/004</dd> |
4605 | enclosure: https://podcast.librepunk.club/tctc/tctc_004_Matrix,-part-2.ogg | 4816 | <dt>author</dt><dd></dd> |
4606 | category: | 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> |
4617 | timestamp: 1655774852 | 4829 | <dl> |
4618 | title: [linkbudz rss feed] Running Doom on a chip from a $15 smart lamp | 4830 | <dt>timestamp</dt><dd>1655774852</dd> |
4619 | link: 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> |
4620 | content_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> |
4621 | id: mio20220621012732 | 4833 | <dt>content_type</dt><dd>html</dd> |
4622 | author: | 4834 | <dt>id</dt><dd>mio20220621012732</dd> |
4623 | enclosure: | 4835 | <dt>author</dt><dd></dd> |
4624 | category: 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"> |
4845 | sourced from <a href="https://tildegit.org/casa/pages/src/branch/main/opml/mug.of.opml"> | ||
4846 | a 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> | ||
4635 | timestamp: 1655733653 | ||
4636 | title: [linkbudz rss feed] Old-school blogging, retro computers, and decentralisation | ||
4637 | link: https://andregarzia.com/2022/05/Old-school-blogging-retro-computers-and-decentralisation.html | ||
4638 | content_type: html | ||
4639 | id: m45520220620140053 | ||
4640 | author: | ||
4641 | enclosure: | ||
4642 | category: 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 @@ | |||
1 | body { | 1 | body { |
2 | font-size: 14pt; | 2 | font-size: 14pt; |
3 | line-spacing: 1.4; | 3 | line-spacing: 1.4; |
4 | } | 4 | } |
5 | 5 | ||
6 | img { | 6 | img { |
7 | max-width: 100%; | 7 | max-width: 100%; |
8 | } | 8 | } |
9 | 9 | ||
10 | pre, | 10 | pre, |
11 | code { | 11 | code { |
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 | ||
15 | details { | 24 | details { |
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 | ||
23 | details[open] { | 30 | details[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 | ||
29 | summary { | 45 | summary { |
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 | ||
48 | summary:hover { | 65 | summary:hover { |
49 | text-transform: uppercase; | 66 | text-transform: uppercase; |
50 | border-radius: 1ch; | 67 | border-radius: 5px; |
68 | } | ||
69 | |||
70 | time, | ||
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 | ||
61 | a { | 83 | a { |
62 | text-decoration: none; | 84 | text-decoration: none; |
63 | padding: 2px; | 85 | padding: 2px; |
64 | } | 86 | } |
65 | 87 | ||
66 | a:link, | 88 | a:link, |
67 | a:visited { | 89 | a: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 | } |