Skip to content

Instantly share code, notes, and snippets.

View xxxxxmai's full-sized avatar
😶
Focusing

xxxxxmai

😶
Focusing
View GitHub Profile
@rahularity
rahularity / work-with-multiple-github-accounts.md
Last active May 5, 2026 06:04
How To Work With Multiple Github Accounts on your PC

How To Work With Multiple Github Accounts on a single Machine

Let suppose I have two github accounts, https://github.com/rahul-office and https://github.com/rahul-personal. Now i want to setup my mac to easily talk to both the github accounts.

NOTE: This logic can be extended to more than two accounts also. :)

The setup can be done in 5 easy steps:

Steps:

  • Step 1 : Create SSH keys for all accounts
  • Step 2 : Add SSH keys to SSH Agent
@allysonsilva
allysonsilva / Full-Markdown.md
Last active April 13, 2026 06:03
⚡️ Full Markdown Example

Headers

# h1 Heading 8-)
## h2 Heading
### h3 Heading
#### h4 Heading
##### h5 Heading
###### h6 Heading
@bmaupin
bmaupin / free-backend-hosting.md
Last active May 6, 2026 02:26
Free backend hosting
@withoutwax
withoutwax / ror-api.markdown
Last active August 20, 2025 12:48
Guide on how to create an API-Only Application with Ruby on Rails 5

Creating an API-Only Application with Ruby on Rails

01 - Create a new API-only Rails app

rails new ror-app-name --api

02 - Basic Scaffold

01 - Model

This step is for creating a very basic level of model for us to work in. If you know already, or wish to apply your own custom models with relationships you can skip this step.

@joshbuchea
joshbuchea / semantic-commit-messages.md
Last active May 6, 2026 18:32
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