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
var personSelector = "span[data-cvoc-protocol='localcontexts']"; | |
var projectInputSelector = "input[data-cvoc-protocol='localcontexts']"; | |
$(document).ready(function() { | |
// expandPeople(); | |
// updateProjectInputs(); | |
helloWorld(); | |
}); | |
function helloWorld() { |
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
import json | |
from pathlib import Path | |
from typing import Optional, Union | |
import numpy as np | |
import pandas as pd | |
from frictionless import extract | |
import matplotlib.pyplot as plt | |
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
Aren't gists great! |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Noise</title> | |
</head> | |
<body> | |
<button id="resume_button">resume</button> | |
<script> | |
let context = new AudioContext(); |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
// Processing 3 | |
// Inspired by, and created in support of: | |
// "Drawing from noise, and then making animated loopy GIFs from there" by Etienne Jacob (@n_disorder) | |
// https://necessarydisorder.wordpress.com/2017/11/15/drawing-from-noise-and-then-making-animated-loopy-gifs-from-there/ | |
// video: http://raminsp5vs.tumblr.com/post/168053324117/glowing-climpy-blob-with-opensimplexnoise | |
OpenSimplexNoise noise = new OpenSimplexNoise(); | |
void setup() { | |
size(600, 600); |