Skip to content

Instantly share code, notes, and snippets.

View oorabona's full-sized avatar
πŸš€
Coding

Olivier Orabona oorabona

πŸš€
Coding
  • Paris
View GitHub Profile
@oorabona
oorabona / wsl-toast-notifications.md
Last active January 24, 2026 16:58
WSL β†’ Windows Toast Notifications for Claude Code (Manual Setup with BurntToast)

WSL β†’ Windows Toast Notifications (Manual Setup)

Send native Windows toast notifications from WSL without any TCP server. Perfect for Claude Code hooks, long-running scripts, or any CLI tool.

Architecture

β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚                        WINDOWS SIDE                              β”‚
@oorabona
oorabona / axtls-config
Last active June 17, 2021 22:45
Typical axtls configuration file
#
# Automatically generated make config: don't edit
#
HAVE_DOT_CONFIG=y
CONFIG_PLATFORM_LINUX=y
# CONFIG_PLATFORM_CYGWIN is not set
# CONFIG_PLATFORM_WIN32 is not set
#
# General Configuration
@oorabona
oorabona / install-docker-compose.sh
Created November 14, 2018 17:40
install latest version of docker-compose
#!/bin/sh
sudo true
# Install docker-compose
COMPOSE_VERSION=`git ls-remote https://github.com/docker/compose | grep refs/tags | grep -oP "[0-9]+\.[0-9][0-9]+\.[0-9]+$" | tail -n 1`
sudo sh -c "curl -L https://github.com/docker/compose/releases/download/${COMPOSE_VERSION}/docker-compose-`uname -s`-`uname -m` > /usr/local/bin/docker-compose"
sudo chmod +x /usr/local/bin/docker-compose
sudo sh -c "curl -L https://raw.githubusercontent.com/docker/compose/${COMPOSE_VERSION}/contrib/completion/bash/docker-compose > /etc/bash_completion.d/docker-compose"
@oorabona
oorabona / viewport.coffee
Created November 1, 2014 15:18
Get viewport width/height from CoffeeScript
getViewport = ->
e = window
a = "inner"
unless "innerWidth" of window
a = "client"
e = document.documentElement or document.body
width: e[a + "Width"]
height: e[a + "Height"]