Skip to content

Commit a11014c

Browse files
authored
Create 2024-06-13_AMER.md
1 parent 054c48b commit a11014c

File tree

1 file changed

+64
-0
lines changed

1 file changed

+64
-0
lines changed

office_hours/2024-06-13_AMER.md

+64
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
# Welcome to the R Contributor Office Hour (AMER)!
2+
2024-06-13
3+
4+
## Useful links
5+
6+
* R Development Guide: https://contributor.r-project.org/rdevguide/
7+
* R's Bugzilla: https://bugs.r-project.org
8+
* R Project Weblate server: https://translate.rx.studio/projects/r-project
9+
* R sources - SVN repo: https://svn.r-project.org/R/trunk/
10+
* GitHub mirror: https://github.com/r-devel/r-svn/
11+
* GitHub Codespace (R Dev Container) https://github.com/r-devel/r-dev-env
12+
* R-devel mailing list archives: https://stat.ethz.ch/pipermail/r-devel/, searchable GitHub repo: https://github.com/MichaelChirico/r-mailing-list-archive/tree/master/r-devel
13+
* Minutes from previous office hours: https://github.com/r-devel/rcontribution/tree/main/office_hours
14+
* Annotated list of bugs: https://docs.google.com/spreadsheets/d/1bhfPIJQXeKpydigMH79FKIkdHO9NxlBSB_bTRoCFnPY/edit#gid=0
15+
16+
## Keeping in contact
17+
18+
Twitter: https://twitter.com/R_Contributors
19+
Mastodon: https://hachyderm.io/@R_Contributors
20+
Slack: https://contributor.r-project.org/slack
21+
22+
## Facilitators
23+
24+
Heather Turner
25+
Gabe Becker
26+
27+
## Participants
28+
29+
Atharva Shirdhankar
30+
31+
## Discussion
32+
33+
### Progress on R Dev Container
34+
35+
Heather shared her attempts to configure the container to open a customised welcome page that enables people to open the mini tutorials inside VSCode
36+
37+
* The default of a README in preview mode has the disadvantage that clicking links replaces the content in the preview window, so you lose the index to the tutorials and other help pages.
38+
* Tried various solutions and currently best solution is to have a dummy README, while opening a separate WELCOME.md. Not ideal, as the README is not needed but removing README means that several VS Code welcome pages are opened instead, which is even worse as you get files in multiple windows.
39+
40+
Shared the in-progress documentation (https://contributor.r-project.org/r-dev-env/) and highlighted what is new from the previous version. One big change is support for multiple builds of R.
41+
42+
Some notes from Gabe:
43+
44+
* Need to be careful not to compound patches. Ideally have a clean checkout for each patch
45+
* We cover this to some extent in the Updating R Sources section, where we encourage people to review their local changes before updating R
46+
* Gabe's workflow:
47+
* Always have r-devel-raw (unmodified)
48+
* Copy r-devel-raw to another location before modifying
49+
* For performance style patch, will always want at least two development versions (control/test)
50+
51+
Future work on R Dev Container:
52+
53+
* GitPod version, so less dependent on GitHub Codespaces
54+
* RStudio Server as alternative to R terminal in VS Code
55+
* Support for working with r-svn git repo
56+
57+
Notes on git workflow
58+
59+
* Gabe's workflow:
60+
* only put modified files in separate git repository
61+
* copy these to a full checkout of the r-svn repo to make a PR for testing/review
62+
* Working with git may make the container too complex - will need to connect to GitHub, have both git and svn repos in the container etc. Does not meet objective of keeping things simple for new contributors!
63+
* Perhaps add doc/link to R Dev guide for more on git workflow
64+
* Perhaps svn patch could be applied to a full checkout of the r-svn repo outside of the Dev Container - is there way to do this using the patch file, or do you need to copy over modified files?

0 commit comments

Comments
 (0)