-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathposts.html
More file actions
2741 lines (1893 loc) · 116 KB
/
posts.html
File metadata and controls
2741 lines (1893 loc) · 116 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="google-site-verification" content="1dAqFck3BIBxCx-EyBbHy1HkoFnptYfP04TgKOJiYO8">
<title>Our stories | OLS</title>
<link href="/css/custom.css" rel="stylesheet" type="text/css">
<link rel="icon" type="image/x-icon" href="/images/logo/ols-transparent-bg.ico">
<link rel="stylesheet" href="https://cdn.rawgit.com/jpswalsh/academicons/master/css/academicons.min.css">
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.13.8/css/dataTables.bulma.min.css">
<link rel="stylesheet" href="https://cdn.datatables.net/responsive/2.5.0/css/responsive.dataTables.min.css">
<link rel="stylesheet" href="https://cdn.datatables.net/searchbuilder/1.6.0/css/searchBuilder.dataTables.min.css">
<link rel="stylesheet" href="https://cdn.datatables.net/1.13.6/css/jquery.dataTables.min.css">
<!--Below is the schema annotation for blogposts-->
</head>
<body>
<nav class="navbar is-fixed-top" role="navigation" aria-label="main navigation">
<div class="container">
<div class="navbar-brand">
<a class="navbar-item" href="/">
<img src="/images/logo/ols-transparent-bg.png" alt="OLS">
</a>
<a role="button" class="navbar-burger burger" aria-label="menu" aria-expanded="false" data-target="top-menu">
<span aria-hidden="true"></span> <span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>
<div id="top-menu" class="navbar-menu">
<div class="navbar-end">
<div class="navbar-item has-dropdown is-hoverable">
<a class="navbar-link" href="/open-science-training.html">Open Science Training</a>
<div class="navbar-dropdown">
<a class="navbar-item" href="/openseeds/">Open Seeds</a>
<a class="navbar-item" href="/nebula/">Nebula</a>
</div>
</div>
<div class="navbar-item has-dropdown is-hoverable">
<a class="navbar-link" href="/open-research.html">Research on Open</a>
<div class="navbar-dropdown">
<a class="navbar-item" href="/open-research.html#open-seeds-impact-research">Open Seeds Impact Research</a>
<a class="navbar-item" href="/open-research.html#influencing-policy-to-widen-participation-in-open-data-science">Influencing policy to widen participation in open data science</a>
</div>
</div>
<div class="navbar-item has-dropdown is-hoverable">
<a class="navbar-link" href="/open-incubator.html">Open Incubator</a>
<div class="navbar-dropdown">
<a class="navbar-item" href="https://catalystproject.cloud/">Catalyst</a>
<a class="navbar-item" href="/open-incubator.html#fellowship-programmes">Fellowship Programmes</a>
<a class="navbar-item" href="/open-incubator.html#facilitators-training-and-transcription-services">Facilitators Training and Transcription Services</a>
<a class="navbar-item" href="/open-incubator.html#grant-writing-training">Grant writing training</a>
<a class="navbar-item" href="/open-incubator/fiscal-hosting/">Fiscal hosting</a>
<a class="navbar-item" href="/consulting/">Consultancy & open research advice</a>
</div>
</div>
<div class="navbar-item has-dropdown is-hoverable">
<a class="navbar-link" href="/openseeds/about.html">About</a>
<div class="navbar-dropdown">
<a class="navbar-item" href="/people.html"> People </a>
<a class="navbar-item" href="/community.html"> Team </a>
<a class="navbar-item" href="/governance.html"> Governance </a>
<a class="navbar-item" href="/funders.html"> Funding & Supporters </a>
<a class="navbar-item" href="/partners.html"> Partners </a>
<a class="navbar-item" href="/knowledge_management.html"> Knowledge Management System </a>
<a class="navbar-item" href="/publications.html"> Citing OLS & Publications </a>
<a class="navbar-item" href="/branding.html"> Branding </a>
<a class="navbar-item" href="/events.html"> Events </a>
<a class="navbar-item" href="/open-science.html"> Open Science </a>
</div>
</div>
<div class="navbar-item has-dropdown is-hoverable">
<a class="navbar-link" href="/policies-procedures-and-docs/">Policies & Procedures</a>
<div class="navbar-dropdown">
<a class="navbar-item" href="/code-of-conduct.html"> Code of Conduct </a>
<a class="navbar-item" href="/openseeds/cohort-procedures-and-templates/graduation-guide.html"> Graduation Guide </a>
<a class="navbar-item" href="/openseeds/cohort-procedures-and-templates/microgrants.html"> Microgrants </a>
<a class="navbar-item" href="/openseeds/cohort-procedures-and-templates/speedblog.html"> Speedblog </a>
<a class="navbar-item" href="/policies-procedures-and-docs/communications/hackmd-guide.html"> HackMD Guide </a>
<a class="navbar-item" href="/policies-procedures-and-docs/communications/slack-guide.html"> Slack Guide </a>
<a class="navbar-item" href="/policies-procedures-and-docs/fellows/ols-ssi-terms-conditions.html"> OLS/SSI Fellowship </a>
<a class="navbar-item" href="/policies-procedures-and-docs/payments/honorarium.html"> Honoraria Policy </a>
<a class="navbar-item" href="/policies-procedures-and-docs/payments/invoicing.html"> Invoicing OLS </a>
</div>
</div>
<a class="navbar-item" href="/posts.html"> Stories </a>
</div>
</div>
</div>
</nav>
<section class="hero " style="background-image: linear-gradient(to top, #000, transparent), url(/images/posts.jpg);">
<div class="hero-body">
<h1 class="title is-1">Our stories</h1>
</div>
<div class="hero-foot">
<p class="credit"><a href="https://flic.kr/p/5osrWQ">electricnude</a> (CC BY-SA 2.0)</p>
</div>
</section>
<section class="section">
<div class="container content ">
<div class="field">
<p class="control has-icons-left">
<input class="input is-medium is-focused" type="text" placeholder="Search stories" oninput="searchPosts()" id="searchbar">
<span class="icon is-small is-left">
<i class="fa fa-search"></i>
</span>
</p>
</div>
<div class="post">
<div class="card">
<div class="card-image">
<figure class="image">
<img src="https://plus.unsplash.com/premium_photo-1738416571378-46793a101767" alt="Job vacancy - OLS Research Fellow">
</figure>
</div>
<div class="card-content">
<div class="content">
<div class="title">
<a href="/posts/2025/03/27/research-fellow-role/">
<p>Job vacancy - OLS Research Fellow</p>
</a>
</div>
<p class="subtitle">
<time datetime="Mar 27, 2025">Mar 27, 2025</time>
- <a href="/people.html#malvikasharan">Malvika</a>
</p>
<h1 id="role-ols-research-fellow---research-funding-ecosystem">Role: OLS Research Fellow - Research Funding Ecosystem</h1>
</div>
</div>
</div>
<div class="card">
<div class="card-image">
<figure class="image">
<img src="https://images.unsplash.com/photo-1621873493371-9aea49f66b9b" alt="My FOSS Backstage 2025 Experience">
</figure>
</div>
<div class="card-content">
<div class="content">
<div class="title">
<a href="/posts/2025/03/13/my-FOSS-backstage-experience/">
<p>My FOSS Backstage 2025 Experience</p>
</a>
</div>
<p class="subtitle">
<time datetime="Mar 13, 2025">Mar 13, 2025</time>
- <a href="/people.html#npdebs">Deborah</a>
</p>
<h2 id="day-1-waving-through-awindow">Day 1: Waving Through a Window</h2>
<p>Attending <a href="https://25.foss-backstage.de/">FOSS Backstage</a> online was a contrast to my past virtual conference experiences, especially compared to the highly engaging <a href="https://www.software.ac.uk/workshop/collaborations-workshop-2025-cw25">Collaborations Workshop</a>.
There was no opportunity to ask speakers questions directly, no intentional networking efforts, and little to differentiate attending live from simply waiting for the recordings to be released.
While the platform itself was user-friendly and easy to navigate, the nature of the talks further contributed to my sense of disconnection.
<em>Legal & Compliance, Economics, Governance</em> - these topics, while critical to open source, are not my usual focus. As a result, much of the content went over my head.
To make matters worse, scheduling conflicts meant I missed some talks I had been looking forward to.</p>
</div>
</div>
</div>
<div class="card">
<div class="card-image">
<figure class="image">
<img src="https://images.unsplash.com/photo-1506744038136-46273834b3fb" alt="Reflections on the DRI Journey: Advancing TBI Care in Indigenous Communities.">
</figure>
</div>
<div class="card-content">
<div class="content">
<div class="title">
<a href="/posts/2025/02/20/advancing-tbi-care/">
<p>Reflections on the DRI Journey: Advancing TBI Care in Indigenous Communities.</p>
</a>
</div>
<p class="subtitle">
<time datetime="Feb 20, 2025">Feb 20, 2025</time>
- <a href="/people.html#damario99">Sebastian</a>
</p>
<p><em>This speedblog, written by <a href="/people.html#damario99">Sebastian D’Amario</a>, is part of the OLS-9 cohort.</em></p>
</div>
</div>
</div>
<div class="card">
<div class="card-image">
<figure class="image">
<img src="https://images.unsplash.com/photo-1739957240497-57ab71d9ed1a" alt="The FOSDEM 2025 Experience">
</figure>
</div>
<div class="card-content">
<div class="content">
<div class="title">
<a href="/posts/2025/02/16/the-fosdem-2025-experience/">
<p>The FOSDEM 2025 Experience</p>
</a>
</div>
<p class="subtitle">
<time datetime="Feb 16, 2025">Feb 16, 2025</time>
- <a href="/people.html#npdebs">Deborah</a>
</p>
<p>Let me start by saying that <strong>this trip almost didn’t happen</strong>. A visa application I started in early November was still unresolved a day before FOSDEM. Without my passport, I had to cancel my flight. But with just a few hours to go, something changed.</p>
</div>
</div>
</div>
<div class="card">
<div class="card-image">
<figure class="image">
<img src="https://images.unsplash.com/photo-1511884642898-4c92249e20b6" alt="Leveraging Digital Research Infrastructure for Environmental DNA Tools in Monitoring Indigenous Territories.">
</figure>
</div>
<div class="card-content">
<div class="content">
<div class="title">
<a href="/posts/2025/02/13/leveraging-digital-research-infrastructure/">
<p>Leveraging Digital Research Infrastructure for Environmental DNA Tools in Monitoring Indigenous Territories.</p>
</a>
</div>
<p class="subtitle">
<time datetime="Feb 13, 2025">Feb 13, 2025</time>
- <a href="/people.html#mldlopez">Mark Louie</a>
</p>
<p><em>This speedblog, written by <a href="https://marklouielopez.weebly.com/">Mark Louie Lopez</a>, is part of the OLS-9 cohort.</em></p>
</div>
</div>
</div>
<div class="card">
<div class="card-image">
<figure class="image">
<img src="/images/2019-11-25-header-expert.jpeg" alt="Pressing " pause on nebula>
</figure>
</div>
<div class="card-content">
<div class="content">
<div class="title">
<a href="/posts/2025/02/05/pause-on-nebula/">
<p>Pressing "pause" on Nebula</p>
</a>
</div>
<p class="subtitle">
<time datetime="Feb 5, 2025">Feb 5, 2025</time>
- <a href="/people.html#yochannah">Yo</a>, <a href="/people.html#iramosp">Irene</a>
</p>
<p>As a NASA grantee, OLS has been running the 6-week Nebula training program since early 2024. With the new USA government, we have been asked to pause our open science 101 training for the next few months, while the curriculum is reviewed. We’ll let you all know when the training is available again.</p>
</div>
</div>
</div>
<div class="card">
<div class="card-image">
<figure class="image">
<img src="https://images.unsplash.com/photo-1532288191429-2093e0783809" alt="Translating caribou habitat modelling with indigenous insights">
</figure>
</div>
<div class="card-content">
<div class="content">
<div class="title">
<a href="/posts/2025/01/25/translating-caribou-habitat-modelling-with-indigenous-insights/">
<p>Translating caribou habitat modelling with indigenous insights</p>
</a>
</div>
<p class="subtitle">
<time datetime="Jan 25, 2025">Jan 25, 2025</time>
- <a href="/people.html#melleason">Moses</a>
</p>
<p>This speedblog is part of the OLS-9 cohort, where participants explore open science principles while developing their projects. In this post, Melleason shares insights from their work on integrating indigenous knowledge with scientific methods to improve caribou habitat conservation on the Slate Islands.</p>
</div>
</div>
</div>
<div class="card">
<div class="card-image">
<figure class="image">
<img src="https://images.unsplash.com/photo-1472313420546-a46e561861d8" alt="Welcoming our new OLS Resident Fellow — Sara Villa">
</figure>
</div>
<div class="card-content">
<div class="content">
<div class="title">
<a href="/posts/2025/01/24/welcoming-our-new-resident-fellow/">
<p>Welcoming our new OLS Resident Fellow — Sara Villa</p>
</a>
</div>
<p class="subtitle">
<time datetime="Jan 24, 2025">Jan 24, 2025</time>
- <a href="/people.html#saravilla">Sara</a>, <a href="/people.html#iramosp">Irene</a>
</p>
<p>¡Nos entusiasma darle la bienvenida a <strong><a href="/people.html#saravilla">Sara Villa</a></strong>, quien se une al equipo de OLS como Senior Fellow!</p>
</div>
</div>
</div>
<div class="card">
<div class="card-image">
<figure class="image">
<img src="https://miro.medium.com/v2/resize:fit:1100/format:webp/1*atC5QRi3yXegnohWD8bJqA.jpeg" alt="Lessons from My (first ever!) Public Speaking Coach.">
</figure>
</div>
<div class="card-content">
<div class="content">
<div class="title">
<a href="/posts/2025/01/08/public-speaking-tips/">
<p>Lessons from My (first ever!) Public Speaking Coach.</p>
</a>
</div>
<p class="subtitle">
<time datetime="Jan 8, 2025">Jan 8, 2025</time>
- <a href="/people.html#npdebs">Deborah</a>
</p>
<p>Public speaking has been one of my strongest skills for the longest time — but like other skills, one can never truly master it, only strive to refine it. I had the privilege of working with <a href="https://www.davidkershaw.net/"><strong>David Kershaw</strong></a>, a remarkable public speaking coach provided by the <strong>Society of Research Software Engineering</strong> (<a href="https://society-rse.org/">SocRSE</a>), to prepare for my <a href="https://rsecon24.society-rse.org/programme/emerging-voice-plenary/">Emerging Voices plenary</a> at <strong>RSECon24</strong>.</p>
</div>
</div>
</div>
<div class="card">
<div class="card-image">
<figure class="image">
<img src="/images/ols-ng-meetup/ols-ng-group.jpeg" alt="Colleagues to Family: Highlights of the OLS Nigeria Meetup">
</figure>
</div>
<div class="card-content">
<div class="content">
<div class="title">
<a href="/posts/2024/12/19/ols-nigeria-meetup/">
<p>Colleagues to Family: Highlights of the OLS Nigeria Meetup</p>
</a>
</div>
<p class="subtitle">
<time datetime="Dec 19, 2024">Dec 19, 2024</time>
- <a href="/people.html#npdebs">Deborah</a>, <a href="/people.html#jilaga">Nneoma</a>, <a href="/people.html#seunolufemi123">Seun</a>, <a href="/people.html#tajuddeen1">Tajuddeen</a>
</p>
<p>There’s something magical about meeting people you’ve worked with virtually for ages and instantly feeling like family when you finally see each other in real life. That’s exactly how it felt when <strong>the OLS Nigeria Team met up for the first time</strong> this past Tuesday, December 17, 2024, at the vibrant Art Tech District in <strong>Abuja</strong>.</p>
</div>
</div>
</div>
<div class="card">
<div class="card-image">
<figure class="image">
<img src="https://img.freepik.com/free-vector/female-journalist-with-microphone-interviewing-man_74855-7350.jpg" alt="OLS and Digital Research Academy team up in an OSCARS project to create the OSPARK Bootcamp">
</figure>
</div>
<div class="card-content">
<div class="content">
<div class="title">
<a href="/posts/2024/12/11/ols-dra-ospark-announcement/">
<p>OLS and Digital Research Academy team up in an OSCARS project to create the OSPARK Bootcamp</p>
</a>
</div>
<p class="subtitle">
<time datetime="Dec 11, 2024">Dec 11, 2024</time>
- <a href="/people.html#npdebs">Deborah</a>, <a href="/people.html#joyceykao">Joyce</a>
</p>
<p>We are beyond excited to the launch of the <strong>Open Science Promotion and Advocacy for Research Knowledge (OSPARK)</strong> project,
a groundbreaking collaboration between <a href="https://we-are-ols.org/">Open Life Science</a> (OLS) and <a href="https://digital-research.academy/">The Digital Research Academy</a> (DRA)!</p>
</div>
</div>
</div>
<div class="card">
<div class="card-image">
<figure class="image">
<img src="https://images.unsplash.com/photo-1595853035070-59a39fe84de3" alt="Welcoming our new OLS Resident Fellow — Doaa Mohamed Abdelkader">
</figure>
</div>
<div class="card-content">
<div class="content">
<div class="title">
<a href="/posts/2024/11/19/welcoming-our-new-resident-fellow/">
<p>Welcoming our new OLS Resident Fellow — Doaa Mohamed Abdelkader</p>
</a>
</div>
<p class="subtitle">
<time datetime="Nov 19, 2024">Nov 19, 2024</time>
- <a href="/people.html#npdebs">Deborah</a>, <a href="/people.html#batoolmm">Batool</a>
</p>
<p>We are thrilled to announce that <strong><a href="/people.html#doaamkader">Doaa Mohamed Abdelkader</a></strong> has joined the OLS team as our newest Resident Fellow!</p>
</div>
</div>
</div>
<div class="card">
<div class="card-image">
<figure class="image">
<img src="https://media.licdn.com/dms/image/v2/D5610AQGPZaXMJKu5Wg/image-shrink_800/image-shrink_800/0/1730385031498?e=1731063600&v=beta&t=-F0ZI4Zj-oKi2cRQyrZcypICq2RuwQAaNyJQubPH3mg" alt="Introducing the Catalyst Project Community Partner Highlights">
</figure>
</div>
<div class="card-content">
<div class="content">
<div class="title">
<a href="/posts/2024/10/31/introducing-the-catalyst-project-community-partner-highlights/">
<p>Introducing the Catalyst Project Community Partner Highlights</p>
</a>
</div>
<p class="subtitle">
<time datetime="Oct 31, 2024">Oct 31, 2024</time>
- <a href="/people.html#Katie%20Pratt">Katie Pratt</a>, <a href="/people.html#slldec">Sabrina</a>
</p>
<p>The <strong><a href="https://catalystproject.cloud/">Catalyst Project</a></strong> is a community-engaged initiative designed to support the adoption of open science principles in <strong>under-served bioscientific research communities</strong> through the provision of reliable and sustainable cloud computing infrastructure. It’s a project we’ve been working on now for almost two years, which involves staff from seven different organizations: <a href="https://2i2c.org/">2i2c</a>, <a href="https://carpentries.org/about/">The Carpentries</a>, <a href="https://ccad.unc.edu.ar/">CCAD</a>, <a href="https://www.cscce.org/">CSCCE</a>, <a href="http://investinopen.org/">IOI</a>, <a href="https://www.metadocencia.org/">MetaDocencia</a>, and <a href="https://we-are-ols.org/">OLS</a>, and is funded by the <a href="https://chanzuckerberg.com/">Chan Zuckerberg Initiative</a>.</p>
</div>
</div>
</div>
<div class="card">
<div class="card-image">
<figure class="image">
<img src="https://images.unsplash.com/photo-1588196749597-9ff075ee6b5b" alt="Introducing Bioinformaticians to Open Science Principles in Nigeria: Insights from a Two-Day Virtual Workshop">
</figure>
</div>
<div class="card-content">
<div class="content">
<div class="title">
<a href="/posts/2024/10/24/open-science-for-bioinformaticians/">
<p>Introducing Bioinformaticians to Open Science Principles in Nigeria: Insights from a Two-Day Virtual Workshop</p>
</a>
</div>
<p class="subtitle">
<time datetime="Oct 24, 2024">Oct 24, 2024</time>
- <a href="/people.html#seunolufemi123">Seun</a>
</p>
<p>The <em>Open Science for Bioinformaticians</em> workshop, held on August 15-16, 2024, successfully introduced young professionals in Nigeria to the principles of open science and their applications in bioinformatics. This two-day virtual event was designed to empower participants with practical skills for data management, ethical data sharing, and collaborative research using open science practices.</p>
</div>
</div>
</div>
<div class="card">
<div class="card-image">
<figure class="image">
<img src="https://images.unsplash.com/photo-1554457606-ed16c39db884" alt="We dey welcom our OLS Resident Fellow, Seun Olufemi, to di OLS-9 Delivery Team">
</figure>
</div>
<div class="card-content">
<div class="content">
<div class="title">
<a href="/posts/2024/07/29/welcome-resident-fellow-seun-olufemi/">
<p>We dey welcom our OLS Resident Fellow, Seun Olufemi, to di OLS-9 Delivery Team</p>
</a>
</div>
<p class="subtitle">
<time datetime="Jul 29, 2024">Jul 29, 2024</time>
- <a href="/people.html#malvikasharan">Malvika</a>, <a href="/people.html#seunolufemi123">Seun</a>
</p>
<p><em>This blog is written in <a href="https://en.wikipedia.org/wiki/Nigerian_Pidgin">Nigerian Pidgin</a>, and is also available in <a href="/posts/2024/07/24/welcoming-resident-fellow-seun-olufemi/">English</a>.</em></p>
</div>
</div>
</div>
<div class="card">
<div class="card-image">
<figure class="image">
<img src="https://images.unsplash.com/photo-1554457606-ed16c39db884" alt="Welcoming OLS Resident Fellow Seun Olufemi to OLS-9 Delivery Team">
</figure>
</div>
<div class="card-content">
<div class="content">
<div class="title">
<a href="/posts/2024/07/24/welcoming-resident-fellow-seun-olufemi/">
<p>Welcoming OLS Resident Fellow Seun Olufemi to OLS-9 Delivery Team</p>
</a>
</div>
<p class="subtitle">
<time datetime="Jul 24, 2024">Jul 24, 2024</time>
- <a href="/people.html#malvikasharan">Malvika</a>, <a href="/people.html#seunolufemi123">Seun</a>
</p>
<p><em>This blog is written in <a href="https://en.wikipedia.org/wiki/English_language">English</a>, and is also available in <a href="/posts/2024/07/29/welcome-resident-fellow-seun-olufemi/">Nigerian Pidgin</a>.</em></p>
</div>
</div>
</div>
<div class="card">
<div class="card-image">
<figure class="image">
<img src="https://images.unsplash.com/photo-1464274582105-6b442eadde5e" alt="A Fond Farewell to Emmy as She Continues to Make Waves in Open Science">
</figure>
</div>
<div class="card-content">
<div class="content">
<div class="title">
<a href="/posts/2024/07/22/emmy-farewell/">
<p>A Fond Farewell to Emmy as She Continues to Make Waves in Open Science</p>
</a>
</div>
<p class="subtitle">
<time datetime="Jul 22, 2024">Jul 22, 2024</time>
- <a href="/people.html#malvikasharan">Malvika</a>, <a href="/people.html#bebatut">Bérénice</a>, <a href="/people.html#yochannah">Yo</a>
</p>
<p>Emmy Tsang joined the OLS Board of Directors in 2021. In March 2024, she concluded her service and stepped down from the board.
With this post (although 3 months delayed), we <strong>recognise and celebrate Emmy’s hard work in OLS during her time as a Director of Finance and Operations</strong>.</p>
</div>
</div>
</div>
<div class="card">
<div class="card-image">
<figure class="image">
<img src="https://images.unsplash.com/photo-1486868018400-960892a825f4" alt="OLS-9 Launches with Two Tracks in Partnership with Digital Research Alliance of Canada and Catalyst Project">
</figure>
</div>
<div class="card-content">
<div class="content">
<div class="title">
<a href="/posts/2024/07/15/openseeds-in-2024/">
<p>OLS-9 Launches with Two Tracks in Partnership with Digital Research Alliance of Canada and Catalyst Project</p>
</a>
</div>
<p class="subtitle">
<time datetime="Jul 15, 2024">Jul 15, 2024</time>
- <a href="/people.html#yochannah">Yo</a>, <a href="/people.html#malvikasharan">Malvika</a>
</p>
<p>We are delighted to announce that we have partnered with the Digital Research Alliance of Canada (the Alliance) and the Catalyst Project to deliver two tracks as part of OLS’s Open Seeds program, OLS-9.</p>
</div>
</div>
</div>
<div class="card">
<div class="card-image">
<figure class="image">
<img src="https://images.unsplash.com/photo-1560328055-e938bb2ed50a" alt="RSE-AUNZ joins OLS as their first fiscally sponsored community">
</figure>
</div>
<div class="card-content">
<div class="content">
<div class="title">
<a href="/posts/2024/07/12/RSE-AUNZ-joins-OLS/">
<p>RSE-AUNZ joins OLS as their first fiscally sponsored community</p>
</a>
</div>
<p class="subtitle">
<time datetime="Jul 12, 2024">Jul 12, 2024</time>
- <a href="/people.html#yochannah">Yo</a>, <a href="/people.html#rowlandm">Rowland</a>, <a href="/people.html#Manodeep">Manodeep</a>
</p>
<p>We’re excited to share that <strong><a href="https://rse-aunz.github.io/">RSE-AUNZ</a> are joining OLS as our first <a href="/open-incubator/fiscal-hosting/">Fiscally Sponsored Community (FSC)</a></strong>! We’ll be exploring this over the next year with RSE-AUNZ as they run their flagship <a href="https://rseaa.github.io/">2024 RSE Asia Australia unconference</a>.</p>
</div>
</div>
</div>
<div class="card">
<div class="card-image">
<figure class="image">
<img src="/images/2024-01-gov-post-almani-qhizq_V876M-unsplash.png" alt="Announcing the OLS Governance and Their Work Since June 2023">
</figure>
</div>
<div class="card-content">
<div class="content">
<div class="title">
<a href="/posts/2024/01/26/governance-update/">
<p>Announcing the OLS Governance and Their Work Since June 2023</p>
</a>
</div>
<p class="subtitle">
<time datetime="Jan 26, 2024">Jan 26, 2024</time>
- <a href="/people.html#malvikasharan">Malvika</a>, <a href="/people.html#yochannah">Yo</a>
</p>
<p>At OLS, we are thrilled to share a significant milestone: the establishment of the <strong>OLS Governance Committee</strong>. In this post, we highlight their work with us over the past six months.</p>
</div>
</div>
</div>
<div class="card">
<div class="card-image">
<figure class="image">
<img src="https://www.software.ac.uk/sites/default/files/2023-12/unnamed.jpg" alt="Hackathon Co-Afina 2023 - Latin American Students Drive Innovation with Open Data">
</figure>
</div>
<div class="card-content">
<div class="content">
<div class="title">
<a href="/posts/2023/12/07/Latin-American-students-drive-innovation-with-open-data/">
<p>Hackathon Co-Afina 2023 - Latin American Students Drive Innovation with Open Data</p>
</a>
</div>
<p class="subtitle">
<time datetime="Dec 7, 2023">Dec 7, 2023</time>
- <a href="/people.html#camachoreina">Reina</a>, <a href="/people.html#mxrtinez">Alexander</a>
</p>
<p><em>This blog post was originally shared by Software Sustainability Institute, and can be found <a href="https://www.software.ac.uk/blog/hackathon-co-afina-2023-latin-american-students-drive-innovation-open-data">here</a>, as authored by R. Camacho Toro, Y. Briceño and A. Martínez.</em></p>
</div>
</div>
</div>
<div class="card">
<div class="card-image">
<figure class="image">
<img src="https://images.unsplash.com/photo-1543168449-582b8edc70a6?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2670&q=80" alt="Meet our 8th Open Seeds cohort of project leads and their mentors">
</figure>
</div>
<div class="card-content">
<div class="content">
<div class="title">
<a href="/posts/2023/10/10/ols-8-announcement/">
<p>Meet our 8th Open Seeds cohort of project leads and their mentors</p>
</a>
</div>
<p class="subtitle">
<time datetime="Oct 10, 2023">Oct 10, 2023</time>
- <a href="/people.html#bebatut">Bérénice</a>, <a href="/people.html#malvikasharan">Malvika</a>, <a href="/people.html#yochannah">Yo</a>, <a href="/people.html#emmyft">Emmy</a>, <a href="/people.html#pazbc">Paz</a>
</p>
<p>We are excited to kick-off the new round of <a href="/openseeds/">Open Seeds</a> with another incredible cohort of mentors, mentees, and experts. We are honored to bring together members of diverse identities and backgrounds who represent expertise from different domains of research, who are working to address a wide range of relevant questions in their field and are motivated to bring a culture change in their areas. Many of them are long-standing Open Scientists who aim to use this opportunity to apply open science and community-based principles in their projects through this program.</p>
</div>
</div>
</div>
<div class="card">
<div class="card-image">
<figure class="image">
<img src="/images/DSC_9454.jpg" alt="Reflections of a resident fellow">
</figure>
</div>
<div class="card-content">
<div class="content">
<div class="title">
<a href="/posts/2023/08/29/reflections-of-a-resident-fellow/">
<p>Reflections of a resident fellow</p>
</a>
</div>
<p class="subtitle">
<time datetime="Aug 29, 2023">Aug 29, 2023</time>
- <a href="/people.html#pherterich">Patricia</a>
</p>
<p>In October 2022, I was one of the lucky people invited to explore a Resident Fellowship with OLS. In the announcement blog, I claimed that I wanted to achieve the following with my Fellowship:</p>
</div>
</div>
</div>
<div class="card">
<div class="card-image">
<figure class="image">
<img src="https://images.unsplash.com/photo-1512314889357-e157c22f938d?" alt="Critical infrastructure for Open Scholarship, and Policies to support wider participation in open data science">
</figure>
</div>
<div class="card-content">
<div class="content">
<div class="title">
<a href="/posts/2023/08/23/critical-infrastructure-for-open-scholarship/">
<p>Critical infrastructure for Open Scholarship, and Policies to support wider participation in open data science</p>
</a>
</div>
<p class="subtitle">
<time datetime="Aug 23, 2023">Aug 23, 2023</time>
- <a href="/people.html#yochannah">Yo</a>, <a href="/people.html#bethaniley">Bethan</a>
</p>
<p>This is a double announcement of two exciting (and linked) items:</p>
</div>
</div>
</div>
<div class="card">
<div class="card-image">
<figure class="image">
<img src="/images/2023-16-08-SouthAfrica-pic-OLS-8-blog-post.jpg" alt="OLS joining forces with communities to broaden participation in open science">
</figure>
</div>
<div class="card-content">
<div class="content">
<div class="title">
<a href="/posts/2023/08/15/OLS-joining-forces-with-communities-to-broaden-participation-in-open-science/">
<p>OLS joining forces with communities to broaden participation in open science</p>
</a>
</div>
<p class="subtitle">
<time datetime="Aug 15, 2023">Aug 15, 2023</time>
- <a href="/people.html#nyasita">Laurah</a>, <a href="/people.html#landimi2">Michael</a>, <a href="/people.html#lauracion">Laura</a>, <a href="/people.html#npalopoli">Nicolás</a>, <a href="/people.html#karvovskaya">Lena</a>, <a href="/people.html#malvikasharan">Malvika</a>, <a href="/people.html#estherplomp">Esther</a>, <a href="/people.html#pazbc">Paz</a>, <a href="/people.html#anelda">Anelda</a>, <a href="/people.html#aliaslaurel">Laura</a>
</p>
<p><em>OLS is happy to announce our collaboration with multiple international organisations and communities to deliver the Open Seeds OLS-8 programme</em></p>
</div>
</div>
</div>
<div class="card">
<div class="card-image">
<figure class="image">
<img src="https://images.pexels.com/photos/114820/pexels-photo-114820.jpeg" alt="Launching the Open Seeds Video Library">
</figure>
</div>
<div class="card-content">
<div class="content">
<div class="title">
<a href="/posts/2023/07/23/video-library-launching/">
<p>Launching the Open Seeds Video Library</p>
</a>
</div>
<p class="subtitle">
<time datetime="Jul 23, 2023">Jul 23, 2023</time>
- <a href="/people.html#bebatut">Bérénice</a>
</p>
</div>
</div>
</div>
<div class="card">
<div class="card-image">
<figure class="image">
<img src="https://github-production-user-asset-6210df.s3.amazonaws.com/32418102/246192342-62c5e32b-15c1-49b6-942c-8a4a7f3792be.jpg" alt="Mapping open-science communities, organizations, and events in Latin America">
</figure>
</div>
<div class="card-content">
<div class="content">
<div class="title">
<a href="/posts/2023/07/17/ols-7-mapping-open-science-communities-LATAM/">
<p>Mapping open-science communities, organizations, and events in Latin America</p>
</a>
</div>
<p class="subtitle">
<time datetime="Jul 17, 2023">Jul 17, 2023</time>
- <a href="/people.html#jformoso">Jesica</a>, <a href="/people.html#patriloto">Patricia</a>, <a href="/people.html#4iro">Irene</a>
</p>
<p><em>This post summarizes our OLS journey, the project we worked on during the entire period of cohort 7, and what our plans for the future are</em></p>
</div>
</div>
</div>
<div class="card">
<div class="card-image">
<figure class="image">
<img src="/images/2023-06-28-OLS-at-CW23.jpg" alt="The OLS community at CollabW23">
</figure>
</div>
<div class="card-content">
<div class="content">
<div class="title">
<a href="/posts/2023/06/28/OLS-at-CollabW23/">
<p>The OLS community at CollabW23</p>
</a>