forked from hackergarten/hackergarten.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathevents.json
More file actions
6222 lines (6221 loc) · 213 KB
/
events.json
File metadata and controls
6222 lines (6221 loc) · 213 KB
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
[
{
"date": "2022-04-07",
"venue": "CSS Versicherung",
"address": "Rösslimatte 52, 6005 Luzern",
"links": [
{
"title": "Meetup",
"url": "https://www.meetup.com/Hackergarten-Luzern/events/284461300/"
}
],
"achievements": [
]
},
{
"date": "2022-03-03",
"venue": "CSS Versicherung",
"address": "Rösslimatte 52, 6005 Luzern",
"links": [
{
"title": "Meetup",
"url": "https://www.meetup.com/Hackergarten-Luzern/events/281889776/"
}
],
"achievements": [
{
"title": "Hackergarten website: hide canceled events from past events",
"url": "https://github.com/hackergarten/hackergarten.github.io/pull/328"
},
{
"title": "Hackergarten website: First next event shows always in green",
"url": "https://github.com/hackergarten/hackergarten.github.io/pull/328"
}
],
"status": {
"key": "rescheduled",
"reason": "Postponed until March due to the corona virus."
}
},
{
"date": "2021-03-16",
"title": "Hackergarten @ Conference - JavaLand 2021",
"venue": "The Internet",
"address": "",
"links": [
{
"title": "Homepage",
"url": "https://www.javaland.eu/de/programm/community-aktivitaeten/"
}
],
"achievements": []
},
{
"date": "2021-02-18",
"title": "Hackergarten Basel - Virtual Edition",
"venue": "The Internet",
"address": "",
"links": [
{
"title": "Meetup",
"url": "https://www.meetup.com/de-DE/Hackergarten-Basel/events/276308761/"
}
],
"achievements": [
{
"title": "Hackergarten Homepage Deployment: Switch to GH Actions",
"url": "https://github.com/hackergarten/hackergarten.github.io/pull/319"
},
{
"title": "Hackergarten Org on GitHub new Icon",
"url": "https://github.com/hackergarten/"
},
{
"title": "gif generation for ImageDiff",
"url": "https://github.com/ehmkah/imgdiff/pull/62"
},
{
"title": "GPX Animator Design Brainstorming",
"url": "https://gpx-animator.app/"
}
]
},
{
"date": "2022-01-20",
"venue": "Online",
"address": "Online / Remote",
"links": [
{
"title": "Meetup",
"url": "https://www.meetup.com/de-DE/Hackergarten-Basel/events/283220432/"
}
],
"achievements": [
]
},
{
"date": "2020-12-03",
"venue": "Hirschengraben Coworking + Innovation",
"address": "Hirschengraben 40, 6003 Luzern",
"links": [
{
"title": "Meetup",
"url": "https://www.meetup.com/Hackergarten-Luzern/events/jfqzmqybcqbfb/"
}
],
"achievements": [],
"status": {
"key": "canceled",
"reason": "Due to the current situation regarding the corona virus."
}
},
{
"date": "2020-11-05",
"venue": "Hirschengraben Coworking + Innovation",
"address": "Hirschengraben 40, 6003 Luzern",
"links": [
{
"title": "Meetup",
"url": "https://www.meetup.com/Hackergarten-Luzern/events/jfqzmqybcpbhb/"
}
],
"achievements": [],
"status": {
"key": "canceled",
"reason": "Due to the current situation regarding the corona virus."
}
},
{
"title": "Hackergarten JWild",
"date": "2020-10-31",
"venue": "Fairy Knowe Hotel",
"address": "1 Dumbleton Road, Wilderness, South Africa",
"links": [
{
"title": "JWild",
"url": "https://wilderness-software.com/jwild-2020/"
}
],
"achievements": [],
"status": {
"key": "rescheduled",
"reason": "Unfortunately postponed to 2021"
}
},
{
"date": "2020-10-22",
"title": "17. Hackergarten - Hacktoberfest Edition - remote",
"venue": "codecentric AG",
"address": "Industriestraße 3, 70565 Stuttgart, Germany",
"links": [
{
"title": "Meetup",
"url": "https://www.meetup.com/Hackergarten-Stuttgart/events/273801520/"
}
],
"achievements": [
{
"title": "Vue: extract default value function as string",
"url": "https://github.com/JetBrains/web-types/pull/22"
},
{
"title": "Set notificationUri for debts",
"url": "https://github.com/AndreAle94/moneywallet/pull/149"
}
]
},
{
"date": "2020-10-01",
"venue": "Hirschengraben Coworking + Innovation",
"address": "Hirschengraben 40, 6003 Luzern",
"links": [
{
"title": "Meetup",
"url": "https://www.meetup.com/Hackergarten-Luzern/events/jfqzmqybcnbcb/"
}
],
"achievements": []
},
{
"date": "2020-09-03",
"venue": "Hirschengraben Coworking + Innovation",
"address": "Hirschengraben 40, 6003 Luzern",
"links": [
{
"title": "Meetup",
"url": "https://www.meetup.com/Hackergarten-Luzern/events/jfqzmqybcmbfb/"
}
],
"achievements": []
},
{
"date": "2020-08-06",
"venue": "Hirschengraben Coworking + Innovation",
"address": "Hirschengraben 40, 6003 Luzern",
"links": [
{
"title": "Meetup",
"url": "https://www.meetup.com/Hackergarten-Luzern/events/jfqzmqybclbjb/"
}
],
"achievements": []
},
{
"date": "2020-07-02",
"venue": "Hirschengraben Coworking + Innovation",
"address": "Hirschengraben 40, 6003 Luzern",
"links": [
{
"title": "Meetup",
"url": "https://www.meetup.com/Hackergarten-Luzern/events/jfqzmqybckbdb/"
}
],
"achievements": []
},
{
"date": "2020-06-04",
"venue": "Hirschengraben Coworking + Innovation",
"address": "Hirschengraben 40, 6003 Luzern",
"links": [
{
"title": "Meetup",
"url": "https://www.meetup.com/Hackergarten-Luzern/events/jfqzmqybcjbgb/"
}
],
"achievements": [],
"status": {
"key": "canceled",
"reason": "Due to the current situation regarding the corona virus."
}
},
{
"date": "2020-05-07",
"venue": "Hirschengraben Coworking + Innovation",
"address": "Hirschengraben 40, 6003 Luzern",
"links": [
{
"title": "Meetup",
"url": "https://www.meetup.com/Hackergarten-Luzern/events/jfqzmqybcfbhb/"
}
],
"achievements": [],
"status": {
"key": "canceled",
"reason": "Due to the current situation regarding the corona virus."
}
},
{
"title": "Hackergarten Paris",
"date": "2020-04-28",
"venue": "Paris - Online",
"address": "zoom.us",
"links": [
{
"title": "Meetup",
"url": "https://www.meetup.com/Paris-Hackergarten/events/269897230/"
}
],
"achievements": [
{
"title": "Jean and Hervé reworked the introduction text of QuickPerf",
"url": "https://github.com/quick-perf/maven-test-bench/pull/16"
},
{
"title": "Adrien added the XML comment style to headache",
"url": "https://github.com/fbiville/headache/pull/80"
},
{
"title": "Bakary contributed a new Assertj-Neo4j assertion",
"url": "https://github.com/joel-costigliola/assertj-neo4j/pull/51"
}
]
},
{
"title": "Hackergarten Paris",
"date": "2020-04-14",
"venue": "Paris - Online",
"address": "zoom.us",
"links": [
{
"title": "Meetup",
"url": "https://www.meetup.com/Paris-Hackergarten/events/269897230/"
}
],
"achievements": [
{
"title": "Ismail worked with Florent on a new riff Golang function invoker",
"url": "https://github.com/yeshzaoui/golang-function-invoker/tree/gRPC"
},
{
"title": "Agathe worked on Assertj-Neo4j",
"url": "https://github.com/joel-costigliola/assertj-neo4j/issues/40"
},
{
"title": "Bakary worked with Hervé on Maven Fluido skin",
"url": "https://github.com/apache/maven-fluido-skin/pull/16"
},
{
"title": "Bakary also worked on Assertj-Neo4j",
"url": "https://github.com/joel-costigliola/assertj-neo4j/issues/34"
}
]
},
{
"date": "2020-04-02",
"venue": "Hirschengraben Coworking + Innovation",
"address": "Hirschengraben 40, 6003 Luzern",
"links": [
{
"title": "Meetup",
"url": "https://www.meetup.com/Hackergarten-Luzern/events/jfqzmqybcgbdb/"
}
],
"achievements": [],
"status": {
"key": "canceled",
"reason": "Due to the current situation regarding the corona virus."
}
},
{
"title": "Hackergarten Paris",
"date": "2020-03-31",
"venue": "Paris - Online",
"address": "zoom.us",
"links": [
{
"title": "Meetup",
"url": "https://www.meetup.com/Paris-Hackergarten/events/wsrdfrybcfbpc/"
}
],
"achievements": [
{
"title": "Ismail worked with Adrien on making OpenWhyd sessions accessible to third parties",
"url": "https://github.com/openwhyd/openwhyd/pull/257"
},
{
"title": "Bakary finished work with Hervé on making Logback Maven build reproducible",
"url": "https://github.com/qos-ch/logback/pull/484"
},
{
"title": "El Mehdi started working with Florent on using TestContainers in Liquigraph",
"url": "https://github.com/AElMehdi/liquigraph/tree/issue_254"
},
{
"title": "Agathe started working with Florent on Assertj-Neo4j IndexDefinition assertions",
"url": "https://github.com/joel-costigliola/assertj-neo4j/issues/33"
}
]
},
{
"date": "2020-03-25",
"title": "Hackergarten Basel",
"venue": "Optravis LLC Office",
"address": "Stapfelberg 9, Basel, Switzerland",
"links": [
{
"title": "Meetup",
"url": "https://www.meetup.com/de-DE/Hackergarten-Basel/events/268707937/"
}
],
"achievements": [],
"status": {
"key": "canceled",
"reason": "Due to the current situation regarding the corona virus."
}
},
{
"date": "2020-03-18",
"title": "Hackergarten Stuttgart",
"venue": "Industriestraße 3",
"address": "Industriestraße 3, Stuttgart, Germany",
"links": [
{
"title": "Meetup",
"url": "https://www.meetup.com/de-DE/Hackergarten-Stuttgart/events/269207394/"
}
],
"achievements": []
},
{
"date": "2020-03-05",
"venue": "Hirschengraben Coworking + Innovation",
"address": "Hirschengraben 40, 6003 Luzern",
"links": [
{
"title": "Meetup",
"url": "https://www.meetup.com/Hackergarten-Luzern/events/jfqzmqybcfbhb/"
}
],
"achievements": []
},
{
"date": "2020-02-27",
"title": "Hackergarten Basel",
"venue": "Karakun Office",
"address": "Elisabethenanlage 25, Basel, Switzerland",
"links": [
{
"title": "Meetup",
"url": "https://www.meetup.com/de-DE/Hackergarten-Basel/events/268707924/"
}
],
"achievements": [
{
"title": "GPX Animator: Adding a track color setting to the preferences",
"url": "https://github.com/zdila/gpx-animator/issues/165"
}
]
},
{
"title": "Hackergarten Berlin 6th",
"date": "2020-02-26",
"venue": "IBM Deutschland",
"address": "Französische Straße 24, Berlin",
"links": [
{
"title": "Event",
"url": "https://www.meetup.com/de-DE/Hackergarten-Berlin/events/268359252/"
}
],
"achievements": [
{
"title": "Implemented feature for quasar-framework",
"url": "https://github.com/quasarframework/quasar/issues/6493"
},
{
"title": "Implemented feature for quasar-framework",
"url": "https://github.com/quasarframework/quasar/issues/5338"
},
{
"title": "Build spider for city-scrapers",
"url": "https://github.com/City-Bureau/city-scrapers/issues/914"
}
]
},
{
"title": "Hackergarten Paris",
"date": "2020-02-25",
"venue": "Pivotal France",
"address": "33 rue La Fayette 75009 Paris",
"links": [
{
"title": "Meetup",
"url": "https://www.meetup.com/fr-FR/Paris-Hackergarten/events/wsrdfrybcdbhc/"
}
],
"achievements": [
{
"title": "Minh-Trieu made Quickperf build reproducible",
"url": "https://github.com/quick-perf/quickperf/pull/58"
},
{
"title": "Bakary worked on making several libs' (Commons, Logback) build reproducible as well",
"url": "https://maven.apache.org/"
},
{
"title": "Arnaud worked on making felix:bundle result reproducible",
"url": "https://issues.apache.org/jira/browse/FELIX-6203"
},
{
"title": "@AElMehdi continued his work on riff stream alias validation",
"url": "https://github.com/projectriff/system/pull/318"
},
{
"title": "Ismail started working on introducing alias to riff runtimes in CLI",
"url": "https://github.com/projectriff/cli/pull/227"
},
{
"title": "Started work on introducing a Cypher procedure to remove Liquigraph history",
"url": "https://github.com/liquigraph/liquigraph/issues/218"
}
]
},
{
"title": "Hackergarten Genève",
"date": "2020-02-12",
"venue": "Ramada Encore",
"address": "Route des Jeunes 10-12, 1227 Genève",
"links": [
{
"title": "Event",
"url": "https://www.eventbrite.com/e/hackergarten-geneve-registration-92691417525"
}
],
"achievements": [
{
"title": "Closed issue in JaCoCo project",
"url": "https://github.com/jacoco/jacoco/issues/1021"
},
{
"title": "Created issue for Groovy project: Captured arguments in closures are not annotated with @Generated",
"url": "https://issues.apache.org/jira/browse/GROOVY-9396"
},
{
"title": "Opened pull request for Groovy project",
"url": "https://github.com/apache/groovy/pull/1166"
},
{
"title": "Opened pull request for JaCoCo project",
"url": "https://github.com/jacoco/jacoco/pull/1022"
},
{
"title": "Opened pull request for JaCoCo project",
"url": "https://github.com/jacoco/jacoco/pull/1023"
},
{
"title": "Opened pull request for JaCoCo project",
"url": "https://github.com/jacoco/jacoco/pull/1024"
}
]
},
{
"date": "2020-02-06",
"venue": "Hirschengraben Coworking + Innovation",
"address": "Hirschengraben 40, 6003 Luzern",
"links": [
{
"title": "Meetup",
"url": "https://www.meetup.com/Hackergarten-Luzern/events/jfqzmqybcdbjb/"
}
],
"achievements": [
{
"title": "nanoPi: a pin selector for voltage control",
"url": "https://bitbucket.org/lukaskempf/poeportexpandercontrol/commits/b19d5f8edf423a7f2ab69a40cdf2dfb3d3e27fcb"
},
{
"title": "GPX Animator: Create a common dialog to display Markdown formatted data",
"url": "https://github.com/zdila/gpx-animator/issues/175"
},
{
"title": "GPX Animator: new icon brainstorming",
"url": "https://github.com/zdila/gpx-animator/issues/111"
},
{
"title": "Preparing JavaFX Tweetwall for Voxxed Days Zürich 2020",
"url": "https://github.com/reinhapa/TweetWallFX-Voxxed-Days"
}
]
},
{
"date": "2020-02-03",
"links": [
{
"title": "Website",
"url": "https://www.jfokus.se/jfokus/"
}
],
"achievements": [
],
"venue": "JFokus",
"address": "Stockholm, Sweden"
},
{
"title": "Hackergarten Paris",
"date": "2020-01-28",
"venue": "Pivotal France",
"address": "33 rue La Fayette 75009 Paris",
"links": [
{
"title": "Meetup",
"url": "https://www.meetup.com/fr-FR/Paris-Hackergarten/events/wsrdfrybccblc/"
}
],
"achievements": [
{
"title": "@DebugQuickPerf should display the QuickPerf JVM options (done)",
"url": "https://github.com/quick-perf/quickperf/issues/35"
},
{
"title": "Add @ExpectMaxQueryExecutionTime (done)",
"url": "https://github.com/quick-perf/quickperf/issues/4"
},
{
"title": "@ProfileHeapAllocation (in progress)",
"url": "https://github.com/quick-perf/quickperf/issues/8"
},
{
"title": "Test cypress as an alternative to Webdriver, for e2e tests (in progress)",
"url": "https://github.com/openwhyd/openwhyd/issues/199"
},
{
"title": "Secure login with argon2 instead of md5 hash (in progress)",
"url": "https://github.com/openwhyd/openwhyd/issues/258"
}
]
},
{
"date": "2019-12-10",
"venue": "SBB",
"address": "Haslerstrasse 30, 3008 Bern",
"links": [
{
"title": "Meetup",
"url": "https://www.meetup.com/de-DE/Hackergarten-Bern/events/cpzqxmyzqbnb/"
}
],
"achievements": [
{
"title": "Trasier Server API - project created",
"url": "https://github.com/trasiercom/trasier-server-api"
},
{
"title": "Trasier Server - project created",
"url": "https://github.com/trasiercom/trasier-server"
}
]
},
{
"date": "2019-12-05",
"venue": "Hirschengraben Coworking + Innovation",
"address": "Hirschengraben 40, 6003 Luzern",
"links": [
{
"title": "Meetup",
"url": "https://www.meetup.com/Hackergarten-Luzern/events/jfqzmqyzqbhb/"
}
],
"achievements": [
{
"title": "GPX Animator: Bike icon now configurable via GUI and CLI",
"url": "https://github.com/zdila/gpx-animator/pull/116"
},
{
"title": "DDErl: fixing table name parsing for partitioned and sharded tables",
"url": "https://github.com/K2InformaticsGmbH/imem/commit/5225f9ea58def89eb03f12fa5262bb6953693961"
},
{
"title": "DDErl: fix rows format for diff",
"url": "https://github.com/K2InformaticsGmbH/dderl/commit/94c75f3926a3cec0737ba94800aa5f928c65dbee"
},
{
"title": "DDErl: fix rows emission for diff",
"url": "https://github.com/K2InformaticsGmbH/dderl/commit/d22475ab0cd7ce7a75c5c639232774a819754b94"
},
{
"title": "OraLixir: namespace bug fixes",
"url": "https://github.com/c-bik/OraLixir/commit/e3d02d575ca642a0f023b545a598ae042f70608e"
},
{
"title": "RabbitMQ-CDI: migrated to kordamp plugin",
"url": "https://github.com/reinhapa/rabbitmq-cdi/commit/d12ebb6429b2594b6d7b4967f43f2ee515085353"
}
]
},
{
"title": "2. Hackergarten Karlsruhe",
"date": "2019-11-28",
"links": [
{
"title": "Meetup",
"url": "https://www.meetup.com/de-DE/tech-talk-Karlsruhe/events/265477354/"
},
{
"title": "How to find us",
"url": "https://goo.gl/maps/YGcY7GhHau2j2MmK9"
}
],
"achievements": [],
"venue": "codecentric AG",
"address": "Gartenstraße 69a, 76135 Karlsruhe, Germany"
},
{
"title": "Hackergarten Paris",
"date": "2019-11-26",
"venue": "Pivotal France",
"address": "33 rue La Fayette 75009 Paris",
"links": [
{
"title": "Meetup",
"url": "https://www.meetup.com/fr-FR/Paris-Hackergarten/events/wsrdfryzpbjc/"
}
],
"achievements": [
{
"title": "(not provided)",
"url": "https://github.com/apache/maven"
},
{
"title": "How to use QuickPerf in a project offered as example",
"url": "https://github.com/quick-perf/quickperf"
},
{
"title": "How to measure Maven's performance with QuickPerf",
"url": "https://github.com/quick-perf/quickperf"
},
{
"title": "Secure login with argon2 instead of md5 hash (in progress)",
"url": "https://github.com/openwhyd/openwhyd/issues/258"
}
]
},
{
"date": "2019-11-07",
"venue": "Hirschengraben Coworking + Innovation",
"address": "Hirschengraben 40, 6003 Luzern",
"links": [
{
"title": "Meetup",
"url": "https://www.meetup.com/Hackergarten-Luzern/events/jfqzmqyzpbkb/"
}
],
"achievements": [
{
"title": "GPX Animator: v1.4-SNAPSHOT now available for download",
"url": "https://github.com/zdila/gpx-animator/commit/aa601202ce5270b617b67d88efb50f0d388c24ab"
},
{
"title": "GPX Animator: Add Unit Testing to the Maven structure",
"url": "https://github.com/zdila/gpx-animator/pull/92"
},
{
"title": "GPX Animator: Working on timezone problems (in progress)",
"url": ""
},
{
"title": "DDErl: Send and receive bugfix",
"url": "https://github.com/K2InformaticsGmbH/dderl/pull/634"
}
]
},
{
"title": "Hackergarten Paris",
"date": "2019-10-29",
"venue": "Pivotal France",
"address": "33 rue La Fayette 75009 Paris",
"links": [
{
"title": "Meetup",
"url": "https://www.meetup.com/Paris-Hackergarten/events/wsrdfryznbmc/"
}
],
"achievements": [
{
"title": "riff - started working on named parameter support",
"url": "https://github.com/AElMehdi/node-function-invoker/tree/namedParams"
},
{
"title": "Liquigraph - started adding a new Cypher extension for Liquigraph",
"url": "https://github.com/AYASN/liquigraph/tree/extension"
}
]
},
{
"title": "Hackergarten Beirut",
"date": "2019-10-28",
"venue": "Beirut Digital District",
"address": "Nassif Yazigi street, Beirut, Lebanon",
"links": [
{
"title": "Meetup",
"url": "https://www.meetup.com/Beirut-Java-User-Group/events/265406243/"
}
],
"achievements": []
},
{
"date": "2019-10-24",
"title": "Autumn Hackergarten Basel",
"venue": "Optravis LLC Office",
"address": "Stapfelberg 9, Basel, Switzerland",
"links": [
{
"title": "Meetup",
"url": "https://www.meetup.com/de-DE/Hackergarten-Basel/events/264986572/"
}
],
"achievements": [
{ "title": "NativeScript-PDF-View: Add margins for Android to layout aligns with iOS", "url": "https://github.com/madmas/nativescript-pdf-view/pull/4"},
{
"title": "JRis: Molding the API both from a kotlin and from a java project",
"url": "https://github.com/ursjoss/JRis/pull/8"
},
{
"title": "WorkbenchFX: Add possibility to hide the close button in a specific module",
"url": "https://github.com/dlsc-software-consulting-gmbh/WorkbenchFX/pull/105"
},
{
"title": "WorkbenchFX: Add possibility to hide the add-Module Button in the entire Workbench",
"url": "https://github.com/dlsc-software-consulting-gmbh/WorkbenchFX/pull/106"
},
{ "title": "Spek Framework: Fixture aliases for gherkin style", "url": "https://github.com/spekframework/spek/pull/818"}
]
},
{
"date": "2019-10-12",
"venue": "Softwerkskammer Ruhrgebiet - Hackergarten",
"address": "Dortmund, Germany",
"links": [
{
"title": "Meetup",
"url": "https://www.meetup.com/de-DE/Softwerkskammer-Ruhrgebiet/events/259817215/"
},
{
"title": "How to find us",
"url": "https://goo.gl/maps/QMCSfvFNJwN2"
}
],
"achievements": [
{
"title": "Prefer Cucumber Expressions over Regular Expressions for Java 10 minute tutorial",
"url": "https://github.com/cucumber/docs.cucumber.io/pull/394"
},
{
"title": "Podlove Web Player: Sort contributors by group and display role.",
"url": "https://github.com/podlove/podlove-ui/pull/115"
},
{
"title": "Maven Deployer Extension: Replace Oracle JDK 8 by OpenJDK 8",
"url": "https://github.com/khmarbaise/maven-deployer-extension/pull/9"
},
{
"title": "Maven Deployer Extension: Add OpenJDK 12 and OpenJDK 13",
"url": "https://github.com/khmarbaise/maven-deployer-extension/pull/10"
},
{
"title": "Maven Deployer Extension: Add Maven Version 3.6.1 and 3.6.2",
"url": "https://github.com/khmarbaise/maven-deployer-extension/pull/11"
},
{
"title": "Maven Deployer Extension: Housekeeping - Invoker Extra Artifacts Version Update",
"url": "https://github.com/khmarbaise/maven-deployer-extension/pull/12"
},
{
"title": "Maven Deployer Extension: Housekeeping - Focus on important OpenJDK versions",
"url": "https://github.com/khmarbaise/maven-deployer-extension/pull/13"
},
{
"title": "Maven Deployer Extension: Housekeeping invoker tests - Add verify scripts",
"url": "https://github.com/khmarbaise/maven-deployer-extension/pull/14"
},
{
"title": "Gradle Build Tool: TestLogging should use display names",
"url": "https://github.com/gradle/gradle/pull/11026"
},
{
"title": "JUnit5: Additional test cases to debug an issue regarding reflective method search",
"url": "https://github.com/junit-team/junit5/pull/2058"
},
{
"title": "Apache Maven EAR Plugin: Upgrade Maven Invoker Plugin to 3.2.1",
"url": "https://github.com/apache/maven-ear-plugin/pull/5"
}
]
},
{
"title": "14. Hackergarten Stuttgart (Hacktoberfestgarten)",
"date": "2019-10-10",
"links": [
{
"title": "Meetup",
"url": "https://www.meetup.com/de-DE/Hackergarten-Stuttgart/events/264579999/"
},
{
"title": "How to find us",
"url": "https://goo.gl/maps/fzox7ZqN7dp"
}
],
"achievements": [
{
"title": "md-schema: Add python test",
"url": "https://github.com/f43i4n/md-schema/pull/1"
},
{
"title": "Chaos-monkey: Remove deprecated MetricEvent constructor and adapt usage",
"url": "https://github.com/codecentric/chaos-monkey-spring-boot/pull/137"
},
{
"title": "Chaos-monkey: Add example entry in changes.adoc (Fix #132)",
"url": "https://github.com/codecentric/chaos-monkey-spring-boot/pull/136"
}
],
"venue": "codecentric AG, Heßbrühlstr. 7, Fourth Floor",
"address": "Stuttgart, Germany"
},
{
"title": "Hackergarten Berlin 4th",
"date": "2019-10-9",
"venue": "innoQ Deutschland GmbH",
"address": "Ohlauer Str. 43, 10999 Berlin",
"links": [
{
"title": "Meetup",
"url": "https://www.meetup.com/de-DE/Hackergarten-Berlin/events/264775730/"
},
{
"title": "How to find us",
"url": "https://goo.gl/maps/JKCzwv8y5d72"
}
],
"achievements": []
},
{
"date": "2019-10-03",
"venue": "Hirschengraben Coworking + Innovation",
"address": "Hirschengraben 40, 6003 Luzern",
"links": [
{
"title": "Meetup",
"url": "https://www.meetup.com/Hackergarten-Luzern/events/jfqzmqyznbfb/"
}
],
"achievements": []
},
{
"title": "Hackergarten Paris",
"date": "2019-09-24",
"venue": "Pivotal France",
"address": "33 rue La Fayette 75009 Paris",
"links": [
{
"title": "Meetup",
"url": "https://www.meetup.com/Paris-Hackergarten/events/wsrdfryzlbkc/"
}
],
"achievements": [
{
"title": "Bug fix: Error with no image path for sendFile function",
"url": "https://github.com/openwhyd/openwhyd/pull/225"
}
]
},
{
"date": "2019-09-05",
"venue": "Hirschengraben Coworking + Innovation",
"address": "Hirschengraben 40, 6003 Luzern",
"links": [
{
"title": "Meetup",
"url": "https://www.meetup.com/Hackergarten-Luzern/events/jfqzmqyzmbhb/"
}
],
"achievements": []
},
{
"date": "2019-08-29",
"title": "Summer Hackergarten Basel",
"venue": "Karakun AG Office",
"address": "Elisabethenanlage 25, Basel, Switzerland",
"links": [
{
"title": "Meetup",
"url": "https://www.meetup.com/Hackergarten-Basel/events/263744856/"
}
],
"achievements": [
{
"title": "pig.js implement onimageclickhandler",
"url": "https://github.com/schlosser/pig.js/pull/22"
},
{
"title": "Start to work on Nextcloud - IMAP Docker setup",
"url": "https://github.com/hackergarten/NextCloudTestingDockerSetup"
},
{
"title": "Migrate from Field to Element - PreferencesFx",
"url": "https://github.com/dlsc-software-consulting-gmbh/PreferencesFX/pull/99"
}
]
},
{
"title": "Hackergarten Paris",
"date": "2019-08-27",
"venue": "Pivotal France",
"address": "33 rue La Fayette 75009 Paris",
"links": [
{
"title": "Meetup",
"url": "https://www.meetup.com/Paris-Hackergarten/events/wsrdfryzlbkc/"
}
],
"achievements": []
},
{
"title": "Hackergarten Paris",
"date": "2019-07-30",
"venue": "Pivotal France",
"address": "33 rue La Fayette 75009 Paris",
"links": [
{
"title": "Meetup",
"url": "https://www.meetup.com/Paris-Hackergarten/events/wsrdfryzkbnc/"
}
],
"achievements": [
{
"title": "Adrien fixed Openwhyd failing unit tests with Marc and Mamane",
"url": "https://github.com/openwhyd/openwhyd/issues/212"
},
{
"title": "Jean worked with Hervé to use QuickPerf in order to measure and profile Maven allocation",
"url": "https://github.com/quick-perf/quickperf"
},
{
"title": "Hervé worked with Ismail and Jawad on the Maven site plugin",
"url": "https://issues.apache.org/jira/browse/MSITE-837"
},
{
"title": "Agathe and Brice continued working on Assertj-Neo4j",
"url": "https://github.com/joel-costigliola/assertj-neo4j/pull/29/"
},