- Create ssh keys for each account
- add them with ssh-add
- create .gitconfigs for each account
[user]
name = MikeDabrowski-Work
email = [email protected]
signingkey = /Users/mike/.ssh/work.pub
[gpg]
format = ssh
| const fs = require('fs'); | |
| // Function to convert degrees to radians | |
| function toRadians(degrees) { | |
| return degrees * (Math.PI / 180); | |
| } | |
| // Function to calculate the Haversine distance between two points in decimal degrees | |
| function haversineDistance(lat1, lon1, lat2, lon2) { | |
| const R = 6371e3; // Earth's radius in meters |
[user]
name = MikeDabrowski-Work
email = [email protected]
signingkey = /Users/mike/.ssh/work.pub
[gpg]
format = ssh
I hereby claim:
To claim this, I am signing this object:
| import * as Sequelize from 'sequelize'; | |
| import { sequelize } from '../instances/sequelize'; | |
| export const Role = sequelize.define('roles', { | |
| id: { | |
| type: Sequelize.INTEGER, | |
| autoIncrement: true, | |
| primaryKey: true | |
| }, | |
| roleName: { |