Skip to content

Instantly share code, notes, and snippets.

@Enucatl
Enucatl / README.md
Created April 24, 2026 05:40
Download coop.ch supercard receipts

Supercard Receipt Downloader

This script downloads all receipt PDFs, bill PDFs, and available warranty PDFs from the last 365 days from your logged-in Supercard account.

Prerequisites

  • You must already be logged in to your Supercard account in Firefox.
  • You should allow multiple downloads for www.supercard.ch if Firefox asks.
  • For the cleanest behavior, configure Firefox to download PDFs instead of opening them in a tab.
@Enucatl
Enucatl / tiramisu.md
Last active February 27, 2026 12:56
tiramisù goloso di iginio massari
Date Weight (kg) Waist (cm)
2024-01-15 63.5 79
2024-01-22 63.8 79
2024-01-29 64.5 79
2024-02-05 64.9 80
2024-02-12 64.0 79
2024-02-21 64.9 80
2024-02-27 65.1 80
2024-03-05 64.7 81
2024-03-11 65.5
@Enucatl
Enucatl / romana.md
Created November 2, 2024 08:57
Pizza teglia romana

Pizza in teglia romana (24 hours process)

Without a dedicated pizza oven that can reach above 400°C, I recommend this style of thick pizza:

pizza1 pizza2

Ingredients

I use a 30x40cm oven tray, ideally I use a blue iron rectangular tray

@Enucatl
Enucatl / barzellette-gesuiti.md
Created October 31, 2017 18:56
barzellette dal sito dei gesuiti
@Enucatl
Enucatl / .gitignore
Last active February 26, 2018 13:51
despacito stefano
audio
@Enucatl
Enucatl / amici.miei.atto.ii.sub.eng.srt
Last active August 29, 2015 14:08
amici miei atto II sub eng
1
00:00:06,600 --> 00:00:09,717
YESTERDAY
- Have a nice journey, sir!
(SLAP) > : Ouch!
2
00:00:10,160 --> 00:00:13,709
< Help!
- Funny...
@Enucatl
Enucatl / weighted.mean.sh
Created October 27, 2014 13:31
calculate weighted average with first column = value, second column = weight with awk
#!/usr/bin/env bash
awk '{w = w + $2; e = e + $1 * $2;} END {print e/w}'