Skip to content

Instantly share code, notes, and snippets.

View codakis's full-sized avatar
😒
I may be slow to respond.

Akis Kontakis codakis

😒
I may be slow to respond.
  • Athens, Greece
  • 02:28 (UTC +03:00)
  • X @toxpack
View GitHub Profile
@codakis
codakis / Visual Studio watch run settings
Created December 23, 2020 07:27
Visual Studio watch run settings, add this parameter to profiles in launchsettings.json
"Watch": {
"executablePath": "C:\\Program Files\\dotnet\\dotnet.exe",
"commandLineArgs": "watch run",
"launchBrowser": true,
"commandName": "Project",
"launchUrl": "http://localhost:5000",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
}
@codakis
codakis / Cacheability.cs
Created June 4, 2020 13:56 — forked from bradwilson/Cacheability.cs
Using chaining to create cached results in ASP.NET Web API v2
public enum Cacheability
{
NoCache,
Private,
Public,
}
@codakis
codakis / github_multiple-accounts.md
Created May 22, 2020 07:48 — forked from JoaquimLey/github_multiple-accounts.md
How to Work with GitHub and Multiple Accounts

Step 1 - Create a New SSH Key

We need to generate a unique SSH key for our second GitHub account.

ssh-keygen -t rsa -C "your-email-address"

Be careful that you don't over-write your existing key for your personal account. Instead, when prompted, save the file as id_rsa_COMPANY. In my case, I've saved the file to ~/.ssh/id_rsa_work.

Step 2 - Attach the New Key