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
| .module { | |
| // extends | |
| // includes | |
| // element styles | |
| // media queries | |
| // element states |
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
| /* | |
| * Author: Nathanael Smith | |
| * Description: This module stores functions in a run queue until they're needed to be executed. | |
| */ | |
| var ExeQue = (function(){ | |
| function store (location, func) { | |
| var queue = getQueue(location).concat(func); | |
| if (location instanceof jQuery) { |
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
| var prepend = concatStrings('prependWith-'), | |
| append = concatStrings('-appendWith', true); | |
| console.log(prepend('baseString')); // outputs prependWith-baseString | |
| console.log(append('baseString')); // outputs baseString-appendWith | |
| function concatStrings (classFragmentA, reverse) { | |
| return function (classFragmentB) { | |
| var fragments = [classFragmentA, classFragmentB]; | |
| return (reverse) ? fragments.reverse().join('') : fragments.join(''); |
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 throttle(set, limit, threshold, callback) { | |
| let timer = 0; | |
| window.setInterval(() => { | |
| timer++; | |
| }, threshold); | |
| let i = 0; | |
| let requestChunk = timer; | |
| let requestsSent = 0; | |
| while (i < set.length) { | |
| // requests within limit |
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
| export default (routes) => { | |
| return { | |
| fire (func,funcname, args){ | |
| funcname = (funcname === undefined) ? 'init' : funcname; | |
| if (func !== '' && routes[func] && typeof routes[func][funcname] == 'function'){ | |
| routes[func][funcname](args); | |
| } | |
| }, | |
| load() { | |
| var bodyId = document.body.id; |
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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Linktree Style Page</title> | |
| <style> | |
| body { | |
| margin: 0; | |
| padding: 0; |
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
| Bread Type | Bake Temp (°F) | Bake Time Per Side (min) | Final Spritz (Y/N) | Scoring | Deck Restrictions | Capacity Per Deck | Sheets Per Deck | Capacity Per Sheet | Notes | |
|---|---|---|---|---|---|---|---|---|---|---|
| Pan Loaf (Miche) | 350-400 | 13 | Y | None | Top 6 Decks | 12 | 2 | 6 | Standard pan loaf; miche variant | |
| Pan Loaf (Sourdough) | 350-400 | 13 | Y | None | Top 6 Decks | 12 | 2 | 6 | Standard pan loaf; sourdough variant | |
| Hoagies | 400-450 | 9 | Y | None | All 9 Decks | 18 | 2 | 9 | Only bottom 3 decks for hottest baking, quick turnaround | |
| Sandoh Round | 400-450 | 9 | Y | None | Top 6 Decks | 24 | 2 | 12 | Round sandwich rolls | |
| Miche Boule | 400-450 | 18 | Y | Crescent | Top 6 Decks | 8 | NA | 8 | Large round miche; scored with single crescent for ear | |
| Seeded Boule | 400-450 | 18 | Y | Cross | Top 6 Decks | 8 | NA | 8 | Same size as miche boule; scored with cross | |
| Rustique | 400-450 | 15 | N | None | Top 6 Decks | 8 | NA | 8 | Rustic-style bread; no final spritz | |
| Baguette | 400-450 | 15 | Y | 5 Diagonals | Top 6 Decks | 8 | NA | 8 | Standard long baguette | |
| Poppy Baguette | 400-450 | 15 | Y | 5 Diagonals | Top 6 Decks | 8 | NA | 8 | Same as baguette but with poppy seeds |
OlderNewer