Artist | Track Name |
---|---|
Orkest De Volharding | Hootenanny |
Claude Le Jeune | Motet Benedicite Dominum |
Luigi Dallapiccola | Frammenti sinfonici: Danza Magica - |
MUNA | Winterbreak |
William Byrd | Christe, qui lux es et dies |
Peter Maxwell Davies | Veni Sancte Spiritus (arr. of J. Dunstable Veni Sancte Spiritus): Veni creator spiritus |
Peter Maxwell Davies | Veni Sancte Spiritus (arr. of J. Dunstable Veni Sancte Spiritus): Veni sancte spiritus |
Orkest De Volharding | Dance Works: Part 1 |
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
import org.jsfml.audio.*; | |
import org.jsfml.window.event.*; | |
import org.jsfml.window.*; | |
import org.jsfml.system.*; | |
import org.jsfml.internal.*; | |
import org.jsfml.graphics.*; | |
import java.util.*; | |
import java.text.*; | |
import java.nio.file.*; |
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
mod12 =: 12 & | | |
matrix =. monad : 0 | |
m =. mod12 y -/ (y - (0 { y)) | |
) | |
pcs =: i. 12 | |
shuf =: {~ ?~@# | |
newrow =: shuf pcs |
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
import collections | |
import itertools | |
def optionset_generator(optionset_schema): | |
iterables = {} | |
for key, value in optionset_schema.items(): | |
if isinstance(value, collections.Iterable): | |
iterables[key] = value | |
else: |
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"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<title>Spotify API - Implicit Grant Flow</title> | |
</head> |
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
do | |
echo "Doing $pid..." | |
xdotool key --window $pid KP_1+KP_0+KP_3+KP_Multiply | |
done |
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
for pid in $(xdotool search "") | |
do | |
echo "Doing $pid..." | |
xdotool key --window $pid KP_1+KP_0+KP_3+KP_Multiply | |
done |