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
{ | |
"firstName": "Fiesteban" | |
} |
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 clone(val) { | |
return JSON.parse(JSON.stringify(val)) | |
} | |
async function createScribble(node) { | |
let t = await node.exportAsync() | |
let newImage = figma.createImage(t) | |
let f = figma.createFrame() | |
f.fills = [] | |
let rect = figma.createRectangle() | |
f.x = node.x |
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
www.youtube.com##[page-subtype="home"] | |
www.youtube.com##ytd-watch-next-secondary-results-renderer |
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
[mediaTypes] | |
[mediaTypes."text/gemini"] | |
suffixes = ["gmi"] | |
[outputFormats] | |
[outputFormats.Gemini] | |
name = "gemini" | |
mediaType = "text/gemini" | |
basename = "index" | |
isPlainText = true |
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
$spacing: 1rem; | |
.stack { | |
align-items: flex-start; | |
display: flex; | |
flex-wrap: wrap; | |
margin-left: -$spacing; | |
margin-top: -$spacing; | |
> * { |
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
{{ with (default ":black_circle:" .Params.favicon) }} | |
<link rel="icon" href="data:image/svg+xml,<svg | |
xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text | |
y=%22.9em%22 font-size=%2290%22> {{ emojify . }} </text></svg>"> | |
{{ end }} |
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
<span> | |
{{ if .IsHome }} | |
<a href="/">Home</a> | |
{{ else }} | |
{{ partial "crumbs" .Parent }} | |
/ <a href="{{ .RelPermalink }}">{{ .Title }}</a> | |
{{ end }} | |
</span> |
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
# serving folder | |
serve() { | |
if [[ $# -gt 0 ]]; then | |
(sleep 1 && open http://localhost:$1) & python3 -m http.server $1 | |
else | |
(sleep 1 && open http://localhost:8181) & python3 -m http.server 8181 | |
fi | |
} |
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
Attack/Decay/Sustain/Release: self-explanatory | |
Three-band EQ: For isolating Hi/Mid/Lo (This could be high/lowpass filter, alternatively) | |
Alter pitch: For tuning samples | |
Pitch bend: Change the pitch throughout length of the sample (for bass drum dips/rises, eg) | |
Shaper: Some sort of distortion filter to emphasize certain frequencies and get a little fuzz or character |
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 src="clmtrackr.js"></script> | |
<script src="model_pca_20_svm.js"></script> | |
<script src="p5.js"></script> | |
<script src="p5.dom.js"></script> | |
<script> | |
var ctracker; |
NewerOlder