Skip to content

Instantly share code, notes, and snippets.

View EpicKiwi's full-sized avatar
🥝
Enjoying jucy fruits

EpicKiwi

🥝
Enjoying jucy fruits
View GitHub Profile
// sourceImage can be any File or Blob
async resizeImage(sourceImage){
let el = document.createElement("img")
let prom = new Promise( (res, rej) => {
el.addEventListener("load", res)
el.addEventListener("error", rej)
})
el.src = URL.createObjectURL(sourceImage)
await prom
let width = 0;
@EpicKiwi
EpicKiwi / escpos-mail-printer.sh
Created August 10, 2025 16:07
Print unread emails from your mailbox on esc-pos compatible thermal printer
#!/bin/bash
ICONV="ISO8859-15"
CODE_PAGE="\x1b\x74\x28"
MODE_EMPHASIS="\x1b!\x08"
MODE_NORMAL="\x1b!\x00"
CUT="\x1d\x561"
FEED_MAX="\x1b\x4a\xff"
ECHO="/usr/bin/echo -n -e"