Skip to content

Instantly share code, notes, and snippets.

View b-dur's full-sized avatar

Bardur Sigmundarson b-dur

View GitHub Profile
@b-dur
b-dur / isItAfternoon.js
Created September 13, 2019 12:27
isItAfternoon?
const isItAfternoon = () => new Date() > new Date().setHours(12, 0, 0, 0)
isItAfternoon();
@b-dur
b-dur / .gitconfig
Last active September 4, 2023 09:47
My preferred gitconfig setup
[user]
email = b-dur@b-dur.dk
name = Bardur Sigmundarson
[branch]
autosetuprebase = always
[core]
editor = vim
[push]
default = current
[rebase]