From c620254f2bbf00c11e8d00da04001bcd66ca3da8 Mon Sep 17 00:00:00 2001 From: Rosia E Evans Date: Sun, 28 May 2023 22:02:52 +0100 Subject: [PATCH] Initial commit --- .gitattributes | 2 ++ .gitignore | 32 ++++++++++++++++++++++++++++++++ README.md | 2 ++ 3 files changed, 36 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 README.md diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..dfe0770 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +# Auto detect text files and perform LF normalization +* text=auto diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..259148f --- /dev/null +++ b/.gitignore @@ -0,0 +1,32 @@ +# 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..fc51d38 --- /dev/null +++ b/README.md @@ -0,0 +1,2 @@ +# BlogParser + PoC of a parser for a blog website I want to make.