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:
- date:
de: 2024
en: 2024
de: 2022--2023
en: 2022--2023
title:
de: Co-Autor, Formalisierung und sozialer Schutz, World Development
en: Co-Author, Formalization and social protection, World Development
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.'
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.'
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. (forthcoming). Social protection, productivity and formalization among low- and middle-income countries: a scoping review of the literature. World Development.'
bullets:
- de: Quantitative Analyse der Verknüpfungen von sozialer Absicherung, Formalisierung und Produktivität
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"
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
- 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:
de: 2022
en: 2022
@ -112,7 +83,7 @@ experience:
de: 2022
en: 2022
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
publication:
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],
lang: str = "en",
headline: str = "",
subdued_publications: bool = True, # slightly off-color presentation
bulletpoints_show: bool = True,
subdued_publications: bool = True,
):
if "experience" not in data:
return ""
@ -37,7 +36,6 @@ def experience_to_md(
if "publication" in exp:
md += _publication_md(exp["publication"][lang], subdued_publications)
if bulletpoints_show:
for point in exp["bullets"]:
md += f"* {point[lang]}\n"
md += "\n\n"

View file

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

View file

@ -13,7 +13,8 @@ right-column:
---
```{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 content

View file

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