Skip to content

Instantly share code, notes, and snippets.

View timoheijne's full-sized avatar
😎

Timo timoheijne

😎
  • Accenture
  • The Netherlands
View GitHub Profile
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "http://example.com/example.json",
"type": "object",
"title": "The root schema",
"description": "The root schema comprises the entire JSON document.",
"default": {},
"examples": [
{
"title": "The name of the project",

Keybase proof

I hereby claim:

  • I am timoheijne on github.
  • I am timoheijne (https://keybase.io/timoheijne) on keybase.
  • I have a public key ASBkKzA__0mjEWsqUuyhfmd2bqxpxvY6Ld_JpOX9Nfw8-Qo

To claim this, I am signing this object:

@timoheijne
timoheijne / main.cpp
Created March 16, 2018 13:53
Timo's Stack Stuff
#include <iostream>
#include "stack.h"
int main() {
Stack<int> stackTest = Stack<int>();
std::cout << std::endl << "Massive Push Test" << std::endl;
for (int i = 0; i < 50; ++i) {
stackTest.Push(i);
std::cout << i << " - ";