Download the windows image you want.
AWS vmimport supported versions: Microsoft Windows 10 (Professional, Enterprise, Education) (US English) (64-bit only)
So Home wont work.
| from __future__ import division | |
| import numpy as np | |
| class Edge(object): | |
| def __init__(self, p, q): | |
| self.xmin = np.min((p[0], q[0])) | |
| self.xmax = np.max((p[0], q[0])) | |
| self.ymin = np.min((p[1], q[1])) |
| package main | |
| import ( | |
| "bytes" | |
| "fmt" | |
| "log" | |
| "os/exec" | |
| "strings" | |
| ) |
| #!/usr/bin/env python | |
| import os | |
| import paramiko | |
| import argparse | |
| import socket | |
| import logging | |
| def create_ssh_client(hostname): |
| proxy_cache_path /var/nginx/cache/aws/trueniu levels=2:2:2 use_temp_path=off keys_zone=aws_3:500m inactive=30d max_size=10g; | |
| server { | |
| listen 80; | |
| server_name trueniu.com www.trueniu.com; | |
| if ( $scheme = http ) { | |
| return 301 https://www.trueniu.com$request_uri; | |
| } | |
| } |
For a brief user-level introduction to CMake, watch C++ Weekly, Episode 78, Intro to CMake by Jason Turner. LLVM’s CMake Primer provides a good high-level introduction to the CMake syntax. Go read it now.
After that, watch Mathieu Ropert’s CppCon 2017 talk Using Modern CMake Patterns to Enforce a Good Modular Design (slides). It provides a thorough explanation of what modern CMake is and why it is so much better than “old school” CMake. The modular design ideas in this talk are based on the book [Large-Scale C++ Software Design](https://www.amazon.de/Large-Scale-Soft