Skip to content

Instantly share code, notes, and snippets.

View flaviodelgrosso's full-sized avatar
👨‍💻
Coding...

Flavio Del Grosso flaviodelgrosso

👨‍💻
Coding...
View GitHub Profile
@flaviodelgrosso
flaviodelgrosso / config
Last active January 26, 2025 11:48
ghostty_config
# Appearance
font-family = Operator Mono Lig
font-size = 16
cursor-style = bar
adjust-cell-height = 35%
background-opacity = 0.8
background-blur-radius = 80
# Mouse
mouse-hide-while-typing = true
@flaviodelgrosso
flaviodelgrosso / ollama_colab_ngrok.ipynb
Created June 8, 2024 14:49
ollama_colab_ngrok.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@flaviodelgrosso
flaviodelgrosso / insanely-fast-whisper.ipynb
Created June 6, 2024 19:46
insanely-fast-whisper.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
# Define variables
$nvmUrl = "https://github.com/coreybutler/nvm-windows/releases/latest/download/nvm-noinstall.zip"
$userFolder = [System.Environment]::GetFolderPath('UserProfile')
$nvmFolder = "$userFolder\nvm"
$nvmZipPath = "$userFolder\nvm-noinstall.zip"
$settingsFilePath = "$nvmFolder\settings.txt"
# Create NVM folder if it does not exist
if (-Not (Test-Path -Path $nvmFolder)) {
New-Item -ItemType Directory -Force -Path $nvmFolder
@flaviodelgrosso
flaviodelgrosso / docker_install.sh
Last active June 7, 2024 16:11
Install Docker engine in WSL
# Install Docker, you can ignore the warning from Docker about using WSL
curl -fsSL https://get.docker.com -o get-docker.sh
sudo sh get-docker.sh
# Add your user to the Docker group
sudo usermod -aG docker $USER
sudo chmod 666 /var/run/docker.sock
# Install Docker Compose v2
sudo apt-get update && sudo apt-get install docker-compose-plugin

Install Docker and Colima on macOS

brew install docker docker-compose docker-buildx
brew install colima

Connect symbolic link of docker-compose and docker-buildx