2023-12-06 19:08:06 +01:00
<!DOCTYPE html> < html > < head > < title > New Dawn < / title > < link rel = "stylesheet" type = "text/css" href = "html_resources/style.css" > < / head > < body >
< h1 > New Dawn < / h1 >
2023-09-26 06:59:11 +02:00
< p class = "comment" >
2023-12-06 19:08:06 +01:00
Now with 100% more title! It might be a bit too on-the-nose tho, Idk.
2023-09-26 06:59:11 +02:00
< / p >
2023-10-09 00:07:11 +02:00
< p >
Welcome, reader! This website is basically a book that I am working on
2023-12-27 08:37:11 +01:00
during my daily commute. It' s an adventure story with sci-fi elements
set in a post-apocalyptic, retro-futuristic world. Progress is kinda slow
due to my limited time but if you' re into this kind of stuff, feel
free to hang around, I' d appreciate it.
2023-10-09 00:07:11 +02:00
< / p >
2023-10-03 20:08:16 +02:00
< p >
2023-12-06 19:08:06 +01:00
< b > Please give feedback.< / b > I need it to turn what looks good to me into
2023-12-27 08:37:11 +01:00
something that is actually passable. You find me as @bodgemaster on
Discord, please direct your feedback to my DMs or to the story channel
if you have access to that (you know who you are :] ...).
< / p >
< p >
As the story is quite incomplete at this point, it might be helpful to
know about the three main story lines:< br / >
The first one revolves around Jack who finds himself trapped in a bunker.
In an attempt to get out, he establishes contact with the people in an
underground dome city. The second story line follows Annie who finds
Jack' s message and sets out to help him which ultimately leads to her
joining Jack in the outside world. The third story line begins in a space
colony on the moon that they establish contact with over the course of
the story.
< / p >
< p >
Another thing worth mentioning here: While parts of the story involve
computers, intimate knowledge of them shouldn' t be required. I make
an effort to explain what' s going on through context. If you find
something unclear, let me know.
2023-12-06 19:08:06 +01:00
< / p >
< p >
Below, in the table of contents, you find links to all the (already
2023-12-27 08:37:11 +01:00
written) chapters. A good portion is incolmplete and a lot of them will be
revised over time. The ones that don' t have numbers are named so they
show up in the right order but there is an unknown amount of chapters
inbetween them. You can also take a look at my
< a href = "./notes/" > collection of notes< / a > that, while not particularly
well-maintained, might be interesting (in case you missed the link:
< a href = "./notes/" > here< / a > ).
2023-11-08 20:50:53 +01:00
< / p >
2023-09-26 06:59:11 +02:00
< p >
Table of Contents:
< / p >
< ul >
2023-10-03 19:03:44 +02:00
<!-- chapter_list_here -->
2023-09-26 06:59:11 +02:00
< / ul >
2023-10-17 16:37:46 +02:00
< p class = "copyright" > Copyright © 2023 Jan Danielzick (aka. BodgeMaster) – 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 >