This focuses on generating the certificates for loading local virtual hosts hosted on your computer, for development only.
Do not use self-signed certificates in production ! For online certificates, use Let's Encrypt instead (tutorial).
| { | |
| "arrowParens": "avoid", | |
| "bracketSpacing": false, | |
| "jsxBracketSameLine": false, | |
| "printWidth": 80, | |
| "proseWrap": "always", | |
| "semi": false, | |
| "singleQuote": true, | |
| "tabWidth": 2, | |
| "trailingComma": "all", |
This focuses on generating the certificates for loading local virtual hosts hosted on your computer, for development only.
Do not use self-signed certificates in production ! For online certificates, use Let's Encrypt instead (tutorial).
| var canvas = document.createElement('canvas'); | |
| var gl; | |
| var debugInfo; | |
| var vendor; | |
| var renderer; | |
| try { | |
| gl = canvas.getContext('webgl') || canvas.getContext('experimental-webgl'); | |
| } catch (e) { | |
| } |
| { | |
| "bundleId" : "com.knollsoft.Rectangle", | |
| "defaults" : { | |
| "allowAnyShortcut" : { | |
| "bool" : false | |
| }, | |
| "almostMaximizeHeight" : { | |
| "float" : 0 | |
| }, | |
| "almostMaximizeWidth" : { |
| zsh -i -x -c : 2>&1 | grep -w alias |
Please consider using http://lygia.xyz instead of copy/pasting this functions. It expand suport for voronoi, voronoise, fbm, noise, worley, noise, derivatives and much more, through simple file dependencies. Take a look to https://github.com/patriciogonzalezvivo/lygia/tree/main/generative
float rand(float n){return fract(sin(n) * 43758.5453123);}
float noise(float p){
float fl = floor(p);
float fc = fract(p);