create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
#include<iostream> | |
using namespace std; | |
int main() { | |
int p=1, q =0, r = 9, s=1; | |
for(int i = 1; i <= 9; i++) { | |
for(int j = 1; j <= 9; j++) { | |
if (i==j) { |
PHP 6 hrs 53 mins ████████████▎░░░░░░░░ 58.9% | |
Blade T... 4 hrs 2 mins ███████▎░░░░░░░░░░░░░ 34.6% | |
Bash 28 mins ▊░░░░░░░░░░░░░░░░░░░░ 4.0% | |
Markdown 5 mins ▏░░░░░░░░░░░░░░░░░░░░ 0.8% | |
JSON 4 mins ▏░░░░░░░░░░░░░░░░░░░░ 0.7% |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
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).
Use ssh keys and define host aliases in ssh config file (each alias for an account).
{ | |
"total": 3, | |
"data": [{ | |
"id": "1", | |
"name": "Grafik Pie", | |
"type": "doughnut", | |
"judul_data": "Contoh1, Contoh2, Contoh3", | |
"created_at": "2019-11-30 06:37:23", | |
"updated_at": "2019-11-30 06:46:38" | |
}, |
// soal nomer satu | |
#include<bits/stdc++.h> | |
using namespace std; | |
int main() | |
{ | |
int i, n, nil, temp; | |
int diff = 0; | |
vector<int> nilai; | |
cin >> n; | |