This gist is part of a blog post. Check it out at:
http://jasonrudolph.com/blog/2011/08/09/programming-achievements-how-to-level-up-as-a-developer
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <openssl/x509.h> | |
#include <openssl/hmac.h> | |
void | |
hmac_sha256( | |
const unsigned char *text, /* pointer to data stream */ |
//GenericSearch.h | |
#include <vector> | |
#include <algorithm> | |
#include <iostream> | |
using std::cout; | |
template<typename T> | |
class N |
#include "BasicExcel.hpp" | |
#include <cstdlib> //for exit function | |
#include <fstream> | |
#include <iostream> | |
using namespace std; | |
void convert(BasicExcel&); | |
int main() |
This gist is part of a blog post. Check it out at:
http://jasonrudolph.com/blog/2011/08/09/programming-achievements-how-to-level-up-as-a-developer