A non-exhaustive list of WebGL and WebGPU frameworks and libraries. It is mostly for learning purposes as some of the libraries listed are wip/outdated/not maintained anymore.
| Name | Stars | Last Commit | Description |
|---|---|---|---|
| three.js | ![GitHub |
A non-exhaustive list of WebGL and WebGPU frameworks and libraries. It is mostly for learning purposes as some of the libraries listed are wip/outdated/not maintained anymore.
| Name | Stars | Last Commit | Description |
|---|---|---|---|
| three.js | ![GitHub |
| <script type="text/javascript"> | |
| var gesturesSetUp = false; | |
| var ua = navigator.userAgent.toLowerCase(); | |
| var isAndroid = ua.indexOf("android") > -1; | |
| document.addEventListener('textlayerrendered', function (e) { | |
| if (gesturesSetUp || e.detail.pageNumber !== PDFViewerApplication.page) { | |
| return; | |
| } |
| """ | |
| ldr.py | |
| Display analog data from Arduino using Python (matplotlib) | |
| Author: Mahesh Venkitachalam | |
| Website: electronut.in | |
| """ | |
| import sys, serial, argparse |
| var scales = { | |
| 'natural major': [0,2,4,5,7,9,11,12], | |
| 'ionian': [0,2,4,5,7,9,11,12], | |
| 'major': [0,2,4,5,7,9,11,12], | |
| 'chromatic': [0,1,2,3,4,5,6,7,8,9,10,11,12], | |
| 'spanish 8 tone': [0,1,3,4,5,6,8,10,12], | |
| 'flamenco': [0,1,3,4,5,7,8,10,12], | |
| 'symmetrical': [0,1,3,4,6,7,9,10,12], | |
| 'inverted diminished': [0,1,3,4,6,7,9,10,12], | |
| 'diminished': [0,2,3,5,6,8,9,11,12], |
Sometimes you want to have a subdirectory on the master branch be the root directory of a repository’s gh-pages branch. This is useful for things like sites developed with Yeoman, or if you have a Jekyll site contained in the master branch alongside the rest of your code.
For the sake of this example, let’s pretend the subfolder containing your site is named dist.
Remove the dist directory from the project’s .gitignore file (it’s ignored by default by Yeoman).
| #!/usr/bin/env ruby | |
| if ARGV.size != 2 | |
| puts "Usage: #{$0} <from_language> <to_language>" | |
| exit -1 | |
| end | |
| require 'rubygems' | |
| require 'ya2yaml' # this gem is needed for this to work! | |
| require 'yaml' |
| from __future__ import division | |
| from numpy.fft import rfft | |
| from numpy import argmax, mean, diff, log, nonzero | |
| from scipy.signal import blackmanharris, correlate | |
| from time import time | |
| import sys | |
| try: | |
| import soundfile as sf | |
| except ImportError: | |
| from scikits.audiolab import flacread |