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 |
| # Download last official driver | |
| # (see here https://support.hp.com/de-de/drivers/selfservice/samsung-xpress-sl-m2070-laser-multifunction-printer-series/16450377) | |
| wget https://ftp.hp.com/pub/softlib/software13/printers/SS/SL-M4580FX/uld_V1.00.39_01.17.tar.gz | |
| # Unpack archive: | |
| tar -xf uld_V1.00.39_01.17.tar.gz | |
| # Move into driver folder: | |
| cd uld |
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 |
| # Fire this using gunicorn falcon_gevent_streaming | |
| # and head to 127.0.0.1:8000 in a browser. | |
| # Requirements: | |
| # pip install falcon gevent | |
| import falcon | |
| import gevent | |
| from gevent.queue import Queue |
| # /etc/rabbitmq/rabbitmq.config | |
| # | |
| # Follow the instructions on RabbitMQ website to create certificate authority and certificates - | |
| # | |
| # http://www.rabbitmq.com/ssl.html | |
| # | |
| [ | |
| {rabbit, [ | |
| {tcp_listeners,[{"127.0.0.1",5672}]}, |
| # -*- coding: utf-8 -*- | |
| """ | |
| Extremely fast Django test runner, based on the idea that your database schema | |
| and fixtures are changed much more seldom that your code and tests. All you | |
| need is to make sure that your "quickstart.sqlite" database file is always up | |
| to date. | |
| BEWARE: Don't run this test runner on production server. It assumes that you | |
| use only one database configured as "default", and its db engine is SQLite. | |
| Otherwise your tests can eat your data! |