Skip to content

Instantly share code, notes, and snippets.

View JourneyToSilius's full-sized avatar
🎱
Focusing

JourneyToSilius

🎱
Focusing
View GitHub Profile
@khornberg
khornberg / encode_decode_dictionary.py
Created August 25, 2017 12:39
python 3 base64 encode dict
"""
Given a dictionary, transform it to a string. Then byte encode that string. Then base64 encode it and since this will go
on a url, use the urlsafe version. Then decode the byte string so that it can be else where.
"""
data = base64.urlsafe_b64encode(json.dumps({'a': 123}).encode()).decode()
# And the decode is just as simple...
data = json.loads(base64.urlsafe_b64decode(query_param.encode()).decode())
# Byte encode the string, base64 decode that, then byte decode, finally transform it to a dictionary
@jacobjoaquin
jacobjoaquin / markov_experiment_2.csd
Created July 29, 2012 01:10
Markov Experiment 2 (Original Csound Edition)
Markov Experiment II
Jacob Joaquin
July 6, 2010
jacobjoaquin@gmail.com
csoundblog.com
<CsoundSynthesizer>
<CsInstruments>
sr = 44100
kr = 44100