diff --git a/content/en/practices/AMMERSE_impact_analysis.md b/content/en/practices/AMMERSE_impact_analysis.md index 34a3bd5e..40adbde2 100644 --- a/content/en/practices/AMMERSE_impact_analysis.md +++ b/content/en/practices/AMMERSE_impact_analysis.md @@ -13,7 +13,7 @@ categories = [ "learning" ] tags = [ - "analysis", "evaluation", "decision-making", "systemic-thinking", "trade-offs", "AMMERSE" + "analysis", "evaluation", "decision-making", "systems thinking", "trade-offs", "AMMERSE" ] ammerse = [ {name = "agile", delta = "-0.35", rationale = "The analysis is time-consuming and may hinder agility by slowing down decision-making processes. The potential indirect support for better decisions is not enough to offset this."}, diff --git a/content/en/practices/take_stock_of_your_knowledge_portfolio.md b/content/en/practices/take_stock_of_your_knowledge_portfolio.md index 1393e91a..ec4658f1 100644 --- a/content/en/practices/take_stock_of_your_knowledge_portfolio.md +++ b/content/en/practices/take_stock_of_your_knowledge_portfolio.md @@ -44,7 +44,7 @@ further_exploration = [ {type="tool", id="830947a8-b8c1-4fb1-b1ea-1468060d607c"}, {type="tool", id="7202b347-87f0-43af-b011-e6ee30a8cff7"}, {type="raw", author="Kustagi, R.", year="2023", title="A Guide To Growing Your Technical Knowledge Portfolio", site="DZone.com", link="https://dzone.com/articles/a-guide-to-growing-your-technical-knowledge-portfo" }, - {type="raw" , author="StackOverflow Community", year="2023", title="Stack Overflow Annual Developer Survey", site="StackOverflow.com", link="https://survey.stackoverflow.com/"} + {type="raw", author="StackOverflow Community", year="2024", title="Stack Overflow Annual Developer Survey", site="StackOverflow.com", link="https://stackoverflow.blog/2024/07/24/developers-want-more-more-more-the-2024-results-from-stack-overflow-s-annual-developer-survey/"} ] +++ diff --git a/content/nl/practices/AMMERSE_impact_analysis.md b/content/nl/practices/AMMERSE_impact_analysis.md index 49e123d2..96100900 100644 --- a/content/nl/practices/AMMERSE_impact_analysis.md +++ b/content/nl/practices/AMMERSE_impact_analysis.md @@ -14,7 +14,7 @@ tags = [ "analysis", "evaluation", "decision-making", - "systemic-thinking", + "systems thinking", "trade-offs", "AMMERSE" ] diff --git a/data/glossary.toml b/data/glossary.toml index 217acfaf..9a818231 100644 --- a/data/glossary.toml +++ b/data/glossary.toml @@ -694,6 +694,21 @@ Example: __"We already spent two months working on getting this software to func aliases = ["Escalation of commitment "] references = [] +[[terminology]] +name = "Systems Thinking" +abbreviation = "" +domain = "Learning" +description = """ +Systems Thinking is an approach to understanding and solving complex problems by viewing them as parts of an interconnected whole rather than in isolation. It involves recognizing patterns, relationships, and feedback loops within systems to better anticipate the impact of decisions and actions, thereby enabling more holistic and effective solutions. +""" +aliases = ["Holistic Thinking", "Systems Approach"] +references = [ + { title = "The Fifth Discipline: The Art & Practice of The Learning Organization by Peter Senge", link = "https://www.amazon.com/Fifth-Discipline-Practice-Learning-Organization/dp/0385517254" }, + { title = "Thinking in Systems: A Primer by Donella H. Meadows", link = "https://www.amazon.com/Thinking-Systems-Donella-H-Meadows/dp/1603580557" }, + { title = "Systems Thinking For Social Change: A Practical Guide to Solving Complex Problems, Avoiding Unintended Consequences, and Achieving Lasting Results by David Peter Stroh", link = "https://www.amazon.com/Systems-Thinking-Social-Change-Consequences/dp/160358580X" } +] + + [[terminology]] name = "Non-Preemptive scheduling" domain = "software development" @@ -823,6 +838,20 @@ references = [ { title = "Polymath on wikipedia", link = "https://en.wikipedia.org/wiki/Polymath" } ] +[[terminology]] +name = "Prioritization" +abbreviation = "" +domain = "Productivity" +description = """ +Prioritization is the process of arranging tasks, activities, or projects in order of importance or urgency to ensure that the most critical and impactful work is completed first. It is a key skill in productivity, helping individuals and teams manage time and resources efficiently by focusing on what truly matters and deferring or delegating less critical tasks. +""" +aliases = ["Task Ranking", "Priority Setting"] +references = [ + { title = "Essentialism: The Disciplined Pursuit of Less by Greg McKeown", link = "https://www.amazon.com/Essentialism-Disciplined-Pursuit-Greg-McKeown/dp/0804137382" }, + { title = "The 7 Habits of Highly Effective People by Stephen R. Covey", link = "https://www.amazon.com/Habits-Highly-Effective-People-Powerful/dp/0743269519" }, + { title = "Eat That Frog!: 21 Great Ways to Stop Procrastinating and Get More Done in Less Time by Brian Tracy", link = "https://www.amazon.com/Eat-That-Frog-Great-Procrastinating/dp/162656941X" } +] + [[terminology]] name = "objection" domain = "cooperation" diff --git a/layouts/practices/single.json b/layouts/practices/single.json index 8f31a4c6..82727b61 100644 --- a/layouts/practices/single.json +++ b/layouts/practices/single.json @@ -4,6 +4,11 @@ {{ $furtherExploration := .Params.further_exploration }} {{ $relatedPractices := .Params.related_practices }} {{ $relatedConcepts := .Params.related_concepts }} +{{ $siteUrl := .Site.BaseURL }} + +{{ if (hasPrefix $siteUrl "//") }} + {{ $siteUrl = (replace $siteUrl "//" "http://") }} +{{ end }} { "id": "{{ .Params.UUID }}", @@ -32,12 +37,12 @@ ], "links": [ { - "href": "/practices/{{ .Params.UUID }}", + "href": "{{ $siteUrl }}/practices/{{ .Params.UUID }}", "rel": "self", "type": "GET" }, { - "href": "{{ .RelPermalink }}", + "href": "{{ $siteUrl }}/{{ .RelPermalink }}", "rel": "alternate", "type": "GET" } @@ -48,7 +53,7 @@ { "rel": "related", "type": "GET", - "href": "/practices/{{ $value }}" + "href": "{{ $siteUrl }}/practices/{{ $value }}" } {{ if lt $index (math.Sum (len $relatedPractices) -1) }},{{ end }} {{end}}{{if ge (len $relatedPractices) 1 }},{{end}} {{end}} @@ -57,7 +62,7 @@ { "rel": "related", "type": "GET", - "href": "/concepts/{{ $value }}" + "href": "{{ $siteUrl }}/concepts/{{ $value }}" } {{ if lt $index (math.Sum (len $relatedConcepts) -1) }},{{ end }} {{end}} {{end}} @@ -65,12 +70,17 @@ "references": [ {{ range $index, $value := $furtherExploration }} {{ if (eq $value.type "raw") }} + { + "rel": "appendix", + "type": "GET", + "href": "{{ $value.link }}" + } {{ if lt $index (math.Sum (len $furtherExploration ) -1) }},{{ end }} {{ else }} { "rel": "appendix", "type": "GET", - {{ if (eq $value.type "biblio") }}"href": "/books/{{ $value.id }}"{{end}} - {{ if (eq $value.type "tool") }}"href": "/tools/{{ $value.id }}"{{end}} + {{ if (eq $value.type "biblio") }}"href": "{{ $siteUrl }}/books/{{ $value.id }}"{{end}} + {{ if (eq $value.type "tool") }}"href": "{{ $siteUrl }}/tools/{{ $value.id }}"{{end}} } {{ if lt $index (math.Sum (len $furtherExploration ) -1) }},{{ end }} {{ end }} {{end}}