Compare commits

...

13 Commits

Author SHA1 Message Date
Christopher P. Brown 9f0d38cd88 s01e07 2022-05-18 09:03:21 -06:00
Christopher P. Brown 1c593e1271 s01e06 2022-05-16 15:53:43 -06:00
Christopher P. Brown cee991985e contact: libera.chat 2022-05-02 09:38:34 -06:00
Christopher P. Brown d927d0adcf fix rss? 2022-04-25 08:28:41 -06:00
Christopher P. Brown 3e2ac5cb94 s01e05 2022-04-22 21:00:29 -06:00
Christopher P. Brown 6629bc9ed7 s01e04 2022-04-22 21:00:28 -06:00
Christopher P. Brown 594fc1859c bump 2022-04-22 21:00:28 -06:00
Christopher P. Brown 7c7a319f91 bump 2022-04-04 13:49:46 -06:00
Christopher P. Brown 72185b6b5a notes? 2022-04-04 13:49:07 -06:00
Christopher P. Brown cdc389198c woo 2022-04-04 12:35:36 -06:00
Christopher P. Brown 489de3367d s01e03 2022-03-29 07:49:36 -06:00
Christopher P. Brown 5d747b686d e01e02 2022-03-12 10:06:34 -07:00
Christopher P. Brown 132cfc6150 now is podcast 2022-03-04 15:33:57 -07:00
65 changed files with 22141 additions and 83 deletions

View File

@ -8,6 +8,7 @@ vpath %.html dist
pandoc -t html \
--standalone \
-B templates/nav.html \
--template=templates/episode.template \
--css assets/styles/main.css \
--toc \
-o dist/$@ $<
@ -16,7 +17,7 @@ index.md:
./bin/build-index.sh
rssfeed:
./bin/build-feed.sh
./bin/build-podcast.sh
build: $(HTML) index.md rssfeed
cp -R assets dist

View File

@ -9,7 +9,7 @@ this is a static website that uses pandoc and pandoc templates to build a blog
That's kind of it..
You'll need to edit a bunch of values in index.yml and build-feed.sh where it's hard coded.
You'll need to edit a bunch of values in index.yml and build-podcast.sh where it's hard coded.
images and styles go in `/assets`.

View File

@ -1,5 +1,12 @@
---
title: welcome to my blog
subtitle: it is where i write stuff
title: 'TILDE WHIRL'
subtitle: the greatest tildeverse podcast in the world
author: dozens
base_url: https://tilde.town/~dozens/podcast
category: Technology
language: en-us
summary: the only pubnix variety show on the internet
explicit: 'no'
email: dozens@tilde.team
img_url: https://tilde.town/~dozens/podcast/assets/img/logo.png
---

BIN
assets/img/logo.png 100644

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.8 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 101 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 93 KiB

BIN
assets/img/soup.jpg 100644

Binary file not shown.

After

Width:  |  Height:  |  Size: 202 KiB

View File

@ -139,3 +139,4 @@ div.column{display: inline-block; vertical-align: top; width: 50%;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
ul.task-list{list-style: none;}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
audio { width: 100%; }

View File

@ -1,19 +0,0 @@
#!/bin/zsh
title=blog
description="yrafn afuynta arr a ar"
baseurl="http://tilde.town/~dozens/gamelog"
link="$baseurl/index.html"
href="$baseurl/feed.xml"
outfile="dist/feed.xml"
echo "<rss version=\"2.0\"><channel><title>$title</title>" > $outfile
echo "<link>$link</link><description>$description</description><atom:link rel=\"self\" type=\"application/rss+xml\" href=\"$href\"/>" >> $outfile
for file in $(ls -1 content/*.md | sort -r)
do
dest="${$(basename $file)/md/html}"
pandoc --template=templates/rss-feed-item.template --variable=url:"$baseurl/$dest" $file >> $outfile
done
echo '</channel></rss>' >> $outfile

View File

@ -4,5 +4,7 @@ cat templates/index-before.html > index.md
for file in $(ls -1 content/*.md | sort -r)
do
dest="${$(basename $file)/md/html}"
pandoc --template=templates/blog-list-item.template --variable=url:$dest $file >> index.md
pandoc --template=templates/blog-list-item.template \
--variable=url:$dest $file \
>> index.md
done

View File

@ -0,0 +1,40 @@
#!/bin/zsh
title="Tilde Whirl Tildeverse Podcast"
author="dozens"
email="dozens@tilde.team"
description="the greatest tildeverse podcast in the world"
baseurl="https://tilde.town/~dozens/podcast"
link="$baseurl/index.html"
href="$baseurl/rss.xml"
img_url="$baseurl/assets/img/logo.png"
outfile="dist/rss.xml"
echo "<?xml version=\"1.0\" encoding=\"utf-8\"?>" > $outfile
echo "<rss version=\"2.0\" xmlns:atom=\"http://www.w3.org/2005/Atom\">" >> $outfile
echo "<channel><title>$title</title>" >> $outfile
echo "<link>$link</link><description>$description</description>" >> $outfile
echo "<atom:link rel=\"self\" type=\"application/rss+xml\" href=\"$href\"/>" >> $outfile
echo "<image>" >> $outfile
echo " <url>$img_url</url>" >> $outfile
echo " <title>$title</title>" >> $outfile
echo " <link>$link</link>" >> $outfile
echo "</image>" >> $outfile
echo "<generator>pandoc and stuff</generator>" >> $outfile
echo "<lastBuildDate>$(gdate -R)</lastBuildDate>" >> $outfile
echo "<atom:link href=\"$href\" rel=\"self\" type=\"application/rss+xml\"/>" >> $outfile
echo "<webMaster>$email (dozens)</webMaster>" >> $outfile
echo "<managingEditor>$email (dozens)</managingEditor>" >> $outfile
echo "<copyright>$author</copyright>" >> $outfile
echo "<language>en</language>" >> $outfile
for file in $(ls -1 content/*.md | sort -r)
do
dest="${$(basename $file)/md/html}"
pandoc --template=templates/podcast-feed-item.template \
--variable=url:"$baseurl/$dest" $file \
>> $outfile
done
echo '</channel></rss>' >> $outfile

21
candidates.txt 100644
View File

@ -0,0 +1,21 @@
who should i interview?
devon
archenoth
archangelic
netscape_navigator
lucidiot
cat
bx
apreche
cymen
dzwdz
noa
sandra/idiomdrottning
brennan
technomancy
insom
vantablack
kirch
cat
tiwesdaeg

View File

@ -1,9 +0,0 @@
---
title: hello world!
subtitle: a whole new blog
date: 2022-01-01
toc-title: Contents
---
Hola, Wikipedia!
I started a new blog! Isn't that just really special?

View File

@ -1,31 +0,0 @@
---
title: giraffes
subtitle: a long necked hoax?
date: 2022-02-01
updated: 2022-02-20
toc-title: Contents
---
## Intro
**Edit**: It has been brought to my attention that giraffes are actually real. I am willing to admit my mistakes, and stand corrected. You have to admit that they are *unlikely* though.
---
I mean, have you ever even seen a giraffe?
they look like aliens.
## Too tall
long legs
## Too long
all that neck, and still only 7 neckbones. same as a field mouse, same as any other mammal. what you trying to prove?
## Black tongue
maybe try washing that thing
## horns?
what you even got horns for dude?

View File

@ -0,0 +1,43 @@
---
title: episode 1
season: 1
episode: 1
subtitle: a shiny new podcast! with acdw
date: Thu, 24 Feb 2022 12:12:12 -0700
toc-title: Contents
file: 'https://archive.org/download/tilderwhirl-S01E01/tilderwhirl-S01E01.mp3'
img_url: https://tilde.town/~dozens/podcast/assets/img/logo.png
duration: '4727'
length: '62456102'
summary: tilde whirl with dozens and acdw
explict: 'yes'
---
## notes
Hola, Wikipedia!
I started a new podcast! Isn't that just really special?
This episode's guest is acdw. And featured segments include *Food and wine*, *Looking at clouds*, and *science fun fact corner*, and *letters from our listeners!*
![soup](assets/img/soup.jpg)
## links
- [acdw.net](https://www.acdw.net/)
- <https://en.wikipedia.org/wiki/Elysia_timida>
- [I had a couple drinks and woke up with 1,000 nerds](https://medium.com/message/tilde-club-i-had-a-couple-drinks-and-woke-up-with-1-000-nerds-a8904f0a2ebf)
- [breadpunk.club](https://breadpunk.club/)
- [tt-rss](https://tt-rss.org/) / [rss.tildeverse.org](https://rss.tildeverse.org/)
- [elfeed](https://github.com/skeeto/elfeed)
- [newsboat](https://newsboat.org/)
## sources
sounds and stuff used in this episode:
[cricket](https://freesound.org/people/Ev-Dawg/sounds/337435/) |
[continuous static.wav](https://freesound.org/people/Jace/sounds/35291/) |
[technical difficulties](https://archive.org/details/GlobalCommunityRadioChannelOneTechnicalDifficultiesMessage) |
[Skip In my Step](https://freemusicarchive.org/music/Scott_Holmes/happy-background-music/Skip_In_my_Step_1428)

View File

@ -0,0 +1,45 @@
---
title: episode 2
season: 1
episode: 2
subtitle: a special conversation with m455
date: Thu, 12 Mar 2022 12:12:12 -0700
toc-title: Contents
file: 'https://archive.org/download/tilderwhirl-S01E01/tildewhirl-S01E02.mp3'
img_url: https://tilde.town/~dozens/podcast/assets/img/logo.png
duration: '4802'
length: '68307849'
summary: tilde whirl with dozens and m455
explict: 'yes'
---
## notes
Hey there, pull up a chair, have a seat by the fire, pour a nice tall glass of milk, and listen to dozens and m455 talk about tildistan.
We talk aboot tildes (obviously), inclusivity, starting more projects than you finish, linguistics, and more!
Segments include Science Fun Fact Corner, Poetry Corner, and Magic and Divination.
## links
- [m455.casa](https://m455.casa/)
- [sofa](http://tilde.town/~dozens/sofa/)
- [squiggle.city](https://squiggle.city/)
- [trash.town](https://trash.town/)
- [cosmic.voyage](https://cosmic.voyage/)
- [sdf.org](http://sdf.org/)
- [dinosaur comics](https://qwantz.com/)
- [dudes we did not go through the hassle...](https://laserdisc.party/@carithlee/107853224591829561)
- [Hanif Abdurraqib](https://en.wikipedia.org/wiki/Hanif_Abdurraqib)
- [plushgoolash](https://freemusicarchive.org/music/Plushgoolash/Chin25_Soup_Tennis)
- [ask the stars](https://www.bastionland.com/2020/12/ask-stars-minimal-solo-rpg.html)
- [morethanone.info](https://morethanone.info/): info on plurality
lisps:
- [chicken](https://www.call-cc.org/)
- [lumo](https://github.com/anmonteiro/lumo)
- [hy](https://docs.hylang.org/en/alpha/)
- [racket](https://racket-lang.org/)
- [fennel](https://fennel-lang.org/)

View File

@ -0,0 +1,53 @@
---
title: episode 3
season: 1
episode: 3
subtitle: and now nihilazo
date: Thu, 24 Mar 2022 12:12:12 -0700
toc-title: Contents
file: 'https://archive.org/download/tilderwhirl-S01E01/tildewhirl-S01E03.mp3'
img_url: https://tilde.town/~dozens/podcast/assets/img/logo.png
duration: '4915'
length: '69693532'
summary: tilde whirl with dozens and nihilazo
explict: 'yes'
---
## notes
It's nihilazo!! Join us as we talk about tildes, social media, constructed languages (esperanto and toki pona), table top roleplaying games, religions real and fake, and more!
Segments this episode include science fun fact corner, funny papers, letters from our listeners, and magic and divination.
For everything else you'll just have to listen. So *give it a whirl!*
Check out nihilazo:
- <https://tilde.town/~nihilazo/>
- <https://tiny.tilde.website/@nihilazo>
## links
Stuff we talked about on the show
- <https://glowing-bear.org/>
- conlangs
- <https://telegramo.org/>
- <https://tokipona.org/>
- <https://jackhumbert.github.io/sitelen-pona-pona/>
- <https://jonathangabel.com/toki-pona/kama-pona/>
- ttrpgs
- <https://en.wikipedia.org/wiki/Fiasco_(role-playing_game)>
- <https://fate-srd.com/>
- <https://en.wikipedia.org/wiki/Shadowrun>
- <https://swse.neocities.org/> (Sixth World Simple Edition: Shadowrun + Dungeon World/PbtA hack)
- <https://lichess.org/team/tildetown>
- <https://rarehistoricalphotos.com/cocaine-paraphernalia-ads-1970s/>
- <https://gravenutterance.com/2019/03/24/recluse-solo-engine/>
- <https://en.wikipedia.org/wiki/Le_g%C3%A9nie_du_mal>
## sources
sounds included in this episode
windows 3.1 startup: <https://ballyweg.net/windows.html>

View File

@ -0,0 +1,49 @@
---
title: episode 4
season: 1
episode: 4
subtitle: "whoa check it out it's piusbird"
date: Thu, 12 Apr 2022 12:12:12 -0700
toc-title: Contents
length: 89093279
file: 'https://archive.org/download/tilderwhirl-S01E01/tildewhirl-S01E04.mp3'
img_url: https://tilde.town/~dozens/podcast/assets/img/logo.png
summary: tilde whirl with dozens and piusbird
explict: 'yes'
---
## notes
Check out piusbird!
- <https://tilde.zone/@piusbird>
- <https://piusbird.space/~matt/>
- <https://www.twitch.tv/piusbird>
- <https://joyoflinux.com/>
## links
Stuff we talked about on the show, and other stuff too
- <https://cosmic.voyage/>
- [I had a couple drinks and woke up with 1,000 nerds](https://medium.com/message/tilde-club-i-had-a-couple-drinks-and-woke-up-with-1-000-nerds-a8904f0a2ebf)
- <https://tilde.town/~dozens/sofa/>
- <https://nostarch.com/artists-guide-programming>
- <https://natureofcode.com/book/>
Links from segments:
- poetry:
- prosaic: <https://github.com/vilmibm/prosaic>
- Goblin Time by @emmajuettner@mastodon.art: <https://mastodon.art/@emmajuettner/108103474257806186>
- gossip:
- old mauve tilde.town site: <https://web.archive.org/web/20200828025119/https://tilde.town/>
- Mauve: How One Man Invented a Colour That Changed the World: <https://www.goodreads.com/book/show/580291.Mauve>
- The Mauve Decade: American Life at the End of the Nineteenth Century: <https://www.goodreads.com/book/show/1251892.The_Mauve_Decade>
- Grooming, Gossip, and the Evolution of Language: <https://www.goodreads.com/book/show/197921.Grooming_Gossip_and_the_Evolution_of_Language>
- [tiktok voice says random words for fifteen hours](https://diode.zone/w/34ea4efd-1c0b-4093-851a-ab4996d5f2f7)
## sources
- intro and outro by [Plushgoolash](https://freemusicarchive.org/music/oo/Chin25_Soup_Tennis)
- meditation music: [Poddington Bear - Sad Cyclops](https://freemusicarchive.org/music/Podington_Bear/Ambient/SadCyclops)

View File

@ -0,0 +1,71 @@
---
title: episode 5
season: 1
episode: 5
subtitle: marcus! marcus! marcus!
date: Thu, 24 Apr 2022 12:12:12 -0700
toc-title: Contents
file: 'https://archive.org/download/tilderwhirl-S01E01/tildewhirl-S01E05.mp3'
img_url: https://tilde.town/~dozens/podcast/assets/img/logo.png
length: 97531111
summary: tilde whirl with dozens and marcus
explict: 'yes'
---
## notes
Check it out! It's Marcus!
Tune in as we talk about *bizniss*, tildes, art, anonymity, the art of programming, and minecraft as a means of self expression
This episode's segments:
- Food and Wine: vegan ice cream!
- A Word From Our Sponsors
- Poetry Corner: no one will ever read this
- Hey Gamers!
- Story Corner: joneworlds chapters 1 - 5
This episode's secret message is:
<!-- the secret key is.. "yay mio good job seriously" //-->
```
b yu tokx bufkonnoi yp jcv tokx nuykp xcq yko yp komcdlbzbld mcubm npkbfn
```
## links
Stuff we talked about on the show
- [shrimp!](http://tilde.town/~owenversteeg/)
- [Conway's Law](https://en.wikipedia.org/wiki/Conway%27s_law)
- [riotgirl.club](https://web.archive.org/web/20170717080959/http://riotgirl.club/)
- [No one will ever read this but](http://tilde.town/~karlen/)
- [linkbudz](https://linkbudz.m455.casa/)
- [joneworlds](gemini://republic.circumlunar.space/users/joneworlds/index.gmi)
- [casacraft season 2 server tour](https://tube.tchncs.de/w/p/bUXDVFXChcHV7NrT5iMo8m)
- <https://en.wikipedia.org/wiki/Mendel_Palace>
## sources
sounds included in this episode
Music during poetry corner
- [equa - trans void duet](https://tildetown.bandcamp.com/track/trans-void-duet)
No one will ever read this but...
- <http://tilde.town/~karlen/nowertb/every-day-is-a-beautiful-gift.mp3>
- <http://tilde.town/~karlen/nowertb/henlow.mp3>
- <http://tilde.town/~karlen/nowertb/blitva-i-love-you.mp3>
- <http://tilde.town/~karlen/nowertb/maines-best.mp3>
- <http://tilde.town/~karlen/nowertb/soul-cries.mp3>
- <http://tilde.town/~karlen/nowertb/delicious-and-vegan-meals.mp3>
- <http://tilde.town/~karlen/nowertb/this-universe-called-the-internet.mp3>
Sponsors:
- <https://archive.org/details/RadioCommercialsShows>
- <https://archive.org/details/Old_Radio_Adverts_01>

View File

@ -0,0 +1,129 @@
---
title: episode 6
season: 1
episode: 6
subtitle: tio estas mio
date: Thu, 12 May 2022 12:12:12 -0700
toc-title: Contents
file: 'https://archive.org/download/tilderwhirl-S01E01/tildewhirl-s01e06.mp3'
img_url: https://tilde.town/~dozens/podcast/assets/img/logo.png
summary: tilde whirl with dozens and mio
length: 136911594
explict: 'yes'
---
## notes
This episide gosh darn amazing, i bet you cannot wait to plug it into your ear holes and relax into the sweet, sweet tilde sounds and go on a joy ride on the cosmic tilde whirl 🚀
We talk about tildes, static site generators, significant whitespace, recfiles, origami and folding paper, the tildetown zine, bots, and more!
This episode's special segments include:
- a special birthday message
- hey gamers!: let's play Baba Yaga Goes To Space
- science fun fact corner: nostalgia and hope
- a message from our sponsors
- poetry corner: programmatic sonnets from the poetrydb.org API
- magic and divination: dream magic
- story corner: Chapters 6 - 10 of Braxon by Joneworlds
Your secret message for this episode is:
```
otkv gb xksn ihukndqb lhlbn hdnlfhjb kn kqtbn lhlbn ikfydjr hjy d vdff ibhqsnb dq kj qtb jbwq bldokyb
```
## links
Stuff we talked about on the show
tilde stuff:
- [list of other tildes](http://tilde.club/~pfhawkins/othertildes.html)
recfiles:
- <https://chrismanbrown.gitlab.io/28.html>
- <https://labs.tomasino.org/gnu-recutils/>
zine stuff:
- [imaginary landscapes](https://equa.space/imaginary-landscapes/) natalia's zines for 1-2 nanogenmo
- [tildeverse zine](https://zine.tildeverse.org/)
- [tildetown zine](https://tilde.town/~zine/)
tracery stuff:
- [tracery](https://www.tracery.io/)
- [tracer](https://notabug.org/selfsame/tracer)
- [tracer (py3 port)](https://tildegit.org/ben/tracer)
- [itte](https://git.tilde.town/mio/itte): including source for ramen-kun and the tracery-inspired example
sponsors:
- [Tip-Toe Thru' the Tulips with Me](https://archive.org/details/78_tip-toe-thru-the-tulips-with-me_nick-lucas-dublin-burke_gbia0041008b/Tip-Toe+Thru'+the+Tulips+with+Me+-+Nick+Lucas.flac)
static site stuff:
- [bake](https://ctrl-c.club/~philips/90s/)
- [bake on the static generator list](https://jamstack.org/generators/bake/): it used to be called staticgen.com, but looks like they got subsumed by another site
- [sigal](http://sigal.saimon.org/)
- [simiki](http://simiki.org/)
- [piecrust](https://bolt80.com/piecrust/en/latest/)
folding stuff:
- [red bull paper wings - paper airplane competition](https://paperwings.redbull.com/global-en/)
- [folding the universe(origami from angelfish to zen]: https://www.goodreads.com/book/show/203029.Folding_the_Universe): out of print, unfortunately, but it's available on ebay etc. used an origami classic ... maybe not the best instructions but it was considered moderately advanced at the time
- [zine workflow](https://tilde.town/~mio/wiki/art/zine_workflow.html)
- [dollar carp](https://origami-art.us/images/origami/animals/dollar-carp/dollar-carp.pdf)
- [batman plane](https://www.youtube.com/watch?v=7UBcSfdBS3E)
- [dozens's plane](https://tube.tchncs.de/w/wTnb9YX1dvUTbzog7tLGAd)
hey gamers!
- <https://git.sr.ht/~eli_oat/babayagagoestospace>
- <https://twinery.org/>
- <https://github.com/inkle/inky>
- [Cadventure-text.c reddit thread](https://www.reddit.com/r/dailyprogrammer/comments/pjbuj/intermediate_challenge_2/c3pxbcf/?context=3)
science fun fact corner
- <https://www.goodreads.com/book/show/13651.The_Dispossessed>
- <https://www.npr.org/2021/10/13/1045812865/the-nostalgia-bone>
- <https://www.goodreads.com/book/show/59562260-the-hours-have-lost-their-clock>
- <https://scholarsjunction.msstate.edu/td/3310/>
- <https://discourse.rpgcauldron.com/t/is-there-happy-nsr/347/15>
story corner
- <gemini://republic.circumlunar.space/users/joneworlds/>
poetry corner
- <https://poetrydb.org/index.html>
## sources
happy birthday:
- <https://freemusicarchive.org/music/Monk_Turner__Fascinoma/The_New_Birthday_Song_Contest/Its_Your_Birthday_1839>
- <https://freemusicarchive.org/music/Monk_Turner__Fascinoma/The_New_Birthday_Song_Contest/Its_Your_Birthday_Instrumental>
- <https://freemusicarchive.org/music/Monk_Turner__Fascinoma/The_New_Birthday_Song_Contest/Its_Your_Birthday_Simple_in_B>
- <https://freemusicarchive.org/music/kaleidoplasm/tangerine-amoeba-apartheid-heartbeat-iv/its-only-fairmp3>
- <https://freemusicarchive.org/music/bound-unto-root/the-canopy/the-son-of-a-hoarse-throat>
- <https://freesound.org/people/neilraouf/sounds/484512/>
- <https://freesound.org/people/GaryEdstrom/sounds/322636/>
- <https://freesound.org/people/InspectorJ/sounds/421852/>
- <https://freesound.org/people/deleted_user_5405837/sounds/406504/>
- <https://freesound.org/people/adriancalzon/sounds/219858/>
- <https://freesound.org/people/sironboy/sounds/132106/>
- <https://freesound.org/people/vtownpunks/sounds/63633/>
- <https://freesound.org/people/guamorims/sounds/391357/>
- <https://freesound.org/people/IanStarGem/sounds/269594/>
- <https://freesound.org/people/Vanyamba/sounds/524485/>
- <https://freesound.org/people/InspectorJ/sounds/397948/>
- <https://freesound.org/people/Victor_Natas/sounds/551569/>
- <https://freesound.org/people/Victor_Natas/sounds/551567/>
- <https://freesound.org/people/audiomirage/sounds/564952/>

View File

@ -0,0 +1,59 @@
---
title: episode 7
season: 1
episode: 7
subtitle: vilmibm shaksfrpease
date: Thu, 24 May 2022 12:12:12 -0700
toc-title: Contents
file: 'https://archive.org/download/tilderwhirl-S01E01/tildewhirl-s01e07.mp3'
img_url: https://tilde.town/~dozens/podcast/assets/img/logo.png
summary: tilde whirl with dozens and vilmibm
length: 106772078
explict: 'yes'
---
## notes
Neato! This episode's special guest is vilmibm! We talk about a great many things like nics, memes, and magic; getting older and wiser; poetry and cut-up; authority, memes, and computers.
This episode's special segments include:
- letters from the listeners
- magic and divination: bibliomancy and cut-up
- a message from our sponsors
- poetry corner: cyberpunk prophecies
- hey gamers: little nemo the dream master
- story corner: braxon chapters 11 - 14
Your secret message for this episode is:
```
yju lqn rkntblf curs san wly yju lqn l vnqy kqntbjur inlh
```
## links
Stuff we talked about on the show, and segment links
cutup
- <https://tilde.town/~vilmibm/cbprop.pdf>
- <https://tilde.town/~vilmibm/savescum.pdf>
- <https://write.tildeverse.org/dozens/cutup-technique-exercise-00001>
- <https://github.com/vilmibm/prosaic>
magic and divination
- <https://en.wikipedia.org/wiki/Cut-up_technique>
- <http://www.spookyrusty.com/2022/04/i-test-played-friends-game-solo-ttrpg.html>
- <https://www.drivethrurpg.com/product/338737/Cut-Up-Solo--Hour-of-the-Dragon>
hey gamers
- <https://en.wikipedia.org/wiki/Little_Nemo>
- 🎦 [Winsor McCay - 1911 - Little Nemo](https://yewtu.be/watch?v=kcSp2ej2S00)
our sponsor for this episode
- [HoliznaCC0 - WHAT](https://freemusicarchive.org/music/holiznacc0/straight-to-vhs)

37
data.rec 100644
View File

@ -0,0 +1,37 @@
human: marcus
date: March 23, 2022
time: 20:30 UTC
human: mio
date: March 24, 2022
time: 02:00 UTC
human: vilmibm
email: natesmith@hey.com
date: April 6, 2022
time: 22:30 UTC
human: eli
email: hi@eli.li
date: March 30, 2022
time: 24:00 UTC
human: tomasino
email: james@tomasino.org
date: Wednesday, April 6, 2022
time: 17:30 UTC
human: wsinatra
email: wpsinatra@gmail.com
date: Wednesday, April 6, 2022
time: 8:30 PM Eastern
human: elly
email: efongjones@gmail.com
date: Wednesday, April 13, 2022
time: 6:00 PM Pacific
human: ben
email: ben@tilde.team
date: Wednesday, April 13, 2022
time: 5:00 PM Eastern

View File

@ -0,0 +1,69 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>episode 1</title>
<style>
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
span.underline{text-decoration: underline;}
div.column{display: inline-block; vertical-align: top; width: 50%;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
ul.task-list{list-style: none;}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
<link rel="stylesheet" href="assets/styles/main.css" />
<!--[if lt IE 9]>
<script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv-printshiv.min.js"></script>
<![endif]-->
</head>
<body>
<nav>
<p>
<a href="index.html">home</a>
| <a href="about.html">about</a>
| <a href="game.html">game</a>
| <a href="secret">secret</a>
| <a href="contact.html">contact</a>
</p>
</nav>
<header id="title-block-header">
<h1 class="title">episode 1</h1>
<p class="subtitle">a shiny new podcast! with acdw</p>
<p class="date">Thu, 24 Feb 2022 12:12:12 -0700</p>
</header>
<h2>Listen now</h2>
<audio controls src="https://archive.org/download/tilderwhirl-S01E01/tilderwhirl-S01E01.mp3"></audio>
<p><a href="https://archive.org/download/tilderwhirl-S01E01/tilderwhirl-S01E01.mp3" download>download</a></p>
<nav id="TOC" role="doc-toc">
<h2 id="toc-title">Contents</h2>
<ul>
<li><a href="#notes">notes</a></li>
<li><a href="#links">links</a></li>
<li><a href="#sources">sources</a></li>
</ul>
</nav>
<h2 id="notes">notes</h2>
<p>Hola, Wikipedia!</p>
<p>I started a new podcast! Isnt that just really special?</p>
<p>This episodes guest is acdw. And featured segments include <em>Food and wine</em>, <em>Looking at clouds</em>, and <em>science fun fact corner</em>, and <em>letters from our listeners!</em></p>
<figure>
<img src="assets/img/soup.jpg" alt="soup" /><figcaption aria-hidden="true">soup</figcaption>
</figure>
<h2 id="links">links</h2>
<ul>
<li><a href="https://www.acdw.net/">acdw.net</a></li>
<li><a href="https://en.wikipedia.org/wiki/Elysia_timida" class="uri">https://en.wikipedia.org/wiki/Elysia_timida</a></li>
<li><a href="https://medium.com/message/tilde-club-i-had-a-couple-drinks-and-woke-up-with-1-000-nerds-a8904f0a2ebf">I had a couple drinks and woke up with 1,000 nerds</a></li>
<li><a href="https://breadpunk.club/">breadpunk.club</a></li>
<li><a href="https://tt-rss.org/">tt-rss</a> / <a href="https://rss.tildeverse.org/">rss.tildeverse.org</a></li>
<li><a href="https://github.com/skeeto/elfeed">elfeed</a></li>
<li><a href="https://newsboat.org/">newsboat</a></li>
</ul>
<h2 id="sources">sources</h2>
<p>sounds and stuff used in this episode:</p>
<p><a href="https://freesound.org/people/Ev-Dawg/sounds/337435/">cricket</a> | <a href="https://freesound.org/people/Jace/sounds/35291/">continuous static.wav</a> | <a href="https://archive.org/details/GlobalCommunityRadioChannelOneTechnicalDifficultiesMessage">technical difficulties</a> | <a href="https://freemusicarchive.org/music/Scott_Holmes/happy-background-music/Skip_In_my_Step_1428">Skip In my Step</a></p>
</body>
</html>

View File

@ -0,0 +1,75 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>episode 2</title>
<style>
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
span.underline{text-decoration: underline;}
div.column{display: inline-block; vertical-align: top; width: 50%;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
ul.task-list{list-style: none;}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
<link rel="stylesheet" href="assets/styles/main.css" />
<!--[if lt IE 9]>
<script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv-printshiv.min.js"></script>
<![endif]-->
</head>
<body>
<nav>
<p>
<a href="index.html">home</a>
| <a href="about.html">about</a>
| <a href="game.html">game</a>
| <a href="secret">secret</a>
| <a href="contact.html">contact</a>
</p>
</nav>
<header id="title-block-header">
<h1 class="title">episode 2</h1>
<p class="subtitle">a special conversation with m455</p>
<p class="date">Thu, 12 Mar 2022 12:12:12 -0700</p>
</header>
<h2>Listen now</h2>
<audio controls src="https://archive.org/download/tilderwhirl-S01E01/tildewhirl-S01E02.mp3"></audio>
<p><a href="https://archive.org/download/tilderwhirl-S01E01/tildewhirl-S01E02.mp3" download>download</a></p>
<nav id="TOC" role="doc-toc">
<h2 id="toc-title">Contents</h2>
<ul>
<li><a href="#notes">notes</a></li>
<li><a href="#links">links</a></li>
</ul>
</nav>
<h2 id="notes">notes</h2>
<p>Hey there, pull up a chair, have a seat by the fire, pour a nice tall glass of milk, and listen to dozens and m455 talk about tildistan.</p>
<p>We talk aboot tildes (obviously), inclusivity, starting more projects than you finish, linguistics, and more!</p>
<p>Segments include Science Fun Fact Corner, Poetry Corner, and Magic and Divination.</p>
<h2 id="links">links</h2>
<ul>
<li><a href="https://m455.casa/">m455.casa</a></li>
<li><a href="http://tilde.town/~dozens/sofa/">sofa</a></li>
<li><a href="https://squiggle.city/">squiggle.city</a></li>
<li><a href="https://trash.town/">trash.town</a></li>
<li><a href="https://cosmic.voyage/">cosmic.voyage</a></li>
<li><a href="http://sdf.org/">sdf.org</a></li>
<li><a href="https://qwantz.com/">dinosaur comics</a></li>
<li><a href="https://laserdisc.party/@carithlee/107853224591829561">dudes we did not go through the hassle…</a></li>
<li><a href="https://en.wikipedia.org/wiki/Hanif_Abdurraqib">Hanif Abdurraqib</a></li>
<li><a href="https://freemusicarchive.org/music/Plushgoolash/Chin25_Soup_Tennis">plushgoolash</a></li>
<li><a href="https://www.bastionland.com/2020/12/ask-stars-minimal-solo-rpg.html">ask the stars</a></li>
<li><a href="https://morethanone.info/">morethanone.info</a>: info on plurality</li>
</ul>
<p>lisps:</p>
<ul>
<li><a href="https://www.call-cc.org/">chicken</a></li>
<li><a href="https://github.com/anmonteiro/lumo">lumo</a></li>
<li><a href="https://docs.hylang.org/en/alpha/">hy</a></li>
<li><a href="https://racket-lang.org/">racket</a></li>
<li><a href="https://fennel-lang.org/">fennel</a></li>
</ul>
</body>
</html>

View File

@ -0,0 +1,84 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>episode 3</title>
<style>
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
span.underline{text-decoration: underline;}
div.column{display: inline-block; vertical-align: top; width: 50%;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
ul.task-list{list-style: none;}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
<link rel="stylesheet" href="assets/styles/main.css" />
<!--[if lt IE 9]>
<script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv-printshiv.min.js"></script>
<![endif]-->
</head>
<body>
<nav>
<p>
<a href="index.html">home</a>
| <a href="about.html">about</a>
| <a href="game.html">game</a>
| <a href="secret">secret</a>
| <a href="contact.html">contact</a>
</p>
</nav>
<header id="title-block-header">
<h1 class="title">episode 3</h1>
<p class="subtitle">and now nihilazo</p>
<p class="date">Thu, 24 Mar 2022 12:12:12 -0700</p>
</header>
<h2>Listen now</h2>
<audio controls src="https://archive.org/download/tilderwhirl-S01E01/tildewhirl-S01E03.mp3"></audio>
<p><a href="https://archive.org/download/tilderwhirl-S01E01/tildewhirl-S01E03.mp3" download>download</a></p>
<nav id="TOC" role="doc-toc">
<h2 id="toc-title">Contents</h2>
<ul>
<li><a href="#notes">notes</a></li>
<li><a href="#links">links</a></li>
<li><a href="#sources">sources</a></li>
</ul>
</nav>
<h2 id="notes">notes</h2>
<p>Its nihilazo!! Join us as we talk about tildes, social media, constructed languages (esperanto and toki pona), table top roleplaying games, religions real and fake, and more!</p>
<p>Segments this episode include science fun fact corner, funny papers, letters from our listeners, and magic and divination.</p>
<p>For everything else youll just have to listen. So <em>give it a whirl!</em></p>
<p>Check out nihilazo:</p>
<ul>
<li><a href="https://tilde.town/~nihilazo/" class="uri">https://tilde.town/~nihilazo/</a></li>
<li><a href="https://tiny.tilde.website/@nihilazo" class="uri">https://tiny.tilde.website/@nihilazo</a></li>
</ul>
<h2 id="links">links</h2>
<p>Stuff we talked about on the show</p>
<ul>
<li><a href="https://glowing-bear.org/" class="uri">https://glowing-bear.org/</a></li>
<li>conlangs
<ul>
<li><a href="https://telegramo.org/" class="uri">https://telegramo.org/</a></li>
<li><a href="https://tokipona.org/" class="uri">https://tokipona.org/</a></li>
<li><a href="https://jackhumbert.github.io/sitelen-pona-pona/" class="uri">https://jackhumbert.github.io/sitelen-pona-pona/</a></li>
<li><a href="https://jonathangabel.com/toki-pona/kama-pona/" class="uri">https://jonathangabel.com/toki-pona/kama-pona/</a></li>
</ul></li>
<li>ttrpgs
<ul>
<li><a href="https://en.wikipedia.org/wiki/Fiasco_(role-playing_game)" class="uri">https://en.wikipedia.org/wiki/Fiasco_(role-playing_game)</a></li>
<li><a href="https://fate-srd.com/" class="uri">https://fate-srd.com/</a></li>
<li><a href="https://en.wikipedia.org/wiki/Shadowrun" class="uri">https://en.wikipedia.org/wiki/Shadowrun</a></li>
<li><a href="https://swse.neocities.org/" class="uri">https://swse.neocities.org/</a> (Sixth World Simple Edition: Shadowrun + Dungeon World/PbtA hack)</li>
</ul></li>
<li><a href="https://lichess.org/team/tildetown" class="uri">https://lichess.org/team/tildetown</a></li>
<li><a href="https://rarehistoricalphotos.com/cocaine-paraphernalia-ads-1970s/" class="uri">https://rarehistoricalphotos.com/cocaine-paraphernalia-ads-1970s/</a></li>
<li><a href="https://gravenutterance.com/2019/03/24/recluse-solo-engine/" class="uri">https://gravenutterance.com/2019/03/24/recluse-solo-engine/</a></li>
<li><a href="https://en.wikipedia.org/wiki/Le_g%C3%A9nie_du_mal" class="uri">https://en.wikipedia.org/wiki/Le_g%C3%A9nie_du_mal</a></li>
</ul>
<h2 id="sources">sources</h2>
<p>sounds included in this episode</p>
<p>windows 3.1 startup: <a href="https://ballyweg.net/windows.html" class="uri">https://ballyweg.net/windows.html</a></p>
</body>
</html>

View File

@ -0,0 +1,87 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>episode 4</title>
<style>
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
span.underline{text-decoration: underline;}
div.column{display: inline-block; vertical-align: top; width: 50%;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
ul.task-list{list-style: none;}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
<link rel="stylesheet" href="assets/styles/main.css" />
<!--[if lt IE 9]>
<script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv-printshiv.min.js"></script>
<![endif]-->
</head>
<body>
<nav>
<p>
<a href="index.html">home</a>
| <a href="about.html">about</a>
| <a href="game.html">game</a>
| <a href="secret">secret</a>
| <a href="contact.html">contact</a>
</p>
</nav>
<header id="title-block-header">
<h1 class="title">episode 4</h1>
<p class="subtitle">whoa check it out its piusbird</p>
<p class="date">Thu, 12 Apr 2022 12:12:12 -0700</p>
</header>
<h2>Listen now</h2>
<audio controls src="https://archive.org/download/tilderwhirl-S01E01/tildewhirl-S01E04.mp3"></audio>
<p><a href="https://archive.org/download/tilderwhirl-S01E01/tildewhirl-S01E04.mp3" download>download</a></p>
<nav id="TOC" role="doc-toc">
<h2 id="toc-title">Contents</h2>
<ul>
<li><a href="#notes">notes</a></li>
<li><a href="#links">links</a></li>
<li><a href="#sources">sources</a></li>
</ul>
</nav>
<h2 id="notes">notes</h2>
<p>Check out piusbird!</p>
<ul>
<li><a href="https://tilde.zone/@piusbird" class="uri">https://tilde.zone/@piusbird</a></li>
<li><a href="https://piusbird.space/~matt/" class="uri">https://piusbird.space/~matt/</a></li>
<li><a href="https://www.twitch.tv/piusbird" class="uri">https://www.twitch.tv/piusbird</a></li>
<li><a href="https://joyoflinux.com/" class="uri">https://joyoflinux.com/</a></li>
</ul>
<h2 id="links">links</h2>
<p>Stuff we talked about on the show, and other stuff too</p>
<ul>
<li><a href="https://cosmic.voyage/" class="uri">https://cosmic.voyage/</a></li>
<li><a href="https://medium.com/message/tilde-club-i-had-a-couple-drinks-and-woke-up-with-1-000-nerds-a8904f0a2ebf">I had a couple drinks and woke up with 1,000 nerds</a></li>
<li><a href="https://tilde.town/~dozens/sofa/" class="uri">https://tilde.town/~dozens/sofa/</a></li>
<li><a href="https://nostarch.com/artists-guide-programming" class="uri">https://nostarch.com/artists-guide-programming</a></li>
<li><a href="https://natureofcode.com/book/" class="uri">https://natureofcode.com/book/</a></li>
</ul>
<p>Links from segments:</p>
<ul>
<li>poetry:
<ul>
<li>prosaic: <a href="https://github.com/vilmibm/prosaic" class="uri">https://github.com/vilmibm/prosaic</a></li>
<li>Goblin Time by <span class="citation" data-cites="emmajuettner">@emmajuettner</span><span class="citation" data-cites="mastodon.art">@mastodon.art</span>: <a href="https://mastodon.art/@emmajuettner/108103474257806186" class="uri">https://mastodon.art/@emmajuettner/108103474257806186</a></li>
</ul></li>
<li>gossip:
<ul>
<li>old mauve tilde.town site: <a href="https://web.archive.org/web/20200828025119/https://tilde.town/" class="uri">https://web.archive.org/web/20200828025119/https://tilde.town/</a></li>
<li>Mauve: How One Man Invented a Colour That Changed the World: <a href="https://www.goodreads.com/book/show/580291.Mauve" class="uri">https://www.goodreads.com/book/show/580291.Mauve</a></li>
<li>The Mauve Decade: American Life at the End of the Nineteenth Century: <a href="https://www.goodreads.com/book/show/1251892.The_Mauve_Decade" class="uri">https://www.goodreads.com/book/show/1251892.The_Mauve_Decade</a></li>
<li>Grooming, Gossip, and the Evolution of Language: <a href="https://www.goodreads.com/book/show/197921.Grooming_Gossip_and_the_Evolution_of_Language" class="uri">https://www.goodreads.com/book/show/197921.Grooming_Gossip_and_the_Evolution_of_Language</a></li>
</ul></li>
<li><a href="https://diode.zone/w/34ea4efd-1c0b-4093-851a-ab4996d5f2f7">tiktok voice says random words for fifteen hours</a></li>
</ul>
<h2 id="sources">sources</h2>
<ul>
<li>intro and outro by <a href="https://freemusicarchive.org/music/oo/Chin25_Soup_Tennis">Plushgoolash</a></li>
<li>meditation music: <a href="https://freemusicarchive.org/music/Podington_Bear/Ambient/SadCyclops">Poddington Bear - Sad Cyclops</a></li>
</ul>
</body>
</html>

View File

@ -0,0 +1,96 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>episode 5</title>
<style>
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
span.underline{text-decoration: underline;}
div.column{display: inline-block; vertical-align: top; width: 50%;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
ul.task-list{list-style: none;}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
<link rel="stylesheet" href="assets/styles/main.css" />
<!--[if lt IE 9]>
<script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv-printshiv.min.js"></script>
<![endif]-->
</head>
<body>
<nav>
<p>
<a href="index.html">home</a>
| <a href="about.html">about</a>
| <a href="game.html">game</a>
| <a href="secret">secret</a>
| <a href="contact.html">contact</a>
</p>
</nav>
<header id="title-block-header">
<h1 class="title">episode 5</h1>
<p class="subtitle">marcus! marcus! marcus!</p>
<p class="date">Thu, 24 Apr 2022 12:12:12 -0700</p>
</header>
<h2>Listen now</h2>
<audio controls src="https://archive.org/download/tilderwhirl-S01E01/tildewhirl-S01E05.mp3"></audio>
<p><a href="https://archive.org/download/tilderwhirl-S01E01/tildewhirl-S01E05.mp3" download>download</a></p>
<nav id="TOC" role="doc-toc">
<h2 id="toc-title">Contents</h2>
<ul>
<li><a href="#notes">notes</a></li>
<li><a href="#links">links</a></li>
<li><a href="#sources">sources</a></li>
</ul>
</nav>
<h2 id="notes">notes</h2>
<p>Check it out! Its Marcus!</p>
<p>Tune in as we talk about <em>bizniss</em>, tildes, art, anonymity, the art of programming, and minecraft as a means of self expression</p>
<p>This episodes segments:</p>
<ul>
<li>Food and Wine: vegan ice cream!</li>
<li>A Word From Our Sponsors</li>
<li>Poetry Corner: no one will ever read this</li>
<li>Hey Gamers!</li>
<li>Story Corner: joneworlds chapters 1 - 5</li>
</ul>
<p>This episodes secret message is:</p>
<!-- the secret key is.. "yay mio good job seriously" //-->
<pre><code>b yu tokx bufkonnoi yp jcv tokx nuykp xcq yko yp komcdlbzbld mcubm npkbfn</code></pre>
<h2 id="links">links</h2>
<p>Stuff we talked about on the show</p>
<ul>
<li><a href="http://tilde.town/~owenversteeg/">shrimp!</a></li>
<li><a href="https://en.wikipedia.org/wiki/Conway%27s_law">Conways Law</a></li>
<li><a href="https://web.archive.org/web/20170717080959/http://riotgirl.club/">riotgirl.club</a></li>
<li><a href="http://tilde.town/~karlen/">No one will ever read this but</a></li>
<li><a href="https://linkbudz.m455.casa/">linkbudz</a></li>
<li><a href="gemini://republic.circumlunar.space/users/joneworlds/index.gmi">joneworlds</a></li>
<li><a href="https://tube.tchncs.de/w/p/bUXDVFXChcHV7NrT5iMo8m">casacraft season 2 server tour</a></li>
<li><a href="https://en.wikipedia.org/wiki/Mendel_Palace" class="uri">https://en.wikipedia.org/wiki/Mendel_Palace</a></li>
</ul>
<h2 id="sources">sources</h2>
<p>sounds included in this episode</p>
<p>Music during poetry corner</p>
<ul>
<li><a href="https://tildetown.bandcamp.com/track/trans-void-duet">equa - trans void duet</a></li>
</ul>
<p>No one will ever read this but…</p>
<ul>
<li><a href="http://tilde.town/~karlen/nowertb/every-day-is-a-beautiful-gift.mp3" class="uri">http://tilde.town/~karlen/nowertb/every-day-is-a-beautiful-gift.mp3</a></li>
<li><a href="http://tilde.town/~karlen/nowertb/henlow.mp3" class="uri">http://tilde.town/~karlen/nowertb/henlow.mp3</a></li>
<li><a href="http://tilde.town/~karlen/nowertb/blitva-i-love-you.mp3" class="uri">http://tilde.town/~karlen/nowertb/blitva-i-love-you.mp3</a></li>
<li><a href="http://tilde.town/~karlen/nowertb/maines-best.mp3" class="uri">http://tilde.town/~karlen/nowertb/maines-best.mp3</a></li>
<li><a href="http://tilde.town/~karlen/nowertb/soul-cries.mp3" class="uri">http://tilde.town/~karlen/nowertb/soul-cries.mp3</a></li>
<li><a href="http://tilde.town/~karlen/nowertb/delicious-and-vegan-meals.mp3" class="uri">http://tilde.town/~karlen/nowertb/delicious-and-vegan-meals.mp3</a></li>
<li><a href="http://tilde.town/~karlen/nowertb/this-universe-called-the-internet.mp3" class="uri">http://tilde.town/~karlen/nowertb/this-universe-called-the-internet.mp3</a></li>
</ul>
<p>Sponsors:</p>
<ul>
<li><a href="https://archive.org/details/RadioCommercialsShows" class="uri">https://archive.org/details/RadioCommercialsShows</a></li>
<li><a href="https://archive.org/details/Old_Radio_Adverts_01" class="uri">https://archive.org/details/Old_Radio_Adverts_01</a></li>
</ul>
</body>
</html>

View File

@ -0,0 +1,155 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>episode 6</title>
<style>
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
span.underline{text-decoration: underline;}
div.column{display: inline-block; vertical-align: top; width: 50%;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
ul.task-list{list-style: none;}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
<link rel="stylesheet" href="assets/styles/main.css" />
<!--[if lt IE 9]>
<script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv-printshiv.min.js"></script>
<![endif]-->
</head>
<body>
<nav>
<p>
<a href="index.html">home</a>
| <a href="about.html">about</a>
| <a href="game.html">game</a>
| <a href="secret">secret</a>
| <a href="contact.html">contact</a>
</p>
</nav>
<header id="title-block-header">
<h1 class="title">episode 6</h1>
<p class="subtitle">tio estas mio</p>
<p class="date">Thu, 12 May 2022 12:12:12 -0700</p>
</header>
<h2>Listen now</h2>
<audio controls src="https://archive.org/download/tilderwhirl-S01E01/tildewhirl-s01e06.mp3"></audio>
<p><a href="https://archive.org/download/tilderwhirl-S01E01/tildewhirl-s01e06.mp3" download>download</a></p>
<nav id="TOC" role="doc-toc">
<h2 id="toc-title">Contents</h2>
<ul>
<li><a href="#notes">notes</a></li>
<li><a href="#links">links</a></li>
<li><a href="#sources">sources</a></li>
</ul>
</nav>
<h2 id="notes">notes</h2>
<p>This episide gosh darn amazing, i bet you cannot wait to plug it into your ear holes and relax into the sweet, sweet tilde sounds and go on a joy ride on the cosmic tilde whirl 🚀</p>
<p>We talk about tildes, static site generators, significant whitespace, recfiles, origami and folding paper, the tildetown zine, bots, and more!</p>
<p>This episodes special segments include:</p>
<ul>
<li>a special birthday message</li>
<li>hey gamers!: lets play Baba Yaga Goes To Space</li>
<li>science fun fact corner: nostalgia and hope</li>
<li>a message from our sponsors</li>
<li>poetry corner: programmatic sonnets from the poetrydb.org API</li>
<li>magic and divination: dream magic</li>
<li>story corner: Chapters 6 - 10 of Braxon by Joneworlds</li>
</ul>
<p>Your secret message for this episode is:</p>
<pre><code>otkv gb xksn ihukndqb lhlbn hdnlfhjb kn kqtbn lhlbn ikfydjr hjy d vdff ibhqsnb dq kj qtb jbwq bldokyb</code></pre>
<h2 id="links">links</h2>
<p>Stuff we talked about on the show</p>
<p>tilde stuff:</p>
<ul>
<li><a href="http://tilde.club/~pfhawkins/othertildes.html">list of other tildes</a></li>
</ul>
<p>recfiles:</p>
<ul>
<li><a href="https://chrismanbrown.gitlab.io/28.html" class="uri">https://chrismanbrown.gitlab.io/28.html</a></li>
<li><a href="https://labs.tomasino.org/gnu-recutils/" class="uri">https://labs.tomasino.org/gnu-recutils/</a></li>
</ul>
<p>zine stuff:</p>
<ul>
<li><a href="https://equa.space/imaginary-landscapes/">imaginary landscapes</a> natalias zines for 1-2 nanogenmo</li>
<li><a href="https://zine.tildeverse.org/">tildeverse zine</a></li>
<li><a href="https://tilde.town/~zine/">tildetown zine</a></li>
</ul>
<p>tracery stuff:</p>
<ul>
<li><a href="https://www.tracery.io/">tracery</a></li>
<li><a href="https://notabug.org/selfsame/tracer">tracer</a></li>
<li><a href="https://tildegit.org/ben/tracer">tracer (py3 port)</a></li>
<li><a href="https://git.tilde.town/mio/itte">itte</a>: including source for ramen-kun and the tracery-inspired example</li>
</ul>
<p>sponsors:</p>
<ul>
<li><a href="https://archive.org/details/78_tip-toe-thru-the-tulips-with-me_nick-lucas-dublin-burke_gbia0041008b/Tip-Toe+Thru&#39;+the+Tulips+with+Me+-+Nick+Lucas.flac">Tip-Toe Thru the Tulips with Me</a></li>
</ul>
<p>static site stuff:</p>
<ul>
<li><a href="https://ctrl-c.club/~philips/90s/">bake</a></li>
<li><a href="https://jamstack.org/generators/bake/">bake on the static generator list</a>: it used to be called staticgen.com, but looks like they got subsumed by another site</li>
<li><a href="http://sigal.saimon.org/">sigal</a></li>
<li><a href="http://simiki.org/">simiki</a></li>
<li><a href="https://bolt80.com/piecrust/en/latest/">piecrust</a></li>
</ul>
<p>folding stuff:</p>
<ul>
<li><a href="https://paperwings.redbull.com/global-en/">red bull paper wings - paper airplane competition</a></li>
<li></li>
<li><a href="https://tilde.town/~mio/wiki/art/zine_workflow.html">zine workflow</a></li>
<li><a href="https://origami-art.us/images/origami/animals/dollar-carp/dollar-carp.pdf">dollar carp</a></li>
<li><a href="https://www.youtube.com/watch?v=7UBcSfdBS3E">batman plane</a></li>
<li><a href="https://tube.tchncs.de/w/wTnb9YX1dvUTbzog7tLGAd">dozenss plane</a></li>
</ul>
<p>hey gamers!</p>
<ul>
<li><a href="https://git.sr.ht/~eli_oat/babayagagoestospace" class="uri">https://git.sr.ht/~eli_oat/babayagagoestospace</a></li>
<li><a href="https://twinery.org/" class="uri">https://twinery.org/</a></li>
<li><a href="https://github.com/inkle/inky" class="uri">https://github.com/inkle/inky</a></li>
<li><a href="https://www.reddit.com/r/dailyprogrammer/comments/pjbuj/intermediate_challenge_2/c3pxbcf/?context=3">Cadventure-text.c reddit thread</a></li>
</ul>
<p>science fun fact corner</p>
<ul>
<li><a href="https://www.goodreads.com/book/show/13651.The_Dispossessed" class="uri">https://www.goodreads.com/book/show/13651.The_Dispossessed</a></li>
<li><a href="https://www.npr.org/2021/10/13/1045812865/the-nostalgia-bone" class="uri">https://www.npr.org/2021/10/13/1045812865/the-nostalgia-bone</a></li>
<li><a href="https://www.goodreads.com/book/show/59562260-the-hours-have-lost-their-clock" class="uri">https://www.goodreads.com/book/show/59562260-the-hours-have-lost-their-clock</a></li>
<li><a href="https://scholarsjunction.msstate.edu/td/3310/" class="uri">https://scholarsjunction.msstate.edu/td/3310/</a></li>
<li><a href="https://discourse.rpgcauldron.com/t/is-there-happy-nsr/347/15" class="uri">https://discourse.rpgcauldron.com/t/is-there-happy-nsr/347/15</a></li>
</ul>
<p>story corner</p>
<ul>
<li>&lt;gemini://republic.circumlunar.space/users/joneworlds/&gt;</li>
</ul>
<p>poetry corner</p>
<ul>
<li><a href="https://poetrydb.org/index.html" class="uri">https://poetrydb.org/index.html</a></li>
</ul>
<h2 id="sources">sources</h2>
<p>happy birthday:</p>
<ul>
<li><a href="https://freemusicarchive.org/music/Monk_Turner__Fascinoma/The_New_Birthday_Song_Contest/Its_Your_Birthday_1839" class="uri">https://freemusicarchive.org/music/Monk_Turner__Fascinoma/The_New_Birthday_Song_Contest/Its_Your_Birthday_1839</a></li>
<li><a href="https://freemusicarchive.org/music/Monk_Turner__Fascinoma/The_New_Birthday_Song_Contest/Its_Your_Birthday_Instrumental" class="uri">https://freemusicarchive.org/music/Monk_Turner__Fascinoma/The_New_Birthday_Song_Contest/Its_Your_Birthday_Instrumental</a></li>
<li><a href="https://freemusicarchive.org/music/Monk_Turner__Fascinoma/The_New_Birthday_Song_Contest/Its_Your_Birthday_Simple_in_B" class="uri">https://freemusicarchive.org/music/Monk_Turner__Fascinoma/The_New_Birthday_Song_Contest/Its_Your_Birthday_Simple_in_B</a></li>
<li><a href="https://freemusicarchive.org/music/kaleidoplasm/tangerine-amoeba-apartheid-heartbeat-iv/its-only-fairmp3" class="uri">https://freemusicarchive.org/music/kaleidoplasm/tangerine-amoeba-apartheid-heartbeat-iv/its-only-fairmp3</a></li>
<li><a href="https://freemusicarchive.org/music/bound-unto-root/the-canopy/the-son-of-a-hoarse-throat" class="uri">https://freemusicarchive.org/music/bound-unto-root/the-canopy/the-son-of-a-hoarse-throat</a></li>
<li><a href="https://freesound.org/people/neilraouf/sounds/484512/" class="uri">https://freesound.org/people/neilraouf/sounds/484512/</a></li>
<li><a href="https://freesound.org/people/GaryEdstrom/sounds/322636/" class="uri">https://freesound.org/people/GaryEdstrom/sounds/322636/</a></li>
<li><a href="https://freesound.org/people/InspectorJ/sounds/421852/" class="uri">https://freesound.org/people/InspectorJ/sounds/421852/</a></li>
<li><a href="https://freesound.org/people/deleted_user_5405837/sounds/406504/" class="uri">https://freesound.org/people/deleted_user_5405837/sounds/406504/</a></li>
<li><a href="https://freesound.org/people/adriancalzon/sounds/219858/" class="uri">https://freesound.org/people/adriancalzon/sounds/219858/</a></li>
<li><a href="https://freesound.org/people/sironboy/sounds/132106/" class="uri">https://freesound.org/people/sironboy/sounds/132106/</a></li>
<li><a href="https://freesound.org/people/vtownpunks/sounds/63633/" class="uri">https://freesound.org/people/vtownpunks/sounds/63633/</a></li>
<li><a href="https://freesound.org/people/guamorims/sounds/391357/" class="uri">https://freesound.org/people/guamorims/sounds/391357/</a></li>
<li><a href="https://freesound.org/people/IanStarGem/sounds/269594/" class="uri">https://freesound.org/people/IanStarGem/sounds/269594/</a></li>
<li><a href="https://freesound.org/people/Vanyamba/sounds/524485/" class="uri">https://freesound.org/people/Vanyamba/sounds/524485/</a></li>
<li><a href="https://freesound.org/people/InspectorJ/sounds/397948/" class="uri">https://freesound.org/people/InspectorJ/sounds/397948/</a></li>
<li><a href="https://freesound.org/people/Victor_Natas/sounds/551569/" class="uri">https://freesound.org/people/Victor_Natas/sounds/551569/</a></li>
<li><a href="https://freesound.org/people/Victor_Natas/sounds/551567/" class="uri">https://freesound.org/people/Victor_Natas/sounds/551567/</a></li>
<li><a href="https://freesound.org/people/audiomirage/sounds/564952/" class="uri">https://freesound.org/people/audiomirage/sounds/564952/</a></li>
</ul>
</body>
</html>

View File

@ -0,0 +1,85 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>episode 7</title>
<style>
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
span.underline{text-decoration: underline;}
div.column{display: inline-block; vertical-align: top; width: 50%;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
ul.task-list{list-style: none;}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
<link rel="stylesheet" href="assets/styles/main.css" />
<!--[if lt IE 9]>
<script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv-printshiv.min.js"></script>
<![endif]-->
</head>
<body>
<nav>
<p>
<a href="index.html">home</a>
| <a href="about.html">about</a>
| <a href="game.html">game</a>
| <a href="secret">secret</a>
| <a href="contact.html">contact</a>
</p>
</nav>
<header id="title-block-header">
<h1 class="title">episode 7</h1>
<p class="subtitle">vilmibm shaksfrpease</p>
<p class="date">Thu, 24 May 2022 12:12:12 -0700</p>
</header>
<h2>Listen now</h2>
<audio controls src="https://archive.org/download/tilderwhirl-S01E01/tildewhirl-s01e07.mp3"></audio>
<p><a href="https://archive.org/download/tilderwhirl-S01E01/tildewhirl-s01e07.mp3" download>download</a></p>
<nav id="TOC" role="doc-toc">
<h2 id="toc-title">Contents</h2>
<ul>
<li><a href="#notes">notes</a></li>
<li><a href="#links">links</a></li>
</ul>
</nav>
<h2 id="notes">notes</h2>
<p>Neato! This episodes special guest is vilmibm! We talk about a great many things like nics, memes, and magic; getting older and wiser; poetry and cut-up; authority, memes, and computers.</p>
<p>This episodes special segments include:</p>
<ul>
<li>letters from the listeners</li>
<li>magic and divination: bibliomancy and cut-up</li>
<li>a message from our sponsors</li>
<li>poetry corner: cyberpunk prophecies</li>
<li>hey gamers: little nemo the dream master</li>
<li>story corner: braxon chapters 11 - 14</li>
</ul>
<p>Your secret message for this episode is:</p>
<pre><code>yju lqn rkntblf curs san wly yju lqn l vnqy kqntbjur inlh</code></pre>
<h2 id="links">links</h2>
<p>Stuff we talked about on the show, and segment links</p>
<p>cutup</p>
<ul>
<li><a href="https://tilde.town/~vilmibm/cbprop.pdf" class="uri">https://tilde.town/~vilmibm/cbprop.pdf</a></li>
<li><a href="https://tilde.town/~vilmibm/savescum.pdf" class="uri">https://tilde.town/~vilmibm/savescum.pdf</a></li>
<li><a href="https://write.tildeverse.org/dozens/cutup-technique-exercise-00001" class="uri">https://write.tildeverse.org/dozens/cutup-technique-exercise-00001</a></li>
<li><a href="https://github.com/vilmibm/prosaic" class="uri">https://github.com/vilmibm/prosaic</a></li>
</ul>
<p>magic and divination</p>
<ul>
<li><a href="https://en.wikipedia.org/wiki/Cut-up_technique" class="uri">https://en.wikipedia.org/wiki/Cut-up_technique</a></li>
<li><a href="http://www.spookyrusty.com/2022/04/i-test-played-friends-game-solo-ttrpg.html" class="uri">http://www.spookyrusty.com/2022/04/i-test-played-friends-game-solo-ttrpg.html</a></li>
<li><a href="https://www.drivethrurpg.com/product/338737/Cut-Up-Solo--Hour-of-the-Dragon" class="uri">https://www.drivethrurpg.com/product/338737/Cut-Up-Solo--Hour-of-the-Dragon</a></li>
</ul>
<p>hey gamers</p>
<ul>
<li><a href="https://en.wikipedia.org/wiki/Little_Nemo" class="uri">https://en.wikipedia.org/wiki/Little_Nemo</a></li>
<li>🎦 <a href="https://yewtu.be/watch?v=kcSp2ej2S00">Winsor McCay - 1911 - Little Nemo</a></li>
</ul>
<p>our sponsor for this episode</p>
<ul>
<li><a href="https://freemusicarchive.org/music/holiznacc0/straight-to-vhs">HoliznaCC0 - WHAT</a></li>
</ul>
</body>
</html>

View File

@ -0,0 +1,32 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>2022-06-12-episode-8-eli</title>
<style>
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
span.underline{text-decoration: underline;}
div.column{display: inline-block; vertical-align: top; width: 50%;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
ul.task-list{list-style: none;}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
<link rel="stylesheet" href="assets/styles/main.css" />
<!--[if lt IE 9]>
<script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv-printshiv.min.js"></script>
<![endif]-->
</head>
<body>
<nav>
<p>
<a href="index.html">home</a>
| <a href="about.html">about</a>
| <a href="contact.html">contact</a>
</p>
</nav>
</body>
</html>

View File

@ -0,0 +1,32 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>2022-06-24-episode-9-tomasino</title>
<style>
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
span.underline{text-decoration: underline;}
div.column{display: inline-block; vertical-align: top; width: 50%;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
ul.task-list{list-style: none;}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
<link rel="stylesheet" href="assets/styles/main.css" />
<!--[if lt IE 9]>
<script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv-printshiv.min.js"></script>
<![endif]-->
</head>
<body>
<nav>
<p>
<a href="index.html">home</a>
| <a href="about.html">about</a>
| <a href="contact.html">contact</a>
</p>
</nav>
</body>
</html>

80
dist/about.html vendored 100644
View File

@ -0,0 +1,80 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>about</title>
<style>
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
span.underline{text-decoration: underline;}
div.column{display: inline-block; vertical-align: top; width: 50%;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
ul.task-list{list-style: none;}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
<link rel="stylesheet" href="assets/styles/main.css" />
<!--[if lt IE 9]>
<script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv-printshiv.min.js"></script>
<![endif]-->
</head>
<body>
<nav>
<p>
<a href="index.html">home</a>
| <a href="about.html">about</a>
| <a href="game.html">game</a>
| <a href="secret">secret</a>
| <a href="contact.html">contact</a>
</p>
</nav>
<header id="title-block-header">
<h1 class="title">about</h1>
<p class="subtitle">what is all this anyway</p>
</header>
<nav id="TOC" role="doc-toc">
<h2 id="toc-title">Contents</h2>
<ul>
<li><a href="#what">what</a></li>
<li><a href="#when">when</a></li>
<li><a href="#who">who</a></li>
<li><a href="#why">why</a></li>
<li><a href="#sources">sources</a></li>
</ul>
</nav>
<h2 id="what">what</h2>
<p>Welcome to the Tilde Whirl Tildeverse podcast!</p>
<p>A <em>tilde</em> is computer meant for sharing. Users create accounts and use shared resources for communicating and collaborating on stuff.</p>
<p>The <em>tildeverse</em> is a loose organization of said tildes, and also resources and services created for them.</p>
<p>And this is an interview / variety show podcast where I interview people from the tildeverse, interrupted now and then by special segments.</p>
<p>If you want to know more, youll have to give it a listen. So come on and <em>give it a whirl!</em></p>
<p>more about tildes:</p>
<ul>
<li><a href="https://medium.com/message/tilde-club-i-had-a-couple-drinks-and-woke-up-with-1-000-nerds-a8904f0a2ebf">i had a couple drinks and woke up with 1,000 nerds: the story of tilde.Club</a></li>
<li><a href="https://tilde.town/">tilde.town</a></li>
<li><a href="https://tildeverse.org/">tildeverse.org</a></li>
</ul>
<h2 id="when">when</h2>
<p>New episodes drop on the 12th and 24th of each month.</p>
<h2 id="who">who</h2>
<p>Hi, Im dozens! 👋</p>
<p>Im just some guy from the internet, who is a hero for fun and a friend to animals.</p>
<ul>
<li>email: dozens@tilde.team</li>
<li>mastodon: <span class="citation" data-cites="dozens">@dozens</span><span class="citation" data-cites="tiny.tilde.website">@tiny.tilde.website</span></li>
<li>dozens on tilde.chat and libera.chat</li>
</ul>
<h2 id="why">why</h2>
<p>BECAUSE</p>
<h2 id="sources">sources</h2>
<p>Sounds you hear on the show.</p>
<p>See individual episodes for more credits and sources.</p>
<ul>
<li>intro: “<a href="https://freemusicarchive.org/music/Plushgoolash/Chin25_Soup_Tennis/01-Punishment">punishment</a>” by Plushgoolash</li>
<li>outro: “<a href="https://freemusicarchive.org/music/Plushgoolash/Chin25_Soup_Tennis/03-Big-Gay-Water-Fight">big gay water fight</a>” by Plushgoolash</li>
<li><a href="https://freesound.org/people/djlprojects/sounds/419594/">Mystical Wind Chimes Transition FX</a></li>
<li>logo: <a href="https://commons.wikimedia.org/wiki/File:Avestafestivalen03.jpg">Funfair of Avestafestivalen</a> + <a href="https://www.fontspace.com/crafty-signs-font-f70130">Crafty signs</a></li>
</ul>
</body>
</html>

BIN
dist/assets/img/logo.png vendored 100644

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.8 MiB

BIN
dist/assets/img/logo_cmyk.png vendored 100644

Binary file not shown.

After

Width:  |  Height:  |  Size: 101 KiB

BIN
dist/assets/img/logo_rgby.png vendored 100644

Binary file not shown.

After

Width:  |  Height:  |  Size: 93 KiB

BIN
dist/assets/img/soup.jpg vendored 100644

Binary file not shown.

After

Width:  |  Height:  |  Size: 202 KiB

142
dist/assets/styles/main.css vendored 100644
View File

@ -0,0 +1,142 @@
* {
box-sizing: border-box;
}
html {
line-height: 1.5;
font-family: Georgia, serif;
font-size: 22px;
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 60ch;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 1em;
}
}
@media print {
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, 'Lucida Console', Consolas, monospace;
font-size: 85%;
margin: 0;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
span.underline{text-decoration: underline;}
div.column{display: inline-block; vertical-align: top; width: 50%;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
ul.task-list{list-style: none;}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
audio { width: 100%; }

42
dist/contact.html vendored 100644
View File

@ -0,0 +1,42 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>contact</title>
<style>
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
span.underline{text-decoration: underline;}
div.column{display: inline-block; vertical-align: top; width: 50%;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
ul.task-list{list-style: none;}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
<link rel="stylesheet" href="assets/styles/main.css" />
<!--[if lt IE 9]>
<script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv-printshiv.min.js"></script>
<![endif]-->
</head>
<body>
<nav>
<p>
<a href="index.html">home</a>
| <a href="about.html">about</a>
| <a href="game.html">game</a>
| <a href="secret">secret</a>
| <a href="contact.html">contact</a>
</p>
</nav>
<header id="title-block-header">
<h1 class="title">contact</h1>
<p class="subtitle">stay in touch!</p>
</header>
<ul>
<li>dozens@tilde.team</li>
<li><span class="citation" data-cites="dozens">@dozens</span><span class="citation" data-cites="tiny.tilde.website">@tiny.tilde.website</span></li>
<li>#tildewhirl on libera.chat</li>
</ul>
</body>
</html>

9517
dist/game.html vendored 100644

File diff suppressed because it is too large Load Diff

64
dist/index.html vendored 100644
View File

@ -0,0 +1,64 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<meta name="author" content="dozens" />
<title>TILDE WHIRL</title>
<style>
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
span.underline{text-decoration: underline;}
div.column{display: inline-block; vertical-align: top; width: 50%;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
ul.task-list{list-style: none;}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
<link rel="stylesheet" href="assets/styles/main.css" />
<!--[if lt IE 9]>
<script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv-printshiv.min.js"></script>
<![endif]-->
<link rel="alternate" type="application/rss+xml" href="rss.xml" title="podcast rss">
</head>
<body>
<nav>
<p>
<a href="index.html">home</a>
| <a href="about.html">about</a>
| <a href="game.html">game</a>
| <a href="secret">secret</a>
| <a href="contact.html">contact</a>
</p>
</nav>
<header id="title-block-header">
<h1 class="title">TILDE WHIRL</h1>
<p class="subtitle">the greatest tildeverse podcast in the world</p>
<p class="author">dozens</p>
</header>
<p>
<a href="rss.xml">Subscribe with <abbr title="Rumplestiltskin Stiltskin Stiltskin">RSS</abbr> 🚀</a>
</p>
<figure>
<img src="assets/img/logo_cmyk.png" alt="tilde whirl logo"/>
<figcaption>
give it a whirl
</figcaption>
</figure>
<p>
New episodes on the 12th and the 24th of each month.
</p>
<h2>
Episodes:
</h2>
<ul>
<li><a href="2022-05-24-episode-7-vilmibm.html">episode 7</a>: vilmibm shaksfrpease</li>
<li><a href="2022-05-12-episode-6-mio.html">episode 6</a>: tio estas mio</li>
<li><a href="2022-04-24-episode-5-marcus.html">episode 5</a>: marcus! marcus! marcus!</li>
<li><a href="2022-04-12-episode-4-piusbird.html">episode 4</a>: whoa check it out its piusbird</li>
<li><a href="2022-03-24-episode-3-nihilazo.html">episode 3</a>: and now nihilazo</li>
<li><a href="2022-03-03-episode-2-m455.html">episode 2</a>: a special conversation with m455</li>
<li><a href="2022-03-03-episode-1-acdw.html">episode 1</a>: a shiny new podcast! with acdw</li>
</ul>
</body>
</html>

377
dist/rss.xml vendored 100644
View File

@ -0,0 +1,377 @@
<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel><title>Tilde Whirl Tildeverse Podcast</title>
<link>https://tilde.town/~dozens/podcast/index.html</link><description>the greatest tildeverse podcast in the world</description>
<atom:link rel="self" type="application/rss+xml" href="https://tilde.town/~dozens/podcast/rss.xml"/>
<image>
<url>https://tilde.town/~dozens/podcast/assets/img/logo.png</url>
<title>Tilde Whirl Tildeverse Podcast</title>
<link>https://tilde.town/~dozens/podcast/index.html</link>
</image>
<generator>pandoc and stuff</generator>
<lastBuildDate>Wed, 18 May 2022 09:03:12 -0600</lastBuildDate>
<atom:link href="https://tilde.town/~dozens/podcast/rss.xml" rel="self" type="application/rss+xml"/>
<webMaster>dozens@tilde.team (dozens)</webMaster>
<managingEditor>dozens@tilde.team (dozens)</managingEditor>
<copyright>dozens</copyright>
<language>en</language>
<item>
<title>episode 7</title>
<link>https://tilde.town/~dozens/podcast/2022-05-24-episode-7-vilmibm.html</link>
<pubDate>Thu, 24 May 2022 12:12:12 -0700</pubDate>
<description><![CDATA[<h2 id="notes">notes</h2>
<p>Neato! This episodes special guest is vilmibm! We talk about a great many things like nics, memes, and magic; getting older and wiser; poetry and cut-up; authority, memes, and computers.</p>
<p>This episodes special segments include:</p>
<ul>
<li>letters from the listeners</li>
<li>magic and divination: bibliomancy and cut-up</li>
<li>a message from our sponsors</li>
<li>poetry corner: cyberpunk prophecies</li>
<li>hey gamers: little nemo the dream master</li>
<li>story corner: braxon chapters 11 - 14</li>
</ul>
<p>Your secret message for this episode is:</p>
<pre><code>yju lqn rkntblf curs san wly yju lqn l vnqy kqntbjur inlh</code></pre>
<h2 id="links">links</h2>
<p>Stuff we talked about on the show, and segment links</p>
<p>cutup</p>
<ul>
<li><a href="https://tilde.town/~vilmibm/cbprop.pdf" class="uri">https://tilde.town/~vilmibm/cbprop.pdf</a></li>
<li><a href="https://tilde.town/~vilmibm/savescum.pdf" class="uri">https://tilde.town/~vilmibm/savescum.pdf</a></li>
<li><a href="https://write.tildeverse.org/dozens/cutup-technique-exercise-00001" class="uri">https://write.tildeverse.org/dozens/cutup-technique-exercise-00001</a></li>
<li><a href="https://github.com/vilmibm/prosaic" class="uri">https://github.com/vilmibm/prosaic</a></li>
</ul>
<p>magic and divination</p>
<ul>
<li><a href="https://en.wikipedia.org/wiki/Cut-up_technique" class="uri">https://en.wikipedia.org/wiki/Cut-up_technique</a></li>
<li><a href="http://www.spookyrusty.com/2022/04/i-test-played-friends-game-solo-ttrpg.html" class="uri">http://www.spookyrusty.com/2022/04/i-test-played-friends-game-solo-ttrpg.html</a></li>
<li><a href="https://www.drivethrurpg.com/product/338737/Cut-Up-Solo--Hour-of-the-Dragon" class="uri">https://www.drivethrurpg.com/product/338737/Cut-Up-Solo--Hour-of-the-Dragon</a></li>
</ul>
<p>hey gamers</p>
<ul>
<li><a href="https://en.wikipedia.org/wiki/Little_Nemo" class="uri">https://en.wikipedia.org/wiki/Little_Nemo</a></li>
<li>🎦 <a href="https://yewtu.be/watch?v=kcSp2ej2S00">Winsor McCay - 1911 - Little Nemo</a></li>
</ul>
<p>our sponsor for this episode</p>
<ul>
<li><a href="https://freemusicarchive.org/music/holiznacc0/straight-to-vhs">HoliznaCC0 - WHAT</a></li>
</ul>]]></description>
<guid isPermaLink="false">Thu, 24 May 2022 12:12:12 -0700</guid>
<enclosure url="https://archive.org/download/tilderwhirl-S01E01/tildewhirl-s01e07.mp3" length="106772078" type="audio/x-m4a"/>
</item>
<item>
<title>episode 6</title>
<link>https://tilde.town/~dozens/podcast/2022-05-12-episode-6-mio.html</link>
<pubDate>Thu, 12 May 2022 12:12:12 -0700</pubDate>
<description><![CDATA[<h2 id="notes">notes</h2>
<p>This episide gosh darn amazing, i bet you cannot wait to plug it into your ear holes and relax into the sweet, sweet tilde sounds and go on a joy ride on the cosmic tilde whirl 🚀</p>
<p>We talk about tildes, static site generators, significant whitespace, recfiles, origami and folding paper, the tildetown zine, bots, and more!</p>
<p>This episodes special segments include:</p>
<ul>
<li>a special birthday message</li>
<li>hey gamers!: lets play Baba Yaga Goes To Space</li>
<li>science fun fact corner: nostalgia and hope</li>
<li>a message from our sponsors</li>
<li>poetry corner: programmatic sonnets from the poetrydb.org API</li>
<li>magic and divination: dream magic</li>
<li>story corner: Chapters 6 - 10 of Braxon by Joneworlds</li>
</ul>
<p>Your secret message for this episode is:</p>
<pre><code>otkv gb xksn ihukndqb lhlbn hdnlfhjb kn kqtbn lhlbn ikfydjr hjy d vdff ibhqsnb dq kj qtb jbwq bldokyb</code></pre>
<h2 id="links">links</h2>
<p>Stuff we talked about on the show</p>
<p>tilde stuff:</p>
<ul>
<li><a href="http://tilde.club/~pfhawkins/othertildes.html">list of other tildes</a></li>
</ul>
<p>recfiles:</p>
<ul>
<li><a href="https://chrismanbrown.gitlab.io/28.html" class="uri">https://chrismanbrown.gitlab.io/28.html</a></li>
<li><a href="https://labs.tomasino.org/gnu-recutils/" class="uri">https://labs.tomasino.org/gnu-recutils/</a></li>
</ul>
<p>zine stuff:</p>
<ul>
<li><a href="https://equa.space/imaginary-landscapes/">imaginary landscapes</a> natalias zines for 1-2 nanogenmo</li>
<li><a href="https://zine.tildeverse.org/">tildeverse zine</a></li>
<li><a href="https://tilde.town/~zine/">tildetown zine</a></li>
</ul>
<p>tracery stuff:</p>
<ul>
<li><a href="https://www.tracery.io/">tracery</a></li>
<li><a href="https://notabug.org/selfsame/tracer">tracer</a></li>
<li><a href="https://tildegit.org/ben/tracer">tracer (py3 port)</a></li>
<li><a href="https://git.tilde.town/mio/itte">itte</a>: including source for ramen-kun and the tracery-inspired example</li>
</ul>
<p>sponsors:</p>
<ul>
<li><a href="https://archive.org/details/78_tip-toe-thru-the-tulips-with-me_nick-lucas-dublin-burke_gbia0041008b/Tip-Toe+Thru&#39;+the+Tulips+with+Me+-+Nick+Lucas.flac">Tip-Toe Thru the Tulips with Me</a></li>
</ul>
<p>static site stuff:</p>
<ul>
<li><a href="https://ctrl-c.club/~philips/90s/">bake</a></li>
<li><a href="https://jamstack.org/generators/bake/">bake on the static generator list</a>: it used to be called staticgen.com, but looks like they got subsumed by another site</li>
<li><a href="http://sigal.saimon.org/">sigal</a></li>
<li><a href="http://simiki.org/">simiki</a></li>
<li><a href="https://bolt80.com/piecrust/en/latest/">piecrust</a></li>
</ul>
<p>folding stuff:</p>
<ul>
<li><a href="https://paperwings.redbull.com/global-en/">red bull paper wings - paper airplane competition</a></li>
<li></li>
<li><a href="https://tilde.town/~mio/wiki/art/zine_workflow.html">zine workflow</a></li>
<li><a href="https://origami-art.us/images/origami/animals/dollar-carp/dollar-carp.pdf">dollar carp</a></li>
<li><a href="https://www.youtube.com/watch?v=7UBcSfdBS3E">batman plane</a></li>
<li><a href="https://tube.tchncs.de/w/wTnb9YX1dvUTbzog7tLGAd">dozenss plane</a></li>
</ul>
<p>hey gamers!</p>
<ul>
<li><a href="https://git.sr.ht/~eli_oat/babayagagoestospace" class="uri">https://git.sr.ht/~eli_oat/babayagagoestospace</a></li>
<li><a href="https://twinery.org/" class="uri">https://twinery.org/</a></li>
<li><a href="https://github.com/inkle/inky" class="uri">https://github.com/inkle/inky</a></li>
<li><a href="https://www.reddit.com/r/dailyprogrammer/comments/pjbuj/intermediate_challenge_2/c3pxbcf/?context=3">Cadventure-text.c reddit thread</a></li>
</ul>
<p>science fun fact corner</p>
<ul>
<li><a href="https://www.goodreads.com/book/show/13651.The_Dispossessed" class="uri">https://www.goodreads.com/book/show/13651.The_Dispossessed</a></li>
<li><a href="https://www.npr.org/2021/10/13/1045812865/the-nostalgia-bone" class="uri">https://www.npr.org/2021/10/13/1045812865/the-nostalgia-bone</a></li>
<li><a href="https://www.goodreads.com/book/show/59562260-the-hours-have-lost-their-clock" class="uri">https://www.goodreads.com/book/show/59562260-the-hours-have-lost-their-clock</a></li>
<li><a href="https://scholarsjunction.msstate.edu/td/3310/" class="uri">https://scholarsjunction.msstate.edu/td/3310/</a></li>
<li><a href="https://discourse.rpgcauldron.com/t/is-there-happy-nsr/347/15" class="uri">https://discourse.rpgcauldron.com/t/is-there-happy-nsr/347/15</a></li>
</ul>
<p>story corner</p>
<ul>
<li>&lt;gemini://republic.circumlunar.space/users/joneworlds/&gt;</li>
</ul>
<p>poetry corner</p>
<ul>
<li><a href="https://poetrydb.org/index.html" class="uri">https://poetrydb.org/index.html</a></li>
</ul>
<h2 id="sources">sources</h2>
<p>happy birthday:</p>
<ul>
<li><a href="https://freemusicarchive.org/music/Monk_Turner__Fascinoma/The_New_Birthday_Song_Contest/Its_Your_Birthday_1839" class="uri">https://freemusicarchive.org/music/Monk_Turner__Fascinoma/The_New_Birthday_Song_Contest/Its_Your_Birthday_1839</a></li>
<li><a href="https://freemusicarchive.org/music/Monk_Turner__Fascinoma/The_New_Birthday_Song_Contest/Its_Your_Birthday_Instrumental" class="uri">https://freemusicarchive.org/music/Monk_Turner__Fascinoma/The_New_Birthday_Song_Contest/Its_Your_Birthday_Instrumental</a></li>
<li><a href="https://freemusicarchive.org/music/Monk_Turner__Fascinoma/The_New_Birthday_Song_Contest/Its_Your_Birthday_Simple_in_B" class="uri">https://freemusicarchive.org/music/Monk_Turner__Fascinoma/The_New_Birthday_Song_Contest/Its_Your_Birthday_Simple_in_B</a></li>
<li><a href="https://freemusicarchive.org/music/kaleidoplasm/tangerine-amoeba-apartheid-heartbeat-iv/its-only-fairmp3" class="uri">https://freemusicarchive.org/music/kaleidoplasm/tangerine-amoeba-apartheid-heartbeat-iv/its-only-fairmp3</a></li>
<li><a href="https://freemusicarchive.org/music/bound-unto-root/the-canopy/the-son-of-a-hoarse-throat" class="uri">https://freemusicarchive.org/music/bound-unto-root/the-canopy/the-son-of-a-hoarse-throat</a></li>
<li><a href="https://freesound.org/people/neilraouf/sounds/484512/" class="uri">https://freesound.org/people/neilraouf/sounds/484512/</a></li>
<li><a href="https://freesound.org/people/GaryEdstrom/sounds/322636/" class="uri">https://freesound.org/people/GaryEdstrom/sounds/322636/</a></li>
<li><a href="https://freesound.org/people/InspectorJ/sounds/421852/" class="uri">https://freesound.org/people/InspectorJ/sounds/421852/</a></li>
<li><a href="https://freesound.org/people/deleted_user_5405837/sounds/406504/" class="uri">https://freesound.org/people/deleted_user_5405837/sounds/406504/</a></li>
<li><a href="https://freesound.org/people/adriancalzon/sounds/219858/" class="uri">https://freesound.org/people/adriancalzon/sounds/219858/</a></li>
<li><a href="https://freesound.org/people/sironboy/sounds/132106/" class="uri">https://freesound.org/people/sironboy/sounds/132106/</a></li>
<li><a href="https://freesound.org/people/vtownpunks/sounds/63633/" class="uri">https://freesound.org/people/vtownpunks/sounds/63633/</a></li>
<li><a href="https://freesound.org/people/guamorims/sounds/391357/" class="uri">https://freesound.org/people/guamorims/sounds/391357/</a></li>
<li><a href="https://freesound.org/people/IanStarGem/sounds/269594/" class="uri">https://freesound.org/people/IanStarGem/sounds/269594/</a></li>
<li><a href="https://freesound.org/people/Vanyamba/sounds/524485/" class="uri">https://freesound.org/people/Vanyamba/sounds/524485/</a></li>
<li><a href="https://freesound.org/people/InspectorJ/sounds/397948/" class="uri">https://freesound.org/people/InspectorJ/sounds/397948/</a></li>
<li><a href="https://freesound.org/people/Victor_Natas/sounds/551569/" class="uri">https://freesound.org/people/Victor_Natas/sounds/551569/</a></li>
<li><a href="https://freesound.org/people/Victor_Natas/sounds/551567/" class="uri">https://freesound.org/people/Victor_Natas/sounds/551567/</a></li>
<li><a href="https://freesound.org/people/audiomirage/sounds/564952/" class="uri">https://freesound.org/people/audiomirage/sounds/564952/</a></li>
</ul>]]></description>
<guid isPermaLink="false">Thu, 12 May 2022 12:12:12 -0700</guid>
<enclosure url="https://archive.org/download/tilderwhirl-S01E01/tildewhirl-s01e06.mp3" length="136911594" type="audio/x-m4a"/>
</item>
<item>
<title>episode 5</title>
<link>https://tilde.town/~dozens/podcast/2022-04-24-episode-5-marcus.html</link>
<pubDate>Thu, 24 Apr 2022 12:12:12 -0700</pubDate>
<description><![CDATA[<h2 id="notes">notes</h2>
<p>Check it out! Its Marcus!</p>
<p>Tune in as we talk about <em>bizniss</em>, tildes, art, anonymity, the art of programming, and minecraft as a means of self expression</p>
<p>This episodes segments:</p>
<ul>
<li>Food and Wine: vegan ice cream!</li>
<li>A Word From Our Sponsors</li>
<li>Poetry Corner: no one will ever read this</li>
<li>Hey Gamers!</li>
<li>Story Corner: joneworlds chapters 1 - 5</li>
</ul>
<p>This episodes secret message is:</p>
<!-- the secret key is.. "yay mio good job seriously" //-->
<pre><code>b yu tokx bufkonnoi yp jcv tokx nuykp xcq yko yp komcdlbzbld mcubm npkbfn</code></pre>
<h2 id="links">links</h2>
<p>Stuff we talked about on the show</p>
<ul>
<li><a href="http://tilde.town/~owenversteeg/">shrimp!</a></li>
<li><a href="https://en.wikipedia.org/wiki/Conway%27s_law">Conways Law</a></li>
<li><a href="https://web.archive.org/web/20170717080959/http://riotgirl.club/">riotgirl.club</a></li>
<li><a href="http://tilde.town/~karlen/">No one will ever read this but</a></li>
<li><a href="https://linkbudz.m455.casa/">linkbudz</a></li>
<li><a href="gemini://republic.circumlunar.space/users/joneworlds/index.gmi">joneworlds</a></li>
<li><a href="https://tube.tchncs.de/w/p/bUXDVFXChcHV7NrT5iMo8m">casacraft season 2 server tour</a></li>
<li><a href="https://en.wikipedia.org/wiki/Mendel_Palace" class="uri">https://en.wikipedia.org/wiki/Mendel_Palace</a></li>
</ul>
<h2 id="sources">sources</h2>
<p>sounds included in this episode</p>
<p>Music during poetry corner</p>
<ul>
<li><a href="https://tildetown.bandcamp.com/track/trans-void-duet">equa - trans void duet</a></li>
</ul>
<p>No one will ever read this but…</p>
<ul>
<li><a href="http://tilde.town/~karlen/nowertb/every-day-is-a-beautiful-gift.mp3" class="uri">http://tilde.town/~karlen/nowertb/every-day-is-a-beautiful-gift.mp3</a></li>
<li><a href="http://tilde.town/~karlen/nowertb/henlow.mp3" class="uri">http://tilde.town/~karlen/nowertb/henlow.mp3</a></li>
<li><a href="http://tilde.town/~karlen/nowertb/blitva-i-love-you.mp3" class="uri">http://tilde.town/~karlen/nowertb/blitva-i-love-you.mp3</a></li>
<li><a href="http://tilde.town/~karlen/nowertb/maines-best.mp3" class="uri">http://tilde.town/~karlen/nowertb/maines-best.mp3</a></li>
<li><a href="http://tilde.town/~karlen/nowertb/soul-cries.mp3" class="uri">http://tilde.town/~karlen/nowertb/soul-cries.mp3</a></li>
<li><a href="http://tilde.town/~karlen/nowertb/delicious-and-vegan-meals.mp3" class="uri">http://tilde.town/~karlen/nowertb/delicious-and-vegan-meals.mp3</a></li>
<li><a href="http://tilde.town/~karlen/nowertb/this-universe-called-the-internet.mp3" class="uri">http://tilde.town/~karlen/nowertb/this-universe-called-the-internet.mp3</a></li>
</ul>
<p>Sponsors:</p>
<ul>
<li><a href="https://archive.org/details/RadioCommercialsShows" class="uri">https://archive.org/details/RadioCommercialsShows</a></li>
<li><a href="https://archive.org/details/Old_Radio_Adverts_01" class="uri">https://archive.org/details/Old_Radio_Adverts_01</a></li>
</ul>]]></description>
<guid isPermaLink="false">Thu, 24 Apr 2022 12:12:12 -0700</guid>
<enclosure url="https://archive.org/download/tilderwhirl-S01E01/tildewhirl-S01E05.mp3" length="97531111" type="audio/x-m4a"/>
</item>
<item>
<title>episode 4</title>
<link>https://tilde.town/~dozens/podcast/2022-04-12-episode-4-piusbird.html</link>
<pubDate>Thu, 12 Apr 2022 12:12:12 -0700</pubDate>
<description><![CDATA[<h2 id="notes">notes</h2>
<p>Check out piusbird!</p>
<ul>
<li><a href="https://tilde.zone/@piusbird" class="uri">https://tilde.zone/@piusbird</a></li>
<li><a href="https://piusbird.space/~matt/" class="uri">https://piusbird.space/~matt/</a></li>
<li><a href="https://www.twitch.tv/piusbird" class="uri">https://www.twitch.tv/piusbird</a></li>
<li><a href="https://joyoflinux.com/" class="uri">https://joyoflinux.com/</a></li>
</ul>
<h2 id="links">links</h2>
<p>Stuff we talked about on the show, and other stuff too</p>
<ul>
<li><a href="https://cosmic.voyage/" class="uri">https://cosmic.voyage/</a></li>
<li><a href="https://medium.com/message/tilde-club-i-had-a-couple-drinks-and-woke-up-with-1-000-nerds-a8904f0a2ebf">I had a couple drinks and woke up with 1,000 nerds</a></li>
<li><a href="https://tilde.town/~dozens/sofa/" class="uri">https://tilde.town/~dozens/sofa/</a></li>
<li><a href="https://nostarch.com/artists-guide-programming" class="uri">https://nostarch.com/artists-guide-programming</a></li>
<li><a href="https://natureofcode.com/book/" class="uri">https://natureofcode.com/book/</a></li>
</ul>
<p>Links from segments:</p>
<ul>
<li>poetry:
<ul>
<li>prosaic: <a href="https://github.com/vilmibm/prosaic" class="uri">https://github.com/vilmibm/prosaic</a></li>
<li>Goblin Time by <span class="citation" data-cites="emmajuettner">@emmajuettner</span><span class="citation" data-cites="mastodon.art">@mastodon.art</span>: <a href="https://mastodon.art/@emmajuettner/108103474257806186" class="uri">https://mastodon.art/@emmajuettner/108103474257806186</a></li>
</ul></li>
<li>gossip:
<ul>
<li>old mauve tilde.town site: <a href="https://web.archive.org/web/20200828025119/https://tilde.town/" class="uri">https://web.archive.org/web/20200828025119/https://tilde.town/</a></li>
<li>Mauve: How One Man Invented a Colour That Changed the World: <a href="https://www.goodreads.com/book/show/580291.Mauve" class="uri">https://www.goodreads.com/book/show/580291.Mauve</a></li>
<li>The Mauve Decade: American Life at the End of the Nineteenth Century: <a href="https://www.goodreads.com/book/show/1251892.The_Mauve_Decade" class="uri">https://www.goodreads.com/book/show/1251892.The_Mauve_Decade</a></li>
<li>Grooming, Gossip, and the Evolution of Language: <a href="https://www.goodreads.com/book/show/197921.Grooming_Gossip_and_the_Evolution_of_Language" class="uri">https://www.goodreads.com/book/show/197921.Grooming_Gossip_and_the_Evolution_of_Language</a></li>
</ul></li>
<li><a href="https://diode.zone/w/34ea4efd-1c0b-4093-851a-ab4996d5f2f7">tiktok voice says random words for fifteen hours</a></li>
</ul>
<h2 id="sources">sources</h2>
<ul>
<li>intro and outro by <a href="https://freemusicarchive.org/music/oo/Chin25_Soup_Tennis">Plushgoolash</a></li>
<li>meditation music: <a href="https://freemusicarchive.org/music/Podington_Bear/Ambient/SadCyclops">Poddington Bear - Sad Cyclops</a></li>
</ul>]]></description>
<guid isPermaLink="false">Thu, 12 Apr 2022 12:12:12 -0700</guid>
<enclosure url="https://archive.org/download/tilderwhirl-S01E01/tildewhirl-S01E04.mp3" length="89093279" type="audio/x-m4a"/>
</item>
<item>
<title>episode 3</title>
<link>https://tilde.town/~dozens/podcast/2022-03-24-episode-3-nihilazo.html</link>
<pubDate>Thu, 24 Mar 2022 12:12:12 -0700</pubDate>
<description><![CDATA[<h2 id="notes">notes</h2>
<p>Its nihilazo!! Join us as we talk about tildes, social media, constructed languages (esperanto and toki pona), table top roleplaying games, religions real and fake, and more!</p>
<p>Segments this episode include science fun fact corner, funny papers, letters from our listeners, and magic and divination.</p>
<p>For everything else youll just have to listen. So <em>give it a whirl!</em></p>
<p>Check out nihilazo:</p>
<ul>
<li><a href="https://tilde.town/~nihilazo/" class="uri">https://tilde.town/~nihilazo/</a></li>
<li><a href="https://tiny.tilde.website/@nihilazo" class="uri">https://tiny.tilde.website/@nihilazo</a></li>
</ul>
<h2 id="links">links</h2>
<p>Stuff we talked about on the show</p>
<ul>
<li><a href="https://glowing-bear.org/" class="uri">https://glowing-bear.org/</a></li>
<li>conlangs
<ul>
<li><a href="https://telegramo.org/" class="uri">https://telegramo.org/</a></li>
<li><a href="https://tokipona.org/" class="uri">https://tokipona.org/</a></li>
<li><a href="https://jackhumbert.github.io/sitelen-pona-pona/" class="uri">https://jackhumbert.github.io/sitelen-pona-pona/</a></li>
<li><a href="https://jonathangabel.com/toki-pona/kama-pona/" class="uri">https://jonathangabel.com/toki-pona/kama-pona/</a></li>
</ul></li>
<li>ttrpgs
<ul>
<li><a href="https://en.wikipedia.org/wiki/Fiasco_(role-playing_game)" class="uri">https://en.wikipedia.org/wiki/Fiasco_(role-playing_game)</a></li>
<li><a href="https://fate-srd.com/" class="uri">https://fate-srd.com/</a></li>
<li><a href="https://en.wikipedia.org/wiki/Shadowrun" class="uri">https://en.wikipedia.org/wiki/Shadowrun</a></li>
<li><a href="https://swse.neocities.org/" class="uri">https://swse.neocities.org/</a> (Sixth World Simple Edition: Shadowrun + Dungeon World/PbtA hack)</li>
</ul></li>
<li><a href="https://lichess.org/team/tildetown" class="uri">https://lichess.org/team/tildetown</a></li>
<li><a href="https://rarehistoricalphotos.com/cocaine-paraphernalia-ads-1970s/" class="uri">https://rarehistoricalphotos.com/cocaine-paraphernalia-ads-1970s/</a></li>
<li><a href="https://gravenutterance.com/2019/03/24/recluse-solo-engine/" class="uri">https://gravenutterance.com/2019/03/24/recluse-solo-engine/</a></li>
<li><a href="https://en.wikipedia.org/wiki/Le_g%C3%A9nie_du_mal" class="uri">https://en.wikipedia.org/wiki/Le_g%C3%A9nie_du_mal</a></li>
</ul>
<h2 id="sources">sources</h2>
<p>sounds included in this episode</p>
<p>windows 3.1 startup: <a href="https://ballyweg.net/windows.html" class="uri">https://ballyweg.net/windows.html</a></p>]]></description>
<guid isPermaLink="false">Thu, 24 Mar 2022 12:12:12 -0700</guid>
<enclosure url="https://archive.org/download/tilderwhirl-S01E01/tildewhirl-S01E03.mp3" length="69693532" type="audio/x-m4a"/>
</item>
<item>
<title>episode 2</title>
<link>https://tilde.town/~dozens/podcast/2022-03-03-episode-2-m455.html</link>
<pubDate>Thu, 12 Mar 2022 12:12:12 -0700</pubDate>
<description><![CDATA[<h2 id="notes">notes</h2>
<p>Hey there, pull up a chair, have a seat by the fire, pour a nice tall glass of milk, and listen to dozens and m455 talk about tildistan.</p>
<p>We talk aboot tildes (obviously), inclusivity, starting more projects than you finish, linguistics, and more!</p>
<p>Segments include Science Fun Fact Corner, Poetry Corner, and Magic and Divination.</p>
<h2 id="links">links</h2>
<ul>
<li><a href="https://m455.casa/">m455.casa</a></li>
<li><a href="http://tilde.town/~dozens/sofa/">sofa</a></li>
<li><a href="https://squiggle.city/">squiggle.city</a></li>
<li><a href="https://trash.town/">trash.town</a></li>
<li><a href="https://cosmic.voyage/">cosmic.voyage</a></li>
<li><a href="http://sdf.org/">sdf.org</a></li>
<li><a href="https://qwantz.com/">dinosaur comics</a></li>
<li><a href="https://laserdisc.party/@carithlee/107853224591829561">dudes we did not go through the hassle…</a></li>
<li><a href="https://en.wikipedia.org/wiki/Hanif_Abdurraqib">Hanif Abdurraqib</a></li>
<li><a href="https://freemusicarchive.org/music/Plushgoolash/Chin25_Soup_Tennis">plushgoolash</a></li>
<li><a href="https://www.bastionland.com/2020/12/ask-stars-minimal-solo-rpg.html">ask the stars</a></li>
<li><a href="https://morethanone.info/">morethanone.info</a>: info on plurality</li>
</ul>
<p>lisps:</p>
<ul>
<li><a href="https://www.call-cc.org/">chicken</a></li>
<li><a href="https://github.com/anmonteiro/lumo">lumo</a></li>
<li><a href="https://docs.hylang.org/en/alpha/">hy</a></li>
<li><a href="https://racket-lang.org/">racket</a></li>
<li><a href="https://fennel-lang.org/">fennel</a></li>
</ul>]]></description>
<guid isPermaLink="false">Thu, 12 Mar 2022 12:12:12 -0700</guid>
<enclosure url="https://archive.org/download/tilderwhirl-S01E01/tildewhirl-S01E02.mp3" length="68307849" type="audio/x-m4a"/>
</item>
<item>
<title>episode 1</title>
<link>https://tilde.town/~dozens/podcast/2022-03-03-episode-1-acdw.html</link>
<pubDate>Thu, 24 Feb 2022 12:12:12 -0700</pubDate>
<description><![CDATA[<h2 id="notes">notes</h2>
<p>Hola, Wikipedia!</p>
<p>I started a new podcast! Isnt that just really special?</p>
<p>This episodes guest is acdw. And featured segments include <em>Food and wine</em>, <em>Looking at clouds</em>, and <em>science fun fact corner</em>, and <em>letters from our listeners!</em></p>
<figure>
<img src="assets/img/soup.jpg" alt="soup" /><figcaption aria-hidden="true">soup</figcaption>
</figure>
<h2 id="links">links</h2>
<ul>
<li><a href="https://www.acdw.net/">acdw.net</a></li>
<li><a href="https://en.wikipedia.org/wiki/Elysia_timida" class="uri">https://en.wikipedia.org/wiki/Elysia_timida</a></li>
<li><a href="https://medium.com/message/tilde-club-i-had-a-couple-drinks-and-woke-up-with-1-000-nerds-a8904f0a2ebf">I had a couple drinks and woke up with 1,000 nerds</a></li>
<li><a href="https://breadpunk.club/">breadpunk.club</a></li>
<li><a href="https://tt-rss.org/">tt-rss</a> / <a href="https://rss.tildeverse.org/">rss.tildeverse.org</a></li>
<li><a href="https://github.com/skeeto/elfeed">elfeed</a></li>
<li><a href="https://newsboat.org/">newsboat</a></li>
</ul>
<h2 id="sources">sources</h2>
<p>sounds and stuff used in this episode:</p>
<p><a href="https://freesound.org/people/Ev-Dawg/sounds/337435/">cricket</a> | <a href="https://freesound.org/people/Jace/sounds/35291/">continuous static.wav</a> | <a href="https://archive.org/details/GlobalCommunityRadioChannelOneTechnicalDifficultiesMessage">technical difficulties</a> | <a href="https://freemusicarchive.org/music/Scott_Holmes/happy-background-music/Skip_In_my_Step_1428">Skip In my Step</a></p>]]></description>
<guid isPermaLink="false">Thu, 24 Feb 2022 12:12:12 -0700</guid>
<enclosure url="https://archive.org/download/tilderwhirl-S01E01/tilderwhirl-S01E01.mp3" length="62456102" type="audio/x-m4a"/>
</item>
</channel></rss>

1
dist/secret/build/bundle.css vendored 100644
View File

@ -0,0 +1 @@
.active.svelte-146lywd{color:inherit;background:#f4f4f4;border-color:#333}button.svelte-146lywd{color:gray;background:none;cursor:pointer;border-color:transparent}main.svelte-146lywd{text-align:center;padding:1em;max-width:240px;margin:0 auto}h1.svelte-146lywd{color:#ff3e00;text-transform:uppercase;font-size:4em;font-weight:100}.output.svelte-146lywd{max-width:240px;margin:0 auto}@media(min-width: 640px){main.svelte-146lywd{max-width:none}}

633
dist/secret/build/bundle.js vendored 100644
View File

@ -0,0 +1,633 @@
(function(l, r) { if (!l || l.getElementById('livereloadscript')) return; r = l.createElement('script'); r.async = 1; r.src = '//' + (self.location.host || 'localhost').split(':')[0] + ':35729/livereload.js?snipver=1'; r.id = 'livereloadscript'; l.getElementsByTagName('head')[0].appendChild(r) })(self.document);
var app = (function () {
'use strict';
function noop() { }
function add_location(element, file, line, column, char) {
element.__svelte_meta = {
loc: { file, line, column, char }
};
}
function run(fn) {
return fn();
}
function blank_object() {
return Object.create(null);
}
function run_all(fns) {
fns.forEach(run);
}
function is_function(thing) {
return typeof thing === 'function';
}
function safe_not_equal(a, b) {
return a != a ? b == b : a !== b || ((a && typeof a === 'object') || typeof a === 'function');
}
function is_empty(obj) {
return Object.keys(obj).length === 0;
}
function append(target, node) {
target.appendChild(node);
}
function insert(target, node, anchor) {
target.insertBefore(node, anchor || null);
}
function detach(node) {
node.parentNode.removeChild(node);
}
function element(name) {
return document.createElement(name);
}
function text(data) {
return document.createTextNode(data);
}
function space() {
return text(' ');
}
function listen(node, event, handler, options) {
node.addEventListener(event, handler, options);
return () => node.removeEventListener(event, handler, options);
}
function attr(node, attribute, value) {
if (value == null)
node.removeAttribute(attribute);
else if (node.getAttribute(attribute) !== value)
node.setAttribute(attribute, value);
}
function children(element) {
return Array.from(element.childNodes);
}
function set_input_value(input, value) {
input.value = value == null ? '' : value;
}
function toggle_class(element, name, toggle) {
element.classList[toggle ? 'add' : 'remove'](name);
}
function custom_event(type, detail, bubbles = false) {
const e = document.createEvent('CustomEvent');
e.initCustomEvent(type, bubbles, false, detail);
return e;
}
let current_component;
function set_current_component(component) {
current_component = component;
}
const dirty_components = [];
const binding_callbacks = [];
const render_callbacks = [];
const flush_callbacks = [];
const resolved_promise = Promise.resolve();
let update_scheduled = false;
function schedule_update() {
if (!update_scheduled) {
update_scheduled = true;
resolved_promise.then(flush);
}
}
function add_render_callback(fn) {
render_callbacks.push(fn);
}
// flush() calls callbacks in this order:
// 1. All beforeUpdate callbacks, in order: parents before children
// 2. All bind:this callbacks, in reverse order: children before parents.
// 3. All afterUpdate callbacks, in order: parents before children. EXCEPT
// for afterUpdates called during the initial onMount, which are called in
// reverse order: children before parents.
// Since callbacks might update component values, which could trigger another
// call to flush(), the following steps guard against this:
// 1. During beforeUpdate, any updated components will be added to the
// dirty_components array and will cause a reentrant call to flush(). Because
// the flush index is kept outside the function, the reentrant call will pick
// up where the earlier call left off and go through all dirty components. The
// current_component value is saved and restored so that the reentrant call will
// not interfere with the "parent" flush() call.
// 2. bind:this callbacks cannot trigger new flush() calls.
// 3. During afterUpdate, any updated components will NOT have their afterUpdate
// callback called a second time; the seen_callbacks set, outside the flush()
// function, guarantees this behavior.
const seen_callbacks = new Set();
let flushidx = 0; // Do *not* move this inside the flush() function
function flush() {
const saved_component = current_component;
do {
// first, call beforeUpdate functions
// and update components
while (flushidx < dirty_components.length) {
const component = dirty_components[flushidx];
flushidx++;
set_current_component(component);
update(component.$$);
}
set_current_component(null);
dirty_components.length = 0;
flushidx = 0;
while (binding_callbacks.length)
binding_callbacks.pop()();
// then, once components are updated, call
// afterUpdate functions. This may cause
// subsequent updates...
for (let i = 0; i < render_callbacks.length; i += 1) {
const callback = render_callbacks[i];
if (!seen_callbacks.has(callback)) {
// ...so guard against infinite loops
seen_callbacks.add(callback);
callback();
}
}
render_callbacks.length = 0;
} while (dirty_components.length);
while (flush_callbacks.length) {
flush_callbacks.pop()();
}
update_scheduled = false;
seen_callbacks.clear();
set_current_component(saved_component);
}
function update($$) {
if ($$.fragment !== null) {
$$.update();
run_all($$.before_update);
const dirty = $$.dirty;
$$.dirty = [-1];
$$.fragment && $$.fragment.p($$.ctx, dirty);
$$.after_update.forEach(add_render_callback);
}
}
const outroing = new Set();
function transition_in(block, local) {
if (block && block.i) {
outroing.delete(block);
block.i(local);
}
}
function mount_component(component, target, anchor, customElement) {
const { fragment, on_mount, on_destroy, after_update } = component.$$;
fragment && fragment.m(target, anchor);
if (!customElement) {
// onMount happens before the initial afterUpdate
add_render_callback(() => {
const new_on_destroy = on_mount.map(run).filter(is_function);
if (on_destroy) {
on_destroy.push(...new_on_destroy);
}
else {
// Edge case - component was destroyed immediately,
// most likely as a result of a binding initialising
run_all(new_on_destroy);
}
component.$$.on_mount = [];
});
}
after_update.forEach(add_render_callback);
}
function destroy_component(component, detaching) {
const $$ = component.$$;
if ($$.fragment !== null) {
run_all($$.on_destroy);
$$.fragment && $$.fragment.d(detaching);
// TODO null out other refs, including component.$$ (but need to
// preserve final state?)
$$.on_destroy = $$.fragment = null;
$$.ctx = [];
}
}
function make_dirty(component, i) {
if (component.$$.dirty[0] === -1) {
dirty_components.push(component);
schedule_update();
component.$$.dirty.fill(0);
}
component.$$.dirty[(i / 31) | 0] |= (1 << (i % 31));
}
function init(component, options, instance, create_fragment, not_equal, props, append_styles, dirty = [-1]) {
const parent_component = current_component;
set_current_component(component);
const $$ = component.$$ = {
fragment: null,
ctx: null,
// state
props,
update: noop,
not_equal,
bound: blank_object(),
// lifecycle
on_mount: [],
on_destroy: [],
on_disconnect: [],
before_update: [],
after_update: [],
context: new Map(options.context || (parent_component ? parent_component.$$.context : [])),
// everything else
callbacks: blank_object(),
dirty,
skip_bound: false,
root: options.target || parent_component.$$.root
};
append_styles && append_styles($$.root);
let ready = false;
$$.ctx = instance
? instance(component, options.props || {}, (i, ret, ...rest) => {
const value = rest.length ? rest[0] : ret;
if ($$.ctx && not_equal($$.ctx[i], $$.ctx[i] = value)) {
if (!$$.skip_bound && $$.bound[i])
$$.bound[i](value);
if (ready)
make_dirty(component, i);
}
return ret;
})
: [];
$$.update();
ready = true;
run_all($$.before_update);
// `false` as a special case of no DOM component
$$.fragment = create_fragment ? create_fragment($$.ctx) : false;
if (options.target) {
if (options.hydrate) {
const nodes = children(options.target);
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
$$.fragment && $$.fragment.l(nodes);
nodes.forEach(detach);
}
else {
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
$$.fragment && $$.fragment.c();
}
if (options.intro)
transition_in(component.$$.fragment);
mount_component(component, options.target, options.anchor, options.customElement);
flush();
}
set_current_component(parent_component);
}
/**
* Base class for Svelte components. Used when dev=false.
*/
class SvelteComponent {
$destroy() {
destroy_component(this, 1);
this.$destroy = noop;
}
$on(type, callback) {
const callbacks = (this.$$.callbacks[type] || (this.$$.callbacks[type] = []));
callbacks.push(callback);
return () => {
const index = callbacks.indexOf(callback);
if (index !== -1)
callbacks.splice(index, 1);
};
}
$set($$props) {
if (this.$$set && !is_empty($$props)) {
this.$$.skip_bound = true;
this.$$set($$props);
this.$$.skip_bound = false;
}
}
}
function dispatch_dev(type, detail) {
document.dispatchEvent(custom_event(type, Object.assign({ version: '3.47.0' }, detail), true));
}
function append_dev(target, node) {
dispatch_dev('SvelteDOMInsert', { target, node });
append(target, node);
}
function insert_dev(target, node, anchor) {
dispatch_dev('SvelteDOMInsert', { target, node, anchor });
insert(target, node, anchor);
}
function detach_dev(node) {
dispatch_dev('SvelteDOMRemove', { node });
detach(node);
}
function listen_dev(node, event, handler, options, has_prevent_default, has_stop_propagation) {
const modifiers = options === true ? ['capture'] : options ? Array.from(Object.keys(options)) : [];
if (has_prevent_default)
modifiers.push('preventDefault');
if (has_stop_propagation)
modifiers.push('stopPropagation');
dispatch_dev('SvelteDOMAddEventListener', { node, event, handler, modifiers });
const dispose = listen(node, event, handler, options);
return () => {
dispatch_dev('SvelteDOMRemoveEventListener', { node, event, handler, modifiers });
dispose();
};
}
function attr_dev(node, attribute, value) {
attr(node, attribute, value);
if (value == null)
dispatch_dev('SvelteDOMRemoveAttribute', { node, attribute });
else
dispatch_dev('SvelteDOMSetAttribute', { node, attribute, value });
}
function set_data_dev(text, data) {
data = '' + data;
if (text.wholeText === data)
return;
dispatch_dev('SvelteDOMSetData', { node: text, data });
text.data = data;
}
function validate_slots(name, slot, keys) {
for (const slot_key of Object.keys(slot)) {
if (!~keys.indexOf(slot_key)) {
console.warn(`<${name}> received an unexpected slot "${slot_key}".`);
}
}
}
/**
* Base class for Svelte components with some minor dev-enhancements. Used when dev=true.
*/
class SvelteComponentDev extends SvelteComponent {
constructor(options) {
if (!options || (!options.target && !options.$$inline)) {
throw new Error("'target' is a required option");
}
super();
}
$destroy() {
super.$destroy();
this.$destroy = () => {
console.warn('Component was already destroyed'); // eslint-disable-line no-console
};
}
$capture_state() { }
$inject_state() { }
}
/* src/App.svelte generated by Svelte v3.47.0 */
const file = "src/App.svelte";
function create_fragment(ctx) {
let main;
let h1;
let t1;
let label;
let t3;
let input;
let t4;
let p0;
let t5;
let t6;
let textarea;
let t7;
let div0;
let button0;
let t9;
let button1;
let t11;
let div1;
let p1;
let t13;
let p2;
let t14;
let mounted;
let dispose;
const block = {
c: function create() {
main = element("main");
h1 = element("h1");
h1.textContent = "secret decoder ring";
t1 = space();
label = element("label");
label.textContent = "Input key:";
t3 = space();
input = element("input");
t4 = space();
p0 = element("p");
t5 = text(/*salphabet*/ ctx[2]);
t6 = space();
textarea = element("textarea");
t7 = space();
div0 = element("div");
button0 = element("button");
button0.textContent = "encode";
t9 = space();
button1 = element("button");
button1.textContent = "decode";
t11 = space();
div1 = element("div");
p1 = element("p");
p1.textContent = "The secret answer is...";
t13 = space();
p2 = element("p");
t14 = text(/*answer*/ ctx[4]);
attr_dev(h1, "class", "svelte-146lywd");
add_location(h1, file, 27, 1, 656);
attr_dev(label, "for", "key");
add_location(label, file, 28, 2, 687);
attr_dev(input, "type", "text");
attr_dev(input, "name", "key");
attr_dev(input, "id", "key");
add_location(input, file, 29, 2, 725);
attr_dev(p0, "class", "alphabet");
add_location(p0, file, 31, 2, 785);
attr_dev(textarea, "rows", "10");
add_location(textarea, file, 33, 2, 824);
attr_dev(button0, "class", "svelte-146lywd");
toggle_class(button0, "active", /*encode*/ ctx[0]);
add_location(button0, file, 36, 4, 908);
attr_dev(button1, "class", "svelte-146lywd");
toggle_class(button1, "active", !/*encode*/ ctx[0]);
add_location(button1, file, 37, 4, 978);
attr_dev(div0, "class", "buttongroup");
add_location(div0, file, 35, 2, 878);
add_location(p1, file, 41, 4, 1082);
add_location(p2, file, 42, 4, 1117);
attr_dev(div1, "class", "output svelte-146lywd");
add_location(div1, file, 40, 2, 1057);
attr_dev(main, "class", "svelte-146lywd");
add_location(main, file, 26, 0, 648);
},
l: function claim(nodes) {
throw new Error("options.hydrate only works if the component was compiled with the `hydratable: true` option");
},
m: function mount(target, anchor) {
insert_dev(target, main, anchor);
append_dev(main, h1);
append_dev(main, t1);
append_dev(main, label);
append_dev(main, t3);
append_dev(main, input);
set_input_value(input, /*key*/ ctx[3]);
append_dev(main, t4);
append_dev(main, p0);
append_dev(p0, t5);
append_dev(main, t6);
append_dev(main, textarea);
set_input_value(textarea, /*message*/ ctx[1]);
append_dev(main, t7);
append_dev(main, div0);
append_dev(div0, button0);
append_dev(div0, t9);
append_dev(div0, button1);
append_dev(main, t11);
append_dev(main, div1);
append_dev(div1, p1);
append_dev(div1, t13);
append_dev(div1, p2);
append_dev(p2, t14);
if (!mounted) {
dispose = [
listen_dev(input, "input", /*input_input_handler*/ ctx[6]),
listen_dev(textarea, "input", /*textarea_input_handler*/ ctx[7]),
listen_dev(button0, "click", /*flipper*/ ctx[5], false, false, false),
listen_dev(button1, "click", /*flipper*/ ctx[5], false, false, false)
];
mounted = true;
}
},
p: function update(ctx, [dirty]) {
if (dirty & /*key*/ 8 && input.value !== /*key*/ ctx[3]) {
set_input_value(input, /*key*/ ctx[3]);
}
if (dirty & /*salphabet*/ 4) set_data_dev(t5, /*salphabet*/ ctx[2]);
if (dirty & /*message*/ 2) {
set_input_value(textarea, /*message*/ ctx[1]);
}
if (dirty & /*encode*/ 1) {
toggle_class(button0, "active", /*encode*/ ctx[0]);
}
if (dirty & /*encode*/ 1) {
toggle_class(button1, "active", !/*encode*/ ctx[0]);
}
if (dirty & /*answer*/ 16) set_data_dev(t14, /*answer*/ ctx[4]);
},
i: noop,
o: noop,
d: function destroy(detaching) {
if (detaching) detach_dev(main);
mounted = false;
run_all(dispose);
}
};
dispatch_dev("SvelteRegisterBlock", {
block,
id: create_fragment.name,
type: "component",
source: "",
ctx
});
return block;
}
const alphabet = 'abcdefghijklmnopqrstuvwxyz';
function instance($$self, $$props, $$invalidate) {
let key;
let salphabet;
let answer;
let { $$slots: slots = {}, $$scope } = $$props;
validate_slots('App', slots, []);
const uniq = arr => Array.from(new Set(arr));
let encode = true;
let message = 'enter your secret message here';
const flipper = () => {
$$invalidate(0, encode = !encode);
};
const writable_props = [];
Object.keys($$props).forEach(key => {
if (!~writable_props.indexOf(key) && key.slice(0, 2) !== '$$' && key !== 'slot') console.warn(`<App> was created with unknown prop '${key}'`);
});
function input_input_handler() {
key = this.value;
$$invalidate(3, key);
}
function textarea_input_handler() {
message = this.value;
$$invalidate(1, message);
}
$$self.$capture_state = () => ({
uniq,
alphabet,
encode,
message,
flipper,
salphabet,
answer,
key
});
$$self.$inject_state = $$props => {
if ('encode' in $$props) $$invalidate(0, encode = $$props.encode);
if ('message' in $$props) $$invalidate(1, message = $$props.message);
if ('salphabet' in $$props) $$invalidate(2, salphabet = $$props.salphabet);
if ('answer' in $$props) $$invalidate(4, answer = $$props.answer);
if ('key' in $$props) $$invalidate(3, key = $$props.key);
};
if ($$props && "$$inject" in $$props) {
$$self.$inject_state($$props.$$inject);
}
$$self.$$.update = () => {
if ($$self.$$.dirty & /*key*/ 8) {
$$invalidate(2, salphabet = uniq(key).join('').replace(/[^a-z]/g, '') + Array.from(alphabet).filter(c => Array.from(key).every(k => k != c)).join(''));
}
if ($$self.$$.dirty & /*message, encode, salphabet*/ 7) {
$$invalidate(4, answer = message.split(' ').map(word => Array.from(word).map(char => char !== ' ' && encode
? salphabet[alphabet.indexOf(char)]
: alphabet[salphabet.indexOf(char)]).join('')).join(' '));
}
};
$$invalidate(3, key = '');
return [
encode,
message,
salphabet,
key,
answer,
flipper,
input_input_handler,
textarea_input_handler
];
}
class App extends SvelteComponentDev {
constructor(options) {
super(options);
init(this, options, instance, create_fragment, safe_not_equal, {});
dispatch_dev("SvelteRegisterComponent", {
component: this,
tagName: "App",
options,
id: create_fragment.name
});
}
}
const app = new App({
target: document.body,
props: {
name: 'world'
}
});
return app;
})();
//# sourceMappingURL=bundle.js.map

63
dist/secret/global.css vendored 100644
View File

@ -0,0 +1,63 @@
html, body {
position: relative;
width: 100%;
height: 100%;
}
body {
color: #333;
margin: 0;
padding: 8px;
box-sizing: border-box;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}
a {
color: rgb(0,100,200);
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
a:visited {
color: rgb(0,80,160);
}
label {
display: block;
}
input, button, select, textarea {
font-family: inherit;
font-size: inherit;
-webkit-padding: 0.4em 0;
padding: 0.4em;
margin: 0 0 0.5em 0;
box-sizing: border-box;
border: 1px solid #ccc;
border-radius: 2px;
}
input:disabled {
color: #ccc;
}
button {
color: #333;
background-color: #f4f4f4;
outline: none;
}
button:disabled {
color: #999;
}
button:not(:disabled):active {
background-color: #ddd;
}
button:focus {
border-color: #666;
}

18
dist/secret/index.html vendored 100644
View File

@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset='utf-8'>
<meta name='viewport' content='width=device-width,initial-scale=1'>
<title>Svelte app</title>
<link rel='icon' type='image/png' href='/favicon.png'>
<link rel='stylesheet' href='./global.css'>
<link rel='stylesheet' href='./build/bundle.css'>
<script defer src='./build/bundle.js'></script>
</head>
<body>
</body>
</html>

View File

@ -0,0 +1,33 @@
---
title: episode 8
season: 1
episode: 8
subtitle: oh my, eli!
date: Thu, 12 June 2022 12:12:12 -0700
toc-title: Contents
file: 'https://archive.org/download/tilderwhirl-S01E01/tildewhirl-S01E08.mp3'
img_url: https://tilde.town/~dozens/podcast/assets/img/logo.png
duration: ''
length: ''
summary: check out my guy eli
explict: 'yes'
---
## notes
Check out eli:
- <https://eli.li/>
- <https://dog.estate/@eli_oat>
## links
Stuff we talked about on the show
- <https://breadpunk.club/~yeast/>
- <https://solar.lowtechmagazine.com/2018/09/how-to-build-a-lowtech-website/>
- <https://supervegan.neocities.org/>
- <https://git.sr.ht/~eli_oat/guava>
- <https://codemadness.org/sfeed-simple-feed-parser.html>
- <https://txt.eli.li/pb/rss/feeds.html>

View File

@ -0,0 +1,25 @@
---
title: episode 12
season: 1
episode: 12
subtitle: benb ben ben ben b
date: Thu, 12 Aug 2022 12:12:12 -0700
toc-title: Contents
file: 'https://archive.org/download/tilderwhirl-S01E01/tildewhirl-S01E12.mp3'
img_url: https://tilde.town/~dozens/podcast/assets/img/logo.png
duration: ''
length: ''
summary: tilde whirl with dozens and ben
explict: 'yes'
---
## notes
## links
Stuff we talked about on the show
https://pad.bhh.sh/KmE382ytQSeAW6pSYsbZlA#
## sources

84
emails.txt 100644
View File

@ -0,0 +1,84 @@
natesmith@hey.com
Hello, vilmibm!
Thank you so much for agreeing to be on the tilde whirl podcast! I think it's going to be a lot of fun.
We are scheduled to meet up on 2022-03-30 at 22:00 UTC.
I wanted to check in with you before then to go over a couple of things so that you feel prepared and ready.
Let me know if this all sounds good, or if you have any questions.
Talk soon!
<3,
dozens
== Best Practices ==
Pick a quiet, distraction free place where you can talk for about 60 minutes. (Some people have lots of success sitting down in their closet!)
Wear some headphones if you can. It prevents echo and feedback.
== Expectations ==
We'll talk about tildes, and your history and your experience with them. And also about your interests and hobbies, life in general, and whatever else comes up.
== Safety ==
It is important to me that you to feel safe and comfortable during our conversation.
If there is any topic that is off-limits for you or that you would rather not discuss, please let me know, and we'll stay away from that topic.
== Logistics ==
I'm still figuring out the best way to actually record these things. For this one, I'd like to meet on jitsi, because I think that's the easiest way to do it and the audio is pretty good.
https://meet.jit.si/dozens
---
hi@eli.li
Hello, eli!
Thank you so much for agreeing to be on the tilde whirl podcast! I think it's going to be a lot of fun.
We are scheduled to meet up on 2022-03-30 at 24:00 UTC.
I wanted to check in with you before then to go over a couple of things so that you feel prepared and ready.
Let me know if this all sounds good, or if you have any questions.
Talk soon!
<3,
dozens
== Best Practices ==
Pick a quiet, distraction free place where you can talk for about 60 minutes. (Some people have lots of success sitting down in their closet!)
Wear some headphones if you can. It prevents echo and feedback.
== Expectations ==
We'll talk about tildes, and your history and your experience with them. And also about your interests and hobbies, life in general, and whatever else comes up.
== Safety ==
It is important to me that you to feel safe and comfortable during our conversation.
If there is any topic that is off-limits for you or that you would rather not discuss, please let me know, and we'll stay away from that topic.
== Logistics ==
I'm still figuring out the best way to actually record these things. For this one, I'd like to meet on jitsi, because I think that's the easiest way to do it and the audio is pretty good.
https://meet.jit.si/dozens
---

View File

@ -1,3 +1,16 @@
<p>These are all of my blog posts:</p>
- [giraffes](2022-02-01-giraffes.html): long neck hoax? --- 2022-02-20
- [hello world!](2022-01-01-hello-world.html): a whole new blog --- 2022-01-01
<p>
<a href="rss.xml">Subscribe with <abbr title="Rumplestiltskin Stiltskin Stiltskin">RSS</abbr> 🚀</a>
</p>
<figure>
<img src="assets/img/logo_cmyk.png" alt="tilde whirl logo"/>
<figcaption>give it a whirl</figcaption>
</figure>
<p>New episodes on the 12th and the 24th of each month.</p>
<h2>Episodes:</h2>
- [episode 7](2022-05-24-episode-7-vilmibm.html): vilmibm shaksfrpease
- [episode 6](2022-05-12-episode-6-mio.html): tio estas mio
- [episode 5](2022-04-24-episode-5-marcus.html): marcus! marcus! marcus!
- [episode 4](2022-04-12-episode-4-piusbird.html): whoa check it out its piusbird
- [episode 3](2022-03-24-episode-3-nihilazo.html): and now nihilazo
- [episode 2](2022-03-03-episode-2-m455.html): a special conversation with m455
- [episode 1](2022-03-03-episode-1-acdw.html): a shiny new podcast! with acdw

View File

@ -4,17 +4,43 @@ default:
# build
build:
make build
make -B build
# make fred say something
say phrase out:
say -v 'Fred' -r 100 -o {{out}} {{phrase}}
# watch for changes
watch:
ls content/*.md | entr make build
# upload
up:
echo "TODO"
# length <file>
length file:
@wc -c < {{file}} #| cut -d ' ' -f 7
# duration <file>
duration file:
@ffprobe -show_entries stream=duration -of compact=p=0:nk=1 -v fatal {{file}}
# clean dist
clean:
rm -rf dist/*
touch dist/.gitkeep
# upload
up:
rsync -azP dist/ tilde:public_html/podcast
# make this week's emails from data.rec
emails:
#!/bin/bash
echo "{ \"data\":" > tmp.json
recsel -e "date >> '$(gdate)' && date << '$(gdate -d "next week")'" data.rec \
| rec2csv | csvjson >> tmp.json
echo "}" >> tmp.json
mustache tmp.json templates/email.template
rm tmp.json
# show me the letters
letters:
@recsel -t letter -e "answered = 'no'" -P listener,writes letters.rec

35
letters.rec 100644
View File

@ -0,0 +1,35 @@
%rec: letter
%type: answered bool
listener: wsinatra
writes: Who would win in a fight? One Godzilla sized Pug, or 100 pug sized Godzillas?
answered: yes
listener: mio
writes: is there anything that keeps you awake at night? (e.g. could be positive, negative, an accepted fact of being/living dozens)
answered: yes
listener: mio
writes: has teaching yoga changed your approach to other pursuits and if so, how?
answered: yes
listener: mio
writes: what does your ideal beverage look and feel like? (as part of the answer, describe with the six senses)
answered: no
listener: lucidiot
writes: What's your setup? You mentioned Mumble and Audacity, but what about the hardware? Are you secretly recording your podcasts in bed?
answered: yes
listener: lucidiot
writes: blep!
+ if you had the opportunity to change where you were born, and therefore in which culture you grew up in or what is your main language, where would you want to spawn and why?
answered: no
listenert: bx
writes: if you had to host a gathering serving a vehicle for yourself and guests to eat, what kind and model of vehicle would you serve/eat? (cooking and seasoning is allowed and encouraged)
answered: no
listener: apreche
writes: I was wondering if you had any tips with regards to discovery as it pertains to tildes. The big time social networks do a lot to guide users into filling up their feeds with content to doomscroll. On a tilde, a user needs to not only know where, but also how, to find what other people are saying, creating, and sharing. It can often feel very quiet outside of the primary IRC channels. What are the best ways to keep up with what fellow tildezens are up to?
answered: yes

View File

@ -1,5 +1,52 @@
---
title: about
subtitle: what is all this anyway
toc-title: Contents
---
honestly it's whatever you want it to be, dreamchild
## what
Welcome to the Tilde Whirl Tildeverse podcast!
A *tilde* is computer meant for sharing. Users create accounts and use shared resources for communicating and collaborating on stuff.
The *tildeverse* is a loose organization of said tildes, and also resources and services created for them.
And this is an interview / variety show podcast where I interview people from the tildeverse, interrupted now and then by special segments.
If you want to know more, you'll have to give it a listen. So come on and *give it a whirl!*
more about tildes:
- [i had a couple drinks and woke up with 1,000 nerds: the story of tilde.Club](https://medium.com/message/tilde-club-i-had-a-couple-drinks-and-woke-up-with-1-000-nerds-a8904f0a2ebf)
- [tilde.town](https://tilde.town/)
- [tildeverse.org](https://tildeverse.org/)
## when
New episodes drop on the 12th and 24th of each month.
## who
Hi, I'm dozens! 👋
I'm just some guy from the internet, who is a hero for fun and a friend to animals.
- email: dozens@tilde.team
- mastodon: @dozens@tiny.tilde.website
- dozens on tilde.chat and libera.chat
## why
BECAUSE
## sources
Sounds you hear on the show.
See individual episodes for more credits and sources.
- intro: "[punishment](https://freemusicarchive.org/music/Plushgoolash/Chin25_Soup_Tennis/01-Punishment)" by Plushgoolash
- outro: "[big gay water fight](https://freemusicarchive.org/music/Plushgoolash/Chin25_Soup_Tennis/03-Big-Gay-Water-Fight)" by Plushgoolash
- [Mystical Wind Chimes Transition FX](https://freesound.org/people/djlprojects/sounds/419594/)
- logo: [Funfair of Avestafestivalen](https://commons.wikimedia.org/wiki/File:Avestafestivalen03.jpg) + [Crafty signs](https://www.fontspace.com/crafty-signs-font-f70130)

View File

@ -4,3 +4,4 @@ subtitle: stay in touch!
---
- dozens@tilde.team
- @dozens@tiny.tilde.website
- #tildewhirl on libera.chat

9517
pages/game.html 100644

File diff suppressed because it is too large Load Diff

View File

@ -1 +1 @@
- [$title$]($url$): $subtitle$ --- $if(updated)$$updated$$else$$date$$endif$
- [$title$]($url$): $subtitle$

View File

@ -0,0 +1,44 @@
{{#data}}
{{email}}
Hello, {{human}}!
Thank you so much for agreeing to be on the tilde whirl podcast! I think it's going to be a lot of fun.
We are scheduled to meet up on {{date}} at {{time}}.
I wanted to check in with you before then to go over a couple of things so that you feel prepared and ready.
Let me know if this all sounds good, or if you have any questions.
Talk soon!
<3,
dozens
== Best Practices ==
Pick a quiet, distraction free place where you can talk for about 60 minutes. (Some people have lots of success sitting down in their closet!)
Wear some headphones if you can. It prevents echo and feedback.
== Expectations ==
We'll talk about tildes, and your history and your experience with them. And also about your interests and hobbies, life in general, and whatever else comes up.
== Safety ==
It is important to me that you to feel safe and comfortable during our conversation.
If there is any topic that is off-limits for you or that you would rather not discuss, please let me know, and we'll stay away from that topic.
== Logistics ==
I'm still figuring out the best way to actually record these things. For this one, I'd like to meet on jitsi, because I think that's the easiest way to do it and the audio is pretty good.
https://meet.jit.si/dozens
---
{{/data}}

View File

@ -0,0 +1,72 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="$lang$" xml:lang="$lang$"$if(dir)$ dir="$dir$"$endif$>
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
$for(author-meta)$
<meta name="author" content="$author-meta$" />
$endfor$
$if(date-meta)$
<meta name="dcterms.date" content="$date-meta$" />
$endif$
$if(keywords)$
<meta name="keywords" content="$for(keywords)$$keywords$$sep$, $endfor$" />
$endif$
$if(description-meta)$
<meta name="description" content="$description-meta$" />
$endif$
<title>$if(title-prefix)$$title-prefix$ $endif$$pagetitle$</title>
<style>
$styles.html()$
</style>
$for(css)$
<link rel="stylesheet" href="$css$" />
$endfor$
$if(math)$
$math$
$endif$
<!--[if lt IE 9]>
<script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv-printshiv.min.js"></script>
<![endif]-->
$for(header-includes)$
$header-includes$
$endfor$
</head>
<body>
$for(include-before)$
$include-before$
$endfor$
$if(title)$
<header id="title-block-header">
<h1 class="title">$title$</h1>
$if(subtitle)$
<p class="subtitle">$subtitle$</p>
$endif$
$for(author)$
<p class="author">$author$</p>
$endfor$
$if(date)$
<p class="date">$date$</p>
$endif$
</header>
$endif$
$if(file)$
<h2>Listen now</h2>
<audio controls src="$file$"></audio>
<p><a href="$file$" download>download</a></p>
$endif$
$if(toc)$
<nav id="$idprefix$TOC" role="doc-toc">
$if(toc-title)$
<h2 id="$idprefix$toc-title">$toc-title$</h2>
$endif$
$table-of-contents$
</nav>
$endif$
$body$
$for(include-after)$
$include-after$
$endfor$
</body>
</html>

View File

@ -1 +1 @@
<link rel="alternate" type="application/rss+xml" href="feed.xml" title="my awesome blog name">
<link rel="alternate" type="application/rss+xml" href="rss.xml" title="podcast rss">

View File

@ -1 +1,9 @@
<p>These are all of my blog posts:</p>
<p>
<a href="rss.xml">Subscribe with <abbr title="Rumplestiltskin Stiltskin Stiltskin">RSS</abbr> 🚀</a>
</p>
<figure>
<img src="assets/img/logo_cmyk.png" alt="tilde whirl logo"/>
<figcaption>give it a whirl</figcaption>
</figure>
<p>New episodes on the 12th and the 24th of each month.</p>
<h2>Episodes:</h2>

View File

@ -2,6 +2,8 @@
<p>
<a href="index.html">home</a>
| <a href="about.html">about</a>
| <a href="game.html">game</a>
| <a href="secret">secret</a>
| <a href="contact.html">contact</a>
</p>
</nav>

View File

@ -0,0 +1,8 @@
<item>
<title>$title$</title>
<link>$url$</link>
<pubDate>$date$</pubDate>
<description><![CDATA[$body$]]></description>
<guid isPermaLink="false">$date$</guid>
<enclosure url="$file$" length="$length$" type="audio/x-m4a"/>
</item>

View File

@ -1,8 +0,0 @@
<item>
<title>$title$</title>
<link>$url$</link>
<pubDate>$date$</pubDate>
<description>
$body$
</description>
</item>