This file contains 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
;===== machine: P1S ======================== | |
; modified gcode from Bambu Studio | |
; | |
; original credit: @eukatree | |
M204 S9000 ; set starting acceleration | |
G17 ; set CNC workspace plane | |
G2 Z{max_layer_z + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift | |
G1 Z{max_layer_z + 3.0} F1200 ; vertical lift |
This file contains 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 -e | |
AWS_ACCOUNT= | |
AWS_REGION=us-east-1 | |
ECR_URL=https://${AWS_ACCOUNT}.dkr.ecr.${AWS_REGION}.amazonaws.com | |
# On Mac, replace "base64 -d" with "base64 -D". | |
aws ecr get-authorization-token --query authorizationData[].authorizationToken --output text | base64 -d | cut -d: -f2 \ | |
| docker login -u AWS --password-stdin ${ECR_URL} \ | |
|| echo "Failed to authenticate to ECR." && exit 1 |
This file contains 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
export INPUTRC=~/.inputrc |
This file contains 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
application { | |
name = "booker" | |
type = "python" | |
dependency { | |
source = "github.com/hashicorp/otto/examples/postgresql" | |
} | |
} | |
customization { |
This file contains 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
(?<!\{)\{\{(?!\{|--)(.+)(?<!\}|--)\}\}(?!}) |