Skip to content

Instantly share code, notes, and snippets.

@PiN73
PiN73 / whiteboardCleaner.md
Created March 16, 2018 03:22 — forked from lelandbatey/whiteboardCleaner.md
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

@PiN73
PiN73 / .cs
Last active March 4, 2018 00:04
Get index from address
using System;
namespace GetIndexFromAddress
{
class Program
{
static int? NextDigitIndex(string s, int start)
{
for (int i = start; i < s.Length; ++i)
{