Skip to content

Commit

Permalink
Further JSON and content improvement
Browse files Browse the repository at this point in the history
  • Loading branch information
stijn-dejongh committed Aug 24, 2024
1 parent 3bfe825 commit b09fbe0
Show file tree
Hide file tree
Showing 5 changed files with 48 additions and 9 deletions.
2 changes: 1 addition & 1 deletion content/en/practices/AMMERSE_impact_analysis.md
Original file line number Diff line number Diff line change
Expand Up @@ -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."},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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/"}
]
+++

Expand Down
2 changes: 1 addition & 1 deletion content/nl/practices/AMMERSE_impact_analysis.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ tags = [
"analysis",
"evaluation",
"decision-making",
"systemic-thinking",
"systems thinking",
"trade-offs",
"AMMERSE"
]
Expand Down
29 changes: 29 additions & 0 deletions data/glossary.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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"
Expand Down
22 changes: 16 additions & 6 deletions layouts/practices/single.json
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}",
Expand Down Expand Up @@ -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"
}
Expand All @@ -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}}
Expand All @@ -57,20 +62,25 @@
{
"rel": "related",
"type": "GET",
"href": "/concepts/{{ $value }}"
"href": "{{ $siteUrl }}/concepts/{{ $value }}"
} {{ if lt $index (math.Sum (len $relatedConcepts) -1) }},{{ end }}
{{end}}
{{end}}
],
"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}}
Expand Down

0 comments on commit b09fbe0

Please sign in to comment.