VS Code debug typescript
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
| function main() { | |
| var size = 10; | |
| var width = getDrawingWidth() / size; | |
| var height = getDrawingHeight() / size; | |
| setBackgroundColor(white); | |
| while (true) { | |
| setColor(black); | |
| for (var x = 0; x < width; x++) { |
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
| var cellSize = 4; | |
| var cellsX = getDrawingWidth() / cellSize; | |
| var cellsY = getDrawingHeight() / cellSize; | |
| var gen = []; | |
| var genNext = []; | |
| var g = 0; | |
| var frames = 100; | |
| function main() { | |
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
| https://3dprint.nih.gov/sites/default/files/models/additional_3d_model_files/IC3D%20Polysheet%20V2_19.64_0.dxf |
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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Title</title> | |
| <style> | |
| /* http://meyerweb.com/eric/tools/css/reset/ | |
| v2.0 | 20110126 | |
| License: none (public domain) | |
| */ |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Pi-ano</title> | |
| <script type="text/javascript" src="https://unpkg.com/@tonejs/midi"></script> | |
| <script type="text/javascript" src="https://unpkg.com/[email protected]"></script> | |
| <script type="text/javascript" src="Piano.js"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/@tonaljs/tonal/browser/tonal.min.js"></script> | |
| <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0"/> | |
| </head> |
OlderNewer