Skip to content

Instantly share code, notes, and snippets.

View ramonfrombr's full-sized avatar
🧑‍💻
Coding

Ramon Rodrigues ramonfrombr

🧑‍💻
Coding
View GitHub Profile
@rahularity
rahularity / work-with-multiple-github-accounts.md
Last active April 24, 2025 08:37
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
@FarazPatankar
FarazPatankar / splashScreen.js
Last active October 27, 2023 09:26
Splash screen configuration for a bare expo app.
import React, { useState, useEffect } from 'react';
import { useFonts } from '@use-expo/font';
import * as SplashScreen from 'expo-splash-screen';
const App = () => {
const [isReady, setIsReady] = useState(false)
const [isLoaded] = useFonts({
'Poppins-Regular': require('./assets/fonts/Poppins-Regular.ttf'),
'Poppins-Medium': require('./assets/fonts/Poppins-Medium.ttf'),
'Poppins-SemiBold': require('./assets/fonts/Poppins-SemiBold.ttf'),