create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
#! /bin/sh | |
# Script to provide answer for question: | |
# http://stackoverflow.com/questions/5149872/how-to-git-remote-add-and-track-a-branch-in-the-same-filesystem | |
echo create origin | |
mkdir origin | |
cd origin/ | |
git init --bare | |
cd .. |
license: gpl-3.0 |
license: gpl-3.0 |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
license: gpl-3.0 | |
redirect: https://observablehq.com/@d3/margin-convention |
import numpy as np | |
import matplotlib.pyplot as plt | |
def makeLayer(y, height): | |
neg=0.0 | |
pos=0.0 | |
if y > 0: | |
if y - height >= 0: | |
pos = height | |
y -= pos |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>D3 Ternary Plot</title> | |
<style> | |
line.axis { | |
stroke-width: 2; | |
stroke: #363636; | |
} |
license: gpl-3.0 |