This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; Temperature tower: https://www.thingiverse.com/thing:2729076 | |
; Apply the following function in Klipper Console before running the temp tower: | |
; This starts at START temperature, skip 1.4mm (base) and every 10mm reduces by 5 deg until top of the tower | |
; Adjust the START parameter to your needs | |
TUNING_TOWER COMMAND="SET_HEATER_TEMPERATURE HEATER=extruder" PARAMETER=TARGET SKIP=1.4 START=245 STEP_DELTA=-5 STEP_HEIGHT=10 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Crea el Menu | |
function onOpen() { | |
var ui = SpreadsheetApp.getUi(); | |
ui.createMenu('WhatsApp') | |
.addItem('Enviar Mensaje a Fila Seleccionada', 'sendWhatsAppMessageToSelectedRow') | |
.addToUi(); | |
} | |
function sendWhatsAppMessageToSelectedRow() { | |
var sheet = SpreadsheetApp.getActiveSpreadsheet().getActiveSheet(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# Script Name: traefik_google_ip_whitelist.sh | |
# Description: This script retrieves Google's public IP ranges, adds any unverified forwarding IPs, | |
# and generates a Traefik middleware configuration in either YAML or TOML format. | |
# The generated configuration allows whitelisting Google's IP addresses in Traefik, | |
# ensuring secure access to services by restricting traffic to Google's trusted IPs. | |
# | |
# Output: |