M140 S{material_bed_temperature} ; set bed temp
M104 S{material_print_temperature} ; set hotend temp
G28 ; home
G1 X0 Y0 Z0.5 F6000 ; park head
M190 S{material_bed_temperature} ; wait for bed temp
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
| "modaledit.keybindings": { | |
| "\n": [ | |
| "lineBreakInsert", | |
| "cursorDown", | |
| "cursorHome" | |
| ], | |
| " ": "modaledit.enterInsert", | |
| "y": "removeSecondaryCursors", | |
| // Selection mode on/off | |
| "s": "modaledit.toggleSelection", |
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
| #!/usr/bin/env python | |
| from __future__ import print_function | |
| import math | |
| angle = math.radians(35) # Arm offset angle | |
| t = math.tan(angle) # Store tangent |
Hardware prices from McMaster-Carr
2020 brackets, rails, belt, and pulleys from AnyCubic/Uxcel/similar on Amazon
Motors from StepperOnline
Bearings from VXB or similar
| Qty | Item | Unit Cost | Total Cost |
|---|
- M3 - 2.8mm tight threaded, 3.0mm threaded, 3.3mm clearance
- M5 - 5.5mm threaded
- M8 - 8.0mm threaded, 8.5mm shoulder
- 608 - 22.3mm
- 2020 - 20.3mm
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
| #!/usr/bin/env python | |
| from __future__ import print_function | |
| import math | |
| Motor= ["X", "Y", "Z"] # Motor axes | |
| class Vector: |
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
| #!/usr/bin/env bash | |
| while read line | |
| do | |
| iface=$(cut -d':' -f2 <<< $line | tr -d '[[:space:]]') | |
| mtu=$(sed -nr 's/^.* mtu ([^ ]+) .*$/\1/p' <<< $line) | |
| echo $iface: $mtu | |
| if [[ "$mtu" -eq "8950" ]] |
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
| #!/usr/bin/env python | |
| def count_change(amount): | |
| return cc(amount, 5) | |
| def cc(amount, kinds_of_coins): | |
| if(amount == 0): | |
| return 1 |
- 303 War Numen's Fist (Raid Legendary, 40% XP) <- 310 Immolation Fists (Exotic, 0% XP)
- Result = 309, Expected = 310
- https://www.reddit.com/r/DestinyTheGame/comments/3nq46g/infusion_question/cvrq1df?context=3
- 303 ? (Legendary, ? XP) <- 310 Black Spindle (Exotic, ? XP)
- Result = 310, Expected = 310
- https://www.reddit.com/r/DestinyTheGame/comments/3nq46g/infusion_question/cvq9lnw?context=3
- 305 Ace of Spades (Exotic, ? XP) < 310 Suros Regime (Exotic, ? XP)
- Result = 309, Expected = 310
- Source: Feedback from another calculator dev
- 303 Silence of A'arn (Raid Legendary, 100% XP) <- 310 Telesto (Exotic, 0% XP)
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
| #!/usr/bin/env python3 | |
| import argparse | |
| import functools | |
| import itertools | |
| # Legendary Mark cost per infusion | |
| COST = 3 |