Skip to content

Instantly share code, notes, and snippets.

View Balastrong's full-sized avatar
🐱
Sharing is caring

Leonardo Montini Balastrong

🐱
Sharing is caring
View GitHub Profile
@Balastrong
Balastrong / .gitconfig
Last active January 28, 2024 13:42
Some handy git aliases
# These aliases have been collected and shown in the making of this video, explaining how to set up and use git alises
# Source: https://youtu.be/Uk4GnYoQx_I
[alias]
# Shortcuts
ch = checkout
br = branch
st = status
br = branch
cm = commit -m
@Balastrong
Balastrong / types.ts
Last active August 17, 2022 08:21
wrand - types
export type WeightedItem<T> = {
original: T;
weight: number;
};