From 010e1dd03805795faa6ae44c9e2712fedfd8639f Mon Sep 17 00:00:00 2001 From: Bibin Muttappillil Date: Fri, 14 Oct 2022 11:51:40 +0200 Subject: [PATCH] Initial commit --- .gitignore | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ README.md | 4 ++++ 2 files changed, 52 insertions(+) create mode 100644 .gitignore create mode 100644 README.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..892a340 --- /dev/null +++ b/.gitignore @@ -0,0 +1,48 @@ +# ---> JupyterNotebooks +# gitignore template for Jupyter Notebooks +# website: http://jupyter.org/ + +.ipynb_checkpoints +*/.ipynb_checkpoints/* + +# IPython +profile_default/ +ipython_config.py + +# Remove previous ipynb_checkpoints +# git rm -r .ipynb_checkpoints/ + +# ---> C++ +# Prerequisites +*.d + +# Compiled Object files +*.slo +*.lo +*.o +*.obj + +# Precompiled Headers +*.gch +*.pch + +# Compiled Dynamic libraries +*.so +*.dylib +*.dll + +# Fortran module files +*.mod +*.smod + +# Compiled Static libraries +*.lai +*.la +*.a +*.lib + +# Executables +*.exe +*.out +*.app + diff --git a/README.md b/README.md new file mode 100644 index 0000000..6b71331 --- /dev/null +++ b/README.md @@ -0,0 +1,4 @@ +# cpp-jupyter + +Repo for Jupyter notebooks in C++ (see https://jupyter.org/try). +Can be opened with https://mybinder.org/ \ No newline at end of file