This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Task 1: Create a project jumphost instance | |
We will use this instance to perform maintenance for the project. | |
Make sure you: | |
1.name the instance nucleus-jumphost | |
2.use the machine type of f1-micro | |
3.use the default image type (Debian Linux) | |
$gcloud compute instances create nucleus-jumphost --machine-type f1-micro --zone us-east1-b | |
_________________________________________________________________________________________________ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <GL/glut.h> | |
#include <stdio.h> | |
#include <math.h> | |
#include<iostream> | |
using namespace std; | |
struct Color { | |
float r,g,b; | |
}; | |
void Init() |