I hereby claim:
- I am samwightt on github.
- I am samwight (https://keybase.io/samwight) on keybase.
- I have a public key ASAxWEa3p9ttSN7u22BWC0XEQ6A2BNUMXKtfwLlTVY1S8Qo
To claim this, I am signing this object:
| // Available variables: | |
| // - Machine | |
| // - interpret | |
| // - assign | |
| // - send | |
| // - sendParent | |
| // - spawn | |
| // - raise | |
| // - actions |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Flexbox CSS Centering Example</title> | |
| </head> | |
| <body> | |
| <div id="parent-div"> | |
| <div id="child-div"> | |
| <h1>This is an example</h1> | |
| </div> |
I hereby claim:
To claim this, I am signing this object:
| Verifying my Blockstack ID is secured with the address 1EhhD4U6HTVJ5vFzvL5MnF5rstuZj5RfUu https://explorer.blockstack.org/address/1EhhD4U6HTVJ5vFzvL5MnF5rstuZj5RfUu |
| /* Generates a random text file using only characters from the keyboard. | |
| Change the i variable for shorter or longer lengths. */ | |
| #include <iostream> | |
| #include <fstream> | |
| #include <string> | |
| #include <cstdlib> | |
| #include <ctime> | |
| using namespace std; |
| #include <iostream> | |
| using namespace std; | |
| #include "dList.cpp" | |
| int main(){ | |
| const int size = 10; | |
| float avgTime[size] = { 93, 99, 96, 97, 95,100, 94, 98, 92, 98}; | |
| float fuelEfficiency[size] = {194,201,196,156,193,100,194,198,200,140}; | |
| dList dl = dList(avgTime,fuelEfficiency,size); |
| #include <iostream> | |
| using namespace std; | |
| #include "dList.cpp" | |
| int main(void) { | |
| cout << "Test one:" << endl << endl; | |
| float times[1] = {100}; | |
| float fuel[1] = {100}; |
| include <iostream> | |
| using namespace std; | |
| struct thing { | |
| int i; | |
| string j; | |
| } | |
| int main(void) { | |
| thing a = new thing; |
I hereby claim:
To claim this, I am signing this object:
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <string.h> | |
| #define KRED "\x1B[31m" | |
| #define KGRN "\x1B[32m" | |
| #define KNRM "\x1B[0m" | |
| int main(int argv, char **argc) { | |
| if (argv != 3) { |