Skip to content

Commit

Permalink
Support for multiple authors (_9MOTHER9HORSE9EYES9, karen_castillo), …
Browse files Browse the repository at this point in the history
…front- and back-cover
  • Loading branch information
cryzed committed Jul 2, 2016
1 parent f6f0b9e commit 522e286
Show file tree
Hide file tree
Showing 237 changed files with 352 additions and 38 deletions.
Binary file added back-cover.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added front-cover.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
42 changes: 32 additions & 10 deletions make-ebook
Original file line number Diff line number Diff line change
Expand Up @@ -2,37 +2,59 @@

import html
import json
import operator
import os
import textwrap

from ebooklib import epub

SPINE_PATH = os.path.join('parts', 'spine.json')
AUTHOR = '_9MOTHER9HORSE9EYES9'
TITLE = 'The Interface Series'
LANGUAGE = 'en'
FRONT_COVER_FILE_NAME = 'front-cover.jpg'
BACK_COVER_FILE_NAME = 'back-cover.jpg'

# There's no real rhyme or reason to this, I just tried to find a value which looks good on my e-book reader
MAX_TITLE_LENGTH = 56


def main():
print('- Loading spine...')
with open(SPINE_PATH) as file:
spine = json.load(file)
spine = {}
for username in os.listdir('parts'):
print('-', username)
print(' - Loading spine...')

spine_path = os.path.join('parts', username, 'spine.json')
with open(spine_path) as file:
user_spine = json.load(file)
spine.update({id_: (username, created) for id_, created in user_spine.items()})

book = epub.EpubBook()
book.set_title(TITLE)
book.add_author(AUTHOR)
book.set_language(LANGUAGE)

# Front cover
with open(FRONT_COVER_FILE_NAME, 'rb') as file:
book.set_cover(FRONT_COVER_FILE_NAME, file.read())
book.get_item_with_id('cover').is_linear = True

# End cover image
back_cover_image = epub.EpubCover('back-cover-img', 'cover.jpg')
with open(BACK_COVER_FILE_NAME, 'rb') as file:
back_cover_image.content = file.read()
book.add_item(back_cover_image)

# End cover html
back_cover = epub.EpubCoverHtml('back-cover', 'back-cover.xhtml', 'cover.jpg')
back_cover.is_linear = True
book.add_item(back_cover)

print('- Loading parts...')
chapters = []
for id_, created in sorted(spine.items(), key=operator.itemgetter(1)):
with open(os.path.join('parts', id_ + '.html')) as file:
for id_, (username, created) in sorted(spine.items(), key=lambda item: item[1][1]):
with open(os.path.join('parts', username, id_ + '.html')) as file:
html_content = file.read()
with open(os.path.join('parts', id_ + '.txt')) as file:
with open(os.path.join('parts', username, id_ + '.txt')) as file:
text = file.read()

file_name = id_ + '.xhtml'
Expand All @@ -42,12 +64,12 @@ def main():
chapters.append(chapter)

# Have to unescape HTML entities in the text content
title = textwrap.shorten(html.unescape(text), MAX_TITLE_LENGTH, placeholder='...')
title = textwrap.shorten('%s: %s' % (username, html.unescape(text)), MAX_TITLE_LENGTH, placeholder='...')
book.toc.append(epub.Link(file_name, title, id_))

book.add_item(epub.EpubNcx())
book.add_item(epub.EpubNav())
book.spine = ['nav', *chapters]
book.spine = ['cover', 'nav', *chapters, 'back-cover']

file_name = '%s #%d.epub' % (book.title, len(chapters))
print('- Saving: %s...' % file_name)
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
1 change: 1 addition & 0 deletions parts/_9MOTHER9HORSE9EYES9/spine.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"d2jo5ga": 1461811947.0, "hello_friends": 1461481940.0, "d4dtvrp": 1466242952.0, "d3iud3w": 1464193172.0, "removed_4logkv": 1464622164.0, "d2fo9sl": 1461556172.0, "d3wktef": 1465135706.0, "d2s6z0w": 1462377821.0, "d3jqif8": 1464246908.0, "d2ltj9c": 1461943207.0, "d4tcbur": 1467275069.0, "d33qk4u": 1463148948.0, "4jafkl": 1463237815.0, "d2en7bz": 1461473659.0, "d3xttlm": 1465228751.0, "d4pncsv": 1467047167.0, "4n9z26": 1465491461.0, "d2c3fdv": 1461295757.0, "d312ga5": 1462983156.0, "d37z24l": 1463461838.0, "d2g0xhj": 1461577092.0, "d4tolfc": 1467298626.0, "d2cct4e": 1461308965.0, "4pvk2e": 1466934465.0, "d2cbp0s": 1461307205.0, "d2ert8d": 1461481939.0, "d4cs7dl": 1466178619.0, "d2cc6cf": 1461307965.0, "d2iwucr": 1461757413.0, "d2y6h4m": 1462792047.0, "d44p5kg": 1465662171.0, "d49xt72": 1466007820.0, "d4s1gca": 1467194791.0, "terraform": 1462032265.0, "d2ho5mf": 1461685258.0, "d3if04d": 1464163434.0, "d4g2xvn": 1466416783.0, "d3i57tl": 1464149218.0, "d3dxrex": 1463847196.0, "d3aujwi": 1463639285.0, "d31yrnu": 1463036091.0, "d47g4hy": 1465862974.0, "d2n4wr0": 1462032264.0, "d326lbl": 1463048043.0, "d3bcb0q": 1463672046.0, "d3v8zg0": 1465032614.0, "d39lnl2": 1463561808.0, "d2w3kfa": 1462628921.0, "4l9pkz": 1464363296.0, "4m66wx": 1464884439.0, "d3nthyz": 1464534395.0, "d2z7yi7": 1462864046.0, "d2tj88l": 1462460735.0, "d2mmaiu": 1461995134.0, "d32gouw": 1463071397.0, "d36yeaq": 1463389465.0, "d3hed39": 1464097110.0, "4npit0": 1465750324.0, "d2dcwn8": 1461377901.0, "d2c866l": 1461302007.0, "d2x3sm6": 1462709723.0, "d2l4m6h": 1461902416.0, "d34yx7g": 1463231211.0, "d3c94tp": 1463728359.0, "d2zn8xr": 1462891112.0, "d3k5zcj": 1464276011.0, "d2c9u04": 1461304382.0, "d4qgznj": 1467095193.0, "d2lhzzx": 1461921694.0, "d33eytu": 1463127844.0, "d363t80": 1463325539.0, "d2pdpft": 1462200469.0, "d2jxv24": 1461825051.0, "d2c51m1": 1461297843.0, "d2cll7b": 1461322366.0, "4oqy99": 1466322662.0, "4khsjd": 1463935217.0, "d2vrmx0": 1462605140.0, "d3re17g": 1464786906.0, "d2y092y": 1462781241.0, "d405f61": 1465371454.0, "d3r39re": 1464768061.0, "d2coaqr": 1461327166.0, "d2e1ell": 1461420851.0, "d38fejn": 1463487487.0, "d39yv9w": 1463586533.0, "d2qqj3e": 1462285964.0, "d2fxdrb": 1461570920.0, "d2wpujq": 1462683023.0, "4gl284": 1461734445.0, "d2kexwg": 1461854724.0, "d2iz8v8": 1461762060.0, "d30licm": 1462950527.0, "d2cs0yd": 1461335444.0, "d2caxhe": 1461306020.0, "d2qhsqx": 1462269518.0, "4i2bmw": 1462516179.0, "d2h9d5c": 1461658050.0}
File renamed without changes.
File renamed without changes.
4 changes: 4 additions & 0 deletions parts/karen_castillo/4qlwg6.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<div class="md"><p>Is this outcome possible? Can a rippled-mirror effect be created using a narrative in one timeline with a positive outcome? Or will the fractal nature of the multiverse prevent this outcome? I need the wave pattern to spread out evenly regardless of irregularities due to the multiverse homogeneity being disrupted by a absolute event roughly 25 years in the future in my universe?</p>

<p>Serious theories would be appreciated.</p>
</div>
3 changes: 3 additions & 0 deletions parts/karen_castillo/4qlwg6.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Is this outcome possible? Can a rippled-mirror effect be created using a narrative in one timeline with a positive outcome? Or will the fractal nature of the multiverse prevent this outcome? I need the wave pattern to spread out evenly regardless of irregularities due to the multiverse homogeneity being disrupted by a absolute event roughly 25 years in the future in my universe?

Serious theories would be appreciated.
2 changes: 2 additions & 0 deletions parts/karen_castillo/d4tuc9n.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
<div class="md"><p>He should have listened to me. </p>
</div>
1 change: 1 addition & 0 deletions parts/karen_castillo/d4tuc9n.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
He should have listened to me.
6 changes: 6 additions & 0 deletions parts/karen_castillo/d4tzk0b.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<div class="md"><p>I am currently in an opposite jump now. Here. </p>

<p>What I need to know is can an instance reassemble the homogenous nature of the multiverse by stopping an event that should have never happened? This event must be eradicated in the ripple, but all other fractals can remain. </p>

<p>Because although there are universes/timelines where this event does not occur, the instances in which it happens ripples over into those, and there is no barrier. There is no dam to stop the waves spillover in the future. </p>
</div>
5 changes: 5 additions & 0 deletions parts/karen_castillo/d4tzk0b.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
I am currently in an opposite jump now. Here.

What I need to know is can an instance reassemble the homogenous nature of the multiverse by stopping an event that should have never happened? This event must be eradicated in the ripple, but all other fractals can remain.

Because although there are universes/timelines where this event does not occur, the instances in which it happens ripples over into those, and there is no barrier. There is no dam to stop the waves spillover in the future.
12 changes: 12 additions & 0 deletions parts/karen_castillo/d4udsk7.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<div class="md"><p>We can not jump further back. It is now, here, or never. </p>

<p>Why he has chosen this place I wish I knew. This is going to take much longer than I expected. </p>

<p>This world is so stunted. You barely have something that resembles virtual holography. I am going to hack some banks to buy a Vive and HoloLens Development Kit. Build a cluster. We need more computing power and people for this to Multiverse Hoag&#39;s Ripple to happen. </p>

<p>And in no way am I &quot;Waiting tables like a normal girl my age to blend in&quot;. Swear. </p>

<p>What is a Cartel? They seem to have money and deserve losing it. </p>

<p>Back to researching. And Pizza. And Chocolate Ice Cream. And Fireflies tonight. Those are so beautiful I cry. </p>
</div>
11 changes: 11 additions & 0 deletions parts/karen_castillo/d4udsk7.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
We can not jump further back. It is now, here, or never.

Why he has chosen this place I wish I knew. This is going to take much longer than I expected.

This world is so stunted. You barely have something that resembles virtual holography. I am going to hack some banks to buy a Vive and HoloLens Development Kit. Build a cluster. We need more computing power and people for this to Multiverse Hoag's Ripple to happen.

And in no way am I "Waiting tables like a normal girl my age to blend in". Swear.

What is a Cartel? They seem to have money and deserve losing it.

Back to researching. And Pizza. And Chocolate Ice Cream. And Fireflies tonight. Those are so beautiful I cry.
6 changes: 6 additions & 0 deletions parts/karen_castillo/d4uf3bv.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<div class="md"><p>We have been here for 26 days now. </p>

<p>The Pull happened when I could see the Kinetic Needles lacing the sky as they fell towards us from orbit. A million of them burning bright red, orange, green and blue. Horrifyingly beautiful. </p>

<p>A Gods beautiful wrath to enthrall all who witness it.</p>
</div>
5 changes: 5 additions & 0 deletions parts/karen_castillo/d4uf3bv.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
We have been here for 26 days now.

The Pull happened when I could see the Kinetic Needles lacing the sky as they fell towards us from orbit. A million of them burning bright red, orange, green and blue. Horrifyingly beautiful.

A Gods beautiful wrath to enthrall all who witness it.
8 changes: 8 additions & 0 deletions parts/karen_castillo/d4uiol0.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<div class="md"><p>This is the answer I was looking for. </p>

<p>Can you provide me with your insights on CDT? </p>

<p>And yes, I also take this topic seriously. Based on your information we might be safe here from one threat, but not the other. </p>

<p>Thank you for this input. More will be appreciated. </p>
</div>
7 changes: 7 additions & 0 deletions parts/karen_castillo/d4uiol0.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
This is the answer I was looking for.

Can you provide me with your insights on CDT?

And yes, I also take this topic seriously. Based on your information we might be safe here from one threat, but not the other.

Thank you for this input. More will be appreciated.
4 changes: 4 additions & 0 deletions parts/karen_castillo/d4uivy6.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<div class="md"><p>They deleted it. Even though I read the sidebar and stayed in the rules. </p>

<p>Doesn&#39;t matter. You gave me the answers I need. </p>
</div>
3 changes: 3 additions & 0 deletions parts/karen_castillo/d4uivy6.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
They deleted it. Even though I read the sidebar and stayed in the rules.

Doesn't matter. You gave me the answers I need.
36 changes: 36 additions & 0 deletions parts/karen_castillo/d4uly93.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<div class="md"><blockquote>
<p>There can be no threat in the grand scheme. Each universe is instanced and complete. The user can only experience perceived threats.</p>

<p>It is a catch-22. Remember that what we consider a &#39;universe&#39; includes time. ALL time. Therefore, whatever can happen (i.e. a &#39;threat&#39;) is already done. It is a component of that universe.</p>

<p>I&#39;m going to make an analogy of why what you&#39;re saying doesn&#39;t make sense to me. We are driving down a road. But for some reason you are telling me you believe we making the road as we drive, and that if we don&#39;t stop building the road this direction it will run into a cliff. And if we build the road to the cliff the whole road will be destroyed.</p>

<p>If you are right and we are building the road to the cliff, then that is where the road ends. And if we choose to keep driving we will go off the cliff. Or we can choose a different road. But I can&#39;t fathom how you think getting to the cliff destroys the road.</p>
</blockquote>

<p>I understand your analogy. Here is mine.</p>

<p>The road is not the issue, nor is the car. It is a chasm that was not there before. I&#39;ve went back to before the chasm existed and I am now trying to fill in this chasm with a shovel, and a very stubborn pack mule. Or at least build a bridge over it. Around it might be better. He and I are going to have to discuss this tonight. Your insight has been helpful. I will need to research more, after I rest. I do not think here is the place for these types of discussions. Maybe this site has no place for this discussion. And G&#39;s little place is nice. I understand why they like each other and talk. </p>

<p>&nbsp;</p>

<blockquote>
<p>And for the second part, what is CDT? </p>
</blockquote>

<p>Causal Dynamical Triangulation. </p>

<p>&nbsp;</p>

<p>Thank you. Again. It so flat here and hard to obtain knowledge. </p>

<p>&nbsp;</p>

<p>To give you an analogy of how flat it is: </p>

<p>Imagine being a Advanced Field Medic in the future. You are wearing VR contact lens that are &quot;jacked in&quot;. You are at a M.A.S.H. overflowing with casualties and you are doing surgeries that give you a complete overlay of the injured person&#39;s body, in real time. It tells you what to administer, where to cut, where to suture, where to cauterize. Who is beyond saving. You are not a doctor, you are now an extension of a doctor. Only the doctor is AI. A medical AI that any person can access wearing these, or any compatible lens technology. &quot;</p>

<p>It is so flat here. And I am tired and still weak, and the mule is <em>stubborn</em> today. </p>

<p>Thank you again. I will read your comments when I wake. </p>
</div>
37 changes: 37 additions & 0 deletions parts/karen_castillo/d4uly93.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
> There can be no threat in the grand scheme. Each universe is instanced and complete. The user can only experience perceived threats.
>
> It is a catch-22. Remember that what we consider a 'universe' includes time. ALL time. Therefore, whatever can happen (i.e. a 'threat') is already done. It is a component of that universe.
>


> I'm going to make an analogy of why what you're saying doesn't make sense to me. We are driving down a road. But for some reason you are telling me you believe we making the road as we drive, and that if we don't stop building the road this direction it will run into a cliff. And if we build the road to the cliff the whole road will be destroyed.

> If you are right and we are building the road to the cliff, then that is where the road ends. And if we choose to keep driving we will go off the cliff. Or we can choose a different road. But I can't fathom how you think getting to the cliff destroys the road.


I understand your analogy. Here is mine.

The road is not the issue, nor is the car. It is a chasm that was not there before. I've went back to before the chasm existed and I am now trying to fill in this chasm with a shovel, and a very stubborn pack mule. Or at least build a bridge over it. Around it might be better. He and I are going to have to discuss this tonight. Your insight has been helpful. I will need to research more, after I rest. I do not think here is the place for these types of discussions. Maybe this site has no place for this discussion. And G's little place is nice. I understand why they like each other and talk.

&nbsp;


> And for the second part, what is CDT?

Causal Dynamical Triangulation.

&nbsp;

Thank you. Again. It so flat here and hard to obtain knowledge.

&nbsp;

To give you an analogy of how flat it is:

Imagine being a Advanced Field Medic in the future. You are wearing VR contact lens that are "jacked in". You are at a M.A.S.H. overflowing with casualties and you are doing surgeries that give you a complete overlay of the injured person's body, in real time. It tells you what to administer, where to cut, where to suture, where to cauterize. Who is beyond saving. You are not a doctor, you are now an extension of a doctor. Only the doctor is AI. A medical AI that any person can access wearing these, or any compatible lens technology. "


It is so flat here. And I am tired and still weak, and the mule is *stubborn* today.

Thank you again. I will read your comments when I wake.

2 changes: 2 additions & 0 deletions parts/karen_castillo/d4vv9ys.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
<div class="md"><p>I suggest believing. </p>
</div>
1 change: 1 addition & 0 deletions parts/karen_castillo/d4vv9ys.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
I suggest believing.
10 changes: 10 additions & 0 deletions parts/karen_castillo/d4w13u2.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<div class="md"><blockquote>
<p>It just didn&#39;t make that much sense with the commonly accepted models and hypothesis of DJ. Which is odd because almost every single thing is acceptable in DJ. The reason being a problem of levels. If you managed to achieve the things that Karen is claiming to have achieved, then you would be so far beyond the skill of the problem presented that you wouldn&#39;t have that question. It&#39;s sort of like saying &quot;Help. I&#39;ve been a professional chef in a prestigious New York restaurant for 10 years. But something has gone wrong. None of my knives are sharp! What do I do?&quot;</p>
</blockquote>

<p>All my &quot;knives&quot;, all of my &quot;utensils&quot;, everything is <em>gone</em>. No Bred. No Hive Mind. No visual representations of Spacetime Algebra. </p>

<p>It does not exist here. It is <em>flat</em> here. Except Fireflies.</p>

<p>I would like to go talk to one of Lovelace&#39;s parakeets.</p>
</div>
8 changes: 8 additions & 0 deletions parts/karen_castillo/d4w13u2.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
>It just didn't make that much sense with the commonly accepted models and hypothesis of DJ. Which is odd because almost every single thing is acceptable in DJ. The reason being a problem of levels. If you managed to achieve the things that Karen is claiming to have achieved, then you would be so far beyond the skill of the problem presented that you wouldn't have that question. It's sort of like saying "Help. I've been a professional chef in a prestigious New York restaurant for 10 years. But something has gone wrong. None of my knives are sharp! What do I do?"


All my "knives", all of my "utensils", everything is *gone*. No Bred. No Hive Mind. No visual representations of Spacetime Algebra.

It does not exist here. It is *flat* here. Except Fireflies.

I would like to go talk to one of Lovelace's parakeets.
6 changes: 6 additions & 0 deletions parts/karen_castillo/d4w241o.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<div class="md"><p>I would like to know that. </p>

<p><em>What caused Ben and I to be pulled here.</em> </p>

<p>Maybe Nick knows.</p>
</div>
5 changes: 5 additions & 0 deletions parts/karen_castillo/d4w241o.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
I would like to know that.

*What caused Ben and I to be pulled here.*

Maybe Nick knows.
6 changes: 6 additions & 0 deletions parts/karen_castillo/d4w9huf.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<div class="md"><p>It is a very interesting little part of this site. </p>

<p>I will never become familiar with keyboards. </p>

<p>I do want to share a story. I will tell Nick about it, and let him write it out for everyone to enjoy. </p>
</div>
5 changes: 5 additions & 0 deletions parts/karen_castillo/d4w9huf.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
It is a very interesting little part of this site.

I will never become familiar with keyboards.

I do want to share a story. I will tell Nick about it, and let him write it out for everyone to enjoy.
8 changes: 8 additions & 0 deletions parts/karen_castillo/d4w9pal.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<div class="md"><blockquote>
<p>How can Karen handle hyperspace?</p>
</blockquote>

<p>By thinking in multiple dimensions. Did you really think I did not know who would respond, and exactly when to post my conversation to entice that user. </p>

<p>Now their gift of sight can be expressed here for others. </p>
</div>
6 changes: 6 additions & 0 deletions parts/karen_castillo/d4w9pal.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
> How can Karen handle hyperspace?

By thinking in multiple dimensions. Did you really think I did not know who would respond, and exactly when to post my conversation to entice that user.

Now their gift of sight can be expressed here for others.

6 changes: 6 additions & 0 deletions parts/karen_castillo/d4w9rma.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<div class="md"><blockquote>
<p>So yes, I am a random guy with nightmares and an interest in the multiverse.</p>
</blockquote>

<p>You are not some random guy. And your nightmares are a reality that others live. </p>
</div>
Loading

0 comments on commit 522e286

Please sign in to comment.