Skip to content

Instantly share code, notes, and snippets.

View iiey's full-sized avatar

nemo iiey

View GitHub Profile
@iiey
iiey / README.md
Created March 24, 2021 21:01 — forked from akshaykhadse/README.md
C++ Google Colab Plugin

C++ Google Colab Plugin

Example notebook can be found here.

@iiey
iiey / getopt_long_example.cpp
Created May 2, 2018 09:50 — forked from ashwin/getopt_long_example.cpp
How to parse options in C++ using getopt_long
#include <getopt.h>
#include <iostream>
int num = -1;
bool is_beep = false;
float sigma = 2.034;
std::string write_file = "default_file.txt";
void PrintHelp()
{