Skip to content

Instantly share code, notes, and snippets.

View anytizer's full-sized avatar

Bimal Poudel anytizer

  • Canada
View GitHub Profile
@mazbox
mazbox / MyLiveAudio-drum-machine.h
Created July 20, 2020 21:37
Example for making a drum machine with cppsketch
#include "LiveAudio.h"
#include <math.h>
#include <stdlib.h>
class MyLiveAudio : public LiveAudio {
public:
float frac(float f) {
return f - (int)f;
}
@rochacbruno
rochacbruno / App.md
Last active April 10, 2020 15:59 — forked from dunossauro/app_1.py
Flask merge route example
$ pip3 install flask
$ export FLASK_APP=manage.py

$ flask routes
$ flask run
$ flask shell