Last active
December 5, 2022 20:34
-
-
Save exu3/626ea252bdff02584cb94a218a646a06 to your computer and use it in GitHub Desktop.
Grow your sage seeds!
This file contains 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
// instructions to grow your new sage seeds. Happy Sprigging! | |
// post a picture of your sage plant in #sage on Slack! | |
const container = new Container({ diameter: '6 inches', location: 'indoors' }); | |
const soil = require('soil'); | |
const seeds = require('seeds'); | |
const sun = require('sun'); | |
const dailyWater = 100; // in milliliters | |
async function grow(soil, container, seeds, sun, dailyWater) { | |
pokeHole(soil, container, { holeDiameter: 1.5, holeDepth: 1.5 }) | |
.placeSeeds({ numberPerHole: 4 }) | |
.lightSoilCover(seeds); | |
waterPlant(dailyWater); | |
moveToLight(sun); | |
await sprouting(); | |
return sagePlant; | |
} |
Nice!
tehe swaggy B)
Awesome! Thanks for sending them to keep me busy until my sprig arrives!
this was such a cute idea to send before the sprigs are sent, honestly i cant believe all of this, thanks so much :D !
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
YES