Skip to content

Instantly share code, notes, and snippets.

View DaveTacker's full-sized avatar

Dave Tacker DaveTacker

View GitHub Profile
@DaveTacker
DaveTacker / Resume.css
Last active July 11, 2024 22:53
ClaudeAI Resume Styling and logic
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
color: #333;
max-width: 800px;
margin: 0 auto;
@DaveTacker
DaveTacker / G29.cfg
Last active December 23, 2022 02:19
This is the latest operating configuration for my Creality Ender 3 Pro v4.2.2
###
# Update bed mesh (level bed)
# Home all axis and level the bed.
#
# Slicer **Start GCode:**
# ```gcode
# G29 AREA_START="%MINX%,%MINY%" AREA_END="%MAXX%,%MAXY%"
# ```
###
[gcode_macro G29]
@DaveTacker
DaveTacker / README.md
Created November 5, 2022 01:31
Use `openssl` to generate a private key and self-signed certificate for NGINX or Apache.
/**
* This is a cross-platform Node.js script to generate declaration (d.ts) typings for a JavaScript project located on GitHub.
* To complete this task, a 'working' directory will be created in the same directory as this script. The script will then
* clone the projects listed in the config.repositories array, compile them to only declaration files,
* then use dts-bundle to generate a single module declaration.
*
* Requirements:
* typescript
* dts-bundle
* git