Skip to content

Instantly share code, notes, and snippets.

View degree's full-sized avatar
🎧
development

Eugene Dubrovka degree

🎧
development
View GitHub Profile
@lelandbatey
lelandbatey / whiteboardCleaner.md
Last active April 10, 2025 09:21
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

#!/bin/bash
function filter_ignored_branches() {
local branches=$1
local ignored=$2
local result=""
for branch in $branches; do
if echo $ignored | grep -v $branch > /dev/null ; then
if [ "$INVERT" != "true" ]; then
result="$result $branch"
fi