Compare commits

..

No commits in common. "440c4417c5cf6b5ed7477da415cc9e27a00fa8f3" and "23e5e013ccbff961e8db1657435e498ed0230ffc" have entirely different histories.

6 changed files with 821 additions and 1227 deletions

View file

@ -35,50 +35,21 @@ summary:
experience: experience:
- date: - date:
de: 2024 de: 2022--2023
en: 2024 en: 2022--2023
title: title:
de: Co-Autor, Formalisierung und sozialer Schutz, World Development de: Co-Autor, Formalisierung und sozialer Schutz, World Development
en: Co-Author, Formalization and social protection, World Development en: Co-Author, Formalization and social protection, World Development
publication: publication:
de: 'Torm, N., \& Oehme, M. (2024). Social protection and formalization in low-and middle-income countries: A scoping review of the literature. World Development, 181.' de: 'Torm, N., \& Oehme, M. (unveröffentlicht). Social protection, productivity and formalization among low- and middle-income countries: a scoping review of the literature. World Development.'
en: 'Torm, N., \& Oehme, M. (2024). Social protection and formalization in low-and middle-income countries: A scoping review of the literature. World Development, 181.' en: 'Torm, N., \& Oehme, M. (forthcoming). Social protection, productivity and formalization among low- and middle-income countries: a scoping review of the literature. World Development.'
bullets: bullets:
- de: Quantitative Analyse der Verknüpfungen von sozialer Absicherung, Formalisierung und Produktivität - de: Quantitative Analyse der Verknüpfungen von sozialer Absicherung, Formalisierung und Produktivität
en: Quantitative analysis of connections between sozial protection, formalization and productivity en: Quantitative analysis of connections between sozial protection, formalization and productivity
- de: "Durchführung eines 'Scoping Review': Umfassende Quellenrecherche im Umfang von 2000 Überprüfungskandidaten" - de: "Durchführung eines 'Scoping Review': Umfassende Quellenrecherche im Umfang von 2000 Überprüfungskandidaten"
en: "Implementation of a 'scoping review': Comprehensive source research to the extent of 2000 candidates" en: "Implementation of a 'scoping review': Comprehensive source research to the extent of 2000 candidates"
- de: Editorielle Anpassungen von einem Arbeitspapier auf eine Veröffentlichung durch wissenschaftlichen Verlag - de: Editorielle Anpassungen von einem Arbeitspapier auf eine Veröffentlichung durch zeitschriftlichen Verlag
en: Editorial adaptation from a working paper towards a journal article ready for publishing en: Editorial adaptation from a working paper towards a journal article ready for publishing
- date:
de: 2023--2024
en: 2023--2024
title:
de: Externer Forscher, Ungleichheiten auf dem Arbeitsmarkt
en: External researcher, Inequalities on the Labour market
publication:
de: Niño-Zarazúa, M., Tejería Martínez, M., \& Oehme, M. (unveröffentlicht). Addressing Inequalities in the World of Work. ILO.
en: Niño-Zarazúa, M., Tejería Martínez, M., \& Oehme, M. (forthcoming). Addressing Inequalities in the World of Work. ILO.
bullets:
- de: Zusammenstellung eines systematischen Scoping Review von 4000 globalen Kandidaten für Arbeitsmarktanalysen
en: Compiling a systematic scoping review of 4000 global labour market analysis candidates
- de: Durchführung einer quantitativen Quellenanalyse unter Verwendung neuer Analysen zur Studienvalidität
en: Conducting quantitative source analysis using novel study validity assertions
- de: Erstellung einer umfassenden qualitativen Synthese aus 52 relevanten Arbeitsmarktanalysen
en: Creating a comprehensive qualitative synthesis of 52 relevant labour market analyses
- date:
de: 2023
en: 2023
title:
de: Consultant, Forschungsarbeit für nachhaltige Beschaffung in internationaler Logistik
en: Consultant, Research on sustainable procurement in international logistics
bullets:
- de: Qualitative Gegenüberstellung verschiedener Forschungsperspektiven im Lieferkettenmanagement
en: Qualitative comparison of various research strands within supply chain management
- de: Analyse von Beschaffungsteilprozessen als lineare, zyklische und entscheidungsorientierte Modelle
en: Analysis of procurement sub-processes as linear, cyclic and decision-oriented models
- de: Klare Abgrenzung der Antriebe und Hindernisse für die Erreichung von Nachhaltigkeit in der Beschaffung
en: Clear delineation of primary drivers and barriers of achieving sustainability in procurement
- date: - date:
de: 2022 de: 2022
en: 2022 en: 2022
@ -112,7 +83,7 @@ experience:
de: 2022 de: 2022
en: 2022 en: 2022
title: title:
de: Forschungsassistenz, Ungleichheitstrends Reduzieren in Entwicklungsprojekten, UNU-WIDER de: Forschungsassistenz, Entwicklungsprojekte zur Reduzierung von Ungleichheitstrends, UNU-WIDER
en: Research Assistant, Development projects to reduce inequality trends, UNU-WIDER en: Research Assistant, Development projects to reduce inequality trends, UNU-WIDER
publication: publication:
de: Niño-Zarazúa, M., \& Morabito, C. (unveröffentlicht). Assessing the potential distributional impacts of development interventions. UNU-WIDER. de: Niño-Zarazúa, M., \& Morabito, C. (unveröffentlicht). Assessing the potential distributional impacts of development interventions. UNU-WIDER.

1990
poetry.lock generated

File diff suppressed because it is too large Load diff

View file

@ -23,8 +23,7 @@ def experience_to_md(
data: dict[str, Any], data: dict[str, Any],
lang: str = "en", lang: str = "en",
headline: str = "", headline: str = "",
subdued_publications: bool = True, # slightly off-color presentation subdued_publications: bool = True,
bulletpoints_show: bool = True,
): ):
if "experience" not in data: if "experience" not in data:
return "" return ""
@ -37,9 +36,8 @@ def experience_to_md(
if "publication" in exp: if "publication" in exp:
md += _publication_md(exp["publication"][lang], subdued_publications) md += _publication_md(exp["publication"][lang], subdued_publications)
if bulletpoints_show: for point in exp["bullets"]:
for point in exp["bullets"]: md += f"* {point[lang]}\n"
md += f"* {point[lang]}\n"
md += "\n\n" md += "\n\n"
return md return md

View file

@ -4,9 +4,7 @@ version = "0.1.0"
description = "My personal curriculum vitae" description = "My personal curriculum vitae"
authors = ["Marty Oehme <marty.oehme@gmail.com>"] authors = ["Marty Oehme <marty.oehme@gmail.com>"]
license = "GPLv3" license = "GPLv3"
packages = [ readme = "README.md"
{ include = "processing"}
]
[tool.poetry.dependencies] [tool.poetry.dependencies]
python = "^3.11" python = "^3.11"

View file

@ -13,7 +13,8 @@ right-column:
--- ---
```{python} ```{python}
from IPython.display import display, Markdown from IPython.core.display import Markdown
from IPython.display import display
from processing import yml from processing import yml
from processing import content from processing import content

View file

@ -21,11 +21,11 @@ from processing import content
data=yml.parse("content.yml") data=yml.parse("content.yml")
lang="en" lang="en"
``` ```
```{python} ```{python}
display(Markdown(content.summary_to_md(data, headline="# Summary", lang=lang))) display(Markdown(content.summary_to_md(data, headline="# Summary", lang=lang)))
``` ```
```{python} ```{python}
display(Markdown( display(Markdown(
content.experience_to_md(data, headline="# Professional experience", lang=lang))) content.experience_to_md(data, headline="# Professional experience", lang=lang)))