-
Notifications
You must be signed in to change notification settings - Fork 0
/
schedule.xml
1719 lines (1719 loc) · 88 KB
/
schedule.xml
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"?>
<schedule>
<conference>
<title>OSCAL 2018</title>
<subtitle/>
<venue>The Talk 1 of Tirana and Talk 2 Center</venue>
<city>Tirana</city>
<start>2018-05-19</start>
<end>2018-05-20</end>
<days>2</days>
<day_change>09:00:00</day_change>
<timeslot_duration>00:05:00</timeslot_duration>
</conference>
<day index="1" date="2018-05-19">
<room name="Talk 1">
<event id="7294">
<start>09:30</start>
<duration>00:15</duration>
<room>Talk 1</room>
<slug>opening_speech</slug>
<title>Opening Speech</title>
<subtitle/>
<track>Opening Speech</track>
<type>Opening Speech</type>
<language/>
<abstract>Opening speech of OSCAL 2018</abstract>
<description>The OSCAL 2018 opening speech from the organizers.</description>
<persons>
<person id="6">OSCAL Staff</person>
</persons>
</event>
<event id="6245">
<start>09:45</start>
<duration>00:15</duration>
<room>Talk 1</room>
<slug>mayor</slug>
<title>Speech from the Municipality of Tirana</title>
<subtitle></subtitle>
<track>Opening Speech</track>
<type>opening_speech</type>
<language/>
<abstract>A word from representatives of the Municipality of Tirana</abstract>
<description></description>
<persons>
</persons>
<links>
<link href="https://oscal.openlabs.cc/sessions/municipality-speech/">Website Session Link</link>
</links>
</event>
<event id="6458">
<start>10:00</start>
<duration>00:30</duration>
<room>Talk 1</room>
<slug>policy_making</slug>
<title>The approach to free software and culture at Roma Capitale</title>
<subtitle></subtitle>
<track>Policymaking</track>
<type></type>
<language/>
<abstract>This article is focused on the actions of Roma Capitale to increase its use of Free and Libre Open Source Software (FLOSS), within the framework of Roma Capitale's Digital Agenda 2017-2021.</abstract>
<description><p>The main objective is to break the vendor lock-in, to guarantee more efficiency, sustainability and independence from suppliers in the performance of its duty. Starting from the political level, in 2016 a Resolution for the use of FLOSS was adopted. In a few words, it was decided to be mandatory for this Administration to choose open source solutions whenever possible, taking into consideration the legal and technical constraints.</p>
<p>Consequently, during the 2017, the Municipality of Rome took well-orchestrated steps to implement its program about the transformation towards FLOSS:</p>
<ol>
<li>an assessment about Roma Capitale's main systems and their impacts on internal and external users, was released;</li>
<li>the open and proprietary components were evaluated;</li>
<li>a migration roadmap to FLOSS was established.</li>
</ol>
<br />
<p>At present LibreOffice, Mozilla, Thunderbird, Zimbra have been installed and customized on more than 10000 client workstations and cohabit with proprietary software. A gradual switch off started first by employees that hardly ever use the traditional tools and a community of 100 FLOSS passionate people was constituted.</p></description>
<persons>
<person id="4913">Cecilia Colasanti</person>
<person id="7613">Flavia Marzano</person>
</persons>
<links>
<link href="https://twitter.com/cecwitter">Cecilia's Twitter</link>
<link href="https://twitter.com/flavia_marzano">Flavia's Twitter</link>
<link href="https://oscal.openlabs.cc/sessions/the-approach-to-free-software-and-culture-at-roma-capitale/">Website Session Link</link>
</links>
</event>
<event id="6230">
<start>10:30</start>
<duration>01:00</duration>
<room>Talk 1</room>
<slug>key</slug>
<title>Key Impressioning</title>
<subtitle></subtitle>
<track>Privacy & Security</track>
<type>security</type>
<language/>
<abstract></abstract>
<description><p>We’ve all seen lockpicking explained on several security venues. You might even have tried it yourself. But what if you need to open a lock a number of times? Wouldn’t it be great to have an opening technique that would supply you with a working key in the process?</p>
<p>A method to do this has existed for quite some time, but until recently it has remained quite unknown. Some time ago impressioning locks got “”re-invented”” by the lockpick community and the skill evolved to the level now shown at several international championships.</p>
<p>Unlike lockpicking, impressioning creates a fully working key for the lock which can be used to lock and unlock the cylinder at will. With practice, this technique can consistently open a lock in 10-15 minutes (and potentially faster)!
What is it? How does it work? What skill is involved? Why is it the most interesting way to open a lock? These questions, and more will be answered in this talk.</p></description>
<persons>
<person id="3691">Jos Weyers</person>
</persons>
<links>
<link href="https://twitter.com/josweyers">Speaker Twitter</link>
<link href="https://oscal.openlabs.cc/sessions/key-impressioning/">Website Session Link</link>
</links>
</event>
<event id="6308">
<start>11:30</start>
<duration>01:00</duration>
<room>Talk 1</room>
<slug>privacy</slug>
<title>Fighting Mass Surveillance with FOSS, Free Software for Freedom</title>
<subtitle></subtitle>
<track>Privacy & Security</track>
<type>privacy</type>
<language/>
<abstract></abstract>
<description></description>
<persons>
<person id="4843">Arjen Kamphuis</person>
</persons>
<links>
<link href="https://twitter.com/ArjenKamphuis">Speaker Twitter</link>
<link href="https://oscal.openlabs.cc/sessions/fighting-mass-surveillance-with-foss/">Website Session Link</link>
</links>
</event>
<event id="6403">
<start>12:30</start>
<duration>00:30</duration>
<room>Talk 1</room>
<slug>copyright</slug>
<title>EU Copyright Reform: Challenges and Risks in the FLOSS Ecosystem</title>
<subtitle></subtitle>
<track>Policymaking</track>
<type>copyright</type>
<language/>
<abstract></abstract>
<description><p>The current EU Copyright Reform proposal puts pressure on platforms to monitor and filter all content, including uploaded free and open-source software, for copyright infringement (Article 13), proposes a new 20-year license for news snippets (Article 11), and limits who can access datasets — including open data (Article 3). Any of these would be terrible outcomes. Let’s demand better copyright reform! In this session, we will tackle the following questions:</p>
<ul>
<li>What’s happening with the EU Copyright Reform?</li>
<li>What’s happening with the EU Copyright Reform?</li>
<li>How will Articles 11, 13 + 3 affect the Internet experience in Europe?</li>
<li>How will the proposed reform affect the FLOSS ecosystem in Europe? The rest of the world?</li>
<li>Why is this happening?</li>
<li>What is Mozilla doing about it, and what can you do about it?</li>
</ul>
<br />
<p>Note: The EU Copyright Reform restrictions can also be applied to non-EU citizens, therefore everybody regardless of citizenship is encouraged to participate in the session.</p></description>
<persons>
<person id="392">Giannis Konstantinidis</person>
</persons>
<links>
<link href="https://twitter.com/ArjenKamphuis">Speaker Twitter</link>
<link href="https://oscal.openlabs.cc/sessions/eu-copyright-reform-challenges-and-risks-in-the-floss-ecosystem/">Website Session Link</link>
</links>
</event>
<event id="6005">
<start>13:00</start>
<duration>01:00</duration>
<room>Talk 1</room>
<slug>lunch</slug>
<title>Lunch Break</title>
<subtitle>One hour break</subtitle>
<track>Break</track>
<type>break</type>
<language/>
<abstract></abstract>
<description></description>
<persons>
<person id="4621">OSCAL Staff</person>
</persons>
<links>
</links>
</event>
<event id="6289">
<start>14:00</start>
<duration>00:30</duration>
<room>Talk 1</room>
<slug>geodata</slug>
<title>How to improve OSM with official open-data (Tirana use-case)</title>
<subtitle/>
<track>Community Culture</track>
<type>geodata</type>
<language/>
<abstract></abstract>
<description><br /><p>Part 1<br />
<p>In many countries or cities we can find open-data publicly available but it’s not always the case, that’s why Open Labs contacted the Municipality of Tirana to make them open their data and … it worked ! Even though each country is different, we think it’s usually difficult to connect with officials, especially to promote open-source softwares and open-data, this is how Open Labs community succeeded in both in Tirana.</p>
<p>Part 2<br />
<p>Once we have open-data available (in many formats), how can we make those data available for the many people who do not have a GIS background ? The idea we had is to create easy-to-use and open-source website and services so anyone can use those data to map in Tirana using their favorite editor (iD, JOSM, …).</p></description>
<persons>
<person id="4837">Jonathan Beliën</person>
</persons>
<links>
<link href="https://twitter.com/jbelien">Speaker Twitter</link>
<link href="https://oscal.openlabs.cc/sessions/how-to-improve-osm-with-official-open-data-tirana-use-case/">Website Session Link</link>
<link href="http://bit.ly/2Cdjk47">Agreement</link>
<link href="http://bit.ly/2obIa07">Blogpost</link>
<link href="https://geoportal.openlabs.cc/">Open Labs Geoportal</link>
</links>
</event>
<event id="5927">
<start>14:30</start>
<duration>00:30</duration>
<room>Talk 1</room>
<slug>geodata</slug>
<title>How to make Albanian open imagery and maps available to OpenStreetMap editors</title>
<subtitle></subtitle>
<track>Copyright & Licenses</track>
<type>geodata</type>
<language/>
<abstract></abstract>
<description><br /><p>Legal and technical steps are required until Albania’s data becomes available in the OpenStreetMap editors. I will make a short inventory of possible sources, explain why they aren’t background layers in OpenStreetMap editors yet, and show by example how communities elsewhere managed to solve similar issues.</p>
</description>
<persons>
<person id="4028">Guillaume Rischard</person>
</persons>
<links>
<link href="https://twitter.com/grischard">Speaker Twitter</link>
<link href="https://oscal.openlabs.cc/sessions/how-to-make-albanian-open-imagery-and-maps-available-to-openstreetmap-editors/">Website session link</link>
</links>
</event>
<event id="6762">
<start>15:00</start>
<duration>00:30</duration>
<room>Talk 1</room>
<slug>open data</slug>
<title>Representing and processing Open Data</title>
<subtitle/>
<track>Open Data</track>
<type>open data</type>
<language/>
<abstract></abstract>
<description><br /><p>Data, whether open or not, has to be represented in a definite format. We introduce some of the common openly defined formats used in website APIs: CSV, JSON, YAML, and XML. We look briefly at how your programs can handle data presented in them, and how to choose which formats your program or website API can produce.</p></description>
<persons>
<person id="3088">John Sturdy</person>
</persons>
<links>
<link href="https://oscal.openlabs.cc/sessions/representing-and-processing-open-data/">Website session link</link>
</links>
</event>
<event id="6311">
<start>15:30</start>
<duration>00:30</duration>
<room>Talk 1</room>
<slug>community</slug>
<title>Openness in a culturally diverse world</title>
<subtitle></subtitle>
<track>Community Culture</track>
<type>diversity</type>
<language/>
<abstract></abstract>
<description><p>We’ve all heard—and many of us here have preached—that openness is important for innovation and progress; however, do we think about openness in the same way? What are the expectations when one talks about “working in the open?” As we become more globalized, we need to identify and negotiate the differences in the understanding of openness before we can talk about true collaboration and inclusion. Can we find unity in diversity?</p>
<p>In this session, I’ll share my observations and experiences after living and working on 3 continents, with various companies, on open source events, and with open source communities. I’ll also touch on adapting communication styles and tools effectively for different situations.</p>
</description>
<persons>
<person id="3571">Carol Chen</person>
</persons>
<links>
<link href="https://twitter.com/cybette">Speaker Twitter</link>
<link href="https://oscal.openlabs.cc/sessions/openness-in-a-culturally-diverse-world/">Website session Link</link>
</links>
</event>
<event id="6316">
<start>16:00</start>
<duration>00:30</duration>
<room>Talk 1</room>
<slug>contributing</slug>
<title>Contributing to Open Source, what is it like?</title>
<subtitle></subtitle>
<track>Open Source</track>
<type>community</type>
<language/>
<abstract></abstract>
<description><br /><p>In this presentation Alex tries to retrospectively analyze his 6 years experience of contributions to open source projects. In particular he concentrates on a broad set of not-so-evident benefits it has to offer to an individual developer and how those can be leveraged to boost one’s career.</p>
</description>
<persons>
<person id="4847">Oleksander Trotsenko</person>
</persons>
<links>
<link href="https://oscal.openlabs.cc/sessions/contributing-to-open-source-what-is-it-like/">Website session link</link>
</links>
</event>
<event id="6258">
<start>16:30</start>
<duration>00:30</duration>
<room>Talk 1</room>
<slug>hacking</slug>
<title>How I got access to Kosovo Citizens Information, without getting access within the servers!</title>
<subtitle></subtitle>
<track>Privacy & Security</track>
<type>hacking</type>
<language/>
<abstract></abstract>
<description><br /><p>I will show how I got sensitive information of Kosovo Citizens (Polling Station,Addreses,Name,Surname,ID-Number) without getting access within the servers! How this flaw was discovered? How was it done? The way to patch it (protect it)! And the scenario of where they can be used for! And how sensitive are they?!</p>
</description>
<persons>
<person id="4829">Butrint Komoni</person>
</persons>
<links>
<link href="https://oscal.openlabs.cc/sessions/how-i-got-access-to-kosovo-citizens-information-without-getting-access-within-the-servers/">Website session link</link>
</links>
</event>
<event id="9999">
<start>17:00</start>
<duration>00:15</duration>
<room>Talk 1</room>
<slug>education</slug>
<title>A short introduction of DOKU TECH</title>
<subtitle></subtitle>
<track>Community Culture</track>
<type>DOKU TECH</type>
<language/>
<abstract></abstract>
<description></description>
<persons>
</persons>
<links>
<link href="https://oscal.openlabs.cc/sessions/a-short-introduction-of-doku-tech/">Website session link</link>
</links>
</event>
<event id="6475">
<start>17:15</start>
<duration>00:30</duration>
<room>Talk 1</room>
<slug>economics</slug>
<title>The economics of Open Source</title>
<subtitle></subtitle>
<track>Economic development, business, growth, investment</track>
<type>economics</type>
<language/>
<abstract><br /><p>Why is that Open Source software provides so much more value to users, yet represents such a small percentage of all software developed?</p></abstract>
<description><p> In this interactive session, Sam will explain how economic principles, such as network effects and Economic Value to the Customer, drive proprietary firms to success while challenging Open Source growth. Various economic benefits of Open Source will be explored from the users’ perspective, to illustrate disadvantages which Open Source companies face. Participants will be challenged to find new ways of thinking about established problems to investment in Open Source development.</p>
</description>
<persons>
<person id="4962">Sam Tuke</person>
</persons>
<links>
<link href="https://twitter.com/samtuke">Speaker Twitter</link>
<link href="https://oscal.openlabs.cc/sessions/the-economics-of-open-source/">Website session link</link>
</links>
</event>
<event id="5981">
<start>17:45</start>
<duration>00:15</duration>
<room>Talk 1</room>
<slug>closing speech</slug>
<title> Day 1 - Closing Speech </title>
<subtitle></subtitle>
<track>Closing Speech</track>
<type>closing_speech</type>
<language/>
<abstract></abstract>
<description><br /><p>Closing speech for the first day of the conference from the OSCAL staff.</p></description>
<persons>
<person id="4612">OSCAL Staff</person>
</persons>
<links>
</links>
</event>
</room>
<room name="Talk 2">
<event id="6541">
<start>11:00</start>
<duration>00:30</duration>
<room>Talk 2</room>
<slug>design</slug>
<title>How to contribute to LibreOffice as a non-developer</title>
<subtitle></subtitle>
<track>Design & Art</track>
<type>design</type>
<language/>
<abstract></abstract>
<description><br /><p>LibreOffice is one of the largest and best known Open Source projects and we need you to make it even better. Many non-developers hesitate to contribute but we also need people who file enhancement requests, think about better solutions to the workflow, or make the application visually more attractive. That’s what the design team does and this presentation will illustrate what exactly you can do.</p>
</description>
<persons>
<person id="5004">Heiko Tietze</person>
</persons>
<links>
<link href="https://twitter.com/libodesign">Speaker Twitter</link>
<link href="https://oscal.openlabs.cc/sessions/how-to-contribute-to-libreoffice-as-a-non-developer/">Website session link</link>
</links>
</event>
<event id="6181">
<start>11:30</start>
<duration>00:30</duration>
<room>Talk 2</room>
<slug>community</slug>
<title>Join LibreOffice Community and (possibly) become a TDF member</title>
<subtitle/>
<track>Community Culture</track>
<type>project</type>
<language/>
<abstract></abstract>
<description><br /><p>This talk describes quickly LibreOffice project and how to contribute to it and let it grow with personal satisfaction. It shows how much fun gives to be part of its community and most of all, how to give some effort even not being necessarily a developer. So it will try to tell why to commit and when it can bring to a The Document Foundation’s membership.</p></description>
<persons>
<person id="4680">Gabriele Ponzo</person>
</persons>
<links>
<link href="https://twitter.com/Ponzogabriele">Speaker Twitter</link>
<link href="https://oscal.openlabs.cc/sessions/join-libreoffice-community-and-possibly-become-a-tdf-member/">Website session link</link>
</links>
</event>
<event id="6011">
<start>12:00</start>
<duration>00:30</duration>
<room>Talk 2</room>
<slug>project</slug>
<title>The Document Foundation - The open, transparent and meritocratic future of free office software</title>
<subtitle></subtitle>
<track>Community Culture</track>
<type>project</type>
<language/>
<abstract></abstract>
<description><br /><p>The Document Foundation is the charitable entity behind LibreOffice, the free office suite. It not only provides a legal framework for the project, but also manages assets and donations to support the further development of the software as well as the community. The organizational setup of TDF is rather unique – by having chosen a German “Stiftung”, the community has opted for an entity that is recognized as strong, stable and enduring. Its statutes provide for independence of a single corporate sponsor and at the same time focus on the core values of transparency, openness and meritocracy. In his talk, Florian gives an overview on how the foundation was set up, what goals it has achieved in the last six years of its existence and what plans and visions the community has for their future.</p>
</description>
<persons>
<person id="4547">Florian Effenberger</person>
</persons>
<links>
<link href="https://twitter.com/floeff">Speaker Twitter</link>
<link href="https://oscal.openlabs.cc/sessions/the-document-foundation-the-open-transparent-and-meritocratic-future-of-free-office-software/">Website session link</link>
</links>
</event>
<event id="5994">
<start>12:00</start>
<duration>00:30</duration>
<room>Talk 2</room>
<slug>project</slug>
<title>LibreOffice 6.0</title>
<subtitle></subtitle>
<track>Community Culture</track>
<type>project</type>
<language/>
<abstract></abstract>
<description><br /><p>Positioning of LibreOffice 6.0, with a presentation of the development directions and a description of the most significant features.</p></description>
<persons>
<person id="4632">Italo Vignoli</person>
</persons>
<links>
<link href="https://twitter.com/italovignoli">Speaker Twitter</link>
<link href="https://oscal.openlabs.cc/sessions/libreoffice-6-0/">Website session link</link>
</links>
</event>
<event id="6078">
<start>13:00</start>
<duration>01:00</duration>
<room>Talk 2</room>
<slug>lunch</slug>
<title>Lunch Break</title>
<subtitle>One hour break</subtitle>
<track>Break</track>
<type>break</type>
<language/>
<abstract></abstract>
<description></description>
<persons>
<person id="4683">OSCAL Staff</person>
</persons>
<links></links>
</event>
<event id="5920">
<start>14:00</start>
<duration>00:30</duration>
<room>Talk 2</room>
<slug>wikipedia</slug>
<title>My first edit on Albanian Wikipedia</title>
<subtitle></subtitle>
<track>Community Culture</track>
<type>wikimedia</type>
<language>Albanian</language>
<abstract></abstract>
<description><p>My first edit, how I started, what worked . How i started to edit, what i got from it and how i managed to be one of the wikipedians with most edits.</p>
<p>We want to let you know this talk is in Albanian only.</p>
</description>
<persons>
<person id="4058">Ismet Azizi</person>
</persons>
<links>
<link href="https://oscal.openlabs.cc/sessions/my-first-edit-on-albanian-wikipedia/">Website session link</link>
</links>
</event>
<event id="6742">
<start>14:30</start>
<duration>00:30</duration>
<room>Talk 2</room>
<slug>wikimedia</slug>
<title>LGBT issues on Wikipedia</title>
<subtitle></subtitle>
<track>Community Culture</track>
<type>lgbt</type>
<language/>
<abstract></abstract>
<description><br /><p>I initiated the LGBTI project in Albanian Wikipedia a couple of months ago, when I was scamming through Wikipedia and noticed that there was a strong lack of information regarding topics on LGBT community. I feel close to the same concerns of this marginalized community because I work as a human rights journalist about LGBTI community in Albania. Through this lightining talk I would like to sum up the research I did during this months for the Wiki LGBT project.</p></description>
<persons>
<person id="2377">Kristina Millona</person>
</persons>
<links>
<link href="https://twitter.com/KristinaMillona">Speaker Twiteer</link>
<link href="https://oscal.openlabs.cc/sessions/lgbt-issues-on-wikipedia/">Website session link</link>
</links>
</event>
<event id="6627">
<start>15:00</start>
<duration>00:30</duration>
<room>Talk 2</room>
<slug>Wikidata</slug>
<title>Wikidata for developers</title>
<subtitle/>
<track>Community Culture</track>
<type>dev</type>
<language/>
<abstract></abstract>
<description><br /><p>Wikidata is the free structured data project, sister project to Wikipedia. This talk will explain what it is and how it can be integrated into your development projects.</p>
</description>
<persons>
<person id="5066">Arianit Dobroshi</person>
</persons>
<links>
<link href="https://oscal.openlabs.cc/sessions/wikidata-for-developers/">Website session link</link>
</links>
</event>
<event id="7271">
<start>15:30</start>
<duration>00:30</duration>
<room>Talk 2</room>
<slug>machine</slug>
<title>Machine Learning on Open Source code</title>
<subtitle/>
<track>Open Data</track>
<type>machine_learning</type>
<language/>
<abstract></abstract>
<description><br /><p>Few people look at open source code as a massive dataset for researchers. Yet we’ve accumulated hundreds of terabytes of mostly human-generated data on GitHub which can be freely analyzed. Mining Software Repositories academic conference happens every year and presents extremely funny projects on top of open source.</ul>
<p>GHTorrent, Public Git Archive, TravisTorrent. Coding style transfer, code sentiment analysis, code modeling. This talk makes a very high-level overview of the conference’s proceedings and also touches the related research we conduct.</ul></description>
<persons>
<person id="5340">Vadim Markovtsev</person>
</persons>
<links>
<link href="https://github.com/src-d/awesome-machine-learning-on-source-code">Research</link>
<link href="https://twitter.com/tmarkhor">Speaker Twitter</link>
<link href="https://oscal.openlabs.cc/sessions/machine-learning-on-open-source-code/">Website session link</link>
</links>
</event>
<event id="6709">
<start>16:00</start>
<duration>00:30</duration>
<room>Talk 2</room>
<slug>fedora</slug>
<title>Fedora Silverblue (ex Atomic Workstation) in practice</title>
<subtitle></subtitle>
<track>Privacy & Security</track>
<type>fedora</type>
<language/>
<abstract></abstract>
<description><br /><p>Since a few releases, the Fedora project contributors have been working on a new system to deliver updates to the distribution based on immutable images with ostree and containers technology for the workstation such as flatpak.</p>
<p>This talk will present the work, how it is used to enable distribution rollback, better security with isolation and what changed on the day to day workflow of a user.</p></description>
<persons>
<person id="3771">Michael Scherer</person>
</persons>
<links>
<link href="https://oscal.openlabs.cc/sessions/fedora-atomic-workstation-in-practice/">Website session link</link>
</links>
</event>
<event id="6692">
<start>16:30</start>
<duration>00:30</duration>
<room>Talk 2</room>
<slug>openSUSE</slug>
<title>The precious stones of the openSUSE crown</title>
<subtitle></subtitle>
<track>Open Source</track>
<type>openSUSE</type>
<language/>
<abstract></abstract>
<description><br /><p>We will start with gentle introduction of openSUSE ecosystem in order to set the context of the talk. Then we will continue with brief description of few of the precious stones of the openSUSE crown. The talk will end with a short demo of each one of the discussed topics.</p></description>
<persons>
<person id="4601">Dimitar Zahariev</person>
</persons>
<links>
<link href="https://twitter.com/shekeriev">Speaker Twitter</link>
<link href="https://oscal.openlabs.cc/sessions/the-precious-stones-of-the-opensuse-crown/">Website session link</link>
</links>
</event>
<event id="6151">
<start>17:00</start>
<duration>00:15</duration>
<room>Talk 2</room>
<slug>education</slug>
<title>MOOCs, Open Education and developing countries: something good is in the air?</title>
<subtitle></subtitle>
<track>Policymaking</track>
<type>open education</type>
<language/>
<abstract></abstract>
<description><br /><p>Massive Open Online Courses, also known as MOOCs are a relatively new phenomenon in the education sphere, but they are getting the attention of many scholars because of their exponential growth rate and because of the popularity they have gained, especially in developing countries. In order to better understand the MOOCs model in education, we should analyze the contest in which MOOCs were born and where they are developing nowadays.</p>
<p>In its core philosophy, education is strictly connected with the concepts of sharing and openness. The internet age in which we are living and the fast adoption of digital technologies by the vast majority of people living throughout our planet has significantly boosted the degree of openness of education, by bringing into the scene new powerful actors, such as MOOCs.</p>
<p>Furthermore, MOOCs diffusion in developing countries leads to new interesting opportunities and challenging threats. Unfortunately, evidence about MOOCs in developing countries is not really easy to find as the outcome of MOOCs seems to be country specific; in addition, MOOCs are a brand-new topic in the universe of OER, for which further investigation is needed.</p></description>
<persons>
<person id="1541">Eltjana Plaku</person>
<person id="1921">Grazia Asveva Ascione</person>
</persons>
<links>
<link href="https://oscal.openlabs.cc/sessions/moocs-open-education-and-developing-countries-something-good-is-in-the-air/">Website session link</link>
</links>
</event>
</room>
<room name="Workshop 1">
<event id="6032">
<start>10:00</start>
<duration>00:30</duration>
<room>Workshop 1</room>
<slug>open source</slug>
<title>Open Source 101 (Talk)</title>
<subtitle></subtitle>
<track>Community Culture</track>
<type>open source</type>
<language/>
<abstract><br /><p>Welcome to Open Source 101!</p></abstract>
<description><p>This session gives the big picture overview of what open source is and how you can get started. Learn what it means when we talk about free and open source software and where this movement began, over 30 years ago. After understanding the philosophy, get practical advice on how to choose a project and community to contribute to. You won’t believe the two things nobody ever told you about choosing a project! At the end, we’ll look at the Fedora Project community as an example and explain how you can begin contributing to an open source community today.</p>
</description>
<persons>
<person id="4609">Justin Flory</person>
</persons>
<links>
<link href="https://twitter.com/jflory7">Speaker Twitter</link>
<link href="https://oscal.openlabs.cc/sessions/open-source-101/">Website session link</link>
</links>
</event>
<event id="5969">
<start>10:30</start>
<duration>00:30</duration>
<room>Workshop 1</room>
<slug>inclusive</slug>
<title>Building and growing a diverse and inclusive community</title>
<subtitle></subtitle>
<track>Community Culture</track>
<type>community</type>
<language/>
<abstract></abstract>
<description><br /><p>After more than seven years of activities, the LibreOffice community is getting bigger. While building and growing a diverse and inclusive community you’re looking for culture to be added, not culture to fit. New people can bring a point of view never seen before and is crucial to be able to include newcomers. The talk will describe the current state of the art of the LibreOffice community, underlining in progress activities and future possible outcomes.</p>
</description>
<persons>
<person id="498">Marina Latini</person>
</persons>
<links>
<link href="https://twitter.com/deneb_alpha">Speaker Twitter</link>
<link href="https://oscal.openlabs.cc/sessions/building-and-growing-a-diverse-and-inclusive-community/">Website session link</link>
</links>
</event>
<event id="6580">
<start>11:00</start>
<duration>01:00</duration>
<room>Workshop 1</room>
<slug>github</slug>
<title>Using Git and Github to contribute to open source</title>
<subtitle></subtitle>
<track>Free Knowledge</track>
<type>git</type>
<language/>
<abstract></abstract>
<description><br /><p>We love open source, but sometimes its daunting to take the first step and contribute to a project we follow. However, open source projects could always need more helping hands.</p>
<p>In this talk, we will go through the steps of how to get started with open source. We will see how to use github and helpful resources to find issues we can solve depending on our skills, fork a project, and make a pull request to a problem we solve.</p>
<p>We will do this step by step, by learning a bit Git as well we will contribute together to a project, make a pull request and see that is not that scary after all. At the end it will feel great to have done something for the community.</p>
</description>
<persons>
<person id="3920">Renato Selenica</person>
</persons>
<links>
<link href="https://oscal.openlabs.cc/sessions/using-git-and-github-to-contribute-to-open-source/">Website session link</link>
</links>
</event>
<event id="6443">
<start>12:00</start>
<duration>01:00</duration>
<room>Workshop 1</room>
<slug>tools</slug>
<title>Open Source Tools for Delivering Fast and Beautiful Images and Video</title>
<subtitle></subtitle>
<track>Web Development</track>
<type>tools</type>
<language/>
<abstract></abstract>
<description><br /><p>Video and images bringing high engagement to your website, but inefficient delivery can add to load time, decreasing customer satisfaction. This talk will walk through Open Source tools and techniques to deliver beautiful images and video content quickly to all screens using the latest tips and techniques.</p></description>
<persons>
<person id="4939">Doug Sillars</person>
</persons>
<links>
<link href="https://twitter.com/dougsillars">Speaker Twitter</link>
<link href="https://oscal.openlabs.cc/sessions/open-source-tools-for-delivering-fast-and-beautiful-images-and-video/">Website session link</link>
</links>
</event>
<event id="6697">
<start>13:00</start>
<duration>01:00</duration>
<room>Workshop 1</room>
<slug>lunch</slug>
<title>Lunch Break</title>
<subtitle>One hour break</subtitle>
<track>Break</track>
<type>break</type>
<language/>
<abstract></abstract>
<description></description>
<persons>
<person id="5050">OSCAL Staff</person>
</persons>
<links>
</links>
</event>
<event id="6378">
<start>14:00</start>
<duration>01:00</duration>
<room>Workshop 1</room>
<slug>migration</slug>
<title>Migrating to LibreOffice</title>
<subtitle/>
<track>Community Culture</track>
<type>libreoffice</type>
<language/>
<abstract><br /><p>A short introductory description of the migration process to LibreOffice, as suggested by The Document Foundation.</p></abstract>
<description></description>
<persons>
<person id="4901">Italo Vignoli</person>
</persons>
<links>
<link href="https://twitter.com/italovignoli">Speaker Twitter</link>
<link href="https://oscal.openlabs.cc/sessions/migrating-to-libreoffice/">Website session link</link>
</links>
</event>
<event id="6695">
<start>15:00</start>
<duration>01:00</duration>
<room>Workshop 1</room>
<slug>leafletjs</slug>
<title>Web Development using LeafletJS</title>
<subtitle></subtitle>
<track>Web Development</track>
<type>webdev</type>
<language/>
<abstract></abstract>
<description></description>
<persons>
<person id="5054">Amanti Lulo</person>
</persons>
<links>
<link href="https://twitter.com/AmantiLulo">Speaker Website</link>
<link href="https://oscal.openlabs.cc/sessions/web-development-using-leafletjs/">Website session link</link>
</links>
</event>
<event id="6000">
<start>16:00</start>
<duration>01:00</duration>
<room>Workshop 1</room>
<slug>postgresql</slug>
<title>Intro to PostgreSQL / PostGIS</title>
<subtitle/>
<track>Database</track>
<type>sql</type>
<language/>
<abstract><p>Introduction to RDMS PostgreSQL, with specific topic related to PostGIS topic.</p>
</abstract>
<description></description>
<persons>
<person id="1387">Besfort Guri</person>
<person id="1997">Dian Fishkeqi</person>
</persons>
<links>
<link href="https://twitter.com/BGuri">Besfort's Twitter</link>
<link href="https://oscal.openlabs.cc/sessions/intro-to-postgresql-postgis/">Website session link</link>
</links>
</event>
</room>
<room name="Workshop 2">
<event id="7280">
<start>10:00</start>
<duration>01:00</duration>
<room>Workshop 2</room>
<slug>server</slug>
<title>First Linux Setup for Web Server</title>
<subtitle></subtitle>
<track>Web Development</track>
<type>start</type>
<language/>
<abstract></abstract>
<description><br /><p>In this workshop we will see how to make the first setup for Linux Web Server by configuring ssh, firewall, failtoban and also LAMPP Stack (Apache, MySQL, PHP (with the specified PHP version) PhpMyAdmin, setting up the right user permissions and configuring and scheduling backups according to the requirements (Debian and Ubuntu and CentOS).</p></description>
<persons>
<person id="2447">Silvi Kolumçaj</person>
</persons>
<links>
<link href="https://oscal.openlabs.cc/sessions/first-linux-setup-for-web-server/">Website session link</link>
</links>
</event>
<event id="6670">
<start>11:00</start>
<duration>01:00</duration>
<room>Workshop 2</room>
<slug>workflow</slug>
<title>Git & GitHub workflow for beginners</title>
<subtitle></subtitle>
<track>Web Development</track>
<type>github</type>
<language/>
<abstract></abstract>
<description><br /><p>An Intro to Git and GitHub for beginners, explaining git and some git commands. Also, what are branches, what is a fork, how to sync forks, how to set up Travis CI on your own fork etc?</p></description>
<persons>
<person id="4056">Xheni Myrtaj</person>
</persons>
<links>
<link href="https://twitter.com/xh3n1">Speaker Twitter</link>
<link href="https://oscal.openlabs.cc/sessions/git-github-workflow-for-beginners/">Website session link</link>
</links>
</event>
<event id="6672">
<start>12:00</start>
<duration>01:00</duration>
<room>Workshop 2</room>
<slug>ipfs</slug>
<title>Building web applications using IPFS</title>
<subtitle/>
<track>Web Development</track>
<type>webdev</type>
<language/>
<abstract><br /><p>IPFS, the Interplanetary File System, is a new protocol with the objective to make the web safer, faster and open.</p></abstract>
<description><p>The current protocol the web uses, HTTP, is facing some limitations. With more of the world online, bandwidth and latency are an increasing issue. The web is getting slower. In terms of data permanence HTTP links get deleted all the time. Imagine if someone could delete the entire Wikipedia database. All the data would be lost. Centralization is also an issue, a few companies owning a huge amount of the data. This can all change through IPFS, which offers a decentralized system of navigating the web. In this workshop we will explain what IPFS is, how is could help us make the web faster and decentralized, and how could we use it by building a small application.</p></description>
<persons>
<person id="2113">Renato Selenica</person>
</persons>
<links>
<link href="https://oscal.openlabs.cc/sessions/building-web-applications-using-ipfs/">Website session link</link>
</links>
</event>
<event id="6721">
<start>13:00</start>
<duration>01:00</duration>
<room>Workshop 2</room>
<slug>lunch</slug>
<title>Lunch Break</title>
<subtitle>One hour break</subtitle>
<track>Break</track>
<type>break</type>
<language/>
<abstract></abstract>
<description></description>
<persons>
<person id="3904">OSCAL Staff</person>
</persons>
<links></links>
</event>
<event id="7176">
<start>14:00</start>
<duration>01:00</duration>
<room>Workshop 2</room>
<slug>pandoc</slug>
<title>Pandoc — removing the fuss out of handing out documents</title>
<subtitle/>
<track>Web Development</track>
<type>documents</type>
<language/>
<abstract><br /><p>An introduction on how to use pandoc in document editing, publishing, storage and conversion.</p></abstract>
<description></description>
<persons>
<person id="5290">Jor Bashllari</person>
</persons>
<links>
<link href="https://oscal.openlabs.cc/sessions/pandoc-removing-the-fuss-out-of-handing-out-documents/">Website session link</link>
</links>
</event>
<event id="6393">
<start>15:00</start>
<duration>01:00</duration>
<room>Workshop 2</room>
<slug>meetup</slug>
<title>Community meetup: Meet the Fedora community and Fedora 28 Release Party</title>
<subtitle/>
<track>Community Culture</track>
<type>meetups</type>
<language/>
<abstract></abstract>
<description><br /><p>Say hello to the Fedora community! Meet contributors from around the world and learn more about the Fedora community. Existing contributors, local and abroad, are encouraged to participate. If you are interested in Fedora, want to learn more about what the project is doing, or learn how to contribute, bring your questions! Did we mention there may be a sweet surprise?</p></description>
<persons></persons>
<links></links>
</event>
<event id="6083">
<start>16:00</start>
<duration>01:00</duration>
<room>Workshop 2</room>
<slug>meetup</slug>
<title> Community meetup - Albanian Wikipedia Community Discussion</title>
<subtitle>Part 1</subtitle>
<track>Community Culture</track>
<type>meetups</type>
<language/>
<abstract></abstract>
<description></description>
<persons>
</persons>
<links>
</links>
</event>
<event id="6468">
<start>17:00</start>
<duration>00:45<event id="6283">
<start>14:00</start>
<duration>01:00</duration>
<room>Workshop 2</room>
<slug>meetup</slug>
<title>Community meetup - Girls in open source</title>
<subtitle></subtitle>
<track>Community Culture</track>
<type>meetups</type>
<language/>
<abstract></abstract>
<description></description>
<persons>
<person id="4671">Bee Padalkar</person>
<person id="2571">Renata Gegaj</person>
</persons>
<links>
<link href="https://twitter.com/BeePadalkar">Bee's Twitter</link>
<link href="https://twitter.com/BeePadalkar">Renata's Twitter</link>
</links>
</event></duration>
<room>Workshop 2</room>
<slug>meetup</slug>
<title>Community meetup - Albanian Wikipedia Community Discussion</title>
<subtitle>Part 2</subtitle>
<track>Community Culture</track>
<type>meetups</type>
<language/>
<abstract></abstract>
<description></description>
<persons></persons>
<links></links>
</event>
</room>
</day>
<day index="2" date="2018-05-20">
<room name="Talk 1">
<event id="7319">
<start>10:00</start>
<duration>00:30</duration>
<room>Talk 1</room>
<slug>coding</slug>
<title>Everybody Should Learn How To Code</title>
<subtitle/>
<track>Programming 101</track>
<type>devroom</type>
<language/>
<abstract></abstract>
<description><br /><p>We live in the age of digital technology. Gaining an understanding of the work developers do can open up our imagination to the endless possibilities to change ourselves, our neighbors, our communities, our cities, our countries, and indeed, the world itself.</p></description>
<persons>
<person id="5375">Johnny Siman</person>
</persons>
<links>
<link href="https://oscal.openlabs.cc/sessions/everybody-should-learn-how-to-code/">Website session link</link>
</links>
</event>
<event id="6465">
<start>10:30</start>
<duration>00:30</duration>
<room>Talk 1</room>
<slug>vulnerabilities</slug>
<title>Website vulnerabilities</title>
<subtitle/>
<track>Privacy & Security</track>
<type>website</type>
<language/>
<abstract></abstract>
<description><br /><p>In this presentation Alex will give an overview of existing and most common website vulnerabilities. To highlight the importance of security, he will enrich each type of vulnerability with his personal experience on how he faced them in real life.</p></description>
<persons>
<person id="2639">Oleksander Trotsenko</person>
</persons>
<links>
<link href="https://oscal.openlabs.cc/sessions/website-vulnerabilities/">Website session link</link>
</links>
</event>
<event id="7110">
<start>11:00</start>
<duration>00:30</duration>
<room>Talk 2</room>
<slug>tirana</slug>
<title>The open source projects implemented at the Municipality of Tirana</title>
<subtitle></subtitle>
<track>Open Data</track>
<type>tirana_foss</type>
<language/>
<abstract></abstract>
<description></description>
<persons>
<person id="3914">Julian Killo</person>
</persons>
<links>
<link href="https://oscal.openlabs.cc/sessions/the-open-source-projects-implemented-at-the-municipality-of-tirana/">Website session link</link>
</links>
</event>
<event id="6637">
<start>11:30</start>
<duration>00:30</duration>
<room>Talk 1</room>
<slug>osi</slug>
<title>Consensus as a Service - OSI 20th Anniversary</title>
<subtitle/>
<track>Community Culture</track>
<type>service</type>