This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { createNoise3D } from 'simplex-noise'; | |
| // You will need an HTML with a `<cavas id="canvas" />` and `<span id='fps'>` and this ts file. | |
| // This script only uses speed and doesn't care about frame draw time delta. | |
| // Samples: | |
| // - https://www.youtube.com/watch?v=ApI1m78MvAQ | |
| // - https://www.youtube.com/watch?v=TPkWzFi1DrA | |
| // - https://www.youtube.com/shorts/g-l_s-GkMCw (this is my favorite) | |
| const config = { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| echo "For full list of well-known urls: https://en.wikipedia.org/wiki/Well-known_URI" | |
| scanBaseUri=$1 | |
| outputPath="./well-known-scans" | |
| if test -z "$scanBaseUri" | |
| then | |
| echo "You must provide param for domain/path scan" | |
| exit 0 | |
| else |
OlderNewer