From ab4537df45be51bac21da588589cc2eb612f0a80 Mon Sep 17 00:00:00 2001 From: Daniel Czarnievicz <16988051+daczarne@users.noreply.github.com> Date: Sat, 27 Sep 2025 21:50:44 +0200 Subject: [PATCH 01/24] Updates editor config --- .editorconfig | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/.editorconfig b/.editorconfig index e147748..c6e9ab1 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,18 +1,19 @@ -# Top-most EditorConfig file root = true -# Unix-style newlines with a newline ending every file [*] +indent_style = space +indent_size = 2 end_of_line = lf -insert_final_newline = true charset = utf-8 -indent_size = 2 -indent_style = space +trim_trailing_whitespace = true +insert_final_newline = true +max_line_length = 120 -# HTML [*.{html}] trim_trailing_whitespace = false -# YAML, CSS, JavaScript, JSON -[*.{yaml, yml, css, js, json}] -trim_trailing_whitespace = true +[*.json] +indent_size = 4 + +[*.jsonc] +indent_size = 4 From 9190536176eb838e50849d81d383e5572675d379 Mon Sep 17 00:00:00 2001 From: Daniel Czarnievicz <16988051+daczarne@users.noreply.github.com> Date: Sat, 27 Sep 2025 21:50:51 +0200 Subject: [PATCH 02/24] Updates CSpell --- .cspell/names.txt | 3 +++ cspell.json | 60 +++++++++++++++++++++++++++++++++++++++++------ 2 files changed, 56 insertions(+), 7 deletions(-) create mode 100644 .cspell/names.txt diff --git a/.cspell/names.txt b/.cspell/names.txt new file mode 100644 index 0000000..63757c5 --- /dev/null +++ b/.cspell/names.txt @@ -0,0 +1,3 @@ +Czarnievicz +Hamedani +Shafer diff --git a/cspell.json b/cspell.json index bdce65a..aa012c1 100644 --- a/cspell.json +++ b/cspell.json @@ -1,14 +1,60 @@ { "version": "0.2", - "ignorePaths": [], - "dictionaryDefinitions": [], - "dictionaries": [], + "language": "en", + "ignorePaths": [ + ".gitattributes", + ".gitignore", + "**/.git/**", + ], + "dictionaryDefinitions": [ + { + "name": "names", + "path": "./.cspell/names.txt", + "addWords": true, + }, + ], + "dictionaries": [ + "names", + ], "words": [], "ignoreWords": [ - "Czarnievicz", "Dockerfiles", - "Hamedani", - "Shafer" ], - "import": [] + "overrides": [ + { + "filename": "**/*.py", + "languageId": "python", + }, + { + "filename": "**/*.yaml", + "languageId": "yaml", + }, + { + "filename": "**/*.yml", + "languageId": "yaml", + }, + { + "filename": "**/*.md", + "languageId": "markdown", + }, + { + "filename": "**/*.txt", + "languageId": "plaintext", + }, + { + "filename": "**/*.zsh", + "languageId": "shellscript", + }, + { + "filename": "**/*.toml", + "languageId": "toml", + }, + ], + "ignoreRegExpList": [ + // Ignores UUIDs + "\\b[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}\\b", + // Ignores hashes in venv names + "\\b[A-Z0-9]{6,}\\b", + ], + "useGitignore": false, } From c28030cb7d3e8abd918c158e6987fbf8c28b03a2 Mon Sep 17 00:00:00 2001 From: Daniel Czarnievicz <16988051+daczarne@users.noreply.github.com> Date: Sat, 27 Sep 2025 21:52:48 +0200 Subject: [PATCH 03/24] Updates .gitignore --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 597593f..0467917 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,2 @@ -# Mac files .DS_Store +.git/ From 7fafed73d91f9792c616a087f0be43259dec41da Mon Sep 17 00:00:00 2001 From: Daniel Czarnievicz <16988051+daczarne@users.noreply.github.com> Date: Sat, 27 Sep 2025 21:54:37 +0200 Subject: [PATCH 04/24] Update index content --- index.html | 68 ++++++++++++++++++------------------------------------ 1 file changed, 23 insertions(+), 45 deletions(-) diff --git a/index.html b/index.html index 6c39917..caa7e93 100644 --- a/index.html +++ b/index.html @@ -25,72 +25,54 @@
- On this page you can find some personal notes on the use of Git - and GitHub. Though the notes themselves were created by me, the - content in them is the result of courses that I've taken on the - subject, books I've read, and countless YouTube videos, blog posts - and StackOverflow questions. These notes should not be considered - as a replacement for engaging with those resources. + On this page you can find some personal notes on the use of Git and GitHub. Though the notes themselves + were created by me, the content in them is the result of courses that I've taken on the subject, books + I've read, and countless YouTube videos, blog posts and StackOverflow questions. These notes should not + be considered as a replacement for engaging with those resources.
- Some resources that I especially recommend and whose influence can - be found all across these notes are: + Some resources that I especially recommend and whose influence can be found all across these notes are:
- Read up! Enjoy! And when things don't work...worry not, for you - are not alone... + Read up! Enjoy! And when things don't work...worry not, for you are not alone...