update from sparkleup

This commit is contained in:
Madison Scott-Clary 2020-04-23 01:40:09 -07:00
parent 67944969f6
commit f5f8a7c426
2 changed files with 95 additions and 1 deletions

90
writing/harlequin.html Normal file
View File

@ -0,0 +1,90 @@
<!doctype html>
<html>
<head>
<title>Zk | Untitled story for Harlequin</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 | Untitled story for Harlequin</h1>
</header>
<article class="content">
<p><span class="tag">writing</span> <span class="tag">fiction</span> <span class="tag">short-story</span> <span class="tag">post-self</span> <span class="tag">scifi</span></p>
<ul>
<li>Getting Lost universe</li>
<li>Cyberpunk</li>
<li>Dark with some humor</li>
<li>Consider Gregory Wolfe from Harlequin (movie)</li>
<li>Crossed Wires?</li>
<li>
<p>Include Felder and Harlequin</p>
</li>
<li>
<p>Middling whitehat, Nicky, seems to have hit a wall as far as how interesting the jobs he gets are, starts dabbling in less-savory jobs</p>
</li>
<li>Shown up by better hacker, Wolfe.</li>
<li>Offer to do job together and help teach</li>
<li>Wolfe seems to do everything almost effortlessly</li>
<li>Job goes off successfully, but Wolfe destroys data/alerts defenses</li>
<li>Fun part being convincing bosses that he (Nicky) botched it, without winding up degradation</li>
<li>Works, but just barely</li>
<li>Nicky contacted by Felder, invited to next level, having learned social engineering aspect of hacking</li>
</ul>
<h2 id="story">Story</h2>
<p>The trek home was dull. The amount of energy and attention required was just above the level where Nicky could've kicked back and gotten a bit of work done on personal projects, but below what was required to keep him interested and invested in anything other than just feeling grumpy.</p>
<p>Too much time was spent changing trains or navigating the mindless mobs of other, equally tired commuters.</p>
<p>The last step was easiest, at least. Just a ten minute bus ride from the station to the stop just up the block from his apartment. He bore it in patience, relying on the blur of colors from the signs of the restaurants they passed to keep him company on the way. His gloves were too hot, his face itched, he was bored, but he was also almost home.</p>
<p>Home was where it was cool. Home was where he could change clothes and make a quick dinner. Home is where he could take off his gloves and sit at his deck without it being on-the-clock work. It was nice to take a moment to actually relax, no more bearing the weight of the hundreds of emotionless looks one gets while traveling through city.</p>
<p>Nicky took a few minutes to clean his contacts, swabbing each of the implants with a sterile, alcohol-dipped swab, before settling in comfortably in front of his deck. There was always this meditative moment, he had discovered, before heading in, where one was confronted with the enormous complexity and expense of all of the gear required. The rig itself had been three months of saving, and the current set of implants nearly two years --- though thankfully those could be built up one part at a time.</p>
<p>It was way more than one needed for a simple security job. Most of his time was spent at a keyboard --- real or virtual --- at a command line, typing, rather than delved in.</p>
<p>Not that the getup was all that uncommon, even among his coworkers. His was even a few notches down the fanciness scale, since he was less into gaming than so many of his coworkers. He didn't need top of the line gizmos or the absolute latest in integration devices.</p>
<p>He just needed it to be fast.</p>
<p><em>Dawlding,</em> Nicky chided himself. He shook his head in an attempt to clear the mood and set his hands down on the cradles, feeling the contacts on his fingers click against the matching set on the handrests, then set his head back against the headrest of his chair.</p>
<hr />
<p>Nicky blinked away the afterimages of his exocosmic room.</p>
<p>His own personal space this side of the deck was simple, spartan. The walls were white and the floor wood, but now, in the dark, the white of the walls had settled into a cool, comfortable gray, and the floor lost detail in dimness.</p>
<p>Throughout the room was suspended a constellation of his current work. Business-card sized slips of paper connected by thin strands of fillament that shone of their own accord. He prowled around the display, turning cards this way and that to peek at their titles and get a glimpse of their contents, before allowing them to snap back into place.</p>
<p>Not finding what he was hunting for, Nicky dug through one of the decks set in the air next to the constellation, until he came up with a simple card with a string of forty letters and numbers embossed in its surface.</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>

View File

@ -21,6 +21,10 @@
<li class="done4"> Story: <a href="assignment.html">Assignment</a></li>
<li class="done4"> Novella: <a href="gallery-exhibition.html">Gallery Exhibition</a></li>
</ul>
<h2 id="other-bits">Other bits</h2>
<ul>
<li class="done2"> Story: <a href="harlequin.html"><em>untitled story for Harlequin</em></a></li>
</ul>
<h2 id="tasks">Tasks</h2>
<ul>
<li class="done4"> Write</li>
@ -42,7 +46,7 @@
<span class="control">Expand all</span>
</article>
<footer>
<p>Page generated on 2020-04-20</p>
<p>Page generated on 2020-04-23</p>
</footer>
</main>
<script type="text/javascript">