Skip to content

Instantly share code, notes, and snippets.

@knoopx
knoopx / README.md
Last active September 13, 2025 19:41
Creality Ender 3 Stock Factory Vref

Creality3D v1.1.2 stock vref values

A4988 Drivers
Vref set to ~90% of stepper rated current
Rs = 0.1ohm

X = 0,58v (0,725A)
Y = 0,58v (0,725A)
Z = 0,58v (0,725A)
@felubra
felubra / sqlite3_backup.sh
Last active July 16, 2018 09:32 — forked from sdellis/sqlite3_backup.sh
sqlite3 database backup script with .backup command and compression
#!/bin/bash
#
# sqlite3_backup.sh
# Script for backing up and compress a sqlite3 database, using the .backup command
# Intended for use with cron for regular automated backups
#
# @author @felubra https://github.com/felubra
# based on the original sqlite3_backup.sh script by [email protected]
# (https://gist.github.com/sdellis/3835123)
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@sdellis
sdellis / sqlite3_backup.sh
Created October 4, 2012 17:27
sqlite3 database backup script with integrity checking
#!/bin/bash
#
# sqlite3_backup.sh
# Script for backing up sqlite3 database with integrity checking
# Intended for use with cron for regular automated backups
#
# @author <[email protected]>
#