blob: aaff086c49ef18b6af2631d29e44e20be4ed485c (
plain) (
blame)
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
|
<div class="box" id="scheduled-events">
<h2 class="title is-5" style="margin-bottom: 2rem;">Scheduled events</h2>
<article class="media">
<div class="media-left">
<p class="image is-64x64">
<a href="{% url "events:page" path="code-jams/11" %}"><img class="is-rounded" src="/static/images/events/summer_code_jam_2024/logo.webp"></a>
</p>
</div>
<div class="media-content">
<div class="content">
<h5 class="title is-4"><a href="{% url "events:page" path="code-jams/11" %}">Summer Code Jam 2024</a></h5>
<p class="subtitle is-6">
<span class="icon-text">
<span class="icon date-icon"><i class="fa-regular fa-calendar"></i></span>
<span>July 2024</span>
</span>
</p>
<p>Our annual code-jam where we place you in a team of five and you have 11 days to code some sort of application or program in Python based on a selected technology or framework.</p>
</div>
<a class="button is-small is-link is-outlined" href="{% url "events:page" path="code-jams" %}">
<span class="icon date-icon"><i class="fas fa-circle-info"></i></span>
<span>Learn more</span>
</a>
</div>
</article>
<article class="media">
<div class="media-left">
<p class="image is-64x64">
<a href="{% url "events:page" path="pyweek" %}"><img class="is-rounded" src="/static/images/events/icons/pyweek.png"></a>
</p>
</div>
<div class="media-content">
<div class="content">
<h5 class="title is-4"><a href="{% url "events:page" path="pyweek" %}">PyWeek 38</a></h5>
<p class="subtitle is-6">
<span class="icon-text">
<span class="icon date-icon"><i class="fa-regular fa-calendar"></i></span>
<span>September 2024</span>
</span>
</p>
<p>The bi-annual game-jam where you are allowed one week to write a game from scratch, either as an individual or as a team.</p>
</div>
<a class="button is-small is-link is-outlined" href="https://pyweek.org/">
<span class="icon date-icon"><i class="fas fa-circle-info"></i></span>
<span>Learn more</span>
</a>
</div>
</article>
<article class="media">
<div class="media-left">
<p class="image is-64x64">
<a href="{% url "events:page" path="adventofcode" %}"><img class="is-rounded" src="/static/images/events/icons/adventofcode.png"></a>
</p>
</div>
<div class="media-content">
<div class="content">
<h5 class="title is-4"><a href="{% url "events:page" path="adventofcode" %}">Advent of Code</a></h5>
<p class="subtitle is-6">
<span class="icon-text">
<span class="icon date-icon"><i class="fa-regular fa-calendar"></i></span>
<span>December 1-25, 2024</span>
</span>
</p>
<p>Daily programming puzzles with increasing difficulties where each puzzle has a little story and you can discuss solutions with other participants. You are allowed to use any programming language you like.</p>
</div>
<a class="button is-small is-link is-outlined" href="{% url "events:page" path="adventofcode" %}">
<span class="icon date-icon"><i class="fas fa-circle-info"></i></span>
<span>Learn more</span>
</a>
</div>
</article>
</div>
|