yannsay.bsky.social
@yannsay.bsky.social
Small presentation of my recent work: developping #rstats learning material with #Quarto, using #GitHub for version control, collaboration and continuous integration, #babelquarto to translate to French and Spanish and integrate it in a #LMS plateform to follow learners path.
March 31, 2025 at 8:18 AM
I was looking for a way to publish my code on GitHub my repository and at the same time render the page on the GitHub Page at each commit. The solution I found was to use this GitHub Actions.
Is there a better way? I’d love to hear your thoughts!
#Rstats #Quarto #GithubAction
December 3, 2024 at 4:23 PM
I was struggling with .Rproj.user/ files still appearing in my commits even after adding them to my .gitignore. I had committed everything before adding .Rproj.user to the .gitignore, so files were already being tracked.
My fix:
git rm -r --cached .Rproj.user
Is there a better way?
#Rstats #Git
November 26, 2024 at 1:29 PM
I was looking for a way to add downloads to my #Quarto website so readers can download materials without the hassle of going through the GitHub page. The solution I found was to add a resources section to the YAML configuration.
Is there a better way? I’d love to hear your thoughts!
November 18, 2024 at 2:51 PM