Skip to content

Instantly share code, notes, and snippets.

View rrhinox's full-sized avatar
🏠
Working from home

Rinaldi Roberto rrhinox

🏠
Working from home
View GitHub Profile
@velut
velut / guida_tilde_backtick_windows10.md
Last active June 3, 2024 06:34
Guida per digitare i caratteri tilde (~) e backtick (`) su una tastiera italiana con Windows 10

Come digitare i caratteri tilde (~) e backtick (`) su una tastiera italiana con Windows 10

Inserire o scrivere caratteri come tilde (~) e backtick (`) con Windows non è immediato data la loro assenza nel layout della tastiera italiana.

È comunque possibile utilizzare questi caratteri sia sfruttando una combinazione di tasti fornita da Windows (vedi Soluzione Windows) sia creando una combinazione di tasti personalizzata (vedi Soluzione Personalizzata).
Entrambe le soluzioni non richiedono di cambiare il layout predefinito della tastiera o le impostazioni di input di Windows 10.

Soluzione Windows

Questa soluzione consiste nel digitare un codice sul tastierino numerico mentre viene tenuto premuto il tasto Alt.

@olih
olih / jq-cheetsheet.md
Last active June 22, 2024 18:30
jq Cheet Sheet

Processing JSON using jq

jq is useful to slice, filter, map and transform structured json data.

Installing jq

On Mac OS

brew install jq

@wpscholar
wpscholar / vagrant-cheat-sheet.md
Last active June 26, 2024 13:23
Vagrant Cheat Sheet

Typing vagrant from the command line will display a list of all available commands.

Be sure that you are in the same directory as the Vagrantfile when running these commands!

Creating a VM

  • vagrant init -- Initialize Vagrant with a Vagrantfile and ./.vagrant directory, using no specified base image. Before you can do vagrant up, you'll need to specify a base image in the Vagrantfile.
  • vagrant init <boxpath> -- Initialize Vagrant with a specific box. To find a box, go to the public Vagrant box catalog. When you find one you like, just replace it's name with boxpath. For example, vagrant init ubuntu/trusty64.

Starting a VM

  • vagrant up -- starts vagrant environment (also provisions only on the FIRST vagrant up)