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
| sudo update-alternatives --install "/usr/bin/java" "java" "/home/vs/.jdks/openjdk-17/bin/java" 1 | |
| sudo update-alternatives --install "/usr/bin/javac" "javac" "/home/vs/.jdks/openjdk-17/bin/javac" 1 | |
| sudo update-alternatives --config java |
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
| /* original idea from: https://stackoverflow.com/a/14282391 | |
| by https://stackoverflow.com/users/405017/phrogz */ | |
| var percentageChangePerTick = 0.01; | |
| var drawFPS = 60; | |
| var paths = document.querySelectorAll('path.animatable'); | |
| var timer; | |
| function startDrawingPath(){ |