Install PreReqs:
Setup Project:
- Create GIT Repo
- cd to repo
| ; WARNING!!!!! | |
| ; THis only works with prints that are below the level of the mini cross bars when the head is all the way at the bed. see https://www.icloud.com/photos/#0b7vfzKzxbK8bWF9dSPXntOYg | |
| ; USE AT YOUR OWN RISK!!! | |
| ; Shared under MIT License https://opensource.org/license/mit/ | |
| G1 Z100 F900 ;Move Z way up | |
| G1 E-1 F2100 ; retract | |
| G1 X178 Y178 F4200 ; park print head | |
| G4 ; waitaac | |
| M104 S0 ;Turn hotend off |
sudo brpapertoollpr_td4410d -P TD-4410D -n dymo30334 -w 55 -h 33 -g 10 -t 0 -b 0 -l 1
| #!/bin/bash | |
| i=0 | |
| for (( ; i < 20 ; )) | |
| do | |
| /opt/jfrog/artifactory/app/third-party/java/bin/jstack -l $1 > "artifactory.$(date +%Y%m%d%H%M%S).td" | |
| i=$((i+1)) | |
| sleep 5 | |
| done |
| data "github_external_groups" "example_external_groups" {} | |
| locals { | |
| local_groups = data.github_external_groups.example_external_groups | |
| } | |
| output "groups" { | |
| value = local.local_groups | |
| } |
| 3.10 |
| #!/usr/bin/env bash | |
| set -e | |
| echo "what is the sitename?" | |
| read sitename | |
| sudo mkdir -p "/var/www/$sitename" | |
| sudo chown kwhatcher:kwhatcher "/var/www/$sitename" | |
| sudo chmod 775 "/var/www/$sitename" | |
| cd "/var/www/$sitename" | |
| ghost install |