Skip to content

Instantly share code, notes, and snippets.

@lelandbatey
lelandbatey / whiteboardCleaner.md
Last active May 20, 2025 13:11
Whiteboard Picture Cleaner - Shell one-liner/script to clean up and beautify photos of whiteboards!

Description

This simple script will take a picture of a whiteboard and use parts of the ImageMagick library with sane defaults to clean it up tremendously.

The script is here:

#!/bin/bash
convert "$1" -morphology Convolve DoG:15,100,0 -negate -normalize -blur 0x1 -channel RBG -level 60%,91%,0.1 "$2"

Results

@surr-name
surr-name / event.js
Last active December 31, 2015 10:39 — forked from azproduction/event.js
yet another EventManager
// Yet Another Event Manager (Pub/Sub)
//
// all listeners are executed in context of a instance of the EventManager
/**
* @constructor
*
* @param {Boolean} [doDebug] to do 'console.error' for errors of 'listeners' or not.
*/