Skip to content

Instantly share code, notes, and snippets.

@algonzalez
algonzalez / justfile
Last active March 13, 2025 03:15
Justfile implementation of the boilerplate makefile for Go projects by Alex Edwards
# ==============================================================================
# Justfile implementation of the Go project makefile from Alex Edwards:
# https://www.alexedwards.net/blog/a-time-saving-makefile-for-your-go-projects
# Notes:
# - I'm a newbie in both Go and justfiles, so let me know what can be improved
# - should be cross-platform, but only tested in Windows and Ubuntu under WSL
# - confirm task is not needed as it is built-in using [confirm] attribute
# - removed the `-race` argument in the test targets;
# it requires CGO_ENABLED=1 (at least on Windows).
# - commented out the `upx` call in the deploy target; I don't currently use it.
@lelandbatey
lelandbatey / whiteboardCleaner.md
Last active March 19, 2025 04:07
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

@joshdcomp
joshdcomp / Shame Rules
Created April 22, 2013 15:51
Rules of shame
// -----------------------------------------------------------------------------
/* Shame CSS */
// This is not a dumping ground. It is a staging area for hacks that are
// intended to be fixed and resolved so as not to sully our
// production-ready codebase. Hacks are necessary, but they are not
// permanent, nor are they acceptable long-term. You are not done when
// you've moved your selector and rules here.
// This is not intended to be an easy fix, or a simple way out. You will
// spend time writing out your shame, and you will make it known that
@louisremi
louisremi / LICENSE.txt
Created October 27, 2011 09:12 — forked from 140bytes/LICENSE.txt
c, an expressive className manipulation lib: c( elem, 'has/add/remove/toggle', class_name )
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004
Copyright (C) 2011 @louis_remi <http://louisremi.com>
Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE