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 | ![GitH |
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 | ![GitH |
| import types | |
| import cStringIO | |
| TYPE_NULL = '0' | |
| TYPE_NONE = 'N' | |
| TYPE_FALSE = 'F' | |
| TYPE_TRUE = 'T' | |
| TYPE_STOPITER = 'S' | |
| TYPE_ELLIPSIS = '.' | |
| TYPE_INT = 'i' |
| docker run \ | |
| --name {{printf "%q" .Name}} \ | |
| {{- with .HostConfig}} | |
| {{- if .Privileged}} | |
| --privileged \ | |
| {{- end}} | |
| {{- if .AutoRemove}} | |
| --rm \ | |
| {{- end}} | |
| {{- if .Runtime}} |
| #!/bin/bash | |
| if [ ! $(whoami) = 'root' ]; then | |
| echo "This script should be run as root." > /dev/stderr | |
| exit 1 | |
| fi | |
| spinner() | |
| { | |
| local pid=$! |
| # | |
| # Working with branches | |
| # | |
| # Get the current branch name (not so useful in itself, but used in | |
| # other aliases) | |
| branch-name = "!git rev-parse --abbrev-ref HEAD" | |
| # Push the current branch to the remote "origin", and set it to track | |
| # the upstream branch | |
| publish = "!git push -u origin $(git branch-name)" |
| package await | |
| import java.util.concurrent.Callable | |
| import java.util.concurrent.Executors | |
| object BlockingDemo extends App { | |
| val execSvc = Executors.newSingleThreadExecutor() | |
| val worker = new MeaningOfLife() |
| """Tool for profiling Cassandra query performance. | |
| Tests are run by profile() multiple times and the 'Read Latency' is | |
| extracted using node tool. | |
| Usage: | |
| #Create the schema using the cassandra-cli. | |
| create keyspace query |