create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
| <script src="https://gist.github.com/KevinHeaton-Money4nothin/d4947f183c7a63a66049642571a6170b.js"></script> |
| # Let's us use print() as a function later. | |
| from __future__ import print_function | |
| # Load the file into a list of (H, L, y) tuples | |
| with open("luckeyfxnsample_g.csv", "r") as handle: | |
| data = [tuple(float(x) for x in line.split(",")) for line in handle] | |
| def transform(H, L, y): | |
| """Transform (H, L, y) tuples into (y, HL, L, L^2, L^3) tuples.""" | |
| return y, H * L, L, L * L, L * L * L |