From 96baccd2a4e8e56a3b23242c2f2d39c0b2af761b Mon Sep 17 00:00:00 2001 From: Buduf Date: Mon, 20 Dec 2021 14:10:50 +0100 Subject: [PATCH] Initial commit --- .gitignore | 45 +++++++++++++++++++++++++++++++++++++++++++++ README.md | 3 +++ 2 files changed, 48 insertions(+) create mode 100644 .gitignore create mode 100644 README.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..58731a7 --- /dev/null +++ b/.gitignore @@ -0,0 +1,45 @@ +# ---> 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 + +# ---> VisualStudioCode +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json +*.code-workspace + +# Local History for Visual Studio Code +.history/ + diff --git a/README.md b/README.md new file mode 100644 index 0000000..176c995 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# AdventOfCode + +https://adventofcode.com/ \ No newline at end of file