Skip to content

Instantly share code, notes, and snippets.

View e0da's full-sized avatar

Justin Force e0da

View GitHub Profile
@e0da
e0da / prusa_mini_conveniently_park_head.gcode
Last active April 1, 2022 23:34
PrusaSlicer end gcode for Prusa Mini which parks head conveniently
; Written by u/mix579 <https://www.reddit.com/user/mix579/>
; Source: <https://www.reddit.com/r/prusa3d/comments/seidbl/comment/hukj2fc/?utm_source=share&utm_medium=web2x&context=3>
;
; PrusaSlicer end gcode for Prusa Mini
; Last updated 20210111 - RF - Inspired by Bob George
G4 ; wait
G92 E0 ; prepare to retract
G1 E-1 F2100 ; retract
; Anti-stringing end wiggle
G91 ; use relative coordinates
@e0da
e0da / README.md
Created January 27, 2023 17:48 — forked from dsample/README.md
ASCII art diagrams

ASCI art characters for creating diagrams

Characters:

Single line

  • ASCII code 191 = ┐ ( Box drawing character single line upper right corner )
  • ASCII code 192 = └ ( Box drawing character single line lower left corner )
  • ASCII code 193 = ┴ ( Box drawing character single line horizontal and up )
  • ASCII code 194 = ┬ ( Box drawing character single line horizontal down )
@e0da
e0da / gources.bash
Created March 15, 2026 23:36
Gource wrapper for visualizing multiple repositories
#!/bin/bash -e
# Gource wrapper for visualizing multiple repositories
# Based on: https://github.com/acaudwell/Gource/wiki/Visualizing-Multiple-Repositories
if [ -n "$DEBUG" ]; then
set -x
echo '$*:' "$*"
echo '$@:' "$@"
echo '$#:' "$#"