Skip to content

Instantly share code, notes, and snippets.

View UsAndRufus's full-sized avatar
🐝

Ed B UsAndRufus

🐝
View GitHub Profile
@lyoshenka
lyoshenka / coding_maxims.md
Last active August 23, 2023 21:18
Keep this in mind
@anschaef
anschaef / bootstrap-4-sass-mixins-cheat-sheet.scss
Last active April 12, 2024 08:49
Bootstrap 4 Sass Mixins [Cheat sheet with examples]
/* -------------------------------------------------------------------------- */
// All Bootstrap 4 Sass Mixins [Cheat sheet]
// Updated to Bootstrap v4.5.x
// @author https://anschaef.de
// @see https://github.com/twbs/bootstrap/tree/master/scss/mixins
/* -------------------------------------------------------------------------- */
/*
// ########################################################################## */
// New cheat sheet for Bootstrap 5:
@gagarine
gagarine / fish_install.md
Last active July 22, 2024 08:08
Install fish shell on macOS Mojave with brew

Installing Fish shell on MacOS (Intel and M1) using brew

Fish is a smart and user-friendly command line (like bash or zsh). This is how you can instal Fish on MacOS and make your default shell.

Note that you need the https://brew.sh/ package manager installed on your machine.

Install Fish

brew install fish

@UsAndRufus
UsAndRufus / setting_up_hombrew_fish_node_ruby_monterery_m1.md
Last active March 5, 2022 13:32
Setting up Homebrew, Fish, Node & Ruby in macOS Monterey on Apple Silicon/M1

This is a personal guide for how to setup Fish & Ruby in macOS Monterey running on an Apple/Silicon M1. asdf is used as a version manager for Node and Ruby.

Homebrew

Go to https://brew.sh/ and run the script.

On this version of macOS, it installs to /opt/homebrew. This means that paths that reference /usr/local/share should instead reference /opt/homebrew/opt/<package-name>/share. This can be a little confusing when following guides.