-
Notifications
You must be signed in to change notification settings - Fork 0
/
coursera_courses.json
5491 lines (5491 loc) · 791 KB
/
coursera_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
[
{
"FIELD1": 0,
"courseType": "v2.ondemand",
"description": "This is the third course in the Teach English: Intermediate Grammar specialization. It will be useful to ESL teachers or those interested in learning to teach English language, but it is not an introduction to teaching course. You will learn about some specific problems students have learning intermediate grammar. You will learn why students have trouble with this tricky grammar and find out new ways to help students conquer it. You will also learn a variety of activities for teaching this content in a fun and interesting way. Finally, you will have opportunities to practice the skills you learn by creating sample assignments and recording short videos of your teaching demonstrations using a video camera, webcam, or smartphone. Learners wanting a grade will be required to submit short videos of their teaching skills.\n\nOnly learners who pay for the course will be able to take the graded quizzes or submit assignments for feedback. The free version provides access to the lectures and practice activities only.",
"id": "3Rm7wSxHEeanqw4SNWFJ8Q",
"slug": "teaching-common-grammar-mistakes",
"instructorIds": "['13484864', '15414512', '13960609']",
"specializations": "[]",
"partnerIds": "['30']",
"name": "Teaching Tips for Tricky English Grammar"
},
{
"FIELD1": 1,
"courseType": "v2.ondemand",
"description": "In this course we study the ancient, Socratic art of blowing up your beliefs as you go, to make sure they're built to last. We spend six weeks studying three Platonic dialogues - \"Euthyphro\", \"Meno\", \"Republic\" Book I - then two weeks pondering a pair of footnotes to Plato: contemporary moral theory and moral psychology. \n\nPlatonic? Socratic? Socrates was the teacher, but he said he never did. Plato was the student who put words in his teacher's mouth. You'll get a feel for it.\n\nWe have a book: the new 4th edition of \"Reason and Persuasion\", by the instructor (and his wife, Belle Waring, the translator.) It contains the Plato you need, plus introductory material and in-depth, chapter-length commentaries. (Don't worry! John Holbo knows better than to read his book to the camera. The videos cover the same material, but the presentation is different.) \n\nThe book is offered free in PDF form - the whole thing, and individual chapter slices. It is also available in print and other e-editions. See the course content for links and information.\n\nThe course is suitable for beginning students of Plato and philosophy, but is intended to offer something to more advanced students as well. We seek new, odd angles on old, basic angles. Tricky! The strategy is to make a wide-ranging, interdisciplinary approach. Lots of contemporary connections, to make the weird bits intuitive; plus plenty of ancient color, still bright after all these years. So: arguments and ideas, new possibilities, old stories, fun facts. Plus cartoons. \n\nThe results can get elaborate (some book chapters and some lesson videos run long.) But each video comes with a brief summary of its contents. The lessons progress. I put them in this order for reasons. But there's no reason you can't skip over and around to find whatever seems most interesting. There are any number of self-contained mini-courses contained in this 8-week course. You are welcome to them.\n\nPlato has meant different things to different people. He's got his own ideas, no doubt. (Also, his own Ideas.) But these have, over the centuries, been worn into crossing paths for other feet; been built up into new platforms for projecting other voices. (Plato did it to Socrates, so fair is fair.) So your learning outcome should be: arrival somewhere interesting, in your head, where you haven't been before. I wouldn't presume to dictate more exactly.",
"id": "yS8ezjDPEeW-zwq84wShFQ",
"slug": "plato-dialogues",
"instructorIds": "['268127']",
"specializations": "[]",
"partnerIds": "['47']",
"name": "Reason and Persuasion: Thinking Through Three Dialogues By Plato"
},
{
"FIELD1": 2,
"courseType": "v2.ondemand",
"description": "Whenever the word “accounting” is pronounced, it is immediately associated with the need to memorize endless boring numbers. However, it is the common financial statements that contain important information that provides inputs for valuation of investment projects. The only challenge is how to properly extract them.\n\nAccounting and finance are indeed intertwined. Sometimes people that are not experienced in the area even mix them up. But most often emphasis in accounting is on numbers. Still, the deep understanding of key accounting concepts helps reveal the interests and actions of people behind these numbers. And the human dimension of accounting adds invaluable insight in the potential of successful project implementation.\n\nThis Course discusses core ideas and concepts of both financial and managerial accounting. It by no means pretends to be comprehensive to any extent. But, being rather an accounting overview, it focuses on the issues that are most relevant and important for effective valuation of investment projects.\n\nThe learners will gain insight into the essence of accounting. They will be able to use the obtained knowledge and skills to successfully advance in their career at a financial institution, as well as in the area of financial management at non-financial businesses. To pursue a career in accounting, a more detailed study is strongly recommended.",
"id": "8TCvZb_yEee38Ap8P6cP0A",
"slug": "core-concepts-of-accounting",
"instructorIds": "['17533334']",
"specializations": "[]",
"partnerIds": "['176', '440']",
"name": "Core Concepts of Accounting – Numbers and People"
},
{
"FIELD1": 3,
"courseType": "v2.ondemand",
"description": "This course is designed to introduce students to the issues of energy in the 21st century – including food and fuels – which are inseparably linked – and will discuss energy production and utilization from the biology, engineering, economics, climate science, and social science perspectives. \n\nThis course will cover the current production and utilization of energy, as well as the consequences of this use, examining finite fossil energy reserves, how food and energy are linked, impacts on the environment and climate, and the social and economic impacts of our present energy and food production and use. After the introductory lectures, we will examine the emerging field of sustainable energy, fuel and food production, emphasizing the importance of developing energy efficient and sustainable methods of production, and how these new technologies can contribute to replacing the diminishing supplies of fossil fuels, and reduce the consequences of carbon dioxide release into the environment. This course will also cover the importance of creating a sustainable energy future for all societies including those of the developing world. Lectures will be prepared and delivered by leading UC San Diego and Scripps Institution of Oceanography faculty and industry professionals across these areas of expertise.",
"id": "5epfT7cBEeScDCIAC9REiQ",
"slug": "future-of-energy",
"instructorIds": "['5994674']",
"specializations": "[]",
"partnerIds": "['53']",
"name": "Our Energy Future"
},
{
"FIELD1": 4,
"courseType": "v2.ondemand",
"description": "This course sets out to provide an understanding of theories of learning and development and how these theories relate to educational technology. It has two components. The first is theoretical, in which we attempt to develop an overall frame of reference, locating approaches to the psychology of learning in terms of large paradigm shifts, from ‘behaviorism’ to ‘brain developmentalism’ to ‘social cognitivism’. The second component is practical, in which we will use these theoretical concepts to ‘parse’ a technology-mediated learning environment for its underlying presuppositions.",
"id": "HdedLT8sEeeQDg6xSmfOXg",
"slug": "learning-knowledge-human-development",
"instructorIds": "['3734792', '3726726']",
"specializations": "[]",
"partnerIds": "['17']",
"name": "Learning, Knowledge, and Human Development "
},
{
"FIELD1": 5,
"courseType": "v2.ondemand",
"description": "Mountains 101 is a broad and integrated overview of the mountain world. This 12-lesson course covers an interdisciplinary field of study focusing on the physical, biological, and human dimensions of mountain places in Alberta, Canada, and around the world. Specifically, we'll study the geological origins of mountains, how they’re built-up and worn-down over time; we’ll learn about their importance for biodiversity and water cycles, globally and locally; we’ll explore their cultural significance to societies around the globe, and how that relationship has evolved over time; and we’ll learn how mountains are used, how they’re protected, and how today they’re experiencing rapid change in a warming climate. \n\nAt the end of each lesson, Mountains 101 will also provide learners with some smart tricks -- Tech Tips -- to safely enjoy time in the high alpine environment: from how to pick the best footwear for hiking to making smart decisions in avalanche terrain. \n\nWe’ll be delivering your online lessons from valley bottoms to mountaintops, from museums and labs, to alpine huts and other spectacular alpine sites, and we’ll do so with the help of a whole host of experts.\n \nWe invite you to join us for this online adventure! The mountains are calling...",
"id": "PsTsfU0LEeWfzRIay-bDMQ",
"slug": "mountains-101",
"instructorIds": "['4331062', '18033641']",
"specializations": "[]",
"partnerIds": "['146']",
"name": "Mountains 101"
},
{
"FIELD1": 6,
"courseType": "v2.ondemand",
"description": "This course explores Javascript based front-end application development, and in particular the React library (Currently Ver. 16.3). This course will use JavaScript ES6 for developing React application. You will also get an introduction to the use of Reactstrap for Bootstrap 4-based responsive UI design. You will be introduced to various aspects of React components. You will learn about React router and its use in developing single-page applications. You will also learn about designing controlled forms. You will be introduced to the Flux architecture and Redux. You will explore various aspects of Redux and use it to develop React-Redux powered applications. You will then learn to use Fetch for client-server communication and the use of REST API on the server side. A quick tour through React animation support and testing rounds off the course. You must have preferably completed the previous course in the specialization on Bootstrap 4, or have a working knowledge of Bootstrap 4 to be able to navigate this course. Also a good working knowledge of JavaScript, especially ES 5 is strongly recommended.\n\nAt the end of this course you will:\n\n- Be familiar with client-side Javascript application development and the React library\n- Be able to implement single page applications in React\n- Be able to use various React features including components and forms\n- Be able to implement a functional front-end web application using React\n- Be able to use Reactstrap for designing responsive React applications\n- Be able to use Redux to design the architecture for a React-Redux application",
"id": "yG1EARC8EeiWoAqBnMlvMg",
"slug": "front-end-react",
"instructorIds": "['1017488']",
"specializations": "[]",
"partnerIds": "['35']",
"name": "Front-End Web Development with React"
},
{
"FIELD1": 7,
"courseType": "v2.ondemand",
"description": "This course teaches how to design a feedback system to control a switching converter. The equivalent circuit models derived in the previous courses are extended to model small-signal ac variations. These models are then solved, to find the important transfer functions of the converter and its regulator system. Finally, the feedback loop is modeled, analyzed, and designed to meet requirements such as output regulation, bandwidth and transient response, and rejection of disturbances.\n\nUpon completion of this course, you will be able to design and analyze the feedback systems of switching regulators.\n\nThis course assumes prior completion of courses Introduction to Power Electronics and Converter Circuits.",
"id": "kcW15H3JEeWKYwric11Hpw",
"slug": "converter-control",
"instructorIds": "['2659612']",
"specializations": "[]",
"partnerIds": "['71']",
"name": "Converter Control"
},
{
"FIELD1": 8,
"courseType": "v2.ondemand",
"description": "In this course you will learn three key website programming and design languages: HTML, CSS and JavaScript. You will create a web page using basic elements to control layout and style. Additionally, your web page will support interactivity. \n\nAt the end of the course, you will be able to:\n\n1. Define the purpose of HTML, CSS and JavaScript\n2. Make a simple web page using HTML\n3. Use CSS to control text styles and layout\n4. Use CSS libraries such as Bootstrap to create responsive layouts\n5. Use JavaScript variables and functions\n6. Manipulate web page content using JavaScript\n7. Respond to user input using JavaScript\n\nIn this course, you will complete: \n2 assignments writing HTML, CSS and JavaScript, each taking ~1 hour to complete\n4 quizzes, each taking ~20 minutes to complete\n1 programming exercise~30 minutes to complete\nmultiple practice quizzes, each taking ~5 minutes to complete\n\nParticipation in or completion of this online course will not confer academic credit for University of London programmes.",
"id": "HITLfhnoEeWjrA6seF25aw",
"slug": "website-coding",
"instructorIds": "['1960981', '1620951', '6059456']",
"specializations": "[]",
"partnerIds": "['26', '303']",
"name": "Responsive Website Basics: Code with HTML, CSS, and JavaScript "
},
{
"FIELD1": 9,
"courseType": "v2.ondemand",
"description": "Developing tomorrow's industrial infrastructure is a significant challenge. This course goes beyond the hype of consumer IoT to emphasize a much greater space for potential embedded system applications and growth: The Industrial Internet of Things (IIoT), also known as Industry 4.0. Cisco’s CEO stated: “IoT overall is a $19 Trillion market. IIoT is a significant subset including digital oilfield, advanced manufacturing, power grid automation, and smart cities”.\n\nThis is part 1 of the specialization. The primary objective of this specialization is to closely examine emerging markets, technology trends, applications and skills required by engineering students, or working engineers, exploring career opportunities in the IIoT space. The structure of the course is intentionally wide and shallow: We will cover many topics, but will not go extremely deep into any one topic area, thereby providing a broad overview of the immense landscape of IIoT. There is one exception: We will study security in some depth as this is the most important topic for all \"Internet of Things\" product development.\n\nIn this course students will learn :\n * What Industry 4.0 is and what factors have enabled the IIoT\n * Key skills to develop to be employed in the IIoT space\n * What platforms are, and also market information on Software and Services\n * What the top application areas are (examples include manufacturing and oil &gas)\n * What the top operating systems are that are used in IIoT deployments\n * About networking and wireless communication protocols used in IIoT deployments\n * About computer security; encryption techniques and secure methods for insuring data integrity and authentication",
"id": "88AS74tsEeiIKw52w5bZOA",
"slug": "industrial-iot-markets-security",
"instructorIds": "['28740057']",
"specializations": "[]",
"partnerIds": "['71']",
"name": "Industrial IoT Markets and Security"
},
{
"FIELD1": 10,
"courseType": "v2.ondemand",
"description": "Decision-makers often turn to scientists and engineers to assist them to navigate through complex environmental, health and societal challenges pervaded by systemic uncertainty, ambiguity and ethical implications. \n\nThis course prepares you to meet the requests and demands of current and future decision-makers and in this course, you will analyze ethical challenges associated with environmental dilemmas and apply different decision making tools relevant to environmental management and regulation.",
"id": "#NAME?",
"slug": "environmental-management-ethics",
"instructorIds": "['14612349', '15973390']",
"specializations": "[]",
"partnerIds": "['57']",
"name": "Environmental Management & Ethics"
},
{
"FIELD1": 11,
"courseType": "v2.ondemand",
"description": "The Foundations of Teaching for Learning programme is for anyone who is teaching, or who would like to teach, in any subject and any context - be it at school, at home or in the workplace. With dynamic lessons taught by established and respected professionals from across the Commonwealth, this eight course programme will see you develop and strengthen your skills in teaching, professionalism, assessment, and more. As you carry on through the programme, you will find yourself strengthening not only your skills, but your connection with colleagues across the globe. A professional development opportunity not to be missed. \n\nPositive relationships with students supports children's learning. Positive relationships with colleagues and school leaders helps school improvement. This course helps teachers develop strong relationships with families and colleagues.\n\nEnhance your course by joining the Commonwealth teaching community on our website, Facebook and Twitter.",
"id": "2mShqDVyEeW6RApRXdjJPw",
"slug": "teacher-relationships",
"instructorIds": "['5654261', '3678310', '3366373']",
"specializations": "[]",
"partnerIds": "['106']",
"name": "Foundations of Teaching for Learning: Developing Relationships"
},
{
"FIELD1": 12,
"courseType": "v2.ondemand",
"description": "Працюйте розумніше, а не більше\nВи зможете здобути і застосувати ваші знання та розуміння особистої та професійної обізнаності, організованості та виконання зобов’язань, а також використовувати інструменти, методи та прийоми, про які ви дізналися, для постановки цілей та пріоритетів, планування та делегування для подолання управлінських викликів та покращення продуктивності. \n\nThis course is translated by the Ukrainian mobile network operator, lifecell.",
"id": "t2hchZe2EeWjfxIrc5BW9Q",
"slug": "upravlinnya-chasom",
"instructorIds": "['9772840']",
"specializations": "[]",
"partnerIds": "['30']",
"name": "Працюйте розумніше, а не більше: управління часом для особистої та професійної продуктивності"
},
{
"FIELD1": 13,
"courseType": "v2.ondemand",
"description": "The drive for development of new and novel oral biomaterials has never been more important with many people using oral biomaterials today and seeing their benefits in restoring and improving their oral health for a more enjoyable lifestyle. The unique properties of biomaterials such as titanium (Ti), zirconia (ZrO2) and various polymeric materials have made them materials of choice in oral health: dental implants, oral and maxillofacial surgery, and even regenerative medicine. Oral biomaterials research today is an exciting and intensive multidisciplinary area that encompasses contributions from a wide range of fields from professional dentistry to biology, chemistry, physics, material science, and engineering. \n\nMaterials in Oral Health is a FREE 4-week course open to all interested learners. In the course, you will learn about the special properties and benefits of biomaterials including, titanium and titanium alloys, zirconia and other alloys, ceramics, and modern composites. You will gain insights of the practical use of these biomaterials in different aspects of dentistry and clinical implications. You will realize how contemporary dentistry is about unifying synthetic materials to living tooth and bone tissues. You will get in touch with the crucial roles of digital dentistry and learn about CAD/CAM technology in crown fabrication, 3D printing and digital orthodontics. And lastly, you will be introduced to procedures and testing methods used to test significant mechanical properties of biomaterials in the research laboratory. \n\nWe cordially invite those of you who wish to make a difference in tomorrow’s dental materials and oral health development to join us in the 4-week journey in Materials in Oral Health.\n\nYou can get recognition for completion of the course by obtaining a Course Certificate. You can refer to details on: https://learner.coursera.help/hc/en-us/articles/208280196",
"id": "wP6bopzUEeaF3g7NeAQepg",
"slug": "materials-oral-health",
"instructorIds": "['25062171', '25062639']",
"specializations": "[]",
"partnerIds": "['235']",
"name": "Materials in Oral Health"
},
{
"FIELD1": 14,
"courseType": "v2.ondemand",
"description": "The art of uncovering the insights and trends in data has been around since ancient times. The ancient Egyptians used census data to increase efficiency in tax collection and they accurately predicted the flooding of the Nile river every year. Since then, people working in data science have carved out a unique and distinct field for the work they do. This field is data science. In this course, we will meet some data science practitioners and we will get an overview of what data science is today.\n\nLIMITED TIME OFFER: Subscription is only $39 USD per month for access to graded materials and a certificate.",
"id": "r0GnHOZaEees-Q6jQMxlrg",
"slug": "what-is-datascience",
"instructorIds": "['28512151', '28511560']",
"specializations": "[]",
"partnerIds": "['348']",
"name": "What is Data Science? "
},
{
"FIELD1": 15,
"courseType": "v2.ondemand",
"description": "本課程第二部分著重在和人工智慧密不可分的機器學習。課程內容包含了機器學習基礎理論(包含 1990 年代發展的VC理論)、分類器(包含決策樹及支援向量機)、神經網路(包含深度學習)及增強式學習(包含深度增強式學習。\n 此部份技術包含最早追溯至 1950 年代直到最近 2016 年附近的最新發展。此課程從基礎理論開始,簡介了各機器學習主流技法以及從淺層學習架構演變到最近深度架構的轉換。\n\n本課程之核心目標為:\n(一)使同學對人工智慧相關的機器學習技術有基礎概念\n(二)同學能夠理解機器學習基礎理論、分類器、神經網路、增強式學習\n(三)同學能將相關技術應用到自己的問題上\n\n修課前,基礎背景知識:\n需要的先備知識:計算機概論\n建議的先備知識:資料結構與演算法",
"id": "_HYzDzDHEeiWTQ4fi9qqFg",
"slug": "ai2",
"instructorIds": "['8180013']",
"specializations": "[]",
"partnerIds": "['75']",
"name": "人工智慧:機器學習與理論基礎 (Artificial Intelligence - Learning & Theory)"
},
{
"FIELD1": 16,
"courseType": "v2.ondemand",
"description": "This course aims to introduce learners to advanced visualization techniques beyond the basic charts covered in Information Visualization: Fundamentals. These techniques are organized around data types to cover advance methods for: temporal and spatial data, networks and trees and textual data. In this module we also teach learners how to develop innovative techniques in D3.js.\n\nLearning Goals\nGoal: Analyze the design space of visualization solutions for various kinds of data visualization problems. Learn what designs are available for a given problem and what are their respective advantages and disadvantages.\n- Temporal\n- Spatial\n- Spatio-Temporal\n- Networks\n- Trees\n- Text\n\nThis is the fourth course in the Information Visualization Specialization. The course expects you to have some basic knowledge of programming as well as some basic visualization skills (as those introduced in the first course of the specialization).",
"id": "OULAMCiEEei4ABKHM5bfFA",
"slug": "information-visualization-advanced-techniques",
"instructorIds": "['28471750', '31680372']",
"specializations": "[]",
"partnerIds": "['309']",
"name": "Information Visualization: Advanced Techniques"
},
{
"FIELD1": 17,
"courseType": "v2.ondemand",
"description": "Este curso te ofrece desarrollar un modelo de negocio estructurado, con base en la metodología del Canvas Business Model, para crear una propuesta de valor orientada a los diferentes segmentos identificados como mercado objetivo de tu negocio o empresa. \n\nAl terminar el curso, tendrás un modelo de negocio diferenciado, con una propuesta de valor clara a través de prototipos validados con los consumidores. Vas a estructurar un modelo de negocio que te permitirá obtener un negocio diferenciado, viable y efectivo. \n\nObjetivos de aprendizaje:\n\n1. Construir el modelo de negocio en torno a la propuesta de valor. El modelo de negocio es el sistema de actividades que se debe constituir para lograr que el proyecto emprendedor funcione en la práctica. Sus componentes incluyen la definición del segmento de mercado en el que se va a operar; los canales a través de los cuales se va a llegar al consumidor; las actividades, recursos y aliados del proyecto; y las fuentes de ingresos y costos. \n\n2. Identificar los actores críticos que deben tomar decisiones favorables para el proyecto en cada uno de los componentes del modelo de negocio. Establecer una propuesta de valor diferenciada para cada uno de esos actores.\n\n3. Validar el modelo de negocio en contacto directo con los consumidores y con los diferentes actores, cuyas decisiones son importantes para el proyecto.\n\nTen en cuenta que este curso ha sido diseñado como el segundo de cuatro cursos que hacen parte del programa especializado en “Desarrollo de nuevas empresas” (https://www.coursera.org/specializations/desarrollo-nuevas-empresas), cuyo objetivo es brindarte una ruta práctica y accesible para crear y consolidar tu propia empresa, partiendo del análisis de tus ideas, de tus propias habilidades y de las oportunidades que te ofrece tu entorno inmediato. El primer curso del programa se llama \"¿Cómo convertir mi idea en empresa?\" (https://www.coursera.org/learn/idea-empresa/home/welcome), te recomendamos que te inscribas y participes en él si no lo has hecho.\n\nPuedes tomar todos los cursos del programa por separado o sólo uno de ellos, sin embargo te recomendamos que te inscribas y participes en los cuatro, ojalá en el orden que te proponemos, de manera que llegues al último curso denominado \"Mi nueva empresa: los siguientes pasos\" preparado para aplicar los conocimientos adquiridos en los cursos anteriores y lleves tu emprendimiento o negocio a la realidad.",
"id": "wNpXSI7-EeW93wo8Ha4kow",
"slug": "modelo-negocio",
"instructorIds": "['3252576', '3239255']",
"specializations": "[]",
"partnerIds": "['273']",
"name": "¿Cómo construir mi modelo de negocio?"
},
{
"FIELD1": 18,
"courseType": "v2.ondemand",
"description": "剪辑台前,剪辑师就像厨师对待食材一样,摆弄着拍摄现场记录下来的影像片段,用影像和声音去捕捉线索和瞬间,讲述一个故事,同时赋予故事以力量、以情感。怎样平衡剪辑給画面带来的跳跃?当有几条情节线索相互穿插时,又应使用哪些剪辑手法?剪辑过程和编剧的过程一样,以叙事和抒情为最高准则,同时不断突破陈规,创造专属于自己的独特风格。本课程将带领学习者从剪辑开始,认识镜头,认识剪辑的语法,揭开微电影创作的神秘面纱。",
"id": "rajsT7UJEeWl_hJObLDVwQ",
"slug": "jian-ji",
"instructorIds": "['8054217']",
"specializations": "[]",
"partnerIds": "['188']",
"name": "剪辑:像编剧一样剪辑"
},
{
"FIELD1": 19,
"courseType": "v2.ondemand",
"description": "In this comprehensive overview of annual giving programs, you’ll gain an introduction to the basic terminology and concepts of annual giving as well as the various solicitation channels and donor types. Learn how to write a direct mail appeal, craft an impactful email appeal, and develop a script for phone solicitation. You’ll learn how to build a leadership annual giving portfolio and maximize the impact of memberships and events in annual campaigns. You’ll complete the course with the knowledge and skills to build and implement a multi-channel solicitation strategy that achieves the goals of an annual campaign.",
"id": "2RSojHtiEea8UwqBOmLqOQ",
"slug": "annual-campaigns",
"instructorIds": "['29777341']",
"specializations": "[]",
"partnerIds": "['83']",
"name": "Annual Campaigns: Building a Case for Support"
},
{
"FIELD1": 20,
"courseType": "v2.ondemand",
"description": "Kidney transplantation is a major advance of modern medicine which provides high-quality of life for patients with end-stage renal disease. What used to be an experimental, risky, and very limited treatment option more than 50 years ago is now routinely performed in many countries worldwide. The number of renal transplants is expected to rise sharply in the next decade since the proportion of patients with end stage renal disease is increasing. \n\nAre you interested in clinical kidney, pancreas and islet transplantation? If you are a (bio) medical student or a health care professional who works in the (pre) clinical transplant field this might be the course for you. This course is also for anyone interested in the research and knowledge on clinical transplantation. The course will be taught by a multidisciplinary team of transplant professionals and will give you the state of the art updates. \n\nIt is divided in 4 modules: \n1) Before the transplant \n2) The surgical procedures and the challenged patient, including the patient with diabetes \n3) Early challenges \n4) Late challenges after transplantation. \n\nThe offered modules will include lectures, interactive patient cases, 3D movies, interviews with well-known experts and with patients and a donor, a serious game to increase knowledge of the field and of course an active forum. Become an expert and join us!\n\nThe course is endorsed by The European Society of Organ Transplantation (ESOT), The International Society of Nephrology (ISN) and The Transplantation Society (TTS).\n\nThis MOOC has been accredited for Continuing Medical Education (CME). Health care professionals who works in the (pre) clinical transplant field, other health care professionals and general practitioners can obtain CME credit at 'LUMC-Boerhaave CME' upon passing the course. For more information we like to refer to the \"Additional introduction for obtaining CME credit\" module in week 1 of the course \n\nFor another interesting course on organ donation and transplantation, see Organ Donation: From Death to Life from Cape Town University https://www.coursera.org/learn/organ-donation",
"id": "nUm5Ry-iEeWUWxIOAnoaFQ",
"slug": "clinical-kidney-transplantation",
"instructorIds": "['8586225', '10430080', '14732317', '14411190', '16127375', '14409425', '14575959', '15263864', '14427399', '14411004', '14463568', '14426465', '15665608']",
"specializations": "[]",
"partnerIds": "['25', '328']",
"name": "Clinical Kidney, Pancreas and Islet Transplantation"
},
{
"FIELD1": 21,
"courseType": "v2.ondemand",
"description": "Ces quelques leçons de mécanique lagrangienne font partie d'un cours de formation de base en mécanique Newtonienne présenté sous la forme d'un MOOC en quatre parties : \n\n1. Lois de Newton\nhttps://www.coursera.org/learn/mecanique-newton\n\n2. Mécanique du point matériel\nhttps://www.coursera.org/learn/mecanique-point-materiel\n\n3. Mécanique du Solide Indéformable\nhttps://www.coursera.org/learn/mecanique-solide\n\n4. Mécanique Lagrangienne\n\nLe formalisme de Lagrange permet une résolution efficace de problèmes complexes de mécanique. Il permet aussi d'apporter un éclairage plus fondamental sur les lois de conservation (théorème de Noether). A titre d'illustration de la méthode de Lagrange, on traitera le problème très important des oscillateurs harmoniques couplés, exprimé comme un problème de valeurs propres et de vecteurs propres. On termine avec un formalisme permettant d'analyser les résonances paramétriques, notion illustrée par l'expérience montrant la stabilité d'un pendule inversé forcé.",
"id": "5Ek-BHjkEeWfrQ7ngHMGEQ",
"slug": "mecanique-lagrangienne",
"instructorIds": "['2489806']",
"specializations": "[]",
"partnerIds": "['16']",
"name": "Mécanique Lagrangienne"
},
{
"FIELD1": 22,
"courseType": "v2.ondemand",
"description": "What you’ll achieve:\n\nIn this project-centered course*, you’ll design, build, and publish a basic website that incorporates text, sound, images, hyperlinks, plug-ins, and social media interactivity. We’ll provide you with step-by-step instructions, exercises, tips, and tools that enable you to set up a domain name, create an attractive layout for your pages, organize your content properly, ensure that your site functions well across different operating systems and on mobile devices, keep your site safe, and finally, let people know your site is online. We’ll even show you how to track your visitors. Throughout the course, you'll engage in collaboration and discussion with other learners through course forums and peer review.\n\nOnce you complete your first website project using Wordpress, you can move on to our optional, extended module that covers more advanced techniques such as using a simple text editor, coding in HTML, CSS, and Javascript, and more.\n\nWhat you’ll need to get started:\n\nThis project-centered course is designed for learners who have little or no prior experience developing a web site. You will need a computer with a stable Internet connection. We’ll use Wordpress to get you started, provide lots of downloadable examples, and guide you through the process of giving and receiving constructive peer-to-peer feedback.\n\n*About Project-Centered Courses: Project-centered courses are designed to help you complete a personally meaningful real-world project, with your instructor and a community of learners with similar goals providing guidance and suggestions along the way. By actively applying new concepts as you learn, you’ll master the course content more efficiently; you’ll also get a head start on using the skills you gain to make positive changes in your life and career. When you complete the course, you’ll have a finished project that you’ll be proud to use and share.",
"id": "jA4AZLlTEeWfYA612mWHZw",
"slug": "how-to-create-a-website",
"instructorIds": "['3788568', '17933621']",
"specializations": "[]",
"partnerIds": "['117']",
"name": "How To Create a Website in a Weekend! (Project-Centered Course)"
},
{
"FIELD1": 23,
"courseType": "v2.ondemand",
"description": "International Law in Action explains the functions of each international court and tribunal present in The Hague, and it looks at how these institutions address contemporary problems. On the basis of selected cases, and through interviews with judges and lawyers, you will explore the role of these courts and tribunals and their potential to contribute to global justice. \n\nThe first module of the course will investigate how judicial settlement is different from other more political forms of dispute settlement, such as negotiation and mediation. It offers a brief historical overview and introduces the judicial and arbitral bodies based in The Hague. In the remaining modules you will learn about the functions of these courts and tribunals, and some of the challenges and prospects that they face. Three cross-cutting themes tie together all of these modules: (i) The interaction between law and politics; (ii) The continuing role of State consent; and (iii) The ability of international courts and tribunals to protect the public interest and global values.\n\nThis course offers you an opportunity to gain a better insight into the functions and features of the courts and tribunals present in The Hague. You will gain a familiarity with each court or tribunal. You will develop realistic expectations of their capacity to address contemporary problems and an awareness of their limitations. You will also be able to discuss some of their most prominent cases. \n\nIf you would like to have a better understanding of international law in action in The Hague, this is definitely the course for you!\n\nThis course is free to join and to participate in. There is the possibility to get a verified certificate for the course, which is a paid option. If you want a certificate, but are unable to pay for it, you can request financial aid via Coursera",
"id": "prHAajqwEeWXuQopUhAqaw",
"slug": "international-law-in-action",
"instructorIds": "['6899486', '9045848', '11450454']",
"specializations": "[]",
"partnerIds": "['25']",
"name": "International Law in Action: A Guide to the International Courts and Tribunals in The Hague"
},
{
"FIELD1": 24,
"courseType": "v2.ondemand",
"description": "Let’s keep making history together - over and over!\n\nIn 2013 and 2014, over 200,000 people from more than 190 countries came together in this MOOC to explore creativity, innovation, and change.\n\nWhat did we DO?\nWe discovered creative uniqueness through Creative Diversity.\nWe used Intelligent Fast Failure to build innovative skills.\nWe applied CENTER principles to drive personal change.\nAnd we implemented value creation skills to initiate lasting change.\n\nThat was CIC 1.0 and CIC 2.0, and it was a BLAST!\n\nNow we’re back - and even better than before - with some new faces and fresh ideas to help you develop your creative potential, so you can enhance and transform your business, your community, and your personal life.\nThis is CIC On-demand … we’re ready to ROCK … AND we are always open!\n\nRecommended Readings\nInnovate or Die - Jack Matson: http://amzn.to/14Wed0V\nCENTER - Darrell Velegol: http://amzn.to/17rLzXJ",
"id": "c8dPVxUQEeWpKw4zIcjkHw",
"slug": "creativity-innovation",
"instructorIds": "['2631338', '2644910', '5573781', '4347153', '4477707', '7397048']",
"specializations": "[]",
"partnerIds": "['51']",
"name": "Creativity, Innovation, and Change"
},
{
"FIELD1": 25,
"courseType": "v2.ondemand",
"description": "Курс посвящён изучению языка программирования Swift. Swift является основным языком разработки приложений под такие операционные системы, как iOS, macOS, watchOS и tvOS.\n\nВо время обучения вы познакомитесь как с азами разработки — переменными, классами, циклами, протоколами, так и с более сложными темами — дженериками, замыканиями и ассоциированными типами. Мы сконцентрируемся на особенностях Swift и тех парадигмах, которые он предлагает для написания производительного, красивого и понятного кода.",
"id": "IME8Drl7Eeet3RK-_YoEFA",
"slug": "ios-razrabotka-na-swift",
"instructorIds": "['1628363', '28355252', '350464']",
"specializations": "[]",
"partnerIds": "['176', '493', '515']",
"name": "Введение в iOS-разработку"
},
{
"FIELD1": 26,
"courseType": "v2.ondemand",
"description": "How are international power relations changing and how can global peace and stability be maintained? This course familiarizes you with some main theories of international relations, shows how the global order is gradually changing and discusses how selected international and regional organizations contribute to the maintenance of global peace and security. You learn what research findings tell us in terms of the capacity of international organizations and actors to help prevent or stop violent conflict, what tools are used to negotiate agreements and how foundations for sustainable peace are best created. We will also focus on the role of the European Union in terms of diplomacy and efforts to prevent conflict, the North Atlantic Treaty Organization and the contribution of organizations such as the African Union to the prevention of conflict and war. We will study the United Nations Security Council and see in which ways its membership could be adapted to more accurately reflect the power relations of the current global order. Through quizzes and exercises testing your knowledge of these subjects, you will understand crucial concepts and get insights into how the academic study of international relations and international organization contributes to the search for global stability and peace in practice.",
"id": "vwcoxOyuEeWLaBLI8fdMlw",
"slug": "changing-global-order",
"instructorIds": "['5698953']",
"specializations": "[]",
"partnerIds": "['25']",
"name": "The Changing Global Order"
},
{
"FIELD1": 27,
"courseType": "v2.ondemand",
"description": "В качестве базовой экономической дисциплины макроэкономика создает фундамент для изучения других дисциплин, поэтому курс ставит целью дать знания в области общего понимания идеи экономического равновесия, основных экономических категорий и терминов. Изучение дисциплины должно обеспечить понимание того, как функционирует национальное хозяйство, какое место занимает фирма в общем макроэкономическом окружении, каковы основные методы регулирования со стороны государства.",
"id": "QXo5IEiBEei6DRKAF22yIg",
"slug": "makroekonomika",
"instructorIds": "['36010574']",
"specializations": "[]",
"partnerIds": "['312']",
"name": "Макроэкономика (вводный курс)"
},
{
"FIELD1": 28,
"courseType": "v2.ondemand",
"description": "《真格北大创业课》是真格基金与北京大学国家发展研究院首次联合开发的中文“慕课”(MOOC, Massive Open Online Course,大型公开在线课程)。课程以创业为主题,共分为三个部分:创业前的准备工作,创业中的要点,以及融资、众筹的技巧等。此课程的目的是让所有有创业意愿的或者刚刚起步的创业者更好地了解现在中国创业行业的氛围,以及创业初期不得不知的干货。每节课都凝结了真格基金业内专家和北京大学资深教授的丰富知识,也包括多位成功创业者的实践经验。完成本课程之时,你将能够为自己绝妙的创意找到切实可行的商业模式,组建能力出色行动高效的团队,撰写专业具体可执行的策划书。在课程的最后,我们希望所有的学员可以完成一份完整的商业计划书,把自己的创业想法有效地表达出来。成功完成慕课的学生会得到由Coursera提供的真格基金与北京大学联合认证的付费认证书,并且其商业计划书会得到真格基金的认真考虑。\n\n课程特点:\n•\t真格基金与北京大学国家发展研究院联合开发的首部中文“慕课”\n•\t徐小平、王强领衔,多位来自国内知名机构的专家和成功创业公司的创始人亲授\n•\t北京大学国家发展研究院BiMBA商学院张黎院长、杨壮院长对创业者倾力指导\n\n•\t专注于创业的在线课程\n•\t注重实践,最鲜活的案例教学\n•\t充分利用碎片化时间学习,每节课15分钟以内,每周仅需1-2个小时学习时间\n•\t无需相关教育或工作背景,对所有人开放\n \n参与本课程,您将收获:\n•\t12位知名公益专家亲自设计的教学内容、资料\n•\t加入讨论区,与业内专家、资深教授和同行互动的机会\n•\t对中国创业大环境的进一步了解\n•\t为自己绝妙的创意找到切实可行的商业模式\n\n•\t组建能力出色行动高效的团队\n•\t撰写专业具体可执行的策划书\n•\t您在课程结束时提交的商业计划书将得到真格基金的认真考虑\n\n除此之外,完成课程的同学可以获得由课程平台提供方Coursera颁发的付费认证证书(电子版)。获得认证证书要求同学们总体得分超过80%,并需向Coursera支付$29美金的费用。您可以先免费注册课程,开始学习课程后再选择支付证书费用。",
"id": "H7QOTaItEeWm9xJA1YXcWQ",
"slug": "zhenge-beida-zaixian-chuangye",
"instructorIds": "['16718408', '16882127', '16718433', '16882131']",
"specializations": "[]",
"partnerIds": "['163', '340']",
"name": "真格—北大在线创业课堂"
},
{
"FIELD1": 29,
"courseType": "v2.ondemand",
"description": "人是否會如同理論經濟學的預測進行決策?這門課將透過每週的課程影片以及課後作業帶你了解實驗經濟學的基本概念。每週將會有習題練習以及指定閱讀的期刊論文。你將會參與一些線上的實驗、報告論文並且互評其他同學的報告。\n\n❖ 課程介紹(About the course)\n\n這是一門進階的經濟學課程,課程目標為介紹實驗經濟學的基本概念,並且讓學生們能開始在這個領域從事自己的相關研究。\n\n詳細課程目標如下:\n\n1. 實驗經濟學的介紹: 在上完這堂課之後,學生應能列舉經濟學各個領域的數個知名實驗,並且解釋實驗結果如何驗證或否證經濟理論及其他實地資料。\n\n2. 評論近期相關領域研究:上完這堂課之後,學生應能閱讀並評論實驗經濟學相關的期刊論文。在課堂中,學生將會閱讀指定的期刊論文,並且(在影片中)親自上台報告一篇論文。\n\n\n\n❖ 授課形式(Course format)\n\n1. 本堂課將以影片的形式為主,搭配課後作業的形式來進行。\n\n每個同學將閱讀一篇實驗經濟學論文,並錄影成兩段各 10 分鐘的介紹影片並後上傳至 Coursera(或上傳到 Youku,再複製連結到作業上傳區)。第一段期中報告影片請同學介紹該論文所描述的實驗設計,第二段,也就是期末報告影片則介紹實驗結果。此外每位同學至少需觀看其他兩位同學的呈現內容,並給予評論。\n\n2. 這堂課將簡單地運用以下賽局(博弈)概念:\n\n奈許均衡 / 纳什均衡(Nash Equilibrium)\n混合策略均衡(Mixed Strategy Equilibrium)\n子賽局完美均衡 / 子博弈精練纳什均衡(SPNE)\n共識 / 共同知識(Common Knowledge)\n信念(Belief)",
"id": "ceSIMmPeEeWXRApPoSsREw",
"slug": "shiyan-jingji-xue",
"instructorIds": "['8020813']",
"specializations": "[]",
"partnerIds": "['75']",
"name": "實驗經濟學 (Experimental Economics: Behavioral Game Theory)"
},
{
"FIELD1": 30,
"courseType": "v2.ondemand",
"description": "If you really care about the big questions in the economies and societies of the 21st century, such as distributive justice - namely, inequality of income or wealth, and its correlation with economic growth - this course is meant for you. The knowledge you will gain can truly change your outlook on our world.\n\n\"Economic Growth and Distributive Justice - Maximizing Social Wellbeing\" is the second part of a two part course and it includes the following five lectures: \n(1) The excess burden of taxation\n(2) Tax incidence: who bears the economic burden of tax?\n(3) Progressivity: definition and ways to achieve\n(4) Low Income, Low Ability and the Optimal Income Tax Model\n(5) Designing the Tax and Transfer System that Maximizes Social Wellbeing\nIf you haven't done that already, we strongly recommend that you register for the first part of the course: \"Economic Growth and Distributive Justice - the Role of the State\". Taking both parts of the course would enable you to obtain a fuller and more comprehensive knowledge about Economic Growth and Distributed Justice.\n\nThe course is founded upon the elemental idea that the role of the state is to maximize the well-being - or simply the happiness - of its residents. In 9 fascinating, edifying lessons, using only simple words and decoding professional terminologies that sometimes baffle the intelligent layman, the course expounds many truths – both intuitive and unintuitive. Often using examples from the US and Europe, it does not however focus on policies in any particular region of the world, and is directly applicable to all countries around the globe.\n\nThe course touches upon the essence of important concepts like efficiency and equity, inequality and poverty, gross domestic product, tax evasion and tax planning; it presents the work of Nobel Laureate James Mirrlees and his followers - promoting a coherent system that integrates tax and government expenditures to maximize social welfare; and illuminates a range of high-profile issues from their economic angle:\n• Climate change: the atmosphere and oceans as public goods, and how smart (Pigovian) taxation can be used to combat the rapidly increasing threats to our planet;\n• Technology as the engine of economic growth;\n• Taxing the rich: How can we mitigate the growing inequality problem? Should we impose a global tax on capital?\n\nThe curriculum includes interviews with major figures in the fields of law and of economics: Harvard's Elhanan Helpman, Dan Shaviro from NYU and Richard Epstein from the University of Chicago and NYU.\n\nAfter successfully completing this course, you can expect to be able to:\n• better understand economic issues presented in the media\n• form an informed opinion on the strengths and weaknesses of presented social economic policies\n• define and measure inequality and poverty\n• define the connection between inequality (income, wealth) and economic growth\n• explain the foundations of economic growth\n• design a tax and transfer system to maximize the happiness of individuals\n\nAll these will allow you to better understand the policies being developed around you, and to play a larger, more informed role in their development, as a conscientious citizen.\n\n\nIn order to receive academic credit for this course you must successfully pass the academic exam on campus. For information on how to register for the academic exam – https://tauonline.tau.ac.il/registration\n\nAdditionally, you can apply to certain degrees using the grades you received on the courses. Read more on this here – \nhttps://go.tau.ac.il/b.a/mooc-acceptance\n\nTeachers interested in teaching this course in their class rooms are invited to explore our Academic High school program here – https://tauonline.tau.ac.il/online-highschool\n\nThis course is a direct extension of the first part \"Economic Growth and Distributive Justice Part I -The Role of the State\", so if you have not yet taken it, we highly recommend you start your learning from there (https://www.coursera.org/learn/economic-growth-part-1/home/welcome).",
"id": "DJfupMVPEeWLqBIulHpzDw",
"slug": "economic-growth-part-2",
"instructorIds": "['4065570']",
"specializations": "[]",
"partnerIds": "['110']",
"name": "Economic Growth and Distributive Justice Part II - Maximize Social Wellbeing"
},
{
"FIELD1": 31,
"courseType": "v2.ondemand",
"description": "This course extends object-oriented analysis and design by incorporating design patterns to create interactive applications. Through a survey of established design patterns, you will gain a foundation for more complex software applications. Finally, you will identify problematic software designs by referencing a catalog of code smells.\n\nYou will be challenged in the Capstone Project to redesign an existing Java-based Android application to implement a combination of design patterns. You will also critique a given Java codebase for code smells.\n\nAfter completing this course, you will be able to: \n• Demonstrate how to use design patterns to address user interface design issues.\t\n• Identify the most suitable design pattern to address a given application design problem.\t\n• Apply design principles (e.g., open-closed, dependency inversion, least knowledge).\t\n• Critique code by identifying and refactoring anti-patterns.\n• Apply the model-view-controller architectural pattern.",
"id": "CVJg1EYkEeejjw678ALX-g",
"slug": "design-patterns",
"instructorIds": "['14283726']",
"specializations": "[]",
"partnerIds": "['146']",
"name": "Design Patterns"
},
{
"FIELD1": 32,
"courseType": "v2.ondemand",
"description": "Bem vindo ao terceiro curso de desenvolvimento de aplicativos para iPhone e iPad.\nQuer fazer mais do que um simples aplicativo? Colocar fotos, videos e músicas em seus aplicativos? Ou quem sabe colocar mapa ou usar o mais novo relógio da Apple (Apple Watch) junto com o seu aplicativo de iPhone? \nSe você respondeu \"sim\" para alguma dessas perguntas ou se deseja aprender os passos para publicar o seu próprio aplicativo, esse é o curso tem as respostas para você!\n\nNeste curso você vai descobrir como colocar diversas funcionalidades no seu aplicativo iPhone ou iPad: colocar photos, músicas, videos, usar mapa, permitir que o aplicativo faça posts no facebook ou twitter e também como fazer um aplicativo do iPhone que conecte com o AppleWatch! Além de tudo, você irá ver passo a passo como publicar e monetizar seu aplicativo uma vez que ele estiver publicado na App Store.\n\nEste curso é composto por várias videoaulas passo a passo, para você que tem pouca experiência com programação, ou já é um programador experiente mas não conhece o Swift ou nunca fez um aplicativo iOS, acompanhar as aulas e evoluir no seu próprio ritmo.\n\nConcluindo esse curso, você será capaz de desenvolver um aplicativo iPhone com funcionalidades avançadas, criar aplicativos para Apple Watch, e também saberá como publicá-lo na App Store!\n\nO que você está esperando? Junte-se a milhares de outros usuários e publique o seu próprio aplicativo!",
"id": "cm6wNxqEEeWwrBKfKrqlSQ",
"slug": "ios-avancado",
"instructorIds": "['13190619', '13230757']",
"specializations": "[]",
"partnerIds": "['208']",
"name": "Como aprimorar e monetizar seu aplicativo para iOS e Apple Watch"
},
{
"FIELD1": 33,
"courseType": "v2.ondemand",
"description": "The purpose of this course is to summarize new directions in Chinese history and social science produced by the creation and analysis of big historical datasets based on newly opened Chinese archival holdings, and to organize this knowledge in a framework that encourages learning about China in comparative perspective.\n\nOur course demonstrates how a new scholarship of discovery is redefining what is singular about modern China and modern Chinese history. Current understandings of human history and social theory are based largely on Western experience or on non-Western experience seen through a Western lens. This course offers alternative perspectives derived from Chinese experience over the last three centuries. We present specific case studies of this new scholarship of discovery divided into two stand-alone parts, which means that students can take any part without prior or subsequent attendance of the other part.\n\nPart 1 (https://www.coursera.org/learn/understanding-china-history-part-1) focuses on comparative inequality and opportunity and addresses two related questions ‘Who rises to the top?’ and ‘Who gets what?’. \n\nPart 2 (this course) turns to an arguably even more important question ‘Who are we?’ as seen through the framework of comparative population behavior - mortality, marriage, and reproduction – and their interaction with economic conditions and human values. We do so because mortality and reproduction are fundamental and universal, because they differ historically just as radically between China and the West as patterns of inequality and opportunity, and because these differences demonstrate the mutability of human behavior and values.\n\nCourse Overview video: https://youtu.be/dzUPRyJ4ETk",
"id": "CPLPuDKiEeaGtRI0HQleow",
"slug": "understanding-china-history-part-2",
"instructorIds": "['1465513']",
"specializations": "[]",
"partnerIds": "['35']",
"name": "Understanding China, 1700-2000: A Data Analytic Approach, Part 2"
},
{
"FIELD1": 34,
"courseType": "v2.ondemand",
"description": "In this course, you will learn how to use strategic marketing and personal branding techniques for designing, enhancing, and promoting your professional image. Acting as \"your own Chief Executive Officer\" (P. Drucker), you will learn how to use relationship and network marketing and impression management to showcase your skills to prospective employers, colleagues, supervisors, and other interested parties. This course will help you to:\n\n- Recognize the importance of marketing orientation and career brand building for your career development; use marketing communication strategies for your self-marketing;\n\n- Implement strategic marketing planning for your career development and engage in creating your own strategic self-marketing plan;\n\n- Devise strategies for managing your professional reputation; begin creating your personal brand, and plan steps for strategic personal branding;\n\n- Create personal branding statements, and integrate social networking into your career branding;\n\n- Refine your self-management information system to systematically collect and analyze self-marketing and personal branding related data, select appropriate tools and apply them for a thorough, accurate, evidence-based and data driven self-assessment of your self-marketing and personal branding skills;\n\n- Develop and implement an effective instrument for displaying your artifacts and monitoring your marketing communications strategies (\"The Showcaser\") and a realistic performance metric for evaluating your career brand building activities (\"The Career Brand Equity Builder\").",
"id": "DPSL2G03EeWyAQ6K5KeLkw",
"slug": "self-marketing",
"instructorIds": "['7581768', '7850590', '7824266', '9026100', '9775195']",
"specializations": "[]",
"partnerIds": "['117']",
"name": "Strategic Self-Marketing and Personal Branding"
},
{
"FIELD1": 35,
"courseType": "v2.ondemand",
"description": "Курс посвящен изучению макроэкономических вопросов, таких как долгосрочный рост, циклические колебания экономики и стабилизационная политика государства.\n\nЦелью курса является знакомство слушателей с основными понятиями макроэкономики, с базовыми моделями и принципами, которые используются при анализе текущего состояния экономики той или иной страны, что позволит самостоятельно ориентироваться в происходящих процессах и явлениях, а также проводить оценку эффективности и необходимости проводимой государством макроэкономической политики.\n\nДанный курс покрывает на базовом уровне все основные темы макроэкономики. Примерно две трети курса посвящены анализу общего равновесия на рынках труда, заемных средств, финансовых, денежных, товарных рынках, а также международных потоков капитала. Изучается долгосрочный экономический рост, идущий за счет накопления капитальных мощностей и технического прогресса. Вторая часть курса посвящена изучению природы краткосрочных колебаний вокруг долгосрочной траектории роста, таким как финансовый кризис и мировая рецессия 2008-2009 годов. Обсуждаются причины подобных спадов, а также оптимальная стабилизационная политика государства, призванная либо предотвращать подобные катаклизмы, либо сглаживать последствия от них.\n\nДля успешного прохождения курса желательно (но не обязательно) иметь базовые знания по микроэкономике.",
"id": "1npjqJPKEeWF6gpQJiw6hQ",
"slug": "makrojekonomika",
"instructorIds": "['5193603']",
"specializations": "[]",
"partnerIds": "['160']",
"name": "Макроэкономика (Macroeconomics)"
},
{
"FIELD1": 36,
"courseType": "v2.ondemand",
"description": "Much of the world's data resides in databases. SQL (or Structured Query Language) is a powerful language which is used for communicating with and extracting data from databases. A working knowledge of databases and SQL is a must if you want to become a data scientist.\n\nThe purpose of this course is to introduce relational database concepts and help you learn and apply foundational knowledge of the SQL language. It is also intended to get you started with performing SQL access in a data science environment. \n\nThe emphasis in this course is on hands-on and practical learning . As such, you will work with real databases, real data science tools, and real-world datasets. You will create a database instance in the cloud. Through a series of hands-on labs you will practice building and running SQL queries. You will also learn how to access databases from Jupyter notebooks using SQL and Python.\n\nNo prior knowledge of databases, SQL, Python, or programming is required.\n\nAnyone can audit this course at no-charge. If you choose to take this course and earn the Coursera course certificate, you can also earn an IBM digital badge upon successful completion of the course.\n\nLIMITED TIME OFFER: Subscription is only $39 USD per month for access to graded materials and a certificate.",
"id": "GDQMSxDWEeitFhJL4G-A_g",
"slug": "sql-data-science",
"instructorIds": "['28513748']",
"specializations": "[]",
"partnerIds": "['348']",
"name": "Databases and SQL for Data Science"
},
{
"FIELD1": 37,
"courseType": "v2.ondemand",
"description": "Large-scale biology projects such as the sequencing of the human genome and gene expression surveys using RNA-seq, microarrays and other technologies have created a wealth of data for biologists. However, the challenge facing scientists is analyzing and even accessing these data to extract useful information pertaining to the system being studied. This course focuses on employing existing bioinformatic resources – mainly web-based programs and databases – to access the wealth of data to answer questions relevant to the average biologist, and is highly hands-on. \n\nTopics covered include multiple sequence alignments, phylogenetics, gene expression data analysis, and protein interaction networks, in two separate parts. \n\nThe first part, Bioinformatic Methods I (this one), deals with databases, Blast, multiple sequence alignments, phylogenetics, selection analysis and metagenomics. \n\nThe second part, Bioinformatic Methods II, covers motif searching, protein-protein interactions, structural bioinformatics, gene expression data analysis, and cis-element predictions. \n\nThis pair of courses is useful to any student considering graduate school in the biological sciences, as well as students considering molecular medicine. Both provide an overview of the many different bioinformatic tools that are out there. \n\nThese courses are based on one taught at the University of Toronto to upper-level undergraduates who have some understanding of basic molecular biology. If you're not familiar with this, something like https://learn.saylor.org/course/bio101 might be helpful. No programming is required for this course. \n\nBioinformatic Methods I is regularly updated, and was last updated for January 2019.",
"id": "5uXCfFu2EeSU0SIACxCMgg",
"slug": "bioinformatics-methods-1",
"instructorIds": "['3133590']",
"specializations": "[]",
"partnerIds": "['11']",
"name": "Bioinformatic Methods I"
},
{
"FIELD1": 38,
"courseType": "v2.ondemand",
"description": "No matter the professional level, we can all benefit from learning how to succeed in our careers. Whether a well-seasoned professional, a management trainee, or a service level employee, this course will help you enrich your career by honing your professional behavior and networking. \n\nThrough industry expert support and resources, this course is designed to prepare you for success in any chosen career. You will develop the habits and attitudes you need to perform effectively in the job market. You will identify a mentor to add value to your career. You will analyze your relationships and develop a practical approach for engaging your LinkedIn network. You will differentiate between networking and networking with intention. You will also discover the most effective ways to ask for help from your peer or professional group. Finally, you will evaluate the best methods of adjusting your career path at various stages of life.",
"id": "Akz7SBbAEeaXaw7Yj6TwHQ",
"slug": "career-advancement",
"instructorIds": "['16485256', '4256136', '19182476', '19182609']",
"specializations": "[]",
"partnerIds": "['123']",
"name": "Successful Career Development"
},
{
"FIELD1": 39,
"courseType": "v2.ondemand",
"description": "This course is an introduction to the basic concepts of programming languages, with a strong emphasis on functional programming. The course uses the languages ML, Racket, and Ruby as vehicles for teaching the concepts, but the real intent is to teach enough about how any language “fits together” to make you more effective programming in any language -- and in learning new ones.\n\nThis course is neither particularly theoretical nor just about programming specifics -- it will give you a framework for understanding how to use language constructs effectively and how to design correct and elegant programs. By using different languages, you will learn to think more deeply than in terms of the particular syntax of one language. The emphasis on functional programming is essential for learning how to write robust, reusable, composable, and elegant programs. Indeed, many of the most important ideas in modern languages have their roots in functional programming. Get ready to learn a fresh and beautiful way to look at software and how to have fun building it.\n\nThe course assumes some prior experience with programming, as described in more detail in the first module.\n\nThe course is divided into three Coursera courses: Part A, Part B, and Part C. As explained in more detail in the first module of Part A, the overall course is a substantial amount of challenging material, so the three-part format provides two intermediate milestones and opportunities for a pause before continuing. The three parts are designed to be completed in order and set up to motivate you to continue through to the end of Part C. The three parts are not quite equal in length: Part A is almost as substantial as Part B and Part C combined.\n\nWeek 1 of Part A has a more detailed list of topics for all three parts of the course, but it is expected that most course participants will not (yet!) know what all these topics mean.",
"id": "8om3I-4LEeSbxyIACw0OOQ",
"slug": "programming-languages",
"instructorIds": "['873260']",
"specializations": "[]",
"partnerIds": "['15']",
"name": "Programming Languages, Part A"
},
{
"FIELD1": 40,
"courseType": "v2.ondemand",
"description": "Todas las regiones del mundo se enfrentan a vulnerabilidades concretas ante el cambio climático y tienen diversas oportunidades de mitigar los efectos y aumentar su resiliencia en el siglo XXI. La comunidad internacional ha expresado su intención de actuar al respecto mediante el Acuerdo de París en la 21ª Conferencia de las Partes en la Convención Marco de las Naciones Unidas sobre el Cambio Climático. De hecho, décadas de avances en desarrollo se ven amenazadas si no se adoptan medidas contra el cambio climático, lo que significa que nos encontramos en un momento de «ahora o nunca». Este curso presenta las pruebas científicas más recientes sobre el cambio climático, explica los distintos efectos de alcance regional y difunde estrategias de acción contra el cambio climático, así como oportunidades para que pueda tomar medidas en relación con el cambio climático.\n\nAcerca del curso\n\nEste MOOC orientado a la acción le brindará la oportunidad de conocer los efectos del cambio climático a escala regional y las estrategias sectoriales específicas utilizadas para aumentar la resiliencia y avanzar hacia un futuro con bajas emisiones de carbono. Tendrá la oportunidad de estudiar a fondo estas cuestiones y adaptar su experiencia de aprendizaje a una o varias de las siguientes regiones:\n\n•\tAmérica Latina y el Caribe\n•\tÁfrica Subsahariana\n•\tOriente Medio y Norte de África\n•\tEuropa Oriental y Asia Central\n•\tAsia Oriental y el Pacífico\n•\tAsia Meridional\n\nPara ello el MOOC reúne a reconocidos científicos y responsables políticos que ofrecerán un resumen de las últimas pruebas científicas sobre el cambio climático, estrategias de desarrollo con bajas emisiones de carbono y capacidad de adaptación al cambio climático a escala regional entre sectores, así como un análisis del Acuerdo de París y otros de los resultados de la 21ª Conferencia de las Partes.\nPrograma del curso\n\nDescripción \n\nBajemos la temperatura: La ciencia climática pasa a la acción se divide en cuatro semanas. En las primeras dos semanas se presentará una visión global de las pruebas científicas del cambio climático, que irá seguida de perspectivas específicas de cada región sobre los efectos de un aumento de la temperatura en el mundo en el siglo XXI. Las últimas dos semanas se centrarán en las estrategias de acción emprendidas en distintas regiones y países para abordar el desafío climático, y sobre cómo puede actuar la población de manera individual.\n\nSemana 1: El cambio climático en el siglo XXI\n\n•\tCambios históricos y previstos observados en el sistema climático en los últimos años del siglo XXI.\n•\tEl potencial de contribución prevista determinada a nivel nacional (CPDN) presentada en la 21ª Conferencia de las Partes por parte de 187 países para inducir a la acción climática.\n•\tTendencias de los efectos del cambio climático, entre otros la pérdida de la capa de hielo del Ártico, el deshielo de los glaciares, el aumento de las olas de calor y las temperaturas extremas, la sequía y la aridez. \n•\tLas posibles respuestas de los sistemas naturales, explicando cómo el calentamiento podría dar lugar al aumento del nivel del mar, a olas de calor y temperaturas extremas, y a la acidificación de los océanos.\n\nSemana 2: Efectos de alcance sectorial y regional\n\n•\tRepercusiones en sectores clave del desarrollo —desde el calentamiento por encima de la temperatura de la época preindustrial y tendencias climáticas previstas— en cada una de las regiones del mundo.\n•\tRepercusiones sectoriales centradas en la producción agrícola, los recursos hídricos, los servicios de los ecosistemas y la vulnerabilidad de las zonas costeras para las poblaciones afectadas. \n•\tImportancia de los riesgos que pueden invertir los logros de desarrollo obtenidos con tanto esfuerzo y atrapar en la pobreza a millones de personas, ilustrando la necesidad de actuar ya con urgencia.\n\nSemana 3: La ciencia climática pasa a la acción en materia de cambio climático\n\n•\tDebates sobre regiones específicas en torno a las acciones de mitigación necesarias para reducir las emisiones a la vez que se disminuye la vulnerabilidad ante los efectos del cambio climático por medio de la adaptación y el aumento de la resiliencia al clima.\n•\tPerspectivas de expertos regionales sobre sus experiencias con estrategias y acciones propuestas en cada región para contribuir a la transición hacia una senda de desarrollo con bajas emisiones y resiliente al clima. \n\nSemana 4: Qué puede hacer\n\n•\tEfecto transformador de los cambios diarios a escala mundial\n•\tLa razón de actuar ahora, actuar juntos y actuar de un modo diferente\n•\tEjemplos y beneficios esperados de las políticas de mitigación y adaptación, teniendo en cuenta las contribuciones a las reducciones de las emisiones a escala mundial y las oportunidades de desarrollo a escala local\n\nAparte de los principales recursos y asignaciones, podrá optar por aprovechar aún más el curso participando en ejercicios divertidos opcionales, interconexiones y debates, y sumergiéndose a fondo en nuestra rica selección de recursos complementarios. Tendrá la oportunidad de estudiar a fondo estas cuestiones y adaptar su experiencia de aprendizaje a una o varias de las siguientes regiones:\n\n•\tAmérica Latina y el Caribe\n•\tÁfrica Subsahariana\n•\tOriente Medio y Norte de África\n•\tEuropa Oriental y Asia Central\n•\tAsia Oriental y el Pacífico\n•\tAsia Meridional\n\nFormación recomendada\n\nNo es necesario ningún conocimiento previo El contenido de este curso está diseñado para ser accesible para estudiantes de cualquier materia.\n\nConectar\n\nComunique y comparta recursos a través de Twitter utilizando la etiqueta #learnclimate. Registre una cuenta gratuita en http://twitter.com\n\nFormato del curso\n\nLa estructura de este MOOC es semanal, con recursos, actividades y ejercicios diseñados para que participe en ellos durante cada una de las cuatro semanas del curso. Cada semana encontrará un conjunto de material didáctico, entre otros: \n\n•\tConversaciones de vídeo interactivas de reconocidos científicos y profesionales estudiosos del clima. \n•\tRecursos: actividades interactivas principales, opcionales (inmersión a fondo) y divertidas sobre el tema de la semana.\n•\tCuestionarios para comprobar su conocimiento, reforzar el material de la lección y proporcionar respuestas inmediatas.\n•\tAsignaciones que perfeccionarán sus capacidades de análisis, reflexión y comunicación.\n•\tForos de debate y redes sociales que permiten la colaboración con personas de todo el mundo, enriqueciendo la interacción entre los participantes.\n•\tUna sesión interactiva de Google Hangouts en directo con expertos internacionales que participarán en una sesión de preguntas y respuestas sobre el cambio climático.\n•\tComo proyecto final, creará un artefacto digital.",
"id": "C1-4dMSdEeWiGxJ5iODchw",
"slug": "cambios-temperatura",
"instructorIds": "['12071633', '21301093', '13341844', '12448205']",
"specializations": "[]",
"partnerIds": "['73']",
"name": "Bajemos la temperatura: De la ciencia climática a la acción"
},
{
"FIELD1": 41,
"courseType": "v2.ondemand",
"description": "Les participants intéressés par Google Cloud Platform peuvent continuer leur apprentissage en suivant l'une de nos nouvelles spécialisations consacrées à l'infrastructure de GCP.\n\nOption 1 : La spécialisation Developing Applications with Google Cloud Platform est disponible depuis peu sur Coursera. Vous y apprendrez à créer des applications cloud natives sécurisées, évolutives et intelligentes. Rendez-vous sur https://www.coursera.org/specializations/developing-apps-gcp pour en savoir plus.\n\nOption 2 : La spécialisation Architecting with Google Cloud Platform est également disponible. Son contenu a été mis à jour et amélioré. Cette spécialisation vous aidera à préparer l'examen Google Certified Professional – Cloud Architect. Accédez à https://www.coursera.org/specializations/gcp-architecture pour explorer le contenu mis à jour.\n\nLe cours Google Cloud Platform Fundamentals: Core Infrastructure couvre les bases de Google Cloud Platform et constitue le premier cours de ces deux spécialisations. \n\nIl présente des concepts et termes importants de Google Cloud Platform (GCP). Vous y découvrirez et pourrez comparer de nombreux services de calcul et de stockage disponibles dans Google Cloud Platform, dont Google App Engine, Google Compute Engine et Google Container Engine.\n\nRemarques :\n• Vous avez besoin d'un compte Google/Gmail, et d'une carte de crédit ou d'un compte bancaire pour vous inscrire à l'essai gratuit de Google Cloud Platform. (Les services Google sont actuellement indisponibles en Chine.)\n• Si votre adresse de facturation pour les services GCP est située en Union européenne (UE) ou en Russie, lisez la documentation relative à la TVA à l'adresse suivante : https://cloud.google.com/billing/docs/resources/vat-overview.\n• Vous trouverez d'autres questions fréquentes relatives à l'essai gratuit de GCP à l'adresse suivante : https://cloud.google.com/free/?hl=fr.",
"id": "Tq_sjE-_EeiNBQqYqBGpZg",
"slug": "gcp-fundamentals-fr",
"instructorIds": "['22997770']",
"specializations": "[]",
"partnerIds": "['443']",
"name": "Google Cloud Platform Fundamentals: Core Infrastructure en Français"
},
{
"FIELD1": 42,
"courseType": "v2.ondemand",
"description": "Chimpanzees are one of our closest living relatives, yet almost nothing was known about their behavior in the wild until Jane Goodall started her groundbreaking study of the chimpanzees of Gombe, Tanzania in 1960. This study continues today, following the same chimpanzee families that Jane Goodall first encountered over 55 years ago. Guided by three course instructors who have lived and worked with the Gombe chimpanzees, you will learn how Goodall’s early discoveries changed our view of human uniqueness. By completing the course, you will gain a new appreciation of the deep similarities between chimpanzees and humans in intelligence, tool use, hunting, personality and social relationships, as well as some key differences. You will learn how chimpanzees interact with their environment and how their behavior is influenced by ecology, as well as the severe conservation challenges they face today. And you will employ your new knowledge of chimpanzees to construct a persuasive argument for their protection. This course is open to everyone interested in learning more about these fascinating and complex beings. Knowledge of high-school level biology is beneficial but not required. Please keep in mind, however, that the content of this course will cover all aspects of chimpanzee life, including scientific discussion of sexual and aggressive behaviors.",
"id": "HVjlxtHlEea6rA7xa5ZVSg",
"slug": "chimp",
"instructorIds": "['1371143', '35497072', '35639741']",
"specializations": "[]",
"partnerIds": "['7']",
"name": "Chimpanzee Behavior and Conservation"
},
{
"FIELD1": 43,
"courseType": "v2.ondemand",
"description": "This course focuses on technical, mobile and social strategies for increasing site traffic. Learn how to build SEO for international audiences through content localization, global team alignment and optimizing for local search engines. Discover techniques to optimize mobile-friendly websites, get mobile apps discovered, and leverage social media to drive organic SEO traffic. You will also learn how to identify key SEO metrics and collect, interpret, validate, and report success to your clients and stakeholders.",
"id": "9h_j5XEiEeWbbw5cIAKQrw",
"slug": "seo-strategies",
"instructorIds": "['15566828']",
"specializations": "[]",
"partnerIds": "['83']",
"name": "Advanced Search Engine Optimization Strategies"
},
{
"FIELD1": 44,
"courseType": "v2.ondemand",
"description": "The aim of the course is to obtain the idea of the lexicon as a complex system and to get the methodology of the typological approach to the lexicon cross-linguistically, as well as to learn about the general mechanisms of semantic shift and their typological relevance.\n\nBy the end of the course the students should know the basic principles of lexical organization, the main parameters of semantic variations in lexicon, and be able to apply the basic methods of the analysis of lexical meaning to different lexical domains.\nThe course is designed for students of linguistic programs (BA, MA, PhD), as well as for teachers and researchers in the named field. \n\nThe course contains the overview of different approaches to the semantic description of lexical items and lexical systems in different languages and discusses the methodology of Moscow Lexical Typology Group (lecture 1). This methodology (“frame approach”) is illustrated with the data of the following domains: aquamotion verbs (lecture 2), verbs of falling (lecture 3), adjectives denoting oldness (lecture 4) and pain metaphors (lecture 5 and 6). The results of the analyses are visualized with specially constructed lexical semantic maps.",
"id": "X1gEFr4LEeaqug5_d2-DwA",
"slug": "lexical-semantic-typology",
"instructorIds": "['23172161']",
"specializations": "[]",
"partnerIds": "['160']",
"name": "Towards language universals through lexical semantics: introduction to lexical and semantic typology"
},
{
"FIELD1": 45,
"courseType": "v2.ondemand",
"description": "This course aims to provide a succinct overview of the emerging discipline of Materials Informatics at the intersection of materials science, computational science, and information science. Attention is drawn to specific opportunities afforded by this new field in accelerating materials development and deployment efforts. A particular emphasis is placed on materials exhibiting hierarchical internal structures spanning multiple length/structure scales and the impediments involved in establishing invertible process-structure-property (PSP) linkages for these materials. More specifically, it is argued that modern data sciences (including advanced statistics, dimensionality reduction, and formulation of metamodels) and innovative cyberinfrastructure tools (including integration platforms, databases, and customized tools for enhancement of collaborations among cross-disciplinary team members) are likely to play a critical and pivotal role in addressing the above challenges.",
"id": "8ZbHjRtCEeWBKhJRV_B8Gw",
"slug": "material-informatics",
"instructorIds": "['12515595']",
"specializations": "[]",
"partnerIds": "['9']",
"name": "Materials Data Sciences and Informatics"
},
{
"FIELD1": 46,
"courseType": "v2.ondemand",
"description": "Welcome to the Inbound Certification course!\n\nThis course will introduce you to inbound and provide you with a big picture view of everything you need for a successful inbound strategy.\n\nSo, why inbound?\n\nInbound is a fundamental shift in the way you do business. Instead of an interruption-based message where the marketer or salesperson had all the control, inbound is about empowering potential customers. Consumer’s buying behaviors have changed and will continue to change. That's the driving force behind inbound. What your customers want today is different than what they wanted 10 years ago. That means you need to change the way you market, sell, and service to match the way people actually want to shop and buy.\n\nSo, wondering what to expect in this course?\n\nAfter an initial lesson on an introduction to the inbound fundamentals, the course consists of a set of lessons that follows the inbound methodology. The inbound methodology illustrates the four stages that make an inbound business. It reflects the entire inbound marketing, sales, services, and relationship process. The stages are Attract, Convert, Close, and Delight.\n\nEach lesson includes different tactics that you can apply to help you and your business grow better. You’ll also hear from HubSpot executives and leadership including: HubSpot’s Co-founders Brian Halligan & Dharmesh Shah. Chief People Officer, Katie Burke. VP of HubSpot Academy, Mark Kilens. VP of Marketing, Meghan Anderson. SVP of Product, Christopher O’Donnell. VP of Sales, Michelle Benfer. And VP of Customer Success, Alison Elworthy",
"id": "eAPzf1rCEeiSewqcLVURIg",
"slug": "inbound-business-strategy",
"instructorIds": "['35739519']",
"specializations": "[]",
"partnerIds": "['485']",
"name": "Sales Training: Inbound Business Strategy"
},
{
"FIELD1": 47,
"courseType": "v2.ondemand",
"description": "In this course, you will develop and test hypotheses about your data. You will learn a variety of statistical tests, as well as strategies to know how to apply the appropriate one to your specific data and question. Using your choice of two powerful statistical software packages (SAS or Python), you will explore ANOVA, Chi-Square, and Pearson correlation analysis. This course will guide you through basic statistical principles to give you the tools to answer questions you have developed. Throughout the course, you will share your progress with others to gain valuable feedback and provide insight to other learners about their work.",
"id": "ENhHCTboEeW8ZAoCexam_w",
"slug": "data-analysis-tools",
"instructorIds": "['3182044', '1121232']",
"specializations": "[]",
"partnerIds": "['34']",
"name": "Data Analysis Tools"
},
{
"FIELD1": 48,
"courseType": "v2.ondemand",
"description": "Designing a product is only part of the process. Now, can that product be manufactured? A CNC machinist works with computer numeric controlled (CNC) machines from generating the machine code to machine setup and run. Understanding both CAD and CAM is essential to this portion of a design. Even if you are not the end user who programs a machine, it is invaluable to know how it’s done. This knowledge translates directly to part design by helping make intelligent design decisions with manufacturing in mind. This course introduces you to the integrated CAD/CAM approach behind Fusion 360 CAD/CAM as well as 3D printed design setup and finally assembly and testing. All stages of product design in one place!\n\nAfter completing this course, you will be able to:\n • Explain the Fusion 360 integrated CAD/CAM manufacturing workflow.\n • Summarize the trends that are influencing the future of manufacturing.\n • Demonstrate knowledge and skills in foundational concepts of Fusion 360 CAD/CAM software.\n • Set up a Flight Controller.\n • Assemble a quadcopter.\n • Fly the final design.",
"id": "FGxleI9gEee2yBIlFMkZng",
"slug": "manufacturing-process-fusion-360",
"instructorIds": "['29428879']",
"specializations": "[]",
"partnerIds": "['470']",
"name": "Manufacturing Process with Autodesk Fusion 360"
},
{
"FIELD1": 49,
"courseType": "v2.ondemand",
"description": "How can we create nano-structures that are 10,000 times smaller than the diameter of a human hair? How can we “see” at the nano-scale? Through instruction and lab demonstrations in this course you will obtain a rich understanding of the capabilities of nanotechnology tools and how to use this equipment for nano-scale fabrication and characterization. The nanoscale is the next frontier of the Maker culture where designs become reality. To become a Nanotechnology Maker pioneer we will introduce you to the practical knowledge skills and tools that can turn your nanotechnology ideas into physical form and that enable you to image objects at the nano-scale. \n\nThis course has been developed by faculty and staff experts in nano-fabrication electron beam microscopy and nano-characterization through the Research Triangle Nanotechnology Network (RTNN). The RTNN offers training and use of the tools demonstrated in this course to schools and industry through the United States National Nanotechnology Coordinated Infrastructure program. The tools demonstrated in this course are available to the public through the RTNN.",
"id": "P71s724mEeaWZAqzz79ZVw",
"slug": "nanotechnology",
"instructorIds": "['1167229', '7320131', '22530482', '21935394']",
"specializations": "[]",
"partnerIds": "['7', '441', '77']",
"name": "Nanotechnology: A Maker’s Course"
},
{
"FIELD1": 50,
"courseType": "v2.ondemand",
"description": "Have you wondered how information from physical devices in the real world gets communicated to Smartphone processors? Do you want to make informed design decisions about sampling frequencies and bit-width requirements for various kinds of sensors? Do you want to gain expertise to affect the real world with actuators such as stepper motors, LEDs and generate notifications?\n\nIn this course, you will learn to interface common sensors and actuators to the DragonBoard™ 410c hardware. You will then develop software to acquire sensory data, process the data and actuate stepper motors, LEDs, etc. for use in mobile-enabled products. Along the way, you’ll learn to apply both analog-to-digital and digital-to-analog conversion concepts. \n\nLearning Goals: After completing this course, you will be able to:\n\n1.\tEstimate sampling frequency and bit-width required for different sensors.\n2.\tProgram GPIOs (general purpose input/output pins) to enable communication between the DragonBoard 410c and common sensors.\n3.\tWrite data acquisition code for sensors such as passive and active infrared (IR) sensors, microphones, cameras, GPS, accelerometers, ultrasonic sensors, etc.\n4.\tWrite applications that process sensor data and take specific actions, such as stepper motors, LED matrices for digital signage and gaming, etc.",
"id": "QO7QgCzfEeWv_w7cMMH1Uw",
"slug": "internet-of-things-sensing-actuation",
"instructorIds": "['12279078', '12280323']",
"specializations": "[]",
"partnerIds": "['53']",
"name": "Internet of Things: Sensing and Actuation From Devices"
},
{
"FIELD1": 51,
"courseType": "v2.ondemand",
"description": "Improving health and healthcare institutions requires understanding of data and creation of interventions at the many levels at which health IT interact and affect the institution. These levels range from the external “world” in which the institution operates down to the specific technologies. Data scientists find that, when they aim at implementing their models in practice, it is the “socio” components that are both novel to them and mission critical to success. At the end of this course, students will be able to make a quick assessment of a health informatics problem—or a proposed solution—and to determine what is missing and what more needs to be learned.",
"id": "AqeLjUQ1EeiJ3RL_2DUY7A",
"slug": "the-socio-technical-health-informatics-context",
"instructorIds": "['678654']",
"specializations": "[]",
"partnerIds": "['8']",
"name": "The Social and Technical Context of Health Informatics"
},
{
"FIELD1": 52,
"courseType": "v2.ondemand",
"description": "“Welcome to Introduction to Numerical Mathematics. This is designed to give you part of the mathematical foundations needed to work in computer science in any of its strands, from business to visual digital arts, music, games. At any stage of the problem solving and modelling stage you will require numerical and computational tools. We get you started in binary and other number bases, some tools to make sense of sequences of numbers, how to represent space numerical using coordinates, how to study variations of quantities via functions and their graphs. For this we prepared computing and everyday life problems for you to solve using these tools, from sending secret messages to designing computer graphics. \nIf you wish to take it further you can join the BSc Computer Science degree and complete the full module ‘Numerical Mathematics’. \nEnjoy!”",
"id": "meDrevxaEeeNyA6Y57g_sA",
"slug": "mathematics-for-computer-science",
"instructorIds": "['1960981', '32849918']",
"specializations": "[]",
"partnerIds": "['26', '303']",
"name": "Mathematics for Computer Science"
},
{
"FIELD1": 53,
"courseType": "v2.ondemand",
"description": "An introduction to data integration and statistical methods used in contemporary Systems Biology, Bioinformatics and Systems Pharmacology research. The course covers methods to process raw data from genome-wide mRNA expression studies (microarrays and RNA-seq) including data normalization, differential expression, clustering, enrichment analysis and network construction. The course contains practical tutorials for using tools and setting up pipelines, but it also covers the mathematics behind the methods applied within the tools. The course is mostly appropriate for beginning graduate students and advanced undergraduates majoring in fields such as biology, math, physics, chemistry, computer science, biomedical and electrical engineering. The course should be useful for researchers who encounter large datasets in their own research. The course presents software tools developed by the Ma’ayan Laboratory (http://labs.icahn.mssm.edu/maayanlab/) from the Icahn School of Medicine at Mount Sinai, but also other freely available data analysis and visualization tools. The ultimate aim of the course is to enable participants to utilize the methods presented in this course for analyzing their own data for their own projects. For those participants that do not work in the field, the course introduces the current research challenges faced in the field of computational systems biology.",
"id": "Vrih-AYnEeWJMSIAC7Jl0w",
"slug": "network-biology",
"instructorIds": "['1305172']",
"specializations": "[]",
"partnerIds": "['27']",
"name": "Network Analysis in Systems Biology"
},
{
"FIELD1": 54,
"courseType": "v2.ondemand",
"description": "Cada día es más importante hablar bien en público. \nLa mejor oratoria es la que permite al orador conseguir los objetivos que se había planteado. Contrariamente a la creencia común, la necesidad de una buena oratoria no es exclusiva de ciertos grupos profesionales, sino que todas las personas deberían superar el miedo escénico y hablar bien en público. ¿El motivo? Poder trasladar de manera eficiente el mensaje deseado, ya sea para fines laborales (exponer proyectos laborales, convencer ante foros, asambleas o parlamentos, comunicar mejor con clientes, aumentar el grado de persuasión), como personales (exponer proyectos personales, mejorar la comunicación con las personas). \nEl orador se hace, no nace. \nEn este curso adquirirás recursos para hablar bien y conseguir, a través de la palabra, los objetivos planteados. Te invitamos a descubrirlo con nosotros.",
"id": "G-vdZPxdEeegShL0o4I5-A",
"slug": "hablar-bien-en-publico",
"instructorIds": "['32130549']",
"specializations": "[]",
"partnerIds": "['80']",
"name": "Cómo hablar bien en público"
},
{
"FIELD1": 55,
"courseType": "v2.ondemand",
"description": "Now that your APIs are developed, it's time to talk about how to secure them. This course covers API security using the Apigee API platform. We'll learn about how to properly secure your APIs by covering topics such as the types of OAuth, TLS, and SAML to name a few. We'll apply these concepts with hands on labs to implement proper authentication and validation in your APIs.\n\nBy taking this course, you'll come to have a high level understanding of API security and why it's important. All supplemental materials will be provided to you for offline review / reference. Since this is the final course in the Specialization, you'll come out of this course with a fully working and secure API to be used as reference for all your future builds!\n\nNote: Before starting this course, please ensure that you have completed the \"API Design and Fundamentals of Google Cloud's Apigee API Platform\" and \"API Development on Google Cloud's Apigee API Platform\" courses.",
"id": "baumlTm8Eeeahg4SvlLy9A",
"slug": "api-security-apigee-gcp",
"instructorIds": "['22997770']",
"specializations": "[]",
"partnerIds": "['443']",
"name": "API Security on Google Cloud's Apigee API Platform"
},
{
"FIELD1": 56,
"courseType": "v2.ondemand",
"description": "Welcome to Course 2 - Sales Strategy - This course is designed to discuss the application of intelligence analysis in the sales planning process. And this approach contributes to integrating the sales planning process into the corporate strategy of the company because, in the strategy analysis and formulation process, we apply models, frameworks, tools, and techniques that also apply to the sales planning and management process. \nTherefore, the expected outcomes of this course focus on the transition from traditional to strategic sales planning, by discussing and applying the concepts recommended to support the development of the strategic guidelines. \nThe concepts, models, tools, and techniques discussed and practiced during the course focus on the improvement of value creation from the sales function empowered by intelligence analysis, a process which typically applies in the strategy analysis front. \nThe discussions go through how intelligence analysis can support the sales function, by providing methods to connect strategy to marketing and sales planning processes. \nIn this course, the primary learning outcome is the ability to apply intelligence analysis to support sales planning process, and by being able to do this, you’ll improve your competencies and skills to support sales planning with a strategic approach. \nYou’ll develop a final assignment at the end of the course, and it is designed from an adapted real-life business case. The challenges of the case comprise the business context, through which you’ll apply the conceptual framework discussed during Course 2. \nThe outcomes of your analysis on the assignment case will be evaluated through a peer-review process.",
"id": "lYVp74v7EeeMexKwGJd-pg",
"slug": "sales-strategy",
"instructorIds": "['24305501', '25437496', '11290526']",
"specializations": "[]",
"partnerIds": "['376']",
"name": "Sales Strategy"
},
{
"FIELD1": 57,
"courseType": "v2.ondemand",
"description": "You are encouraged to take the first four courses of the Foundations of Positive Psychology Specialization before starting this course and completing the Specialization Project. This course, taught by Dr. Martin E.P. Seligman brings all the key concepts from the first four courses to practice as you develop and test a new positive intervention for an audience of your choice. You identify opportunities in your daily life to increase the wellbeing by using knowledge you developed in the first four courses of the Specialization. In this final project, you evaluate the efficacy of a positive intervention based on subjective and objective measures. Then, you compare how empirical and non-empirically-based positive interventions can be applied to influence a person's wellbeing. Lastly, you reflect on how the fundamental elements of research methods are important in the everyday application of positive psychology.\n\nAfter completing all five courses, learners earn a certificate signed by Dr. Martin E.P. Seligman, Dr. James Pawelski, Dr. Angela Duckworth, Dr. Claire Robertson-Kraft and Dr. Karen Reivich.",
"id": "75TPppoQEeaeaRLE7qfOBA",
"slug": "positive-psychology-project",
"instructorIds": "['21550535']",
"specializations": "[]",
"partnerIds": "['6']",
"name": "Positive Psychology Specialization Project: Design Your Life for Well-being"
},
{
"FIELD1": 58,
"courseType": "v2.ondemand",
"description": "تساعدك هذه الدورة التدريبية لتصبح مفاوضًا بمستوى أفضل.\nبخلاف الكثير من الدورات التدريبية في التفاوض، نضع إطار عمل لتحليل المفاوضات وتشكيلها.\nسيتيح لك إطار العمل الحالي تقديم حجج مرتكزة على مبادئ من شأنها إقناع الآخرين.\nحيث سيتيح لك الاطلاع على ما وراء النزاعات الظاهرة للكشف عن الاهتمامات الرئيسية.\nبعد انتهاء هذه الدورة التدريبية، ستصبح أكثر قدرةً على التنبؤ بسلوك الأشخاص الذين ستواجههم في مواقف تنافسية وتفسير سلوكياتهم وتشكيلها.\\n\\nفي هذه الدورة التدريبية، سيُتاح لك العديد من الفرص للتفاوض مع طلاب آخرين من خلال دراسات الحالة القائمة على المواقف الشائعة في العمل وفي الحياة.\nيمكنك الحصول على تقييم لأدائك، ومقارنة ما قمت به مع كيفية تناول الآخرين للسيناريو نفسه.\nتقدم دراسات الحالة أيضًا إطارًا لمناقشة مجموعة واسعة النطاق من الموضوعات التي تتضمن الاستعداد للتفاوض، وإصدار الإنذارات النهائية، وتجنب الشعور بالأسف، وتكبير الكعكة (توسيع نطاق التفاوض)، والتعامل مع شخص له رؤية مختلفة تمامًا حول العالم.\nتتضمن الموضوعات المتقدمة التفاوض عندما لا يكون لديك أي صلاحية، والتفاوض عبر البريد الإلكتروني، ودور اختلافات النوع الجنسي في التفاوض.\nوفي ختام الدورة التدريبية، سنحصل على رؤى من ثلاثة خبراء في التفاوض:\n\"ليندا بابكوك\"، و\"هيرب كوهين\"، و\"جون ماكول ماكبين\".\nاستمتع.",
"id": "NMqE4dbxEeimThLb1L5gBg",
"slug": "negotiation-ar",
"instructorIds": "['473433']",
"specializations": "[]",
"partnerIds": "['109']",
"name": "مقدمة عن التفاوض: دليل استراتيجي لتصبح مُفاوضًا ذا مبادئ ومُقنعًا"
},
{
"FIELD1": 59,
"courseType": "v2.ondemand",
"description": "This course will introduce the core data structures of the Python programming language. We will move past the basics of procedural programming and explore how we can use the Python built-in data structures such as lists, dictionaries, and tuples to perform increasingly complex data analysis. This course will cover Chapters 6-10 of the textbook “Python for Everybody”. This course covers Python 3.",
"id": "P--h6zpNEeWYbg7p2_3OHQ",
"slug": "python-data",
"instructorIds": "['122340']",
"specializations": "[]",
"partnerIds": "['3']",
"name": "Python Data Structures"
},
{
"FIELD1": 60,
"courseType": "v2.ondemand",
"description": "Internet of Things (IoT) is an emerging area of information and communications technology (ICT) involving many disciplines of computer science and engineering including sensors/actuators, communications networking, server platforms, data analytics and smart applications. IoT is considered to be an essential part of the 4th Industrial Revolution along with AI and Big Data. This course aims at introducing IoT Cloud platforms from Samsung, Microsoft, Amazon, IBM and Google and how they can be used in developing IoT applications. This course will be offered in English. Subtitles/captions in English and will be also provided. \n\nIoT (Internet of Things, 사물인터넷)는 최근 중요한 정보통신기술로 주목 받고 있으며 센서/ 제어기, 통신 네트워크, 서버 플랫폼, 데이터 분석, 스마트 앱 등의 컴퓨터공학 기술들이 융합된 기술입니다. IoT는 인공지능, 빅데이터와 함께, 4차산업혁명의 3대 핵심 기술 중 하나로 손꼽히고 있습니다. 글로벌 Cloud 서비스 제공자들이 IoT를 특별히 지원하기 위하여 개발한 IoT Cloud 플랫폼들을 소개합니다. 이것들을 활용하여 다양한 IoT 어플리케이션을 개발할 수 있습니다. 본 과목은 영어로 진행되며, 영문자막(일부 한글과 영문 모두)을 제공합니다.",
"id": "9Rh96sXcEeiTeRJBbcsvoA",
"slug": "cloud-iot-platform",
"instructorIds": "['14446400']",
"specializations": "[]",
"partnerIds": "['430']",
"name": "Programming with Cloud IoT Platforms"
},
{
"FIELD1": 61,
"courseType": "v2.ondemand",
"description": "This course is multidisciplinary in nature, and aims to equip the global audience of interested lay people, people with chronic disease, public health researchers, health clinicians, students, administrators, and researchers to reflect on the overall impact of the burden of chronic disease . It shows how all chronic diseases (obesity, diabetes, cardiovascular disease, chronic obstructive pulmonary disease, and cancer) are related by a set of common causes, and that such diseases should be tackled, not individually, but as part of a complex system, with interrelated contributing factors. These factors are genetic, environmental, psychological, economic, social, developmental, and media related. \n\nThe Charles Perkins Centre at the University of Sydney is a unique interdisciplinary education and research hub which seeks solutions to chronic disease through a complex systems approach. Academics in many disciplines (in Science and Medicine, but also in Architecture, Humanities, Law etc) work in a collaborative fashion to produce novel solutions to the problems of chronic disease. All contributors and participants in this course are members of the Charles Perkins Centre and will speak from the unique interdisciplinary perspective that this Centre affords. \n\nThe course will describe a complex systems approach as the most productive way to ease the burden of chronic disease. It then describes these diseases in detail, their risk factors, and the environmental and biological factors that have led to the current epidemic of obesity, diabetes and cardiovascular disease. Finally, the solutions – and more importantly the process for finding solutions- is the subject of the last module. No one approach by itself can ever be the answer, and certainly not a simple diet and exercise approach. \n\nThe entire course consists of 5 content modules, plus an extra module for completing assignments and discussions, and takes about 6 weeks to complete. Completion certificates are issued on the basis of participation in all 6 modules. \n\nWhat you'll learn: \n-\tHow the Charles Perkins Centre recruits interdisciplinary teams to ease the burden of chronic disease\n-\tHow a complex systems approach is necessary to provide solutions to a complex problem\n-\tThe fundamentals of chronic disease research and where it is heading\n-\tThe biggest risk factors for chronic disease and their global incidence\n-\tThe biological, genetic, social, regulatory, and other influences that have inflated these risk factors\n-\tHow to provide solutions globally for the reduction of chronic disease",
"id": "1AOj5h1WEeaSjBI-YFKkww",
"slug": "easing-the-burden-of-obesity-diabetes-cvd",
"instructorIds": "['26206517']",
"specializations": "[]",
"partnerIds": "['264']",
"name": "Easing the burden of obesity, diabetes and cardiovascular disease"
},
{
"FIELD1": 62,
"courseType": "v2.ondemand",
"description": "There’s a songwriter lurking somewhere inside you, peeking around corners, wondering if it’s safe to come out. Now it is. This course is an invitation to let your inner songwriter step into the sunlight. All it takes is a simple “yes” and you’ll be climbing that windy hill, marveling at the view.\n\nIf you haven’t written any or many songs, this course will show you an efficient, effective process for tailoring songs to express your ideas and emotions. If you have, you’ll look at your process differently, taking control of aspects of the process you may have not noticed.\n\nThe course will start by examining the tools available to you, all revolving around the essential concept of prosody. You’ll learn to use your tools to enhance your message—to work compositionally at the same time you’re developing your ideas.\n\nYou’ll be working both lyrically and musically, though musically it’s not necessary that you either read music or play an instrument. If you play, great, and you’ll be encouraged to play and record your musical responses to the assignments. If you don’t play, the course offers you a number of musical loops to work with. All you’ll have to do is sing your melodies over the loops.\n\nAssignments will ask you to post something for peer review—sometimes lyric lines or sections, sometimes melodies, sometimes both. None of it has to be polished. The course is about writing, not performing.\n\nMost important, you’ll have a lot of fun.",
"id": "4gFDJxJhEeayXBIQdVd_6w",
"slug": "songwriting-lyrics",
"instructorIds": "['1340080']",
"specializations": "[]",
"partnerIds": "['21']",
"name": "Songwriting: Writing the Lyrics"
},
{
"FIELD1": 63,
"courseType": "v2.ondemand",
"description": "В течение жизни мы постоянно взаимодействуем с другими людьми. Маленькие дети, пытаясь добиться того, чтобы родители купили понравившуюся конфетку, часто шантажируют родителей своими слезами. Принимая решение заплакать, ребенок рискует — он не знает, как поведут себя папа с мамой. В чуть более взрослом возрасте абитуриенты, выбирающие вуз, принимают сложное решение о том, в какие университеты подать документы. Ошибка может стоить дорого: при неправильной стратегии можно оказаться в слабом университете или вообще остаться без заветного студенческого билета. Окончив вуз, юноши и девушки начинают искать работу. Перед интервью с работодателем они штудируют статьи в интернете о том, что можно и чего нельзя говорить на интервью, — они пытаются найти наилучшую стратегию своего поведения, исходя из ожиданий компании, в которую они устраиваются. Все эти ситуации объединяет то, что решения, которые принимают одни люди, оказывают влияние на других людей. Такие взаимодействия называются стратегическими. Именно их изучает теория игр.\n\nЧтобы проанализировать ту или иную реальную жизненную ситуацию стратегического взаимодействия и найти оптимальный вариант поведения в ней, необходимо сделать две вещи. Во-первых, необходимо формально записать ситуацию на языке теории игр, то есть создать модель (игру). Во-вторых, после того как модель (игра) составлена, ее необходимо решить. Этому мы будем учиться в течение курса. Мы разберем основные виды игр (одновременные и последовательные, с совершенной и несовершенной информацией, коалиционные и некоалиционные), приведем способы их решения и обсудим их на многочисленных примерах.\n\nКурс будет интересен желающим разобраться в том, как конкурируют друг с другом несколько компаний и можно ли гарантированно выиграть в шашки, есть ли смысл угрожать на переговорах и с кем стоит объединяться в коалиции в парламенте.\n\nFAQ\n\nВ: Требуется ли предварительная подготовка для прохождения курса?\nО: Курс является базовым, поэтому он не требует специальной подготовки. Для его успешного освоения достаточно уверенных знаний курса математики в объеме школьной программы. В одном-двух примерах могут пригодиться знания начал математического анализа (дифференцирование функций одной переменной, необходимое условие экстремума) и знания начал теории вероятностей (понятие математического ожидания случайной величины).\n\nВ: Что требуется для успешного окончания курса?\nО: Итоговая оценка за курс складывается из результатов 10 оцениваемых тестов. Для успешного окончания курса необходимо дать не менее 80 % правильных ответов на каждый из этих тестов.",
"id": "IzWUDIo9EeWbIxKn7M-nSQ",
"slug": "game-theory",
"instructorIds": "['8172193']",
"specializations": "[]",
"partnerIds": "['160']",
"name": "Теория игр (Game Theory)"
},
{
"FIELD1": 64,
"courseType": "v2.ondemand",
"description": "This course is an introduction to sequence models and their applications, including an overview of sequence model architectures and how to handle inputs of variable length.\n\n• Predict future values of a time-series\n• Classify free form text\n• Address time-series and text problems with recurrent neural networks\n• Choose between RNNs/LSTMs and simpler models\n• Train and reuse word embeddings in text problems\n\nYou will get hands-on practice building and optimizing your own text classification and sequence models on a variety of public datasets in the labs we’ll work on together. \n\nPrerequisites: Basic SQL, familiarity with Python and TensorFlow",
"id": "7sNP37xrEeiL4Q6DgrZ6DA",
"slug": "sequence-models-tensorflow-gcp",
"instructorIds": "['22997770']",
"specializations": "[]",
"partnerIds": "['443']",
"name": "Sequence Models for Time Series and Natural Language Processing"
},
{
"FIELD1": 65,
"courseType": "v2.ondemand",
"description": "This course deals with the fundamentals important in Psychology as a science. Psychology is the study of behavior and the mind. But all of us have tried to understand and predict behavior throughout our lives, first with our parents, then with our peers and teachers, and finally with our friends and co-workers. The difference is that psychological scientists conduct research that discovers the facts about behavior and our minds, so its principles are based on science and not just on intuition and experience. The course covers the fundamentals of learning, memory, motivation, emotion, and how behavior changes as we age. The content of the course has received approval from \"Quality Matters\", an organization that evaluates on-line courses. The learning outcomes are: (1) Students will be able to recognize and describe major psychological principles of learning; (2) Students will be able to distinguish between different types of memory; (3) Students will be able to describe how motivation and emotion can affect how we behave; and (4) Students will know how cognitive behavior and social behavior develops as we age.",
"id": "82aQj7-XEeWlXArQvkLgXw",
"slug": "mind-behavior-fundamentals",
"instructorIds": "['2606554']",
"specializations": "[]",
"partnerIds": "['9']",
"name": "Introduction to Psychology as a Science 2 – Fundamentals of the Mind and Behavior "
},
{
"FIELD1": 66,
"courseType": "v2.ondemand",
"description": "This course is the first in the Customer Insights and New Product Development (CIPD) specialization. It will introduce learners to the tools and process of gathering customer insights for identifying and developing new product opportunities. Through an integrated set of five modules and hands-on project experiences, learners will acquire the knowledge and skills to turn their ideas gained from understanding customer needs into innovative new products.",
"id": "2yrg8AmqEeehuBIVBG78lg",
"slug": "customer-insights-orientation",
"instructorIds": "['12891058']",
"specializations": "[]",
"partnerIds": "['17']",
"name": "Customer Insights: New Product Development Orientation"
},
{
"FIELD1": 67,
"courseType": "v2.ondemand",
"description": "Have you ever wanted to invest in financial markets, but were always afraid that you didn’t have the proper tools or knowledge to make informed decisions? Have you ever wondered how investment management companies operate and what fund managers do? AXA Investment Managers, in partnership with HEC Paris, will introduce you to the most important ideas and concepts in investment management, to help you better understand your financial future.\n\nThis course will enable you to:\n•\tDefine what type of investor you are, your investment objectives, and potential constraints. \n•\tIdentify the main investable assets and important players in financial markets. \n•\tUnderstand basic portfolio management techniques. \n•\tApply these techniques in real case studies from the outset, through practical assessments. \n\nFinally, we will provide a comprehensive overview of today's asset management industry: the product cycles, professionals, and regulations. For those who want to identify a talented fund manager to invest for you, we offer important criteria for selecting one. For those who are interested in learning more about this fascinating industry, we lay the foundation for your ongoing financial journey. Join us now to explore the world of investment management! \n\nCourse Specialists\nThe course has been developed in collaboration between HEC Paris, with Hugues Langlois managing the academic aspect, and AXA Investment Managers specialists, sharing their experiences and expertise and coordinated by Marion Le Morhedec. AXA Investment Managers participants include Maxime Alimi, Stephanie Condra, Nicholas Jeans, Elodie Laugel, Pierre-François de Mont-Serrat, Jean-Gabriel Pierre (AXA Group), Dorothée Sauloup, Irina Topa-Serry, Fiona Southall, Patrice Viot Coster, Susanna Warner, and Joachim Weitgasser.\n\nRecommended Background\nWe expect most participants to have a basic level of knowledge in mathematics and economics. However this is not essential, and we believe that people from any background can succeed with commitment and a strong interest.\nBe aware that in the case study, you will have to use Excel.\n\nCourse Format \nThis course will run for 4 weeks and consists of 4 modules, each with a series of lecture videos between 5 to 8 minutes long. Each module contains a set of practice and graded quiz questions. A complete portfolio management exercise covers concepts learned in all modules\n\nLanguage\nThe course is in English, with Spanish, Italian, German, French, and Chinese (Simplified) subtitles.\n\nThe Project\nThe preparation of this MOOC has been an exciting adventure for many professionals at AXA Investment Managers and HEC, both for the speakers and a wealth of contributors. Thank you to all of them.\nWe hope you enjoy this course as much as we enjoyed creating it!",
"id": "NDBJAUWDEeWbNhIvIryYow",
"slug": "investment-management",
"instructorIds": "['16627281', '11676404']",
"specializations": "[]",
"partnerIds": "['161']",
"name": "Investment Management in an Evolving and Volatile World by HEC Paris and AXA Investment Managers"
},
{
"FIELD1": 68,
"courseType": "v2.ondemand",
"description": "This course follows the extraordinary development of Western Christianity from its early persecution under the Roman Empire in the third century to its global expansion with the Jesuits of the early modern world. We explore the dynamic and diverse character of a religion with an enormous cast characters. We will meet men and women who tell stories of faith as well as of violence, suppression, and division. Along the way, we encounter Perpetua and her martyrdom in Carthage; the struggles of Augustine the bishop in North Africa; the zeal of Celtic monks and missionaries; the viciousness of the Crusades; the visions of Brigit of Sweden; and the fracturing of Christianity by Martin Luther’s protest. We hear the voices of great theologians as well as of those branded heretics by the Church, a powerful reminder that the growth of Christianity is a story with many narratives of competing visions of reform and ideals, powerful critiques of corruption and venality, and exclusion of the vanquished. The troubled history of Christian engagement with Jews and Muslims is found in pogroms and expulsions, but also in the astonishing ways in which the culture of the West was transformed by Jewish and Islamic learning.\n \nWe shall explore the stunning beauty of the Book of Kells, exquisitely prepared by monks as the Vikings terrorized the coast of England. We will experience the blue light of the windows of Chartres, and ponder the opening questions of Thomas Aquinas’ great Summa. We will read from the Gutenberg Bible of the fifteenth century, which heralded the revolution brought by the printing press. We will travel from Calvin’s Geneva to Elizabeth’s England to Trent, where a Catholic Council met to inaugurate a modern, missionary Catholic church. We will walk through the great Escorial of Philip II of Spain, hear the poetry of John of the Cross, and follow the Jesuits to Brazil and China.\n \nChristianity in the West was forged in the fires of conflict and tumult, and it brought forth both creativity and violence. It echoed with calls for God’s world to be transformed, it inspired the most sublime art and architecture, yet it also revealed the power of the union of cross and sword to destroy. The course is a journey through the formation of the West as one strand of Christianity, as one chapter in a global story. It is a journey that has shaped our world.",
"id": "Ai0UE_dJEeWttArM01H4SQ",
"slug": "western-christianity-200-1650",
"instructorIds": "['19514728']",
"specializations": "[]",
"partnerIds": "['109']",
"name": "A Journey through Western Christianity: from Persecuted Faith to Global Religion (200 - 1650) "
},
{
"FIELD1": 69,
"courseType": "v2.ondemand",
"description": "Learn about novel sensing tools that make use of nanotechnology to screen, detect and monitor various events in personal or professional life. Together, we will lay the groundwork for infinite innovative applications, starting from diagnosis and treatments of diseases, continuing with quality control of goods and environmental aspects, and ending with monitoring security issues.\n\n_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ \n\nNanotechnology and nanosensors are broad, interdisciplinary areas that encompass (bio)chemistry, physics, biology, materials science, electrical engineering and more. The present course will provide a survey on some of the fundamental principles behind nanotechnology and nanomaterials and their vital role in novel sensing properties and applications. The course will discuss interesting interdisciplinary scientific and engineering knowledge at the nanoscale to understand fundamental physical differences at the nanosensors. By the end of the two parts of the course, students will understand the fabrication, characterization, and manipulation of nanomaterials, nanosensors, and how they can be exploited for new applications. Also, students will apply their knowledge of nanotechnology and nanosensors to a topic of personal interest in this course.\n\n- - - - - - - -- -- -- - - - -\nCOURSE OBJECTIVES\nThe course main objective is to enhance critical, creative, and innovative thinking. The course encourages multicultural group work, constructing international 'thinking tanks' for the creation of new ideas. Throughout the course, you will be asked to reflect upon your learning, think \"out of the box\", and suggest creative ideas. \n\nThe two parts of the course are set to encourage the understanding of:\n1. The importance of nanoscale materials for sensing applications.\n2. Approaches used for characterizing sensors based nanomaterials.\n3. Approaches used for tailoring nanomaterials for a specific sensing application.\n4. Metallic and semiconductor nanoparticles.\n5. Organic and inorganic nanotubes and nanowires.\n6. Optical, mechanical and chemical sensors based on nanomaterials.\n7. Hybrid nanomaterial-based sensors.\n\n----------------\nWe recommend that you read the following supplementary reading materials:\n-Jiří Janata, Principles of Chemical Sensors, Springer, 2d Edition (1989).\n-Roger George Jackson, Novel Sensors and Sensing, CRC Press (2004).\n_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\n\nTeaching Team\n\nAbout Professor Haick Hossam\n\nProfessor Hossam Haick is an expert in the field of nanotechnology, nanosensors, and non-invasive disease diagnosis. Prof. Haick is the recipient of the prestigious Marie Curie Excellence Award, ERC Award, and the FP-7 Health Award. He is also the recipient of more than 42 international honors and prizes for his achievements, including a Knight of the Order of Academic Palms (conferred by the French Government) and the “List of the World’s Top 35 Young Scientists”, and the Discovery Award of the Bill & Melinda Gates. Prof. Haick is the founder and the leader of a European consortium of eight universities and companies for the development of advanced generation of nanosensors for disease diagnosis. He also serves as an associate editor of the two journals and serves as an advisory consultant to the Chemical Abstracts Service (CAS) – the world's authority for chemical information - a senior scientific advisory member of several national and international companies and institutes, and as a scientific evaluator in the European Commission.\nEmail: [email protected] \n_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ \n\nCourse Staff\n\nMeital Bar-Segev, Teaching Assistant: Received her B.A. (Cum Laude) in Chemistry and B.Sc (Cum Laude) in Materials Engineering from the Technion – Israel Institute of Technology (both in 2010). During her studies, she worked in a student position at Tower Semiconductors Ltd. After graduation she worked at Alfred Mann Institute in the Technion (AMIT) as a process development engineer. Currently, she performs her Ph.D. degree (direct track) in the Russell Berrie Nanotechnology Institute (RBNI) of the Technion under the supervision of Prof. Hossam Haick. The research of Meital focuses is the development of electronic skin based on nanoparticles.\n\nAbeer Watted, Teaching Assistant: Received her B.Sc. and M.Sc. in Transportation and Highways Engineering from the Technion. She is a Ph.D. student at the Faculty of Education in Science and Technology at the Technion, under the supervision of Asst. Prof. Miri Barak. She received a second master degree in Educatu in Science and Technology from the Technion in 2013. Her research focuses on science education and inquiry-based laboratories. Currently, Abeer works as a lecturer at Al-Qasemi Academic College of Education, where she serves also as the head of Civil Engineering Department.\n\nMaya Usher, Teaching Assistant: Received her B.A. and M.A. (Cum Laude) in Communication Studies from Sapir Academic College and Ben Gurion University- Israel (2009; 2013 respectively). Currently, Maya is a PhD. candidate at the Faculty of Education in Science and Technology at the Technion, under the supervision of Asst. Prof. Miri Barak. Her research focuses on examining online collaborative learning in small multicultural groups. \n\nMuhammad Khatib, Teaching Assistant: Received his B.Sc in Biochemical Engineering from the Technion – Israel Institute of Technology (2015). His final research project, conducted with Prof. Avi Schroeder, dealt with harnessing liposome-based drug delivery systems to applications in precise agriculture. Currently, he performs his Ph.D. (special track) in the Department of Chemical Engineering of the Technion under the supervision of Prof. Hossam Haick, and his research focuses on self-healing devices for monitoring infectious diseases.\n\nMiri Barak, Pedagogical Advisor: Assistant Professor at the Faculty of Education in Science and Technology, Technion- Israel Institute of Technology. She is the Head of the Science and Learning Technologies group and the advisor of graduate students. Her academic activities focus on developing, integrating, and evaluating science education curricula at school and higher education levels. Her studies involve the use of information and communication technologies (ICT), with emphasis on emerging web-2.0 and cloud applications, to foster meaningful learning and high-order thinking.",
"id": "tn8lP4fjEeWQhRJp8aTWZQ",
"slug": "nanotechnology2",
"instructorIds": "['2444381']",
"specializations": "[]",
"partnerIds": "['129']",
"name": "Nanotechnology and Nanosensors, Part 2"
},
{
"FIELD1": 70,
"courseType": "v2.ondemand",
"description": "The course focuses on:\n• the formation of an adequate representation about the diversity of contemporary Psychodiagnostics and Assessment methods;\n• deep learning of the current world ethical standards of psychological diagnostics and assessment activity;\n• technology of test reliability determination that obtained by different Psychodiagnostics methods;\n• studying of classical and contemporary intellect diagnostic approaches, Psychodiagnostics of personality characteristics, talent potential and achievements potential of the person.\n\nThe course will make it easy:\n1. To master the technology of getting “informed consent” with a client about Psychodiagnostics and assessment procedure.\n2. To assess the compliance of the proposed Psychodiagnostics programs with the final testing objectives.\n3. To understand the variety of ways to assess different characteristics of a person.\n4. To understand the possibilities of Psychodiagnostics of this or that characteristic of a person with use of various diagnostic techniques.\n5. To be able to determine the level of reliability of the received diagnostic data.\n\nThe course consists of 5 modules. Every module’s broken into 4-6 topics with some tasks and additional literature.",
"id": "MpbXP5H1EeaNrQrkg4diMQ",
"slug": "psychodiagnostics",
"instructorIds": "['17556317']",
"specializations": "[]",
"partnerIds": "['276']",
"name": "Psychodiagnostics and Psychological Assessment"
},
{
"FIELD1": 71,
"courseType": "v2.ondemand",
"description": "About this Course\n\nThis course brings together two key subjects, International Marketing and Cross Industry Innovation. It will provide the basic foundations of international marketing and then explain how companies can grow by going abroad or sourcing ideas/expanding into other countries or industries. This is summarized as CCCI: Cross-Country and Cross-Industry Innovation, a term and analytical platform used throughout not only this course but others in the specialization. As an introductory course, we keep the concepts short and simple in order to ease learners into the wonderful world of international marketing. More specific operational aspects such as managing the product, price, place and promotion as well as targeting and positioning will be provided in the second course of the specialization. \n\nAfter you successfully complete this course learners will obtain the following outcomes:\n\n(1) an understanding of the core meaning of marketing and international marketing. \n(2) learn that international marketing is about striking the right balance between maximizing the similarities across cultures (Etic approach) and customizing marketing (Emic approach) to important local differences.\n(3) learn about how to source or expand into other industries at home or abroad via cross industry innovation.\n(4) obtain a solid foundation for subsequent courses such as course 2 (International Marketing Entry and Execution) and the industry-specific courses in the specialization.",
"id": "7pzdAYE3EeWb1w5ZMj87pw",
"slug": "intro-international-marketing",
"instructorIds": "['10324047']",
"specializations": "[]",
"partnerIds": "['220']",
"name": "Intro to International Marketing"
},
{
"FIELD1": 72,
"courseType": "v2.ondemand",
"description": "In the previous course in the Specialization, we learned how to compare genes, proteins, and genomes. One way we can use these methods is in order to construct a \"Tree of Life\" showing how a large collection of related organisms have evolved over time.\n\nIn the first half of the course, we will discuss approaches for evolutionary tree construction that have been the subject of some of the most cited scientific papers of all time, and show how they can resolve quandaries from finding the origin of a deadly virus to locating the birthplace of modern humans.\n\nIn the second half of the course, we will shift gears and examine the old claim that birds evolved from dinosaurs. How can we prove this? In particular, we will examine a result that claimed that peptides harvested from a T. rex fossil closely matched peptides found in chickens. In particular, we will use methods from computational proteomics to ask how we could assess whether this result is valid or due to some form of contamination.\n\nFinally, you will learn how to apply popular bioinformatics software tools to reconstruct an evolutionary tree of ebolaviruses and identify the source of the recent Ebola epidemic that caused global headlines.",
"id": "5hRQhN9AEeWsvwp02yXW0Q",
"slug": "molecular-evolution",
"instructorIds": "['1540981', '2658887']",
"specializations": "[]",
"partnerIds": "['53']",
"name": "Molecular Evolution (Bioinformatics IV)"
},
{
"FIELD1": 73,
"courseType": "v2.ondemand",
"description": "¿Qué son las políticas públicas? Son la plasmación más concreta de la política. Lo que los gobiernos hacen, y dejan de hacer, para hacer frente a los problemas colectivos. Este curso trata sobre cómo se decide qué problemas abordar y qué soluciones adoptar. Un proceso primordialmente político y social que suele escapar al análisis puramente racional.\n\nA lo largo del curso analizaremos por qué algunos problemas adquieren la categoría de problemas públicos mientras que otros no llegan a captar la atención, describiremos la pugna política que suele haber tras la descripción e interpretación de los problemas, identificaremos el complejo entramado de actores dispuestos a influir en la adopción de las políticas públicas, y cómo las discrepancias se suelen extender más allá de la toma de decisiones y hasta la aplicación práctica de la política pública. Trataremos también sobre las grandes dificultades que padecen gobiernos y actores sociales para llegar a saber si las políticas que se llevan a cabo son realmente útiles y cómo aprender a mejorar su rendimiento.\n\n Los objetivos de este curso son:\n1.\tMostrar a los alumnos un número de casos reales que ilustran la complejidad de los procesos de adopción de las políticas públicas, y cómo estos procesos pueden ser incoherentes con los modelos racionales de toma de decisiones.\n2.\tTransmitir a los alumnos los fundamentos e instrumental del análisis de políticas públicas para que puedan afrontar creativamente problemas del mundo real.\n3.\tContribuir a que los alumnos sean ciudadanos conocedores del funcionamiento de los sistemas democráticos.\n\n\nPor ello, el curso se dirige a todas las personas interesadas en los problemas colectivos, así como a aquellas que quieran convertirse en participantes influyentes en el proceso de formación de las políticas, ya sea como analistas, funcionarios públicos, trabajadores del tercer sector, o como ciudadanos comprometidos en causas políticas. También se dirige a estudiantes que se dispongan a iniciar estudios de grado o postgrado en administración pública, gestión pública o análisis de políticas públicas.",
"id": "7mVd2Bh8EeWiMA6gO89JYQ",
"slug": "democracia",
"instructorIds": "['7575382', '2402351', '6733856', '6724257', '6732953', '6735813', '6723758']",
"specializations": "[]",
"partnerIds": "['80']",
"name": "Democracia y decisiones públicas. Introducción al análisis de políticas públicas"
},
{
"FIELD1": 74,
"courseType": "v2.ondemand",
"description": "Successful projects do not just happen. They are planned. Understanding what success for a specific project means is part of the plan. Take the opportunity to understand how you will measure success. Does your project require assistance or materials from the outside? If it does, will you know what type of contract will support your success? When you understand these basics and you know how to identify the risks you face and how all of this information shapes your estimates, then you are ready to consider committing to a schedule and a budget. This course will take you through critical project planning basics so that when it is time for your schedule and budget, you are well informed.\n\nBy the end of this course, students will be able to: \n•\tDevelop two quality metrics for a project\n•\tDifferentiate between fixed price and cost reimbursable contract types\n•\tPerform a basic risk assessment\n•\tEstimate the quantities and costs of resources required to perform project activities\n•\tIdentify differences in three common cost estimating techniques",
"id": "RpCqbucEEeaH9Q51wS-wDA",
"slug": "project-planning-1",
"instructorIds": "['29346301', '34570496', '31085965', '36232005']",
"specializations": "[]",
"partnerIds": "['30']",
"name": "Project Planning"
},
{
"FIELD1": 75,
"courseType": "v2.ondemand",
"description": "Have you wondered how “Things” talk to each other and the cloud? Do you understand the alternatives for conveying latency-sensitive real time data versus reliable signaling data? Building on the skills from the Sensing and Actuation course, we will explore protocols to exchange information between processors. \n\nIn this course, you will learn how VoIP systems like Skype work and implement your own app for voice calls and text messages. You will start by using the Session Initiation Protocol (SIP) for session management. Next, you will learn how voice codecs such as Adaptive Multi Rate (AMR) are used in 3G networks and use them for voice traffic in your app. \n\nLearning Goals: After completing this course, you will be able to:\n\n1.\tImplement session initiation, management and termination on your DragonBoard™ 410c using SIP.\n2.\tDiscover other users and exchange device capabilities.\n3.\tCompare and contrast narrowband and wideband codecs and experience the voice quality differences between them.\n4.\tImplement and demonstrate VoIP calls using the DragonBoard 410c.",
"id": "X4ituSzfEeWl3A7Kuc0JCQ",
"slug": "internet-of-things-communication",
"instructorIds": "['12279078', '12280323']",
"specializations": "[]",
"partnerIds": "['53']",
"name": "Internet of Things: Communication Technologies"
},
{
"FIELD1": 76,
"courseType": "v2.ondemand",
"description": "As well as a form of art and entertainment, games are about business. Whether you want to work at a game studio, start your own business or make games as a hobby, recognizing the dynamic landscape of the videogame industry is critical to finding your place. This course will introduce you to game production, project management, teamwork skills, and how to position your game ideas and yourself in the broader marketplace. By the end of the course, you will be able to develop an impactful portfolio of game work to get noticed and/or develop an effective business plan to bring your game to market.",
"id": "urbm-CT-EeWCGRL6mLoB5w",
"slug": "gamedev-business",
"instructorIds": "['13631314']",
"specializations": "[]",
"partnerIds": "['228']",
"name": "Business of Games and Entrepreneurship"
},
{
"FIELD1": 77,
"courseType": "v2.ondemand",
"description": "How can we live a good life on one planet with over seven billion people? \n\nThis course will explore greening the economy on four levels – individual, business, city, and nation. We will look at the relationships between these levels and give many practical examples of the complexities and solutions across the levels. Scandinavia, a pioneering place advancing sustainability and combating climate change, is a unique starting point for learning about greening the economy. We will learn from many initiatives attempted in Scandinavia since the 1970s, which are all potentially helpful and useful for other countries and contexts.\n\nThe International Institute for Industrial Environmental Economics (IIIEE) at Lund University is an international centre of excellence on strategies for sustainable solutions. The IIIEE is ideally suited to understand and explain the interdisciplinary issues in green economies utilising the diverse disciplinary backgrounds of its international staff. The IIIEE has been researching and teaching on sustainability and greener economies since the 1990s and it has extensive international networks connecting with a variety of organizations.\n\n5-8 hours/week\n5 weeks duration\n40 films\n20 teachers",
"id": "_j_95QpWEeWoRw4pD4cXmw",
"slug": "greening-the-economy",
"instructorIds": "['6931825', '7951242', '7001900', '7964300', '7955828', '5969150', '6814134', '6925725']",
"specializations": "[]",
"partnerIds": "['199']",
"name": "Greening the Economy: Lessons from Scandinavia"
},
{
"FIELD1": 78,
"courseType": "v2.ondemand",
"description": "This course covers advanced converter control techniques, including averaged-switch modeling and Spice simulations, modeling and design of peak current mode and average current mode controlled converters, as well as an introduction to control of single-phase ac grid tied rectifiers and inverters. Design and simulation examples include wide bandwidth point-of-load voltage regulators, low-harmonic power-factor-correction rectifiers, and grid-tied inverters for solar photovoltaic power systems. Upon completion of the course, you will be able to model, design control loops, and simulate state-of-the-art pulse-width modulated (PWM) dc-dc converters, dc-ac inverters, ac-dc rectifiers, and other power electronics systems. \n\nThis course assumes prior completion of Introduction to Power Electronics, Converter Circuits, and Converter Control",
"id": "Wa2LIymGEeWFggqB2SRvtQ",
"slug": "current-control",
"instructorIds": "['3376074']",
"specializations": "[]",
"partnerIds": "['71']",
"name": "Advanced Converter Control Techniques"
},
{
"FIELD1": 79,
"courseType": "v2.ondemand",
"description": "Meeting another person is one of the most amazing experiences you can have in Virtual Reality. It is quite unlike communicating through any other medium except a real life face-to-face conversation. Because the other person is life size and shares a virtual space with you, body language works in a way that cannot be done on a flat screen. This course will enable you to create realistic social interactions in VR. \n\nYou will learn about both the psychology of social interaction and the practical skills to implement it in Unity3D. We will take you through the basics of 3D character animation and how to create body language. You will learn about how to make characters that can respond to players’ speech and body language. You will also learn about avatars: the virtual representation of other players, and agents: computer controlled NPC characters and how to implement both of them. \n\nAs many people have said before us, social is the future of VR. This course will help you become part of the future of Virtual Reality social experiences.",
"id": "dc1vwfjcEeaRLwq7mFlYug",
"slug": "interactive-3d-characters-social-virtual-reality",
"instructorIds": "['24333271', '1620951']",
"specializations": "[]",
"partnerIds": "['26', '303']",
"name": "Building Interactive 3D Characters and Social VR"
},
{
"FIELD1": 80,
"courseType": "v2.ondemand",
"description": "In this course, we trace the evolution of networks and identify the key concepts and functions that form the basis for layered architecture. We introduce examples of protocols and services that are familiar to the students, and we explain how these services are supported by networks. Further, we explain fundamental concepts in digital communication, and focus on error control techniques that include parity check, polynomial code, and Internet checksum. Students will be required to have some previous programming experience in C-programming (C++/Java), some fundamental knowledge of computer organization and IT architecture and a background in computer science is a plus.",
"id": "8-shGkfyEeemlQrrzf9X-A",
"slug": "fundamentals-network-communications",
"instructorIds": "['26632591']",
"specializations": "[]",
"partnerIds": "['126']",
"name": "Fundamentals of Network Communication"
},
{
"FIELD1": 81,
"courseType": "v2.ondemand",
"description": "Dieser einwöchige On-Demand-Schnellkurs baut auf dem Kurs \"Google Cloud Platform Big Data and Machine Learning Fundamentals\" auf. Mit einem Mix aus Lernvideos, Demos und praxisorientierten Labs lernen Sie, wie Sie mit Google Cloud Pub/Sub und Dataflow Streamingdaten-Pipelines erstellen und die gewonnenen Erkenntnisse für Entscheidungen in Echtzeit nutzen können. Sie lernen auch, Dashboards zu erstellen, die gezielt für verschiedene Stakeholder-Gruppen Informationen abbilden.\n\nVoraussetzungen:\n• Abgeschlossener Kurs \"Google Cloud Platform Big Data and Machine Learning Fundamentals\" (oder gleichwertige Kenntnisse)\n• Kenntnisse in Java\n\nLernziele:\n• Anwendungsmöglichkeiten für Echtzeit-Streaminganalysen kennenlernen\n• Den asynchronen Messaging-Dienst Google Cloud Pub/Sub zur Verwaltung von Datenereignissen verwenden\n• Streaming-Pipelines schreiben und Transformationen ausführen, falls nötig\n• Die Streaming-Pipeline von beiden Seiten kennenlernen: Produktion und Nutzung\n• Dataflow, BigQuery und Cloud Pub/Sub für Echtzeit-Streaming und -Analysen einsetzen",
"id": "ogqLhaZOEei7SwoHnjp4jA",
"slug": "building-resilient-streaming-systems-gcp-de",
"instructorIds": "['22997770']",
"specializations": "[]",
"partnerIds": "['443']",
"name": "Building Resilient Streaming Systems on Google Cloud Platform auf Deutsch"
},
{
"FIELD1": 82,
"courseType": "v2.ondemand",
"description": "Machine learning is the science of getting computers to act without being explicitly programmed. In the past decade, machine learning has given us self-driving cars, practical speech recognition, effective web search, and a vastly improved understanding of the human genome. Machine learning is so pervasive today that you probably use it dozens of times a day without knowing it. Many researchers also think it is the best way to make progress towards human-level AI. In this class, you will learn about the most effective machine learning techniques, and gain practice implementing them and getting them to work for yourself. More importantly, you'll learn about not only the theoretical underpinnings of learning, but also gain the practical know-how needed to quickly and powerfully apply these techniques to new problems. Finally, you'll learn about some of Silicon Valley's best practices in innovation as it pertains to machine learning and AI.\n\nThis course provides a broad introduction to machine learning, datamining, and statistical pattern recognition. Topics include: (i) Supervised learning (parametric/non-parametric algorithms, support vector machines, kernels, neural networks). (ii) Unsupervised learning (clustering, dimensionality reduction, recommender systems, deep learning). (iii) Best practices in machine learning (bias/variance theory; innovation process in machine learning and AI). The course will also draw from numerous case studies and applications, so that you'll also learn how to apply learning algorithms to building smart robots (perception, control), text understanding (web search, anti-spam), computer vision, medical informatics, audio, database mining, and other areas.",
"id": "Gtv4Xb1-EeS-ViIACwYKVQ",
"slug": "machine-learning",
"instructorIds": "['1244']",
"specializations": "[]",
"partnerIds": "['1']",
"name": "Machine Learning"
},
{
"FIELD1": 83,
"courseType": "v2.ondemand",
"description": "This free course from the University of London explores critical thinking, and the interpretation of texts, through the Shakespeare authorship question. Using doubt about Shakespeare’s authorship as our playground, we will explore the key concept of authorship attribution, while developing skills in literary analysis, interpretation, and argument. Through forensic exploration of key texts, you will learn why Shakespeare’s authorship is questioned, and what evidence is cited on both sides of the debate.\n\nFor those of you interested in exploring the works of Shakespeare from a new angle, or just wanting to hone your analytical thinking skills, this course offers an introduction to a fascinating area of interest. Those of you already interested in the Shakespeare authorship question will be encouraged to question your own assumptions in fruitful ways. Whether undertaken as a standalone course, or as preparation for the University of London BA in English, this course will be food for thought.",
"id": "H4Lq9DClEeeckAoFzJuh9g",
"slug": "shakespeare",
"instructorIds": "['25938680']",
"specializations": "[]",
"partnerIds": "['26', '303']",
"name": "Introduction to Who Wrote Shakespeare"
},
{
"FIELD1": 84,
"courseType": "v2.ondemand",
"description": "工程圖學在教什麼?這門課有的重要性為何? 對我的專業有什麼幫助?沒有工程背景的人也可以學習工程圖學嗎?我不是工程師,學習工程圖學對我的生活有幫助嗎?\n這門課是CAD/BIM技術與應用專項課程的第一門課,與其他三門課「工程圖學2D專題」、「工程圖學3D」,及「工程圖學3D專題」,作為工程圖學及電腦繪圖的入門課程,你將在這門課會學到各種繪圖的原理與方法,以及AutoCAD電腦繪圖技術,並在相關的作業練習中,逐漸熟練這些基本技術。\n工程製圖的應用無所不在,最主要的目的就是利用圖像來描述物體的形貌與功能,作為保存與傳遞想法的工具。繪圖一點也不難,無論你從事什麼工作,來自什麼背景,只要你具備中學程度的基本幾何和三角函數概念,就可以在這裡從頭開始,學會工程圖學!你會驚訝的發現,當繪圖融入你的生活時帶來的趣味與方便!",
"id": "POZJ3uOtEeSoXCIACw4Gzg",
"slug": "2d-cad",
"instructorIds": "['2139037']",
"specializations": "[]",
"partnerIds": "['75']",
"name": "工程圖學 2D CAD"
},
{
"FIELD1": 85,
"courseType": "v2.ondemand",
"description": "Welcome to The City and You: Find Your Best Place. I'm excited to have you in the class and look forward to your contributions to the other learners in our community.\n\nThis free course will provide the knowledge and the tools needed to understand what cities do, why they matter, the forces shaping the greatest wave of urbanization in history, and how to pick the right place for you. The course will also help you develop critical thinking skills. We'll accomplish this by providing evidence of the importance of cities, and why and how they matter to you. Then we’ll ask you to apply what you’ve learned in an exercise which will help you assess your own community and find your best place.\n\n This course is accessible and open to anyone who is interested in learning more about cities and the ways they affect our lives. It is organized around five key modules: (1) Why Cities Matter, (2) A World of Cities, (3) The Creative City, (4) The Divided City and the New Urban Crisis, and (5) How to Find the Best Place for You.\n\n After completing the course, you will be able to:\n\n\n(1) Identify why cities are the drivers of economic prosperity;\n(2) Explain the drivers and implications of fast-growing urbanization worldwide;\n(3) Outline the key characteristics of a creative and innovative city;\n(4) Describe the social divides and challenges facing cities and the solutions cities are using to address them; and\n(5) Recognize the trade-offs of staying in your current city versus moving, and identify the best place for you and your family to live.\n\nGood luck as you get started, and I hope you enjoy the course!",
"id": "GHhkynNMEeWKsgrp3VnvAw",
"slug": "city-and-you-find-best-place",
"instructorIds": "['15652512']",
"specializations": "[]",
"partnerIds": "['11']",
"name": "The City and You: Find Your Best Place"
},
{
"FIELD1": 86,
"courseType": "v2.ondemand",
"description": "Data science courses contain math—no avoiding that! This course is designed to teach learners the basic math you will need in order to be successful in almost any data science math course and was created for learners who have basic math skills but may not have taken algebra or pre-calculus. Data Science Math Skills introduces the core math that data science is built upon, with no extra complexity, introducing unfamiliar ideas and math symbols one-at-a-time. \n\nLearners who complete this course will master the vocabulary, notation, concepts, and algebra rules that all data scientists must know before moving on to more advanced material.\n\nTopics include:\n~Set theory, including Venn diagrams\n~Properties of the real number line\n~Interval notation and algebra with inequalities\n~Uses for summation and Sigma notation\n~Math on the Cartesian (x,y) plane, slope and distance formulas\n~Graphing and describing functions and their inverses on the x-y plane,\n~The concept of instantaneous rate of change and tangent lines to a curve\n~Exponents, logarithms, and the natural log function.\n~Probability theory, including Bayes’ theorem.\n\nWhile this course is intended as a general introduction to the math skills needed for data science, it can be considered a prerequisite for learners interested in the course, \"Mastering Data Analysis in Excel,\" which is part of the Excel to MySQL Data Science Specialization. Learners who master Data Science Math Skills will be fully prepared for success with the more advanced math concepts introduced in \"Mastering Data Analysis in Excel.\" \n\nGood luck and we hope you enjoy the course!",
"id": "2RGeY3RDEeatvg5z1JaMJw",
"slug": "datasciencemathskills",
"instructorIds": "['13723820', '23311056']",
"specializations": "[]",
"partnerIds": "['7']",
"name": "Data Science Math Skills"
},
{
"FIELD1": 87,
"courseType": "v2.ondemand",
"description": "The world is urbanizing fast. In less than a century more than 1 billion people have been urbanized. That translates into the fact that more than half of the world’s population is already living in cities. Experts forecast that very soon Africa will become one of the most urbanized continents. However, almost 70% of world’s urban population is living in the cities where governments are struggling to provide basic services like sanitation, schools, hospitals, and adequate clean water. \n\nThe reason is that, their governments do not have enough money. This may also be true also for the city where you live or work. Poor infrastructure affects your daily life. Local governments struggle with mobilizing finances so that they can improve your quality of life but many times they are not aware of the right mechanisms. \n\nImagine that your government wants to know how can they finance cities and they want you to advise – where will you begin with? Our finance experts are bringing their experience right at your Desk through this MOOC. This MOOC has five modules and in five weeks you will learn:\n•\tFinancial decision making environment in urban systems\n•\tMechanisms for mobilizing local revenues\n•\tInnovative mechanisms for financing infrastructure projects through partnerships, and \n•\tFinancial decision making under uncertainties and risks\n\nWe will provide you a carefully selected set of literature, quizzes and interactive discussion forums. So join our MOOC and find out the ways to make your city a better place to live in for yourself and for your next generations.\n\n(This MOOC was developed in collaboration with the United Cities and Local Governments of Africa (UCLG-Africa), African Local Governments Academy (ALGA), and Erasmus University Rotterdam)",
"id": "AzePbKBBEea7IQ5foiOduA",
"slug": "financing-infrastructure-in-african-cities",
"instructorIds": "['19920968', '27008725', '28166700', '19170642']",
"specializations": "[]",
"partnerIds": "['489', '488', '244', '491']",
"name": "Financing Infrastructure in African Cities"
},
{
"FIELD1": 88,
"courseType": "v2.ondemand",
"description": "Philosophy, Science and Religion mark three of the most fundamental modes of thinking about the world and our place in it. Are these modes incompatible? Put another way: is the intellectually responsible thing to do to ‘pick sides’ and identify with one of these approaches at the exclusion of others? Or, are they complementary or mutually supportive? As is typical of questions of such magnitude, the devil is in the details. For example, it is important to work out what is really distinctive about each of these ways of inquiring about the world. In order to gain some clarity here, we’ll be investigating what some of the current leading thinkers in philosophy, science and religion are actually doing.\n\nThis course, entitled ‘Religion and Science’, is the third of three related courses in our Philosophy, Science and Religion Online series. The course will address five themes, each presented by an expert in the area. \n\n1. Science, Religion, and the Origin of the Universe (Professor Tim Maudlin, NYU )\n2. Buddhism and Science (Professor Graham Priest, CUNY)\n3. Evolution and Design (Dr Kevin Scharp, St Andrews)\n4. Sin Suffering and Salvation: Evolutions Thorny Issues (Dr Bethany Sollereder, Oxford)\n5. Human Uniqueness in Science, Theology, and Ethics (Professor David Clough, Chester)\n\nThe first and second courses in the Philosophy, Science and Religion series, 'Science and Philosophy' and 'Philosophy and Religion' were launched in 2017 and you can sign up to these at any time. It is not necessary to have completed these courses to follow this course. However, completing all three courses will give you a broader understanding of this fascinating topic. Look for: \n\n• Philosophy, Science and Religion I: Science and Philosophy - https://www.coursera.org/learn/philosophy-science-religion-1\n• Philosophy, Science and Religion II: Philosophy and Religion - https://www.coursera.org/learn/philosophy-science-religion-2\n\nUpon successful completion of all three courses, students will:\n\n(1) Understand the main parameters at stake in the current debate between science and religion.\n(2) Have some familiarity with the relevant areas of science that feature in the debate—including cosmology, evolution, and the neurosciences—and will have begun to engage with them conceptually.\n(3) Have encountered key philosophical approaches to the interface between science and religion, and will have had the opportunity to engage them in practice.\n(4) Have embarked constructively in cross-disciplinary conversations.\n(5) Have demonstrated an openness to personal growth through a commitment to dialogue across intellectual and spiritual boundaries.\n\nYou can also follow us on Twitter at https://twitter.com/EdiPhilOnline and you can follow the hashtag #psrmooc",
"id": "zqK9dFM2EeaIlw57rh81AQ",
"slug": "philosophy-science-religion-3",
"instructorIds": "['952121', '2494928', '15796482', '20461450', '1935119']",
"specializations": "[]",
"partnerIds": "['14']",
"name": "Philosophy, Science and Religion: Religion and Science"
},
{
"FIELD1": 89,
"courseType": "v2.ondemand",
"description": "In their ambition to capture “real life,” Japanese painters, poets, novelists and photographers of the nineteenth century collaborated in ways seldom explored by their European contemporaries. This course offers learners the chance to encounter and appreciate behavior, moral standards and some of the material conditions surrounding Japanese artists in the nineteenth century, in order to renew our assumptions about what artistic “realism” is and what it meant.\n\nLearners will walk away with a clear understanding of how society and the individual were conceived of and represented in early modern Japan. Unlike contemporary western art forms, which acknowledge their common debt as “sister arts” but remain divided by genre and discourse, Japanese visual and literary culture tended to combine, producing literary texts inspired by visual images, and visual images which would then be inscribed with poems and prose. Noticing and being able to interpret this indivisibility of visual/literary cultures is essential in understanding the social and psychological values embedded within the beauty of Japanese art.",
"id": "fYdWi52JEeWIXgpWJNgyEw",
"slug": "visual-literary-culture-in-japan",
"instructorIds": "['28167989']",
"specializations": "[]",
"partnerIds": "['76']",
"name": "Words Spun Out of Images: Visual and Literary Culture in Nineteenth Century Japan"
},
{
"FIELD1": 90,
"courseType": "v2.ondemand",
"description": "Knowing yourself, your team, your manager, and your organization are keys to personal and business success. What were once labeled soft skills are now modern requirements in today's workplace - especially if you are trying to get in the door or are already leading a team. This course is specifically designed for the:\n\n -Job Seeker: You will create a usable cover letter with feedback from your peers as well as develop exceptional responses to some of the most common, yet challenging interview questions. We will get you the skills to help get in the door!\n\n -Team Member: You will develop an action plan to confront your personality weaknesses and highlight your strengths so you can ace your annual review. We will also cover strategies that will help you uncover your true worth so you can ask with more confidence. We will get you the skills to get ahead!\n\n -Manager: You will create an effective action plan for an employee, team, or organization based on your new knowledge of personality types and you will create a 360 degree review plan to better identify your strengths and weaknesses. We will get you the skills to rise above the rest!\n\nWe will dive deep into the types and teach you how to translate your new knowledge into business success by leveraging personality and emotional intelligence in the workplace - wherever you may be! Join us!",
"id": "PI5sDtTUEeWoww7Hc7148Q",
"slug": "personality-types-at-work",
"instructorIds": "['5807257']",
"specializations": "[]",
"partnerIds": "['31']",