run postgresql with systemctl
sudo pacman -S postgresql
find version & build from source
Sometimes you want to have a subdirectory on the master branch be the root directory of a repository’s gh-pages branch. This is useful for things like sites developed with Yeoman, or if you have a Jekyll site contained in the master branch alongside the rest of your code.
For the sake of this example, let’s pretend the subfolder containing your site is named dist.
Remove the dist directory from the project’s .gitignore file (it’s ignored by default by Yeoman).
| // Measure the relative luminance of each RGB value | |
| const reLum = function relativeLuminance(RGB) { | |
| let newRGB = RGB; | |
| newRGB /= 255; | |
| return newRGB <= 0.03928 ? | |
| newRGB / 12.92 : | |
| ((newRGB + 0.055) / 1.055) ** 2.4; | |
| } | |
| // Measure the luminance of the color |
| git ls-files -z | xargs -0n1 git blame -w | perl -n -e '/^.*\((.*?)\s*[\d]{4}/; print $1,"\n"' | sort -f | uniq -c | sort -n |