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
| set -g prefix ` | |
| bind ` send-prefix | |
| bind - split-window | |
| bind \ split-window -h | |
| bind | split-window -h | |
| bind b setw synchronize-panes on | |
| bind B setw synchronize-panes off |
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
| #g810 led profile | |
| g logo 000096 | |
| g indicators ffffff | |
| g multimedia 009600 | |
| g fkeys ff00ff | |
| g modifiers ff0000 | |
| g arrows 009696 | |
| g numeric 00ffff | |
| g functions ffffff |
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
| //STL to OpenSCAD converter | |
| //This code will read an STL file and Generate an OpenSCAD file based on the content | |
| //it supports both ASCII and Binary STL files. | |
| //from https://www.thingiverse.com/thing:1383325 | |
| var reader; | |
| var progress = document.querySelector('.percent'); | |
| var vertices = []; | |
| var triangles = []; | |
| var modules = ''; |