Skip to content

Instantly share code, notes, and snippets.

View LanciWeb's full-sized avatar

Marco Lancellotti LanciWeb

View GitHub Profile
@scollovati
scollovati / layout.ahk
Last active April 2, 2025 08:27 — forked from federicocarboni/layout.ahk
Digita Backtick ` e Tilde ~ su Windows senza Tastierino Numerico
#Requires AutoHotkey v2.0
<^>!'::Send "``" ; AltGr + ' => `
<^>!vkDD::Send "~" ; AltGr + ì => ~
@federicocarboni
federicocarboni / layout.ahk
Last active September 22, 2025 07:26
Digita Backtick ` e Tilde ~ su Windows senza Tastierino Numerico
<^>!'::Send `` ; AltGr + ' => `
<^>!vkDD::Send ~ ; AltGr + ì => ~
@BenSampo
BenSampo / deploy.sh
Last active August 22, 2025 10:49
Laravel deploy script
# Change to the project directory
cd $FORGE_SITE_PATH
# Turn on maintenance mode
php artisan down || true
# Pull the latest changes from the git repository
# git reset --hard
# git clean -df
git pull origin $FORGE_SITE_BRANCH