Skip to content

Instantly share code, notes, and snippets.

Site hosted by Angelfire.com: Build your free website today!
March 3-4, 2001
It took us three weeks before we got back out to Mystery Cave again. Our attitudes have changed a bit since we first started the project. In the beginning we looked at the whole thing as a fun adventure. Since the last trip out we found ourselves taking a more serious approach. On the drive out this time our conversation was a little more subdued than before. We hadn't talked much since the last trip (not for any reason but scheduling conflicts). Instead of discussing ways of getting through the passage, we found ourselves talking about rational explanations for what had happened. Neither one of us had any ideas that would explain the unusual occurrences we experienced on the last trip. We were amused to find out that neither one of us had talked much about the last trip to other people. That is a complete reversal from the other trips. It has been fun to report to friends and family about our progress. It is always fun to tell
Site hosted by Angelfire.com: Build your free website today!
April 7, 2001
Prior to going back out to Mystery Cave again we spent a lot of time preparing. We made a squeeze box, which is a wooden box the opening of which can be adjusted in size. We could then crawl through the opening and measure to see how tight of a squeeze we could fit through. From that we were able to determine that I need about 8 inches in height to get through the smallest portion of Floyd's Tomb. That meant we would have to scrape out about an inch from the floor of the passage. We also learned that the best position I would need to get through the passage would be on my stomach, with my arms by my side. And of course, my head would be turned one way or the other. That position allowed my shoulder blades to drop to their lowest point. In order to move I would push forward or backward with my toes. It sounds difficult, but felt adequate. Later it proved to work sufficiently.
The second thing we did to prepare was to construct t
Site hosted by Angelfire.com: Build your free website today!
April 14, 2001
Only a couple days elapsed before B found someone who wanted to explore the passage with us. B told me he talked to a few other people who couldn't make it because of scheduling conflicts. He said they really grilled him for information about the cave and about the passage. He would not tell them which cave it was to ensure that we explored it to our satisfaction before we made it known to the public. Even the guy who ended up going with us did not know which cave until we were very close to it. And he was sworn to secrecy that he would not reveal the location of the cave to anyone on the planet. I won't identify him by name, so I will just refer to him as "Joe". Joe, B and I set out early in the morning to make sure we could spend all the time we wanted in the new passage. When we got to the cave we were able to rig up and descend rather quickly. It helps when you don't have to haul half a hardware store down into the cave. Joe
Site hosted by Angelfire.com: Build your free website today!
April 28, 2001
In this journal entry I discussed briefly the feelings B and I had at this point. I would like to elaborate on those feelings and set the mood for this part of my journal. I hope I can successfully convey our exact thoughts and feelings as we contemplated our next move. If not I'm afraid we will appear to the average reader as being ignorant, naive, or downright foolish.
This cave represented to us the culmination of weeks of hard work, complete with an array of emotions. From fatigue to fear. Anticipation to pain. From frustration to glory. To us we were not standing on the brink of possible destruction, but rather honoring an unspoken commitment. Much like a parent of a wayward child. We were not about to abandon our "child" out of fear of the unknown. Like it or not this cave had become a part of us. And now we must see this adventure to its fruition. Additionally, verbose explanations aside, we were being eaten alive with
Site hosted by Angelfire.com: Build your free website today!
5/19/01
It has been three weeks since our last visit to the cave. I want to update everyone as to my condition, my plans for the cave, and the events of the past few weeks. I apologize for not returning your phone calls. I have been getting all of your messages, I just haven't felt up to calling back. Steve and Marc, thanks for your words of encouragement on my answering machine. I know you two are sincerely concerned for me. You are awesome friends. Marc, I know you stopped by the house a few times, and I'm sorry I never answered the door. It really helped me just knowing you dropped by. Sis, I can hear the worry in your voice. I'm o.k. Don't worry about me. Just take care of those nieces and nephews of mine.
I figure if I can get this site updated I can let everyone know at once about how I am doing. A lot has happened in the last three weeks, so I'll do my best to cover everything. I guess I should start where the last entry left off. It
<ReduxProvider>
<ActionNode>
<ReduxConnector>
<ActionNodeConnector />
</ReduxConnector>
</ActionNode>
</ReduxProvider>
ReduxProvider = createReduxProvider(store)
ActionNode = createActionNode(actions)
@attachActions((nodeActions) => {
return {
increment: nodeActions.increment
}
})
class ControlPanel extends Component {
// this.props.actions.increment()
}
Async ActionCreators
createMessage: dispatch => {
.../
}
Remotes
dispatch(createMessage(data))
...
case CREATE_MESSAGE:
@rt2zz
rt2zz / elmSideEffects.js
Last active August 29, 2015 14:27
Side Effects API's
// side effects are created by reducer, but executed by store
function reducer(state, action, createSideEffect){
if(action.type === 'SUBMIT_DATA'){
createSideEffect(({action, getState, dispatch}) => {
//.. do work
})
}
}
# Your snippets
#
# Atom snippets allow you to enter a simple prefix in the editor and hit tab to
# expand the prefix into a larger code block with templated values.
{
".source.js":
"Common Actions: require lodash":
prefix: "lodash"
body: "import _ from 'lodash'"