Skip to content

Instantly share code, notes, and snippets.

View sarahcssiqueira's full-sized avatar

Sarah Siqueira sarahcssiqueira

View GitHub Profile
@sarahcssiqueira
sarahcssiqueira / handling_multiple_github_accounts.md
Created April 24, 2026 01:04 — forked from Jonalogy/handling_multiple_github_accounts.md
Handling Multiple Github Accounts on MacOS

Handling Multiple Github Accounts on MacOS

The only way I've succeeded so far is to employ SSH.

Assuming you are new to this like me, first I'd like to share with you that your Mac has a SSH config file in a .ssh directory. The config file is where you draw relations of your SSH keys to each GitHub (or Bitbucket) account, and all your SSH keys generated are saved into .ssh directory by default. You can navigate to it by running cd ~/.ssh within your terminal, open the config file with any editor, and it should look something like this:

Host *
 AddKeysToAgent yes

> UseKeyChain yes

@sarahcssiqueira
sarahcssiqueira / Bootstrap - Rails 7
Created September 4, 2024 17:04 — forked from rubyandcoffee/Bootstrap - Rails 7
Bootstrap with Rails 7
Adding Bootstrap to Rails 7
Reference: https://www.linkedin.com/pulse/rails-7-bootstrap-52-importmap-md-habibur-rahman-habib/
INSTRUCTIONS
1. Add the following to Gemfile:
gem "bootstrap"
gem "sassc-rails"
@sarahcssiqueira
sarahcssiqueira / set-cookie-wordpress.php
Created May 19, 2024 19:18 — forked from devinsays/set-cookie-wordpress.php
How to set a cookie using PHP in WordPress