Skip to content

Instantly share code, notes, and snippets.

View maximeaubaret's full-sized avatar
😀

Maxime Aubaret maximeaubaret

😀
View GitHub Profile
@maximeaubaret
maximeaubaret / build.sh
Last active November 27, 2018 18:03
Simple AWS CodeBuild Build script for Docker with caching
#!/bin/sh
readonly REPO=${REGISTRY}/${REPO_NAME}
# Figure out which REF_NAME to use
if [[ -z "${REF_NAME}" ]]; then
if [[ -z "${CODEBUILD_WEBHOOK_TRIGGER}" ]]; then
echo "If building manually, you must specify a REF_NAME environment variable."
exit 1
fi
@maximeaubaret
maximeaubaret / trello-enhancements.js
Last active September 23, 2017 19:38
Trello Enhancements
// ==UserScript==
// @name Trello Enhancements
// @namespace http://moveyourbuddy.io/trello-enhancements
// @version 0.2
// @description try to take over the world!
// @author Maxime Aubaret <maxime@moveyourbuddy.io>
// @match https://trello.com/b/*
// @run-at document-end
// @grant none
// ==/UserScript==
// ==UserScript==
// @name Trello card title
// @version 0.4.0
// @description Add support for bold and emphasized Markdown in card titles
// @match https://trello.com/b/*
// @match http://trello.com/b/*
// ==/UserScript==
function markdownAll() {
var cards = document.getElementsByClassName('list-card-title');