-
Notifications
You must be signed in to change notification settings - Fork 0
/
future_learn_courses.json
5154 lines (5154 loc) · 216 KB
/
future_learn_courses.json
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
[
{
"college": "King's College London",
"title": "Basic English 1: Elementary",
"description": "Learn basic English for everyday situations and improve your listening skills with this online course.",
"weeks": "4 weeks",
"hours": "4 hrs/week"
},
{
"college": "ABRSM",
"title": "Becoming a Better Music Teacher",
"description": "Improve your teaching strategies and skills as a music teacher or vocal coach with this ABRSM online course.",
"weeks": "5 weeks",
"hours": "3 hrs/week"
},
{
"college": "The University of Edinburgh & Royal College of Physicians of Edinburgh",
"title": "COVID-19 Critical Care: Understanding and Application",
"description": "Learn the principles and practice of critical care to treat and care for critically ill patients during the COVID-19 pandemic.",
"weeks": "6 weeks",
"hours": "1 hrs/week"
},
{
"college": "University of Strathclyde & CELCIS",
"title": "Caring for Vulnerable Children",
"description": "Develop an understanding of some of the approaches involved in caring for vulnerable children, with this online childcare course.",
"weeks": "6 weeks",
"hours": "4 hrs/week"
},
{
"college": "Nankai University & The Global Travel and Tourism Partnership (GTTP)",
"title": "China’s Role in Global Tourism Development",
"description": "Understand the recent history of tourism in China and explore global tourism trends including medical tourism and smart tourism. ",
"weeks": "5 weeks",
"hours": "4 hrs/week"
},
{
"college": "The University of Manchester",
"title": "Clinical Bioinformatics: Unlocking Genomics in Healthcare",
"description": "Learn about the role of clinical bioinformaticians in healthcare and how their work is helping to realise the genomics revolution.",
"weeks": "5 weeks",
"hours": "2 hrs/week"
},
{
"college": "Raspberry Pi Foundation & National Centre for Computing Education",
"title": "Creating an Inclusive Classroom: Approaches to Supporting Learners with SEND in Computing",
"description": "Explore ways to make your computing lessons more inclusive for learners with special educational needs and disabilities.",
"weeks": "2 weeks",
"hours": "2 hrs/week"
},
{
"college": "The University of Waikato",
"title": "Data Mining with Weka",
"description": "Discover practical data mining and learn to mine your own data using the popular Weka workbench.",
"weeks": "5 weeks",
"hours": "3 hrs/week"
},
{
"college": "University of Dundee",
"title": "Data Science in the Games Industry",
"description": "Learn how the games industry can use big data to enhance the gaming experience and increase profits. ",
"weeks": "4 weeks",
"hours": "0 hrs/week"
},
{
"college": "University of Michigan",
"title": "Earth Day at 50 Teach-Out",
"description": "Discover the University of Michigan's involvement in the origins of Earth Day and get empowered to take action on climate change.",
"weeks": "2 weeks",
"hours": "2 hrs/week"
},
{
"college": "EIT Food, University of Reading & European Institute of Innovation and Technology (EIT)",
"title": "Engaging with Controversies in the Food System",
"description": "Become more confident in making informed decisions about the food you eat by exploring different food controversies.",
"weeks": "3 weeks",
"hours": "3 hrs/week"
},
{
"college": "Vrije Universiteit Amsterdam",
"title": "English Pronunciation in a Global World",
"description": "In this course you will improve your English pronunciation skills and learn about speaking English in today's globalised world.",
"weeks": "4 weeks",
"hours": "3 hrs/week"
},
{
"college": "King's College London",
"title": "English for Healthcare",
"description": "Develop your language and communication skills for a career in healthcare and learn new healthcare vocabulary in English.",
"weeks": "4 weeks",
"hours": "3 hrs/week"
},
{
"college": "British Council",
"title": "Exploring English: Shakespeare",
"description": "Improve your English language skills by looking at the life and works of William Shakespeare and his enduring popularity.",
"weeks": "6 weeks",
"hours": "2 hrs/week"
},
{
"college": "Keio University",
"title": "Exploring Japanese Avant-garde Art Through Butoh Dance",
"description": "See how Japanese art absorbed, refigured and influenced Western art in the 20th century through Hijikata Tatsumi's butoh dance.",
"weeks": "4 weeks",
"hours": "4 hrs/week"
},
{
"college": "Weizmann Institute of Science",
"title": "Flexagons and the Math Behind Twisted Paper",
"description": "Learn how to make flexagons - beautiful and unique paper constructions - and explore the math behind them.",
"weeks": "3 weeks",
"hours": "2 hrs/week"
},
{
"college": "Monash University",
"title": "Food as Medicine: Food and our Genome",
"description": "Understand the relationship between food and genetics and learn how to apply your learning to help patients.",
"weeks": "2 weeks",
"hours": "3 hrs/week"
},
{
"college": "Monash University",
"title": "Food as Medicine: Food, Exercise and the Gut",
"description": "Gain a deeper understanding of the connection between food, exercise and the gut, with this course for healthcare professionals.",
"weeks": "2 weeks",
"hours": "4 hrs/week"
},
{
"college": "Durham University & Teesside University ",
"title": "Forensic Archaeology and Anthropology",
"description": "Enter the fascinating world of forensics, and learn how the deceased are located, recovered and analysed using DNA and pathology.",
"weeks": "6 weeks",
"hours": "3 hrs/week"
},
{
"college": "The University of Kent & National Army Museum ",
"title": "From Waterloo to the Rhine: The British Army 1815-1945",
"description": "Examine one of the UK’s most storied institutions, and how 130 years of social, cultural and military change have shaped it.",
"weeks": "4 weeks",
"hours": "4 hrs/week"
},
{
"college": "University of Strathclyde",
"title": "Gender Representation in the Media",
"description": "Explore how women are represented in the media and reflect on what it means for contemporary society and culture.",
"weeks": "7 weeks",
"hours": "4 hrs/week"
},
{
"college": "The Open University",
"title": "Global Ethics: An Introduction",
"description": "Explore the key ethical theories surrounding global challenges and learn how philosophy can be used to address these problems.",
"weeks": "4 weeks",
"hours": "3 hrs/week"
},
{
"college": "St George's, University of London",
"title": "Global Health Governance: Addressing Globalization and Health Inequities",
"description": "Explore global health governance and the challenges facing healthcare workers and policymakers.",
"weeks": "3 weeks",
"hours": "3 hrs/week"
},
{
"college": "London School of Hygiene & Tropical Medicine & International Centre for Evidence in Disability",
"title": "Global Health and Disability",
"description": "Leaving no one behind: disability, health and wellbeing in global development",
"weeks": "3 weeks",
"hours": "4 hrs/week"
},
{
"college": "Raspberry Pi Foundation & National Centre for Computing Education",
"title": "How Computers Work: Demystifying Computation",
"description": "Explore the fundamentals of computing: computer architecture, binary logic, data processing, circuits & more. Supported by Google",
"weeks": "4 weeks",
"hours": "2 hrs/week"
},
{
"college": "London School of Hygiene & Tropical Medicine, International Centre for Evidence in Disability & Fundação Oswaldo Cruz (Fiocruz)",
"title": "Integrated Healthcare for Children with Developmental Disabilities",
"description": "Discover how to improve the health and wellbeing of children with developmental disabilities.",
"weeks": "3 weeks",
"hours": "4 hrs/week"
},
{
"college": "The University of Glasgow",
"title": "Introduction to Critical Care Medicine",
"description": "Learn how to handle complex issues faced in Critical Care Units when other options on the ward have been exhausted.",
"weeks": "3 weeks",
"hours": "4 hrs/week"
},
{
"college": "Raspberry Pi Foundation & National Centre for Computing Education",
"title": "Introduction to Cybersecurity for Teachers",
"description": "Explore key concepts of cybersecurity to teach 14-16 year-old students with this online cybersecurity course supported by Google.",
"weeks": "3 weeks",
"hours": "2 hrs/week"
},
{
"college": "UCL (University College London) , UCL Consultants & PA Consulting",
"title": "Introduction to GDPR: General Data Protection Regulation",
"description": "Learn how to handle data in the digital economy safely, securely and respectfully.",
"weeks": "3 weeks",
"hours": "2 hrs/week"
},
{
"college": "Hanken School of Economics",
"title": "Introduction to Humanitarian Logistics",
"description": "Understand the fundamentals of humanitarian logistics and discover supply chain management in a humanitarian context.",
"weeks": "2 weeks",
"hours": "3 hrs/week"
},
{
"college": "Raspberry Pi Foundation & National Centre for Computing Education",
"title": "Introduction to Web Development",
"description": "Discover web development and learn to build your own interactive websites using HTML, CSS, and JavaScript. Supported by Google.",
"weeks": "3 weeks",
"hours": "2 hrs/week"
},
{
"college": "Dublin City University",
"title": "Irish 102: An Introduction to Irish Language and Culture",
"description": "Find out how to speak, write and understand basic words, phrases and dialogues in Irish. ",
"weeks": "4 weeks",
"hours": "4 hrs/week"
},
{
"college": "St George's, University of London",
"title": "Managing COVID-19 in General Practice",
"description": "Get practical advice and support around how to respond to the novel coronavirus pandemic as a front-line healthcare professional.",
"weeks": "2 weeks",
"hours": "2 hrs/week"
},
{
"college": "Darden School of Business, University of Virginia",
"title": "Marketing Analytics",
"description": "Learn the basics of marketing analytics and understand how to use data to ensure your marketing is effective.",
"weeks": "5 weeks",
"hours": "2 hrs/week"
},
{
"college": "UEA (University of East Anglia)",
"title": "Medicine Administration for Carers",
"description": "Learn about the 6 'R's of medicine administration (including medicine administration routes) and understand related legislation. ",
"weeks": "3 weeks",
"hours": "3 hrs/week"
},
{
"college": "British Council",
"title": "Migrants and Refugees in Education: A toolkit for teachers",
"description": "Learn how to teach and support young people across the globe affected by violence, conflict or displacement.",
"weeks": "4 weeks",
"hours": "3 hrs/week"
},
{
"college": "Coventry University",
"title": "Motivation and Engagement in an Uncertain World",
"description": "Supporting you to thrive at home during the coronavirus outbreak.",
"weeks": "2 weeks",
"hours": "3 hrs/week"
},
{
"college": "Grenoble Ecole de Management",
"title": "New Energy Technologies: Energy Transition and Sustainable Development",
"description": "Explore the development of new energy technologies and discover key energy challenges with this online course. ",
"weeks": "6 weeks",
"hours": "2 hrs/week"
},
{
"college": "Raspberry Pi Foundation & National Centre for Computing Education",
"title": "Object-oriented Programming in Python: Create Your Own Adventure Game",
"description": "Learn object-oriented programming principles by creating your own text-based adventure game in Python. Supported by Google.",
"weeks": "4 weeks",
"hours": "2 hrs/week"
},
{
"college": "UEA (University of East Anglia)",
"title": "Preparing for University",
"description": "This course explores and develops key analytical skills that students need in order to succeed at university learning environment.",
"weeks": "6 weeks",
"hours": "3 hrs/week"
},
{
"college": "Public Health England",
"title": "Prison Health: Managing Outbreaks of Tuberculosis in Prisons",
"description": "Learn about the importance of addressing tuberculosis in prisons and the considerations for managing an outbreak in this setting.",
"weeks": "5 weeks",
"hours": "3 hrs/week"
},
{
"college": "Raspberry Pi Foundation & National Centre for Computing Education",
"title": "Programming 103: Saving and Structuring Data",
"description": "Learn how to save and structure data in external files, and import files back into your Python programs. Supported by Google. ",
"weeks": "3 weeks",
"hours": "2 hrs/week"
},
{
"college": "The Open University",
"title": "Project Management: Beyond the Basics",
"description": "Build your existing project management knowledge and develop the skills to manage teams and deliver effective projects.",
"weeks": "4 weeks",
"hours": "3 hrs/week"
},
{
"college": "University of Groningen",
"title": "Protecting Health Data in the Modern Age: Getting to Grips with the GDPR",
"description": "Learn how the GDPR helps to protect health data and get familiar with rights,\nobligations, risks and safeguards.",
"weeks": "2 weeks",
"hours": "3 hrs/week"
},
{
"college": "The British Film Institute (BFI) & Into Film",
"title": "Short Film in Language Teaching",
"description": "Find out how teaching with short film can bring alive the learning of languages and introduce rich cultural content to lessons.",
"weeks": "3 weeks",
"hours": "3 hrs/week"
},
{
"college": "Emergency Planning College (EPC)",
"title": "Staying Safe: How to be Prepared in the Modern World",
"description": "Have you ever considered what you would do in an emergency situation?\nHow would you keep yourself and others safe? ",
"weeks": "3 weeks",
"hours": "3 hrs/week"
},
{
"college": "University of Michigan",
"title": "Successful Negotiation: Essential Strategies and Skills",
"description": "Build negotiation skills and learn how to use and apply negotiation strategies to your life with the University of Michigan.",
"weeks": "7 weeks",
"hours": "2 hrs/week"
},
{
"college": "Cambridge Assessment English",
"title": "Teaching English Online: China and Beyond",
"description": "Get the knowledge, digital tools, and ideas to start and transform your teaching career. ",
"weeks": "4 weeks",
"hours": "5 hrs/week"
},
{
"college": "Raspberry Pi Foundation & National Centre for Computing Education",
"title": "Teaching Programming in Primary Schools",
"description": "Understand key programming concepts and apply them using Scratch, with this introductory course for primary or K-5 teachers.",
"weeks": "4 weeks",
"hours": "2 hrs/week"
},
{
"college": "Sungkyunkwan University (SKKU) ",
"title": "The Korean Alphabet: An Introduction to Hangeul",
"description": "Discover the basics of Hanguel, the official alphabet and writing system of Korea dating back to the fifteenth-century.",
"weeks": "4 weeks",
"hours": "2 hrs/week"
},
{
"college": "University of Wollongong",
"title": "The Power of Podcasting for Storytelling",
"description": "Discover all things podcasting: learn how to plan, write and publish your own podcast.",
"weeks": "2 weeks",
"hours": "3 hrs/week"
},
{
"college": "UEA (University of East Anglia)",
"title": "The Role of Personal Assistants in Disability Support",
"description": "Find out about the new role of personal assistants in disability support, and how to improve working relationships in the area.",
"weeks": "4 weeks",
"hours": "2 hrs/week"
},
{
"college": "Nankai University",
"title": "Tourism Policy and Planning",
"description": "Gain an introduction to tourism policy and planning in the global tourism industry and discover the sustainable tourism process. ",
"weeks": "5 weeks",
"hours": "4 hrs/week"
},
{
"college": "University of Exeter",
"title": "Transforming Energy Systems: Why Governance Matters",
"description": "Tackling climate change demands profound and rapid energy system transformation. Discover how effective governance enables this.",
"weeks": "4 weeks",
"hours": "4 hrs/week"
},
{
"college": "University of Reading",
"title": "Understanding Anxiety, Depression and CBT",
"description": "Improve your understanding of depression and anxiety and find out more about an effective and evidence-based treatment: CBT.",
"weeks": "5 weeks",
"hours": "3 hrs/week"
},
{
"college": "Edinburgh Napier University & Scottish Enterprise",
"title": "Understanding Data in the Tourism Industry",
"description": "How can you benefit from using data in your tourism business? Learn the opportunities of tourism data with this online course.",
"weeks": "5 weeks",
"hours": "3 hrs/week"
},
{
"college": "University of Padova",
"title": "Understanding Epilepsy and its Neuropsychology",
"description": "Find out what epilepsy is and what its cognitive and psychosocial consequences are.",
"weeks": "3 weeks",
"hours": "3 hrs/week"
},
{
"college": "BSAC & Public Health England",
"title": "e-Bug Health Educator Training",
"description": "Improve your ability to teach children and young people how to prevent the spread of infection and to use antibiotics responsibly.",
"weeks": "3 weeks",
"hours": "2 hrs/week"
},
{
"college": "Trinity College Dublin",
"title": "Achieving Sustainable Development",
"description": "Explore the challenges of sustainable development. See the impact of UN Sustainable Development Goals on real people.",
"weeks": "4 weeks",
"hours": "4 hrs/week"
},
{
"college": "UEA (University of East Anglia)",
"title": "An Introduction to Screenwriting",
"description": "This online course explores the key concepts and fundamental principles involved in the process of screenwriting.",
"weeks": "2 weeks",
"hours": "3 hrs/week"
},
{
"college": "University of Reading",
"title": "Archaeology: from Dig to Lab and Beyond ",
"description": "Get an introduction to studying archaeology, exploring exciting discoveries in the Vale of Pewsey, near to Stonehenge and Avebury.",
"weeks": "2 weeks",
"hours": "3 hrs/week"
},
{
"college": "Wellcome Genome Campus Advanced Courses and Scientific Conferences",
"title": "Bacterial Genomes: Antimicrobial Resistance in Bacterial Pathogens",
"description": "What's antimicrobial resistance and how can we detect it? Explore the clinical relevance of AMR and the methods used to detect it.",
"weeks": "3 weeks",
"hours": "5 hrs/week"
},
{
"college": "EIT InnoEnergy",
"title": "Battery Storage Technology: Opportunities and Uses",
"description": "Explore battery storage technology - how and why it works, and how it could revolutionise the European energy landscape.",
"weeks": "3 weeks",
"hours": "3 hrs/week"
},
{
"college": "EIT InnoEnergy",
"title": "Battery Storage: Understanding the Battery Revolution",
"description": "Explore the world of energy storage and understand the role of batteries.",
"weeks": "4 weeks",
"hours": "3 hrs/week"
},
{
"college": "University of Leeds & UCL Institute of Education",
"title": "Blended Learning Essentials: Getting Started",
"description": "Learn how to promote effective practice and pedagogy in blended learning on this vocational education training course.",
"weeks": "5 weeks",
"hours": "4 hrs/week"
},
{
"college": "The Open University & The Open University Business School",
"title": "Business Fundamentals: Customer Engagement",
"description": "Learn how to design business and marketing activities to engage customers through relationships instead of one-off sales.",
"weeks": "4 weeks",
"hours": "3 hrs/week"
},
{
"college": "The Open University & The Open University Business School",
"title": "Business Fundamentals: Effective Communication",
"description": "Gain a practical grounding in communication to boost your personal effectiveness, save you time and reduce your stress levels.",
"weeks": "4 weeks",
"hours": "3 hrs/week"
},
{
"college": "University of Bergen & Bjerknes Centre for Climate Research",
"title": "Causes of Climate Change",
"description": "Learn the physical processes behind climate variation around the world to better understand the causes of climate change.",
"weeks": "3 weeks",
"hours": "4 hrs/week"
},
{
"college": "University of Leeds & Institute of Coding",
"title": "Collaborative Working in a Remote Team",
"description": "Learn how to work effectively and collaboratively with your team, whether you're at home or on the other side of the world. ",
"weeks": "2 weeks",
"hours": "2 hrs/week"
},
{
"college": "University of Leeds & Institute of Coding",
"title": "Communication and Interpersonal Skills at Work",
"description": "Improve your communication skills at work and learn how to navigate positive collaboration in the modern workplace.",
"weeks": "2 weeks",
"hours": "2 hrs/week"
},
{
"college": "University of Leeds & Institute of Coding",
"title": "Computer Programming for Everyone",
"description": "Discover the art of computer programming and learn what code can do with the Institute of Coding and the University of Leeds. ",
"weeks": "2 weeks",
"hours": "2 hrs/week"
},
{
"college": "University of Leeds & Institute of Coding",
"title": "Create a Professional Online Presence",
"description": "Does your social media presence reflect who you are as a professional? Build your online presence to boost your employability.",
"weeks": "2 weeks",
"hours": "2 hrs/week"
},
{
"college": "University of Leeds & Institute of Coding",
"title": "Create a Social Media Marketing Campaign",
"description": "Learn to plan and launch a successful social media marketing campaign with the Institute of Coding and the University of Leeds.",
"weeks": "2 weeks",
"hours": "2 hrs/week"
},
{
"college": "University of Leeds & Institute of Coding",
"title": "Creating a Great User Experience for Mobile Apps",
"description": "Discover the essentials of user experience and bring your product to life by designing your own mobile app.",
"weeks": "2 weeks",
"hours": "2 hrs/week"
},
{
"college": "Nankai University",
"title": "Culture and Tourism",
"description": "Discover the history of natural and cultural heritage and explore methods of promoting and conserving the World Heritage sites.",
"weeks": "6 weeks",
"hours": "4 hrs/week"
},
{
"college": "University of Leeds & Institute of Coding",
"title": "Decision Making: How to Choose the Right Problem to Solve",
"description": "Build personal problem-solving skills and learn how to make an effective plan to tackle real-life problems and decisions.",
"weeks": "2 weeks",
"hours": "2 hrs/week"
},
{
"college": "Purdue University",
"title": "Develop Your Cultural Intelligence",
"description": "Discover the importance of cultural intelligence, or 'CQ', and find out to improve your own cultural intelligence.",
"weeks": "5 weeks",
"hours": "3 hrs/week"
},
{
"college": "University of Leeds & Institute of Coding",
"title": "Essential Skills for your Career Development",
"description": "Take charge of your career development and identify the skills you need to plan and achieve your career goals. ",
"weeks": "2 weeks",
"hours": "2 hrs/week"
},
{
"college": "University of Leeds & Institute of Coding",
"title": "Evidence and Data Collection for Problem Solving",
"description": "Find out how to harness the power of data to help you make better business decisions.",
"weeks": "2 weeks",
"hours": "2 hrs/week"
},
{
"college": "The Open University & The Open University Business School",
"title": "Finance Fundamentals: Financial Planning and Budgeting",
"description": "With household budgets feeling the pinch this course shows how to bring order to your finances and make good financial decisions.",
"weeks": "4 weeks",
"hours": "3 hrs/week"
},
{
"college": "The Open University & The Open University Business School",
"title": "Finance Fundamentals: Investment Theory and Practice",
"description": "Look at the investment choices open to you, and the risks and returns of each. Start managing your financial future effectively ",
"weeks": "4 weeks",
"hours": "3 hrs/week"
},
{
"college": "The University of Glasgow",
"title": "Functional Programming in Haskell: Supercharge Your Coding",
"description": "Get an introduction to Haskell, the increasingly popular functional programming language, with this University of Glasgow course.",
"weeks": "6 weeks",
"hours": "4 hrs/week"
},
{
"college": "Darden School of Business, University of Virginia",
"title": "Fundamentals of Project Planning and Management",
"description": "Learn the basics of project planning and management so you can run effective projects at work or in daily life. \n",
"weeks": "4 weeks",
"hours": "2 hrs/week"
},
{
"college": "University of Leeds & Institute of Coding",
"title": "Get Creative with People to Solve Problems",
"description": "Have you ever had a digital problem that you didn't know how to solve? Get acquainted with the five stages of design thinking.",
"weeks": "2 weeks",
"hours": "2 hrs/week"
},
{
"college": "University of Bath",
"title": "Good Practice in Autism Education",
"description": "Autism is a highly varied condition and can be associated with exceptional academic ability through to intellectual disability. ",
"weeks": "4 weeks",
"hours": "3 hrs/week"
},
{
"college": "The University of Sheffield",
"title": "Health Technology Assessment: Choosing Which Treatments Get Funded",
"description": "Before new drugs or treatments are adopted, their effectiveness and cost must be assessed. Find out how in this online course.",
"weeks": "4 weeks",
"hours": "3 hrs/week"
},
{
"college": "University of Leeds & Institute of Coding",
"title": "How to Create Great Online Content",
"description": "Discover what makes online content a success and learn how to create engaging content that's in line with your business goals. ",
"weeks": "2 weeks",
"hours": "2 hrs/week"
},
{
"college": "The University of Sheffield",
"title": "How to Succeed at: Interviews",
"description": "This free three week course provides the tools you need to succeed at interviews and land your dream job or course place.",
"weeks": "3 weeks",
"hours": "3 hrs/week"
},
{
"college": "Humanists UK",
"title": "Humanist Lives, with Alice Roberts",
"description": "What does it mean to lead a humanist life? Meet and hear stories from humanists around the world. Presented by Alice Roberts.",
"weeks": "6 weeks",
"hours": "3 hrs/week"
},
{
"college": "University of Leeds",
"title": "Innovation Management: Winning in the Age of Disruption",
"description": "Learn how successful organisations like IBM manage innovation to disrupt markets and achieve business advantage.",
"weeks": "2 weeks",
"hours": "4 hrs/week"
},
{
"college": "National STEM Learning Centre & STEM Ambassadors",
"title": "Inspiring Young People in STEM: Resources for Activities and Promoting Diversity",
"description": "Start your volunteering with children and young people as a STEM Ambassador: discover resources, inspire, and promote diversity. ",
"weeks": "2 weeks",
"hours": "3 hrs/week"
},
{
"college": "BSAC",
"title": "Intravenous to Oral Switch: Within Outpatient Parenteral Antibiotic Therapy (IVOST)",
"description": "Are you involved in the prescribing/administration of antibiotics? Explore the benefits and barriers of IVOST and COPAT.",
"weeks": "4 weeks",
"hours": "3 hrs/week"
},
{
"college": "Deakin University & Deakin Business School",
"title": "Leading Culturally Diverse Teams in the Workplace",
"description": "Explore why cultural diversity matters in the workplace and how multicultural teams can benefit your organisation.",
"weeks": "4 weeks",
"hours": "3 hrs/week"
},
{
"college": "University of Leeds & Institute of Coding",
"title": "Learn about Current Digital Workplace Trends",
"description": "Find out how digital technology is influencing how we live and work with the Institute of Coding and the University of Leeds.",
"weeks": "2 weeks",
"hours": "2 hrs/week"
},
{
"college": "University of Leeds & Institute of Coding",
"title": "Learn to Code for the Web",
"description": "Ever wondered what's behind your favourite websites and apps? Get to grips with the basics of coding in HTML, CSS and JavaScript.",
"weeks": "2 weeks",
"hours": "2 hrs/week"
},
{
"college": "The University of Auckland",
"title": "Logical and Critical Thinking",
"description": "Improve your logical and critical thinking skills in this free online course. Identify common obstacles to effective thinking.",
"weeks": "8 weeks",
"hours": "4 hrs/week"
},
{
"college": "UCL (University College London) ",
"title": "Making Babies in the 21st Century",
"description": "Explore new reproductive technologies and discover the opportunities they provide and the profound social challenges they pose.",
"weeks": "6 weeks",
"hours": "2 hrs/week"
},
{
"college": "The Open University & The Open University Business School",
"title": "Management and Leadership: Leading a Team",
"description": "Develop a business plan and build a team with this online course from The Open University and CMI.",
"weeks": "4 weeks",
"hours": "3 hrs/week"
},
{
"college": "The Open University & The Open University Business School",
"title": "Management and Leadership: Well-being and Welfare at Work",
"description": "Learn to support the development and well-being of the people you manage with this online course from The Open University and CMI.",
"weeks": "4 weeks",
"hours": "3 hrs/week"
},
{
"college": "New York Institute of Finance",
"title": "Mergers and Acquisitions: Concepts and Theories",
"description": "Get an introduction to mergers and acquisitions with this first course in a program from the New York Institute of Finance.",
"weeks": "3 weeks",
"hours": "4 hrs/week"
},
{
"college": "New York Institute of Finance",
"title": "Mergers and Acquisitions: Free Cash Flow Modeling",
"description": "Learn how to evaluate a company’s financial performance to determine acquisition opportunities.",
"weeks": "3 weeks",
"hours": "4 hrs/week"
},
{
"college": "University of Basel & Swiss Academies of Arts and Sciences ",
"title": "Partnering for Change: Link Research to Societal Challenges",
"description": "How can we address societal challenges with research? Investigate the principles, processes, and uses of transdisciplinarity. ",
"weeks": "6 weeks",
"hours": "5 hrs/week"
},
{
"college": "University of Leeds & Institute of Coding",
"title": "Presenting Your Work with Impact",
"description": "Discover how to present information at work clearly and concisely, and learn techniques to improve your presentation skills.",
"weeks": "2 weeks",
"hours": "2 hrs/week"
},
{
"college": "Health Education England",
"title": "Safeguarding Adults: Level 3 Training",
"description": "Learn how to ensure the successful safeguarding of adults with this training course from Health Education England.",
"weeks": "3 weeks",
"hours": "1 hrs/week"
},
{
"college": "University of Padova, Mediterranean Agronomic Institute of Zaragoza, SIMRA - Social Innovation in Marginalised Rural Areas & EU (Horizon 2020 Project) ",
"title": "Social Innovation in Rural Areas",
"description": "Explore applications of social innovation in rural areas and discover best practices for managing social innovation projects.",
"weeks": "3 weeks",
"hours": "6 hrs/week"
},
{
"college": "Cancer Research UK",
"title": "Talking About Cancer: Reducing Risk, Early Detection and Mythbusting",
"description": "1 in 2 people will develop cancer in their lifetime. At Cancer Research UK we want to get people talking about cancer and health.",
"weeks": "3 weeks",
"hours": "1 hrs/week"
},
{
"college": "Raspberry Pi Foundation & National Centre for Computing Education",
"title": "Teaching Physical Computing with Raspberry Pi and Python",
"description": "Explore the exciting world of physical computing and create electronic circuits that you can control with code.",
"weeks": "3 weeks",
"hours": "2 hrs/week"
},
{
"college": "The Open University & The Open University Business School",
"title": "The Digital Economy: Finance for Business Growth",
"description": "Learn how to develop a funding strategy for your business; explore different types of finance and learn when, and how, to use them",
"weeks": "4 weeks",
"hours": "3 hrs/week"
},
{
"college": "The Open University & The Open University Business School",
"title": "The Digital Economy: Selling Through Customer Insight",
"description": "Uncover new perspectives on the role and behaviour of your customers, to enhance your sales and marketing. ",
"weeks": "4 weeks",
"hours": "3 hrs/week"
},
{
"college": "UCL (University College London) ",
"title": "The Many Faces of Dementia",
"description": "Gain a unique insight into dementia through the stories, symptoms and science behind four less common diagnoses.",
"weeks": "4 weeks",
"hours": "2 hrs/week"
},
{
"college": "BSAC",
"title": "The Role of Antifungal Stewardship",
"description": "Explore the role and benefits of antifungal stewardship on this online course for healthcare professionals.",
"weeks": "3 weeks",
"hours": "3 hrs/week"
},
{
"college": "Institut Français de la mode (IFM)",
"title": "Understanding Fashion: From Business to Culture",
"description": "From its impact on culture and society to consumer behaviour, discover the business of fashion with Institut Francais de la Mode.",
"weeks": "4 weeks",
"hours": "3 hrs/week"
},
{
"college": "University of Leeds & Institute of Coding",
"title": "Wellbeing and Resilience at Work",
"description": "Discover how to maintain resilience and adaptability, and explore the value of good health and wellbeing in the workplace.",
"weeks": "2 weeks",
"hours": "2 hrs/week"
},
{
"college": "University of Aberdeen",
"title": "What Is the Body?",
"description": "Get an introduction to the different structures and functions that make up the human body.",
"weeks": "3 weeks",
"hours": "4 hrs/week"
},
{
"college": "Coventry University",
"title": "Work-Life Balance and the Impact of Remote Working",
"description": "Supporting you to thrive at home during the coronavirus outbreak.",
"weeks": "2 weeks",
"hours": "3 hrs/week"
},
{
"college": "University of Basel",
"title": "Allergies: When the Immune System Backfires",
"description": "What do allergies reveal about our immune system's capabilities? Learn more about allergy symptoms and treatments on this course.",
"weeks": "3 weeks",
"hours": "4 hrs/week"
},
{
"college": "EIT Food, Queen's University Belfast & European Institute of Innovation and Technology (EIT)",
"title": "Animal Feed Production: Feed Quality",
"description": "Explore animal feed manufacturing, and learn the best processes and systems for optimising animal feed quality.",
"weeks": "5 weeks",
"hours": "4 hrs/week"
},
{
"college": "BSAC, Infection Control Africa Network (ICAN) & College of Medicine University of Lagos (CMUL)",
"title": "Antimicrobial Stewardship for Africa",
"description": "Improve your knowledge of the spread of antimicrobial resistance in Africa and how to reduce it.",
"weeks": "3 weeks",
"hours": "3 hrs/week"
},
{
"college": "Taipei Medical University",
"title": "Artificial Intelligence for Healthcare: Opportunities and Challenges",
"description": "The use of artificial intelligence (AI) in healthcare is increasing, explore the challenges and opportunities AI presents.",
"weeks": "4 weeks",
"hours": "1 hrs/week"
},
{
"college": "Taipei Medical University",
"title": "Become a Pharmacy Preceptor",
"description": "Learn how to become an effective pharmacy preceptor, exploring the qualities a great preceptor needs. ",
"weeks": "4 weeks",
"hours": "3 hrs/week"
},
{
"college": "University of Reading & Institute for Environmental Analytics ",
"title": "Big Data and the Environment",
"description": "From sources such as satellites, sensors and social media, how can environmental data analytics benefit business and research?",
"weeks": "3 weeks",
"hours": "3 hrs/week"
},
{
"college": "University of Michigan",
"title": "Cryptocurrency and Blockchain Technology Explained",
"description": "Will blockchain change the world? Explore blockchain technology and the cryptocurrency market with the University of Michigan.",
"weeks": "4 weeks",
"hours": "4 hrs/week"
},
{
"college": "European University Institute (EUI) & Global Governance Programme",
"title": "Cultural Heritage and the City",
"description": "Discover how cities develop their own unique cultures and explore key concepts related to cultural heritage. ",
"weeks": "3 weeks",
"hours": "4 hrs/week"
},
{
"college": "The University of Auckland",
"title": "Data to Insight: An Introduction to Data Analysis and Visualisation",
"description": "Get a hands-on introduction to data science and explore key ideas, computer skills and statistical thinking.",
"weeks": "8 weeks",
"hours": "3 hrs/week"
},
{
"college": "Amnesty International",
"title": "Defending Dignity: The Universal Declaration of Human Rights",
"description": "Explore the Universal Declaration of Human Rights and learn how it empowers you to know, claim and defend your rights.",
"weeks": "3 weeks",
"hours": "2 hrs/week"
},
{
"college": "Norwegian University of Science and Technology (NTNU)",
"title": "Digital Transformation in the Classroom",
"description": "Adapt your teaching methods to the digital world and enable digital transformation in schools with this digital learning course.",
"weeks": "3 weeks",
"hours": "4 hrs/week"
},
{
"college": "British Council & Learning Time with Timmy - British Council",
"title": "English in Early Childhood: Language Learning and Development",
"description": "Discover how very young children learn English as an additional language and how you can help them progress.",
"weeks": "6 weeks",
"hours": "2 hrs/week"
},
{
"college": "The University of Sheffield",
"title": "Exploring Play: The Importance of Play in Everyday Life",
"description": "Understanding the nature and value of play through the course of our lives, across cultures and communities. ",
"weeks": "7 weeks",
"hours": "3 hrs/week"
},
{
"college": "The University of Sheffield",
"title": "Forensic Facial Reconstruction: Finding Mr. X",
"description": "Learn about the forensic technique of facial reconstruction from the experts involved in a real crime case.",
"weeks": "2 weeks",
"hours": "2 hrs/week"
},
{
"college": "Darden School of Business, University of Virginia",
"title": "Getting Started with Agile and Design Thinking",
"description": "Get an introduction to agile product development and design thinking so you can build better digital products.",
"weeks": "4 weeks",
"hours": "4 hrs/week"
},
{
"college": "EIT InnoEnergy & The Spanish Energy Club (Enerclub)",
"title": "Go Solar PV: The Business Potential of Solar Photovoltaics",
"description": "Explore the current state and future potential of solar PV technology, and get new insights into the solar photovoltaics market.",
"weeks": "7 weeks",
"hours": "3 hrs/week"
},
{
"college": "University of Birmingham",
"title": "Good Brain, Bad Brain: Basics",
"description": "What do we know and what are we discovering about the form and function of the human brain? Find out with this online course.",
"weeks": "3 weeks",
"hours": "3 hrs/week"
},
{
"college": "University of Exeter & Eden Project",
"title": "Grand Challenges: Food for Thought",
"description": "Where does our food come from and what impact does it have on our environment?",
"weeks": "4 weeks",
"hours": "3 hrs/week"
},
{
"college": "Purdue University",
"title": "Improve Your Intercultural Competence",
"description": "\nDevelop the attitudes, skills and knowledge required to thrive in diverse workplaces. ",
"weeks": "4 weeks",
"hours": "3 hrs/week"
},
{
"college": "National STEM Learning Centre & STEM Ambassadors",
"title": "Inspiring Young People in STEM: Planning and Organising Practical Activities",
"description": "Learn how to design effective activities as a STEM Ambassador or volunteer in science, tech, engineering or maths.",
"weeks": "2 weeks",
"hours": "3 hrs/week"
},
{
"college": "Eindhoven University of Technology",
"title": "Introduction to Process Mining with ProM",
"description": "Learn how to use the free, open source process mining framework (ProM) to analyse, visualise, and improve processes based on data.",
"weeks": "4 weeks",
"hours": "3 hrs/week"
},
{
"college": "Dublin City University",
"title": "Irish 201: An Introduction to Irish Language and Culture",
"description": "Learn about the rich culture found in the Irish language while developing your spoken, reading, listening and writing skills. ",
"weeks": "4 weeks",
"hours": "4 hrs/week"
},
{
"college": "Coventry University",
"title": "Managing Mental Health and Stress",
"description": "Supporting you to thrive at home during the coronavirus outbreak.",
"weeks": "2 weeks",
"hours": "3 hrs/week"
},
{
"college": "University of Basel",
"title": "One Health: Connecting Humans, Animals and the Environment",
"description": "Become familiar with One Health, a promising concept, and the effective solutions it provides for urgent health problems.",
"weeks": "6 weeks",
"hours": "5 hrs/week"
},
{
"college": "St George's, University of London & King's College London",
"title": "Preparing for an International Health Elective: Exploring Global Health, Ethics and Safety",
"description": "Prepare for undertaking an International Health Elective, in this course developed in collaboration with King's College London",
"weeks": "3 weeks",
"hours": "2 hrs/week"
},
{
"college": "Hanken School of Economics",
"title": "Principles of Service Management",
"description": "Your customers are your key resource. Explore a service-based approach to marketing and management that can better serve them.",
"weeks": "7 weeks",
"hours": "3 hrs/week"
},
{
"college": "Eindhoven University of Technology",
"title": "Process Mining in Healthcare",
"description": "Learn how process mining can be used to turn healthcare data into valuable insights to improve patient care while reducing costs.",
"weeks": "4 weeks",
"hours": "4 hrs/week"
},
{
"college": "University of Reading",
"title": "Small and Mighty: Introduction to Microbiology",
"description": "Understand the basics of microbiology and explore the diversity of microbial life in our world.",
"weeks": "3 weeks",