From 90e81f77133aa2996bcd5db91c961a8411ed9059 Mon Sep 17 00:00:00 2001 From: waldo Date: Wed, 10 Nov 2021 14:19:51 +0100 Subject: [PATCH 1/3] Added info on homepage --- content/_index.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/content/_index.md b/content/_index.md index adae7707..352cfda5 100644 --- a/content/_index.md +++ b/content/_index.md @@ -28,10 +28,10 @@ For some history on this, waldo's posts [Code is Poetry](https://www.waldo.be/20 #### Behind This Project This project is a Microsoft Business Central Community initiative with support from the Microsoft Business Central team. The founding community members are -* [Waldo](https://twitter.com/waldo1001) -* [Arend-Jan Kauffmann](https://twitter.com/ajkauffmann) -* [Henrik Helgesen](https://twitter.com/TheDoubleH) -* [Jeremy Vyska](https://twitter.com/JeremyVyska) +* waldo ([Twitter](https://twitter.com/waldo1001), [Blog](https://www.waldo.be), [GitHub](https://github.com/waldo1001)) +* Arend-Jan Kauffmann ([Twitter](https://twitter.com/ajkauffmann), [Blog](https://www.kauffmann.nl/), [GitHub](https://github.com/ajkauffmann)) +* Henrik Helgesen ([Twitter](https://twitter.com/TheDoubleH), [GitHub](https://github.com/thedoubleh)) +* Jeremy Vyska ([Twitter](https://twitter.com/JeremyVyska),[Blog](https://jeremy.vyska.info/articles), [GitHub](https://github.com/JeremyVyska)) #### Contibuting From c5b0683f031e61e6bee90a72c02a49d518a2316c Mon Sep 17 00:00:00 2001 From: waldo Date: Wed, 10 Nov 2021 15:38:31 +0100 Subject: [PATCH 2/3] First draft for a template for Patterns --- .../Contributing/Templates/Patterns/index.md | 43 +++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 content/Contributing/Templates/Patterns/index.md diff --git a/content/Contributing/Templates/Patterns/index.md b/content/Contributing/Templates/Patterns/index.md new file mode 100644 index 00000000..d5e17d4e --- /dev/null +++ b/content/Contributing/Templates/Patterns/index.md @@ -0,0 +1,43 @@ ++++ +title = "Title of the pattern" +weight = 1180 ++++ +This is a guideline, some parts are optional (if there's no content, remove the whole paragraph). + +<_Your name here in italics, plus your company name if you wish_\> + +## Abstract + +Short, descriptive and easy to remember description of this pattern. + +## Context: + +Sets the stage where the pattern takes place. 1-2 sentences. + +## Problem: + +What happens before this pattern is used? How can it go wrong? 1-5 lines. + +## Description + +In depth description on what this Pattern is all about +- basic components +- how the interact +- steps to implement +- considerations to take + +## Usage: + +If applicable: where is it used in an app. You can refer to any app, BaseApp, or a (public) ISV app. + +## Benefits: + +1-2 sentences: what did you just solve + +## When not to use + +Usually, there are occasions where NOT to implement the pattern. List the disadvantages of this pattern here. + +## List of references + +Youtube-link? BaseApp? Tweet? ... From f4832ae49fa09cbc445f3f8417ba43274301a7cc Mon Sep 17 00:00:00 2001 From: waldo Date: Wed, 10 Nov 2021 15:55:39 +0100 Subject: [PATCH 3/3] First draft for Guideline template --- .../Templates/Guidelines/index.md | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 content/Contributing/Templates/Guidelines/index.md diff --git a/content/Contributing/Templates/Guidelines/index.md b/content/Contributing/Templates/Guidelines/index.md new file mode 100644 index 00000000..a4229f71 --- /dev/null +++ b/content/Contributing/Templates/Guidelines/index.md @@ -0,0 +1,29 @@ ++++ +title = "Title of the Guideline" +weight = 1180 ++++ +This is a guideline, some parts are optional (if there's no content, remove the whole paragraph). + +<_Your name here in italics, plus your company name if you wish_\> + +## Abstract + +Short, descriptive and easy to remember description of this pattern. + +## Description + +In depth description on what this Pattern is all about +- basic components +- how the interact +- steps to implement +- considerations to take + +## Good Example +```al +PutCodeblocksHere() +``` + +## Bad Example +```al +PutCodeblocksHere() +``` \ No newline at end of file