Skip to content

Instantly share code, notes, and snippets.

View nero-dv's full-sized avatar
💭
comfort is the enemy of progress

Louis Del Valle nero-dv

💭
comfort is the enemy of progress
View GitHub Profile
@nero-dv
nero-dv / bedlevel.py
Created December 17, 2023 16:56
ABL bed level mesh
import numpy as np
import matplotlib.pyplot as plt
from scipy.interpolate import interp2d
from mpl_toolkits.mplot3d import Axes3D
# Define the grid point values
z = np.array(
[
[1.016, 0.515, 0.112, -0.193, -0.431],
[0.907, 0.426, 0.054, -0.243, -0.478],
@nero-dv
nero-dv / chatgpt_chat_export.js
Created March 9, 2023 01:29
ChatGPT Chat Exports via Tampermonkey
// ==UserScript==
// @name ChatGPT Exporter
// @namespace https://chat.openai.com/chat
// @version 0.1
// @description This script exports the chat history of the ChatGPT chatbot to a file. It is meant to be used with the Tampermonkey extension for Firefox and (Chrome untested).
// @author Louis Del Valle
// @match *://*/*
// @icon
// @grant none
// ==/UserScript==
@nero-dv
nero-dv / arm-cheatsheet.pdf
Created January 18, 2023 07:35 — forked from s-aguado/arm-cheatsheet.pdf
ARMv6-M Instruction Set Cheatsheet
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@nero-dv
nero-dv / Old Reddit redirect
Created December 21, 2022 00:04 — forked from tavi-vi/Old Reddit redirect
Seamlessly redirect to old.reddit.com, tampermonkey script
// ==UserScript==
// @name old reddit
// @namespace http://tampermonkey.net/
// @version 0.6
// @description seamlessly redirect to old.reddit.com
// @author Tavi
// @match https://www.reddit.com/*
// @icon https://www.google.com/s2/favicons?domain=reddit.com
// @grant none
// @run-at document-start
@nero-dv
nero-dv / README-Template.md
Created December 6, 2022 09:44 — forked from DomPizzie/README-Template.md
A simple README.md template

Project Title

Simple overview of use/purpose.

Description

An in-depth paragraph about your project and overview of use.

Getting Started