update from sparkleup
This commit is contained in:
parent
0056a429d0
commit
b59bd76762
|
@ -0,0 +1,76 @@
|
||||||
|
<!doctype html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Zk | Chaotic Element</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="/style.css" />
|
||||||
|
<meta name="viewport" content="width=device-width" />
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<main>
|
||||||
|
<header>
|
||||||
|
<h1>Zk | Chaotic Element</h1>
|
||||||
|
</header>
|
||||||
|
<article class="content">
|
||||||
|
<p><span class="tag">writing</span> <span class="tag">furry</span> <span class="tag">fiction</span> <span class="tag">sawtooth</span> <span class="tag">short-story</span></p>
|
||||||
|
<p>Premise: Witchy ace raccoon (POV) is the chaotic force in a more straight-edge fisher (Pekania pennanti). Fisher falls for raccoon but there is strife around sex. Climax is maybe:</p>
|
||||||
|
<ol>
|
||||||
|
<li>Fisher rapes raccoon</li>
|
||||||
|
<li>Fisher attempts to rape raccoon</li>
|
||||||
|
<li>Fisher decides it isn't going to work w/ combo of chaos andace, gets super upset</li>
|
||||||
|
</ol>
|
||||||
|
<p>raccoon runs away to stay w/ friend and has to figure out how to talk about what happened</p>
|
||||||
|
<p>Raccoon - Baron - late 20s - M (GQ)
|
||||||
|
Fisher - Ian - Early 30s - M
|
||||||
|
Friend (raccoon) - Sonya - Baron's ex, but still friend. Same ages as Baron, grew out of witchiness for the most part - F</p>
|
||||||
|
<h2 id="story">Story</h2>
|
||||||
|
<p>The salt was gritty beneath Baron's pawpads. It was a good feeling. A dry sort of dirty, clean and pure.</p>
|
||||||
|
<p>Salt for each of the paws. Just a dry rub against each of the pads, interpad fur dusted with coarse grains.</p>
|
||||||
|
<p>Water for the muzzle, dabbed at each of the whiskerpads, tickling its way through the fur. Another dab at chin and a fourth between the eyes. The water beaded for a moment atop his muzzle before soaking into the short fur there, cool.</p>
|
||||||
|
<p>Fire for the claws. Just a feathery brush of flame right across the tips, warmth spilling across fingers and toe as the bright flame flickered from the disturbance, casting crazing shadows throughout the otherwise dim room. Just the candle and what light made it through the curtains, despite the bright day beyond.</p>
|
||||||
|
<p>Incense for the tail. Something spicy and herbal. Something homemade rather than the cloying garbage that lined the shelves at hippie bookstores these days. Baron had made his own for years since the one consistent source for the incense he could stand had gone out of business. A waft of fragrant smoke through his brush to leave behind pleasant cleanliness.</p>
|
||||||
|
<p>"Stand," Baron murmured.</p>
|
||||||
|
<p>Ian wobbled to his feet, knees popping. Baron met his sheepish smile with a happy grin.</p>
|
||||||
|
<p>"Welcome, now, spirits of earth and water, fire and air. Welcome spirits to guide us, spirits to light the way ahead of us." Baron, having replaced the elements, now retrieved his small frame drum and, using the softer end of the mallet, began a slow rhythmic beat to keep up with his patter.</p>
|
||||||
|
<p>"Today is a new day, a new day begun. Today is a new day, a new day to explore. Today is a new day, a day for the searcher within to guide and find. Today is a new day, a day to become ever more whole." The words rolled out of his muzzle with comfortable familiarity, and he felt the world around him dissolve into the background, a pot set to simmer while the rest of the ritual was brought to a boil.</p>
|
||||||
|
<p>"Today we ask the powers of the east, the spirits of air, to lend their knowledge, that we may be ever bolstered by greater understanding." He turned away from the window to the right. "Today we ask the powers of the south, the spirits of fire, to lend their will, that we may be emboldened in our actions and all that we do." Turn. "Today we ask the powers of the west, the spirits of water, to lend their emotions, that we may learn from our feelings." One final turn. "Today, we ask the powers of the north, the spirits of earth, to lend their restraint, that we may not act beyond need and speak when silence is called for."</p>
|
||||||
|
<span class="control">Expand all</span>
|
||||||
|
</article>
|
||||||
|
<footer>
|
||||||
|
<p>Page generated on 2020-04-23</p>
|
||||||
|
</footer>
|
||||||
|
</main>
|
||||||
|
<script type="text/javascript">
|
||||||
|
document.querySelectorAll('li').forEach(el => {
|
||||||
|
if (el.querySelectorAll('li').length !== 0) {
|
||||||
|
el.classList.add('has-nested', 'closed');
|
||||||
|
el.innerHTML = `<span class="toggle"></span> ${el.innerHTML}`;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
document.querySelectorAll('.toc .has-nested').forEach(el => {
|
||||||
|
el.classList.remove('has-nested', 'closed');
|
||||||
|
});
|
||||||
|
document.querySelectorAll('li.has-nested').forEach(el => {
|
||||||
|
el.querySelector('.toggle').addEventListener('click', () => {
|
||||||
|
el.classList.toggle('closed');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
let expanded = false;
|
||||||
|
document.querySelector('.control').addEventListener('click', (e) => {
|
||||||
|
expanded = !expanded;
|
||||||
|
if (expanded) {
|
||||||
|
e.target.innerText = 'Collapse all';
|
||||||
|
} else {
|
||||||
|
e.target.innerText = 'Expand all';
|
||||||
|
}
|
||||||
|
document.querySelectorAll('.has-nested').forEach((el) => {
|
||||||
|
if (expanded) {
|
||||||
|
el.classList.remove('closed');
|
||||||
|
} else {
|
||||||
|
el.classList.add('closed')
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -14,66 +14,87 @@
|
||||||
<article class="content">
|
<article class="content">
|
||||||
<p><span class="tag">writing</span> <span class="tag">poetry</span> <span class="tag">fiction</span> <span class="tag">sawtooth</span> <span class="tag">furry</span></p>
|
<p><span class="tag">writing</span> <span class="tag">poetry</span> <span class="tag">fiction</span> <span class="tag">sawtooth</span> <span class="tag">furry</span></p>
|
||||||
<h2 id="i">I</h2>
|
<h2 id="i">I</h2>
|
||||||
<p>'''
|
<div class="verse">It was with no small amount of irony
|
||||||
It was with no small amount of irony
|
that Malina lay down all of her finery
|
||||||
that Malina lay down all of her finery</p>
|
|
||||||
<p>and went to work in a coffee shop.
|
and went to work in a coffee shop.
|
||||||
The Book and the Bean was a short hop,</p>
|
The Book and the Bean was a short hop,
|
||||||
<p>after all, from her home, close enough
|
|
||||||
that, after the walk, she was hardly fluffed</p>
|
after all, from her home, close enough
|
||||||
<p>at all. Just a badger, a bit portly, a bit tall,
|
that, after the walk, she was hardly fluffed
|
||||||
who gave up on a job in personal finance, one fall,</p>
|
|
||||||
<p>to, as she'd told Cyril, "head for greener pastures."
|
at all. Just a badger, a bit portly, a bit tall,
|
||||||
Internally, she couldn't shake the stress of last year's</p>
|
who gave up on a job in personal finance, one fall,
|
||||||
<p>troubles with the boss. Stupid git.
|
|
||||||
She'd promised Cyril that she'd be a good fit</p>
|
to, as she'd told Cyril, "head for greener pastures."
|
||||||
<p>and make things work out financially.
|
Internally, she couldn't shake the stress of last year's
|
||||||
"Our house is paid off, we're substantially</p>
|
|
||||||
<p>self sufficient. Far more so than most!"
|
troubles with the boss. Stupid git.
|
||||||
she'd said over that evening's roast.</p>
|
She'd promised Cyril that she'd be a good fit
|
||||||
<p>"And I'm perfectly willing
|
|
||||||
to admit I'll never make a killing</p>
|
and make things work out financially.
|
||||||
<p>working in a coffee shop. And if it doesn't
|
"Our house is paid off, we're substantially
|
||||||
work out, I'm just as willing to admit it wasn't</p>
|
|
||||||
<p>a good idea, and head back to the books."
|
self sufficient. Far more so than most!"
|
||||||
Cyril had given her the weariest of looks</p>
|
she'd said over that evening's roast.
|
||||||
<p>and shaken his head, and that act, or non-act,
|
|
||||||
which showed his opinion of the fact</p>
|
"And I'm perfectly willing
|
||||||
<p>that moving from a comfortable CPA position
|
to admit I'll never make a killing
|
||||||
to a barista down the road, that that transition</p>
|
|
||||||
<p>was, perhaps, one big bad idea.
|
working in a coffee shop. And if it doesn't
|
||||||
"It could work, but Malina,</p>
|
work out, I'm just as willing to admit it wasn't
|
||||||
<p>please keep an eye on reality."
|
|
||||||
'''</p>
|
a good idea, and head back to the books."
|
||||||
|
Cyril had given her the weariest of looks
|
||||||
|
|
||||||
|
and shaken his head, and that act, or non-act,
|
||||||
|
which showed his opinion of the fact
|
||||||
|
|
||||||
|
that moving from a comfortable CPA position
|
||||||
|
to a barista down the road, that that transition
|
||||||
|
|
||||||
|
was, perhaps, one big bad idea.
|
||||||
|
"It could work, but Malina,
|
||||||
|
|
||||||
|
please keep an eye on reality."</div>
|
||||||
<p><q class="comment">Maybe continue there to more dinner/conversation?</q></p>
|
<p><q class="comment">Maybe continue there to more dinner/conversation?</q></p>
|
||||||
<h2 id="ii">II</h2>
|
<h2 id="ii">II</h2>
|
||||||
<p><q class="comment">The problems with boss</q></p>
|
<p><q class="comment">The problems with boss</q></p>
|
||||||
<p>'''
|
<div class="verse">When one's coworker up and goes missing,
|
||||||
When one's coworker up and goes missing,
|
taking her life and leaving without even kissing
|
||||||
taking her life and leaving without even kissing</p>
|
|
||||||
<p>her husband goodbye,
|
her husband goodbye,
|
||||||
it takes every good lie</p>
|
it takes every good lie
|
||||||
<p>you've told in the office and either makes you ask
|
|
||||||
why you told it, or shatters the carefully constructed mask</p>
|
you've told in the office and either makes you ask
|
||||||
<p>it implies. Your boss, for instance,
|
why you told it, or shatters the carefully constructed mask
|
||||||
might come after you with some persistence,</p>
|
|
||||||
<p>aiming for a kiss here, a touch there,
|
it implies. Your boss, for instance,
|
||||||
Even as he wonders aloud, "Where</p>
|
might come after you with some persistence,
|
||||||
<p>has she gone? And why?" It makes no sense.
|
|
||||||
You rebuff every approach and set up a little fence</p>
|
aiming for a kiss here, a touch there,
|
||||||
<p>around your desk, one made of papers and inboxes,
|
Even as he wonders aloud, "Where
|
||||||
and work with your back to a wall to keep that fox's</p>
|
|
||||||
<p>advances at bay. It could be that you're just, you know,
|
has she gone? And why?" It makes no sense.
|
||||||
imagining things. That your boss is just stooping this low</p>
|
You rebuff every approach and set up a little fence
|
||||||
<p>not because he's upset, but because you are.
|
|
||||||
Even then, it doesn't really matter just how far</p>
|
around your desk, one made of papers and inboxes,
|
||||||
<p>he goes. Sigh. He's still an asshole.
|
and work with your back to a wall to keep that fox's
|
||||||
One day, you reject and rebuff a pass while</p>
|
|
||||||
<p>explaining what a shitty thing that is to do,
|
advances at bay. It could be that you're just, you know,
|
||||||
and finally tell the truth about how little you care who</p>
|
imagining things. That your boss is just stooping this low
|
||||||
<p>he thinks he is. He backs off, anger cool and plain,
|
|
||||||
but he does back off.
|
not because he's upset, but because you are.
|
||||||
'''</p>
|
Even then, it doesn't really matter just how far
|
||||||
|
|
||||||
|
he goes. Sigh. He's still an asshole.
|
||||||
|
One day, you reject and rebuff a pass while
|
||||||
|
|
||||||
|
explaining what a shitty thing that is to do,
|
||||||
|
and finally tell the truth about how little you care who
|
||||||
|
|
||||||
|
he thinks he is. He backs off, anger cool and plain,
|
||||||
|
but he does back off.</div>
|
||||||
<p>(or maybe that's just you imagining things now that she's gone, etc)</p>
|
<p>(or maybe that's just you imagining things now that she's gone, etc)</p>
|
||||||
<p>(makes you question your validity as an employee)</p>
|
<p>(makes you question your validity as an employee)</p>
|
||||||
<h2 id="iii">III</h2>
|
<h2 id="iii">III</h2>
|
||||||
|
|
|
@ -0,0 +1,61 @@
|
||||||
|
<!doctype html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Zk | Ritual</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="/style.css" />
|
||||||
|
<meta name="viewport" content="width=device-width" />
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<main>
|
||||||
|
<header>
|
||||||
|
<h1>Zk | Ritual</h1>
|
||||||
|
</header>
|
||||||
|
<article class="content">
|
||||||
|
<p><span class="tag">writing</span> <span class="tag">fiction</span> <span class="tag">furry</span> <span class="tag">short-story</span> <span class="tag">sawtooth</span></p>
|
||||||
|
<p>Three characters (salt, sulphur, and mercury, but not excplicitly named as such)
|
||||||
|
* Salt: husband, pacific, supportive, reliable
|
||||||
|
* Sulphur: girlfriend, firey, supportive but fretful, flaky
|
||||||
|
* Mercury: trans guy, tries to balance salt and sulphur</p>
|
||||||
|
<p>Entire story takes place during ritual with planning and interpersonal conflict told through flashbacks. Mercury having a ritual with Salt and Sulphur before his ??? Surgery? Something?</p>
|
||||||
|
<p>"My little coven: magic is magic."</p>
|
||||||
|
<span class="control">Expand all</span>
|
||||||
|
</article>
|
||||||
|
<footer>
|
||||||
|
<p>Page generated on 2020-04-23</p>
|
||||||
|
</footer>
|
||||||
|
</main>
|
||||||
|
<script type="text/javascript">
|
||||||
|
document.querySelectorAll('li').forEach(el => {
|
||||||
|
if (el.querySelectorAll('li').length !== 0) {
|
||||||
|
el.classList.add('has-nested', 'closed');
|
||||||
|
el.innerHTML = `<span class="toggle"></span> ${el.innerHTML}`;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
document.querySelectorAll('.toc .has-nested').forEach(el => {
|
||||||
|
el.classList.remove('has-nested', 'closed');
|
||||||
|
});
|
||||||
|
document.querySelectorAll('li.has-nested').forEach(el => {
|
||||||
|
el.querySelector('.toggle').addEventListener('click', () => {
|
||||||
|
el.classList.toggle('closed');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
let expanded = false;
|
||||||
|
document.querySelector('.control').addEventListener('click', (e) => {
|
||||||
|
expanded = !expanded;
|
||||||
|
if (expanded) {
|
||||||
|
e.target.innerText = 'Collapse all';
|
||||||
|
} else {
|
||||||
|
e.target.innerText = 'Expand all';
|
||||||
|
}
|
||||||
|
document.querySelectorAll('.has-nested').forEach((el) => {
|
||||||
|
if (expanded) {
|
||||||
|
el.classList.remove('closed');
|
||||||
|
} else {
|
||||||
|
el.classList.add('closed')
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -0,0 +1,103 @@
|
||||||
|
<!doctype html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Zk | Robbed (WT)</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="/style.css" />
|
||||||
|
<meta name="viewport" content="width=device-width" />
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<main>
|
||||||
|
<header>
|
||||||
|
<h1>Zk | Robbed (WT)</h1>
|
||||||
|
</header>
|
||||||
|
<article class="content">
|
||||||
|
<p><span class="tag">writing</span> <span class="tag">fiction</span> <span class="tag">furry</span> <span class="tag">short-story</span> <span class="tag">sawtooth</span></p>
|
||||||
|
<p>Name notes
|
||||||
|
* Cerridwen welsh goddess of music
|
||||||
|
* Cecilia patron saint of music
|
||||||
|
* Thamyris greek god of musical conceit
|
||||||
|
* Linus musical son of apollo</p>
|
||||||
|
<ul>
|
||||||
|
<li>Dr. T. Linus Carraway Jr - Conductor, professor of woodwinds, and oboist. Also full of himself for being young genius or whatever</li>
|
||||||
|
<li>
|
||||||
|
<p>Carrie Brys - Linus' long-distance girlfriend, lives in Illinois, computer science grad student</p>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<p>Linus concert and intro</p>
|
||||||
|
</li>
|
||||||
|
<li>Class and followups</li>
|
||||||
|
<li>Linus mugged, stabbed, grabs knife blade in defense and severs tendons</li>
|
||||||
|
<li>Sad sad sad, mopes at home, tries ODing on meds</li>
|
||||||
|
<li>Carrie visits as soon as she can make it to try and get him going again</li>
|
||||||
|
<li>Struggle struggle, living up in one's own head</li>
|
||||||
|
<li>Carrie surprises by turning last concert of season into benefit concert. Sob sob happy except low chance of getting back to where he was</li>
|
||||||
|
</ul>
|
||||||
|
<h2 id="story">Story</h2>
|
||||||
|
<p><em>[11:41 PM] tlcarraway> The high that comes after a performance is surely greater than any drug. I don't have much experience with drugs, other than an abortive attempt at marijuana back in undergrad.</em></p>
|
||||||
|
<p><em>[11:42 PM] tlcarraway> They should bottle this feeling.</em></p>
|
||||||
|
<p><em>[11:42 PM] CarrieB> Good performance, then?</em></p>
|
||||||
|
<p><em>[11:42 PM] tlcarraway> Great!!!</em></p>
|
||||||
|
<p><em>[11:42 PM] CarrieB> I can tell. You always start making these grand statements after the good ones.</em></p>
|
||||||
|
<p><em>[11:43 PM] tlcarraway> I do?</em></p>
|
||||||
|
<p><em>[11:43 PM] tlcarraway> I guess I do.</em></p>
|
||||||
|
<p><em>[11:44 PM] CarrieB> Last good performance you had, you started talking about Orpheus.</em></p>
|
||||||
|
<p><em>[11:44 PM] tlcarraway> Oy, was I drunk?</em></p>
|
||||||
|
<p><em>[11:44 PM] CarrieB> Are you now?</em></p>
|
||||||
|
<p><em>[11:45 PM] tlcarraway> Hah, good point.</em></p>
|
||||||
|
<p><em>[11:45 PM] tlcarraway> How's my kitty?</em></p>
|
||||||
|
<p><em>[11:45 PM] CarrieB> Good, though maybe not as good as you. Been waiting for you to get back.</em></p>
|
||||||
|
<p><em>[11:45 PM] tlcarraway> Waiting?</em></p>
|
||||||
|
<p><em>[11:46 PM] CarrieB> Of course! Your concerts really are great, but when they're done, that means I get you back again.</em></p>
|
||||||
|
<p><em>[11:46 PM] tlcarraway> <3</em></p>
|
||||||
|
<p><em>[11:46 PM] tlcarraway> Only one more this season, kitty.</em></p>
|
||||||
|
<p><em>[11:46 PM] CarrieB> <3</em></p>
|
||||||
|
<p><em>[11:47 PM] CarrieB> Still want me to come out and watch?</em></p>
|
||||||
|
<p><em>[11:47 PM] tlcarraway> I'd love that <3</em></p>
|
||||||
|
<p><em>[11:47 PM] CarrieB> Good!</em></p>
|
||||||
|
<p><em>[11:47 PM] CarrieB> It's super late, though, but I wanted to stay up and catch you before sleep. I'm crashingg</em></p>
|
||||||
|
<p><em>[11:49 PM] tlcarraway> Yeah, go get some sleep. I need to get cleaned up, anyway.</em></p>
|
||||||
|
<p><em>[11:49 PM] CarrieB> Kk sleep well when you get there love you</em></p>
|
||||||
|
<p>Out of habit, Linus twitched his wrist to get his watch into view, despite the clock on his laptop. It <em>was</em> late.</p>
|
||||||
|
<p><em>[11:50 PM] tlcarraway> Love you too. Make sure you actually sleep in bed instead of the comp chair this time <3</em></p>
|
||||||
|
<p>No reply. Good. If Carrie got to the point of barely intelligible keyboard mashing, she'd sleep basically wherever she was. Linus just had to hope she actually made it.</p>
|
||||||
|
<span class="control">Expand all</span>
|
||||||
|
</article>
|
||||||
|
<footer>
|
||||||
|
<p>Page generated on 2020-04-23</p>
|
||||||
|
</footer>
|
||||||
|
</main>
|
||||||
|
<script type="text/javascript">
|
||||||
|
document.querySelectorAll('li').forEach(el => {
|
||||||
|
if (el.querySelectorAll('li').length !== 0) {
|
||||||
|
el.classList.add('has-nested', 'closed');
|
||||||
|
el.innerHTML = `<span class="toggle"></span> ${el.innerHTML}`;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
document.querySelectorAll('.toc .has-nested').forEach(el => {
|
||||||
|
el.classList.remove('has-nested', 'closed');
|
||||||
|
});
|
||||||
|
document.querySelectorAll('li.has-nested').forEach(el => {
|
||||||
|
el.querySelector('.toggle').addEventListener('click', () => {
|
||||||
|
el.classList.toggle('closed');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
let expanded = false;
|
||||||
|
document.querySelector('.control').addEventListener('click', (e) => {
|
||||||
|
expanded = !expanded;
|
||||||
|
if (expanded) {
|
||||||
|
e.target.innerText = 'Collapse all';
|
||||||
|
} else {
|
||||||
|
e.target.innerText = 'Expand all';
|
||||||
|
}
|
||||||
|
document.querySelectorAll('.has-nested').forEach((el) => {
|
||||||
|
if (expanded) {
|
||||||
|
el.classList.remove('closed');
|
||||||
|
} else {
|
||||||
|
el.classList.add('closed')
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
Loading…
Reference in New Issue