This document assumes the domain of the application is example.com.
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
| * { | |
| margin: 0; | |
| padding: 0; | |
| box-sizing: border-box; | |
| } | |
| body { | |
| font-family: Arial, sans-serif; | |
| color: #333; | |
| max-width: 800px; | |
| margin: 0 auto; |
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
| ### | |
| # Update bed mesh (level bed) | |
| # Home all axis and level the bed. | |
| # | |
| # Slicer **Start GCode:** | |
| # ```gcode | |
| # G29 AREA_START="%MINX%,%MINY%" AREA_END="%MAXX%,%MAXY%" | |
| # ``` | |
| ### | |
| [gcode_macro G29] |
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
| /** | |
| * This is a cross-platform Node.js script to generate declaration (d.ts) typings for a JavaScript project located on GitHub. | |
| * To complete this task, a 'working' directory will be created in the same directory as this script. The script will then | |
| * clone the projects listed in the config.repositories array, compile them to only declaration files, | |
| * then use dts-bundle to generate a single module declaration. | |
| * | |
| * Requirements: | |
| * typescript | |
| * dts-bundle | |
| * git |