Basically, this takes a MIDI input file (I just googled and grabbed one of Maroon 5's "Animal" – I know, I know) and generates a WAV file.
NOTE: This is the slowest midi rendering program I have ever seen!
Dependencies:
- Pydub (pydub.com)
| After installing it http://sourceforge.net/projects/meld-installer/ | |
| I had to tell git where it was: | |
| git config --global merge.tool meld | |
| git config --global diff.tool meld | |
| git config --global mergetool.meld.path “C:\Program Files (x86)\Meld\meld\meld.exe” | |
| And that seems to work. Both merging and diffing with “git difftool” or “git mergetool” |
Basically, this takes a MIDI input file (I just googled and grabbed one of Maroon 5's "Animal" – I know, I know) and generates a WAV file.
NOTE: This is the slowest midi rendering program I have ever seen!
Dependencies:
Once in a while, you may need to cleanup resources (containers, volumes, images, networks) ...
// see: https://github.com/chadoe/docker-cleanup-volumes
$ docker volume rm $(docker volume ls -qf dangling=true)
$ docker volume ls -qf dangling=true | xargs -r docker volume rm
| # coding: utf-8 | |
| # pip install speedtest-cli | |
| import subprocess | |
| import time | |
| def main(): | |
| c = 0 |
| FROM node:7 | |
| ENV REFRESHED_AT 2017-06-26 | |
| RUN yarn global add @angular/cli | |
| RUN ng set --global packageManager=yarn | |
| COPY . /build | |
| WORKDIR /build |
| Epochs:20 | |
| -- | |
| Examples labeled as 0 classified by model as 0: 12 times | |
| Examples labeled as 0 classified by model as 2: 7 times | |
| Examples labeled as 1 classified by model as 1: 17 times | |
| Examples labeled as 1 classified by model as 2: 2 times | |
| Examples labeled as 2 classified by model as 2: 29 times | |
| Examples labeled as 2 classified by model as 4: 4 times | |
| Examples labeled as 3 classified by model as 3: 1 times | |
| Examples labeled as 4 classified by model as 1: 1 times |
| # ======================================================================= | |
| # === Description ...: Integrate DRF with VueTable-2 | |
| # === Author ........: Mike Boiko | |
| # ======================================================================= | |
| # If you want to integrate Django Rest Pagination with VueTable, you must | |
| # change the pagination as shown below: | |
| # Then, in your views.py file, the pagination_class must be set to CustomPagination | |
| # See example below: | |
| # from rest_framework import pagination |
| Textit : | |
| * RapidSMS is framework custom SMS systems. | |
| UNICEF Innovation has been working with SMS systems since 2007, | |
| when it created an open source platform called RapidSMS | |
| * Add your own logic & you can trigger actions, such as sending an SMS, email or even calling an external API |