post_apocalypse_story/04-Return_Null.html

128 lines
5.4 KiB
HTML

<!DOCTYPE html><html><head><title> Rerturn Null </title><link rel="stylesheet" type="text/css" href="html_resources/style.css"></head><body><a href="index.html"><button class="back">&lt;</button></a>
<p class="comment">Outline:</p>
<ul>
<li class="comment">
Jack puts the HDD back together after visually inspecting the platter
&ndash; there is no saving it
</li>
<li class="comment">
Jack establishes a connection to AgriWorks
</li>
<li class="comment">
They talk about a few topics:
<ul>
<li class="comment">
Annie&apos;s attempt to get the manual and what followed
</li>
<li class="comment">
Jack&apos;s background, past life, why he is there
</li>
<li class="comment">
life in the dome
</li>
<li class="comment">
the outside world (what happened, assumptions about what is)
<ul>
<li class="comment">
what happened: They came up with an alternative to asbestos.
Turns out that a precursor to the new material is even more
dangerous. A massive industrial accident happens.
At least, the material breaks down over time.
</li>
</ul>
</li>
</ul>
</li>
<li class="comment">
Annie needs to go to meet the library guy
</li>
</ul>
<p>
Pulling the secondary drive out of the rack takes an unusual amount of
force. The crunchy bearings scratch on the rails as they get dragged
forward. After struggling for a bit, Jack finally reaches the point
where the top cover and the empty compartment for a removable platter
are fully exposed. He undoes the thumb screws holding the assembly in
place, then he slides it forward and lifts it out, revealing the
circuit boards, motor, and the spindle with fixed platters beneath.
A fine silver line along the edge in the otherwise brown coating of the
upper-most platter shows where one of the heads had crashed &ndash;
a deep scratch but, with a bit of luck, this might still be recoverable.
He undoes two more thumb screws on the inside and the face plate of the
drive comes off. Using a crank-driven flashlight <span class="comment">
Is that the right way to describe this?</span> that he had found in one
of the desk cabinets, he inspects the three platters: The one on top
turns out to be the outlier, both of the other platters have thick
silver-y white stripes lining their edges.
<span class="quote speech">Well, there goes that pipe dream.</span>
</p>
<p>
Jack puts the drive back together. Hopefully, he will get the manual for
the door from Annie, otherwise he&apos;ll have to dig his way out of the
bunker somehow. <span class="quote speech">But enough of that for
now</span>, Jack thinks and puts the thought aside for a while. Now, he
needs a way to entertain himself until the evening.
</p>
<p class="comment">
This has been moved here from chapter 1 &quot;Wake Up&quot;. It should
be integrated into this chapter instead.
</p>
<p>
He walks over to the the teleprinter and opens the lid to find that
something has eaten most of the paper. He removes the remains and opens
one of the cabinets under the desks. By some miracle, whatever ate the
paper didn&apos;t find the rest. He tears off a piece of the stack and
puts it into the printer, feeding the end into the tractor mechanism.
Then, he sits down at the terminal and logs on.
<span class="comment">This should be rephrased to indicate that there
is some purpose to him opening the lid in the first place, like him
wanting to change the ribbon bc it's no doubt deteriorated or something
like that.</span>
</p>
<pre class="terminal">
$ ls
$ pwd
/home/jack
$ cd /var/log
$ ls
cron outpost dmesg.log wtmp
$ cd outpost
$ ls
comms comms_diag event logbook
$ cat logbook &gt; /dev/ttyS1
$ &#9608;
</pre>
<p>
The printer comes to life and starts printing. Jack gets up and walks
over to it. The printer prints. And it prints some more. The paper
reaches the floor. Jack picks up the end and holds it, folding the pages
along the perforated lines as they reach his hands. Finally, the printer
stops to print. Jack turns the wheel on the side of the printer, manually
advancing the feed mechanism, until he reaches the end of the page. Then,
he tears it off and takes the small stack of paper back to the terminal
desk. Trying his luck with the lamp again, he flips the switch multiple
times until it stays on.
</p>
<pre class="paper">
2000-01-01 Automated Announcement:
Happy New Year 2000!
//TODO: ASCII art of above line with fireworks
The outpost diagnostics suite reports no critical problems at any of
our outposts. The Lunar Biosphere has, so far, not needed assistance
from any of the outposts.
Good work, everyone!
The Future Is Bright.
2002-08-15 Lunar Biosphere:
Crew wakeup command
Message:
//TODO
//TODO: more log messages left by people
</pre>
<p class="copyright">Copyright &#169; 2023 Jan Danielzick (aka. BodgeMaster) &ndash; All rights reserved.</p><script>let spans = ["<span class=\"paper green\">", "<span>"]; let pre_texts = document.getElementsByTagName("pre"); for (let i = 0; i < pre_texts.length; i++) {if (pre_texts[i].className != "paper") continue; let lines = pre_texts[i].innerHTML.split("\n"); let result = ""; for (let j = 0; j < lines.length; j++) {result = result + spans[j%2] + lines[j] + " ".repeat(80-lines[j].length) + "</span>\n";} pre_texts[i].innerHTML = result;}</script></body></html>