- q
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
def printIfLower(i): | |
s = chr(i) | |
if s.islower(): | |
if s is not None: | |
print(s) | |
for x in range(1, 125251): | |
printIfLower(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
$ docker container rm $(docker container ls -aq) && docker image prune -af |
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
wget --recursive --quiet --level=0 -U "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.157 Safari/537.36" --directory-prefix="collection/" --follow-tags=a -H semi.technology |
These notes are pretty much the same steps as the two extensions list, it's just that I had to collate them together because neither seems to list it fully in the proper order.
-
Install Synthwave ’84/Synthwave + Fluoromachine theme on VS Code (I used the Fluoromachine one)
-
Install Custom CSS and JS Loader
-
Command + Shift + P to open command palette > "Preferences: Open settings (JSON)"
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
// takes an array of vectors and outputs a single mean vector | |
function meanVector(inputVectors) { | |
// sum up each dimension in a single “sum” vector | |
sums = new Array(dimensions(inputVectors)) | |
for i = 0; i < dimensions(inputVectors); i ++ { | |
for j = 0; j < inputVectors.length(); j ++ { | |
sums[i] += inputVectors[j][i] | |
} | |
} |
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
// https://pages.mtu.edu/~suits/notefreqs.html | |
// https://pages.mtu.edu/~suits/NoteFreqCalcs.html | |
// create web audio api context | |
var audioCtx = new(window.AudioContext || window.webkitAudioContext)(); | |
// microtonal division | |
var microtonalDiv = 24; | |
var c4 = 261.6256; | |
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
{ | |
Get { | |
Publication { | |
name | |
_additional { | |
vector | |
} | |
} | |
} | |
} |
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
[ | |
{ | |
"class": "Document", | |
"properties": [ | |
{ | |
"name": "title", | |
"dataType": [ | |
"string" | |
] | |
}, |
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
{ | |
Get { | |
Paragraph ( | |
limit: 3 # show the first three results | |
nearText: { | |
concepts: ["machines to make pasta"] # the semantic query | |
certainty: 0.6 # between 0.0 and 1.0, the higher the certainty the more the document should match the query | |
}){ | |
inDocument { | |
... on Document { |