blob: fe287b4d6d21c16211b4d610a74747dfb1c9e546 (
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
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
|
<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="https://pyweek.org/37/"><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="https://pyweek.org/37/">PyWeek 37</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>March 17-24, 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/37/">
<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="revivalofcode" %}"><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="revivalofcode" %}">Revival 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>May 2024</span>
</span>
</p>
<p>Revisit past years' Advent of Code problems! Puzzles are relased every other day and there will be dedicated solution threads for you to discuss with other participants.</p>
</div>
<a class="button is-small is-link is-outlined" href="{% url "events:page" path="revivalofcode" %}">
<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="code-jams" %}"><img class="is-rounded" src="/static/images/events/icons/codejam.svg"></a>
</p>
</div>
<div class="media-content">
<div class="content">
<h5 class="title is-4"><a href="{% url "events:page" path="code-jams" %}">Code Jam</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>
|