Skip to content

Instantly share code, notes, and snippets.

View kerryhatcher's full-sized avatar
🔨
I may be slow to respond.

Kerry Hatcher kerryhatcher

🔨
I may be slow to respond.
View GitHub Profile
@kerryhatcher
kerryhatcher / Label_Rolls.md
Created February 28, 2024 21:08
Brother TD-4110D Info

sudo brpapertoollpr_td4410d -P TD-4410D -n dymo30334 -w 55 -h 33 -g 10 -t 0 -b 0 -l 1

@kerryhatcher
kerryhatcher / pushoffsideofMini.gcode
Last active September 17, 2023 19:19
GCODE Snipts
; 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
@kerryhatcher
kerryhatcher / angfire.md
Last active May 29, 2023 15:10
Angular Firebase How-To

Install PreReqs:

  1. nvm
  2. git

Setup Project:

  1. Create GIT Repo
  2. cd to repo
@kerryhatcher
kerryhatcher / Software.md
Created May 23, 2023 21:10
Personal Workstation Software
@kerryhatcher
kerryhatcher / settings.txt
Created March 18, 2023 02:33
GRBL with DM542T
>>> $$
$1 = 25 (Step idle delay, milliseconds)
$0 = 10 (Step pulse time, microseconds)
$2 = 1 (Step pulse invert, mask)
$3 = 0 (Step direction invert, mask)
$4 = 1 (Invert step enable pin, boolean)
$5 = 0 (Invert limit pins, boolean)
$6 = 0 (Invert probe pin, boolean)
$10 = 1 (Status report options, mask)
$11 = 0.010 (Junction deviation, millimeters)
@kerryhatcher
kerryhatcher / KerryCovid.md
Last active July 21, 2022 17:45
Covid Health Status

Updated 21JUL2022 1345hrs Eastern.

Shared via Kinsa.
Kerry 's history. Age 37 years old.

[Thu Jul 21].
[13:38] Symptoms: Body Aches, Cough, Trouble Breathing, Fatigue, Headache.

https://super-productivity.com/
https://cboxdoerfer.github.io/fsearch/
https://github.com/canadaduane/pop-dictionary
https://vivaldi.com/
https://bitwarden.com/
#!/usr/bin/env bash
set -e
#Based on
mcservername="cotscraft"
if [ $(id -u) -ne 0 ]
then echo "Please run as root"
exit
@kerryhatcher
kerryhatcher / whitelistswap.sh
Last active June 10, 2020 19:43
swap out minecraft whitelists and restart server
#!/usr/bin/env bash
export fileappend=$(head /dev/urandom | tr -dc A-Za-z0-9 | head -c 13 ; echo '')
export oldfile=$(ls /opt/minecraft/whitelist.json-*)
mv /opt/minecraft/whitelist.json /opt/minecraft/whitelist.json-$fileappend
mv $oldfile /opt/minecraft/whitelist.json
@kerryhatcher
kerryhatcher / gulpfile.js
Last active June 1, 2020 17:53
Gulp Markdown Nunjucks
'use strict';
// =======================================================================
// Gulp Plugins
// =======================================================================
var gulp = require('gulp'),
nunjucks = require('nunjucks'),
markdown = require('nunjucks-markdown'),
marked = require('marked'),
rename = require('gulp-rename'),
gulpnunjucks = require('gulp-nunjucks');