Skip to content

Instantly share code, notes, and snippets.

View m0sys's full-sized avatar
🚀
f = ma is all you need

M0 m0sys

🚀
f = ma is all you need
  • Montreal, Canada
View GitHub Profile
@jonjack
jonjack / add-update-refresh-github-access-token-on-mac.md
Last active July 10, 2025 02:30
Adding & Updating GitHub Access Token on Mac

Using an Access Token for the first time

Follow the instructions on Github to Create an Access Token in Github

Configure Git to use the osxkeychain

By default, git credentials are not cached so you need to tell Git if you want to avoid having to provide them each time Github requires you to authenticate. On Mac, Git comes with an “osxkeychain” mode, which caches credentials in the secure keychain that’s attached to your system account.

You can tell Git you want to store credentials in the osxkeychain by running the following:-

@joshbuchea
joshbuchea / semantic-commit-messages.md
Last active July 20, 2025 14:01
Semantic Commit Messages

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

@staltz
staltz / introrx.md
Last active July 19, 2025 08:08
The introduction to Reactive Programming you've been missing