Skip to content

Instantly share code, notes, and snippets.

View gregsabo's full-sized avatar

Greg Sabo gregsabo

View GitHub Profile
@gregsabo
gregsabo / shortener_5.py
Created March 28, 2014 17:38
URL Shortener Iteration 5
import md5
import base64
import random
from flask import Flask
from flask import request, redirect
import redis
app = Flask(__name__)
# DB
@gregsabo
gregsabo / output.py
Created April 18, 2014 03:11
Example typist output
def we_coumarouna(new_replevy, these_superbeloved, long_trogue):
for where_ebenales in (own_authenticity() and "as_suspiratious"):
for menopoma in platformer():
us_procambial = "get_reweigher"
if good_draftsman:
well_fernando()
else:
mushru()
churchyard = phosphatemia()
preventorium()
@gregsabo
gregsabo / gist:98312ccdd8eb7d202429935681ea12f9
Created January 16, 2017 18:56
Top 5k Words Appearing in Lyrics
This file has been truncated, but you can view the full file.
re it are kiss mind it knife bout die hurt hair ever going not leave granted from baby see into and in dies hoping for girl stunting we home down just a too mist bird but tell house well wide bet think but be tell day funny will were caught live follow stick we to going testify know trust climb playing in looking would raise tell from evil silk wait hand fields drinking gat my why crank burns bomb hey see want shapes friend want pain chorus what talk or chosen down away smash and that us voice no right your order that x my lost until thought split appear leave melody hearing going his makes something not look nose every searching attention little talking of it instead world put the straight on reigns cards woman fallen lots for by you so was thoughts death talk face that let age when bound you settled car through had try had should nowhere because in my hurt quite man remain on am into time ball your there scarred softly cloud i feel what just flow cash love i feel our after shat help green fingers one play m
@gregsabo
gregsabo / AudioKitCheatSheet.markdown
Last active June 27, 2021 22:03
AudioKit Cheat Sheet

Play a sine wave.

import AudioKit

let osc = AKOscillator()
osc.frequency = 440.0
osc.start()
AudioKit.output = osc
AudioKit.start()