Skip to content

Instantly share code, notes, and snippets.

@JayBazuzi
JayBazuzi / gist:978c5a2e3262e66f33ff158c7c26f73a
Created June 9, 2021 16:38
Arlo's Commit Notation push rule regex
# I'm experimenting with a GitLab Push Rule to force all commits to follow Arlo's Commit Notation. Here's my latest regex:
^([RFB]!!)|([RFBa-z] )|(\*\*\*)[- ].*
@maosmurf
maosmurf / technical-due-diligence.md
Created January 28, 2019 08:45 — forked from DoubleMalt/technical-due-diligence.md
A checklist what you should ask when talking over a code base

Technical Due Diligence

Architecture

  • Component Overview
  • Technologies (DB, Languages, Frameworks)

Functionalities

@lelandbatey
lelandbatey / whiteboardCleaner.md
Last active February 25, 2024 13:47
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