Skip to content

Instantly share code, notes, and snippets.

View mattogodoy's full-sized avatar
🚀

Matias Godoy mattogodoy

🚀
View GitHub Profile
@mattogodoy
mattogodoy / pid-controller.gd
Last active October 7, 2025 14:20
PID Controller for Godot
extends Node
class_name PIDController
enum DerivativeMeasurement {
VELOCITY,
ERROR_RATE_OF_CHANGE
}
@mattogodoy
mattogodoy / frigate-bulk-delete.js
Created April 16, 2024 15:38
A Greasemonkey/Violentmonkey script to bulk-delete events in Frigate
// ==UserScript==
// @name Frigate - Bulk delete events
// @namespace Violentmonkey Scripts
// @match http://192.168.1.120:8100/events*
// @grant none
// @version 1.0
// @author Matto Godoy
// @description Deletes multiple events one by one in Frigate NVR
// ==/UserScript==
@mattogodoy
mattogodoy / stackoverflow-better-dates.js
Created June 7, 2021 14:41
Violent Monkey script to improve readability of dates in StackOverflow
// ==UserScript==
// @name Improved dates - stackoverflow.com
// @namespace Violentmonkey Scripts
// @match https://stackoverflow.com/questions/*
// @grant none
// @version 1.0
// @author Matto
// @description 11/11/2020, 15:40:59
// ==/UserScript==
@mattogodoy
mattogodoy / timetool.js
Created June 7, 2021 14:37
Violent Monkey script to automatically fill times for the entire week in TimeTool
// ==UserScript==
// @name Fill week time - TimeTool
// @namespace Violentmonkey Scripts
// @match https://www.ttcloud.ch/timetool/db_admin/start.html
// @grant none
// @version 1.0
// @author -
// @description 04/06/2021, 13:49:17
// ==/UserScript==