Skip to content

Instantly share code, notes, and snippets.

View thauska's full-sized avatar
:octocat:
Focusing

Thayana Correa Mamore thauska

:octocat:
Focusing
View GitHub Profile
@thauska
thauska / WebGL-WebGPU-frameworks-libraries.md
Created January 13, 2022 05:46 — forked from dmnsgn/WebGL-WebGPU-frameworks-libraries.md
A collection of WebGL and WebGPU frameworks and libraries

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.

Engines and libraries

  • three.js: JavaScript 3D library
  • stack.gl: an open software ecosystem for WebGL, built on top of browserify and npm.
  • PixiJS: Super fast HTML 5 2D rendering engine that uses webGL with canvas fallback
  • Pex: Pex is a javascript 3d library / engine allowing for seamless development between Plask and WebGL in the browser.
  • Babylon.js: a complete JavaScript framework for building 3D games with HTML 5 and WebGL
  • Filament: Filament is a real-time physically based rendering engine for Android, iOS, Windows, Linux, macOS and WASM/WebGL
  • ClayGL: A WebGL graphic library
@thauska
thauska / git.md
Last active August 5, 2020 21:15 — forked from leocomelli/git.md
Lista de comandos úteis do GIT

GIT

Estados

  • Modificado (modified);
  • Preparado (staged/index)
  • Consolidado (comitted);

Ajuda

# Instalações Padrões para Linux
## Aplicado ao Linux Mint
* Instalar alguns pacotes necessários
```bash
sudo apt-get -y install sudo vim vim-scripts unzip zip p7zip-full htop iotop wget lynx curl locate ssh nano build-essential software-properties-common
```
@thauska
thauska / eslintrc.json
Last active February 21, 2020 19:28
Configuração vscode
{
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"node": true
},
"parserOptions": {
"ecmaFeatures": {
"jsx": true
@thauska
thauska / vue.json
Last active September 22, 2019 02:15
Code Snippets para trazer de volta o comando scaffold do Vue no VS Code. Para usar, ir em Preference > User Snippets, busque por vue e cole este código nele.
{
"bring back the scaffold to vue files": {
"prefix": "scaffold",
"body": [
"<template>",
" ",
"</template>",
"",
"<script>",
"export default {",