Published
Edited
Feb 16, 2021
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
md`Convinced, try the existing solutions

- https://hubs.mozilla.com
- https://gather.town
- https://map.highfidelity.com
- https://rambly.app
- https://skittish.com/
`
Insert cell
startPaused = true
Insert cell
endPaused = true
Insert cell
bandWidth = waveformLength/audioExample.length
Insert cell
audioExample = Array(words.length*samplePerLetter).fill(0).map( _ => Math.random()+silenceVolume )
Insert cell
samplePerLetter = 10
Insert cell
waveformLength = 400
Insert cell
silenceVolume = 0.01
Insert cell
addSilences = {
for (var i in words) {
if (!words[i].match(/[a-z]/i))
for (var x=0;x<samplePerLetter;x++){
audioExample[i*samplePerLetter+x] = silenceVolume
}
}
}
Insert cell
words = "What is spatial sound?"
Insert cell
Insert cell
Insert cell
md`## Own utils`
Insert cell
perceivedWordViaDistance = (words, distance) => {
// no coherence so when called repetitively causes flickering (fine here)
// should also include the minimum distance (here 200)
var result = ""
for (let c of words)
Math.random()<distance/200 ? result+=c : result+="?" //somehow couldn't use map
return result
}
Insert cell
md`## External utils`
Insert cell
p = muzli[randInt(muzli.length)]
Insert cell
displayPalettes(p)
Insert cell
colors = [ "#e0f0ea", "#95adbe", "#574f7d", "#503a65", "#3c2a4d" ]
Insert cell
md`## Imports`
Insert cell
import {randInt, shuffle} from '@makio135/utilities'
Insert cell
import {muzli, getRandomPalette, displayPalettes} from '@makio135/give-me-colors'
Insert cell
import {p5} from '@makio135/p5'
Insert cell
md`References to explore

- http://www.xavigimenez.net/360giving-grantmaking-themes/ based on https://en.wikipedia.org/wiki/Topic_model
- https://www.forbes.com/sites/marksparrow/2020/08/07/why-do-we-suffer-from-zoom-fatigue-its-all-about-the-sound/
`
Insert cell
Type JavaScript, then Shift-Enter. Ctrl-space for more options. Arrow ↑/↓ to switch modes.

Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more