Skip to content

Instantly share code, notes, and snippets.

View fcamblor's full-sized avatar

Frédéric Camblor fcamblor

View GitHub Profile
@hsablonniere
hsablonniere / README.adoc
Last active May 11, 2024 12:50
Conference bingo

Conference bingo

Background

In many tech conferences, attendees are invited to rate the talk and/or the speaker from 1 to 5 stars. This type of ratings is interesting but has a few drawbacks.

The discussion started as a twitter thread with this french proposition.

C9M xEZWsAARmav
@fcamblor
fcamblor / late-amend.sh
Last active December 14, 2015 16:38
This bash script will allow you to make a "late amend" of a commit (not the latest) in your git history
#!/bin/bash
targetSha1=$1
currentSha1=`git rev-parse HEAD`
previousSha1=`git rev-parse HEAD^`
currentBranchName=`git rev-parse --abbrev-ref HEAD`
sha1ToApply=
if [ "" == "$1" ]
then