-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.html
162 lines (155 loc) · 6.6 KB
/
index.html
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
---
layout: default
---
<div class="home">
<div class="media media--center statement">
<img src="img/starterkit.png" alt="LHCb Starterkit">
<h2 class="body center">
Starterkit is a group of physicists who want to improve the working lives
of young researchers working on the LHCb experiment.
</h2>
</div>
<p>
We create and organise workshops that cover topics ranging from basic
programming skills, such as using Bash and Python, up to in-depth
explorations of the LHCb software.
</p>
<div class="columns">
<div>
<div class="media">
<i class="icon ion-help"></i>
<div>
<h2>Always feeling stuck?</h2>
<p>The goal of Starterkit is to demystify the LHCb software.
If you've ever felt like you're not sure why you're writing the
code you're writing, or not sure what code you even need to write,
we can help you.
</p>
</div>
</div>
<div class="media">
<i class="icon ion-arrow-graph-up-right"></i>
<div>
<h2>From the bottom up</h2>
<p>We start from the very basics, each lesson building on the last.
Once you understand the details and how things fit together, you
have the power to learn more on your own.</p>
</div>
</div>
</div>
<div>
<div class="media">
<i class="icon ion-calendar"></i>
<div>
<h2>Up-to-date</h2>
<p>Our workshops are usually held twice per year, and we check that
the code in the lessons is up-to-date and that it works. Never be
frustrated by outdated tutorials again.</p>
</div>
</div>
<div class="media">
<i class="icon ion-chatbubbles"></i>
<div>
<h2>Join the collaboration</h2>
<p>Attendees of the workshops are generally Master's and PhD
students. You'll get to meet nice people doing interesting things,
getting to know the people who make ‘LHCb’ what it is.</p>
</div>
</div>
</div>
<div>
<div class="media">
<i class="icon ion-calendar"></i>
<div>
<h2>Become a pro</h2>
<p>Not just for beginners, we also hold workshops for learning
the advanced aspects of LHCb software. At the end of the workshop,
everyone hacks on little, unique projects.</p>
</div>
</div>
<div class="media">
<i class="icon ion-chatbubbles"></i>
<div>
<h2>Pay it forward</h2>
<p>Starterkit is made up of young researchers who write and teach all
the material. You can contribute to all the lessons, and you can
join us to teach and to help at the next workshop.</p>
</div>
</div>
</div>
<h1>The material</h1> <p>All of the lessons we teach in the workshops are
available online, so that you can study at your own pace either before
or after a workshop. We strive to make the lessons compact, correct, and
the best reference for performing particular tasks.</p> <p>The lessons are
divided in to <a href="https://lhcb.github.io/first-analysis-steps/">beginner lessons</a>,
which are useful for students just starting with LHCb and those who don't
feel comfortable with the software they're using, and
<a href="https://lhcb.github.io/second-analysis-steps/">advanced lessons</a>,
where some topics may not be useful to everyone, but give students a deeper
understand of how and why things work the way they do.</p>
<h1>The workshops</h1>
<p>So far, Starterkit has organised two types of workshops: Starterkits, for
early PhD and Master's students who need an introduction to LHCb and its
software; and Impactkits, where more experienced students can learn
advanced analysis techniques and hack on new ideas.</p>
{% comment %}
Compute the current date so that we can show past and future workshops.
Note that this is only computed once, when the site is built. Once a
workshop has finished, this site will (hopefully) be updated with the
summary of the workshop, and so this date will be recomputed.
{% endcomment %}
{% assign current_date = site.time | date: "%s" %}
<h2>Upcoming and future workshops</h2>
<p>This is the list of workshops that will happen soon and that we plan to
hold in the future. We send out emails to the <code>lhcb-general</code>
mailing list when the registration is open.</p>
<ul>
{% for post in site.posts %}
{% assign post_date = post.date | date: "%s" %}
{% if post_date > current_date %}
<li>
<span class="post-meta">
{% if post.indico %}
<a href="{{ post.indico }}" title="Indico page">{{ post.date | date: "%b %-d, %Y" }}</a>
{% else %}
{{ post.date | date: "%b %-d, %Y" }}
{% endif %}
</span>
<h2>
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</h2>
</li>
{% endif %}
{% endfor %}
</ul>
<h2>Previous workshops</h2>
<p>This is the list of workshops we've held so far.</p>
<ul class="post-list">
{% for post in site.posts %}
{% assign post_date = post.date | date: "%s" %}
{% if post_date < current_date %}
<li>
<span class="post-meta">
<a href="{{ post.indico }}" title="Indico page">{{ post.date | date: "%b %-d, %Y" }}</a>
</span>
<h2>
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</h2>
</li>
{% endif %}
{% endfor %}
</ul>
<h1>Contribute</h1>
<p>The lessons are <a href="https://github.com/{{ site.github_username }}">hosted on GitHub</a>,
and we encourage all readers and participants to
<a href="https://github.com/lhcb/first-analysis-steps/blob/master/CONTRIBUTING.md">fork, edit,
and create the content</a>. If you spot a problem with any of the
lessons, such as if an example no longer works or something needs further
clarification, please open an issue on the respective repository.</p>
<p>The success of Starterkit workshop depends the new people taking over from
the current cohort. If you're interested in helping the next batch of
students be efficient, confident, and <emph>happy</emph> working on LHCb,
you can become a helper or a teacher in a workshop. You don't have to be a
coding wizard or an LHCb master, just enthusiastic about helping
people. Please <a href="mailto:[email protected]">get in touch</a>.</p>
</div>