This is a living document of notes related to 3D printing.
- Assembling Up Your Ender3 v2
- Leveling your print bed This is by far the most important thing you can do on day one. More on this here.
- Find things to print @ Thingiverse
This is a living document of notes related to 3D printing.
Nothing about this is turnkey. It's a mess of protocols, firmware and apps, but if you're the right kind of nuts, keep reading.
| sadf |
| #!/bin/bash | |
| TEMPLATE_ID=9000 | |
| DISK_EXPAND_SIZE="+10G" | |
| VMID=301 | |
| VMNAME=freetacos | |
| VM_MEMORY=2048 | |
| IP_GATEWAY="10.0.8.1" | |
| IP_RANGE="10.0.8.223/24" |
| #!/bin/bash | |
| TEMPLATE_ID=9000 | |
| DISK_EXPAND_SIZE="+10G" | |
| VMID=301 | |
| VMNAME=freetacos | |
| VM_MEMORY=2048 | |
| IP_GATEWAY="10.0.8.1" | |
| IP_RANGE="10.0.8.223/24" |
| , , _______________________________ | |
| ,-----------|'------'| | | | |
| /. '-' |-' |_____________________________| | |
| |/| | | | |
| | .________.'----' _______________________________ | |
| | || | || | | | |
| \__|' \__|' |_____________________________| | |
| |‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾| | |
| |________________________________________________________| |
| --- | |
| accessLogs: | |
| enabled: "true" | |
| acme: | |
| challengeType: "dns-01" | |
| dnsProvider: | |
| name: "namecheap" | |
| existingSecretName: "dnsprovider-secret" | |
| email: "gulla.brandon@gmail.com" | |
| enabled: "true" |
| apiVersion: apps/v1 | |
| kind: Deployment | |
| metadata: | |
| name: nginx | |
| spec: | |
| selector: | |
| matchLabels: | |
| app: nginx | |
| template: | |
| metadata: |
| apiVersion: v1 | |
| kind: ConfigMap | |
| metadata: | |
| namespace: metallb-system | |
| name: config | |
| data: | |
| config: | | |
| address-pools: | |
| - name: default | |
| protocol: layer2 |
| UNIFI_HOME=/volume1/docker/data/unifi | |
| #UNIFI_HOME=/opt/docker/data/unifi | |
| mkdir -p ${UNIFI_HOME} | |
| mkdir -p unifi/data | |
| mkdir -p unifi/log | |
| docker rm --force cloudkey | |
| docker run -d --name=cloudkey --restart=always \ | |
| --init \ | |
| -p 8080:8080 \ | |
| -p 8443:8443 \ |