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.
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.
#!/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 |