Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion content/glossary/_create_glossaries.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import json
import pandas as pd
import os
import shutil
from io import StringIO

script_dir = os.path.dirname(os.path.abspath(__file__))
Expand Down Expand Up @@ -208,7 +209,10 @@ def clean_filename(title, max_length=200):
# Create markdown files
for language_name, entries in formatted_data.items():
language_dir = os.path.join(script_dir, language_name)
os.makedirs(language_dir, exist_ok=True)
# Remove existing directory to ensure deleted entries don't persist
if os.path.exists(language_dir):
shutil.rmtree(language_dir)
os.makedirs(language_dir)

print(f"Creating {len(entries)} markdown files for {language_name}")

Expand Down
4 changes: 2 additions & 2 deletions content/glossary/apa_lookup.json
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@
"Flake2020": "Flake, J. K., & Fried, E. I. (2020). Measurement schmeasurement: Questionable measurement practices and how to avoid them. Advances in Methods and Practices in Psychological Science, 3(4), 456–465. https://doi.org/10.1177/2515245920952393",
"FletcherWatson2019": "Fletcher-Watson, S., Adams, J., Brook, K., Charman, T., Crane, L., Cusack, J., Leekam, S., Milton, D., Parr, J. R., & Pellicano, E. (2019). Making the Future Together: Shaping Autism Research Through Meaningful Participation. Autism, 23(4), 943–953.",
"ForemanMackey2013": "Foreman-Mackey, D., Hogg, D. W., Lang, D., & Goodman, J. (2013). emcee: The MCMC Hammer. Publications of the Astronomical Society of the Pacific, 125(925), 306–312. https://doi.org/10.1086/670067",
"Forrt2019": "Forrt. (2019). Introducing a Framework for Open and Reproducible Research Training (FORRT). Open Science Framework. https://doi.org/10.31219/osf.io/bnh7p",
"FORRT2019": "Forrt. (2019). Introducing a Framework for Open and Reproducible Research Training (FORRT). Open Science Framework. https://doi.org/10.31219/osf.io/bnh7p",
"FORRT2021": "FORRT. (2021). Welcome to FORRT. Framework for Open and Reproducible Research Training. https://forrt.org",
"ForscherEtAl2022": "Forscher, P. S., Wagenmakers, E.-J., Coles, N. A., Silan, M. A., Dutra, N., Basnight-Brown, D., & IJzerman, H. (2022). The Benefits, Barriers, and Risks of Big-Team Science. Perspectives on Psychological Science, 0(0). https://doi.org/10.1177/17456916221082970",
"FosterDeardorff2017": "Foster, E. D., & Deardorff, A. (2017). Open science framework (OSF). Journal of the Medical Library Association, 105(2), 203. https://doi.org/10.5195/jmla.2017.88",
Expand Down Expand Up @@ -367,7 +367,7 @@
"Kruschke2015": "Kruschke, J. K. (2015). Doing Bayesian data analysis: A tutorial with R, JAGS, and Stan (2nd ed.). Academic Press.",
"Kuhn1962": "Kuhn, T. (1962). The Structure of Scientific Revolutions. University of Chicago Press.",
"Kukull2012": "Kukull, W. A., & Ganguli, M. (2012). Generalizability: The trees, the forest, and the low-hanging fruit. Neurology, 78(23), 1886–1891. https://doi.org/10.1212/WNL.0b013e318258f812",
"HavenVanGrootel2019": "Haven, T. L., & Van Grootel, L. (2019). Preregistering qualitative research. Accountability in Research, 26(3), 229–244. https://doi.org/10.1080/08989621.2019.1580147",
"HavenvanGrootel2019": "Haven, T. L., & Van Grootel, L. (2019). Preregistering qualitative research. Accountability in Research, 26(3), 229–244. https://doi.org/10.1080/08989621.2019.1580147",
"Laakso2013": "Laakso, M., & Björk, B. C. (2013). Delayed open access: An overlooked high‐impact category of openly available scientific literature. Journal of the American Society for Information Science and Technology, 64(7), 1323–1329.",
"Laine2017": "Laine, H. (2017). Afraid of scooping – Case study on researcher strategies against fear of scooping in the context of open science. In Data Science Journal (Vol. 16, pp. 1–14). https://doi.org/10.5334/dsj-2017-029",
"Lakatos1978": "Lakatos, I. (1978). The Methodology of Scientific Research Programs: Vol. I. Cambridge University Press.",
Expand Down
86 changes: 0 additions & 86 deletions content/glossary/arabic/_index.md

This file was deleted.

Loading