Move stuff to asides

This commit is contained in:
Madison Scott-Clary
2019-08-20 16:46:29 -07:00
parent e495d776df
commit 2e944625b2
10 changed files with 510 additions and 344 deletions

24
content/core/029.html Normal file
View File

@ -0,0 +1,24 @@
---
date: 2019-08-19
weight: 29
---
<pre>
( <a class="pulse huh" href="/aside/1">...</a> )
O
o
.
_____,,,_^..^_,,,_____
</pre>
<script type="text/javascript">
const grawlix = [
',,,', '///', '???', '!!!', '@@@', '###', '$$$',
'%%%', '^^^', '***', '---', '+++', '+++', '...'];
let curr = 0
let el = document.querySelector('.huh');
window.setInterval(() => {
el.innerHTML = grawlix[curr];
curr = (curr + 1) % grawlix.length;
}, 250);
</script>

View File

@ -1,38 +0,0 @@
---
date: 2019-08-19
weight: 29
---
Is it weird for me to be streaming writing like this?
> I don't know. Does it feel weird to you?
I guess. I feel like maybe it's weird to be writing for an audience (even if it's only theoretical). What sort of information can be gleaned from watching someone write in a word-processor? Method? Insight?
> Entertainment?
I don't know about that.
> Validation?
That's more like it, I suppose. It's a way to prove to others that I actually sit down and write these things. That there's someone there.
> That there's someone behind a memoir? How novel.
Well, yes. But that they take time, that they take energy. That it's a process and not a product.
> Is there some sense of validity that is lacking from simply publishing? Posting?
I don't know.
> You set up analytics on this site. And on your writing site.
I set up analytics on a lot of sites.
> But these in particular. Do you need to see that others see you?
I suppose I do. It's important to be recognized.
> Are you also doing this to get me to leave you alone about heavier topics?
Yes.

View File

@ -38,3 +38,5 @@ The last two, in particular, are used often with the idea of grief in mind, whic
Less, perhaps.
> Was it that easy to let go?
I don't know. Maybe.

24
content/core/033.html Normal file
View File

@ -0,0 +1,24 @@
---
date: 2019-08-20
weight: 33
---
<pre>
( <a class="pulse huh" href="/aside/2">...</a> )
O
o
.
_____,,,_^..^_,,,_____
</pre>
<script type="text/javascript">
const grawlix = [
',,,', '///', '???', '!!!', '@@@', '###', '$$$',
'%%%', '^^^', '***', '---', '+++', '+++', '...'];
let curr = 0
let el = document.querySelector('.huh');
window.setInterval(() => {
el.innerHTML = grawlix[curr];
curr = (curr + 1) % grawlix.length;
}, 250);
</script>