Skip to content

Instantly share code, notes, and snippets.

View kythuatwebso's full-sized avatar

Kỹ thuật WEBSO kythuatwebso

View GitHub Profile
@johanvanhelden
johanvanhelden / reconfigure-laravel-instructions.md
Last active March 18, 2023 13:16
Laravel - public > public_html

These are the reconfiguration instructions to make Laravel use a public_html folder instead of a public folder.

  • Rename the public folder to public_html

  • Create a new file in de ./app directory called Bootstrapper.php with the followign contents:

<?php

namespace App;
@oanhnn
oanhnn / using-multiple-github-accounts-with-ssh-keys.md
Last active July 5, 2024 16:56
Using multiple github accounts with ssh keys

Problem

I have two Github accounts: oanhnn (personal) and superman (for work). I want to use both accounts on same computer (without typing password everytime, when doing git push or pull).

Solution

Use ssh keys and define host aliases in ssh config file (each alias for an account).

How to?

  1. Generate ssh key pairs for accounts and add them to GitHub accounts.