Skip to content

Instantly share code, notes, and snippets.

View Apsu's full-sized avatar

Eve Apsu

  • Lambda Labs
  • Pittsburgh, PA
View GitHub Profile
@Apsu
Apsu / warping.md
Last active March 26, 2020 06:40
Warping

Warping

Keep track of

  • Camera look direction
    • Use to calculate relative rotation to transform.rotation
  • Move direction
    • Use to calculate relative rotation to transform.forward

OnAnimatorIK

@Apsu
Apsu / HeadLook.cs
Created March 10, 2020 04:15
Unity HeadLook
using UnityEngine;
public class HeadLook : MonoBehaviour
{
[Header("Configs")]
[Range(0.0f, 1.0f)]
public float headLookWeight;
private Animator animator;
private Vector3 lookAtPosition;
@Apsu
Apsu / modaledit.json
Created March 4, 2020 21:06
ModalEdit Bindings
"modaledit.keybindings": {
"\n": [
"lineBreakInsert",
"cursorDown",
"cursorHome"
],
" ": "modaledit.enterInsert",
"y": "removeSecondaryCursors",
// Selection mode on/off
"s": "modaledit.toggleSelection",

CURA

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
@Apsu
Apsu / cotript.py
Last active February 14, 2019 13:40
Coplanar Tripteron Inverse Kinematics
#!/usr/bin/env python
from __future__ import print_function
import math
angle = math.radians(35) # Arm offset angle
t = math.tan(angle) # Store tangent
@Apsu
Apsu / bom.md
Last active November 20, 2016 01:51
Tripteron RC1 Bill of Materials

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
@Apsu
Apsu / sizes.md
Last active November 18, 2016 01:45
Metric PLA Hole Sizes
  • 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
@Apsu
Apsu / ik.py
Last active October 29, 2016 04:02
Inverse Kinematics for Inverted Cantilever Delta printer
#!/usr/bin/env python
from __future__ import print_function
import math
Motor= ["X", "Y", "Z"] # Motor axes
class Vector:
@Apsu
Apsu / fixmtu.sh
Last active August 26, 2016 18:58
Fix jumbo frame MTUs
#!/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" ]]
@Apsu
Apsu / change.py
Created June 9, 2016 19:58
SICP Python Conversion
#!/usr/bin/env python
def count_change(amount):
return cc(amount, 5)
def cc(amount, kinds_of_coins):
if(amount == 0):
return 1