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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
|
---
layout: default
title: The Copenhagen Rust Group
---
<div class="row install-row">
<div class="col-md-12">
<p style="float: right" class="update-timestamp">Last updated: {{ site.time | date_to_long_string }}</p>
<p class="pitch">
We are a Copenhagen-based group of programmers enthusiastic
about the programming language <b>Rust</b>, a systems
programming language developed by Mozilla.
</p>
<p>We organize monthly meetups (hack nights) so stay tuned on this site
for future events!</p>
</div>
</div>
<div class="row code-row">
<div class="col-md-7">
<h2>Upcoming events</h2>
<article class="event">
<div class="event-date">
<p class="event-month">July</p>
<p class="event-day">28th</p>
<p class="event-year">2022</p>
</div>
<div class="event-desc">
<h3 class="event-desc-header">
Hack Night #27
</h3>
<dl class="dl-horizontal">
<dt>Where</dt>
<dd><strong>Borgmester Christiansens Gade 50, 2450 København</strong>
<dd>
<dt>When</dt>
<dd>18:00—21:30</dd>
</dl>
<p>Thanks for a great event at Adapt Agency for Hacknight #26. You can find the recorded talks online here: <a
href="https://youtu.be/vJqhqRmSb68" target="_blank">Simon Rasmussen's WASM and WAT the fp-bindgen?</a> and
<a href="https://youtu.be/ETdmhh7OQpA" target="_blank">David Pedersen's Introduction to Axum</a>.
</p>
<p>We are excited to welcome you to the next meetup in <a href="https://connectedcars.dk/"
target="_blank">Connected Cars</a>'s new offices.
</p>
<p>We are looking for speakers for our upcoming agenda. If you are interested, please reach out to
<kbd>frederik</kbd><!-- space --><kbd>@</kbd><!-- more space --><kbd>secondspectrum.com</kbd> with details.
</p>
</p>
</div>
</article>
</div>
<div class="col-md-5">
<h2>Mailing list</h2>
<p><a class="btn btn-primary btn-block" href="https://lists.sr.ht/~laumann/cph-rs" target="_blank">Browse</a></p>
<p>We have a mailing list on which all coordinating organizational
communication takes place. Subscribe to receive updates on future hack
nights. Post here if you have any suggestions, or want to give a talk at
a hack night.</p>
<p>To subscribe, send an e-mail to:
<p style="text-align:
center"><code>~laumann/cph-rs+subscribe@lists.sr.ht</code></p>
<p>To unsubscribe, do
the same, but replace <code>subscribe</code> with
<code>unsubscribe</code>.
</p>
<hr />
<h2>Matrix</h2>
<a class="btn btn-primary btn-block" href="https://matrix.to/#/#rust-cph:matrix.org" target="_blank"><code>Join on
Matrix</code></a>
<p>Join us on Matrix: </p>
<p style="text-align:
center"><a href="https://matrix.to/#/#rust-cph:matrix.org">https://matrix.to/#/#rust-cph:matrix.org</a></p>
<p>Note that you need to create an account on some home server to join the room, but it should be available just by
the URL.</p>
<hr />
<h2>Past events</h2>
<article class="event">
<div class="event-date">
<p class="event-month">June</p>
<p class="event-day">30</p>
<p class="event-year">2022</p>
</div>
<div class="event-desc">
<h3 class="event-desc-header">
Hack Night #26
</h3>
<dl class="dl-horizontal">
<dt>Where</dt>
<dd><strong>Langebrogade 6A, 1411 København</strong>
<dd>
<dt>When</dt>
<dd>18:00—21:30</dd>
</dl>
<p>We are happy to announce that <a href="https://adaptagency.com/">Adapt Agency</a> will host the next meetup
in their offices on Thursday, June 30th. If you want to participate please send an email to
<kbd>frederik</kbd><!-- space --><kbd>@</kbd><!-- more space --><kbd>secondspectrum.com</kbd> to confirm your
presence. We look forward to taking you through an exciting programme:
</p>
<p>Agenda:
<ul>
<li>18:05—18:15: Welcome!</li>
<li>18:15—19:00: Talk by <a href="https://www.github.com/Zagitta/">Simon Rasmussen</a>: WASM and WAT the
fp-bindgen?</li>
<li>19:00—19:45: Food sponsored by Adapt Agency</li>
<li>19:45—19:50: Rust book raffle by <a href="https://twitter.com/fiberplane">Fiberplane</a></li>
<li>19:50—20:35: Talk by <a href="https://github.com/davidpdrsn">David Pedersen</a>: Introduction to <a
href="https://github.com/tokio-rs/axum">Axum</a></li>
<li>20:35—: Free play
</ul>
</p>
</div>
</article>
<article class="event">
<div class="event-date">
<p class="event-month">April</p>
<p class="event-day">28</p>
<p class="event-year">2022</p>
</div>
<div class="event-desc">
<h3 class="event-desc-header">
Hack Night #25
</h3>
<dl class="dl-horizontal">
<dt>Where</dt>
<dd><strong>Sundkaj 153, Pakhus 48, 2150 Nordhavn</strong>
<dd>
<dt>When</dt>
<dd>18:00—21:30</dd>
</dl>
<p>We are happy to announce that <a href="https://blackbird.online/">BlackBird</a> will host the next meetup in
their offices on Thursday, April 28th. If you are able to participate please send an email to
<kbd>frederik</kbd><!-- space --><kbd>@</kbd><!-- more space --><kbd>secondspectrum.com</kbd> to confirm your
presence. Good mood and a new-found, or long-lasting, passionate interest in Rust are the only requirements
for participation!
</p>
<p>Agenda:
<ul>
<li>18:05—18:15: Welcome!</li>
<li>18:15—19:00: Talk by <a href="https://github.com/Erk-">Valdemar Erk</a>: <a
href="https://github.com/Erk-/RRust">RRust</a>: A reversible embedded language made with meta-programming
</li>
<li>19:00—19:45: Food sponsored by <a href="https://twitter.com/fiberplane">Fiberplane</a></li>
</li>
<li>19:45—20:30: Talk by <a href="https://github.com/sakex">Alexandre Senges</a>: <a
href="https://github.com/sakex/flappy-bird">Flappy Bird</a> - Reinforcement learning in the browser with
<a href="https://github.com/sakex/neat-gru-rust">neat-gru</a> and WASM
</li>
<li>20:30—: Hang out, hacking and networking
</ul>
</p>
<p>
We look forward to see you all!
</p>
</div>
</article>
<article class="event">
<div class="event-date">
<p class="event-month">February</p>
<p class="event-day">24</p>
<p class="event-year">2022</p>
</div>
<div class="event-desc">
<h3 class="event-desc-header">
Hack Night #24
</h3>
<dl class="dl-horizontal">
<dt>Where</dt>
<dd><strong>Langebrogade 6A, 1411 Copenhagen K</strong>
<dd>
<dt>When</dt>
<dd>18:00—21:30</dd>
</dl>
<p>We are happy to announce that <a href="https://adaptagency.com/">Adapt A/S</a> will host the next meetup in
their offices on Thursday, February 24th. If you are able to participate please send an email to
<kbd>frederik</kbd><!-- space --><kbd>@</kbd><!-- more space --><kbd>secondspectrum.com</kbd> to confirm your
presence. Good mood and a new-found, or long-lasting, passionate interest in Rust are the only requirements
for participation!
</p>
<p>Agenda:
<ul>
<li>18:05—18:15: Welcome back!</li>
<li>18:15—19:00: Talk by Blas Rodriguez Irízar: <a
href="https://github.com/solana-labs/solana">Introduction to Solana Block-Chain Smart Contracts</a></li>
<li>19:00—19:45: Sandwiches sponsored by <a href="https://adaptagency.com/">Adapt A/S</a> + Rust Quiz
and Prizes sponsored by <a href="https://twitter.com/fiberplane">Fiberplane</a></li>
<li>19:45—20:30: Talk by <a href="https://github.com/davidpdrsn">David Pedersen</a>: <a
href="https://github.com/davidpdrsn/axum-live-view">axum-live-view</a> -- server render all the things
<li>20:30—: Hang out, hacking and networking
</ul>
</p>
<p>
We look forward to a great evening in your company!
</p>
</div>
</article>
<article class="event">
<div class="event-date">
<p class="event-month">January</p>
<p class="event-day">27</p>
<p class="event-year">2022</p>
</div>
<div class="event-desc">
<h3 class="event-desc-header">
Hack Night #23
</h3>
<dl class="dl-horizontal">
<dt>Where</dt>
<dd><strong>Sundkaj 153, Pakhus 48, 2150 Nordhavn</strong>
<dd>
<dt>When</dt>
<dd>18:00—21:00</dd>
</dl>
<p>We are happy to announce that <a href="https://blackbird.online/">Blackbird</a> will host the next meetup in
their offices on Thursday, January 27th. If you are able to participate please send an email to
<kbd>frederik</kbd><!-- space --><kbd>@</kbd><!-- more space --><kbd>secondspectrum.com</kbd> to confirm your
presence.
</p>
<p>Agenda:
<ul>
<li>18:05—18:15: Welcome back!</li>
<li>18:15—19:00: Talk by Simon Vandel Sillesen & Co (<a href="https://blackbird.online/">Blackbird</a>):
<a href="https://github.com/BlackbirdHQ/atat">ATAT: AT protocol abstractions in Rust</a>
</li>
<li>19:00—19:45: Pizza sponsored by Blackbird </li>
<li>19:45—: Hang out, hacking and networking
</ul>
</p>
</div>
</article>
<article class="event">
<div class="event-date">
<p class="event-month">October</p>
<p class="event-day">28</p>
<p class="event-year">2021</p>
</div>
<div class="event-desc">
<h3 class="event-desc-header">
Hack Night #22
</h3>
<dl class="dl-horizontal">
<dt>Where</dt>
<dd><strong>Banemarksvej 2B, 2600 Glostrup (Connected Cars)</strong>
<dd>
<dt>When</dt>
<dd>19:00—22:00</dd>
</dl>
<p>We're back! Join us for the first hack night in 2021. If you plan to attend, please notify
<kbd>frederik</kbd><!-- space --><kbd>@</kbd><!-- more space --><kbd>secondspectrum.com</kbd>.
</p>
<p>Agenda:
<ul>
<li>19:05—19:15: Welcome back!</li>
<li>19:15—20:00: Talk by Jorge Leitão (<a href="https://munindata.com">Munin Data</a>): <a
href="https://github.com/jorgecarleitao/arrow2">Sound data engineering - from bits to DataFrames</a></li>
<li>20:00—20:15: Snacking and networking </li>
<li>20:15—21:00: Talk by <a href="https://github.com/davidpdrsn">David Pedersen</a> (Embark Studios &
Tokio Core Team Member): <a href="https://github.com/tokio-rs/axum">How I joined Tokio and made a web
framework in the process</a></li>
<li>21:00—: Hang out and networking</li>
</ul>
</p>
</div>
</article>
<article class="event">
<div class="event-date">
<p class="event-month">January</p>
<p class="event-day">29</p>
<p class="event-year">2020</p>
</div>
<div class="event-desc">
<h3 class="event-desc-header">
Hack Night #21
</h3>
<dl class="dl-horizontal">
<dt>Where</dt>
<dd><strong>Vester Voldgade 8 (Omnio)</strong>
<dd>
<dt>When</dt>
<dd>18:00—22:00</dd>
</dl>
<p>Join us for the first hack night in 2020. If you plan to attend, please notify <kbd>laumann</kbd>
<!-- space --><kbd>@</kbd><!-- more space --><kbd>fastmail.com</kbd>.
</p>
<p>Agenda:
<ul>
<li>18:15—19:00: Talk by Alice Ryhl: The Future is
here</li>
<li>19:00—19:15 Food and hanging out</li>
<li>19:15—20:00: Talk by Jesper Steen Møller: <a
href="https://github.com/rust-lang/rust/issues/45268#issuecomment-487768456">My tiny improvement in
rustc</a></li>
</ul>
</p>
</div>
</article>
<article class="event">
<div class="event-date">
<p class="event-month">November</p>
<p class="event-day">27</p>
<p class="event-year">2019</p>
</div>
<div class="event-desc">
<h3 class="event-desc-header">
Hack Night #20
</h3>
<dl class="dl-horizontal">
<dt>Where</dt>
<dd><strong>Vester Voldgade 8 (Omnio)</strong>
<dd>
<dt>When</dt>
<dd>18:00—22:00</dd>
</dl>
<p>This will be the last hack night of 2019, and also the 20th we've held in total. If you plan to attend,
please notify <kbd>laumann</kbd><!-- space --><kbd>@</kbd><!-- more space --><kbd>fastmail.com</kbd>.
</p>
<p>Agenda:
<ul>
<li>18:15—19:00: Talk by Fedor Logachev: Games Development in Rust (a follow-up on his first talk two
months ago)</li>
<li>19:00—19:15 Food and hanging out</li>
<li>19:15—20:00: 2nd talk (open spot)</li>
</ul>
</p>
</div>
</article>
<article class="event">
<div class="event-date">
<p class="event-month">October</p>
<p class="event-day">30</p>
<p class="event-year">2019</p>
</div>
<div class="event-desc">
<h3 class="event-desc-header">
Hack Night #19
</h3>
<dl class="dl-horizontal">
<dt>Where</dt>
<dd><strong>Vester Voldgade 8 (Omnio)</strong>
<dd>
<dt>When</dt>
<dd>18:00—22:00</dd>
</dl>
<p>Join us for another great evening of talks all things Rust-y and hanging
out. This month's hack night will feature two talks, so there is no
reason not to be there! If you plan to attend, please notify <kbd>laumann</kbd><!-- space --><kbd>@</kbd>
<!-- more space --><kbd>fastmail.com</kbd>.
</p>
<p>Agenda:
<ul>
<li>18:15—19:00: Talk by Gustav: Introduction to Entity-Component Systems in Rust</li>
<li>19:00—19:15 Food and hanging out</li>
<li>19:15—20:00: Talk spot: Still open</li>
</ul>
</p>
</div>
</article>
<article class="event">
<div class="event-date">
<p class="event-month">September</p>
<p class="event-day">25</p>
<p class="event-year">2019</p>
</div>
<div class="event-desc">
<h3 class="event-desc-header">
Hack Night #18
</h3>
<dl class="dl-horizontal">
<dt>Where</dt>
<dd><strong>Vester Voldgade 8 (Omnio)</strong>
<dd>
<dt>When</dt>
<dd>18:00—22:00</dd>
</dl>
<p>Join us for another great evening of talks all things Rust-y and hanging
out. This month's hack night will feature two talks, so there is no
reason not to be there! If you plan to attend, please notify <kbd>laumann</kbd><!-- space --><kbd>@</kbd>
<!-- more space --><kbd>fastmail.com</kbd>.
</p>
<p>Agenda:
<ul>
<li>18:15—19:00: Talk by Valdemar Erk: Generating comprehensive bindings for Futhark in
Rust </li>
<li>19:00—19:15 Food and hanging out</li>
<li>19:15—20:00: Talk by Fedor Logachev: Games Development in Rust</li>
</ul>
</p>
</div>
</article>
<article class="event">
<div class="event-date">
<p class="event-month">August</p>
<p class="event-day">28</p>
<p class="event-year">2019</p>
</div>
<div class="event-desc">
<h3 class="event-desc-header">
Hack Night #17
</h3>
<dl class="dl-horizontal">
<dt>Where</dt>
<dd><strong>Vester Voldgade 8 (Omnio)</strong>
<dd>
<dt>When</dt>
<dd>18:00—22:00</dd>
</dl>
<p>After a two-month summer hiatus, we're back!
Join us for another great evening of talks all things Rust-y and
hanging out. We have an <strong>open call for talks</strong>. Do you
want to give a presentation on your awesome Rust work? Write to
<kbd>laumann</kbd>
<!-- space
--><kbd>@</kbd><!-- more space --><kbd>fastmail.com</kbd>, and he
will be very happy to put your talk on the agenda.
</p>
<p>Agenda:
<ul>
<li>18:15—19:30: Talk(s)</li>
<li>19:30—22:00 Food and hanging out</li>
</ul>
</p>
</div>
</article>
<article class="event">
<div class="event-date">
<p class="event-month">May</p>
<p class="event-day">29</p>
<p class="event-year">2019</p>
</div>
<div class="event-desc">
<h3 class="event-desc-header">
Hack Night #16
</h3>
<dl class="dl-horizontal">
<dt>Where</dt>
<dd><strong>Vester Voldgade 8 (Omnio)</strong>
<dd>
<dt>When</dt>
<dd>18:00—22:00</dd>
</dl>
<p>The sixteenth hack night for the Copenhagen Rust Group is upon us!
Join us for another great evening of talks all things Rust-y and
hanging out. We have an <strong>open call for talks</strong>. Do you
want to give a presentation on your awesome Rust work? Write to
<kbd>laumann</kbd>
<!-- space
--><kbd>@</kbd><!-- more space --><kbd>fastmail.com</kbd>, and he
will be very happy to put your talk on the agenda.
</p>
<p>Agenda:
<ul>
<li>18:15—19:30: Talk by <a href="https://ryhl.io/">Alice
Ryhl</a> on
<strong>Futures in Rust</strong>
</li>
<li>19:30—22:00 Food and hanging out</li>
</ul>
</p>
</div>
</article>
<article class="event">
<div class="event-date">
<p class="event-month">April</p>
<p class="event-day">25</p>
<p class="event-year">2019</p>
</div>
<div class="event-desc">
<h3 class="event-desc-header">
Hack Night #15
</h3>
<dl class="dl-horizontal">
<dt>Where</dt>
<dd>Sundkaj 7, Nordhavn (Omnio)
<dd>
<dt>When</dt>
<dd>18:00—22:00</dd>
</dl>
<p>The fifteenth hack night for the Copenhagen Rust Group is upon us!
Join us for another great evening of talks all things Rust-y and
hanging out. We have an <strong>open call for talks</strong>. Do you
want to give a presentation on your awesome Rust work? Write to
<kbd>laumann</kbd>
<!-- space
--><kbd>@</kbd><!-- more space --><kbd>fastmail.com</kbd>, and he
will be very happy to put your talk on the agenda.
</p>
<p>Agenda:
<ul>
<li>18:15—19:30: Talk by <a href="https://github.com/keisrk">Kei
Shirakizawa</a> on "Wrapping <a href="http://snap7.sourceforge.net/">snap7</a> as
a Rust crate."</li>
<li>19:30—22:00 Food and hanging out</li>
</ul>
</p>
</div>
</article>
<article class="event">
<div class="event-date">
<p class="event-month">March</p>
<p class="event-day">28</p>
<p class="event-year">2019</p>
</div>
<div class="event-desc">
<h3 class="event-desc-header">
Hack Night #14
</h3>
<dl class="dl-horizontal">
<dt>Where</dt>
<dd>Sundkaj 7, Nordhavn (Omnio)
<dd>
<dt>When</dt>
<dd>18:00—22:00</dd>
</dl>
<p>Join us when we, for the third time in 2019, get together and talk
and hack some Rust! We have an <strong>open call for talks</strong>.
Do you want to give a presentation on your awesome Rust work? Write to
<kbd>laumann</kbd>
<!-- space
--><kbd>@</kbd><!-- more space --><kbd>fastmail.com</kbd>, and he
will be very happy to put your talk on the agenda.
</p>
<p>Agenda:
<ul>
<li>18:30—19:30: Talk by <strong>TBA</strong></li>
<li>19:30—22:00 Food and hanging out</li>
</ul>
<p><strong>UPDATE</strong> Despite no announced talks, we ended up
with two talks (!) - <a href="https://github.com/laumann">laumann</a>
gave a talk on <a href="https://pijul.org/">Pijul</a>, a VCS that has
explicit handling of conflicts based in category theory, fast
algorithms and is written in Rust!
</p>
<p>
Martin (or <code>|cos|</code>) followed up with a talk on deploying
Rust code on Android, going through the steps to call dynamic linkable
libraries from Java, via JNI.
</p>
</p>
</div>
</article>
<article class="event">
<div class="event-date">
<p class="event-month">Februray</p>
<p class="event-day">28</p>
<p class="event-year">2019</p>
</div>
<div class="event-desc">
<h3 class="event-desc-header">
Hack Night #<code>0xC</code>
</h3>
<dl class="dl-horizontal">
<dt>Where</dt>
<dd>Sundkaj 7, Nordhavn (Omnio)
<dd>
<dt>When</dt>
<dd>18:00—22:00</dd>
</dl>
<p>For the second time in a row, we will meet on the last day of the
month! We have an <strong>open call for talks</strong>. Do you want to
give a presentation on your awesome Rust work? Write to <kbd>laumann</kbd>
<!-- space
--><kbd>@</kbd><!-- more space --><kbd>fastmail.com</kbd>, and he
will be very happy to put your talk on the agenda.
</p>
<p>Agenda:
<ul>
<li>18:30—19:30: Talk by <a href="https://github.com/liufuyang">Fuyang Liu</a>
on <code>rust-nb</code>:
<a href="https://github.com/liufuyang/rust-nb">A
Simple Naive Bayes Model in Rust</a>
</li>
<li>19:30—22:00 Food and hanging out</li>
</ul>
</p>
</div>
</article>
<article class="event">
<div class="event-date">
<p class="event-month">January</p>
<p class="event-day">31</p>
<p class="event-year">2019</p>
</div>
<div class="event-desc">
<h3 class="event-desc-header">
Hack Night #12
</h3>
<dl class="dl-horizontal">
<dt>Where</dt>
<dd>Sundkaj 7, Nordhavn (Omnio)
<dd>
<dt>When</dt>
<dd>18:00—22:00</dd>
</dl>
<p>We skip the December Hack Night, and will reconvene again in the
New Year of 2019. The next hack night will feature a presentation by
James Dietrich on porting the Ruby gem <a href="https://github.com/github/scientist">scientist</a> to Rust.
</p>
<p>Agenda:
<ul>
<li>18:30—19:30: Talk by <a href="https://github.com/jbdietrich">James
Dietrich</a>: <strong>Getting Closure on
Scientist</strong></li>
<li>19:30—22:00 Food and hanging out</li>
</ul>
</p>
<p><strong>UPDATE</strong> Thanks to everyone that showed up! A lot of
new faces and some veterans. We had a great night with pizza and
James entertaining everybody with his insights into closures in Rust.
The <a href="/assets/closure_presentation.pdf">slides are here</a>.
</p>
</div>
</article>
<article class="event">
<div class="event-date">
<p class="event-month">November</p>
<p class="event-day">29</p>
<p class="event-year">2018</p>
</div>
<div class="event-desc">
<h3 class="event-desc-header">
Hack Night #11
</h3>
<dl class="dl-horizontal">
<dt>Where</dt>
<dd>Sundkaj 7, Nordhavn (Omnio)
<dd>
<dt>When</dt>
<dd>18:00—22:00</dd>
</dl>
<p>November's hack night will take place at Omnio in Nordhavn, we'll try
to have food sponsored by Omnio.</p>
<p>Agenda:
<ul>
<li>18:30—19:30: Talk by <a href="https://github.com/cbourjau">Christian Bourjau</a></li>
<li>19:30—22:00 Food and hanging out</li>
</ul>
</p>
</div>
</article>
<article class="event">
<div class="event-date">
<p class="event-month">October</p>
<p class="event-day">25</p>
<p class="event-year">2018</p>
</div>
<div class="event-desc">
<h3 class="event-desc-header">
Hack Night <code>0xa</code>
</h3>
<dl class="dl-horizontal">
<dt>Where</dt>
<dd>Snaregade 12 (Zendesk)
<dd>
<dt>When</dt>
<dd>18:00—22:00</dd>
</dl>
<p>The tenth hack night will take place either at Zendesk downtown.</p>
<p>This time, we'll <em>actually</em> try to get some food sponsored.
Stand by for news on that!</p>
<p>Agenda:
<ul>
<li>18:30—19:30: Talk: By <a href="https://github.com/retep007">retep007</a></li>
<li>19:30—end Food and hanging out</li>
</ul>
</p>
</div>
</article>
<article class="event">
<div class="event-date">
<p class="event-month">September</p>
<p class="event-day">27</p>
<p class="event-year">2018</p>
</div>
<div class="event-desc">
<h3 class="event-desc-header">
<code>Hack #Nine</code>
</h3>
<dl class="dl-horizontal">
<dt>Where</dt>
<dd>Energy Hub, Sundkaj 7, Nordhavn
<dd>
<dt>When</dt>
<dd>18:00—22:00</dd>
</dl>
<p>The ninth hack night will take place in Nordhavn (at Omnio), this will
be decided a little later. Going forward the default monthly hack night
will be the <b>last Thursday of the month</b>.</p>
<p>Submissions for talks are welcome! Are you working on an exciting Rust
project? Have you discovered something in and around Rust that you'd like
to share? Please talk about it!</p>
<p>Agenda:
<ul>
<li>18:30—19:30: Talk: Parsers and State Machines in Rust</li>
<li>19:30—end Food and hanging out</li>
</ul>
</p>
</div>
</article>
<article class="event">
<div class="event-date">
<p class="event-month">August</p>
<p class="event-day">30</p>
<p class="event-year">2018</p>
</div>
<div class="event-desc">
<h3 class="event-desc-header">
<code>Hack Night #8</code>
</h3>
<dl class="dl-horizontal">
<dt>Where</dt>
<dd>Sundkaj 7
<dd>
<dt>When</dt>
<dd>18:00—22:00</dd>
</dl>
<p>We will skip hack night in July, because it's holiday season and
return strong in August!</p>
</div>
</article>
<article class="event">
<div class="event-date">
<p class="event-month">June</p>
<p class="event-day">28</p>
<p class="event-year">2018</p>
</div>
<div class="event-desc">
<h3 class="event-desc-header">
<code>Hack Night #7</code>
</h3>
<dl class="dl-horizontal">
<dt>Where</dt>
<dd>Energy Hub, Sundkaj 7
<dd>
<dt>When</dt>
<dd>18:00—22:00</dd>
</dl>
<p>The next hack night will take place in Energy Hub in Nordhavn.</p>
<p><code>laumann</code> will present a project he's been cooking for
some time, otherwise the evening is open for hacking on your own
projects in a cozy atmosphere.</p>
<p>Snacks will be sponsored by <a href="https://omnio.net">Omnio</a>!</p>
</div>
</article>
<article class="event">
<div class="event-date">
<p class="event-month">May</p>
<p class="event-day">23</p>
<p class="event-year">2018</p>
</div>
<div class="event-desc">
<h3 class="event-desc-header">
<code>We're back! And it's fuzzy!</code>
</h3>
<dl class="dl-horizontal">
<dt>Where</dt>
<dd>Jobindex, Holger Danskes Vej 91, Frederiksberg</dd>
<dt>When</dt>
<dd>18:00—22:00</dd>
</dl>
<p>After a long hiatus, we are starting up again with Rust hack nights.
Our first meeting of 2018 will feature a presentation titled <b>Rust and
Fuzz Testing</b>, delivered by the good folks at <a href="https://seasoned.software"
target="_blank">Seasoned.Software</a>:</p>
<p>
<blockquote style="font-style: italic">At <a href="https://seasoned.software"
target="_blank">Seasoned.Software</a> we build a CI platform that
uses fuzz testing to improve the quality of your software projects. We
love Rust and we use it for most of our platform, and we support Rust
projects as first class citizens. We will give a brief presentation on
how Rust helped us build our platform, which problems we have
encountered so far, and how we solved them. Afterwards we will explain
why you should fuzz test your own projects and show how to set up fuzz
testing for your own Rust projects.</blockquote>
</p>
<p>The presentation is expected to start around 19:00, but you are
welcome to get in early from 18:00.</p>
</div>
</article>
<article class="event">
<div class="event-date">
<p class="event-month">May</p>
<p class="event-day">17</p>
<p class="event-year">2017</p>
</div>
<div class="event-desc">
<h3 class="event-desc-header">
<code>Rust Hack Night #5</code>
</h3>
<dl class="dl-horizontal">
<dt>Where</dt>
<dd>PROSA, KBH, ADA Vester Farimagsgade 37A</dd>
<dt>When</dt>
<dd>18:00—22:00</dd>
</dl>
<p>We get together to hack on our own Rust projects, talk
Rust and have fun.</p>
<p>This time the event is hosted at PROSA and we would be
happy to have one or two presentations on Rust-y
topics. If you'd like to give a talk, just write
to <kbd>laumann.thomas</kbd>
<!-- space
--><kbd>@</kbd><!-- more space --><kbd>gmail.com</kbd> and
we will put it on the program.
</p>
</div>
</article>
<article class="event">
<div class="event-date">
<p class="event-month">Apr</p>
<p class="event-day">26</p>
<p class="event-year">2017</p>
</div>
<div class="event-desc">
<h3 class="event-desc-header">
<code>Yet Another Hack Night</code>
</h3>
<dl class="dl-horizontal">
<dt>Where</dt>
<dd>Kronprinsessegade 54, 5th floor</dd>
<dt>When</dt>
<dd>18:00—22:00</dd>
</dl>
<p>We get together to hack on our own Rust projects, talk
Rust and have fun.</p>
<p>NEW! Call for talks!</p>
<p>If you'd like to give a talk, just write
to <kbd>laumann.thomas</kbd>
<!-- space
--><kbd>@</kbd><!-- more space --><kbd>gmail.com</kbd> and
we will put it on the program.
</p>
<p><b>UPDATE</b> We watched Raph
Levien's <a href="https://www.youtube.com/watch?v=SKtQgFBRUvQ">presentation</a>
on the <a href="https://github.com/google/xi-editor">Xi
editor</a>, and spent some time trying to figure out if
any of the linked frontends worked.</p>
<p><a href="https://github.com/mbudde">mbudde</a>
and <a href="https://github.com/laumann">laumann</a> also
hacked on redshift-rs, cleaning up some code and enabling
it to read a user's <code>~/.config/redshift.conf</code>
configuration.</p>
</div>
</article>
<article class="event">
<div class="event-date">
<p class="event-month">Mar</p>
<p class="event-day">30</p>
<p class="event-year">2017</p>
</div>
<div class="event-desc">
<h3 class="event-desc-header">
<code><b>cph_rs.hack_night();</b></code>
</h3>
<dl class="dl-horizontal">
<dt>Where</dt>
<dd>Snaregade 12</dd>
<dt>When</dt>
<dd>18:00—22:00</dd>
</dl>
<p>We get together to hack on our own Rust projects, talk
Rust and have fun.</p>
<p>Note that it is a different location than past
events. We thought it'd be fun to move it around a bit and
for this event, we will be hosted at Zendesk. Thanks
to <a href="https://github.com/jbdietrich"><code>jdietrich</code></a>
for setting it up!</p>
<p>If you want to join, just
contact <kbd>laumann.thomas<span>
<!-- space
-->
</span>@<span>
<!-- more space
-->
</span>gmail.com</kbd>, or let us know
on <code><a href="https://chat.mibbit.com/?server=irc.mozilla.org&channel=#rust-cph"
target="_blank"><b>#rust-cph</b></a></code>.</p>
</div>
</article>
<article class="event">
<div class="event-date">
<p class="event-month">Feb</p>
<p class="event-day">23</p>
<p class="event-year">2017</p>
</div>
<div class="event-desc">
<h3 class="event-desc-header">
<img src="/img/hack-night.png" style="width: 100%">
</h3>
<dl class="dl-horizontal">
<dt>Where</dt>
<dd>Kronprinsessegade 54, 5th floor</dd>
<dt>When</dt>
<dd>18:00</dd>
</dl>
<p>We get together to hack on our own Rust projects, talk
Rust and have fun.</p>
<p>If you want to join, just
contact <kbd>laumann.thomas<span>
<!-- space
-->
</span>@<span>
<!-- more space
-->
</span>gmail.com</kbd>, or let us know
on <code><a href="https://chat.mibbit.com/?server=irc.mozilla.org&channel=#rust-cph"
target="_blank">#rust-cph</a></code>.</p>
</div>
</article>
<article class="event">
<div class="event-date">
<p class="event-month">Jan</p>
<p class="event-day">24</p>
<p class="event-year">2017</p>
</div>
<div class="event-desc">
<h3 class="event-desc-header">Hack Night</h3>
<dl class="dl-horizontal">
<dt>Where</dt>
<dd>Kronprinsessegade 54, 5th floor</dd>
<dt>When</dt>
<dd>18:00</dd>
</dl>
<p>Merry Christmas! Almost a year has gone by since the
last meetup—but it is time again.</p>
<p>Anyone is welcome. If you want to join, just contact <kbd>laumann.thomas<span>
<!-- space -->
</span>@<span>
<!-- more space -->
</span>gmail.com</kbd></p>
<p><strong>UPDATE</strong> An enjoyable evening working on
individual projects. Among other
things, <a href="https://github.com/laumann">laumann</a>
added command-line arguments
to <a href="https://github.com/laumann/redshift-rs">redshift-rs</a>,
a <a href="http://jonls.dk/redshift/">Redshift</a>
clone (using <a href="https://crates.io/crates/docopt">docopt</a>).</p>
<p>We discussed implementing custom iterators
for parsing emojis in text, and how to use
the <code>?</code> operator that was stabilized
in <a href="https://blog.rust-lang.org/2016/11/10/Rust-1.13.html">Rust 1.13</a>.
</p>
<!-- We discussed implementing custom iterators and -->
<!-- the <code>?</code> operator -->
</div>
</article>
<article class="event">
<div class="event-date">
<p class="event-month">Feb</p>
<p class="event-day">17</p>
<p class="event-year">2016</p>
</div>
<div class="event-desc">
<h3 class="event-desc-header">Hackathon</h3>
<dl class="dl-horizontal">
<dt>Where</dt>
<dd>Kronprinsessegade 54, 5th floor</dd>
<dt>When</dt>
<dd>18:00</dd>
</dl>
<p>Riding the wave from the smashing success (and pizza)
of the first Hackathon, the next event is on the
horizon. To find a date in February, we have the
following <a href="http://doodle.com/poll/n3rbf6b97fw2n334">doodle</a>
(it is closed now). Just select the days that suit you,
and we will make a decision by the end of next week.</p>
<p>Anyone is welcome, regardless of Rust proficiency (in
fact, the hackathons are great places to pick up new
knowledge fast).</p>
<p>For any questions just shoot an e-mail to <kbd>laumann.thomas<span>
<!-- space -->
</span>@<span>
<!-- more space -->
</span>gmail.com</kbd></p>
</div>
</article>
<article class="event">
<div class="event-date">
<p class="event-month">Jan</p>
<p class="event-day">13</p>
<p class="event-year">2016</p>
</div>
<div class="event-desc">
<h3 class="event-desc-header">Hackathon</h3>
<dl class="dl-horizontal">
<dt>Where</dt>
<dd>Kronprinsessegade 54, 5th floor</dd>
<dt>When</dt>
<dd>18:00</dd>
</dl>
<p>We get together to hack some Rust. If you would like to attend, please let us know by sending an e-mail to
<kbd>laumann.thomas<span>
<!-- space -->
</span>@<span>
<!-- more space -->
</span>gmail.com</kbd>
</p>
</div>
</article>
<article class="event">
<div class="event-date">
<p class="event-month">May</p>
<p class="event-day">15</p>
<p class="event-year">2015</p>
</div>
<div class="event-desc">
<h3 class="event-desc-header">Rust 1.0 Release Party</h3>
<dl class="dl-horizontal">
<dt>Where</dt>
<dd>Robocat office, Pilestræde 43, 2nd floor</dd>
<dt>When</dt>
<dd>18:00</dd>
</dl>
<p>Along with <a
href="https://users.rust-lang.org/t/rust-1-0-launch-event-details-action-required-for-event-organizers/1025/15">other
Rust-enthusiastic groups</a>, we had a Rust 1.0 release party, with t-shirts and everything! Link to the <a
href="https://www.eventbrite.com/e/copenhagen-rust-launch-party-tickets-16663376608?utm_campaign=new_attendee&utm_medium=email&utm_source=eb_email&utm_term=event_name">event</a>.
</p>
</div>
</article>
<article class="event">
<div class="event-date">
<p class="event-month">Mar</p>
<p class="event-day">18</p>
<p class="event-year">2015</p>
</div>
<div class="event-desc">
<h3 class="event-desc-header">Rust - Copenhagen Tech
Polyglot Meetup</h3>
<dl class="dl-horizontal">
<dt>Where</dt>
<dd>Kronprinsessegade 54, 4th floor</dd>
<dt>When</dt>
<dd>19:00</dd>
</dl>
<p>A Rust event organized in collaboration with
the <a href="http://polyglots.dk">Copenhagen Tech
Polyglots</a>. We had a good evening talking all things
Rust, and, of course, stickers. See the
event <a href="http://www.meetup.com/Copenhagen-Tech-Polyglots/events/220800093/">here</a>.</p>
</div>
</article>
</div>
</div>
<!-- <script type="text/javascript"> -->
<!-- {% include include.js %} -->
<!-- include("https://cdn.jsdelivr.net/ace/1.1.3/noconflict/ace.js", function () { -->
<!-- include("https://cdn.jsdelivr.net/ace/1.1.3/noconflict/mode-rust.js", function () { -->
<!-- {% include editor.js %} -->
<!-- }); -->
<!-- }); -->
<!-- {% include set_platform.js %} -->
<!-- </script> -->
|