-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdates.html
1728 lines (1506 loc) · 54.2 KB
/
dates.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
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
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Haskell Meeting in Munich</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" type="text/css" href="css/format.css"/>
<link rel="SHORTCUT ICON" type="image/x-icon" href="css/favicon.ico"/>
</head>
<body>
<div class="header">
<a href="index.html">
<img id="newspic" src="img/news_bg.gif" alt="News"></img>
</a>
<img id="datespic" src="img/dates_fg.gif" alt="Dates"></img>
<a href="http://www.haskell.org" target="_blank">
<img id="haskellmeeting" src="img/haskell_meeting.gif" alt="Haskell"></img>
</a>
</div>
<div class="content">
<h1>Meeting Dates</h1>
The meetings begin at 19h30, German time.
Usual venue is <a href="https://www.rumpler.bayern/%C3%B6ffnungszeiten">Augustiner-Gaststätte Rumpler</a>.
The rule of thumb is that the meeting takes place in rotation on the
last Monday, Tuesday, Wednesday, Thursday of the month.
<h2>Next Meeting</h2>
<p>
Our next meeting is scheduled on <b>Thu, 2 Jan 2025</b>.
Details follow.
<!--
We'll meet at <a href="https://www.rumpler.bayern/%C3%B6ffnungszeiten">Augustiner-Gaststätte Rumpler</a>.
Please <a href="https://nuudel.digitalcourage.de/8AU551rOJtdAUAdg">sign up here</a> if you are coming so we can reserve enough seats.
-->
</p>
<!--
<p>
The talk takes place at <b><a href="https://muc.ccc.de/">Chaos Computer Club München</a></b>, Schleißheimer Str. 39.
After the talk, we'll go to
<a href="https://www.trattoria-porto-cervo.de/">Trattoria Porto Cervo</a>,
Schellingstraße 122.
Please <a href="https://nuudel.digitalcourage.de/Z3Zlv6tmUB1S9IPB">sign up here</a> if you are coming so we can reserve enough seats.
</p>
-->
<!--
We'll meet at <a href="https://cafe-puck.de/">Cafe Puck</a>.
-->
<!--
<p>
A <em>I-will-join</em>-<a href="https://dudle.inf.tu-dresden.de/">dudle</a>
will be available some days before.
We will announce it on the usual mailing lists. Until then, we wish
you a nice time!
</p>
-->
<!--
<p>
Please help us to reserve enough tables for this event!
It is ok to add yourself to the dudle anonymously or pseudonymously.
</p>
-->
<h2>Upcoming Meetings (computed <a href="stammtisch.hs">using Haskell of course</a>)</h2>
<table width="100%">
<!--
<tr>
<td width="30%" align="left" valign="top"></td>
<td>Meeting at Cafe Puck</td>
</tr>
-->
<tr>
<td width="30%" align="left" valign="top">Thu, 2 Jan 2025</td>
<td>Special holiday meeting (TBA).</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Mon, 27 Jan 2025</td>
<td>Meeting at undefined.</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Tue, 25 Feb 2025</td>
<td>Meeting at undefined.</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Wed, 26 Mar 2025</td>
<td>Meeting at undefined.</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Thu, 24 Apr 2025</td>
<td>Meeting at undefined.</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Mon, 26 May 2025</td>
<td>Meeting at undefined.</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Tue, 24 Jun 2025</td>
<td>Meeting at undefined.</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Wed, 30 Jul 2025</td>
<td>Meeting at undefined.</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Thu, 28 Aug 2025</td>
<td>Meeting at undefined.</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Mon, 29 Sep 2025</td>
<td>Meeting at undefined.</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Tue, 28 Oct 2025</td>
<td>Meeting at undefined.</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Wed, 26 11 2025</td>
<td>Meeting at undefined.</td>
</tr>
</table>
<h2>Past Meetings</h2>
<table width="100%">
<!--
<tr>
<td width="30%" align="left" valign="top">Thu, 30 May 2013</td>
<td>Meeting at Cafe Puck</td>
</tr>
-->
<tr>
<td width="30%" align="left" valign="top">Wed, 27 Nov 2024</td>
<td>Meeting at Cafe Puck.
4 people attended.</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Tue, 29 Oct 2024</td>
<td>Meeting at Khana Khazana.
9 people attended.</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Mon, 30 Sep 2024</td>
<td>Meeting at Augustiner-Gaststätte Rumpler.
Cancelled.</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Thu, 29 Aug 2024</td>
<td>Meeting at Song's Kitchen, Schleißheimer Str. 5.
3 people attended.</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Wed, 31 Jul 2024</td>
<td>Meeting at Augustiner-Gaststätte Rumpler.
5 people attended.</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Tue, 25 Jun 2024</td>
<td>Meeting at Hirschgarten Biergarten.
6 people attended.</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Mon, 27 May 2024</td>
<td>Meeting at Meeting at Augustiner-Gaststätte Rumpler.
4 people attended.</td>
</tr>
<tr>
<td width="30%" align="left" valign="top"><s>Thu, 25 Apr 2024</s> <b>shifted to:</b> <u>Tue, 30 Apr 2024</u></td>
<td>Meeting at Augustiner-Gaststätte Rumpler.
6 people attended.
</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Wed, 27 Mar 2024</td>
<td>Meeting at <s>Augustiner-Gaststätte Rumpler</s><u>Wirtshaus Maximilian</u>.
4 people attended.</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Tue, 27 Feb 2024</td>
<td>Meeting at Chaos Computer Club München.
9 people attended.
There was a <b>talk</b> by Profpatsch
about how to set up a professional Haskell project, tips for editor
environment, basic architecture, dos and don'ts.
</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Mon, 29 Jan 2024</td>
<td>Meeting at Chaos Computer Club München / Trattoria Porto Cervo.
12 people attended.
This time we had a <b>talk</b>: Thomas C. told us about the programming
language F#. <a href="https://chust.org/projects/fsharp-talk/">Slides.</a></td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Wed, 3 Jan 2024</td>
<td>Special holiday meeting at Song's Kitchen.
7 people attended.</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Wed, 29 Nov 2023</td>
<td>Meeting at Khana Khazana.
6 people attended.</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Tue, 31 Oct 2023</td>
<td>Meeting at Iveria.
4 people attended.</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Mon, 25 Sep 2023</td>
<td>Cancelled.</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Wed, 30 Aug 2023</td>
<td>Meeting at Augustiner Kurgarten.
5 people attended.</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Wed, 26 Jul 2023</td>
<td>Cancelled.</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Tue, 27 Jun 2023</td>
<td>Meeting at Augustiner-Gaststätte Rumpler.
5 people attended.</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Mon, 29 May 2023</td>
<td>Meeting at Hirschgarten Biergarten.</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Thu, 27 Apr 2023</td>
<td>Cancelled.</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Wed, 29 Mar 2023</td>
<td>Meeting at Augustiner-Gaststätte Rumpler.
5 people attended.</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Tue, 28 Feb 2023</td>
<td>Meeting at Augustiner-Gaststätte Rumpler.
7 people attended.
We talked about
Judo,
build systems,
hiring questions,
lazyness,
and many other things.</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Mon, 30 Jan 2023</td>
<td>Meeting at Augustiner-Gaststätte Rumpler.
5 people attended.
</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Wed, 4 Jan 2023</td>
<td>Special holiday meeting at Augustiner-Gaststätte Rumpler.
6 people attended.</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Wed, 30 Nov 2022</td>
<td>Meeting at Cafe Puck.
6 people attended.
We talked about
build systems,
Mastodon,
Game of Life,
and many other things.
</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Tue, 25 Oct 2022</td>
<td>Cancelled.</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Thu, 29 Sep 2022</td>
<td>Meeting at Cafe Puck.
5 people attended.
We talked about laziness,
pure mathematics,
the Lean theorem prover,
Rank-N types,
Chess
and many other things.
</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Thu, 25 Aug 2022</td>
<td>Meeting at Biergarten am Wiener Platz.
2 people attended.</td>
</tr>
<tr>
<td width="30%" align="left" valign="top"><s>Wed, 27 Jul 2022</s>
<u>Thu, 28 Jul 2022</u></td>
<td>Meeting at Hirschgarten Biergarten.
5 people attended.</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Tue, 28 Jun 2022</td>
<td>Meeting at <s>Hirschgarten Biergarten</s><u>Augustiner Kurgarten</u>.
6 people attended.</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Mon, 30 May 2022</td>
<td>Cancelled.</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Thu, 28 Apr 2022</td>
<td><s>Meeting at Augustiner-Gaststätte Rumpler.</s> Cancelled.</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Wed, 30 Mar 2022</td>
<td>Meeting at Augustiner-Gaststätte Rumpler.
2 people attended.</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Tue, 22 Feb 2022</td>
<td><strong>Virtual Meeting</strong> on Jitsi.
3 people attended.</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Mon, 31 Jan 2022</td>
<td><strong>Virtual Meeting</strong> on Jitsi.
7 people attended.
We talked about ultrafinitism,
shell scripting in haskell,
Wordle,
GHC 9,
and many other things.
</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Wed, 24 Nov 2021</td>
<td>Skipped.</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Tue, 26 Oct 2021</td>
<td>Meeting at Augustiner-Gaststätte Rumpler.
4 people attended.</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Mon, 27 Sep 2021</td>
<td>Meeting at Augustiner-Gaststätte Rumpler.
6 people attended.
We talked about
finding hardware bugs,
array languages,
propagators,
and many other things.
</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Thu, 26 Aug 2021</td>
<td><strong>Virtual Meeting</strong> on Jitsi.
2 people attended.</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Wed, 28 Jul 2021</td>
<td><strong>Virtual Meeting</strong> on Jitsi.
3 people attended.
We talked about
microcontrollers,
e-graphs,
Prolog,
FRP,
and OCaml.
</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Tue, 29 Jun 2021</td>
<td><strong>Virtual Meeting</strong> on Jitsi.
4 people attended.
We talked about
preregistration of research,
<a href="https://github.com/JeffreyBenjaminBrown/hode/blob/master/README.md">hode</a>,
conspiracy theories,
<a href="https://github.com/flancian/agora/">Agora</a>,
<a href="https://github.com/synchrony">Semantic Synchrony</a>,
the <a href="https://hackage.haskell.org/package/foldl">foldl library</a>,
RPN,
and many other things.
</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Mon, 31 May 2021</td>
<td><strong>Virtual Meeting</strong> on Google Meet.
5 people attended.
We talked about
the field with one element,
Neuroeconomics,
paper reviewers,
<a href="https://ihp.digitallyinduced.com/">IHP</a>,
Modal Homotopy Type Theory,
intuitionistic logic and computation,
categorical logic,
Solomonoff's theory of inductive inference,
and higher order compression.
</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Thu, 29 Apr 2021</td>
<td><strong>Virtual Meeting</strong> on Google Meet.
5 people attended.
We talked about
ultrafinitism,
homotopy type theory,
<a href="https://scirate.com/">Top arXiv papers</a>
and
<a href="http://augmentingcognition.com/ltm.html">Augmenting Long-term Memory</a>.
</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Wed, 31 Mar 2021</td>
<td><strong>Virtual Meeting</strong> on Google Meet.
5 people attended.
We talked about
automated theorem provers,
academic publishing,
theories of consciousness,
machine learning,
and books on type theory.
</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Tue, 23 Feb 2021</td>
<td><strong>Virtual Meeting</strong> on Google Meet.
6 people attended.
We talked about
data encoded in Pi,
GHC 9.0.1 and linear logic,
dependent pattern matching,
the GHC2021 standard,
and the <a href="https://github.com/jameshaydon/lawvere">Lawvere programming language</a>.
</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Mon, 25 Jan 2021</td>
<td><strong>Virtual Meeting</strong> on Google Meet.
4 people attended.
We talked about
the Yoneda lemma,
Scheme implementations,
and how debugging works.
</tr>
<tr>
<td width="30%" align="left" valign="top">Wed, 25 Nov 2020</td>
<td><strong>Virtual Meeting</strong> on Google Meet.
4 people attended.
We talked about
spreadsheets,
errors in data pipelines,
and
<em>beables</em> and the thermal interpretation of quantum mechanics.
</td>
</tr>
<tr>
<td width="30%" align="left" valign="top"><s>Tue, 27 Oct 2020</s></td>
<td>Skipped.</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Mon, 28 Sep 2020</td>
<td><strong>Virtual Meeting</strong> on Google Meet.
5 people attended.
<a href="https://www.dropbox.com/sh/k8w0fu7yx0oicug/AADferAP6lfgsmcpr1hUrj7-a?dl=0">Papers discussed.</a>
</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Thu, 27 Aug 2020</td>
<td>Meeting at Hirschgarten.
4 people attended.
</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Wed, 29 Jul 2020</td>
<td>Meeting at Hirschgarten.
5 people and 1 shark attended.
We talked about
learning languages,
exception handling and implementation,
and the book "The Little Typer"
and many other things.
</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Tue, 30 Jun 2020</td>
<td><strong>Virtual Meeting</strong> on Google Meet.
3 people attended.
We talked about
quantum mechanics,
termination with well-orders,
nonograms,
and many other things.
</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Mon, 25 May 2020</td>
<td><strong>Virtual Meeting</strong> on Google Meet.
8 people attended.
We talked about
type inference for JSON,
<a href="http://chalmersfp.org/">Chalmers Online Functional Programming Seminar Series</a>,
wine tasting,
Idris2,
impredicative type systems,
large-scale build systems,
Pandoc,
and many other things.
</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Thu, 30 Apr 2020</td>
<td><strong>Virtual Meeting</strong> on Google Meet.
9 people attended.
We talked about
ReasonML,
the proof assistant Arend,
concepts of error handling,
Mercurial,
property based testing,
the judicial system of the Vatican,
and many other things.
</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Wed, 25 Mar 2020</td>
<td><strong>Virtual Meeting</strong> on Google Meet.
10 people attended!
We talked about
Corona virus testing,
airport optimization,
the VSCode Haskero plugin,
beer brewing,
generics-sop and Typed Template Haskell,
structured markup,
and monads as monoids in the category of endofunctors.
</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Tue, 25 Feb 2020</td>
<td>Meeting at Augustiner-Gaststätte Rumpler.
7 people attended, of which 2 had Kässpatzen.
We talked about
Lisp in the industry,
everything about satellites,
New Math,
semiconductors,
and many other things.
</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Mon, 27 Jan 2020</td>
<td>Meeting at Augustiner-Gaststätte Rumpler.
4 people attended.
We talked about
the Girls Day,
display calculus,
and blockchains.
</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Mon, 06 Jan 2020</td>
<td>Special holiday meeting at Augustiner-Gaststätte Rumpler.
8 people attended, of which 2 had Kässpatzen.
We talked about
Simple Haskell,
Turbo Pascal overlays,
testing,
vaccination,
and many other things.
</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Wed, 27 Nov 2019</td>
<td>Meeting at Café Puck.
9 people attended.
We talked about
<a href="https://accidentallyquadratic.tumblr.com/">Accidentally Quadratic</a>,
2d pattern matching,
<a href="https://pijul.org/">Pijul</a>,
Floyd's Tortoise and Hare,
linkers,
concurrency in Ada,
and 3d photography.
</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Tue, 29 Oct 2019</td>
<td>Meeting at Augustiner-Gaststätte Rumpler.
5 people attended, of which 3 had Kässpatzen.
We talked about
data formats,
Pandoc,
React,
and quantum computing.
</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Mon, 30 Sep 2019</td>
<td>Meeting at Augustiner-Gaststätte Rumpler.
4 people attended.
We talked about
Spark and Flink,
taxes,
loop detection in Haskell datastructures,
and Zettelkästen.
</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Thu, 29 Aug 2019</td>
<td>Meeting at Augustiner-Gaststätte Rumpler.
9 people attended, of which 5 had Kässpatzen.
We talked about
Comics,
the GraalVM,
the Tagless-Final Style,
and F#.
</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Wed, 31 Jul 2019</td>
<td>Meeting at Augustiner-Gaststätte Rumpler.
8 people attended.
We talked about
David Spivak's work on Category Theory and Databases,
the C language,
technology in Europe,
Applied Category Theory,
and Quantum Computing.
</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Tue, 25 Jun 2019</td>
<td>Meeting at Hirschgarten (self-service area).
7 people attended.
We talked about
finding jobs,
model checking,
compiler complexity,
the RAMBleed attack,
and semigroup instances of Map.
</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Mon, 27 May 2019</td>
<td>Meeting at Augustiner-Gaststätte Rumpler.
7 people attended.
We talked about
stereograms,
category theory for teaching,
and voting systems.
</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Thu, 25 Apr 2019</td>
<td>Meeting at Cafe Puck.</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Wed, 27 Mar 2019</td>
<td>Meeting at Augustiner-Gaststätte Rumpler.
6 people attended.
We talked about
satellites,
trams,
complexity classes,
Git
and queuing theory.
</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Tue, 26 Feb 2019</td>
<td>Meeting at Augustiner-Gaststätte Rumpler.
9 people attended.
We talked about
Artificial Intelligence,
integrity in science,
Microservices,
the Docker monad
and random number generators.
</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Mon, 28 Jan 2019</td>
<td>Meeting at Cafe Puck.
7 people attended.
We talked about
functional programming in Java,
Tidalwave,
and the Julia programming language.
</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Thu, 3 Jan 2019</td>
<td>Special holiday meeting at Rumpler. 7 people attended.</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Wed, 28 Nov 2018</td>
<td>Meeting at Cafe Puck.
9 people attended.
We talked about
machine learning,
probabilistic programming,
line breaking algorithms,
rolling hash sums,
and telephony systems.</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Tue, 30 Oct 2018</td>
<td>Meeting at Augustiner-Gaststätte Rumpler.
7 people attended.
We talked about
the JVM and languages on it,
the book "The Little Typer",
Linux distributions,
TypeScript,
and sleeping.
</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Mon, 24 Sep 2018</td>
<td>Meeting at Cafe Puck.
7 people attended.
</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Thu, 30 Aug 2018</td>
<td>Meeting at Cafe Puck.
4 people attended.
We talked about the
Haskell School of Music,
adjoints,
array indexing,
proof of stake systems,
and async/await.
</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Wed, 25 Jul 2018</td>
<td>Meeting at Max Emanuel Brauerei.
11 people atteded.
We took the Haskell exam of one of our members (most passed!),
talked about model theory and card game mechanics,
and many other things.
</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Tue, 26 Jun 2018</td>
<td>Meeting at Cafe Puck.
7 people attended.
We talked about ordinals,
using blockchain for supply tracking,
Prolog implementations,
and Agile development.
</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Mon, 28 May 2018</td>
<td>Meeting at Hirschgarten (self-service area).
6 people attended.</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Thu, 26 Apr 2018</td>
<td>Meeting at Augustiner-Gaststätte Rumpler (Baumstraße 21).
3 people attended.
We talked about C++,
list comprehensions,
Prolog,
Lies in mathematics
and the Chinese Remainder Theorem.
</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Wed, 28 Mar 2018</td>
<td>Meeting at Café Puck.
7 people attended.
We talked about different kinds of logic,
SAT solving,
functional reactive programming,
Rust,
package managers,
continued fractions,
and ultrafinitism.
</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Tue, 27 Feb 2018</td>
<td>Meeting at Schiller Bräu (Schillerstrasse 23).
10 people attended.
We talked among other things about
Leibniz,
recapitulated BOBKonf,
LiquidHaskell
and QuickCheck for Coq.
</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Mon, 29 Jan 2018</td>
<td>Meeting at Cafe Puck. It is open again!
8 people attended.
We talked about
Self,
the Cadano cryptocurrency,
a 500loc shader,
and BOBKonf.
</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Wed, 29 Nov 2017</td>
<td>Meeting at Augustiner-Gaststätte Rumpler (Baumstraße 21).
6 people attended.
We talked about
Go Native,
web frontend development,
noise cancelling headphones,
Romantic literature,
parallel Computing,
metacircular Haskell,
and lazy evaluation.
</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Mon, 30 Oct 2017 <b>(changed)</b></td>
<td>Meeting at Augustiner-Gaststätte Rumpler (Baumstraße 21).
6 people attended.
We talked about
C++ coroutines,
Scheme's hygienic macros,
<a href="http://plzoo.andrej.com/">the Programming Languages Zoo</a>,
and many other things.
</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Mon, 25 Sep 2017</td>
<td>Meeting at Max Emanuel Brauerei.
6 people attended.
We talked about
the SKI calculus,
learning programming with <a href="https://docs.racket-lang.org/drracket/">DrRacket</a>,
the complexity classes NC<sup>1</sup> and LOGCFL,
the <a href="http://sepwww.stanford.edu/data/media/public/sep/morgan/texturematch/paper_html/node3.html">Laplacian Pyramid</a>,
software bloat,
energy turnaround,
and the book
<a href="http://eu.wiley.com/WileyCDA/WileyTitle/productCd-1118390180.html">
Primes of the Form <i>x<sup>2</sup>+ny<sup>2</sup></i></a>
by David A. Cox.
</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Thu, 31 Aug 2017</td>
<td>Meeting at Augustiner-Gaststätte Rumpler (Baumstraße 21).
6 people attended.
We talked about
C++,
video editing,
radical constructivism
sand microprocessors.
</td>
</tr>
<tr>
<td width="30%" align="left" valign="top"><strong>Thu, 27 Jul 2017 (changed)</strong></td>
<td>Meeting at Augustiner-Gaststätte Rumpler (Baumstraße 21).
6 people attended.
We talked about
firewalls,
ultrafilters,
minimal logic,
type theory,
federalism,
and Löb's theorem.
</td>
</tr>
<tr>
<td width="30%" align="left" valign="top">Tue, 27 Jun 2017</td>
<td>Meeting at Hirschgarten.
9 people attended.
We talked about Haskell and politics,
Bertrand Russell,
programmable text editors,
and typeclasses.
Money quote: <q style="text-variant: italic;">Sound, unsound, das sind doch bürgerliche Begriffe.</q>
</td>
</tr>