Skip to content

Instantly share code, notes, and snippets.

View abalejr's full-sized avatar
🎯
Focusing

A.J. Bale (Age) abalejr

🎯
Focusing
View GitHub Profile
@devinschumacher
devinschumacher / normalize.css
Created June 19, 2024 03:42
normalize.css | CSS Reset | Reset CSS Style Rules | 2024, 2025
/*!
https://serp.co/tools/css-reset/
<link rel="stylesheet" href="https://css.serp.co/css-reset/normalize.css/">
*/
/* Document
========================================================================== */
/**
* 1. Correct the line height in all browsers.
@bartoszmajsak
bartoszmajsak / prepare-commit-msg.sh
Last active January 22, 2025 09:31
How to automatically prepend git commit with a branch name
#!/bin/bash
# This way you can customize which branches should be skipped when
# prepending commit message.
if [ -z "$BRANCHES_TO_SKIP" ]; then
BRANCHES_TO_SKIP=(master develop test)
fi
BRANCH_NAME=$(git symbolic-ref --short HEAD)
BRANCH_NAME="${BRANCH_NAME##*/}"