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
other pane cx o | |
close pane cx 0 | |
go to end of line ce | |
go to start of line ca | |
go to end of file m> | |
go to start of file m< | |
go to forward word mf | |
go to back word mb |
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
import axios from 'axios' | |
import cache from '../utils/cache' | |
export function get(slug) { | |
const url = `${process.env.GILBERT_URL}/api/v1/content/pages/${slug}` | |
const call = axios.get(url) | |
return cache({ | |
key: slug, | |
exp: 120, |
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
{ | |
"presets": ["@babel/preset-react", "@babel/preset-env"] | |
} |
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
<html> | |
<head> | |
<script defer src=https://cdn.jsdelivr.net/npm/p5></script> | |
<script defer src=https://cdn.jsdelivr.net/npm/p5/lib/addons/p5.dom.min.js></script> | |
<script defer src=https://cdn.jsdelivr.net/npm/p5/lib/addons/p5.sound.min.js></script> | |
<script src="js/lib/toxiclibs.js"></script> | |
<script src="vector.js"></script> | |
<!-- Select which file to run --> |
OlderNewer