- Dell Motherboard
- Dell RAM 3x2GB DDR3 SDRAM
- Intel Core i7 2.93 GHz
- ASUS NVIDIA 970 GTX
- Samsung Evo 850 SSD
This file contains 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
Hello again. |
This file contains 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
// Jyt is a REPL for C++ | |
// You can write code interactively | |
// Highlight some code and press alt-enter to execute it | |
// For example: | |
auto x = "hello world"; | |
// Now you can query the value in the terminal on the right | |
// e.g. "x" |
This file contains 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 <iostream> | |
#include <thread> | |
#include <chrono> | |
using namespace std::literals::chrono_literals; | |
for (int i = 0; i < 5; i++) { | |
std::cout << "Zzz... " << std::endl; | |
std::this_thread::sleep_for(1s); | |
} |
The location of our frame serial numbers will be on the top of the seat tube facing to the rear of the bicycle. This does not apply to models with 531 seat tubes which will be numbered under the bottom bracket. Markings show the source of manufacture, approximate date of manufacture and unique number of each frame manufactured in any 10 year cycle.
Size of letters and numbers 3/16" high, to match diameter of tubes. The complete stamp contains nine digits.
FIRST SYMBOL Denotes Location of Manufacture
Symbol | Location
This file contains 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 <iostream> | |
#include <string> | |
int main() { | |
auto f = []() { | |
return 17; | |
}; | |
std::cout << f() << std::endl; | |
std::cout << &f << std::endl; | |
std::cout << sizeof(f) << std::endl; |
This file contains 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
// Jyt is a REPL for C++ | |
// You can write code interactively | |
// Highlight some code and press alt-enter to execute it | |
// For example: | |
auto x = "hello world"; | |
// Now you can query the value in the terminal on the right | |
// e.g. "x" |
This file contains 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 <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <ctype.h> | |
#define TINYFD_NOLIB | |
#ifdef _WIN32 | |
#pragma warning(disable:4996) /* allows usage of strncpy, strcpy, strcat, sprintf, fopen */ | |
#pragma warning(disable:4100) /* allows usage of strncpy, strcpy, strcat, sprintf, fopen */ |
This file contains 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
/* Performance measurements of a fast collection type for polymorphic objects. | |
* | |
* Copyright 2014-2015 Joaquin M Lopez Munoz. | |
* Distributed under the Boost Software License, Version 1.0. | |
* (See accompanying file LICENSE_1_0.txt or copy at | |
* http://www.boost.org/LICENSE_1_0.txt) | |
*/ | |
#include <algorithm> | |
#include <array> |
This file contains 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 <iostream> | |
#include <fstream> | |
#include <sys/stat.h> | |
#include <unistd.h> | |
using namespace std; | |
class Brainfuck { | |
public: | |
char data[30000]; |
OlderNewer