This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| :: StoryTitle | |
| Lock and Key: Variable in SugarCube | |
| :: Start | |
| <<set $key to false>> | |
| <<include "LocationCheck">> | |
| :: Front-Room [sticky-card req-not-passage-Front-Room] | |
| <<include "LocationCheck">> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (function(storyContent) { | |
| var story = new inkjs.Story(storyContent); | |
| var storyContainer = document.querySelectorAll('#story')[0]; | |
| function showAfter(delay, el) { | |
| setTimeout(function() { el.classList.add("show") }, delay); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| :: Some Passage | |
| This will show at the start. | |
| @@.hide;This will show after you click or press space/enter.@@ | |
| @@.hide;.nocontinue;This will show after you advance again, but will <em>not</em> have the continue marker.@@ | |
| <span class="hide">HTML tags work fine too, but the other notation is shorter.</span> | |
- Thousand Year Old Vampire $15.00
- Alone Among the Stars PWYW
- Alone at the Table (list of adaptations)
- twitter bot
@among_stars_
- Eidolon $15.00
- Inscrutable Cities $9.00
Put into your source directory. Run with node bundle-scripts.js on the command line. You can probably put the command into a .bat file (Windows) or .sh file (Mac OSX, Linux) so you can just double-click it to build?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "SWRAOER": "0", | |
| "WUPB": "1", | |
| "TWO": "2", | |
| "THRAOE": "3", | |
| "TPOUR": "4", | |
| "TPAOEUFB": "5", | |
| "SEUBGS": "6", | |
| "SAEFB": "7", | |
| "AEUGT": "8", |
Do you have reading recommendations about the science and ecology of farming? Where can a beginner explore these interdependencies you've mentioned?
For vegetable gardening, Eliot Coleman's [New Organic Grower][] is a classic talking about how to design and run a small vegetable operation. He's insatiably curious and he's trying to give you the tools you need to make your own decisions for your own situation rather than giving you a concrete recipe that may quickly become outdated.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // --------------------------------------------------------------------- | |
| // N: (Node) Add attributes, properties, and children to a DOM node | |
| // (possibly creating it first). | |
| // args: | |
| // target: an Element or a tag name (e.g. "div") | |
| // then optional in any order (type determines function) | |
| // Element: child | |
| // string: text node child | |
| // array: values are treated as args | |
| // null/undefined: ignored |

