This is a repository that containers the files for the official US RSE community website hosted at http://www.us-rse.org. The site is built with Jekyll and hosted on GitHub.
We encourage the community to contribute to the content of the website.
To do this: fork the repository, make your proposed changes, test locally (see below), and then create a pull request against gh-pages
.
If you belong to a group of Research Software Engineers (hooray!), or want to add yourself as an individual you can do so by adding an entry to the _data/map.yml file. Specifically, an entire should include a name, institution, url, type, and coordinate. The name could be an individual, or the name of a group. If you are adding yourself as an individual, set the type to be "person." If you are adding a group, set the type to be "group." Here is an example:
- name: "Stanford Research Computing Center"
url: https://srcc.stanford.edu
coords: [37.424107, -122.166077]
institution: Stanford University
type: group
You are also free to add an image parameter, in case your group has a logo. And of course this could apply to an individual too.
How do I find a latitude and longitude?
You can actually look it up on Google Maps, and a more direct approach is to use https://www.latlong.net/ and enter your location by name.
What if I don't have an image, or don't want to include one?
The image is not required. If you leave it out, the box will only contain text.
We maintain a list of current and previous job postings in _data/jobs.yml. Specifically, we ask that you provide a name, location (can be Remote), an expiration date, and a url to the posting. The expiration date is not shown on the page, however it will determine when the job doesn't appear anymore. We suggest setting a timeframe such as a month, and if you want to extend it, you can open a pull request to update the date. An example posting is shown below. This job will appear on the site until the first of July, 2019.
- name: "Research Software Engineer"
location: Princeton, NJ
url: https://main-princeton.icims.com/jobs/10347/research-software-engineer/job
expires: 2019-07-01
We will test that all fields are defined, the url exists, and that the "expires" field loads
as a datetime.date
object in Python. If you copy the format above, you should
be ok.
These tests are also run during the continuous integration to catch any errors, and instructions for running locally are provided below.
Other than previewing the site and ensuring that the coordinate shows up in the correct spot, you can run unit testing locally to confirm you have the minimum required data:
$ cd tests
$ python -m unittest test_mapdata
Jobs are tested for correctness, meaning that all fields are entered, a date string is entered for the "expires" field, and the url is valid. You can run tests locally like:
$ cd tests
$ python -m unittest test_jobs
In the top level directory of your forked repository run jekyll serve
and browse to http://localhost:4000.
If you are having trouble try rm -rf _site
, followed by bundle update
, then bundle exec jekyll serve
.