-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
139 lines (125 loc) · 4.87 KB
/
Copy pathindex.html
File metadata and controls
139 lines (125 loc) · 4.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Scientific Computing Journal Club</title>
<!-- Bootstrap core CSS -->
<link href="https://v4-alpha.getbootstrap.com/dist/css/bootstrap.min.css" rel="stylesheet">
<style>
table {
font-family: arial, sans-serif;
border-collapse: collapse;
width: 100%;
}
td, th {
border: 1px solid #dddddd;
text-align: left;
padding: 8px;
}
tr:nth-child(even) {
background-color: #dddddd;
}
</style>
</head>
<body>
<!-- Main jumbotron for a primary marketing message or call to action -->
<div class="jumbotron">
<div class="container">
<h1 class="display-4">Scientific Computing Journal Club</h1><br/>
<p>A preprint/journal club centered around topics of data science, scientific computing, and geoscience applications of these topics.<br/><br/>
Follow us on Twitter for announcements of new papers and discussion reminders - <a href="https://twitter.com/geo_journal">@geo_journal</a>
</p>
</div>
</div>
<div class="container">
<!-- Example row of columns -->
<div class="row">
<h2>How It Works</h2>
<ol>
<li>Keep the commitment light - one paper per month to accommodate everyone’s schedules</li>
<li>We rotate through the group members (alphabetically by surname for simplicity) with each month having a new discussion leader</li>
<li>Each month the discussion leader is tasked with selecting that month’s paper. The group member is also asked to provide a few discussion questions (detailed below).</li>
<li>We use a github repository to host this site as well as the paper discussions</li>
<li>Whenever possible we will store PDFs of the papers we review. Papers that are not open access will be distributed to the group via email</li>
<li>Discussion is asynchronous, public, and via GitHub issues.</li>
</ol>
</div>
<div class="row">
<h2>Discussion Leader's Role</h2>
<ol>
<li>Select a paper before the first day of the month you are to lead</li>
<li>On the first day of the month distribute your paper to the group - either via email or, for open access papers, by committing a PDF to the "papers" directory in the GitHub repository</li>
<li>Create a set of 5 to 10 discussion questions to stimulate the initial discussion</li>
<li>Create a new GitHub Issue with your discussion questions and link to the paper (if applicable)</li>
<li>Discussion proceeds via commenting on the GitHub Issue</li>
<li>Members may want to set their GitHub settings to receive email notifications of new comments and mentions</li>
</ol>
</div>
<div class="row">
<h2>Discussion Leader Assignments</h2><br/><br/>
</div>
<table>
<tr>
<th>Leader</th>
<th>Month</th>
</tr>
<tr>
<td><a href="https://twitter.com/ebgoldstein">Evan Goldstein</a></td>
<td>June; <a href="https://eartharxiv.org/qv5jz/">Kratzert et al. 2018 EarthArXiv Preprint</a>; <a href="https://github.com/geo-journal/geo-journal.github.io/issues/3">Discussion</a></td>
</tr>
<tr>
<td><a href="https://staff.ucar.edu/users/mayernik">Matt Mayernik</a></td>
<td>July; <a href="https://doi.org/10.1515/jdis-2017-0012">Jane Greenberg Paper</a>; <a href="https://github.com/geo-journal/geo-journal.github.io/issues/6">Discussion</a></td>
</tr>
<tr>
<td>Continued Discussion of June and July Papers</td>
<td>August</td>
</tr>
<tr>
<td>Marshall Ma</td>
<td>Late August into September</td>
</tr>
<tr>
<td>Keith Maull</td>
<td>October</td>
</tr>
<tr>
<td>Tom Narock</td>
<td>November</td>
</tr>
<tr>
<td>Daniel Nüst</td>
<td>December</td>
</tr>
<tr>
<td>Rachel Prudden</td>
<td>January, 2019</td>
</td>
<tr>
<td>Mostafa Sadeghnejad</td>
<td>February, 2019</td>
</tr>
<tr>
<td>Adam Shepherd</td>
<td>March, 2019</td>
</tr>
<tr>
<td>Andrea Thomer</td>
<td>April, 2019</td>
</tr>
<tr>
<td>Leonardo Uieda</td>
<td>May, 2019</td>
</tr>
<tr>
<td>Jane Wyngaard</td>
<td>June, 2019</td>
</tr>
<tr>
<td>Frederik Kratzert</td>
<td>July, 2019</td>
</tr>
</table>
</div> <!-- /container -->
</body>
</html>