-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcourse_data.sql
405 lines (402 loc) · 635 KB
/
course_data.sql
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
-- --------------------------------------------------------
-- Host: localhost
-- Server version: 5.6.10 - MySQL Community Server (GPL)
-- Server OS: Win32
-- HeidiSQL version: 7.0.0.4053
-- Date/time: 2013-04-24 22:48:10
-- --------------------------------------------------------
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET NAMES utf8 */;
/*!40014 SET FOREIGN_KEY_CHECKS=0 */;
-- Dumping structure for table sjsucsor_160s1g1.course_data
CREATE TABLE IF NOT EXISTS `course_data` (
`id` int(5) NOT NULL AUTO_INCREMENT,
`title` text NOT NULL,
`short_desc` text NOT NULL,
`long_desc` text NOT NULL,
`course_link` text NOT NULL,
`video_link` text NOT NULL,
`start_date` date NOT NULL,
`course_length` int(11) NOT NULL,
`course_image` text NOT NULL,
`category` varchar(100) NOT NULL,
`site` text NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=739 DEFAULT CHARSET=utf8;
-- Dumping data for table sjsucsor_160s1g1.course_data: ~321 rows (approximately)
DELETE FROM `course_data`;
/*!40000 ALTER TABLE `course_data` DISABLE KEYS */;
INSERT INTO `course_data` (`id`, `title`, `short_desc`, `long_desc`, `course_link`, `video_link`, `start_date`, `course_length`, `course_image`, `category`, `site`) VALUES
(370, 'Machine Learning', 'Learn about the most effective machine learning techniques, and gain practice implementing them and getting them to work for yourself.', '<p>Machine learning is the science of getting computers to act without being\n explicitly programmed. In the past decade, machine learning has given us\n self-driving cars, practical speech recognition, effective web search,\n and a vastly improved understanding of the human genome. Machine learning\n is so pervasive today that you probably use it dozens of times a day without\n knowing it. Many researchers also think it is the best way to make progress\n towards human-level AI. In this class, you will learn about the most effective\n machine learning techniques, and gain practice implementing them and getting\n them to work for yourself. More importantly, you\'ll learn about not only\n the theoretical underpinnings of learning, but also gain the practical\n know-how needed to quickly and powerfully apply these techniques to new\n problems. Finally, you\'ll learn about some of Silicon Valley\'s best practices\n in innovation as it pertains to machine learning and AI.</p>\n<p>This course provides a broad introduction to machine learning, datamining,\n and statistical pattern recognition. Topics include: (i) Supervised learning\n (parametric/non-parametric algorithms, support vector machines, kernels,\n neural networks). (ii) Unsupervised learning (clustering, dimensionality\n reduction, recommender systems, deep learning). (iii) Best practices in\n machine learning (bias/variance theory; innovation process in machine learning\n and AI). The course will also draw from numerous case studies and applications,\n so that you\'ll also learn how to apply learning algorithms to building\n smart robots (perception, control), text understanding (web search, anti-spam),\n computer vision, medical informatics, audio, database mining, and other\n areas.</p>', 'https://www.coursera.org/course/ml', 'http://www.youtube.com/watch?v=e0WKJLovaZg', '2013-04-22', 10, 'https://s3.amazonaws.com/coursera/topics/ml/large-icon.png', 'Statistics and Data Analysis, Computer Science: Artificial Intelligence', 'Coursera'),
(371, 'Probabilistic Graphical Models', 'In this class, you will learn the basics of the PGM representation and how to construct them, using both human knowledge and machine learning techniques.', '<p><strong>What are Probabilistic Graphical Models?</strong></p>\n<p>Uncertainty is unavoidable in real-world applications: we can almost never predict with certainty what will happen in the future, and even in the present and the past, many important aspects of the world are not observed with certainty. Probability theory gives us the basic foundation to model our beliefs about the different possible states of the world, and to update these beliefs as new evidence is obtained. These beliefs can be combined with individual preferences to help guide our actions, and even in selecting which observations to make. While probability theory has existed since the 17th century, our ability to use it effectively on large problems involving many inter-related variables is fairly recent, and is due largely to the development of a framework known as Probabilistic Graphical Models (PGMs). This framework, which spans methods such as Bayesian networks and Markov random fields, uses ideas from discrete data structures in computer science to efficiently encode and manipulate probability distributions over high-dimensional spaces, often involving hundreds or even many thousands of variables. These methods have been used in an enormous range of application domains, which include: web search, medical and fault diagnosis, image understanding, reconstruction of biological networks, speech recognition, natural language processing, decoding of messages sent over a noisy communication channel, robot navigation, and many more. The PGM framework provides an essential tool for anyone who wants to learn how to reason coherently from limited and noisy observations.</p>\nIn this class, you will learn the basics of the PGM representation and how to construct them, using both human knowledge and machine learning techniques; you will also learn algorithms for using a PGM to reach conclusions about the world from limited and noisy evidence, and for making good decisions under uncertainty. The class covers both the theoretical underpinnings of the PGM framework and practical skills needed to apply these techniques to new problems.', 'https://www.coursera.org/course/pgm', 'http://www.youtube.com/watch?v=bVMBe50GfnI', '2013-04-08', 11, 'https://s3.amazonaws.com/coursera/topics/pgm/large-icon.png', 'Computer Science: Artificial Intelligence', 'Coursera'),
(372, 'Human-Computer Interaction', 'Helping you build human-centered design skills, so that you have the principles and methods to create excellent interfaces with any technology.', 'In this course, you will learn how to design technologies that bring people\njoy, rather than frustration. You\'ll learn several techniques for rapidly\nprototyping and evaluating multiple interface alternatives -- and why rapid\nprototyping and comparative evaluation are essential to excellent interaction\ndesign. You\'ll learn how to conduct fieldwork with people to help you get\ndesign ideas. How to make paper prototypes and low-fidelity mock-ups that\nare interactive -- and how to use these designs to get feedback from other\nstakeholders like your teammates, clients, and users. You\'ll learn principles\nof visual design so that you can effectively organize and present information\nwith your interfaces. You\'ll learn principles of perception and cognition\nthat inform effective interaction design. And you\'ll learn how to perform\nand analyze controlled experiments online. In many cases, we\'ll use Web\ndesign as the anchoring domain. A lot of the examples will come from the\nWeb, and we\'ll talk just a bit about Web technologies in particular. When\nwe do so, it will be to support the main goal of this course, which is\nhelping you build human-centered design skills, so that you have the principles\nand methods to create excellent interfaces with any technology.', 'https://www.coursera.org/course/hci', 'http://www.youtube.com/watch?v=GBwLAqOjbrA', '2013-03-31', 9, 'https://s3.amazonaws.com/coursera/topics/hci/large-icon.png', 'Information, Tech, and Design, Computer Science: Software Engineering', 'Coursera'),
(373, 'Natural Language Processing', 'In this class, you will learn fundamental algorithms and mathematical models for processing natural language, and how these can be used to solve practical problems.', '<p>This course covers a broad range of topics in natural language processing, including word and sentence tokenization, text classification and sentiment analysis, spelling correction, information extraction, parsing, meaning extraction, and question answering, We will also introduce the underlying theory from probability, statistics, and machine learning that are crucial for the field, and cover fundamental algorithms like n-gram language modeling, naive bayes and maxent classifiers, sequence models like Hidden Markov Models, probabilistic dependency and constituent parsing, and vector-space models of meaning.</p>\nWe are offering this course on Natural Language Processing free and online to students worldwide, continuing Stanford\'s exciting forays into large scale online instruction. Students have access to screencast lecture videos, are given quiz questions, assignments and exams, receive regular feedback on progress, and can participate in a discussion forum. Those who successfully complete the course will receive a statement of accomplishment. Taught by Professors Jurafsky and Manning, the curriculum draws from Stanford\'s courses in Natural Language Processing. You will need a decent internet connection for accessing course materials, but should be able to watch the videos on your smartphone. <br><br>\n<p><strong> </strong></p>', 'https://www.coursera.org/course/nlp', 'http://www.youtube.com/watch?v=Fnr4A0tcU-M', '0000-00-00', 8, 'https://s3.amazonaws.com/coursera/topics/nlp/large-icon.png', 'Computer Science: Artificial Intelligence', 'Coursera'),
(374, 'Algorithms: Design and Analysis, Part 1', 'In this course you will learn several fundamental principles of algorithm design: divide-and-conquer methods, graph algorithms, practical data structures (heaps, hash tables, search trees), randomized algorithms, and more.', 'In this course you will learn several fundamental principles of algorithm design. You\'ll learn the divide-and-conquer design paradigm, with applications to fast sorting, searching, and multiplication. You\'ll learn several blazingly fast primitives for computing on graphs, such as how to compute connectivity information and shortest paths. Finally, we\'ll study how allowing the computer to "flip coins" can lead to elegant and practical algorithms and data structures. Learn the answers to questions such as: How do data structures like heaps, hash tables, bloom filters, and balanced search trees actually work, anyway? How come QuickSort runs so fast? What can graph algorithms tell us about the structure of the Web and social networks? Did my 3rd-grade teacher explain only a suboptimal algorithm for multiplying two numbers?', 'https://www.coursera.org/course/algo', 'http://www.youtube.com/watch?v=_gr7o5ynhnw', '0000-00-00', 6, 'https://s3.amazonaws.com/coursera/topics/algo/large-icon.png', 'Computer Science: Theory', 'Coursera'),
(375, 'Cryptography I', 'Learn about the inner workings of cryptographic primitives and how to apply this knowledge in real-world applications!', '<p>Cryptography is an indispensable tool for protecting information in computer systems. This course explains the inner workings of cryptographic primitives and how to correctly use them. Students will learn how to reason about the security of cryptographic constructions and how to apply this knowledge to real-world applications. The course begins with a detailed discussion of how two parties who have a shared secret key can communicate securely when a powerful adversary eavesdrops and tampers with traffic. We will examine many deployed protocols and analyze mistakes in existing systems. The second half of the course discusses public-key techniques that let two or more parties generate a shared secret key. We will cover the relevant number theory and discuss public-key encryption and basic key-exchange. Throughout the course students will be exposed to many exciting open problems in the field.</p>\n<p>The course will include written homeworks and programming labs. The course is self-contained, however it will be helpful to have a basic understanding of discrete probability theory.</p>', 'https://www.coursera.org/course/crypto', 'http://www.youtube.com/watch?v=0t1oCt88XJk', '2013-03-25', 6, 'https://s3.amazonaws.com/coursera/topics/crypto/large-icon.png', 'Computer Science: Theory, Computer Science: Systems & Security', 'Coursera'),
(376, 'Model Thinking', 'In this class, you will learn how to think with models and use them to make sense of the complex world around us.', 'We live in a complex world with diverse people, firms, and governments whose behaviors aggregate to produce novel, unexpected phenomena. We see political uprisings, market crashes, and a never ending array of social trends. How do we make sense of it? Models. Evidence shows that people who think with models consistently outperform those who don\'t. And, moreover people who think with lots of models outperform people who use only one.\nWhy do models make us better thinkers?\nModels help us to better organize information - to make sense of that fire hose or hairball of data (choose your metaphor) available on the Internet. Models improve our abilities to make accurate forecasts. They help us make better decisions and adopt more effective strategies. They even can improve our ability to design institutions and procedures. In this class, I present a starter kit of models: I start with models of tipping points. I move on to cover models explain the wisdom of crowds, models that show why some countries are rich and some are poor, and models that help unpack the strategic decisions of firm and politicians. The models covered in this class provide a foundation for future social science classes, whether they be in economics, political science, business, or sociology. Mastering this material will give you a huge leg up in advanced courses. They also help you in life.\nHere\'s how the course will work.\nFor each model, I present a short, easily digestible overview lecture. Then, I\'ll dig deeper. I\'ll go into the technical details of the model. Those technical lectures won\'t require calculus but be prepared for some algebra. For all the lectures, I\'ll offer some questions and we\'ll have quizzes and even a final exam. If you decide to do the deep dive, and take all the quizzes and the exam, you\'ll receive a certificate of completion. If you just decide to follow along for the introductory lectures to gain some exposure that\'s fine too. It\'s all free. And it\'s all here to help make you a better thinker!', 'https://www.coursera.org/course/modelthinking', 'http://www.youtube.com/watch?v=RX5LBZvEh10', '2013-06-03', 10, 'https://s3.amazonaws.com/coursera/topics/modelthinking/large-icon.png', 'Economics & Finance, Humanities', 'Coursera'),
(377, 'Introduction to Databases', 'This course covers database design and the use of database management systems for applications.', '"Introduction to Databases" had a very successful public offering in fall\n2011, as one of Stanford\'s inaugural three massive open online courses.\nSince then, the course materials have been improved and expanded, and all\nmaterials are available for self-study. Students have access to lectures\nwith in-video quizzes, multiple-choice quiz assignments, automatically-checked\ninteractive programming exercises, midterm and final exams, a discussion\nforum, optional additional exercises with solutions, and pointers to readings\nand resources. Taught by Professor Jennifer Widom, the curriculum draws\nfrom Stanford\'s popular Introduction to Databases course. The material\npresented here is the same as the corresponding material presented on Stanford\'s\nClass2Go platform.\n<br>\n<br>\n\n<h2>Why Learn About Databases?</h2>\nDatabases are incredibly prevalent -- they underlie technology used by\nmost people every day if not every hour. Databases reside behind a huge\nfraction of websites; they\'re a crucial component of telecommunications\nsystems, banking systems, video games, and just about any other software\nsystem or electronic device that maintains some amount of persistent information.\nIn addition to persistence, database systems provide a number of other\nproperties that make them exceptionally useful and convenient: reliability,\nefficiency, scalability, concurrency control, data abstractions, and high-level\nquery languages. Databases are so ubiquitous and important that computer\nscience graduates frequently cite their database class as the one most\nuseful to them in their industry or graduate-school careers.', 'https://www.coursera.org/course/db', '', '0000-00-00', 0, 'https://coursera-course-photos.s3.amazonaws.com/b5/62b8827c61b48597f9b526ce04aaee/dbLogo.jpg', 'Computer Science: Systems & Security, Computer Science: Software Engineering', 'Coursera'),
(378, 'Computer Science 101', 'CS101 teaches the essential ideas of Computer Science for a zero-prior-experience audience. The course uses small coding experiments in the browser to play with the nature of computers, understanding their strengths and limitations. Sign up for the "To be announced" session to be notified by email when the class is next run, and sign up for "Self-Study" to start browsing the class materials right away. Self-Study mode makes all the videos and assignments available to be done at your own pace, but without a certificate of completion at the end.', '<p>CS101 teaches the essential ideas of Computer Science for a zero-prior-experience audience. Computers can appear very complicated, but in reality, computers work within just a few, simple patterns. CS101 demystifies and brings those patterns to life, which is useful for anyone using computers today.</p>\n<p>In CS101, students play and experiment with short bits of "computer code" to bring to life to the power and limitations of computers. Everything works within the browser, so there is no extra software to download or install. CS101 also provides a general background on computers today: what is a computer, what is hardware, what is software, what is the internet. No previous experience is required other than the ability to use a web browser.</p>\n<p>Here is <a href="http://www.youtube.com/watch?v=A9pMbRKq8Ro" target="_blank">another video</a> Nick created for this class.</p>', 'https://www.coursera.org/course/cs101', 'http://www.youtube.com/watch?v=nnBbf8FG5Hw', '0000-00-00', 6, 'https://s3.amazonaws.com/coursera/topics/cs101/large-icon.png', 'Computer Science: Software Engineering', 'Coursera'),
(379, 'Automata', 'This course covers finite automata, context-free grammars, Turing machines, undecidable problems, and intractable problems (NP-completeness).', '<p>I am pleased to be able to offer free over the Internet a course on Automata Theory, based on the material I have taught periodically at Stanford in the course CS154. Students have access to screencast lecture videos, are given quiz questions, assignments and exams, receive regular feedback on progress, and can participate in a discussion forum. Those who successfully complete the course will receive a statement of accomplishment. You will need a decent Internet connection for accessing course materials, but should be able to watch the videos on your smartphone.</p>\nThe course covers four broad areas: (1) Finite automata and regular expressions, (2) Context-free grammars, (3) Turing machines and decidability, and (4) the theory of intractability, or NP-complete problems.<br><strong><br>Why Study Automata Theory?</strong><br><br>This subject is not just for those planning to enter the field of complexity theory, although it is a good place to start if that is your goal. Rather, the course will emphasize those aspects of the theory that people really use in practice. Finite automata, regular expressions, and context-free grammars are ideas that have stood the test of time. They are essential tools for compilers. But more importantly, they are used in many systems that require input that is less general than a full programming language yet more complex than "push this button."<br><br>The concepts of undecidable problems and intractable problems serve a different purpose. Undecidable problems are those for which no computer solution can ever exist, while intractable problems are those for which there is strong evidence that, although they can be solved by a computer, they cannot be solved sufficiently fast that the solution is truly useful in practice. Understanding this theory, and in particular being able to prove that a problem you are facing belongs to one of these classes, allows you to justify taking another approach — simplifying the problem or writing code to approximate the solution, for example.<br><br>During the course, I\'m going to prove a number of things. The purpose of these proofs is not to torture you or confuse you. Neither are the proofs there because I doubt you would believe me were I merely to state some well-known fact. Rather, understanding how these proofs, especially inductive proofs, work, lets you think more clearly about your own work. I do not advocate proofs that programs are correct, but whenever you attempt something a bit complex, it is good to have in mind the inductive proofs that would be needed to guarantee that what you are doing really works in all cases.', 'https://www.coursera.org/course/automata', 'http://www.youtube.com/watch?v=Tb_2HdsqypI', '0000-00-00', 6, 'https://s3.amazonaws.com/coursera/topics/automata/large-icon.png', 'Computer Science: Theory', 'Coursera'),
(380, 'Introduction to Logic', 'In this course, you will learn how to formalize information and reason systematically to produce logical conclusions. We will also examine logic technology and its applications - in mathematics, science, engineering, business, law, and so forth.', '<p>Logic is one of the oldest intellectual disciplines in human history.\n It dates back to the times of Aristotle; it has been studied through the\n centuries; and it is still a subject of active investigation today.</p>\n<p>This course is a basic introduction to Logic. It shows how to formalize\n information in form of logical sentences. It shows how to reason systematically\n with this information to produce all logical conclusions and only logical\n conclusions. And it examines logic technology and its applications - in\n mathematics, science, engineering, business, law, and so forth.</p>\n<p>The course differs from other introductory courses in Logic in two important\n ways. First of all, it teaches a novel theory of logic that improves accessibility\n while preserving rigor. Second, the material is laced with interactive\n demonstrations and exercises that suggest the many practical applications\n of the field.</p>', 'https://www.coursera.org/course/intrologic', 'http://www.youtube.com/watch?v=vk4xLZv1V2w', '2013-04-01', 8, 'https://s3.amazonaws.com/coursera/topics/intrologic/large-icon.png', 'Computer Science: Theory, Mathematics', 'Coursera'),
(381, 'Compilers', 'This course will discuss the major ideas used today in the implementation of programming language compilers. You will learn how a program written in a high-level language designed for humans is systematically translated into a program written in low-level assembly more suited to machines!', '<p>This course will discuss the major ideas used today in the implementation of programming language compilers, including lexical analysis, parsing, syntax-directed translation, abstract syntax trees, types and type checking, intermediate languages, dataflow analysis, program optimization, code generation, and runtime systems. As a result, you will learn how a program written in a high-level language designed for humans is systematically translated into a program written in low-level assembly more suited to machines. Along the way we will also touch on how programming languages are designed, programming language semantics, and why there are so many different kinds of programming languages.</p>\n<p>The course lectures will be presented in short videos. To help you master the material, there will be in-lecture questions to answer, quizzes, and two exams: a midterm and a final. There will also be homework in the form of exercises that ask you to show a sequence of logical steps needed to derive a specific result, such as the sequence of steps a type checker would perform to type check a piece of code, or the sequence of steps a parser would perform to parse an input string. This checking technology is the result of ongoing research at Stanford into developing innovative tools for education, and we\'re excited to be the first course ever to make it available to students.</p>\nAn optional course project is to write a complete compiler for COOL, the Classroom Object Oriented Language. COOL has the essential features of a realistic programming language, but is small and simple enough that it can be implemented in a few thousand lines of code. Students who choose to do the project can implement it in either C++ or Java.<br>I hope you enjoy the course!\n<p><strong>Why Study Compilers?</strong></p>\nEverything that computers do is the result of some program, and all of the millions of programs in the world are written in one of the many thousands of programming languages that have been developed over the last 60 years. Designing and implementing a programming language turns out to be difficult; some of the best minds in computer science have thought about the problems involved and contributed beautiful and deep results. Learning something about compilers will show you the interplay of theory and practice in computer science, especially how powerful general ideas combined with engineering insight can lead to practical solutions to very hard problems. Knowing how a compiler works will also make you a better programmer and increase your ability to learn new programming languages quickly.\n<div></div>', 'https://www.coursera.org/course/compilers', 'http://www.youtube.com/watch?v=sm0QQO-WZlM', '2012-10-01', 11, 'https://s3.amazonaws.com/coursera/topics/compilers/large-icon.png', 'Computer Science: Systems & Security, Computer Science: Software Engineering', 'Coursera'),
(382, 'Computer Vision: The Fundamentals', 'In this course, we will study the concepts and algorithms behind some of the remarkable successes of computer vision - capabilities such as face detection, handwritten digit recognition, reconstructing three-dimensional models of cities and more.', '<p>Computer vision seeks to develop algorithms that replicate one of the most amazing capabilities of the human brain - inferring properties of the external world purely by means of the light reflected from various objects to the eyes. We can determine how far away these objects are, how they are oriented with respect to us, and in relationship to various other objects. We reliably guess their colors and textures, and we can recognize them - this is a chair, this is my dog Fido, this is a picture of Bill Clinton smiling. We can segment out regions of space corresponding to particular objects and track them over time, such as a basketball player weaving through the court.</p>\n<p>In this course, we will study the concepts and algorithms behind some of the remarkable successes of computer vision - capabilities such as face detection, handwritten digit recognition, reconstructing three-dimensional models of cities, automated monitoring of activities, segmenting out organs or tissues in biological images, and sensing for control of robots. We will build this up from fundamentals - an understanding of the geometry and radiometry of image formation, core image processing operations, as well as tools from statistical machine learning. On completing this course a student would understand the key ideas behind the leading techniques for the main problems of computer vision - reconstruction, recognition and segmentation - and have a sense of what computers today can or cannot do.</p>', 'https://www.coursera.org/course/vision', 'http://www.youtube.com/watch?v=Dz75hLtCVj0', '0000-00-00', 0, 'https://s3.amazonaws.com/coursera/topics/vision/large-icon.png', 'Computer Science: Artificial Intelligence', 'Coursera'),
(383, 'Computer Security', 'Learn how to design secure systems and write secure code. ', '<p>In this class you will learn how to design secure systems and write secure code. You will learn how to find vulnerabilities in code and how to design software systems that limit the impact of security vulnerabilities. We will focus on principles for building secure systems and give many real world examples. In addition, the course will cover topics such as:</p><ul><li>memory safety vulnerabilities</li><li>techniques and tools for vulnerability detection and defense</li><li>security principles such as sandboxing, isolation and least privilege</li><li>mobile platform and application security</li><li>basic crypto concepts</li><li>web security</li><li>network security</li><li>malware detection and defense</li></ul><p>Course homework and labs will help students practice the concepts and techniques learned in class, such as how to find vulnerabilities and how to fix them. The labs and projects are designed to help students practice the principles of secure system design.</p>', 'https://www.coursera.org/course/security', 'http://www.youtube.com/watch?v=KXsz5aPCYFM', '0000-00-00', 0, 'https://coursera-course-photos.s3.amazonaws.com/08/22d8b0b6c3bedfc930f9e42c067b82/more-height_2.png', 'Computer Science: Systems & Security', 'Coursera'),
(384, 'Game Theory', 'The course covers the basics: representing games and strategies, the extensive form (which computer scientists call game trees), repeated and stochastic games, coalitional games, and Bayesian games (modeling things like auctions).', 'Popularized by movies such as "A Beautiful Mind", game theory is the mathematical modeling of strategic interaction among rational (and irrational) agents. Beyond what we call \'games\' in common language, such as chess, poker, soccer, etc., it includes the modeling of conflict among nations, political campaigns, competition among firms, and trading behavior in markets such as the NYSE. How could you begin to model eBay, Google keyword auctions, and peer to peer file-sharing networks, without accounting for the incentives of the people using them? The course will provide the basics: representing games and strategies, the extensive form (which computer scientists call game trees), Bayesian games (modeling things like auctions), repeated and stochastic games, and more. We\'ll include a variety of examples including classic games and real-world applications.', 'https://www.coursera.org/course/gametheory', 'http://www.youtube.com/watch?v=d1k7DNuRBoI', '2013-01-07', 7, 'https://s3.amazonaws.com/coursera/topics/gametheory/large-icon.png', 'Computer Science: Theory, Economics & Finance, Computer Science: Artificial Intelligence', 'Coursera'),
(385, 'Modern & Contemporary American Poetry', 'ModPo is a fast-paced introduction to modern and contemporary U.S. poetry, from Dickinson and Whitman to the present. Participants (who need no prior experience with poetry) will learn how to read poems that are supposedly "difficult."', 'In this fast-paced course we will read and encounter and discuss a great range of modern and contemporary U.S. poets working in the "experimental mode," starting with the 19th-century proto-modernists Emily Dickinson and Walt Whitman and ending with 21st-century conceptual poetics. Aside from providing a perhaps handy or helpful survey and chronology of 20th- and 21st-century poetry, this course offers a way of understanding general cultural transitions from modernism to postmodernism. Some people may wish to enroll as much to gain an understanding of the modernism/postmodernism problem through a study of poetry as to gain access to the work of these many poets. Participants do not need to have any prior knowledge of poetry or poetics. The instructor, Al Filreis, rarely lectures, and frequently calls for "the end of the lecture as we know it"; instead, most of the video-recorded lessons will consist of collaborative close readings led by Filreis, seminar-style -- offering models or samples of readers\' interpretations of these knotty but powerful poems, aided by the poetry-minded denizens of the Kelly Writers House on the campus of the University of Pennsylvania.', 'https://www.coursera.org/course/modernpoetry', 'http://www.youtube.com/watch?v=PUok9h6uvO0', '2013-09-07', 10, 'https://s3.amazonaws.com/coursera/topics/modernpoetry/large-icon.png', 'Humanities', 'Coursera'),
(386, 'Introduction to Sociology', 'In this class we will cover the essentials of sociology, to help you better understand your own life and situations far from your experience.', 'We live in a world that is changing very quickly. Sociology gives us the tools to understand our own lives and those quite remote from us. The premise of this class is that in order to benefit from the sociological perspective, we need to learn how to ask certain basic questions. We need to know how to seek answers through methods that strive to be systematic and generalizable.We will begin with some of the essential questions: How are the things that we take to be natural socially constructed? How do we live today? How determined is social life? Does the individual make a difference? How is social order possible? Then we will ask what techniques are available to make sense of these questions. We will review comparative, historical, demographic, experimental, and ethnographic methods. Along the way, we will study core concepts including ethnocentrism, social networks, community, unanticipated consequences, social capital, race, class, and gender. <br><br> We will strive to understand how interaction in micro-level contexts affects larger social processes and how such macro-level processes influence our day to day lives. We will learn to conceive of inequality by asking how race, class, and gender work in tandem. We will address one of the crises of recent sociology -- whether we can actually isolate the effects of social context. We will think about how social science is changing at a time when we are literally swimming in oceans of data generated by the internet.', 'https://www.coursera.org/course/soc101', 'http://www.youtube.com/watch?v=PuULIH_RvOM', '2013-02-01', 7, 'https://s3.amazonaws.com/coursera/topics/soc101/large-icon.png', 'Social Sciences', 'Coursera'),
(387, 'Computer Architecture', 'In this course, you will learn to design the computer architecture of complex modern microprocessors.', 'This course forms a strong foundation in the understanding and design of modern computing systems. Building on a computer organization base, this course explores techniques that go into designing a modern microprocessor. Fundamental understanding of computer architecture is key not only for students interested in hardware and processor design, but is a foundation for students interested in compilers, operating systems, and high performance programming. This course will explore how the computer architect can utilize the increasing number of transistors available to improve the performance of a processor. Focus will be given to architectures that can exploit different forms of parallelism, whether they be implicit or explicit. This course covers architectural techniques such as multi-issue superscalar processors, out-of-order processors, Very Long Instruction Word (VLIW) processors, advanced caching, and multiprocessor systems.', 'https://www.coursera.org/course/comparch', 'http://www.youtube.com/watch?v=nkozG17Q_34', '2012-09-30', 11, 'https://s3.amazonaws.com/coursera/topics/comparch/large-icon.png', 'Computer Science: Systems & Security, Engineering', 'Coursera'),
(388, 'Statistics One', 'Statistics One is a comprehensive yet friendly introduction to statistics.', '<p>Statistics One is designed to be a comprehensive yet friendly introduction\n to fundamental concepts in statistics. Comprehensive means that this course\n provides a solid foundation for students planning to pursue more advanced\n courses in statistics. Friendly means exactly that. The course assumes\n very little background knowledge in statistics and introduces new concepts\n with several fun and easy to understand examples. </p>\n<p>This course is, quite literally, for everyone. If you think you can\'t\n learn statistics, this course is for you. If you had a statistics course\n before but feel like you need a refresher, this course is for you. Even\n if you are a relatively advanced researcher or analyst, this course provides\n a foundation and a context that helps to put one’s work into perspective.</p>\n<p>Statistics One also provides an introduction to the R programming language.\n All the examples and assignments will involve writing code in R and interpreting\n R output. R software is free! What this means is you can download R, take\n this course, and start programming in R after just a few lectures. That\n said, this course is not a comprehensive guide to R or to programming in\n general. </p>', 'https://www.coursera.org/course/stats1', 'http://www.youtube.com/watch?v=O3gVAVFIjYo', '2013-09-22', 12, 'https://s3.amazonaws.com/coursera/topics/stats1/large-icon.png', 'Statistics and Data Analysis', 'Coursera'),
(389, 'Algorithms, Part I', 'This course covers the essential information that every serious programmer needs to know about algorithms and data structures, with emphasis on applications and scientific performance analysis of Java implementations. Part I covers basic iterable data types, sorting, and searching algorithms.', 'An introduction to fundamental data types, algorithms, and data structures,\nwith emphasis on applications and scientific performance analysis of Java\nimplementations. Specific topics covered include: union-find algorithms;\nbasic iterable data types (stack, queues, and bags); sorting algorithms\n(quicksort, mergesort, heapsort) and applications; priority queues; binary\nsearch trees; red-black trees; hash tables; and symbol-table applications.', 'https://www.coursera.org/course/algs4partI', 'http://www.youtube.com/watch?v=gZV5jVF8lJ8', '2013-02-04', 6, 'https://s3.amazonaws.com/coursera/topics/algs4partI/large-icon.png', 'Computer Science: Theory, Computer Science: Software Engineering', 'Coursera'),
(390, 'Algorithms, Part II', 'This course covers the essential information that every serious programmer needs to know about algorithms and data structures, with emphasis on applications and scientific performance analysis of Java implementations.', 'Part II covers graph-processing algorithms, including minimum spanning tree and shortest paths algorithms, and string processing algorithms, including string sorts, tries, substring search, regular expressions, and data compression, and concludes with an overview placing the contents of the course in a larger context.', 'https://www.coursera.org/course/algs4partII', 'http://www.youtube.com/watch?v=GO8frjxq25I', '2013-03-25', 7, 'https://s3.amazonaws.com/coursera/topics/algs4partII/large-icon.png', 'Computer Science: Theory, Computer Science: Software Engineering', 'Coursera'),
(391, 'Listening to World Music', 'Learn the ideas and vocabulary for listening to world music, and examine the music of several world music cultures and how they have entered into mainstream popular culture.', 'With the click of a mouse, now more than ever we are able to access sounds made by people from all around the world. And yet, most of us don\'t listen to the wide diversity of music available to us, probably because it sounds so strange. This class will open up the world of music to you. We begin with a brief history of recording technology, the music industry and the place of world music in that narrative; you are introduced to keywords for talking about music cross-culturally; and then proceed to half a dozen musical cultures around the world. In each of these musical cultures, we examine the ways in which music works in those distant cultures, how it sounds, what it means, who may perform it; and then we ask ourselves where this music has traveled and entered into the Western popular culture as entertainment, political discourse, or artistic purpose.', 'https://www.coursera.org/course/worldmusic', 'http://www.youtube.com/watch?v=uQ3vPGKrwVk', '0000-00-00', 7, 'https://s3.amazonaws.com/coursera/topics/worldmusic/large-icon.png', 'Humanities, Music, Film, and Audio', 'Coursera'),
(392, 'Greek and Roman Mythology', 'This course will focus on the myths of ancient Greece and Rome, as a way of exploring the nature of myth and the function it plays for individuals, societies, and nations.', 'Myths are traditional stories that have endured over a long time. Some\nof them have to do with events of great importance, such as the founding\nof a nation. Others tell the stories of great heroes and heroines and their\nexploits and courage in the face of adversity. Still others are simple\ntales about otherwise unremarkable people who get into trouble or do some\ngreat deed. What are we to make of all these tales, and why do people seem\nto like to hear them? This course will focus on the myths of ancient Greece\nand Rome, as a way of exploring the nature of myth and the function it\nplays for individuals, societies, and nations. We will also pay some attention\nto the way the Greeks and Romans themselves understood their own myths.\nAre myths subtle codes that contain some universal truth? Are they a window\non the deep recesses of a particular culture? Are they a set of blinders\nthat all of us wear, though we do not realize it? Or are they just entertaining\nstories that people like to tell over and over? This course will investigate\nthese questions through a variety of topics, including the creation of\nthe universe, the relationship between gods and mortals, human nature,\nreligion, the family, sex, love, madness, and death.', 'https://www.coursera.org/course/mythology', 'http://www.youtube.com/watch?v=yk9GNVwj6-E', '2013-04-22', 10, 'https://s3.amazonaws.com/coursera/topics/mythology/large-icon.png', 'Humanities', 'Coursera'),
(393, 'Calculus: Single Variable', 'This course provides a brisk, entertaining treatment of differential and integral calculus, with an emphasis on conceptual understanding and applications to the engineering, physical, and social sciences.', '<p>Calculus is one of the grandest achievements of human thought, explaining\n everything from planetary orbits to the optimal size of a city to the periodicity\n of a heartbeat. This brisk course covers the core ideas of single-variable\n Calculus with emphases on conceptual understanding and applications. The\n course is ideal for students beginning in the engineering, physical, and\n social sciences. Distinguishing features of the course include:</p>\n<ul>\n <li>the introduction and use of Taylor series and approximations from the\n beginning;</li>\n <li>a novel synthesis of discrete and continuous forms of Calculus;</li>\n <li>an emphasis on the conceptual over the computational; and</li>\n <li>a clear, entertaining, unified approach.</li>\n</ul>', 'https://www.coursera.org/course/calcsing', 'http://www.youtube.com/watch?v=WRRTQivruy4', '2013-01-07', 13, 'https://coursera-course-photos.s3.amazonaws.com/36/4eb7e2ff2d8a35e0642ffc5a54c27e/new-logo-CSV.jpg', 'Mathematics', 'Coursera'),
(394, 'Networked Life', 'Networked Life will explore recent scientific efforts to explain social, economic and technological structures -- and the way these structures interact -- on many different scales, from the behavior of individuals or small groups to that of complex networks such as the Internet and the global economy.', '<ul>\n<li>What science underlies companies like Facebook, Twitter and Google?</li>\n<li>How does your position in a social network (dis)advantage you?</li>\n<li>What do game theory and the Paris subway have to do with Internet routing?</li>\n<li>How might a social network influence election outcomes?</li>\n<li>What are the economics of email spam?</li>\n<li>How does Google find what you\'re looking for... and exactly how do they make money doing so?</li>\n</ul>\n<p>Networked Life looks at how our world is connected -- socially, strategically and technologically -- and why it matters.</p>\n<p>The answers to the questions above are related. They have been the subject of a fascinating intersection of disciplines, including computer science, physics, psychology, sociology, mathematics, economics and finance. Researchers from these areas all strive to quantify and explain the growing complexity and connectivity of the world around us, and they have begun to develop a rich new science along the way.</p>\n<p>Networked Life will explore recent scientific efforts to explain social, economic and technological structures -- and the way these structures interact -- on many different scales, from the behavior of individuals or small groups to that of complex networks such as the Internet and the global economy.</p>\n<p>This course covers computer science topics and other material that is mathematical, but all material will be presented in a way that is accessible to an educated audience with or without a strong technical background. The majority of the course is grounded in scientific and mathematical findings of the past two decades or less (often much less).</p>\n<p>Networked Life is the flagship course of the new <a href="http://www.mkse.upenn.edu">Market and Social Systems Engineering Program</a> at the University of Pennsylvania.</p>', 'https://www.coursera.org/course/networks', 'http://www.youtube.com/watch?v=b2s0Rwx6Ll4', '0000-00-00', 0, 'https://s3.amazonaws.com/coursera/topics/networks/large-icon.png', 'Information, Tech, and Design, Computer Science: Artificial Intelligence', 'Coursera'),
(395, 'Gamification', 'Gamification is the application of game elements and digital game design techniques to non-game problems, such as business and social impact challenges. This course will teach you the mechanisms of gamification, why it has such tremendous potential, and how to use it effectively.', '<div>Gamification is the application of digital game design techniques to non-game problems, such as business and social impact challenges. Video games are the dominant entertainment form of our time because they are powerful tools for motivating behavior. Effective games leverage both psychology and technology, in ways that can be applied outside the immersive environments of games themselves. Gamification as a business practice has exploded over the past two years. Organizations are applying it in areas such as marketing, human resources, productivity enhancement, sustainability, training, health and wellness, innovation, and customer engagement. Game thinking means more than just dropping in badges and leaderboards; it requires a thoughtful understanding of motivation and design techniques. This course examines the mechanisms of gamification and provides an understanding of its effective use.</div>\n<div></div>', 'https://www.coursera.org/course/gamification', 'http://www.youtube.com/watch?v=rzihbzxC_6Y', '2013-04-01', 6, 'https://s3.amazonaws.com/coursera/topics/gamification/large-icon.png', 'Information, Tech, and Design, Business & Management', 'Coursera'),
(396, 'Health Policy and the Affordable Care Act', 'This course will explore the many problems of the American health care system and discuss the specific ways that the Affordable Care Act will impact access, quality, costs, as well as medical innovation.', '<p>The American health care system has many problems. 50 million people are uninsured. Quality is extremely uneven, with peaks of greatness at leading academic centers but overall poor quality in both process measures and outcomes such as asthma deaths. Finally, the U.S. health care system spends over $8000 per patient per year, nearly double the next highest country. In March 2010, the Affordable Care Act was enacted. Over the next decade or more, the Act will dramatically re-structure the American health care system.</p>\n<p>This course will explore the history and structure of the current American health care system, including the history of and problems with employment-based health insurance, the challenges surrounding access, cost and quality, and the medical malpractice conundrum. The course will then explore the history of health care reform and the challenges that were overcome to achieve health reform in America. Finally, we will delineate the specific ways that the Affordable Care Act improves access and quality, and will control costs. Throughout lessons regarding health economics, health policy, and medical practice will be elucidated.</p>\n<p>This class is open to anyone that is interested in gaining a better understanding of the US health care system and the challenges of health care reform. There are no prerequisites or required knowledge of the health system.</p>', 'https://www.coursera.org/course/healthpolicy', 'http://www.youtube.com/watch?v=I9HDz30z6Kk', '2013-03-25', 8, 'https://s3.amazonaws.com/coursera/topics/healthpolicy/large-icon.png', 'Economics & Finance, Health & Society', 'Coursera'),
(397, 'Vaccines', 'This course will discuss issues regarding vaccines and vaccine safety: the history, science, benefits, and risks of vaccines, together with the controversies surrounding vaccines and answers to common questions that parents have about vaccines.', '<p>This course will discuss issues regarding vaccines and vaccine safety. Specifically, 1) the history of vaccines, focusing on different strategies used during the past two centuries to make them, 2) the science of vaccines, focusing on methods of attenuation of various viruses and bacteria, 3) the benefits of vaccines, focusing on the impact of vaccines on health both in the United States and abroad, 4) the risks of vaccines, both real and perceived, 5) the controversies surrounding vaccines, specifically that vaccines cause autism, multiple sclerosis, neurodevelopmental delays, diabetes or other chronic problems, and 6) answers to common questions that parents have about vaccines, such as the fear that too many vaccines given too soon weaken, overwhelm, or perturb the immune system or that vaccines contain harmful additives or manufacturing residuals.</p>\n<p>For additional information about vaccines, the Vaccine Education Center, or its program for parents, called Parents PACK, please visit:<br><a href="http://vaccine.chop.edu">http://vaccine.chop.edu</a><br><a href="http://vaccine.chop.edu/parents">http://vaccine.chop.edu/parents</a><br><a href="http://www.prevent-hpv.com">http://www.prevent-hpv.com</a></p>', 'https://www.coursera.org/course/vaccines', 'http://www.youtube.com/watch?v=lcNuMVT1fM0', '0000-00-00', 8, 'https://s3.amazonaws.com/coursera/topics/vaccines/large-icon.png', 'Medicine, Health & Society', 'Coursera'),
(398, 'Fundamentals of Pharmacology', 'In this class you will learn how drugs affect the body, how they alter disease processes and how they might produce toxicity. We will discuss how new drugs are tested and developed prior to them being used for patient care. We will describe how personalization of medicine will become a common day reality in patient care.', 'This set of courses will discuss the discipline of pharmacology and its integration throughout medical science. Specifically, the content will be organized as follows: 1) Basic Pharmacological Principles; 2) Applied Pharmacology, the concept of applying the basic principles to each organ system with an emphasis on melding pathophysiology with biologic targets for drug therapy; 3) Therapeutics, considered to be the clinical application of applied pharmacology, including the financial implications of therapy, evidence-based medicine, and the limitations of drug therapy and future directions of therapeutics in all disease states, as well as the legal implications of prescription writing; and 4) Advanced Pharmacological Principles, such as cancer therapeutics.', 'https://www.coursera.org/course/pharm101', 'http://www.youtube.com/watch?v=UhmdnB9YSz8', '0000-00-00', 10, 'https://s3.amazonaws.com/coursera/topics/pharm101/large-icon.png', 'Medicine', 'Coursera'),
(399, 'Cardiac Arrest, Hypothermia, and Resuscitation Science', 'This course will explore new breakthroughs in the treatment of patients during cardiac arrest and after successful resuscitation, including new approaches to cardiopulmonary resuscitation (CPR) and post-arrest care.', 'This course will explore new breakthroughs in the treatment of patients during cardiac arrest and after successful resuscitation, including new approaches to cardiopulmonary resuscitation (CPR) and post-arrest care. Topics will include: (1) the underlying challenges of cardiac arrest in public health, (2) the important role of chest compressions and ventilations, and new thinking about how to improve these approaches in resuscitation care, (3) the role of defibrillation and the exciting growth of automatic external defibrillation (AED) programs, and (4) the new science of targeted temperature management, also known as therapeutic hypothermia, to improve brain function after circulation is restored. This course is designed for a broad audience including the lay public, emergency medical personnel and other health care providers.', 'https://www.coursera.org/course/cardiacarrest', 'http://www.youtube.com/watch?v=hzKeMR8i00E', '2013-05-20', 6, 'https://s3.amazonaws.com/coursera/topics/cardiacarrest/large-icon.png', 'Medicine', 'Coursera'),
(400, 'Basic Behavioral Neurology', 'This course will survey fundamental principles of cognitive and behavioral neurology. The emphasis of the course will be on the neural mechanisms underlying aspects of cognition and on diseases that affect intellect and behavior. No prior background in neurology, medicine, or neuroscience is required.', 'This course will cover content on basic behavioral neurology, including an overview of cognitive localization in the brain; the neural basis of language processing; executive function and decision-making; how the brain sees; how the brain represents the body, numbers, and space; an introduction to dementia (i.e. when is some forgetfulness too much?); and an introduction to cool tools for studying thinking (fMRI, TMS, tDCS, MEG, EEG).', 'https://www.coursera.org/course/neurobehavior', 'http://www.youtube.com/watch?v=ceFOoPrw93c', '0000-00-00', 5, 'https://s3.amazonaws.com/coursera/topics/neurobehavior/large-icon.png', 'Medicine, Biology & Life Sciences', 'Coursera'),
(401, 'Social Network Analysis', 'This course will use social network analysis, both its theory and computational tools, to make sense of the social and information networks that have been fueled and rendered accessible by the internet.', 'Everything is connected: people, information, events and places, all the more so with the advent of online social media. A practical way of making sense of the tangle of connections is to analyze them as networks. In this course you will learn about the structure and evolution of networks, drawing on knowledge from disciplines as diverse as sociology, mathematics, computer science, economics, and physics. Online interactive demonstrations and hands-on analysis of real-world data sets will focus on a range of tasks: from identifying important nodes in the network, to detecting communities, to tracing information diffusion and opinion formation.', 'https://www.coursera.org/course/sna', 'http://www.youtube.com/watch?v=AJGGiAb47S4', '0000-00-00', 9, 'https://s3.amazonaws.com/coursera/topics/sna/large-icon.png', 'Information, Tech, and Design, Computer Science: Artificial Intelligence', 'Coursera'),
(402, 'Securing Digital Democracy', 'In this course, you\'ll learn what every citizen should know about the security risks--and future potential — of electronic voting and Internet voting.', 'Computer technology has transformed how we participate in democracy. The way we cast our votes, the way our votes are counted, and the way we choose who will lead are increasingly controlled by invisible computer software. Most U.S. states have adopted electronic voting, and countries around the world are starting to collect votes over the Internet. However, computerized voting raises startling security risks that are only beginning to be understood outside the research lab, from voting machine viruses that can silently change votes to the possibility that hackers in foreign countries could steal an election. This course will provide the technical background and public policy foundation that 21st century citizens need to understand the electronic voting debate. You\'ll learn how electronic voting and Internet voting technologies work, why they\'re being introduced, and what problems they aim to solve. You\'ll also learn about the computer- and Internet-security risks these systems face and the serious vulnerabilities that recent research has demonstrated. We\'ll cover widely used safeguards, checks, and balances — and why they are often inadequate. Finally, we\'ll see how computer technology has the potential to improve election security, if it\'s applied intelligently. Along the way, you\'ll hear stories from the lab and from the trenches on a journey that leads from Mumbai jail cells to the halls of Washington, D.C. You\'ll come away from this course understanding why you can be confident your own vote will count — or why you should reasonably be skeptical.', 'https://www.coursera.org/course/digitaldemocracy', 'http://www.youtube.com/watch?v=eXSF798qnCA', '0000-00-00', 7, 'https://s3.amazonaws.com/coursera/topics/digitaldemocracy/large-icon.png', 'Information, Tech, and Design, Computer Science: Systems & Security', 'Coursera'),
(403, 'Introduction to Finance', 'This course will introduce you to frameworks and tools to measure value; both for corporate and personal assets. It will also help you in decision-making, again at both the corporate and personal levels.', 'This course is primarily devoted to the fundamental principles of valuation. We will learn and apply the concepts of time value of money and risk to understand the major determinants of value creation. We will use both theory and real world examples to demonstrate how to value any asset. <br>', 'https://www.coursera.org/course/introfinance', 'http://www.youtube.com/watch?v=7xy0mKUCXV4', '2013-06-03', 0, 'https://s3.amazonaws.com/coursera/topics/introfinance/large-icon.png', 'Economics & Finance, Business & Management', 'Coursera'),
(404, 'Fantasy and Science Fiction: The Human Mind, Our Modern World', 'We understand the world — and our selves — through stories. Then some of those hopes and fears become the world.', 'Fantasy is a key term both in psychology and in the art and artifice of humanity. The things we make, including our stories, reflect, serve, and often shape our needs and desires. We see this everywhere from fairy tale to kiddie lit to myth; from "Cinderella" to <i>Alice in Wonderland </i>to <i>Superman</i>; from building a fort as a child to building ideal, planned cities as whole societies. Fantasy in ways both entertaining and practical serves our persistent needs and desires and illuminates the human mind. Fantasy expresses itself in many ways, from the comfort we feel in the godlike powers of a fairy godmother to the seductive unease we feel confronting Dracula. From a practical viewpoint, of all the fictional forms that fantasy takes, science fiction, from <i>Frankenstein</i> to <i>Avatar</i>, is the most important in our modern world because it is the only kind that explicitly recognizes the profound ways in which science and technology, those key products of the human mind, shape not only our world but our very hopes and fears. This course will explore Fantasy in general and Science Fiction in specific both as art and as insights into ourselves and our world. <br><br>\n<h2>Work Expectations</h2>\nFor further information about the coursework, please see the <a href="http://spark-public.s3.amazonaws.com/fantasysf/Documents/WorkExpectations.html"> Work Expectations</a> page.', 'https://www.coursera.org/course/fantasysf', 'http://www.youtube.com/watch?v=wgNrVnjvjKo', '2013-06-03', 11, 'https://s3.amazonaws.com/coursera/topics/fantasysf/large-icon.png', 'Humanities', 'Coursera'),
(405, 'Internet History, Technology, and Security', 'What is the Internet? How was it created? How does it work?', 'The impact of technology and networks on our lives, culture, and society continues to increase. The very fact that you can take this course from anywhere in the world requires a technological infrastructure that was designed, engineered, and built over the past sixty years. To function in an information-centric world, we need to understand the workings of network technology. This course will open up the Internet and show you how it was created, who created it and how it works. Along the way we will meet many of the innovators who developed the Internet and Web technologies that we use today. <br><br>\n<h2>What You Will Learn</h2>\nAfter this course you will not take the Internet and Web for granted. You will be better informed about important technological issues currently facing society. You will realize that the Internet and Web are spaces for innovation and you will get a better understanding of how you might fit into that innovation. If you get excited about the material in this course, it is a great lead-in to taking a course in Web design, Web development, programming, or even network administration. At a minimum, you will be a much wiser network citizen.', 'https://www.coursera.org/course/insidetheinternet', 'http://www.youtube.com/watch?v=Ob9cgyZ7e2U', '2013-06-03', 11, 'https://s3.amazonaws.com/coursera/topics/insidetheinternet/large-icon.png', 'Information, Tech, and Design, Computer Science: Systems & Security', 'Coursera'),
(406, 'Computer Vision: From 3D Reconstruction to Visual Recognition', 'This course delivers a systematic overview of computer vision, emphasizing two key issues in modeling vision: space and meaning. We will study the fundamental theories and important algorithms of computer vision together, starting from the analysis of 2D images, and culminating in the holistic understanding of a 3D scene.', '<div>When a 3-dimensional world is projected onto a 2-dimensional image, such as the human retina or a photograph, reconstructing back the layout and contents of the real-world becomes an ill-posed problem that is extremely difficult to solve. Humans possess the remarkable ability to navigate and understand the visual world by solving the inversion problem going from 2D to 3D. Computer Vision, a modern discipline of artificial intelligence, seeks to imitate such abilities of humans to recognize objects, navigate scenes, reconstruct layouts, and understand the geometric space and semantic meaning of the visual world. These abilities are critical in many applications including personal robotics, autonomous driving and exploration as well as photo organization, image or video retrieval and human-computer interaction. </div>\n<div>This course delivers a systematic overview of computer vision, comparable to an advanced graduate level class. We emphasize on two key issues in modeling vision: space and meaning. We begin by laying out the main problems vision needs to solve: mapping out the 3D structure of objects and scenes, recognizing objects, segmenting objects, recognizing meaning of scenes, understanding movements of humans, etc. Motivated by these important problems centered on the understanding of space and meaning, we will study the fundamental theories and important algorithms of computer vision together, starting from the analysis of 2D images, and culminating in the holistic understanding of a 3D scene</div>', 'https://www.coursera.org/course/computervision', 'http://www.youtube.com/watch?v=8qLMDGQ02eI', '2013-01-01', 0, 'https://s3.amazonaws.com/coursera/topics/computervision/large-icon.png', 'Computer Science: Artificial Intelligence', 'Coursera'),
(407, 'Experimental Genome Science', 'Each of our cells contains nearly identical copies of our genome, which provides instructions that allow us to develop and function. This course serves as an introduction to the main laboratory and theoretical aspects of genomics and is divided into themes: genomes, genetics, functional genomics, systems biology, single cell approaches, proteomics, and applications.', '<p>Each of our cells contains nearly identical copies of our genome, which provides instructions that allow us to develop and function. The field of Genomics focuses on the structure and function of genomes and plays a major and increasing role in both medicine and research. This course serves as an introduction to the main laboratory and theoretical aspects of genomics and is divided into themes: genomes, genetics, functional genomics, systems biology, single cell approaches, proteomics, and applications. We start with the basics, DNA sequencing and the genome project, then move to high throughput sequencing methods and applications. Next we introduce principles of genetics and then apply them in clinical genetics and other large-scale sequencing projects. In the functional genomics unit, we start with RNA expression dynamics, analysis of alternative splicing, epigenomics and ChIP-seq, and metagenomics. Model organisms and forward and reverse genetics screens are then discussed, along with quantitative trait locus (QTL) and eQTL analysis. After that, we introduce integrative and single cell genomics approaches and systems biology. Finally, we conclude by introducing in applying proteomic approaches.</p><div><br></div>', 'https://www.coursera.org/course/genomescience', 'http://www.youtube.com/watch?v=WTvntDF4XL8', '2012-10-15', 14, 'https://s3.amazonaws.com/coursera/topics/genomescience/large-icon.png', 'Biology & Life Sciences', 'Coursera'),
(408, 'A History of the World since 1300', 'This course will examine the ways in which the world has grown more integrated yet more divided over the past 700 years.', 'This course explores the history of the modern world since Chinggis Khan. It focuses on the connections between societies from the time of the Mongol conquests and the gradual, but accelerating ways in which connections became ties of inter-dependence. The relations between societies are what will concern us. The forces pulling the world together vary from religious to economic, political to intellectual. These forces bring the world together, but they also create new divisions. Nowadays, we call this "globalization." That term has tended to emphasize the drive to worldwide integration; the view of globalization taken in this course emphasizes disintegration as well as integration. We will tackle some very basic questions: How do we explain the staggering wealth of China in the centuries up to 1750, as well as China\'s recent ascent? Where did the United States come from, and where is it headed? What are the significance and legacies of empire in the world? How have world wars and revolutions shaped the international system over time? What exactly is globalization, and how does today\'s globalization compare with the past? How has the relationship between humans and nature changed over the centuries?', 'https://www.coursera.org/course/wh1300', 'http://www.youtube.com/watch?v=lNP8w6b217I', '2012-09-17', 14, 'https://s3.amazonaws.com/coursera/topics/wh1300/large-icon.png', 'Humanities', 'Coursera'),
(409, 'Analytic Combinatorics, Part I', 'This course teaches a calculus that enables precise quantitative predictions of large combinatorial structures. Part I covers generating functions and real asymptotics and then introduces the symbolic method in the context of applications in the analysis of algorithms and basic structures such as permutations, trees, strings, words, and mappings.', 'Analytic Combinatorics aims to enable precise quantitative predictions of the properties of large combinatorial structures. The theory has emerged over recent decades as essential both for the scientific analysis of algorithms in computer science and for the study of scientific models in many other disciplines, including probability theory, statistical physics, computational biology and information theory. Part I of this course covers recurrence relations, generating functions, asymptotics, and fundamental structures such as trees, permutations, strings, tries, words, and mappings, in the context of applications to the analysis of algorithms.', 'https://www.coursera.org/course/introACpartI', 'http://www.youtube.com/watch?v=Zrq-8qZks3U', '2013-02-01', 5, 'https://s3.amazonaws.com/coursera/topics/introACpartI/large-icon.png', 'Mathematics', 'Coursera'),
(410, 'Analytic Combinatorics, Part II', 'This course teaches a calculus that enables precise quantitative predictions of large combinatorial structures. Part II introduces the symbolic method to derive functional relations among ordinary, exponential, and multivariate generating functions, and methods in complex analysis for deriving accurate asymptotics from the GF equations.', 'Analytic Combinatorics is based on formal methods for deriving functional relationships on generating functions and asymptotic analysis treating those functions as functions in the complex plane. Part II covers the symbolic method for defining generating functions immediately from combinatorial constructions, then develops methods for directly deriving asymptotic results from those generating functions, using complex asymptotics, singularity analysis, saddle-point asymptotics, and limit laws. The course teaches the precept "if you can specify it, you can analyze it".', 'https://www.coursera.org/course/introACpartII', 'http://www.youtube.com/watch?v=VqrQ8tjjUuo', '2013-03-01', 6, 'https://s3.amazonaws.com/coursera/topics/introACpartII/large-icon.png', 'Mathematics', 'Coursera'),
(411, 'Networks: Friends, Money, and Bytes', 'A course driven by 20 practical questions about wireless, web, and the Internet, about how products from companies like Apple, Google, Facebook, Netflix, Amazon, Ericsson, HP, Skype and AT&T work.', 'You pick up your iPhone while waiting in line at a coffee shop. You google a not-so-famous actor, get linked to a Wikipedia entry listing his recent movies and popular YouTube clips of several of them. You check out user reviews on Amazon and pick one, download that movie on BitTorrent or stream that in Netflix. But suddenly the WiFi logo on your phone is gone and you\'re on 3G. Video quality starts to degrade, but you don\'t know if it\'s the server getting crowded or the Internet is congested somewhere. In any case, it costs you $10 per Gigabyte, and you decide to stop watching the movie, and instead multitask between sending tweets and calling your friend on Skype, while songs stream from iCloud to your phone. You\'re happy with the call quality, but get a little irritated when you see there\'re no new followers on Twitter. You may wonder how they all kind of work, and why sometimes they don\'t. Take a look at the list of 20 questions below. Each question is selected not just for its relevance to our daily lives, but also for the core concepts in the field of networking illustrated by its answers. This course is about formulating and answering these 20 questions.<br><br><strong>New feature:</strong> This course will launch the Grand Challenge Homework (GCH) program. Throughout the course, there will be about 10 open-ended, project-like challenges (in social and technological network engineering) provided to all the enrolled students. Associated with GCH is a Industry and Investor Partners (IIP) program. About 10 leading US companies and venture capitalists in the networking industry have agreed to screen the finalists selected by the teaching staff, and then explore opportunities with the selected students to turn their ideas and prototypes into new products and companies. You pour your creativity and energy in this course, we will help create career-changing opportunities for you. The IIP companies associated with this course range from the world-renowned Bell Labs to a startup founded by the father of DSL, and from Silicon Valley VC\'s like USVP to university-spinoff specialist firms like Osage Partners.', 'https://www.coursera.org/course/friendsmoneybytes', 'http://www.youtube.com/watch?v=dyMdEfabUqE', '2013-02-04', 14, 'https://s3.amazonaws.com/coursera/topics/friendsmoneybytes/large-icon.png', 'Economics & Finance, Information, Tech, and Design, Computer Science: Systems & Security', 'Coursera'),
(412, 'Neuroethics', 'This course will examine the ethical, legal and social issues raised by neuroscience. Topics will include the implications of new knowledge of the brain for our understanding of selfhood, for the meaning of privacy, for the distinction between therapy and enhancement, and for national security.', 'My course on Neuroethics originally scheduled for this spring has been postponed until September. I recognize that this will be an inconvenience for some and for that I apologize, but teaching an online course is a new experience for me, as taking one is for many of you, and as I\'ve been preparing the sessions I have discovered that there is some fine-tuning to be done. Since I don\'t want to compromise on quality I hope you will all understand and bear with me. -- Jonathan D. Moreno, Ph.D.<br><br>“Perhaps a man really dies when his brain stops, when he loses the power to take in a new idea.” --George Orwell<br><br> Neuroethics might well be the most rapidly growing area within bioethics; indeed, in some respects neuroethics has grown as an independent field, with its own journals, professional society and institutional centers. This growth over the past decade is partly attributable to the growth of neuroscience itself and to the challenging philosophical and moral questions it inherently raises. A 2012 Royal Society report observes that “(a)n increasingly mechanistic understanding of the brain raises a host of ethical, legal, and social implications. This has laid the foundation for the emergent field of Neuroethics, which examines ethical issues governing the conceptual and practical developments of neuroscience. Irrespective of their validity, even the claims that modern neuroscience entails the re-examination of complex and sensitive topics like free will, consciousness, identity, and responsibility raises significant ethical issues. As such, neuroethics asks questions that extend beyond the usual umbrella of biomedical ethics.” This course will, therefore, consider the new knowledge and ways of learning about the brain from scientific and ethico-legal and social standpoints. We will examine the core themes of neuroethics, including cognitive enhancement, the nature of the self and personhood, neuroimaging and privacy, and the ways that all these themes are brought together in matters affecting national security.<br><br> <strong><br></strong>', 'https://www.coursera.org/course/neuroethics', 'http://www.youtube.com/watch?v=-p3iFE06q14', '2013-01-01', 0, 'https://s3.amazonaws.com/coursera/topics/neuroethics/large-icon.png', 'Health & Society', 'Coursera'),
(413, 'Rationing and Allocating Scarce Medical Resources', 'This course will explore the complex challenges of allocating scarce medical resources at both the micro and macro level. Students will learn the theories behind allocation and use modern examples to explore how society makes the difficult decisions that arise when there is not enough to go around.', '<p>You have one liver but three patients are awaiting a liver transplant. Who should get the liver? What criteria should be used to select the recipient? Is it fair to give it to an alcoholic? These are some of the questions that arise in the context of rationing and allocating scarce health care resources among particular individuals. These are called micro-allocation decisions. There are also macro-allocation decisions that focus on how health care systems distribute resources across populations. Using the cases of organs for transplantation, the rationing for vaccines in a flu pandemic, and oncology drug shortages, the course will critically examine alternative theories for allocating scarce resources among individuals. Using both the need to establish priorities for global health aid and to define an essential benefit package for health insurance, the course will critically examine diverse theories for macro-allocation from cost-effectiveness analysis to age-based rationing to accountability for reasonableness. There are no prerequisites or required knowledge to take this course.</p>\n<div></div>', 'https://www.coursera.org/course/rationing', 'http://www.youtube.com/watch?v=jtheNsEOW5c', '2013-05-20', 8, 'https://s3.amazonaws.com/coursera/topics/rationing/large-icon.png', 'Health & Society', 'Coursera'),
(414, 'Bioelectricity: A Quantitative Approach', 'Nerves, the heart, and the brain are electrical. How do these things work? This course presents fundamental principles, described quantitatively.', '<p>In this class you will learn how to think about electrically active\ntissue in terms of individual mechanisms, and you will learn to analyze the\nmechanisms quantitatively as well as describe them qualitatively. The\ncourse uses many of the same examples used by Hodgkin and Huxley, who won the\nNobel Prize for their experimental unraveling of the mechanisms of the nerve\naxon of the giant squid, and their creation of a mathematical model of\nmembranes and propagation to understand its function. That work has been\nthe foundational element of most subsequent understandings of electrically\nactive tissue, whether in nerves, the brain or in muscle, including the heart. \n</p>\n<p>\nIn this course, topics include:\n</p><ol>\n<li>The electrical charging of active membranes from the creation and use of differences in ionic concentrations across the membrane.</li>\n<li>The stimulation of the membrane, both naturally and from engineered sources.</li>\n<li>The creation of action potentials by the membrane in response to stimulation.</li>\n<li>The chain reaction of membrane responses, with each small region or cell initiating an action potential in adjacent ones.</li>\n<li>The observation of associated electrical currents in terms of extracellular wave voltages they create, the basis of clinical measurements such as the electrocardiogram.</li>\n</ol>\n<p></p>\n<p>\nThe course will at each step present equations and other quantitative reasoning so that you will be able to go beyond describing what happens qualitatively and be able to link together the phenomena in the mosaic in a quantitative fashion, which is essential to judging whether specific changes in inputs are important to the outcome. Through the use of quantitative analysis, you will learn that all the elements of the system are tied together and be able to link together and analyze the effects of one part on another.\n</p>', 'https://www.coursera.org/course/bioelectricity', 'http://www.youtube.com/watch?v=ekfqX1XQl2Q', '2013-02-04', 9, 'https://s3.amazonaws.com/coursera/topics/bioelectricity/large-icon.png', 'Biology & Life Sciences, Physics', 'Coursera'),
(415, 'Healthcare Innovation and Entrepreneurship', 'This interdisciplinary course focuses on sustainable innovation, introducing entrepreneurial students to the realities of problem identification and solution design within the complex world of healthcare.', 'Healthcare Innovation and Entrepreneurship applies a focused approach toward sustainable healthcare innovation. Students will be introduced to definitions and concepts that include the innovation process, design thinking, “intrapreneurship,” entrepreneurship, six sigma principles of process improvement, regulatory issues, patent law, and the market forces that impact the healthcare innovation process. All students will gain confidence in the basic elements of the initial discovery phase in the healthcare innovation process, including\n<ol>\n<li>Defining and describing key components of the healthcare innovation process.</li>\n<li>Becoming aware of challenges to the quality of healthcare delivery and the opportunity for improved patient care and cost reductions.</li>\n<li>Learning and practicing a step-by-step “needs finding” process and a “needs filtering” process for identifying and prioritizing real clinical problems and opportunities for innovation.</li>\n<li>Developing cross-disciplinary collaboration skills.</li>\n<li>Strengthening communication and leadership skills in advocating health systems change.</li>\n</ol>', 'https://www.coursera.org/course/healthcareinnovation', 'http://www.youtube.com/watch?v=eMFySM3za3k', '2013-04-15', 6, 'https://s3.amazonaws.com/coursera/topics/healthcareinnovation/large-icon.png', 'Health & Society, Business & Management', 'Coursera'),
(416, 'Introductory Human Physiology', 'In this course, students learn to recognize and to apply the basic concepts that govern integrated body function (as an intact organism) in the body\'s nine organ systems.', 'The goal of this course is to provide an introduction to human physiology. The students learn to recognize and explain the basic concepts that govern each organ and organ system and their integration to maintain homeostasis, as well as some clinical aspects of failure of these systems. The organ systems covered include: nervous, muscle, cardiovascular, respiratory, endocrine, male and female reproductive, gastrointestinal, and urinary. <br><br> This human physiology course is targeted to undergraduate and graduate students with an elementary background in biology. In a typical undergraduate setting, this course would fulfill requirements for students applying to professional health science programs such as medical school, nursing, physician assistant, pathologists’ assistant, physical therapy, and doctorate of physical therapy. In addition it is an ideal course in preparation for the MCAT exam.', 'https://www.coursera.org/course/humanphysio', 'http://www.youtube.com/watch?v=qkyMKUqMYdE', '2013-01-23', 12, 'https://s3.amazonaws.com/coursera/topics/humanphysio/large-icon.png', 'Medicine, Biology & Life Sciences', 'Coursera'),
(417, 'Introduction to Genetics and Evolution', 'A whirlwind introduction to evolution and genetics, from basic principles to current applications, including how disease genes are mapped and how we leverage evolutionary concepts to aid humanity.', 'Introduction to Genetics and Evolution gives interested people a very basic overview of the principles behind these very fundamental areas of biology. We often hear about new "genome sequences," commercial kits that can tell you about your ancestry (including pre-human) from your DNA or disease predispositions, debates about the truth of evolution, and why animals behave the way they do. This course provides the basic biology you need to understand all of these issues better and tries to clarify some misconceptions. No prior coursework is assumed.', 'https://www.coursera.org/course/geneticsevolution', 'http://www.youtube.com/watch?v=oWtkfohIG80', '2014-01-03', 12, 'https://s3.amazonaws.com/coursera/topics/geneticsevolution/large-icon.png', 'Biology & Life Sciences', 'Coursera'),
(418, 'Introduction to Astronomy', 'An introduction to astronomy through a broad survey of what we know about the universe and how we know it.', 'In this class, we will be studying, quite literally, everything in the universe. We will start with "classical" astronomy, describing the night sky and organizing what we see as was done in ancient times. We will then embark on a journey, starting here on Earth and progressing outward, to study the Solar system, the Milky Way galaxy, and the wonderful and strange objects we observe in deep space, such as black holes, quasars, and supernovae. We will end with some discussion of what scientists know today about the universe as a whole. Along the way we will introduce some of the methods, theoretical and experimental, that have been used to understand all of this, from Newton\'s laws, through our understanding of light and matter, to Einstein\'s theory of relativity, and from Galileo\'s telescope to WMAP.', 'https://www.coursera.org/course/introastro', 'http://www.youtube.com/watch?v=lOmXPQtQzC8', '2012-11-27', 8, 'https://s3.amazonaws.com/coursera/topics/introastro/large-icon.png', 'Physics', 'Coursera'),
(419, 'Think Again: How to Reason and Argue', 'Reasoning is important. This course will teach you how to do it well. You will learn how to understand and assess arguments by other people and how to construct good arguments of your own about whatever matters to you.', 'Reasoning is important. This course will teach you how to do it\nwell. You will learn some simple but vital rules to follow in thinking\nabout any topic at all and some common and tempting mistakes to avoid in\nreasoning. We will discuss how to identify, analyze, and evaluate\narguments by other people (including politicians, used car salesmen, and\nteachers) and how to construct arguments of your own in order to help you\ndecide what to believe or what to do. These skills will be useful in dealing\nwith whatever matters most to you.', 'https://www.coursera.org/course/thinkagain', 'http://www.youtube.com/watch?v=RttFUoptn9o', '2013-08-26', 12, 'https://s3.amazonaws.com/coursera/topics/thinkagain/large-icon.png', 'Humanities', 'Coursera'),
(420, 'Medical Neuroscience', 'Explore the structure and function of the human central nervous system. Learn why knowledge of human neuroanatomy, neurophysiology, neural plasticity, and new discovery in the brain sciences matters for clinical practice.', 'Medical Neuroscience explores the organization and physiology of the human central nervous system. This course is designed for first-year students in graduate-level health professions programs. It builds upon knowledge acquired in prior studies of cellular and molecular biology, general physiology, and human anatomy. The course provides students an understanding of the essential principles of neurological function, from cellular and molecular mechanisms of neural signaling and plasticity to the organization and function of sensory and motor systems. This course emphasizes the neural and vascular anatomy of the human brain and spinal cord, providing an anatomical framework for localizing lesions within the central nervous system. It also emphasizes the neurobiological foundation for understanding mental illness and disorders of human behavior. <br><br> The overall goal is to equip students in the health professions for interpreting impairments of sensation, action and cognition that accompany neurological injury, disease or dysfunction. Students currently pursuing advanced studies in the brain sciences will benefit from this course by learning the fundamentals of functional human neuroanatomy and how neuroscience discovery translates to clinical practice.', 'https://www.coursera.org/course/medicalneuro', 'http://www.youtube.com/watch?v=q5kUhps_F0Q', '2013-03-25', 8, 'https://s3.amazonaws.com/coursera/topics/medicalneuro/large-icon.png', 'Medicine, Biology & Life Sciences', 'Coursera'),
(421, 'Learn to Program: The Fundamentals', 'Behind every mouse click and touch-screen tap, there is a computer program that makes things happen. This course introduces the fundamental building blocks of programming and teaches you how to write fun and useful programs using the Python language.', 'A computer program is a set of instructions for a computer to follow, just as a recipe is a set of instructions for a chef. Laptops, kitchen appliances, MP3 players, and many other electronic devices all run computer programs. Programs have been written to manipulate sound and video, write poetry, run banking systems, predict the weather, and analyze athletic performance. This course is intended for people who have never seen a computer program. It will give you a better understanding of how computer applications work and teach you how to write your own applications. More importantly, you’ll start to learn computational thinking, which is a fundamental approach to solving real-world problems. Computer programming languages share common fundamental concepts, and this course will introduce you to those concepts using the Python programming language. By the end of this course, you will be able to write your own programs to process data from the web and create interactive text-based games.', 'https://www.coursera.org/course/programming1', 'http://www.youtube.com/watch?v=2lWYkj_EQw0', '2012-09-24', 7, 'https://s3.amazonaws.com/coursera/topics/programming1/large-icon.png', 'Computer Science: Software Engineering', 'Coursera'),
(422, 'Data Analysis', 'Learn about the most effective data analysis methods to solve problems and achieve insight.', '<div>You have probably heard that this is the era of “Big Data”. Stories about\n companies or scientists using data to recommend movies, discover who is\n pregnant based on credit card receipts, or confirm the existence of the\n Higgs Boson regularly appear in Forbes, the Economist, the Wall Street\n Journal, and The New York Times. But how does one turn data into this type\n of insight? The answer is data analysis and applied statistics. Data analysis\n is the process of finding the right data to answer your question, understanding\n the processes underlying the data, discovering the important patterns in\n the data, and then communicating your results to have the biggest possible\n impact. There is a critical shortage of people with these skills in the\n workforce, which is why Hal Varian (Chief Economist at Google) says that\n being a statistician will be the sexy job for the next 10 years.\n <br>\n <br>This course is an applied statistics course focusing on data analysis.\n The course will begin with an overview of how to organize, perform, and\n write-up data analyses. Then we will cover some of the most popular and\n widely used statistical methods like linear regression, principal components\n analysis, cross-validation, and p-values. Instead of focusing on mathematical\n details, the lectures will be designed to help you apply these techniques\n to real data using the R statistical programming language, interpret the\n results, and diagnose potential problems in your analysis. You will also\n have the opportunity to critique and assist your fellow classmates with\n their data analyses.</div>', 'https://www.coursera.org/course/dataanalysis', 'http://www.youtube.com/watch?v=-lutj1vrPwQ', '2013-01-22', 8, 'https://coursera-course-photos.s3.amazonaws.com/a2/ff834601cc552609f63635200d02c5/data.jpg', 'Statistics and Data Analysis', 'Coursera'),
(423, 'Principles of Obesity Economics', 'The resources available to individuals and society and the prices of goods in the market shape our choices - even about the food we eat and the weight at which we live. This course explores the economic motivation for consumer choice and the economic role of government in markets related to obesity.', 'Economics motivates consumer behavior based on preferences, relative prices,\nand time and money constraints. Economics motivates the role for\ngovernment based on market failure. Obesity has been deemed a critical\npublic health problem. This course explores how consumer choices\nlead to individuals being different weights and discusses whether there\nis an economic rationale for government intervention in the markets most\nclosely related to food and activity choices. \n<br>\n<br><strong>Course Objectives</strong> \n<br>\n<ul>\n <li>Define the concept of consumer sovereignty </li>\n <li>Describe how consumers are thought to make choices based on a combination\n of preferences, relatively prices, and time and money constraints </li>\n <li>Describe economic motivations for government action in markets </li>\n <li>Consider arguments regarding the appropriateness of a government role\n in markets that are related to obesity in adults and children</li>\n</ul>', 'https://www.coursera.org/course/obesityecon', 'http://www.youtube.com/watch?v=45IacfhHAQs', '0000-00-00', 5, 'https://coursera-course-photos.s3.amazonaws.com/da/69037a4956540ec10a4ad36dcb6a4a/obesity.jpg', 'Economics & Finance, Health & Society, Food and Nutrition', 'Coursera'),
(424, 'Computing for Data Analysis', 'This course is about learning the fundamental computing skills necessary for effective data analysis. You will learn to program in R and to use R for reading data, writing functions, making informative graphs, and applying modern statistical methods.', 'In this course you will learn how to program in R and how to use R for\neffective data analysis. You will learn how to install and configure software\nnecessary for a statistical programming environment, discuss generic programming\nlanguage concepts as they are implemented in a high-level statistical language.\nThe course covers practical issues in statistical computing which includes\nprogramming in R, reading data into R, creating informative data graphics,\naccessing R packages, creating R packages with documentation, writing R\nfunctions, debugging, and organizing and commenting R code. Topics in statistical\ndata analysis and optimization will provide working examples.', 'https://www.coursera.org/course/compdata', 'http://www.youtube.com/watch?v=gk6E57H6mTs', '2012-09-24', 4, 'https://coursera-course-photos.s3.amazonaws.com/17/ac384e461a3181f477b6674ce6734b/computing.jpg', 'Statistics and Data Analysis', 'Coursera'),
(425, 'Clinical Problem Solving', 'Participants will learn how to move efficiently from patient signs and symptoms to a rational and prioritized set of diagnostic possibilities and will learn how to study and read to facilitate this process.', '<div>Clinical problem solving or diagnostic reasoning is the skill that physicians use to understand a patient’s complaints and then to identify a short, prioritized list of possible diagnoses that could account for those complaints. This differential diagnosis then drives the choice of diagnostic tests and possible treatments. Despite striking advances in information technology, clinical problem solving has not yet been effectively replicated by computers, making it essential that clinicians work to develop expertise in this very important skill set. While television shows make this seem like a magical process, work done by cognitive psychologists and medical educators has helped us understand the ways in which expert physicians reason through these difficult problems to help their patients.</div>\n<div> </div>\n<div>This course will examine the ways physicians think about clinical problem solving and will help participants develop competence in the building blocks of clinical problem solving. The professor will use cases to illustrate different reasoning strategies and will discuss how both correct and incorrect diagnoses result from these strategies. Participants will use sample clinical cases to practice what they have learned through the lectures. Finally, the professor will discuss strategies to help students and young physicians read textbooks and articles in a way that enhances their ability to use information in the clinical environment. </div>\n<div></div>', 'https://www.coursera.org/course/clinprobsolv', 'http://www.youtube.com/watch?v=IA3C79IWTDg', '2013-01-28', 6, 'https://s3.amazonaws.com/coursera/topics/clinprobsolv/large-icon.png', 'Medicine', 'Coursera'),
(426, 'Learn to Program: Crafting Quality Code', 'Not all programs are created equal. In this course, we\'ll focus on writing quality code that runs correctly and efficiently. We\'ll design, code and validate our programs and learn how to compare programs that are addressing the same task.', '<div>Most programs are used for years and are worked on by many people. Having programs that are easy to understand is essential, in the same way that a well-organized essay is far easier to follow than a disorganized one. We’ll show you an approach that helps to break down problems into smaller tasks that are easier to both solve and read.</div>\n<div> </div>\n<div>This design approach also makes it more straightforward to find and fix flaws. You\'ll be introduced to the tools that professional programmers use; they\'re called "testing" and "debugging".</div>\n<div> </div>\n<div>For most complex problems, there are many programs that solve them. Some are inherently slower than others. You\'ll learn how to read two programs and compare them for efficiency.</div>', 'https://www.coursera.org/course/programming2', 'http://www.youtube.com/watch?v=sFoXmWAhhC4', '2013-03-25', 5, 'https://s3.amazonaws.com/coursera/topics/programming2/large-icon.png', 'Computer Science: Software Engineering', 'Coursera'),
(427, 'Nutrition for Health Promotion and Disease Prevention', 'This course covers the basics of normal nutrition for optimal health outcomes and evidence-based diets for a variety of diseases.', '<div>This course covers the basics of normal nutrition for optimal health outcomes\n and evidence-based diets for a variety of diseases. Participants will learn\n the fundamentals of nutrition science and build upon these to explore emerging\n diet therapies, to analyze nutrition research and to plan well-balanced\n meals and dietary interventions for both healthy individuals and those\n with a number of diseases and health conditions. </div>', 'https://www.coursera.org/course/nutrition', 'http://www.youtube.com/watch?v=_o5dXYHFn7U', '2013-06-01', 6, 'https://s3.amazonaws.com/coursera/topics/nutrition/large-icon.png', 'Economics & Finance, Medicine, Health & Society, Food and Nutrition', 'Coursera'),
(428, 'Mathematical Biostatistics Boot Camp', 'This class presents the fundamental probability and statistical concepts used in elementary data analysis. It will be taught at an introductory level for students with junior or senior college-level mathematical training including a working knowledge of calculus. A small amount of linear algebra and programming are useful for the class, but not required. ', 'Statistics is a thriving discipline that provides the fundamental language\nof all empirical research. Biostatistics is simply the field of statistics\napplied in the biomedical sciences.\n<br>\n<br>This course puts forward key mathematical and statistical topics to help\nstudents understand biostatistics at a deeper level. After completing this\ncourse, students will have a basic level of understanding of the goals,\nassumptions, benefits and negatives of probability modeling in the medical\nsciences. This understanding will be invaluable when approaching new statistical\ntopics and will provide students with a framework and foundation for future\nself learning.\n<br>\n<br>Topics include probability, random variables, distributions, expectations,\nvariances, independence, conditional probabilities, likelihood and some\nbasic inferences based on confidence intervals.', 'https://www.coursera.org/course/biostats', 'http://www.youtube.com/watch?v=ekdpaf_WT_8', '2013-04-16', 7, 'https://coursera-course-photos.s3.amazonaws.com/24/51daf21c0661b40a0ff1f82ce9aeab/bootcamp.jpg', 'Mathematics, Biology & Life Sciences, Statistics and Data Analysis', 'Coursera'),
(429, 'Contraception: Choices, Culture and Consequences', 'Learn about the wide range of contraceptive methods, and the public health implications related to access to information and choices about reproductive health.', '<div>This course gives a broad overview of contraceptive methods and explores issues that influence contraceptive choices today. </div>\n<div></div>\n<div>We will discuss the mechanism of action, effectiveness, risk/benefit, side effects and contraindications for each contraceptive method, as well as ask some questions about contraceptive decision making. What are some of the factors that influence contraception use and decision making? Are there specific cultural, ethnic, social and environmental factors? We will also look at the relationship between contraception use and risk of acquiring Sexually Transmitted Infections (STIs). </div>\n<div></div>', 'https://www.coursera.org/course/contraception', 'http://www.youtube.com/watch?v=CCmTQW7OebM', '2013-01-01', 5, 'https://s3.amazonaws.com/coursera/topics/contraception/large-icon.png', 'Medicine, Health & Society', 'Coursera'),
(430, 'Aboriginal Worldviews and Education', 'This course will explore indigenous ways of knowing and how this knowledge can inform education to the benefit of all students.', 'Intended for both Aboriginal and non-Aboriginal learners, this course will explore indigenous ways of knowing and how they can benefit all students. Topics include historical, social, and political issues in Aboriginal education; terminology; cultural, spiritual and philosophical themes in Aboriginal worldviews; and how Aboriginal worldviews can inform professional programs and practices, including but not limited to the field of education. ', 'https://www.coursera.org/course/aboriginaled', 'http://www.youtube.com/watch?v=7KcLvOUzx0c', '2013-02-25', 4, 'https://s3.amazonaws.com/coursera/topics/aboriginaled/large-icon.png', 'Humanities, Education', 'Coursera'),
(431, 'Health for All Through Primary Health Care', 'This course explores why primary health care is central for achieving Health for All. It provides examples of how primary health care has been instrumental in approaching this goal in selected populations and how the principles of primary health care can guide future policies and actions.', 'Two of the most inspiring, least understood, and most often derided terms\nin global health discourse are “Health for All” and “Primary Health Care.”\nIn this course, we will explore these terms in the context of global health,\ntheir origins and meanings, the principles upon which they rest, and examples\nof how these principles have been implemented both at small scale as well\nas at large scale. We will also explore some ultra-low-cost approaches\nto Health for All through primary health care and the promise that primary\nhealth care holds for eventually achieving Health for All.\n<br>\n<br>The course consists of six one-hour lectures with readings and opportunities\nfor discussions among those taking the course and interactions with the\nprofessor.', 'https://www.coursera.org/course/healthforall', 'http://www.youtube.com/watch?v=fm0WZpswPaE', '2013-05-29', 5, 'https://coursera-course-photos.s3.amazonaws.com/6e/fbbc1dbeee809b42eca75986f72d94/international.jpg', 'Health & Society', 'Coursera'),
(432, 'An Introduction to the U.S. Food System: Perspectives from Public Health', 'Explore how food intersects with public health and the environment as it moves from field to plate.', 'A food system encompasses the activities, people and resources involved\nin getting food from field to plate. Along the way, it intersects with\naspects of public health, equity and the environment. In this course,\nwe will provide a brief introduction to the U.S. food system and how food\nproduction practices and what we choose to eat impacts the world in which\nwe live. Through several case studies, we will discuss some key historical\nand political factors that have helped shape the current food system and\nconsider alternative approaches from farm to fork. The course will be led\nby a team of faculty and staff from the Johns Hopkins Center for a Livable\nFuture. Guest lecturers will include experts from a variety of disciplines,\nincluding public health and agriculture.', 'https://www.coursera.org/course/foodsys', 'http://www.youtube.com/watch?v=5pUQOlTnB2o', '0000-00-00', 6, 'https://coursera-course-photos.s3.amazonaws.com/6f/26f3ab13d7272a5643dac9fd41405a/food.jpg', 'Health & Society, Food and Nutrition', 'Coursera'),
(433, 'Community Change in Public Health', 'This course examines the community context of the changes needed to promote the public’s health.', '<div>In bringing about behavior change in public health, we often focus on\n the individual mother, student, or farmer. We should not forget the community\n structure and norms constrain for encouraging individual health behaviors.\n This course examines the community context of the changes needed to promote\n the public’s health. We begin by examining the various definitions of ‘community’\n and the processes by which we ‘diagnose’ or seek to understand the structure\n and characteristics of different types of communities. An appreciation\n of community similarities and differences is necessary lest we fall into\n the trap of designing one-size-fits-all interventions. We need to recognize\n that no matter that outsiders may view a community as poor or neglected,\n we can find strengths and capacities for improvement in each community.\n Identifying community capacities and resources is the first step in facilitating\n community change. Different practical and philosophical approaches to change\n and therefore, examined. Specific to the change process is our recognition\n of the need for communities to participate in the design, implementation\n and evaluation of any intervention. We examine the concept of participation\n in an effort to see how different levels of involvement may affect sustainability\n of community change efforts. Finally a case study of a community participatory\n approach to onchocerciasis control in Africa is presented. Community Directed\n Intervention has subsequently been successfully applied to providing other\n essential primary health care services by and in the community, such as\n insecticide treated bednets, malaria treatment, vitamin A distribution,\n deworming medicines, and pneumonia and diarrhea case management.\n <br>\n <br>\n</div>', 'https://www.coursera.org/course/communitychange', 'http://www.youtube.com/watch?v=xxDMpBRv0u8', '2013-04-22', 6, 'https://coursera-course-photos.s3.amazonaws.com/56/ea1f5f0049eb4b65aabbbb23fbfa8b/community.jpg', 'Health & Society', 'Coursera'),
(434, 'Neural Networks for Machine Learning', 'Learn about artificial neural networks and how they\'re being used for machine learning, as applied to speech and object recognition, image segmentation, modeling language and human motion, etc. We\'ll emphasize both the basic algorithms and the practical tricks needed to get them to work well.', 'Neural networks use learning algorithms that are inspired by our understanding of how the brain learns, but they are evaluated by how well they work for practical applications such as speech recognition, object recognition, image retrieval and the ability to recommend products that a user will like. As computers become more powerful, Neural Networks are gradually taking over from simpler Machine Learning methods. They are already at the heart of a new generation of speech recognition devices and they are beginning to outperform earlier systems for recognizing objects in images. The course will explain the new learning procedures that are responsible for these advances, including effective new proceduresr for learning multiple layers of non-linear features, and give you the skills and understanding required to apply these procedures in many other domains. <br><br> <a href="http://www.youtube.com/watch?v=AyzOUbkUf3M">This YouTube video</a> gives examples of the kind of material that will be in the course, but the course will present this material at a much gentler rate and with more examples.', 'https://www.coursera.org/course/neuralnets', 'http://www.youtube.com/watch?v=KuPai0ogiHk', '2012-09-24', 8, 'https://s3.amazonaws.com/coursera/topics/neuralnets/large-icon.png', 'Statistics and Data Analysis, Computer Science: Artificial Intelligence', 'Coursera'),
(435, 'Vaccine Trials: Methods and Best Practices', 'This course will explore the process of evaluating investigational vaccines in clinical trials including informed consent, recruitment, enrollment, safety evaluation, and quality data collection.', '<div>Vaccines are evaluated through a series of clearly defined controlled\n studies to assess these investigational products for safety, immunogenicity\n and efficacy before they are approved for licensure. All clinical\n vaccine trials are bound by international ethical guidelines and, in the\n case of US trials, Food and Drug Administration (FDA) regulations.</div>\n<div> </div>\n<div>Good Clinical Practice is defined by the International Conferences on\n Harmonization (ICH) as: “A standard for the design, conduct, performance,\n monitoring, auditing, recording, analysis, and reporting of clinical trials\n that provides assurance that the data and reported results are credible\n and accurate, and that the rights, integrity and confidentiality of trial\n subjects are protected.”</div>\n<div> </div>\n<div>That’s a tall order, so how is it done? Individuals who enroll as\n subjects in these trials play an essential role in the development and\n evaluation of new and improved candidate vaccines. They are average\n citizens who volunteer to roll up their sleeves and, in the process, make\n a tremendous difference in society. So why do they volunteer and\n what safeguards do we put in place to protect their rights, safety and\n well-being while in the trial? What are the responsibilities of the\n investigators, sponsors and ethics committees who conduct and oversee these\n trials? </div>\n<div> </div>\n<div>Along with our colleagues, we will introduce you to how GCP is applied\n in clinical vaccine trials to ensure proper and ethical scientific conduct.\n The course will use examples from real vaccine trials to demonstrate the\n application of the FDA Code of Federal Regulations and ICH GCP Guidelines\n to explore methods and best practices involved in implementing phase I\n and II vaccine clinical trials. This short course offering through\n Coursera is based on our work at the Center for Immunization Research and\n an in-depth graduate course taught at the Johns Hopkins Bloomberg School\n of Public Health.</div>\n<div> </div>\n<div>We hope it inspires you to work in this exciting field.</div>', 'https://www.coursera.org/course/vacctrials', 'http://www.youtube.com/watch?v=7gFTebM2dRU', '2013-06-24', 7, 'https://s3.amazonaws.com/coursera/topics/vacctrials/large-icon.png', 'Medicine, Health & Society', 'Coursera'),
(436, 'The Social Context of Mental Health and Illness', 'Learn how social factors promote mental health, influence the onset and course of mental illness, and affect how mental illnesses are diagnosed and treated.', 'Mental health and mental illness used to be something that people didn’t talk about, but now it seems every time we open a newspaper we are hearing about the importance of mental health, or the consequences of mental illness. At this point in our history we understand mental illness and mental health to be largely influenced by biological factors, specifically, workings of the brain. At the same time, we have always known that social factors play a very strong role in promoting mental health and can make big differences in who gets mentally ill, who gets treated for mental illness, and how people can achieve good quality of life after a mental health diagnosis. <br><br>This course is an opportunity to explore how social practices and ideas contribute to the ways in which society, families and individuals are affected by mental health and mental illness. We will look at issues like why some people think mental illness is a myth, how people think about mental health and illness in different cultures, who gets mentally ill and why, how families are affected by mental illness and what interventions are available to treat mental illness and promote mental health.', 'https://www.coursera.org/course/mentalhealth', 'http://www.youtube.com/watch?v=D6kIVzB_sfc', '2013-01-28', 6, 'https://s3.amazonaws.com/coursera/topics/mentalhealth/large-icon.png', 'Health & Society', 'Coursera'),
(437, 'Galaxies and Cosmology', 'An introduction to the modern extragalactic astronomy and cosmology, the physical universe, big bang, formation and evolution of galaxies, quasars, and large-scale structure.', 'This class is an introduction to the modern extragalactic astronomy and cosmology, i.e., the part of astrophysics that deals with the structure and evolution of the universe as a whole, and its major constituents: dark matter, dark energy, galaxies, quasars, large-scale structure, and intergalactic gas. It will cover the subjects including: relativistic cosmological models and their parameters, extragalactic distance scale, cosmological tests, composition of the universe, dark matter, and dark energy; the hot big bang, cosmic nucleosynthesis, recombination, and cosmic microwave background; formation and evolution of structure in the universe; galaxy clusters, large-scale structure and its evolution; galaxies, their properties and fundamental correlations; formation and evolution of galaxies; star formation history of the universe; quasars and other active galactic nuclei, and their evolution; structure and evolution of the intergalactic medium; diffuse extragalactic backgrounds; the first stars, galaxies, and the reionization era. It corresponds to the Ay 21 class taught at Caltech.', 'https://www.coursera.org/course/cosmo', 'http://www.youtube.com/watch?v=ddQrI3_ADfA', '2013-01-07', 9, 'https://s3.amazonaws.com/coursera/topics/cosmo/large-icon.png', 'Physics', 'Coursera'),
(438, 'Principles of Economics for Scientists', 'Quantitative and model-based introduction to basic ideas in economics, and applications to a wide range of real world problems.', 'The impact of economic forces in our lives is sizable and pervasive. For this reason, it is impossible to understand the social and economic forces shaping our lives without a good understanding of basic economic principles. This course provides a quantitative and model-based introduction to such principles, and teaches how to apply them to make sense of a wide range of real world problems. Examples of applications include predicting the impact of technological changes in market prices, calculating the optimal gasoline tax, and measuring the value of new products. <br><br>This is a real Caltech class. It will be taught concurrently to Caltech and on-line students. This has two implications. On the costs side: the class is challenging, highly quantitative, and will demand significant effort. On the benefit side: successful completion of the class will provide you with an in-depth understanding of basic economics, and will permanently change the way you see the world.', 'https://www.coursera.org/course/econ1scientists', 'http://www.youtube.com/watch?v=peb6Ge7AeCk', '2013-01-07', 10, 'https://s3.amazonaws.com/coursera/topics/econ1scientists/large-icon.png', 'Economics & Finance', 'Coursera'),
(439, 'Drugs and the Brain', 'The neuroscience of drugs for therapy, for prevention, and for recreation. You’ll learn the prospects for new generations of medications in psychiatry, aging, and treatment of substance abuse.', '<b></b>What happens in the body when a person smokes a cigarette? After several weeks of smoking? When a person takes antidepressant or antipsychotic medication? A drug for pain or epilepsy? A recreational drug? Neuroscientists are beginning to understand these processes. You’ll learn how drugs enter the brain, how they act on receptors and ion channels, and how “molecular relay races” lead to changes in nerve cells and neural circuits that far outlast the drugs themselves. “Drugs and the Brain” also describes how scientists are gathering the knowledge required for the next steps in preventing or alleviating Parkinson’s, Alzheimer’s, schizophrenia, and drug abuse.', 'https://www.coursera.org/course/drugsandbrain', '', '2012-11-01', 10, 'https://s3.amazonaws.com/coursera/topics/drugsandbrain/large-icon.png', 'Medicine, Biology & Life Sciences', 'Coursera'),
(440, 'Control of Mobile Robots', 'Learn about how to make mobile robots move in effective, safe, predictable, and collaborative ways using modern control theory.', 'This course investigates how to make mobile robots move in effective, safe, and predictable ways. The basic tool for achieving this is "control theory", which deals with the question of how dynamical systems, i.e., systems whose behaviors change over time, can be effectively influenced. In the course, these two domains - controls and robotics - will be interleaved and we will go from the basics of control theory, via robotic examples of increasing complexity - all the way to the research frontier. The course will focus on mobile robots as the target application and problems that will be covered include (1) how to make (teams of) wheeled ground robots avoid collisions while reaching target locations, (2) how to make aerial, quadrotor robots follow paths in the presence of severe disturbances, and (3) how to locomotive bipedal, humanoid robots.', 'https://www.coursera.org/course/conrob', 'http://www.youtube.com/watch?v=SFEvOn7ADj4', '2013-01-28', 7, 'https://s3.amazonaws.com/coursera/topics/conrob/large-icon.png', 'Engineering, Computer Science: Artificial Intelligence', 'Coursera'),
(441, 'Energy 101', 'As a society and individually, we use energy every moment of our lives to improve our quality of life. Energy 101 will develop the big picture and connect the details of our energy use, technology, infrastructure, impact, and future.', 'Energy 101 focuses on the big energy picture giving perspective and context to the details one reads in the daily onslaught of energy news in the headlines. As the number 101 indicates, there are no pre-requisites and no particular training or background needed. The course will review the driving forces of energy used in transportation, building heating and cooling, electrical loads and manufacturing. The current facts and trends of the resulting demands placed on coal, oil, natural gas, nuclear, biomass, solar and wind used to meet these energy demands are then covered. The technologies and characteristics of different energy processes and infrastructure used to convert the renewable, fossil, and nuclear energy into the desired form necessary to accomplish a given task are then described. Economics is always a part of the discussion. The natural laws of thermodynamics limiting these processes are described, as well as future technologies and their potential.', 'https://www.coursera.org/course/energy101', 'http://www.youtube.com/watch?v=lHmE-HI2fQA', '2013-01-28', 9, 'https://s3.amazonaws.com/coursera/topics/energy101/large-icon.png', 'Energy & Earth Sciences', 'Coursera'),
(442, 'Computational Investing, Part I', 'Find out how modern electronic markets work, why stock prices change in the ways they do, and how computation can help our understanding of them. Build algorithms and visualizations to inform investing practice.', '<div><b>Overview<br></b>Why do the prices of some companies’ stocks seem to move up and down together while others move separately? What does portfolio “diversification” really mean and how important is it? What should the price of a stock be? How can we discover and exploit the relationships between equity prices automatically? We’ll examine these questions, and others, from a computational point of view. You will learn many of the principles and algorithms hedge funds and investment professionals use to maximize return and reduce risk in equity portfolios.<br></div><div><br><b>Topics</b></div>We start with a tour of the mathematics and statistics that underlie equity price changes, and the relationships between different groups of equities. We’ll review the most important economic theories of investing and how to create programs that take advantage of them. We’ll look at the data needed to do this, and how to manipulate it effectively. Take a look at the course syllabus <a href="http://wiki.quantsoftware.org/index.php?title=Computational_Investing_I">here</a>.<br><br><span><i>Important note: This is a project oriented course involving Python programming in a Unix environment.<br></i><br><b>Be sure this course is right for you!</b><br>This course is intended for folks who have a strong programming background, but who are new to finance and investing. Check out the two links below to see if the course is a good match.<br><br></span><ul><li><span>Take a look at the course syllabus <a href="http://wiki.quantsoftware.org/index.php?title=Computational_Investing_I">here</a>.</span></li><li><span>Take a look at what other students thought of the course <a href="http://augmentedtrader.wordpress.com/2013/01/28/review-of-computational-investing-part-i-taught-by-tucker-balch/">here</a>.</span></li></ul><span><b>Course options<br></b>You can enroll in the course in several ways:<br><br></span><ul><li><span><b>Regular enrollment. </b>In this track you are expected to watch the videos and complete the assignments.</span></li></ul><ul><li><b>Preview:</b> You can watch the videos without enrolling. The videos will be available as they are published. Follow this link to preview the lectures: <a href="https://class.coursera.org/compinvesting1-002/lecture/preview">https://class.coursera.org/compinvesting1-002/lecture/preview</a> </li></ul><ul><li><b>Signature track: </b>This is a brand new option offered by Coursera. More information below.</li></ul><div><div><b>Outcomes for regular and signature tracks<br></b>At the end of the course you will have created a working market simulator that you can use to test your own investing strategies. You will understand the basic principles of Modern Portfolio Theory and Active Portfolio Management.<br><br><b>Workload<br></b>On average you can expect to spend up to 8 to 12 hours per week on programming.</div></div>', 'https://www.coursera.org/course/compinvesting1', 'http://www.youtube.com/watch?v=HUDwIEeil38', '2012-10-22', 9, 'https://s3.amazonaws.com/coursera/topics/compinvesting1/large-icon.png', 'Economics & Finance, Computer Science: Artificial Intelligence', 'Coursera'),
(443, 'Computational Photography', 'In this course you will learn about the basics of how computation has impacted the entire workflow of photography (i.e., from how images are captured, manipulated and collaborated on, and shared).', 'The goal of this course is to introduce you to the basics of how computation\nhas impacted the entire workflow of photography (i.e., from how images\nare captured, manipulated and collaborated on, and shared). \n<br>\n<br>The course begins with a conceptualization of photography as drawing\nwith light and the capturing of light to form images/videos. You\nwill learn about and understand how the optics and the sensor within a\ncamera are generalized, as well as learn about and understand how the lighting\nand other aspects of the environment are also generalized through computation\nto capture novel images. \n<br>\n<br>Pre- and post-processing techniques used to manipulate and improve images\nwill be discussed. Activities in this course are selected to give\nyou first hand experience with the power of the web and the Internet for\nboth analyzing and sharing images. \n<br>\n<br>This course is interdisciplinary and draws upon concepts and principles\nfrom computer vision, computer graphics, image processing, mathematics\nand optics.\n<br>\n<br>We look forward to your engagement and participation with both the course\nand its discussion forums.\n<br>\n<br>\n<b>About the TA</b>\n\n<br>Denis Lantsman is the TA for the class. Denis is a graduate of Harvey\nMudd College, and is currently finishing his MS in Machine Learning at\nGeorgia Tech. He is responsible for managing the coursera site, monitoring\nthe forums for student feedback, creating the homework assignments and\nquizzes, as well as recording weekly tutorials to help students with their\nprogramming.', 'https://www.coursera.org/course/compphoto', 'http://www.youtube.com/watch?v=zFU30zBxbmc', '2013-03-25', 5, 'https://s3.amazonaws.com/coursera/topics/compphoto/large-icon.png', 'Information, Tech, and Design, Computer Science: Artificial Intelligence', 'Coursera'),
(444, 'An Introduction to Interactive Programming in Python', 'This course is designed to be a fun introduction to the basics of programming in Python. Our main focus will be on building simple interactive games such as Pong, Blackjack and Asteroids.', '<div>This course is designed to help students with very little or no computing\n background learn the basics of building simple interactive applications.\n Our language of choice, Python, is an easy-to learn, high-level computer\n language that is used in many of the computational courses offered on Coursera.\n To make learning Python easy, we have developed a new browser-based programming\n environment that makes developing interactive applications in Python simple.\n These applications will involve windows whose contents are graphical\n and respond to buttons, the keyboard and the mouse.\n <br>\n <br>The primary method for learning the course material will be to work through\n multiple "mini-projects" in Python. To make this class enjoyable,\n these projects will include building fun games such as Pong, Blackjack,\n and Asteroids. When you’ve finished our course, we can’t promise\n that you will be a professional programmer, but we think that you will\n learn a lot about programming in Python and have fun while you’re doing\n it.</div>', 'https://www.coursera.org/course/interactivepython', 'http://www.youtube.com/watch?v=LjCzaz1aEBo', '2013-04-15', 9, 'https://s3.amazonaws.com/coursera/topics/interactivepython/large-icon.png', 'Computer Science: Software Engineering', 'Coursera'),
(445, 'Fundamentals of Online Education: Planning and Application', 'This is an introductory course on the fundamentals of online education. You will learn how to convert your face-to-face class into a robust online course based on theory and practice.', 'In this course you will learn about the fundamentals of online education.\nThe emphasis will be on planning and application. In the planning\nphase, you will explore online learning pedagogy, online course design,privacy\nand copyright issues, online assessments, managing an online class, web\ntools and Learning Management Systems. In the application phase, you\nwill create online learning materials. The final project for the course\nwill consist of you building an online course based on everything that\nyou learned and created in the course.', 'https://www.coursera.org/course/foe', 'http://www.youtube.com/watch?v=-MlSs0gASvU', '0000-00-00', 6, 'https://s3.amazonaws.com/coursera/topics/foe/large-icon.png', 'Information, Tech, and Design, Education', 'Coursera'),
(446, 'Fundamentals of Electrical Engineering', 'This course probes fundamental ideas in electrical engineering, seeking to understand how electrical signals convey information, how bits can represent smooth signals like music and how modern communication systems work.', '<div>The course focuses on the creation, manipulation, transmission, and reception of information by electronic means. The topics covered include elementary signal theory; time- and frequency-domain analysis of signals; conversion of analog signals to a digital form; and how information can be represented with signals. Signal processing, both analog and digital, allow information to be extracted and manipulated. The course then turns to information theory, which demonstrates the technological advantages of digital transmission.</div>\n<div></div>\n<div>The course text was written by the instructor for this course and is entirely online. You can print your own hard copy or view the material entirely online.</div>', 'https://www.coursera.org/course/eefun', 'http://www.youtube.com/watch?v=dENcC_mFbew', '2013-01-21', 12, 'https://s3.amazonaws.com/coursera/topics/eefun/large-icon.png', 'Engineering', 'Coursera'),
(447, 'Analytical Chemistry / Quantitative Analysis and Analytical Chemistry', 'If chemistry is the science of stuff, then analytical chemistry answers the question: what is it? And how much of it do you have? This advanced chemistry course covers the basics of quantitative analysis and analytical chemistry in a one semester format.', 'Analytical chemistry is an advanced topic introduced to chemistry majors\noften in their sophomore year. It is a broad area that covers what\nI refer to as ‘old school’ principles of solution phase chemistry and quantitative\nanalysis, as well as more current treatments that introduce a suite of\nmodern analytical instrumentation. In this course, both areas are\ncovered in an integrated curriculum that emphasizes real-world examples\nof analytical problems. Students who complete this class will see\ntheir knowledge of fundamental chemistry strengthened as they work with\nfamiliar ideas from freshman chemistry (e.g. acids and bases, solubility,\nelectrochemistry, stoichometry) to solve analysis problems. They\nwill also be introduced to the instrumentation of analytical chemistry,\nwith a particular emphasis on chromatography, and learn to apply these\ntools to problems in medicine, manufacturing, materials science and even\nfood chemistry.', 'https://www.coursera.org/course/analyticalchem', 'http://www.youtube.com/watch?v=rWyUwM-GwgE', '2013-05-06', 8, 'https://s3.amazonaws.com/coursera/topics/analyticalchem/large-icon.png', 'Chemistry', 'Coursera'),
(448, 'Chemistry: Concept Development and Application', 'This introduction to fundamental chemical concepts of atomic and molecular structure will emphasize the development of these concepts from experimental observations and scientific reasoning.', 'This course will cover an introduction to the atomic molecular structure of matter, similar to a typical first semester General Chemistry course. The fundamental concepts will be introduced via the Concept Development Approach developed at Rice University and utilizing a free on-line textbook, Concept Development Studies in Chemistry, available via Rice’s Connexions project. In this approach, rather than simply telling you the concepts you need to know and then asking you to memorize them or apply them, we will develop these concepts from experimental observations and scientific reasoning. There are several reasons for using this approach. One reason is that most of us our inductive learners, meaning that we like to make specific observations and then generalize from there. Many of the most significant concepts in Chemistry are counter-intuitive. When we see where those concepts come from, we can more readily accept them, explain them, and apply them. A second reason is that scientific reasoning in general and Chemistry reasoning in particular are inductive processes. This Concept Development approach illustrates those reasoning processes. A third reason is that this is simply more interesting. The structure and reactions of matter are fascinating puzzles to be solved by observation and reasoning. It is more fun intellectually when we can solve those puzzles together, rather than simply have the answers to the riddles revealed at the outset.', 'https://www.coursera.org/course/genchem1', 'http://www.youtube.com/watch?v=1GaESBUPHSw', '2013-01-01', 10, 'https://s3.amazonaws.com/coursera/topics/genchem1/large-icon.png', 'Chemistry', 'Coursera'),
(449, 'Nanotechnology: The Basics', 'Nanotechnology is an emerging area that engages almost every technical discipline – from chemistry to computer science – in the study and application of extremely tiny materials. This short course allows any technically savvy person to go one layer beyond the surface of this broad topic to see the real substance behind the very small.', 'Nanotechnology is an exciting research area that spans disciplines from electrical engineering to biology. Over the last two decades the basic science of this area has launched new technologies, the first examples of which are finding their way into commercial products. This eight lecture course will provide students with a birds eye view into this fast moving area and leave students with an appreciation of the importance and foundation of super small materials and devices.', 'https://www.coursera.org/course/nanotech', 'http://www.youtube.com/watch?v=hbr-NpP9SvA', '0000-00-00', 0, 'https://s3.amazonaws.com/coursera/topics/nanotech/large-icon.png', 'Engineering, Physics, Chemistry', 'Coursera'),
(450, 'Artificial Intelligence Planning', 'The course aims to provide a foundation in artificial intelligence techniques for planning, with an overview of the wide spectrum of different problems and approaches, including their underlying theory and their applications.', 'The course aims to provide a foundation in artificial intelligence techniques for planning, with an overview of the wide spectrum of different problems and approaches, including their underlying theory and their applications. It will allow you to:<p></p>\n<ul>\n<li>Understand different planning problems</li>\n<li>Have the basic know how to design and implement AI planning systems</li>\n<li>Know how to use AI planning technology for projects in different application domains</li>\n<li>Have the ability to make use of AI planning literature</li>\n</ul>\n\n<p>Planning is a fundamental part of intelligent systems. In this course, for example, you will learn the basic algorithms that are used in robots to deliberate over a course of actions to take. Simpler, reactive robots don\'t need this, but if a robot is to act intelligently, this type of reasoning about actions is vital.</p>', 'https://www.coursera.org/course/aiplan', 'http://www.youtube.com/watch?v=LSARePR3yVg', '2014-01-13', 6, 'https://s3.amazonaws.com/coursera/topics/aiplan/large-icon.png', 'Computer Science: Artificial Intelligence', 'Coursera'),
(451, 'Building an Information Risk Management Toolkit', '<div>In this course, you will explore several structured, risk management approaches that guide information security decision-making. </div>\n<div></div>', '<div>In this course, you will explore several structured, risk management approaches that guide information security decision-making. Course topics include: developing and maintaining risk assessments (RA); developing and maintaining risk management plans (RM); regulatory and legal compliance issues affecting risk plans; developing a control framework for mitigating risks; risk transfer; business continuity and disaster recovery planning from the information security perspective.<br><br><p>Consider\nupgrading to an enhanced, more rigorous version of this course offered online\nat the <a href="http://www.pce.uw.edu/courses/building-information-risk-management-toolkit-coursera/online-winter-2013/">University of Washington</a>. You’ll gain access to\nmeaningful interaction with instructors and additional assignments, readings\nand multimedia material, as well as earn a valuable University of Washington\ncredential.</p></div>', 'https://www.coursera.org/course/inforisk', '', '2013-03-11', 10, 'https://coursera-course-photos.s3.amazonaws.com/f2/1f3c174e05ac2b604742aa79a989c5/small-icon.hover.png', 'Information, Tech, and Design, Computer Science: Systems & Security', 'Coursera'),
(452, 'Computational Methods for Data Analysis', '<div>Exploratory and objective data analysis methods applied to the physical, engineering, and biological sciences.</div>\n<div></div>', 'Exploratory and objective data analysis methods applied to the physical,\nengineering, and biological sciences. Brief review of statistical methods\nand their computational implementation for studying time series analysis,\nspectral analysis, filtering methods, principal component analysis, orthogonal\nmode decomposition, and image processing and compression.', 'https://www.coursera.org/course/compmethods', '', '2013-04-01', 10, 'https://coursera-course-photos.s3.amazonaws.com/56/6700226a860641f2aef65cbe81b829/large-icon.png', 'Statistics and Data Analysis', 'Coursera'),
(453, 'Computational Neuroscience', 'Understanding how the brain works is one of the fundamental challenges in science today. This course will introduce you to basic computational techniques for analyzing, modeling, and understanding the behavior of cells and circuits in the brain. You do not need to have any prior background in neuroscience to take this course.', 'This course provides an introduction to basic computational methods for\nunderstanding what nervous systems do and for determining how they function.\nWe will explore the computational principles governing various aspects\nof vision, sensory-motor control, learning, and memory. Specific topics\nthat will be covered include representation of information by spiking neurons,\nprocessing of information in neural networks, and algorithms for adaptation\nand learning. We will make use of Matlab demonstrations and exercises to\ngain a deeper understanding of concepts and methods introduced in the course.\nThe course is primarily aimed at third- or fourth-year undergraduates and\nbeginning graduate students, as well as professionals and distance learners\ninterested in learning how the brain processes information.', 'https://www.coursera.org/course/compneuro', 'http://www.youtube.com/watch?v=exBbVX0pYxo', '2013-04-01', 8, 'https://s3.amazonaws.com/coursera/topics/compneuro/large-icon.png', 'Biology & Life Sciences, Computer Science: Artificial Intelligence', 'Coursera'),
(454, 'Astrobiology and the Search for Extraterrestrial Life', 'Learn about the origin and evolution of life and the search for life beyond the Earth.', 'Over two thousand years ago, the ancient Greeks wondered if other worlds were habitable. In the coming years this question will be experimentally tested. This course, offered by the UK Centre for Astrobiology at the University of Edinburgh, is an introduction to astrobiology. It explores the origin and evolution of life on the Earth and its potential to exist elsewhere. Astrobiology addresses compelling questions of wide interest such as: How did life originate on the Earth? Is this an inevitable process and is life common across the Universe? Astrobiology is an interdisciplinary science that bridges fields as diverse as astrophysics, biology, geosciences and chemistry. <br><br> In this course we will explore what we know about life’s ability to live in extreme environments on the Earth, we will look at different hypotheses for how it originated. We will look at some of the missions to search for life in our own Solar System and on planets orbiting distant stars. We will discuss some of the extreme environments on the Earth that help us understand the limits of life and how life has adapted to cope with extremes. We will explore the possibility of intelligent alien life and some of the implications of its detection. The course will provide a foundation in astrobiology and introduce students to concepts in a diversity of scientific fields.', 'https://www.coursera.org/course/astrobio', 'http://www.youtube.com/watch?v=wz1r4asp6ns', '0000-00-00', 5, 'https://s3.amazonaws.com/coursera/topics/astrobio/large-icon.png', '', 'Coursera'),
(455, 'Designing and Executing Information Security Strategies', '<div>This course provides you with opportunities to integrate and apply your information security knowledge.</div>\n<div></div>', '<p>This course provides you with opportunities to integrate and\napply your information security knowledge.</p>\n\n<p>This course provides you with opportunities to integrate and\napply your information security knowledge. Following the case-study approach,\nyou will be introduced to current, real-world cases developed and presented by\nthe practitioner community. You will design and execute information assurance\nstrategies to solve these cases.</p>\n\n<p>Topics explored include: <br>\nAnalysis and problem solving using\ncases contracted from real world problems in Information Assurance\nincluding: </p>\n\n<ul><li>Selection and application of controls</li><li>Construction of security policies</li><li>Understanding and application of regulatory\n requirements</li><li>Understanding and application of business\n constraints </li><li>Communication of risk to non-information assurance\n professionals</li><li>Identification and remediation of new threats</li><li>Analysis and performance of incident response</li></ul>\n\n<p>Communication of Information Assurance\nprinciples and concepts </p>\n\n<ul><li>Peer reviewed analysis of each case</li><li>Reading and class explanation of good and bad examples\n (from news and public sources)</li><li>Reading and peer discussion of current events in\n Information Assurance</li></ul>', 'https://www.coursera.org/course/infosec', 'http://www.youtube.com/watch?v=8W4p7-2F9U8', '2013-03-25', 10, 'https://coursera-course-photos.s3.amazonaws.com/4b/5d056aae62841948ac2ead1191787e/graphic.png', 'Information, Tech, and Design, Computer Science: Systems & Security', 'Coursera'),
(456, 'Scientific Computing', 'Investigate the flexibility and power of project-oriented computational analysis, and enhance communication of information by creating visual representations of scientific data.', 'Investigate the flexibility and power of project-oriented computational\n analysis. Practice using this technique to resolve complicated \nproblems in a range of fields including the physical and \nengineering sciences, finance and economics, medical, social and \nbiological sciences. Enhance communication of information by creating \nvisual representations of scientific data.<br><br>\nThis course is a survey of numerical solution techniques for ordinary \nand partial differential equations. Emphasis will be on the application\n of numerical schemes to practical problems in the engineering and \nphysical sciences. Apply advanced MATLAB routines and toolboxes to \nsolve problems. Review and practice graphical techniques for \ninformation presentation and learn to create visual illustrations of \nscientific results', 'https://www.coursera.org/course/scientificcomp', 'http://www.youtube.com/watch?v=ot3X7IEqAYk', '2013-04-01', 10, 'https://s3.amazonaws.com/coursera/topics/scientificcomp/large-icon.png', 'Statistics and Data Analysis', 'Coursera'),
(457, 'Information Security and Risk Management in Context', 'Learn to defend and protect vital company information using the latest technology and defense strategies. Analyze internal and external threats to proactively prevent information attacks. Gain experience by solving real-world problems and leave the class equipped to establish and oversee information security.', 'Explore the latest techniques for securing information and its systems, from policies and procedures to technologies and audit. Learn from leading experts who share proven practices in areas such as mobile workforce safety, security metrics, electronic evidence oversight and coping with e-crime and e-discovery. Study the protection of Cloud computing information. Discover how to foster the development of future information security leaders.<br><br>Topics covered include:<br>\n<ul>\n<li>Information security strategies and individual privacy</li>\n<li>Legal security implications</li>\n<li>Medical health record confidentiality and integrity</li>\n<li>Cutting-edge technologies</li>\n</ul>\n<br>', 'https://www.coursera.org/course/inforiskman', 'http://www.youtube.com/watch?v=58wL8yXVyhw', '2013-03-11', 10, 'https://s3.amazonaws.com/coursera/topics/inforiskman/large-icon.png', 'Information, Tech, and Design, Computer Science: Systems & Security', 'Coursera'),
(458, 'Computer Networks', 'The Internet is a computer network that millions of people use every day. Understand the design strategies used to solve computer networking problems while you learn how the Internet works.', 'Computer networks from ISPs to WiFi and cellular networks are a key part\nof the information economy. These networks are the foundation for the Web,\nand they enable companies such as Google, Facebook and Amazon. This course\nintroduces the fundamental problems of computer networking, from sending\nbits over wires to running distributed applications. For each problem,\nwe explore the design strategies that have proven valuable in practice.\nTopics include error detection and correction, multiple-access, bandwidth\nallocation, routing, internetworking, reliability, quality of service,\nnaming, content delivery, and security. As we cover these topics, you will\nlearn how the internals of the Internet work to support the Web and other\nnetworked applications. You will develop a detailed understanding of widely-used\nnetworking technologies such as TCP/IP, HTTP, 802.11, Ethernet, and DNS.', 'https://www.coursera.org/course/comnetworks', '', '2013-06-01', 12, 'https://s3.amazonaws.com/coursera/topics/comnetworks/large-icon.png', 'Information, Tech, and Design, Computer Science: Systems & Security, Engineering', 'Coursera'),
(459, 'Introduction to Data Science', 'Join the data revolution. Companies are searching for data scientists. This specialized field demands multiple skills not easy to obtain through conventional curricula. Introduce yourself to the basics of data science and leave armed with practical experience extracting value from big data.', 'Commerce and research is being transformed by data-driven discovery and\nprediction. Skills required for data analytics at massive levels – scalable\ndata management on and off the cloud, parallel algorithms, statistical\nmodeling, and proficiency with a complex ecosystem of tools and platforms\n– span a variety of disciplines and are not easy to obtain through conventional\ncurricula. Tour the basic techniques of data science, including both SQL\nand NoSQL solutions for massive data management (e.g., MapReduce and contemporaries),\nalgorithms for data mining (e.g., clustering and association rule mining),\nand basic statistical modeling (e.g., logistic and non-linear regression).', 'https://www.coursera.org/course/datasci', '', '2013-04-01', 8, 'https://s3.amazonaws.com/coursera/topics/datasci/large-icon.png', 'Information, Tech, and Design, Computer Science: Systems & Security, Computer Science: Software Engi', 'Coursera'),
(460, 'Introduction to Philosophy', 'This course will introduce you to some of the most important areas of research in contemporary philosophy. Each week a different philosopher will talk you through some of the most important questions and issues in their area of expertise.', 'This course will introduce you to some of the main areas of research in contemporary philosophy. Each week a different philosopher will talk you through some of the most important questions and issues in their area of expertise. We’ll begin by trying to understand what philosophy is – what are its characteristic aims and methods, and how does it differ from other subjects? Then we’ll spend the rest of the course gaining an introductory overview of several different areas of philosophy. Topics you’ll learn about will include:<br><br>\n<ul>\n<li>Epistemology, where we’ll consider what our knowledge of the world and ourselves consists in, and how we come to have it;</li>\n<li>Philosophy of science, where we’ll investigate foundational conceptual issues in scientific research and practice;</li>\n<li>Philosophy of Mind, where we’ll ask questions about what it means for something to have a mind, and how minds should be understood and explained;</li>\n<li>Moral Philosophy, where we’ll attempt to understand the nature of our moral judgements and reactions – whether they aim at some objective moral truth, or are mere personal or cultural preferences, and;</li>\n<li>Metaphysics, where we’ll think through some fundamental conceptual questions about the nature of reality.</li>\n</ul>', 'https://www.coursera.org/course/introphil', 'http://www.youtube.com/watch?v=_lZhHpyNBE8', '0000-00-00', 7, 'https://s3.amazonaws.com/coursera/topics/introphil/large-icon.png', 'Humanities', 'Coursera'),
(461, 'Equine Nutrition', 'This course will cover many aspects of equine nutrition ranging from anatomy and physiology of the gastrointestinal tract to dietary management of horses/ponies affected with nutrition-related disorders. \n\n\nThis is course is designed for self-directed study with minimal tutor input, and as such emphasis is placed upon peer discussions of the topics presented in each section of the course. This course is not designed to have a large amount of tutor input as this is an open access course that attracts tens of thousands of participants. However, tutors will endeavour to answer the main queries relating to the understanding of the lecture materials and to provide a summary of the key questions raised in each of the weekly topics and clarification of any misunderstandings. ', 'This course is designed to provide knowledge of equine digestion and nutrition for those with an interest in this area. The anatomy and physiology of the equine alimentary canal will be studied to provide students with an understanding of the equine digestive system. Nutrient sources for horses will be discussed, with emphasis placed on the health and welfare issues surrounding the inclusion of various types of feedstuffs in equine diets. Students will also discuss recommendations on rations for horses and ponies performing various activities and should feel better equipped to make judgements on rations for horses and ponies, in health and disease.', 'https://www.coursera.org/course/equinenutrition', 'http://www.youtube.com/watch?v=ZzmSNNeRmIk', '0000-00-00', 5, 'https://s3.amazonaws.com/coursera/topics/equinenutrition/large-icon.png', 'Medicine', 'Coursera'),
(462, 'Critical Thinking in Global Challenges', 'In this course you will develop and enhance your ability to think critically, assess information and develop reasoned arguments in the context of the global challenges facing society today.', 'Critical thinking is the ability to gather and assess information and evidence in a balanced and reflective way to reach conclusions that are justified by reasoned argument based on the available evidence. Critical thinking is a key skill in the information age, valuable in all disciplines and professions. <br><br> This introductory course will give you the opportunity to better understand what critical thinking is, and to practice and enhance your critical thinking skills. To do so, we will use the context of some important global challenges that affect us all, and to which we have no clear “correct” solutions: for example, the risk and spread of serious infectious diseases in epidemics in modern societies, the implications of increasing human population on global resources, energy, environment and climate, and the challenges of human health and wellbeing in the modern world. Possible solutions to global issues such as these are hotly debated, and give the perfect setting to practice recognizing and evaluating facts, ideas, opinions and arguments. <br><br> The relevant background information for each global challenge will be provided to ensure that you can complete the exercises. Note, however, this course is not a course on these global challenges themselves; instead it uses the context of these thought-provoking challenges to practice critical thinking.<br><br><br><br>', 'https://www.coursera.org/course/criticalthinking', 'http://www.youtube.com/watch?v=7twNEIPrc0s', '0000-00-00', 5, 'https://s3.amazonaws.com/coursera/topics/criticalthinking/large-icon.png', 'Health & Society, Biology & Life Sciences, Energy & Earth Sciences', 'Coursera'),
(463, 'E-learning and Digital Cultures', 'This course will explore how digital cultures and learning cultures connect, and what this means for the ways in which we conduct education online. The course is not about how to ‘do’ e-learning; rather, it is an invitation to view online educational practices through a particular lens – that of popular and digital culture. Follow this course on Twitter at #edcmooc.', '<p>E-learning and Digital Cultures is\naimed at teachers, learning technologists, and people with a general interest\nin education who want to deepen their understanding of what it means to teach\nand learn in the digital age. The course is about how digital cultures\nintersect with learning cultures online, and how our ideas about online\neducation are shaped through “narratives”, or big stories, about the\nrelationship between people and technology. We’ll explore some of the most\nengaging perspectives on digital culture in its popular and academic forms, and\nwe’ll consider how our practices as teachers and learners are informed by the\ndifference of the digital. We’ll look at how learning and literacy is\nrepresented in popular digital-, (or cyber-) culture, and explore how that\nconnects with the visions and initiatives we are seeing unfold in our\napproaches to digital education.</p>\n\n<p>This course will not be taught via a\nseries of video lectures. Rather, a selection of rich resources will be provided\nthrough which you can begin to engage with the themes of the course. While the\nteachers will be present in the discussion forums and in various other media\nenvironments, there will be an emphasis on learner-led group formation, and the\nuse of social media to build personal learning networks and communities of\npeers. On this course, you will be invited to think critically and creatively\nabout e-learning both as a process and as a topic of study; you will be able to\ntry out new ideas in a supportive environment, and gain fresh perspectives on\nyour own experiences of teaching and learning. <span>This course is also intended to be an exploration of the MOOC format itself. Rather than approaching this course with the expectation of exacting teaching methods or precise learning routines, we invite all participants to collectively experiment with what the MOOC experience might be.</span></p>\n\n<p>The course assessment will involve you\ncreating your own digital artefact: something that is designed to be\nexperienced digitally, on the web. It will be likely to contain a mixture of text,\nimage, sound, video, links, and can be created in the environment of your\nchoice. The artefact will be a representation of any of the themes encountered during the course, and you‘ll have\nthe opportunity to use digital spaces in new ways to present this work. Our\ndefinition of ‘digital artefact’ is intentionally imprecise to invite\nexperimentation and creativity: it will be evaluated via guided peer-assessment.</p><p>This course has been developed collaboratively by a team of experienced teachers and researchers in online education, who run the international <a href="http://online.education.ed.ac.uk/" target="_blank">MSc in Digital Education</a> distance programme at the University of Edinburgh.<br></p>', 'https://www.coursera.org/course/edc', 'http://www.youtube.com/watch?v=clzFAXU3uIo', '0000-00-00', 5, 'https://s3.amazonaws.com/coursera/topics/edc/large-icon.png', 'Education', 'Coursera'),
(464, 'Functional Programming Principles in Scala', 'Learn about functional programming, and how it can be effectively combined with object-oriented programming. Gain practice in writing clean functional code, using the Scala programming language.', 'This course introduces the cornerstones of functional programming using the Scala programming language. Functional programming has become more and more popular in recent years because it promotes code that’s safe, concise, and elegant. Furthermore, functional programming makes it easier to write parallel code for today’s and tomorrow’s multiprocessors by replacing mutable variables and loops with powerful ways to define and compose functions. <br><br> Scala is a language that fuses functional and object-oriented programming in a practical package. It interoperates seamlessly with Java and its tools. Scala is now used in a rapidly increasing number of open source projects and companies. It provides the core infrastructure for sites such as Twitter, LinkedIn, Foursquare, Tumblr, and Klout. <br><br> In this course you will discover the elements of the functional programming style and learn how to apply them usefully in your daily programming tasks. You will also develop a solid foundation for reasoning about functional programs, by touching upon proofs of invariants and the tracing of execution symbolically. <br><br> The course is hands on; most units introduce short programs that serve as illustrations of important concepts and invite you to play with them, modifying and improving them. The course is complemented by a series of assignments, most of which are also programming projects.', 'https://www.coursera.org/course/progfun', 'http://www.youtube.com/watch?v=_NVySmdAH4c', '2013-03-25', 7, 'https://s3.amazonaws.com/coursera/topics/progfun/large-icon.png', 'Computer Science: Software Engineering', 'Coursera'),
(465, 'Programming Languages', 'Investigate the basic concepts behind programming languages, with a strong emphasis on the techniques and benefits of functional programming. Use the programming languages ML, Racket, and Ruby in ways that will teach you how the pieces of a language fit together to create more than the sum of the parts. Gain new software skills and the concepts needed to learn new languages on your own.', 'Learn many of the concepts that underlie all programming languages. Develop\na programming style known as functional programming and contrast it with\nobject-oriented programming. Through experience writing programs and studying\nthree different languages, learn the key issues in designing and using\nprogramming languages, such as modularity and the complementary benefits\nof static and dynamic typing. This course is neither particularly theoretical\nnor just about programming specifics – it will give you a framework for\nunderstanding how to use language constructs effectively and how to design\ncorrect and elegant programs. By using different languages, you learn to\nthink more deeply than in terms of the particular syntax of one language.\nThe emphasis on functional programming is essential for learning how to\nwrite robust, reusable, composable, and elegant programs – in any language.', 'https://www.coursera.org/course/proglang', '', '0000-00-00', 10, 'https://s3.amazonaws.com/coursera/topics/proglang/large-icon.png', 'Computer Science: Software Engineering', 'Coursera'),
(466, 'High Performance Scientific Computing', 'Programming-oriented course on effectively using modern computers to solve scientific computing problems arising in the physical/engineering sciences and other fields. Provides an introduction to efficient serial and parallel computing using Fortran 90, OpenMP, MPI, and Python, and software development tools such as version control, Makefiles, and debugging.', '<p>Computation and simulation are increasingly important in all aspects of\n science and engineering. At the same time writing efficient computer programs\n to take full advantage of current computers is becoming increasingly difficult.\n Even laptops now have 4 or more processors, but using them all to solve\n a single problem faster often requires rethinking the algorithm to introduce\n parallelism, and then programming in a language that can express this parallelism. \n Writing efficient programs also requires some knowledge of machine arithmetic,\n computer architecture, and memory hierarchies.</p>\n<p>Although parallel computing will be covered, this is <i>not</i> a class\n on the most advanced techniques for using supercomputers, which these days\n have tens of thousands of processors and cost millions of dollars. Instead,\n the goal is to teach tools that you can use immediately on your own laptop,\n desktop, or a small cluster. Cloud computing will also be discussed, and\n students who don\'t have a multiprocessor computer of their own will still\n be able to do projects using Amazon Web Services at very low cost.</p>\n<p>Along the way there will also be discussion of software engineering tools\n such as debuggers, unit testing, Makefiles, and the use of version control\n systems. After all, your time is more valuable than computer time, and\n a program that runs fast is totally useless if it produces the wrong results.</p>\n<p>High performance <i>programming</i> is also an important aspect of high\n performance scientific computing, and so another main theme of the course\n is the use of basic tools and techniques to improve your efficiency as\n a computational scientist.</p>', 'https://www.coursera.org/course/scicomp', 'http://www.youtube.com/watch?v=1m32LiqOlj0', '2013-05-01', 10, 'https://coursera-course-photos.s3.amazonaws.com/1a/3aad2cea79bbc570d040e889edb2fb/HighPerformanceComputingIma.jpg', 'Information, Tech, and Design, Statistics and Data Analysis', 'Coursera'),
(467, 'Digital Signal Processing', 'Learn the fundamentals of digital signal processing theory and discover the myriad ways DSP makes everyday life more productive and fun.', 'The goal of the course is to develop a complete working set of digital signal processing notions from the ground up. DSP is arguably at the heart of the “digital revolution” that, in the space of just a few decades, has enabled unprecedented levels of interpersonal communication and of information availability. <br><br> In the class, starting from the basic definitions of a discrete-time signal, we will work our way through Fourier analysis, filter design, sampling, interpolation and quantization to build a DSP toolset complete enough to analyze a practical communication system in detail. Hands-on examples and demonstration will be routinely used to close the gap between theory and practice.', 'https://www.coursera.org/course/dsp', 'http://www.youtube.com/watch?v=rRUp2PVDJ_A', '2013-02-01', 8, 'https://s3.amazonaws.com/coursera/topics/dsp/large-icon.png', 'Engineering', 'Coursera'),
(468, 'The Hardware/Software Interface', 'Examines key computational abstraction levels below modern high-level languages. From Java/C to assembly programming, to basic processor and system organization.', 'This course examines key computational abstraction levels below modern\nhigh-level languages; number representation, assembly language, introduction\nto C, memory management, the operating-system process model, high-level\nmachine architecture including the memory hierarchy, and how high-level\nlanguages are implemented. We will develop students’ sense of “what really\nhappens” when software runs — and that this question can be answered at\nseveral levels of abstraction, including the hardware architecture level,\nthe assembly level, the C programming level and the Java programming level.\nThe core around which the course is built is C, assembly, and low-level\ndata representation, but this is connected to higher levels (roughly how\nbasic Java could be implemented), lower levels (the general structure of\na processor and the memory hierarchy), and the role of the operating system\n(but not how the operating system is implemented).', 'https://www.coursera.org/course/hwswinterface', '', '2013-04-01', 8, 'https://s3.amazonaws.com/coursera/topics/hardware/large-icon.png', 'Computer Science: Systems & Security', 'Coursera'),
(469, 'A Beginner\'s Guide to Irrational Behavior', 'In this course we will learn about some of the many ways in which people behave in less than rational ways, and how we might overcome these problems.', 'Behavioral economics and the closely related field of behavioral finance couple scientific research on the psychology of decision making with economic theory to better understand what motivates investors, employees, and consumers. This course will be based heavily on my own research. We will examine topics such as how emotion rather than cognition determines economic decisions, “irrational” patterns of thinking about money and investments, how expectations shape perceptions, economic and psychological analyses of dishonesty by presumably honest people, and how social and financial incentives combine to motivate labor by everyday workers and CEOs alike. This highly interdisciplinary course will be relevant to all human beings. <br><br>This class has two main goals:<ol>\n<li>To introduce you to the range of cases where people (consumers, investors, managers, and significant others) make decisions that are inconsistent with standard economic theory and the assumptions of rational decision making. This is the lens of behavioral economics.</li>\n<li>To help you think creatively about the applications of behavioral economic principles for the development of new products, technology based products, public policies, and to understand how business and social policy strategies could be modified with a deeper understanding of the effects these principles have on employees and customers.</li>\n</ol>', 'https://www.coursera.org/course/behavioralecon', 'http://www.youtube.com/watch?v=dzSfmkbQClk', '2013-03-25', 6, 'https://s3.amazonaws.com/coursera/topics/behavioralecon/large-icon.png', 'Economics & Finance, Humanities', 'Coursera'),
(470, 'Introduction to Mathematical Thinking', 'Learn how to think the way mathematicians do - a powerful cognitive process developed over thousands of years.', '<div><b><i>NOTE: For the Spring 2013 session, the course website will go live at 10:00 AM US-PST on Saturday March 2, two days before the course begins, so you have time to familiarize yourself with the website structure, watch some short introductory videos, and look at some preliminary material.<br><br></i></b>The goal of the course is to help you develop a valuable mental ability – a powerful way of thinking that our ancestors have developed over three thousand years.</div>\n<div> </div>\n<div>Mathematical thinking is not the same as doing mathematics – at least not as mathematics is typically presented in our school system. School math typically focuses on learning procedures to solve highly stereotyped problems. Professional mathematicians think a certain way to solve real problems, problems that can arise from the everyday world, or from science, or from within mathematics itself. The key to success in school math is to learn to think inside-the-box. In contrast, a key feature of mathematical thinking is thinking outside-the-box – a valuable ability in today’s world. This course helps to develop that crucial way of thinking.</div>\n<div> </div>\n<div>The primary audience is first-year students at college or university who are thinking of majoring in mathematics or a mathematically-dependent subject, or high school seniors who have such a college career in mind. They will need mathematical thinking to succeed in their major. Because mathematical thinking is a valuable life skill, however, anyone over the age of 17 could benefit from taking the course. </div>', 'https://www.coursera.org/course/maththink', 'http://www.youtube.com/watch?v=0xCRl54AjX0', '2012-09-17', 7, 'https://s3.amazonaws.com/coursera/topics/maththink/large-icon.png', 'Mathematics', 'Coursera'),
(471, 'An Introduction to Operations Management', 'This course will teach you how to analyze and improve business processes, be it in services or in manufacturing. You will learn how to improve productivity, how to provide more choice to customers, how to reduce response times, and how to improve quality.', 'Remember the last time you went to a restaurant. What did you expect from that restaurant? You wanted to find something on the menu that you liked, you wanted the meal to be prepared according to high quality standards, you wanted to get it quickly and didn’t want to pay too much money for it. Now, remember the last time you went to a doctor’s office or a hospital. What did you want the doctors and nurses to do? You wanted them to provide the right care for you, you wanted the care delivered with great quality, you wanted to get the care quickly, and you (or your insurance) didn’t want to too pay too much for it. <br><br> Put differently, the management skills that you need to run the operations of a restaurant are the same that you need to run a hospital. And these are the skills you will learn in this course. Specifically, you will learn how to improve productivity, increase responsiveness, provide more choice to the customer, and deliver higher quality standards. In short, you will learn how to analyze business processes and how to improve them. Along the way, you will learn about topics such as Lean Operations, Six Sigma, and the Toyota production system, you will hear about bottlenecks, flows rates, and inventory levels. And, much, much more.', 'https://www.coursera.org/course/operations', 'http://www.youtube.com/watch?v=AM3QcYSV8oE', '2013-04-29', 8, 'https://s3.amazonaws.com/coursera/topics/operations/large-icon.png', 'Business & Management', 'Coursera'),
(472, 'Design: Creation of Artifacts in Society', 'Combine fundamental concepts with hands-on design challenges to become a better designer.\n', 'This is a course aimed at making you a better designer. The course marries\ntheory and practice, as both are valuable in improving design performance.\nLectures and readings will lay out the fundamental concepts that underpin\ndesign as a human activity. Weekly design challenges test your ability\nto apply those ideas to solve real problems. The course is deliberately\nbroad - spanning all domains of design, including architecture, graphics,\nservices, apparel, engineered goods, and products. The emphasis of the\ncourse is the basic design process: define, explore, select, and refine.\nYou, the student, bring to the course your particular interests and expertise\nrelated to, for instance, engineering, furniture, fashion, architecture,\nor products. In prior sessions of the course about half of the participants\nwere novices and about half had prior professional design expertise. Both\ngroups seem to benefit substantially from the course. All project work\nis evaluated by your peers -- and indeed, you will also be a peer reviewer.\nThis format allows you to see an interesting collection of projects while\ngetting useful feedback on your own project.\n<br>\n<br>\n<span>Student Testimonials from the First Session of the Course:\n <br>\n<h5>"An amazing course - a joy to take. I will really miss checking in every\n week to see the latest. I learned a great deal, from the videos, [the course staff] and my fellow\n students. I think getting the feedback from my peers was such a great way\n to run the course. So many ideas, suggestions, thoughts and words of encouragement\n that were so appreciated. I\'ve been driving everyone I know talking about it all the time." --E. Wadsworth-Jones\n<br>\n<br>"When I signed up for this course I didn\'t know what to expect; the experience\nwas so good and rewarding. I just loved it every step of the way. The course\nwas brilliant, challenging and fun! Our professor, Prof. Karl Ulrich, is\nan amazing teacher, I loved his down to Earth approach. Participating in a tournament was also one of the course\'s highlights. The whole thing was a great, unforgettable experience. I wish to thank with all my heart Coursera and the University of Pennsylvania for the opportunity given\nto us."\n--D. Rosi</h5></span>\n<br>\n<b><p>See examples of student projects: <a href="https://spark-public.s3.amazonaws.com/design/PDFs/projects2.pdf">here</a> \n</p><div></div></b>', 'https://www.coursera.org/course/design', 'http://www.youtube.com/watch?v=_yhmq-m3wo0', '2013-04-29', 8, 'https://s3.amazonaws.com/coursera/topics/design/large-icon.png', 'Information, Tech, and Design, Business & Management, Engineering, Arts', 'Coursera'),
(473, 'Cryptography II', 'Learn about the inner workings of cryptographic primitives and protocols and how to apply this knowledge in real-world applications.', 'Cryptography is an indispensable tool for protecting information in computer systems. This course is a continuation of <a href="https://www.coursera.org/course/crypto">Crypto I</a> and explains the inner workings of public-key systems and cryptographic protocols. Students will learn how to reason about the security of cryptographic constructions and how to apply this knowledge to real-world applications. The course begins with constructions for digital signatures and their applications. We will then discuss protocols for user authentication and zero-knowledge protocols. Next we will turn to privacy applications of cryptography supporting anonymous credentials and private database lookup. We will conclude with more advanced topics including multi-party computation and elliptic curve cryptography. Throughout the course students will be exposed to many exciting open problems in the field. The course will include written homeworks and optional programming labs. The material is self-contained, but the course assumes knowledge of the topics covered in <a href="https://www.coursera.org/course/crypto">Crypto I</a> as well as a basic understanding of discrete probability theory.', 'https://www.coursera.org/course/crypto2', '', '2013-01-21', 6, 'https://s3.amazonaws.com/coursera/topics/crypto2/large-icon.png', 'Computer Science: Theory, Computer Science: Systems & Security', 'Coursera'),
(474, 'Algorithms: Design and Analysis, Part 2', 'In this course you will learn several fundamental principles of advanced algorithm design: greedy algorithms and applications; dynamic programming and applications; NP-completeness and what it means for the algorithm designer; the design and analysis of heuristics; and more.', '<div>In this course you will learn several fundamental principles of advanced algorithm design. You\'ll learn the greedy algorithm design paradigm, with applications to computing good network backbones (i.e., spanning trees) and good codes for data compression. You\'ll learn the tricky yet widely applicable dynamic programming algorithm design paradigm, with applications to routing in the Internet and sequencing genome fragments. You’ll learn what NP-completeness and the famous “P vs. NP” problem mean for the algorithm designer. Finally, we’ll study several strategies for dealing with hard (i.e., NP-complete problems), including the design and analysis of heuristics. Learn how shortest-path algorithms from the 1950s (i.e., pre-ARPANET!) govern the way that your Internet traffic gets routed today; why efficient algorithms are fundamental to modern genomics; and how to make a million bucks in prize money by “just” solving a math problem!</div>\n<div></div>', 'https://www.coursera.org/course/algo2', 'http://www.youtube.com/watch?v=rETLncFbxGs', '0000-00-00', 6, 'https://s3.amazonaws.com/coursera/topics/algo2/large-icon.png', 'Computer Science: Theory', 'Coursera'),
(475, 'Heterogeneous Parallel Programming', 'This course teaches the use of CUDA/OpenCL, OpenACC, and MPI for programming heterogeneous parallel computing systems. It is application oriented and only introduces necessary technological knowledge to solidify understanding.', 'All computing systems, from mobile to supercomputers, are becoming heterogeneous parallel computers using both multi-core CPUs and many-thread GPUs for higher power efficiency and computation throughput. While the computing community is racing to build tools and libraries to ease the use of these heterogeneous parallel computing systems, effective and confident use of these systems will always require knowledge about the low-level programming interfaces in these systems. This course is designed for students in all disciplines to learn the essence of these programming interfaces (CUDA/OpenCL, OpenMP, and MPI) and how they should orchestrate the use of these interfaces to achieve application goals. <br><br>The course is unique in that it is application oriented and only introduces the necessary underlying computer science and computer engineering knowledge needed for understanding. It covers data parallel execution model, memory models for locality, parallel algorithm patterns, overlapping computation with communication, and scalable programming using joint MPI-CUDA in large scale computing clusters. It has been offered as a one-week intensive summer school for the past four years. In the past two years, there have been ten video-linked academic sides with a total of more than two hundred students each year.', 'https://www.coursera.org/course/hetero', 'http://www.youtube.com/watch?v=SCGlbr1t628', '0000-00-00', 8, 'https://s3.amazonaws.com/coursera/topics/hetero/large-icon.png', 'Computer Science: Systems & Security, Computer Science: Software Engineering', 'Coursera'),
(476, 'VLSI CAD: Logic to Layout', 'A modern VLSI chip has a zillion parts -- logic, control, memory, interconnect, etc. How do we design these complex chips? Answer: CAD software tools. Learn how to build these tools in this class.', '<div>A modern VLSI chip is a remarkably complex beast: billions of transistors, millions of logic gates deployed for computation and control, big blocks of memory, embedded blocks of pre-designed functions designed by third parties (called “intellectual property” or IP blocks). How do people manage to design these complicated chips? Answer: a sequence of computer aided design (CAD) tools takes an abstract description of the chip, and refines it step-wise to a final design. This class focuses on the major design tools used in the creation of an Application Specific Integrated Circuit (ASIC) or System on Chip (SoC) design. Our focus is on the key representations that make it possible to synthesize, and to verify, these designs, as they move from logic to layout. <br><br>Our goal is for students to understand how the tools themselves work, at the level of their fundamental algorithms and data structures. You should be taking this course if (1) you are interested in building VLSI design tools; (2) you are interested in designing VLSI chips, and you want to know why the tools do what they do; (3) you just like cool algorithms, that work on big cool problems that involve bits, and gates, and geometry, and graphs, and matrices, and time, and...</div>', 'https://www.coursera.org/course/vlsicad', 'http://www.youtube.com/watch?v=mh9OOGQk2cY', '2013-03-04', 10, 'https://s3.amazonaws.com/coursera/topics/vlsicad/large-icon.png', 'Computer Science: Systems & Security, Engineering', 'Coursera'),
(477, 'Creative, Serious and Playful Science of Android Apps', 'This course introduces the fundamental computer science principles that power today’s apps. You will also learn to create your own Android app using Java and standard software development tools.', 'This course is a novice-friendly and delightful introduction to computer science and programming Android-apps for smart-phones and tablets. No prior programming knowledge is necessary. In this course you\'ll have fun learning to create an app for modern Android devices such as the Nexus tablet. <br /><br />You\'ll use the programming tools that Android software developers use and build a complete and useful app during this course. Along the way, we\'ll introduce fundamental computer science principles and programming ideas that power today’s smart-phone and tablet apps. <br /><br />A reasonably modern and powerful Linux, Windows or Mac-OSX computer is required. A modern Android tablet (such as the $199 Nexus 7) is useful but not-required because you’ll be able to use a virtual tablet that runs on your computer.', 'https://www.coursera.org/course/androidapps101', 'http://www.youtube.com/watch?v=6rTbNJsztUU', '0000-00-00', 5, 'https://s3.amazonaws.com/coursera/topics/androidapps101/large-icon.png', 'Computer Science: Software Engineering', 'Coursera'),
(478, 'The Modern World: Global History since 1760', 'This is a survey of modern history from a global perspective. It begins with the revolutions of the late 1700s, tracks the transformation of the world during the 1800s, and analyzes the cataclysms of last century, concluding with the new phase of world history we are experiencing today.', '<p>This is a survey course in modern world history for\nstudents, beginning or advanced, who wish to better understand how the world\ngot to be the way it is today. In order to understand modern history, a global\nperspective is essential. This is true whether you are interested in economics,\nwarfare, philosophy, politics, or even pop culture. This course can therefore\nbe essential for students in many fields, a base equipping them with tools for\nlifelong learning. </p>\n\n<p>In its current form, the course on Coursera is not offered\nfor college credit. But it is a vital part of the for credit course on this\ntopic being offered at the University of Virginia in the spring semester of\n2013. Both the Coursera and the UVA students will use the same online material as\na common foundation for their different learning experiences. This is the material to survey \'what\nhappened\' and the big questions about how to explain so many changes – some of\nthose questions that start with: \n"Why?" (The students in\nthe UVA course then supplement this online material with a lot of additional\nreading, research projects about the histories of particular communities around\nthe world, in-person tutorials and discussions both with me and with their\ngraduate teaching assistants, and examinations.) </p>\n\n<p>It is tempting to think that if we can just understand the\nbig patterns, we don\'t have to get too caught up in the details. In this\ncourse, though, we care about chronology. We care about individuals. Without some\ncareful attention to sequences of cause and effect, without tracing how big\nchanges come from the choices made by particular people, history can turn into\njust a series of descriptions, a somewhat tiresome recitation of one thing\nafter another. Not this course. So a big part of what we will do is not only\noffer a set of remarkable stories, but also offer you training in how to\nanalyze a situation and how to think about problems of explaining change.</p>', 'https://www.coursera.org/course/modernworld', 'http://www.youtube.com/watch?v=4lEfKSC1mss', '2013-01-14', 15, 'https://coursera-course-photos.s3.amazonaws.com/53/8222e51c172488b83cb9b707f35145/Flag-Globe.png', 'Humanities', 'Coursera'),
(479, 'How Things Work 1', 'An introduction to physics in the context of everyday objects.', '<div>Designed for non-science students, this course is a practical \nintroduction to physics and science in everyday life. It considers \nobjects from the world around us, identifying and exploring the \nscientific concepts upon which they\'re based. Because it starts with \nobjects and looks within them for science, it is the reverse of a \ntraditional physics class. Instead of the usual principle-driven physics\n class, How Things Work is case-study physics. In this pilot semester of\n How Things Work, we will explore the basic laws of motion in the \ncontext of six familiar objects or activities: (1) Skating, (2) Falling \nBalls, (3) Ramps, (4) Seesaws, (5) Wheels, and (6) Bumper Cars. Despite \ntheir simplicity, these topics will bring us in contact with some of the\n most important concepts in physics, including inertia, energy, and \nmomentum.</div>\n<div></div><br>', 'https://www.coursera.org/course/howthingswork1', 'http://www.youtube.com/watch?v=wjzZLw0nnyA', '2013-03-04', 6, 'https://s3.amazonaws.com/coursera/topics/howthingswork1/large-icon.png', 'Physics', 'Coursera'),
(480, 'Know Thyself', 'An investigation of the nature and limits of self-knowledge from the viewpoints of philosophy, psychoanalysis, experimental psychology, neuroscience, aesthetics, and Buddhism. Readings are drawn from classical Western, non-Western, and contemporary sources.', '<div>The Delphic Oracle is said to have had two premier injunctions: NOTHING IN EXCESS, and KNOW THYSELF. This course will be an examination of the latter injunction. Our central questions fall into two categories. First, What is it? We shall inquire into just what self-knowledge is: Is it a form of inner perception, somewhat like proprioception, by virtue of which our minds (and hearts) have internal scanners of their own states? Or should we construe self-knowledge in a way not crucially relying on a perceptual model? In that case, what other model might we use? Second, Why is it such a big deal? We shall inquire into the question why self-knowledge should be thought so important. Just what, if anything, is missing from a person lacking in self-knowledge that makes her significantly less wise, virtuous, or able than others who have this capacity? Our exploration will take us into research in Western philosophy, psychoanalysis, current experimental psychology, neuroscience, aesthetics, and Eastern philosophy as well. In aid of these investigation we will become students of our own dreams, and cultivate some meditative practices.</div>', 'https://www.coursera.org/course/knowthyself', 'http://www.youtube.com/watch?v=yJiur5zyIS8', '2013-03-04', 10, 'https://s3.amazonaws.com/coursera/topics/knowthyself/large-icon.png', 'Humanities', 'Coursera'),
(481, 'Grow to Greatness: Smart Growth for Private Businesses, Part I', 'This course focuses on the common growth challenges faced by existing private businesses when they attempt to grow substantially.', '<div>Most entrepreneurship courses focus on how to start a business. Few focus on the next big entrepreneurial inflection point: how do you successfully grow an existing private business? This is the focus of this Course. It is based on the instructor\'s research and thirty years of real-world experience advising private growth companies. </div>\n<div></div>\n<br>\n<div>This Course will challenge how you think about growth; give you tools to help you plan for growth, assess the preconditions to grow, and manage the risks of growth. You will study stories of how five different private businesses faced their growth challenges. </div>\n<div></div>\n<br>\n<div>Growth, if not properly managed, can overwhelm a business, destroying value and in many cases even causing the business to fail. However, the research shows that every growth business faces common challenges. You can learn from others\' experience—you do not have to "reinvent the wheel".</div>\n<div></div>\n<br>\n<div>The Course format is case based. Each case tells a compelling story. You will learn from Julie Allinson, Susan Fellers, Dave Lindsey, Parik Laxinarayan and Eric Barger. In addition, each week, we will discuss a different content theme. In Weeks and 2 and 5, you will engage in Workshops where you will be asked to use and apply the Course tools and concepts to create growth strategies for two different real-life businesses. You will have the opportunity to create a Course Community of fellow-students to learn from each other as the Course progresses. </div>\n<div></div>\n<br>\n<div>You will learn about the: "3 Myths of Growth"; the "Truth About Growth"; why growth is like "Mother Nature"; the "Gas Pedal" approach to growth; the all important "4 Ps" of how to grow; and how to scale a business strategically.</div>', 'https://www.coursera.org/course/growtogreatness', 'http://www.youtube.com/watch?v=vF24j1Eq-jE', '2014-01-20', 5, 'https://s3.amazonaws.com/coursera/topics/growtogreatness/large-icon.png', 'Business & Management', 'Coursera'),
(482, 'Introduction to Sustainability', 'This course introduces the academic discipline of sustainability and explores how today’s human societies can endure in the face of global change, ecosystem degradation and resource limitations.', '<div>This course introduces the academic approach of Sustainability and explores how today’s human societies can endure in the face of global change, ecosystem degradation and resource limitations. The course focuses on key knowledge areas of sustainability theory and practice, including population, ecosystems, global change, energy, agriculture, water, environmental economics and policy, ethics, and cultural history.<br><br></div>\n<div>This subject is of vital importance, seeking as it does to uncover the principles of the long-term welfare of all the peoples of the planet. As sustainability is a cross-disciplinary field of study, this foundation requires intellectual breadth: as I describe it in the class text, understanding our motivations requires the humanities, measuring the challenges of sustainability requires knowledge of the sciences (both natural and social), and building solutions requires technical insight into systems (such as provided by engineering, planning, and management).</div>', 'https://www.coursera.org/course/sustain', 'http://www.youtube.com/watch?v=og7325sQJTU', '0000-00-00', 8, 'https://s3.amazonaws.com/coursera/topics/sustain/large-icon.png', 'Energy & Earth Sciences', 'Coursera'),
(483, 'Planet Earth', 'Planet Earth, an overview of geology, discusses how earthquakes, volcanoes, mountain building, floods, ice ages, evolution, climate, and plate tectonics have interacted over deep time to produce a our dynamic island in space, and its unique landscapes.', 'Earthquakes, volcanoes, mountain building, ice ages, landslides, floods, life evolution, plate motions—all of these phenomena have interacted over the vast expanses of deep time to sculpt the dynamic planet that we live on today. Planet Earth presents an overview of our home, from a geological perspective. We learn how the elements comprising the Earth formed in the guts of stars and supernovae, how Earth and its Solar System neighbors formed from a vast cloud of gas and dust over 4.5 billion years ago. And how the atmosphere, oceans, and rocks of our planet form and change. We will emphasize how plate tectonics—the grand unifying theory of geology—explains how the map of our planet\'s surface has changed radically over geologic time, and why as present-day geologic activity—including a variety of devastating natural disasters—occur where they do. We will also discuss the fascinating interactions and exchanges that take place among land, sea, air, and life, and how these interactions they result in the great variety of landscapes—from deserts to glaciers—that make our planet unique, and influence climate change in the past and, potentially the future. Finally, we will delve into the processes that produce the energy and mineral resources that modern society depends on, to help understand the context of the environment and sustainability challenges that we will face in the future.', 'https://www.coursera.org/course/earth', 'http://www.youtube.com/watch?v=D25XsQMyt6U', '0000-00-00', 0, 'https://s3.amazonaws.com/coursera/topics/earth/large-icon.png', 'Energy & Earth Sciences', 'Coursera'),
(484, 'Microeconomics Principles', 'Introduction to the functions of individual decision-makers, both consumers and producers, within the larger economic system. Primary emphasis on the nature and functions of product markets, the theory of the firm under varying conditions of competition and monopoly, and the role of government in promoting efficiency in the economy.', 'Most people make the incorrect assumption that economics is ONLY the study of money. My primary goal in this course is to shatter this belief. In fact, in the last 50 years economists have tackled some of the most interesting and important questions for humanity. For instance, the following are just a few examples:<br>\n<div>\n<ul>\n<li>About Love and Marriage\n<ul>\n<li>Why is the divorce rate so high and what should we do in order to reduce it?</li>\n</ul>\n</li>\n<li>About the Environment\n<ul>\n<li>Why do we have so much pollution?</li>\n<li>How much is an endangered species worth?</li>\n</ul>\n</li>\n<li>\n<div>About Crime</div>\n<div>\n<ul>\n<li>Would legalizing marijuana lead to a reduction in crime?</li>\n</ul>\n</div>\n</li>\n<li>\n<div>About Labor Markets</div>\n<div>\n<ul>\n<li>Does increasing the Federal Minimum Wage put people out of work?</li>\n<li>Why did so many women enter the labor force during the last 40 years?</li>\n</ul>\n</div>\n</li>\n<li>\n<div>About things you should be worrying about</div>\n<div>\n<ul>\n<li>Why is a college education a smart investment? Or isn\'t?</li>\n<li>Why are the presidential candidates missing the point on college costs?</li>\n</ul>\n</div>\n</li>\n<li>\n<div>And about many other things:</div>\n<div>\n<ul>\n<li>Would school vouchers lead to improvements in public education?</li>\n<li>Why a draft would only damage the army?</li>\n<li>How to level the playing field in baseball?</li>\n<li>AND, why is COURSERA offering this course free of charge?</li>\n</ul>\n</div>\n</li>\n</ul>\n</div>\nWe will be addressing many of these (and many more) questions during this course. Again, my main goal will to show you the way economists think and how to use this analytical system to answer questions related not only to these and other important human issues but pretty much to anything you end up doing with your life after this class. After all, as you will quickly find out, I believe everything is economics!', 'https://www.coursera.org/course/microecon', 'http://www.youtube.com/watch?v=Jo_778kG1Ck', '2013-04-08', 8, 'https://s3.amazonaws.com/coursera/topics/microecon/large-icon.png', 'Economics & Finance', 'Coursera'),
(485, 'Introductory Organic Chemistry - Part 1', 'This is a organic chemistry course surveying introductory topics in structure and reactivity with an emphasis on structural fundamentals including electronic structure, conformation and stereochemistry.', 'This course surveys structural chemistry of organic compounds with an emphasis on electronic structure, conformation and stereochemistry. Concepts and models are developed to build intuition about the stability and reactivity of organic compounds. These concepts will prepare students for a mechanistic-based approach to learning organic reactivity. Emphasis will also be placed on developing problem-solving skills unique to organic chemistry. This course (Introductory Organic Chemistry Part I) together with Introductory Organic Chemistry Part II are equivalent to a first-semester organic chemistry course; these courses and the subsequent courses (Intermediate Organic Chemistry Parts I and II) are especially suited for students in agricultural, nutritional and biological sciences, as well as pre-medical, pre-dental, and pre-veterinary programs.', 'https://www.coursera.org/course/orgchem1a', 'http://www.youtube.com/watch?v=PgA2A0W-rMk', '2013-01-28', 8, 'https://s3.amazonaws.com/coursera/topics/orgchem1a/large-icon.png', 'Chemistry', 'Coursera'),
(486, 'Introductory Organic Chemistry - Part 2', 'Organic chemistry course surveying introductory topics in structure and reactivity with an emphasis on elementary reaction mechanisms.', '<div>This course surveys the reactions of organic compounds with an emphasis on mechanisms and a structure-based approach to understanding reactivity. Concepts and models are developed to build intuition about the reactivity of organic compounds. These concepts will prepare students for a mechanistic-based approach to learning organic reactivity. Emphasis will also be placed on developing problem-solving skills unique to organic chemistry. This course, orgchem1b, together with its prerequisite, orgchem1a are equivalent to a first-semester organic chemistry course; these courses and the subsequent courses (orgchem2a and orgchem2b) are especially suited for students in agricultural, nutritional and biological sciences, as well as premedical, predental, and preveterinary programs.</div>', 'https://www.coursera.org/course/orgchem1b', 'http://www.youtube.com/watch?v=EYy3Ed5XbIo', '0000-00-00', 7, 'https://s3.amazonaws.com/coursera/topics/orgchem1b/large-icon.png', 'Chemistry', 'Coursera'),
(487, 'Intermediate Organic Chemistry - Part 1', 'Organic chemistry course covering intermediate topics in structure and reactivity with emphasis on electronic structure, pericyclic reactions and aromatic heterocycles.', 'This course covers intermediate topics on the structure and reactivity of organic compounds with an emphasis on electronic structure, pericyclic reactions and the chemistry of heteroaromatic compounds. Mechanistic concepts and models of reactivity are developed to build intuition about how organic compounds undergo their chemical transformations. An emphasis will be placed on developing problem-solving skills using frontier molecular orbitals to prepare students to think critically about the organic chemistry of living systems (e.g., nucleic acids, aromatic and heteroaromatic amino acids, etc.). This course and Part 2 are equivalent to a second-semester organic chemistry course, and these courses are especially suited for students in agricultural, nutritional and biological sciences, as well as premedical, predental, and preveterinary programs.', 'https://www.coursera.org/course/orgchem2a', 'http://www.youtube.com/watch?v=FxTEBTkpLMc', '2013-03-04', 8, 'https://s3.amazonaws.com/coursera/topics/orgchem2a/large-icon.png', 'Chemistry', 'Coursera'),
(488, 'Intermediate Organic Chemistry - Part 2', 'Organic chemistry course covering intermediate topics in structure and reactivity with special applications to the life sciences.', 'This course covers topics on the structure and reactivity of organic compounds with an emphasis on bioorganic chemistry and applications to life sciences. Stereochemical concepts and aspects of non-covalent interactions relevant to enzyme-catalyzed reactions are presented. The mechanistic approach of this course is designed to help students build intuition about how bioorganic compounds undergo their chemical transformations. The structure and reactivity of the major classes of bioorganic molecules - proteins, carbohydrates, and nucleic acids - will be covered in detail. An introduction to biosynthesis will be presented, along with the use of contemporary literature and structural databases. Throughout the course, emphasis will be placed on mechanism-based problem-solving skills to help students understand and think critically about the organic chemistry of living systems. This course, orgchem2b, and its prerequisite, orgchem2a, are equivalent to a second-semester organic chemistry course; these courses are well suited for students in agricultural, nutritional and biological sciences, as well as premedical, predental, and preveterinary programs.', 'https://www.coursera.org/course/orgchem2b', 'http://www.youtube.com/watch?v=wHvjmTErsPo', '0000-00-00', 7, 'https://s3.amazonaws.com/coursera/topics/orgchem2b/large-icon.png', 'Chemistry', 'Coursera'),
(489, 'Web Intelligence and Big Data', 'This course is about building \'web-intelligence\' applications exploiting big data sources arising social media, mobile devices and sensors, using new big-data platforms based on the \'map-reduce\' parallel programming paradigm. During the fall semester this course is offered at the Indian Institute of Technology Delhi as well as the Indraprastha Institute of Information Technology Delhi. ', 'The past decade has witnessed the successful of application of many AI techniques used at `web-scale’, on what are popularly referred to as big data platforms based on the map-reduce parallel computing paradigm and associated technologies such as distributed file systems, no-SQL databases and stream computing engines. Online advertising, machine translation, natural language understanding, sentiment mining, personalized medicine, and national security are some examples of such AI-based web-intelligence applications that are already in the public eye. Others, though less apparent, impact the operations of large enterprises from sales and marketing to manufacturing and supply chains. In this course we explore some such applications, the AI/statistical techniques that make them possible, along with parallel implementations using map-reduce and related platforms.', 'https://www.coursera.org/course/bigdata', 'http://www.youtube.com/watch?v=LKBZTL7mOgA', '2013-03-24', 10, 'https://s3.amazonaws.com/coursera/topics/bigdata/large-icon.png', 'Computer Science: Artificial Intelligence', 'Coursera'),
(490, 'Organizational Analysis', 'In this introductory course, you will learn multiple theories of organizational behavior and apply them to actual cases of organizational change.', 'It is hard to imagine living in modern society without participating in or interacting with organizations. The ubiquity and variability of organizations means there is ample room for complexity and confusion in the organizational challenges we regularly face. Through this course, students will consider cases describing various organizational struggles: school systems and politicians attempting to implement education reforms; government administrators dealing with an international crisis; technology firms trying to create a company ethos that sustains worker commitment; and even two universities trying to gain international standing by performing a merger.<br><br> Each case is full of details and complexity. So how do we make sense of organizations and the challenges they face, let alone develop means of managing them in desired directions? While every detail can matter, some matter more than others. This is why we rely on organizational theories -- to focus our attention and draw out relevant features in a sensible way.<br><br>Through this course you will come to see that there is nothing more practical than a good theory. Every week, you’ll learn a different organizational theory, and it will become a lens through which you can interpret concrete organizational situations. Armed with a toolset of theories, you will then be able to systematically identify important features of an organization and the events transforming it – and use the theories to predict which actions will best redirect the organization in a desired direction.', 'https://www.coursera.org/course/organalysis', 'http://www.youtube.com/watch?v=lOrZp-j9e14', '2012-09-24', 10, 'https://s3.amazonaws.com/coursera/topics/organalysis/large-icon.png', 'Business & Management', 'Coursera'),
(491, 'Introduction to Computational Finance and Financial Econometrics', 'Learn mathematical and statistical tools and techniques used in quantitative and computational finance. Use the open source R statistical programming language to analyze financial data, estimate statistical models, and construct optimized portfolios. Analyze real world data and solve real world problems.', 'Learn mathematical, programming and statistical tools used in the real world analysis and modeling of financial data. Apply these tools to model asset returns, measure risk, and construct optimized portfolios using the open source R programming language and Microsoft Excel. Learn how to build probability models for asset returns, to apply statistical techniques to evaluate if asset returns are normally distributed, to use Monte Carlo simulation and bootstrapping techniques to evaluate statistical models, and to use optimization methods to construct efficient portfolios.<br><p><br></p><p></p><p></p>', 'https://www.coursera.org/course/compfinance', 'http://www.youtube.com/watch?v=YIcQEaaYC20', '2013-03-11', 10, 'https://s3.amazonaws.com/coursera/topics/compfinance/large-icon.png', 'Economics & Finance', 'Coursera'),
(492, 'The Science of Safety in Healthcare', 'This course will introduce the basic principles of the science of safety in healthcare. Course content will be of relevance to members of the healthcare delivery team, including nurses, as well as the healthcare consumers in the general public. ', 'This course will introduce the basic principles of the science and culture\nof safety in healthcare. The goals for this course are to provide definitions\nand context of patient safety concepts and terms using a systems approach.\nWe will explore topics in the science of safety, patient safety culture,\npatient centered care, and team work. With these foundational principles\nas background, you will explore how to identify and mitigate risks and\ndevelop data-driven change efforts, using human factors science and quality\nimprovement methodologies to guide your improvement plans. You will see\nhow the Comprehensive Unit-Based Safety Program (CUSP) provides one model\nfor achieving improved patient safety outcomes. While course content and\nexamples will focus on the acute-care healthcare setting, specifically\nthe hospital, learning will be relevant to other healthcare settings such\nas extended care, outpatient, and home care settings. The content of this\ncourse has been adapted from the Patient Safety Certificate Program offered\nby the Johns Hopkins Armstrong Institute for Patient Safety and Quality\nas well as the Helene Fuld Fellows Program undergraduate course content\nfrom the Johns Hopkins University School of Nursing.', 'https://www.coursera.org/course/healthcaresafety', '', '2013-06-03', 5, 'https://coursera-course-photos.s3.amazonaws.com/68/d3acfc68c486786054e0976afbc11e/healthcare_safety.jpg', 'Medicine, Health & Society', 'Coursera'),
(493, 'Image and video processing: From Mars to Hollywood with a stop at the hospital', 'In this class you will look behind the scenes of image and video processing, from the basic and classical tools to the most modern and advanced algorithms.', 'What is image and video processing? Images and videos are everywhere, from those we take with our mobile devices and share with our friends to those that we receive from Mars and the ones we see in the movie theatre, without forgetting the whole ensemble of images of our bodies that are taken in hospital visits. Image and video processing is the art of working with such images and movies, from making it possible to store and transmit them to making those dark and blurry images look nice, as well as interpreting and analyzing the medical data and recognizing our friends’ faces in social pictures. This discipline is also fascinating because it uses tools from many areas of applied mathematics. In this class you will look behind the scenes of image and video processing, from the basic and classical tools to the most modern and advanced algorithms.<br><br> The course will start with an introduction to the basics of image formation and the fundamental concepts that translate a physical scene into a digital image. We will then describe the underlying concepts of image compression, the enabling technology that makes it possible for images to be sent from Mars and videos to be stored in our mobile phones. We will cover the most fundamental tools in image enhancement, showing how simple tools can significantly improve images. Both geometric and non-geometric tools as well as spatial and non-spatial operations will be presented. Details on image segmentation will be provided, one of the most fundamental and useful problems in image processing. The above topics will be extended to color images and video. Once we have covered the fundamentals, which both provide the basis for modern image and video processing and serve many important applications until today, we will move into recent progress in the area, covering image inpainting (how to remove objects from images and video), image processing via sparse modeling and compressed sensing, geometric partial differential equations for image analysis, image processing for HIV and virus research, and image processing for neurosurgery and other medical applications.', 'https://www.coursera.org/course/images', 'http://www.youtube.com/watch?v=YiBlKRtd1B0', '2013-01-14', 9, 'https://s3.amazonaws.com/coursera/topics/images/large-icon.png', 'Mathematics, Engineering, Computer Science: Artificial Intelligence', 'Coursera'),
(494, 'Grow to Greatness: Smart Growth for Private Businesses, Part II', 'This course focuses on the common human resource ("people") challenges faced by existing private businesses when they attempt to grow substantially. PART 1 OF THE GROW TO GREATNESS COURSE IS NOT A PREREQUISITE FOR TAKING THIS COURSE.', '<div>Most entrepreneurship courses focus on how to start a business. Few focus\n on the next big entrepreneurial inflection point: how do you successfully\n grow an existing private business? This is the focus of this Course. It\n is based on the instructor\'s research and thirty years of real-world experience\n advising private growth companies.</div>\n<div> </div>\n<div>This Course will focus on the common “people” challenges private growth\n companies face as they grow. You will study stories of how six different\n private businesses faced their growth challenges.</div>\n<div> </div>\n<div>While strategic focus and operational excellence are necessary to build\n a great growth company, they are not sufficient. Growth requires the right\n kind of leadership, culture, and people. My research clearly showed that\n many entrepreneurs struggle with personal challenges presented to them\n by growth, as well as the challenge of hiring the right people and building\n the right management team that can play well together. The research shows\n that every growth business faces common challenges. You can learn from\n others\' experience—you do not have to "reinvent the wheel".</div>\n<div> </div>\n<div>The Course format is story based. Each case tells a compelling story.\n You will learn from Barbara Lynch, Ryan Dienst, Steve Ritter, Randy Bufford,\n John Gabbert, and Mike Cote. In addition, each week, we will discuss a\n different content theme. In Week 3, you will engage in a Workshop where\n you will be asked to apply the Growth System Assessment Tool. You will\n have the opportunity to create a Course Community of fellow students to\n learn from each other as the Course progresses.</div>\n<div> </div>\n<div>You will learn how entrepreneurs must grow, too; the “secret” of high\n performance; people-centric leadership; how to create high employee engagement;\n how to create an internal Growth System; and how to build a senior management\n team.</div>', 'https://www.coursera.org/course/GTG', 'http://www.youtube.com/watch?v=UplEBjGbD88', '2013-04-29', 4, 'https://coursera-course-photos.s3.amazonaws.com/37/1bc1f913416c5a85e8914897499051/Faded-logo.jpg', 'Business & Management', 'Coursera'),
(495, 'Writing in the Sciences', 'This course teaches scientists to become more effective writers, using practical examples and exercises. Topics include: principles of good writing, tricks for writing faster and with less anxiety, the format of a scientific manuscript, and issues in publication and peer review.', '<div>This course trains scientists to become more effective, efficient, and confident writers. This is a hands-on course that emphasizes interactive examples and practice. In the first four weeks, we will review principles of effective writing, examples of good and bad writing, and tips for making the writing process easier. In the second four weeks, we will examine issues specific to scientific writing, including: authorship, peer review, the format of an original manuscript, and communicating science for lay audiences. Students will complete editing exercises, write two short papers, and edit each others’ work. </div><div><br></div><div>The primary audience is undergraduate science majors, graduate students in scientific disciplines, and professional scientists. Students from non-science disciplines can also benefit from the training provided in the first four weeks (on general principles of effective writing).</div>', 'https://www.coursera.org/course/sciwrite', 'http://www.youtube.com/watch?v=4xdond91JfU', '2012-09-24', 8, 'https://s3.amazonaws.com/coursera/topics/sciwrite/large-icon.png', 'Humanities, Biology & Life Sciences', 'Coursera'),
(496, 'Health Informatics in the Cloud', 'A non-technical introduction to the contemporary application of computing to healthcare delivery, public health and community-based clinical research.', '<div>This course is intended to help even non-technically trained students gain basic proficiency in health informatics: the application of computing to healthcare delivery, public health and community-based clinical research. This is distinct from the related field of bioinformatics, which explores the role of computing in understanding the genomic and proteomic processes within cells. Weeks 1-2 cover the US healthcare delivery system\'s unique structural, economic and policy issues and how they create a potentially strategic role for health informatics. Week 3-5 explains at a high level the core technologies involved in contemporary health informatics. Weeks 6-9 explore how these technologies are being deployed using some of the best commercial and open source products as examples. Week 10 presents the instructor’s personal speculation about the future of the field. There are reading assignments for each week. As the course progresses, students can, optionally, also read the appropriate chapters of the instructor’s text, Health Informatics in the Cloud.</div>', 'https://www.coursera.org/course/healthinformatics', 'http://www.youtube.com/watch?v=Z2NkmWKuSUs', '2013-01-28', 9, 'http://coursera-course-photos.s3.amazonaws.com/03/4d2740cd58def69df7def259d7d90b/logo.png', 'Health & Society', 'Coursera'),
(497, 'Accountable Talk®: Conversation that Works', 'Designed for teachers and learners in every setting - in school and out, in formal learning environments or at home - this course is an introduction to the theory and practice of well-structured talk that builds the mind.', 'Designed for teachers and learners in every setting - in school and out,\nin formal learning environments or at home - Introduction to <i>Accountable Talk </i>is\nan introduction to the theory and practice of well-structured talk that\nbuilds the mind. You will learn from the growing body of research and from\neducators who put it into practice, why intentionally structured talk promotes\nlearning and how educators can design talk situations that promote learning.\nThe course includes video examples of children and adults engaging in <i>Accountable Talk</i> in\na variety of settings and will enable you to begin to build <i>Accountable Talk</i> in\nyour own learning community. While the <i>Accountable Talk</i> program was\noriginally developed for K-12 classrooms, its structures and practices\nare readily and productively applicable to any situation in which people\nget together and talk in order to learn. The course was developed by the\nSchool of Education and the Institute for Learning at the University of\nPittsburgh. The Institute for Learning was founded by Lauren Resnick, an\ninternationally renowned cognitive psychologist, in 1995. Since then, under\nResnick’s leadership the Institute for Learning has worked to support the\nimprovement of education and achievement of all students in more than 70\nschool districts in 23 different states.\n<br>', 'https://www.coursera.org/course/accountabletalk', 'http://www.youtube.com/watch?v=WsW9IT1Q6OA', '2013-06-10', 7, 'https://coursera-course-photos.s3.amazonaws.com/bf/95549498eda09c05eabb0955b3bb81/MP900422122.JPG', 'Humanities', 'Coursera'),
(498, 'Nutrition and Physical Activity for Health', 'This course will provide a coherent, understandable look at the evidence on how nutrition and physical activity impact health through lower morbidity, longevity, and quality of life.', 'Over 65 percent of adults and over 30 percent of children meet the classification\nof being overweight or obese, and with this excess weight comes numerous\nhealth conditions that include heart disease, diabetes, cancer, musculoskeletal\ndisorders, and even impairments in cognitive function. Because in most\ncases the core cause of obesity and its related health conditions is a\npoor quality of diet and lack of sufficient physical activity, it is no\nsurprise that to reverse this health problem a foundation of proper nutrition\nand sufficient physical activity is imperative.\n<br>\n<br>This course is designed to provide a foundation of nutritional knowledge\nto develop a sustainable pattern of healthy eating. To this will be added\na foundation of knowledge related to physical activity and exercise. These\ntwo key lifestyle behaviors are then brought together under the umbrella\nof calorie balance, which is the understanding of how we balance the calories\nthat we eat in our diet with the calories that we burn to sustain life\nand to perform all of our daily tasks and functions.\n<br>\n<br>Ultimately, this information can only be of value if individuals understand\nhow to engage in these healthy behaviors within their daily lives when\nthey are faced with challenges and barriers. This course will address key\nissues and will provide information on effective strategies for adopting\nand maintaining these targeted behaviors as they apply to the adoption\nand maintenance of a healthy lifestyle.\n<br>', 'https://www.coursera.org/course/nutritionforhealth', 'http://www.youtube.com/watch?v=zpBRXJhU_3k', '0000-00-00', 6, 'https://coursera-course-photos.s3.amazonaws.com/09/415f182d21feec726a483188f6b929/NewNutrition-LARGE.gif', 'Medicine, Food and Nutrition', 'Coursera'),
(499, 'A Look at Nuclear Science and Technology', 'This course will focus on the theory, design and operation of commercial nuclear power reactors. The course will also touch on contemporary issues regarding nuclear power generation including: the nuclear fuel cycle, the economics of nuclear power, and nuclear non-proliferation.', 'The course, “A Look at Nuclear Science and Technology” is aimed at scientifically inclined individuals who want to learn more about nuclear energy and the nuclear power industry. It will address subjects such as: What is nuclear energy? What is its history? Who are its heroes? Why is it controversial? How do nuclear power plants work? What about nuclear weapons? What are the stereotypes and misconceptions? We expect many students who finish this class to want to go on for further study in a closely related field.', 'https://www.coursera.org/course/nuclearscience', 'http://www.youtube.com/watch?v=fziDilqvJuQ', '2013-06-10', 8, 'https://coursera-course-photos.s3.amazonaws.com/15/fdec05cbfa42355a08b9ff78e0b392/MP900437258.JPG', 'Engineering, Physics, Chemistry', 'Coursera'),
(500, 'Clinical Terminology for International and American Students', 'This course is for International and American undergraduate or graduate students in the health professions who are planning or currently beginning clinical practice education in the United States.', 'The language of the American clinical setting has many unique terms, abbreviations\nand acronyms. Sudden exposure to this new language is challenging for both\nAmerican students and international students coming to the United States\nto begin or continue their studies in the health professions. This course\nprovides strategies for learning the terms, abbreviations and acronyms\nthat are used commonly in the technical language of the clinical unit.\nSelf-pacing and self-assessment are encouraged. Students will be encouraged\nto use an on-line clinical dictionary focused on those terms, abbreviations,\nand acronyms that commonly challenge students who are new to American clinical\nsettings.', 'https://www.coursera.org/course/clinicalterminology', 'http://www.youtube.com/watch?v=guFYNC5jGiM', '2013-11-04', 6, 'https://coursera-course-photos.s3.amazonaws.com/45/2edd6df91e4f29d01650d815e0f2f6/MP900433088.JPG', 'Medicine', 'Coursera'),
(501, 'Disaster Preparedness', 'During this course, students will gain an understanding of the Disaster Cycle, concentrating on the Mitigation Phase. They will examine disaster planning on a personal level developing a disaster plan and examine Awareness and Attitude during disasters and daily life.', 'This course will teach the student how to survive when everything we normally\ntake for granted is gone, when the structures we depend on have failed.\nWe will examine the Disaster Cycle, particularly the Mitigation and Recovery\nphases. Students will prepare an extensive personal preparedness plan covering\nsuch topics as supplies, communication, food and water, shelter, security,\nand comfort (yes even in survival there can and should be comfort). We\nalso look at preparedness on the institutional and government levels.\n<br>\n<br>We will look beyond these plans towards the one aspect of survival, which\nwill enable a person to survive when all planning has failed. Disasters,\nby definition, overwhelm all available resources. If all available resources\nare gone, only one thing will keep a person alive and that is their attitude.\nA persons awareness and attitude, the two are closely linked, allow a person\nthe means to remain calm, avoid panic, and draw upon resources within and\noutside the person to survive when their world has failed. In truth not\neveryone survives in extreme circumstances; people die, but, even in death,\nattitude, if it cannot save you, provides some degree or comfort.', 'https://www.coursera.org/course/disasterprep', 'http://www.youtube.com/watch?v=eF8wTi1FkN0', '2013-08-26', 6, 'https://coursera-course-photos.s3.amazonaws.com/0e/ba15c5e2d53d2d7556a7605bcb7361/MP900401427.JPG', 'Medicine', 'Coursera'),
(502, 'Women and the Civil Rights Movement', 'Learn about women’s roles in the U.S. civil rights struggles of the 1890s to the 1990s. ', 'This\ncourse examines the U.S. civil rights movement from the vantage point of women,\nconsidering both women’s involvement in the legal campaigns and political\nprotests and the impact of civil rights struggles on women’s status and\nidentity. Taking a “long civil rights\nmovement” perspective, we begin in the late nineteenth century and consider\nevents, organizations, and personalities through the twentieth century. <br><br>Throughout\nwe will consider issues which have preoccupied historians, social movement\ntheorists, and historians alike: \ndeveloping and sustaining political commitment, assessing the strengths\nand weaknesses of various forms of political organization, maximizing influence\nand securing long-range objectives. We\nwill also examine competing definitions of leadership; class, race, and gender\ndynamics within the movement; and the cultural dynamics of political organizing\nand social change. <br><br>In the process, we\nconsider not only how the movement altered the status of African Americans in\nthe U.S. but the legacy of these struggles as they changed understandings of\ncitizenship and rights more broadly. Our concern throughout the course will be to\nnot only understand the historical narrative but also to see how historians\nwork to make sense of the past.<br>', 'https://www.coursera.org/course/womencivilrights', 'http://www.youtube.com/watch?v=0YnUMwGISu0', '2013-02-25', 12, 'https://coursera-course-photos.s3.amazonaws.com/55/2aef3eb13aaf7ec3e668786de26c3a/banner_brown_lines.gif', 'Humanities', 'Coursera'),
(503, 'Developing Innovative Ideas for New Companies', 'Explore how to identify and develop great ideas into great companies. Learn how to identify opportunities based on real customer needs. Develop solid business models. Create successful companies.', 'This\ncourse assists aspiring entrepreneurs in developing great ideas into great\ncompanies. With\nstrong economies presenting rich opportunities for new venture creation, and\nchallenging economic times presenting the necessity for many to make their own\njob, the need to develop the skills to develop and act on innovative business\nopportunities is ever present.<br><br><p>\n\n\n\nUsing proven content, methods, and models for\nnew venture opportunity assessment and analysis, students will learn two key\nskills: (1) how to use a business model approach to analyze each part of a\ncompany, and (2) a customer development orientation to see if anyone really\nwants the product. Value propositions,\ncustomer segments, strategic alliances, and business modeling are core elements\ntaught in the course. The initial steps to creating a business plan, and\nraising financial capital to launch the firm, are examined as well. Our goal is\nto demystify the startup process, and to help you build the skills to identify\nand act on innovative opportunities now, and in the future.</p>', 'https://www.coursera.org/course/innovativeideas', 'http://www.youtube.com/watch?v=LEJZdizgP1k', '2013-05-20', 6, 'https://coursera-course-photos.s3.amazonaws.com/a5/bbc6c49a26a2f1ab95673e1d2cef61/green_courselogo.jpeg', 'Business & Management', 'Coursera'),
(504, 'Fundamentals of Personal Financial Planning', 'Explore the basic personal financial planning concepts. Learn how to define and reach your financial goals. Apply the framework of personal financial planning to monitor your own finances, with special emphasis on lifecycle-specific topics, such as saving for education, student loans, or wealth management and estate planning.', '<p>This course was created to help those who \ncannot afford extensive planning assistance better understand how to \ndefine and reach their financial goals. It provides basic understanding \nso informed decisions can be made. The course can also be seen as a \nreference for individual topics that are part of personal financial \nplanning.</p>\n<p>Financial planning, in the broadest sense, is an effort to manage all\n aspects of a person / family’s financial affairs. Classically, that \nbegins with planning family spending and extends through risk management\n (insurance), taxes, wealth accumulation, investing, and wealth \ndistribution (retirement and estate planning).</p><br>', 'https://www.coursera.org/course/financialplanning', 'http://www.youtube.com/watch?v=Iyq3lPq3qt4', '2013-01-14', 7, 'https://coursera-course-photos.s3.amazonaws.com/17/b91fb910c88d3c820c83e573153a35/4882450962_5e0a86526f.jpg', 'Economics & Finance', 'Coursera'),
(505, 'Exploring Quantum Physics', 'An introduction to quantum physics with emphasis on topics at the frontiers of research, and developing understanding through exercise.', '<p>Quantum\nphysics is the foundation for much of modern technology, provides the framework\nfor understanding light and matter from the subatomic to macroscopic domains,\nand makes possible the most precise measurements ever made. More than just a theory, it offers a way of\nlooking at the world that grows richer with experience and practice. Our course will provide some of that practice and teach \nyou "tricks of the trade" (not found in textbooks) that will enable you \nto solve quantum-mechanical problems yourself and understand the subject\n at a deeper level.</p>\n\n<p>The\nbasic principles of quantum physics are actually quite simple, but they lead to\nastonishing outcomes. Two examples that\nwe will look at from various perspectives are the prediction of the laser by\nAlbert Einstein in 1917 and the prediction of antimatter by Paul Dirac in 1928. Both of these predictions came from very\nsimple arguments in quantum theory, and led to results that transformed science\nand society. Another familiar\nphenomenon, magnetism, had been known since antiquity, but only with the advent\nof quantum physics was it understood how magnets worked, to a degree that made\npossible the discovery in the 1980’s of ultrastrong rare-earth magnets. However, lasers, antimatter and magnets are\nareas of vibrant research, and they are all encountered in the new field of\nultracold atomic physics that will provide much of the material of “Exploring\nQuantum Physics”.</p>\n\n<p>Richard\nFeynman once said, “I think I can safely say that nobody understands quantum\nmechanics.” We say, that’s no reason not\nto try! What Feynman was referring to are some of the “spooky” phenomena like quantum entanglement, which are incomprehensible from the standpoint of classical physics. Even though they have been thoroughly tested by experiment, and are even being exploited for applications such as cryptography and logic processing, they still seem so counterintuitive that they give rise to extraordinary ideas such as the many-world theory. Quantum physics combines\na spectacular record of discovery and predictive success, with foundational\nperplexities so severe that even Albert Einstein came to believe that it was\nwrong. This is what makes it such an\nexciting area of science!</p><br>', 'https://www.coursera.org/course/eqp', 'http://www.youtube.com/watch?v=YwTE8ldPfak', '2013-03-25', 8, 'https://coursera-course-photos.s3.amazonaws.com/8c/02c5aee8624624fd81fc6e0f5a8137/Preliminary_Draft_Logo_Clark_Galitski2.png', 'Physics', 'Coursera'),
(506, 'Machine Learning', 'Why write programs when the computer can instead learn them from data? In this class you will learn how to make this happen, from the simplest machine learning algorithms to quite sophisticated ones. Enjoy!', '<div>Machine learning algorithms can figure out how to perform important tasks by generalizing from examples. This is often feasible and cost-effective when manual programming is not. Machine learning (also known as data mining, pattern recognition and predictive analytics) is used widely in business, industry, science and government, and there is a great shortage of experts in it. If you pick up a machine learning textbook you may find it forbiddingly mathematical, but in this class you will learn that the key ideas and algorithms are in fact quite intuitive. And powerful!</div><div><br></div><div>Most of the class will be devoted to supervised learning (in other words, learning in which a teacher provides the learner with the correct answers at training time). This is the most mature and widely used type of machine learning. We will cover the main supervised learning techniques, including decision trees, rules, instances, Bayesian techniques, neural networks, model ensembles, and support vector machines. We will also touch on learning theory with an emphasis on its practical uses. Finally, we will cover the two main classes of unsupervised learning methods: clustering and dimensionality reduction. Throughout the class there will be an emphasis not just on individual algorithms but on ideas that cut across them and tips for making them work.</div><div><br></div><div>In the class projects you will build your own implementations of machine learning algorithms and apply them to problems like spam filtering, clickstream mining, recommender systems, and computational biology. This will get you as close to becoming a machine learning expert as you can in ten weeks!</div><div><br></div>', 'https://www.coursera.org/course/machlearning', '', '0000-00-00', 10, 'https://coursera-course-photos.s3.amazonaws.com/23/3dbe00f0cfefe0396ac6976a242385/machinelearninglogo.jpeg', 'Statistics and Data Analysis, Computer Science: Artificial Intelligence', 'Coursera'),
(507, 'Animal Behaviour', 'This course will help you understand the remarkable behaviors of wild animals from an evolutionary perspective. \n\n[Image: Peacock spider. Photo by Jürgen Otto, Manakin bird footage (Ex-Riddle of the Sexes) reproduced with permission, courtesy of BBC Worldwide Ltd]', '<p>Many of us derive inspiration from watching natural history\ndocumentaries and their astounding catalogue of wild animal behaviours. In this course, we will explore how\nscientists study animal behaviour, and in particular how behaviour is shaped by the evolutionary forces of natural and sexual\nselection. Topics include resource acquisition; avoiding enemies; mate choice and sexual conflict; cues, signals and communication; parental care and social behaviour; and\nthe role of genes, hormones and learning in regulating behavioural diversity. We\ndraw on examples from across the animal kingdom to illustrate the complex\nmechanisms underlying adaptations, and complement these with natural\nhistory videos that highlight key concepts. We evaluate the scientific rigour\nof studies used to test theory, and highlight the often ingenious methods\nadopted by researchers to understand animal behaviour.</p>', 'https://www.coursera.org/course/animalbehav', 'http://www.youtube.com/watch?v=i0v75KNcs1I', '2013-08-19', 6, 'https://coursera-course-photos.s3.amazonaws.com/83/ab9beea7399de3ae0106aee093fe02/peacock-spider-2.jpeg', 'Biology & Life Sciences', 'Coursera'),
(508, 'Epigenetic Control of Gene Expression', 'Each mammalian cell has the same genes, yet performs distinct functions. This is achieved by epigenetic control of gene expression; the switching on and switching off of genes. This course will cover the principles of epigenetic control of gene expression, how epigenetic control contributes to cellular differentiation and development, and how it goes wrong in disease.', '<p><b></b>While the human genome sequence has\ntransformed our understanding of human biology, it isn’t just the sequence of\nyour DNA that matters, but also how you use it! How are some genes activated\nand others are silenced? How is this controlled? The answer is epigenetics. </p>\n\n<p>Epigenetics has been a hot topic for research\nover the past decade as it has become clear that aberrant epigenetic control\ncontributes to disease (particularly to cancer). Epigenetic alterations are heritable\nthrough cell division, and in some instances are able to behave similarly to\nmutations in terms of their stability. Importantly, unlike genetic mutations,\nepigenetic modifications are reversible and therefore have the potential to be\nmanipulated therapeutically. It has also become clear in recent years that\nepigenetic modifications are sensitive to the environment (for example diet),\nwhich has sparked a large amount of public debate and research.</p>\n\n<p>This course will give an introduction to the\nfundamentals of epigenetic control. We will examine epigenetic phenomena that\nare manifestations of epigenetic control in several organisms, with a focus on\nmammals. We will examine the interplay between epigenetic control and the\nenvironment and finally the role of aberrant epigenetic control in disease.</p>', 'https://www.coursera.org/course/epigenetics', 'http://www.youtube.com/watch?v=MId1SMqUspA', '2013-07-01', 6, 'https://coursera-course-photos.s3.amazonaws.com/c6/bf774b544bd9718e7ed7247e0e2611/Big480x270_withcopyright.jpg', 'Medicine, Biology & Life Sciences', 'Coursera'),
(509, 'Discrete Optimization', 'Tired of solving Sudokus by hand? This class teaches you how to solve complex search problems with discrete optimization, including constraint programming, local search, and mixed-integer programming.', '<span>Optimization technology is ubiquitous in our society. It schedules planes and their crews, coordinates the production of steel, and organizes the transportation of iron ore from the mines to the ports. Optimization clears the day-ahead and real-time markets to deliver electricity to millions of people. It organizes kidney exchanges and cancer treatments and helps scientists understand the fundamental fabric of life, control complex chemical reactions, and design drugs that may benefit billions of individuals.<br><br>This class is an introduction to discrete optimization and exposes students to some of the most fundamental concepts and algorithms in the field. It covers constraint programming, local search, and mixed-integer programming from their foundations to their applications for complex practical problems in areas such as scheduling, vehicle routing, supply-chain optimization, and resource allocation. </span>', 'https://www.coursera.org/course/optimization', 'http://www.youtube.com/watch?v=Y2Cv_cdKo0A', '2013-06-18', 6, 'https://coursera-course-photos.s3.amazonaws.com/8f/7b17bbc41eab82109bae45f5392e22/discrete_optimization.jpeg', 'Computer Science: Artificial Intelligence', 'Coursera'),
(510, 'Principles of Macroeconomics', ' All of us are affected by macroeconomic forces – they shape the very world we live in. And governments all around the world try to shape those forces in ways that (hopefully) improve the lives of their constituents. In this subject, we will examine the major theories used by macro economists to analyse national economies and the international economy. ', '<p>In this course,\nwe will examine the main bodies of economic theory that have been used to guide\neconomists’ and policy makers’ understanding of the macroeconomy. Macroeconomics\nis a word derived from the Greek prefix “makros”, meaning large. It is the study\nof economic aggregates, of national and international economies and of the\neconomic management role played by governments and international organisations.\n</p>\n\n<p>The founder of\nmodern macroeconomics, the British economist John Maynard Keynes, famously wrote\n“The ideas of economists and political philosophers, both when they are right\nand when they are wrong are more powerful than is commonly understood. Indeed,\nthe world is ruled by little else. Practical men, who believe themselves to be\nquite exempt from any intellectual influences, are usually slaves of some\ndefunct economist.” This will be the key theme we explore in the course, the\ninfluence of theory and the way that policy responses to events like recession,\nunemployment, inflation and the Global Financial Crisis, reflect that theory.</p>\n\n<p>We will cover\nimportant macroeconomic concepts such as the national accounts, unemployment\nand inflation, explain how the ideas associated with John Maynard Keynes laid\nthe foundation for governments’ active management of the macroeconomy in the\npost war era, and examine the intellectual basis for the monetary and fiscal\npolicy responses to the Global Financial Crisis. Economists’ approaches to the analysis of\nlong run economic growth will also be considered. The approach will be\ncritical. There are few areas of human endeavour that attract so much debate\nand disagreement as the management of a modern industrial economy. We will not\nshy away from those debates. But what we will do is emphasise the systematic\ntheorising that underlies the way macroeconomists and policy makers approach\ntheir task. The aim is to enable those who take the course to become informed\nanalysts of the macroeconomy and of current (and past) macroeconomic policy\ndebates.</p><p><i>Image source: Nilss Olekalns University of Melbourne 2012</i><br></p>', 'https://www.coursera.org/course/macroeconomics', 'http://www.youtube.com/watch?v=B-lFM3kuLIg', '2013-03-31', 8, 'https://coursera-course-photos.s3.amazonaws.com/3b/671b7d05ce0d5ab23fc50a9905e0f0/macro_eco.png', 'Economics & Finance', 'Coursera'),
(511, 'Software Defined Networking', 'In this course, you will learn about software defined networking and how it is changing the way communications networks are managed, maintained, and secured.', '<span>\n <span><span>\n <span>\n <p>This\n course introduces software defined networking, an emerging paradigm in\n computer networking that allows a logically centralized software program to\n control the behavior of an entire network. </p>\n <p>Separating\n a network\'s control logic from the underlying physical routers and switches\n that forward traffic allows network operators to write high-level control\n programs that specify the behavior of an entire network, in contrast to\n conventional networks, whereby network operators must codify functionality in\n terms of low-level device configuration. </p>\n <p>Logically\n centralized network control makes it possible for operators to specify more\n complex tasks that involve integrating many disjoint network functions (e.g.,\n security, resource control, prioritization) into a single control framework,\n allowing network operators to create more sophisticated policies, and making\n network configurations easier to configure, manage, troubleshoot, and\n debug. </p>\n <p> </p>\n </span>\n</span>\n</span>\n</span>', 'https://www.coursera.org/course/sdn', 'http://www.youtube.com/watch?v=mPfhSXjWqsw', '2013-05-27', 6, 'https://coursera-course-photos.s3.amazonaws.com/15/33a9590c80928a3af1cd5fb56d83f7/feamstercourseimage.png', 'Computer Science: Systems & Security, Computer Science: Software Engineering', 'Coursera'),
(512, 'The Modern and the Postmodern', 'This course examines how the idea of "the modern" develops at the end of the 18th century and how being modern (or progressive, or hip) became one of the crucial criteria for understanding and evaluating cultural change during the last two hundred years. Are we still in modernity, or have we moved beyond the modern to the postmodern?', '<b></b>In this\ncourse we shall examine how the idea of "the modern" develops at the\nend of the 18th century, and how being modern (or progressive, or hip) became\none of the crucial criteria for understanding and evaluating cultural change\nduring the last two hundred years. We shall be concerned with the relations\nbetween culture and historical change, and our materials shall be drawn from a\nvariety of areas: philosophy, the novel, and critical theory. Finally, we shall try to\ndetermine what it means to be modern today, and whether it makes sense to go\nbeyond the modern to the postmodern.\n\n\n\n<p><i>The Modern and the Postmodern</i> traces the intertwining of the\nidea of modernity with the idea of art or culture from the late 18th\ncentury until the present. Beginning with the Enlightenment, Western cultures\nhave invested heavily in the notion that the world can be made more of a home\nfor human beings through the development of culture (and technology).\nThroughout this period there has also developed a strong, sophisticated\ncounter-movement that sees the Enlightenment effort as a disaster – destructive\nof both art and of the world.</p>\n\n\n\n<p>The\nWestern idea of modernity is linked to but not the same as the idea of\nmodernism. We will examine both in this class and then consider postmodernism\nin relation both to the philosophical idea of modernity and to the aesthetic\nconsiderations of modernism.</p>\n\n\n\nThis course covers a lot of ground,\nhistorically, conceptually and aesthetically. There is much to read, and very\ndifferent kinds of reading: from philosophy to novels, from theory to poetry.\nNot all students will like all the reading, but if you digest it all, you\nshould have a clearer sense of the cultural history of our present. \n\n\n\n<br><br>Students\nshould develop a historical, literary and philosophical understanding of some\nof the key themes of modernity and modernism in the West. They should learn to\nread classic and contemporary texts for their arguments, beauty and pertinence.\nThey should see why these texts are “good to think with,” and, it is hoped,\nthey will develop an appetite for further study in the areas covered by the\ncourse.\n<br>', 'https://www.coursera.org/course/modernpostmodern', 'http://www.youtube.com/watch?v=yA8mAeMib3s', '2013-02-04', 14, 'https://coursera-course-photos.s3.amazonaws.com/ae/40ab4d371617977d0c8b273d63e014/The-Bar-at-the-Folies-Bergeres-by-Edouard-Manet.jpg', 'Humanities', 'Coursera'),
(513, 'Introduction to Systems Biology', 'An introduction to current concepts of how cellular molecules come together to form systems, how these systems exhibit emergent properties, and how these properties are used to make cellular decisions.', '<p>This\ncourse will introduce the student to contemporary Systems Biology focused on\nmammalian cells, their constituents and their functions. Biology is moving from molecular to modular.\nAs our knowledge of our genome and gene expression deepens and we develop lists\nof molecules (proteins, lipids, ions) involved in cellular processes, we need\nto understand how these molecules interact with each other to form modules that\nact as discrete functional systems. \nThese systems underlie core subcellular processes such as signal\ntransduction, transcription, motility and electrical excitability. In turn\nthese processes come together to exhibit cellular behaviors such as secretion,\nproliferation and action potentials. What are the properties of such subcellular\nand cellular systems? What are the\nmechanisms by which emergent behaviors of systems arise? What types of experiments inform systems-level\nthinking? Why do we need computation and simulations to understand these\nsystems?</p>\n\n<p>The course will develop multiple lines of\nreasoning to answer the questions listed above. Two major reasoning threads\nare: the design, execution and interpretation of multivariable experiments that\nproduce large data sets; quantitative reasoning, models and simulations. Examples will be discussed to demonstrate\n“how” cell- level functions arise and “why” mechanistic knowledge allows us to\npredict cellular behaviors leading to disease states and drug responses.<br></p>', 'https://www.coursera.org/course/sysbio', '', '2013-06-03', 6, 'https://coursera-course-photos.s3.amazonaws.com/f2/189f2000aa98ae02d2d07b2a7afef9/Introduction_SB_logo_460X270_v2.png', 'Biology & Life Sciences', 'Coursera'),
(514, 'Network Analysis in Systems Biology', 'An introduction to network analysis and statistical methods used in contemporary Systems Biology and Systems Pharmacology research. ', '<p>The\ncourse Network Analysis in Systems Biology provides an introduction to network\nanalysis and statistical methods used in contemporary Systems Biology and Systems Pharmacology research. Students will learn how to construct, analyze and\nvisualize different types of molecular networks, including gene regulatory\nnetworks connecting transcription factors to their target genes,\nprotein-protein interaction networks, cell signaling pathways and networks,\nmetabolic networks, drug-target and drug-drug similarity networks and\nfunctional association networks. Methods to process raw data from genome-wide\nRNA (microarrays and RNA-seq) and proteomics (IP-MS and phosphoproteomics)\nprofiling will be presented. Processed data will be clustered, and gene-set\nenrichment analyses methods will be covered. The course will also discuss\ntopics in network systems pharmacology including processing and using databases\nof drug-target interactions, drug structure, drug/adverse-events, and drug\ninduced gene expression signatures. </p>\n\n<span>We take a case-based approach to teach\ncontemporary statistical and network analysis methods used to\nanalyze data within Systems Biology and Systems Pharmacology research. The\ncourse is appropriate for beginning graduate students and advanced\nundergraduates. Lectures provide background knowledge in understanding the\nproperties of large datasets collected from mammalian cells. In the course we\nwill teach how these datasets can be analyzed to extract new knowledge about\nthe system. Such analyses include clustering, data visualization techniques,\nnetwork construction and visualization, and gene-set enrichment analyses. The\ncourse will be useful for students who encounter large datasets in their own\nresearch, typically genome-wide and would like to learn different methods to\nunderstand such data. The course will teach the students how to use existing\nsoftware tools such as those developed by the <a href="http://www.mssm.edu/research/labs/maayan-laboratory">Ma’ayan Laboratory</a> at Mount\nSinai, but also other freely available software tools. In addition the course\nrequires the students to write short scripts in Python. Students can bring\ntheir own data to the course and utilize the methods they learn to analyze\ntheir own data for their own projects.</span><br>', 'https://www.coursera.org/course/netsysbio', 'http://www.youtube.com/watch?v=SnkEFrhzqCU', '0000-00-00', 7, 'https://coursera-course-photos.s3.amazonaws.com/42/73766b4b2470c124521362d489baea/coursera_image_maayan.png', 'Biology & Life Sciences, Statistics and Data Analysis, Computer Science: Artificial Intelligence', 'Coursera'),
(515, 'Microeconomics', 'This course is designed to introduce students to basic microeconomic theory at a relatively rapid pace without the use of complicated mathematics. The focus will be on fundamental economic principles that can be used by managers to think about business problems, including those that arise from coordinating workers and managers inside firms and from dealing with outside market forces and government policies.', 'This course is designed to introduce students to basic microeconomic theory\nat a relatively rapid pace. The focus will be on fundamental economic principles\nthat can be used by managers to think about business problems, including\nthose inside the firm (relating to the problem of administering the firm’s\nresources in the most cost-effective way) and those outside the firm (relating\nto broader market and government forces that can affect the behavior of\nfirms). The course will not deal directly with standard “managerial economics,”\nwhich tends to emphasize the mathematics and statistical techniques used\nin optimizing firm decisions. However, every effort will be made to apply\nbasic principles to management problems, mainly those relating to\ngetting incentives right for customers, suppliers, workers, managers, and\nowners. Accordingly, this course will focus on an emerging subdiscipline\nwithin economics, <i>organizational economics</i>. It will stress methods\nof thinking, and students will be evaluated on their ability to recall,\nuse, and extend the methods of thinking that are covered during the quarter.\n<br>', 'https://www.coursera.org/course/microeconomics', 'http://www.youtube.com/watch?v=Xz1xIRdaX8M', '2013-01-21', 10, 'https://coursera-course-photos.s3.amazonaws.com/69/f9dfb10683ee4b5b34dc65431c6298/supply-and-demand.gif', 'Economics & Finance', 'Coursera'),
(516, 'Dynamical Modeling Methods for Systems Biology', 'An introduction to dynamical modeling techniques used in contemporary Systems Biology research.', '<p>We\ntake a case-based approach to teach contemporary mathematical modeling\ntechniques. The course is appropriate\nfor advanced undergraduates and beginning graduate students. Lectures provide biological background and\ndescribe the development of both classical mathematical models and more recent\nrepresentations of biological processes. \nThe course will be useful for students who plan to use experimental\ntechniques as their approach in the laboratory and employ computational modeling\nas a tool to draw deeper understanding of experiments. The course should also\nbe valuable as an introductory overview for students planning to conduct\noriginal research in modeling biological systems.</p>\n\n\n\nThis course focuses on\ndynamical modeling techniques used in Systems Biology research. These techniques are based on biological\nmechanisms, and simulations with these models generate predictions that can\nsubsequently be tested experimentally. These testable predictions frequently\nprovide novel insight into biological processes. The approaches taught here can be grouped\ninto the following categories: 1)\nordinary differential equation-based models, 2) partial differential\nequation-based models, and 3) stochastic models. <br>', 'https://www.coursera.org/course/dynamicalmodeling', '', '0000-00-00', 7, 'https://coursera-course-photos.s3.amazonaws.com/e8/02ae40e3741db67bf46f40941e1965/Dynamical_modeling_Logo_460X270_v2.png', 'Mathematics, Biology & Life Sciences', 'Coursera'),
(517, 'Introduction to Tissue Engineering', 'Step into the world of Tissue Engineering, a rapidly expanding field of applied biology aiming to create artificial organs for transplantation, basic research, or drug development.', '<p>Tissue Engineering is a rapidly expanding field of applied biology and\n biomedical engineering that aims to create artificial organs for transplantation,\n basic research, or drug development. A fascinating aspect of the field\n is the fundamental need to integrate knowledge of organic chemistry, cell\n biology, genetics, mechanics and transport processes to create functional\n organs. The process uncovers the fascinating complexity of living tissues,\n and the joy of creation. </p>\n<p>This course will review basic cell culture techniques, structure function\n relationships, cellular communication, natural and artificial biomaterials,\n and the basic equations governing cell survival and tissue organization. </p>', 'https://www.coursera.org/course/tissue101', 'http://www.youtube.com/watch?v=BdL27Uesi4Y', '0000-00-00', 10, 'https://coursera-course-photos.s3.amazonaws.com/eb/2d881eb445e26bf0faa2c5f38626a3/husinusoid.png', 'Biology & Life Sciences, Engineering', 'Coursera'),
(518, 'Climate Change', 'This course develops an interdisciplinary understanding of the social, political, economic and scientific perspectives on climate change.', '<p></p><p><b></b>What is Climate Change? How should we respond to\nClimate Change? These questions are complex, not least because the responses\navailable to us depend upon who is providing the answers and the particular\nperspective they take. The economist sees the economic challenges and\nopportunities of Climate Change; the scientist sees the need to describe and\nexplain Climate Change; the policy-maker and social scientist\nsee Climate Change as a social problem. Therefore, the first step to\nunderstanding Climate Change and what we do about it is to see how experts from\ndifferent disciplines engage with the issue. The second step is to appreciate how\nour response to Climate Change depends upon the interplay between these\ndifferent approaches.</p>\n\n<p>This course offers you an introduction to different\ndisciplinary perspectives on Climate Change to help you think about how Climate Change\naffects you as an individual, as a member of your local community, as a citizen\nof your country and as a member of the global community. We have designed the\npresentations, discussions, activities and assessment tasks in this course to\nhelp you understand what Climate Change is and what you – and we – should do about it.</p>\n\n\n\n\n<p></p>', 'https://www.coursera.org/course/climatechange', 'http://www.youtube.com/watch?v=kedFopq74u8', '2013-08-12', 9, 'https://coursera-course-photos.s3.amazonaws.com/fd/77d8ec9f8149868a7ad2306e92e054/climate_montage.jpeg', 'Economics & Finance, Humanities, Energy & Earth Sciences', 'Coursera'),
(519, 'Generating the Wealth of Nations', 'A survey of the history of economic development in the world in the past 300 years.', '<p>If\nyou had been alive at the start of the eighteenth century, your material\nwell-being would have been much the same whichever region of the world you\nlived in, and it would almost certainly have been a precarious existence. Go back 300 years before the eighteenth\ncentury, and not much was different. But\ncome forward 300 years to the present, and we see a startling transformation. </p>\n\n<p>Incomes\nin some parts of the world have increased more than ten-fold; and now it most\ncertainly does matter where you live – with income differentials of 50 times\nbetween the world’s richest and poorest countries. What has changed in the past 300 years is the\ndevelopment and application of new technologies at a pace unprecedented in\nhuman history – the steam engine, electricity and the computer, to name just a\nfew. With these developments, for those\nwho have access to them, have come huge gains in living standards.</p>\n\n<p>In\nthis course we’ll explore the spectacular (but uneven) story of economic\ndevelopment – beginning with the Malthusian era, moving on to the take-off of\ngrowth in the Industrial Revolution and the Great Divergence in living\nstandards that followed, and finishing in the present with the Global Financial\nCrisis. We’ll cover the main episodes\nand events in the development of the world economy in the past 300 years, and\nhave something to say about most regions of the world. As well as dealing with ‘what happened’, the\ncourse will emphasise what is known about ‘why’ – and what lessons historical\nexperience can provide for understanding how some countries today are so rich\nyet others remain so poor.</p><p>Course image: Copyright JL Brown. Creative Commons Attribution 3.0 Unported (CC BY 3.0) <br></p><br>', 'https://www.coursera.org/course/wealthofnations', 'http://www.youtube.com/watch?v=eZFIxSF5jBM', '2013-04-29', 10, 'https://coursera-course-photos.s3.amazonaws.com/83/b174ec0c6340ad9d8ecc26bc58a5cb/industrial-revolution-1.jpeg', 'Economics & Finance', 'Coursera'),
(520, 'Exercise Physiology: Understanding the Athlete Within', 'Learn about the physiological responses to acute and chronic exercise and their relevance for athletic performance.', 'This course examines the physiological responses to acute and chronic exercise, with a focus on skeletal muscle, energy metabolism, the oxygen transport system and temperature and fluid balance. The factors that limit exercise performance will be reviewed and the role of genes in determining athletic performance will be considered. At the end of this course, you should have a better understanding of the athlete within!<br>', 'https://www.coursera.org/course/exphys', 'http://www.youtube.com/watch?v=uHaT7geVoQI', '2013-07-22', 6, 'https://coursera-course-photos.s3.amazonaws.com/5b/fd431c344b65223dc63e23addf97c1/MUS-PHOTO2.jpeg', 'Medicine, Biology & Life Sciences', 'Coursera'),
(521, 'Passion Driven Statistics', 'With existing data, you will develop skills in data analysis and basic statistics by exploring your own research question.', 'In this project-based course, you will have the opportunity to answer a question that you feel passionately about through independent research based on existing data. Students will have the opportunity to develop skills in generating testable hypotheses, preparing data for analysis, conducting descriptive and inferential statistical analyses, and presenting research findings.<br>', 'https://www.coursera.org/course/pdstatistics', 'http://www.youtube.com/watch?v=7l070-WFb5Q', '2013-03-25', 6, 'https://coursera-course-photos.s3.amazonaws.com/e1/4db98276937b47016b6b1351963e19/passion_driven_statistics2orig.jpg', 'Statistics and Data Analysis', 'Coursera'),
(522, 'Introduction to Pharmacy', 'This course is a survey of the profession of pharmacy including its history, evolving scope of practice, ethical foundations, regulation, educational and career opportunities, and more. We will also explore topics relating to medication use and drug development.', '<b></b>\n\n<p>Man has always used external materials to help prevent, cure, or alleviate\n the symptoms of disease. In fact, Gregory Higby of the American Institute\n of the History of Pharmacy has written that, “...the very concept\n of influencing bodily functions via an outside force must be considered\n one of humanity’s greatest advances.” Since its independent origins\n in ancient Arabic civilizations, pharmacy has evolved from a craft dedicated\n to the compounding of drugs to a profession focusing on helping patients\n get the best outcomes from medication therapies.</p>\n<p>So what is pharmacy? How has it changed and where is it headed?</p>\n<p>This course will answer these questions and provide a comprehensive introduction\n to this profession. We will explore the history of pharmacy and its evolving\n scope of practice; examine educational and career pathways; tackle issues\n relating to medication safety and adverse drug events; gain insight into\n the regulatory and ethical considerations in pharmacy practice; and more.</p>\n<p>As we explore these topics together, we will hear from practicing pharmacists\n throughout the course and ultimately gain a better understanding of what\n they do and how they help us get the best results from our medications.\n Maybe you will decide that the dynamic profession of pharmacy is a career\n path that you want to pursue! Whether student or healthcare consumer,\n you’re sure to find the material we cover in this course to be invaluable.</p>', 'https://www.coursera.org/course/intropharma', 'http://www.youtube.com/watch?v=hAc_1TeVoYQ', '2013-09-09', 7, 'https://coursera-course-photos.s3.amazonaws.com/3c/c1396b3b15c8fe6c7941aa6c2f961c/intro-pharm.png', 'Medicine, Health & Society', 'Coursera'),
(523, 'Principles of Public Health', 'Principles of Public Health introduces the major concepts and principles of public health and the determinants of health status in communities. Emphasizes the ecological model that focuses on the linkages and relationships among multiple natural and social determinants affecting health.', '<p>Principles of Public Health introduces the major concepts of public health and the\ndeterminants of health status in communities. The course emphasizes the\necological model that focuses on the linkages and relationships among multiple\nnatural and social determinants affecting health. As a relative concept, the\nhealth of populations is assessed through comparisons of temporal, spatial, and\ndemographic dimensions of disease burden. The goal of public health is to\nunderstand why and how different populations carry different kinds and amounts\nof disease burden, and to use that knowledge for improving health by preventing\ndisease. </p>\n\n\n\n<p>Students in the course will explore successful examples in\npublic health, including how scientific discoveries and regulatory policies\nhave both contributed to mitigate risk factors and improve health outcomes. How\nsocioeconomic and cultural factors modify the effectiveness of risk\nintervention and disease prevention strategies. How individual actions and\ncollective initiatives play important roles in determining the status of\nhealth. In addition, how the various methodological approaches that guide\ndiscoveries in public health have been applied from the local scale to the\nglobal level.</p>', 'https://www.coursera.org/course/publichealth', 'http://www.youtube.com/watch?v=zQqwww_DOgs', '2013-01-28', 5, 'https://coursera-course-photos.s3.amazonaws.com/bf/296fa0eb9f2325ead65d02bc2bb05c/iStock_000011822057XSmall.jpeg', 'Medicine, Health & Society', 'Coursera'),
(524, 'Generation Rx: The Science Behind Prescription Drug Abuse', 'Think that a prescription medication must be safer than a “street drug”? Think again. Investigate the epidemic rise of prescription drug abuse and use science to debunk commonly held misconceptions regarding this phenomenon.', '<span>We are Generation Rx. <br><br>As a society, we have become more and more “pharmaceuticalized”. We expect a quick fix for almost any medical problem. We refer to ample amounts of medical information (or mis-information) online, sometimes without the guidance of a health professional. We are taking prescription and over-the-counter medications at unprecedented rates, and there are benefits to this phenomenon, including in many cases, improved disease treatment. Sadly, a darker consequence has also emerged: the epidemic rise of injuries and fatalities due to prescription drug abuse. <br><br>This course uses science to investigate the prevalence, dangers, and misperceptions regarding this growing health problem. Using a myth-busting design, we will investigate the biology behind both therapeutic and illicit drug action and tie that biology to the real dangers of abusing prescription drugs. Additionally, we will explore societal influences on drug-taking behaviors and identify best medication-taking practices for our benefit as well as others’.</span>', 'https://www.coursera.org/course/genrx', 'http://www.youtube.com/watch?v=exOYbv1QYWw', '2013-09-09', 6, 'https://coursera-course-photos.s3.amazonaws.com/df/17a398bf01d3f4dfc423e4a87a39f1/generation-rx.png', 'Medicine, Health & Society', 'Coursera'),
(525, 'The Ancient Greeks', 'This is a survey of ancient Greek history from the Bronze Age to the death of Socrates in 399 BCE. Along with studying the most important events and personalities, we will consider broader issues such as political and cultural values and methods of historical interpretation. ', 'This course is a survey of ancient Greek history, covering the roughly\n13 centuries that extended from the Minoan / Mycenaean Bronze Age (ca.\n1800-1200 BCE) down to the death of Socrates in 399 BCE. Along with\nstudying the most important events and personalities, we will consider\nbroader issues such as political and cultural values and methods of historical\ninterpretation.\n<br>Some of the topics we will cover include: relations between the Greeks\nand their neighbors to the East; Homer and the heroic ideal; the development\nof the type of community called the "polis"; the diffusion of Greek civilization\nfrom Southern Italy to the shores of the Black Sea; gods and mortals in\nmyth, religion and ritual; the roles of women; Athenian drama; the treatment\nof slaves and foreigners; and the birth and evolution of democracy. We\nwill strive to get as full an understanding as we can of this extraordinary,\nand extraordinarily influential, society.\n<br>\n<br>Almost all the reading assignments are from ancient sources in translation.\nNo previous knowledge of ancient history is assumed.\n<br>', 'https://www.coursera.org/course/ancientgreeks', 'http://www.youtube.com/watch?v=2k9VQhMvWd4', '2013-03-18', 7, 'https://coursera-course-photos.s3.amazonaws.com/36/feeefc3aabeeca9639b583f0a6b2f2/ancientgreek.jpg', 'Humanities', 'Coursera'),
(526, 'Modern European Mysticism and Psychological Thought', 'The course will examine the psychological thought of the modern mystical traditions in Europe. We shall focus on two topics with wider cultural implications: The soul and the heart. ', '<p></p><p>In the revival of mysticism today, mysticism has\nbecome more psychological while psychology is increasingly interested in\nmysticism. This course will provide an entry into the complex world of modern\nmysticism, through studying its psychological thought. We shall begin with\nexploring the interpretations of mystical experience offered by psychoanalysts\nin the twentieth century, starting with Sigmund Freud and Carl Jung and ending\nwith contemporary thinkers such as James Hillman. However, we will see that the\nEuropean mystical traditions, including Kabbalah in the Jewish world and those\nof the Catholic and Protestant worlds, developed their own elaborate systems of\npsychological thought. Thus, we will mostly examine mystical psychology on its\nown terms. We shall especially look at two terms that are very much in use also\nin general culture: the heart (as an emotional rather than as a physical center!...)\nand the soul, looking at the unique mystical concepts of their nature and destiny\nand asking if there were influences and meetings between the different\nreligions. </p><p></p>', 'https://www.coursera.org/course/mysticthought', '', '0000-00-00', 0, 'https://coursera-course-photos.s3.amazonaws.com/f0/ca11f155e125282c51413211796d9d/ThinkLogo.jpg', 'Humanities', 'Coursera'),
(527, 'Synapses, Neurons and Brains ', 'You will become intimately acquainted with the operational principles of neuronal “life-ware” (synapses, neurons and the networks that they form) as well as with recent ideas about how the dynamics of these networks generate the “neuronal code.” As an aperitif we will highlight present brain-excitements and for dessert we will discuss the future of brain research\n', '<p></p>\n<p>Probably the greatest challenge of the “21st century of the brain” is\n to understand how subcellular and cellular neuronal processes give rise\n to behavior – movement, perception, emotions, memory and creativity. This\n course will discuss, step-by-step, how modern molecular, optical, electrical,\n anatomical and theoretical methods have provided fascinating insights into\n the operation of the elementary building blocks of brains and, most importantly,\n how neuronal mechanisms underlie memory and learning processes. We will\n next discuss why computer simulations are so essential for understanding\n both neuronal “life ware” and the emergence of networks dynamics (e.g.,\n as in the “Blue Brain Project”). </p>\n<p>The course will start by highlighting a few recent brain-excitements,\n including treating the sick brain via electrical stimulation, recent attempts\n at “reading the brain code” for brain-machine interfaces, new neuro-anatomical\n techniques (“Brainbow” and connectomics) and physiological methods (optogenetics)\n that enables us to record/activate the living, behaving brain at single\n cell resolution. We will end by discussing emerging frontiers in brain\n research, including the interaction between brain research and the arts.\n As an added bonus, a lecture on perception, action, cognition and emotions\n will be taught by an acclaimed neuroscientists, Prof. Israel Nelken..</p>\n\n</p>\n<p></p>', 'https://www.coursera.org/course/bluebrain', 'http://www.youtube.com/watch?v=SO7gq972SJ8', '2013-03-31', 9, 'https://coursera-course-photos.s3.amazonaws.com/dc/c648859f850740acdf49880106b7ce/logo.jpg', 'Biology & Life Sciences', 'Coursera'),
(528, 'Coding the Matrix: Linear Algebra through Computer Science Applications', 'Learn the concepts and methods of linear algebra, and how to use them to think about computational problems arising in computer science. Coursework includes building on the concepts to write small programs and run them on real data. ', '<div>When you take a digital photo with your phone or transform the image in Photoshop, when you play a video game or watch a movie with digital effects, when you do a web search or make a phone call, you are using technologies that build upon linear algebra. Linear algebra provides concepts that are crucial to many areas of computer science, including graphics, image processing, cryptography, machine learning, computer vision, optimization, graph algorithms, quantum computation, computational biology, information retrieval and web search. Linear algebra in turn is built on two basic elements, the matrix and the vector. </div><div><br></div><div>In this class, you will learn the concepts and methods of linear algebra, and how to use them to think about problems arising in computer science. You will write small programs in the programming language Python to implement basic matrix and vector functionality and algorithms, and use these to process real-world data to achieve such tasks as: two-dimensional graphics transformations, face morphing, face detection, image transformations such as blurring and edge detection, image perspective removal, audio and image compression, searching within an image or an audio clip, classification of tumors as malignant or benign, integer factorization, error-correcting codes, secret-sharing, network layout, document classification, and computing Pagerank (Google\'s ranking method).</div><div><br></div>', 'https://www.coursera.org/course/matrix', 'http://www.youtube.com/watch?v=IWugXcWpfoM', '2013-07-01', 8, 'https://coursera-course-photos.s3.amazonaws.com/ec/6faacf42b19cf2772061ae095d98ee/460_259_logo.jpg', 'Computer Science: Theory, Mathematics, Statistics and Data Analysis, Computer Science: Artificial In', 'Coursera'),
(529, 'Introduction to Digital Sound Design', 'Sounds and music are embedded in almost every aspect of daily life. This course will provide an overview of the fundamental principles of sound and the factors that determine our audio perception. It will also explore techniques of recording, mixing, processing, synthesis, sampling, analysis, and editing of digital audio.', '<p>Sound has\nalways been a significant part of human experience. It shapes and transforms our\neveryday world. Sounds and music are\nembedded in almost every aspect of daily life, from communication and artistic\nexpression to commerce, politics, and our social and cultural identities.</p>\n\n<p>This course will provide an overview of the fundamental principles\nof sound and the factors that determine our audio perception. It will explore\ntechniques of recording, mixing, processing, synthesis, sampling, analysis, and\nediting of digital audio using freely distributed audio production software for\nboth PC and Mac. Students will also learn an array of sound design and editing techniques\nfor use in film and web-based media, art installations, soundscape creations,\nor live and internet music performances.</p>', 'https://www.coursera.org/course/digitalsounddesign', 'http://www.youtube.com/watch?v=uYzAgwFhxPo', '2013-01-28', 4, 'https://coursera-course-photos.s3.amazonaws.com/5a/24602994c4c068a56ba7f43ddb7e96/electronic_music-nologo.png', 'Music, Film, and Audio', 'Coursera'),
(530, 'Citizenship and U.S. Immigration', 'What does it mean for an immigrant to become a U.S. citizen? Through a background of historical and policy perspectives, this course will examine U.S. law governing how citizenship is acquired, the constitutional and international law foundations underlying immigration regulation, the role of the federal government in regulating immigration, and immigration law reform. ', '<p>This course analyzes the\nhistorical origins of citizenship and immigration in the United States and provides\nan overview of modern U.S. law. Beyond\ntraditional notions of “law,” the course also includes significant elements of\nimmigration policy, social science, history, political theory, and ethics. One goal of the course is to provide a basic\nknowledge base for students to make and influence law and policy in immigration\nand citizenship.</p>\n\n<p>Among the questions the\ncourse will explore:</p>\n\n<ul><li>How is U.S. citizenship\nacquired? Can it be lost?</li><li>What is the\norigin and significance of the U.S. practice of awarding citizenship to anyone\nborn here?</li><li>Who decides who\ncan enter the country, and who must leave?</li><li>What rights do\nnon-citizens have? What about those who\nhave entered the country illegally?</li><li>What is most needed\nfor immigration reform in the US?</li></ul>', 'https://www.coursera.org/course/immigration', 'http://www.youtube.com/watch?v=snIHU3CPu5o', '2013-04-29', 5, 'https://coursera-course-photos.s3.amazonaws.com/68/47e18d4af22dc8c40d73d197464cb1/immigration-nologo-2.png', 'Humanities', 'Coursera'),
(531, 'AIDS', 'This course will discuss HIV/AIDS in the US and around the world including its history, science, and culture as well as developments in behavioral and biomedical prevention, experimental AIDS vaccines, and clinical care issues. The course will also include a discussion of the populations that are particularly vulnerable to HIV/AIDS and a look at future challenges facing people infected and affected by the AIDS pandemic.', '<p>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n</p><p>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n</p><p>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n</p><p>Did you grow up in a world without red ribbons, AZT, the\nAIDS Memorial Quilt, or Project Red? If you did, chances are good that you came\nof age before 1981 and are a member of the last generation of humans on this\nplanet to be able to say that you remember those ‘carefree days when all you\nhad to worry about was getting pregnant, herpes, and a bad reputation’ (<a href="http://ihm.nlm.nih.gov/luna/servlet/detail/NLMNLM~1~1~101438751~152104:Return-to-those-carefree-days-when-">AID\nAtlanta</a>).</p>\n\n<p>On June 5, 1981 the CDC released a <i>Morbidity and Mortality Weekly Report</i> describing the <a href="http://www.cdc.gov/mmwr/preview/mmwrhtml/june_5.htm">first five cases</a>\nof what later became known as the Acquired Immune Deficiency Syndrome, or AIDS.\nOn that day human history broke into two generations: Those who can remember a time before the AIDS pandemic and those who can\'t.</p>\n\n<p>No matter what generation you grew up in, what we all have\nin common is a curiosity about AIDS. Where\ndid it come from? Why is it so widespread? Are we making progress towards\na vaccine? What is it like to be part of a vaccine trial? Has anyone ever been cured of HIV infection? Are some people just\nnaturally more or less susceptible to HIV than other people\nare?</p>\n\n<p>All of this and more will be covered in <i>AIDS. </i>Over the course of nine weeks we will discuss a wide range of\nissues, innovations, and controversies regarding HIV/AIDS in the US and around\nthe world including everything from what circumcision and Truvada have in\ncommon; how school children in Africa are changing the way AIDS education is\ndone; where you can go online to learn how many cases of AIDS there are in your\narea; and how one man’s insistence that AIDS doesn\'t exist left hundreds of thousands of people without access to life saving drugs.</p>\n\n<p></p>\n\n<p></p>\n\n<p></p>', 'https://www.coursera.org/course/aids', 'http://www.youtube.com/watch?v=-CNnjNbDufw', '2013-02-25', 9, 'https://coursera-course-photos.s3.amazonaws.com/cc/b94860f71d63b9695cd105a165c04b/hiv-nologo.png', 'Medicine, Health & Society, Biology & Life Sciences', 'Coursera'),
(532, 'The Language of Hollywood: Storytelling, Sound, and Color', 'This Film History course explores how fundamental changes in film technology affected popular Hollywood storytelling. We will consider the transition to sound, and the introduction of color.', 'This history course explores how fundamental changes in film technology affected popular Hollywood storytelling. We will consider the transition to sound, and the introduction of color. Each change in technology brought new opportunities and challenges, but the filmmaker\'s basic task remained the emotional engagement of the viewer through visual means. We will survey major directors and genres from the studio era and point forward to contemporary American cinema. Our aim is to illuminate popular cinema as the intersection of business, technology, and art. Through film history, we will learn about the craft of filmmaking and how tools shape art.<br>', 'https://www.coursera.org/course/hollywood', 'http://www.youtube.com/watch?v=y8Fi8_b8abA', '2013-02-04', 5, 'https://coursera-course-photos.s3.amazonaws.com/2d/7e25d5d0de4c5854bd5d23e3105a4f/Coursera-Color-Crop.jpg', 'Humanities, Music, Film, and Audio', 'Coursera'),
(533, 'The Fiction of Relationship', 'What is the nature of our relationship to others and the world? How can literature help us see these relationships more clearly? This course seeks to explore such questions through adventurous readings of ten great works of narrative fiction from the 18th to the 20th century.', '<p>As\nindividuals we are defined by relationships, by our connection to people,\nplaces, and things. Such connectedness can be not only emotional and erotic but\nalso political, environmental, and even textual, enacted through writing. In\nthis course we explore the nature and meaning of such connections in ten major works of narrative fiction from the 18th century to the\npresent. These include: <i>Manon Lescaut</i> by Abbé Prévost; two works by Herman Melville, <i>Bartleby the Scrivener </i>and <i>Benito Cereno</i>; Charlotte Brontë’s <i>Jane Eyre</i> and three stories by Franz\nKafka, “Metamorphosis,” “In the Penal Colony,” and “The Country Doctor”;\nVirginia Woolf’s <i>To the Lighthouse</i>\nand William Faulkner’s <i>Light in August</i>; an anthology of stories, <i>Ficciones</i>, by Jorge Luis\nBorges and <i>The Ice Palace </i>by Tarjei\nVesaas; Tony Morrison’s <i>Beloved</i> and <i>Disgrace</i> by J.M. Coetzee.</p>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n<p>As this course will demonstrate, the most\ncritical relationships in our lives—the comings and goings that define us—are\nnot always easy to get a fix on, but literature offers us a special sighting on\nthese arrangements. Through exploratory readings of these narrative works, the\ncourse will seek to make relationship visible, bringing our traffic with the\nworld and with others into clearer focus.</p><br><br>', 'https://www.coursera.org/course/relationship', 'http://www.youtube.com/watch?v=ssu8GN8UHhM', '2013-06-01', 10, 'https://coursera-course-photos.s3.amazonaws.com/c7/b27f6a5649fa2f53df09e13aff8bbd/fictionimage_weinstein_rev.jpeg', 'Humanities', 'Coursera'),
(534, 'Science from Superheroes to Global Warming', 'Explore how science works and what constitutes "good" science through case studies drawn from a wide spectrum of people\'s experience, for example superheros, movies, and real world issues such as global warming. ', 'Have you ever wondered if Superman could really fly? What was \nSpiderman\'s spidey sense? How did Wonder Woman\'s invisible jet work? \nWhat does it really mean for something to be a scientific "fact"? \nExplore how science works and what constitutes "good" science through \ncase studies drawn from a wide spectrum of people\'s experience, for \nexample superheros, movies, and real world issues such as global \nwarming. The case studies will provide the chance to act as science \ncritics as the students develop a better appreciation for science and \nthe scientific method.<br><br>This course won the 2011 "Best OCW User Experience" Award from Education Portal and was featured in the <a href="http://www.nytimes.com/2010/04/18/education/edlife/18superhero-t.html">New York Times</a>. <br>', 'https://www.coursera.org/course/scientificthinking', 'http://www.youtube.com/watch?v=sITa8jb2ji0', '2013-01-21', 10, 'https://coursera-course-photos.s3.amazonaws.com/c8/0738a4096cdff7b7b9ab0285618692/460px_x_259px_female_superhero_used_for_Physics_Coursera.jpg', 'Energy & Earth Sciences', 'Coursera'),
(535, 'Useful Genetics', 'This course will give you a thorough understanding of gene function and inheritance, and will enable you to apply this understanding to real-world issues, both personal and societal.', '<p>\n <img src="https://coursera-topic-photos.s3.amazonaws.com/77/c0f974cec6eb7b224206a14a4e3def/cartoon.jpg">\n <br>Image source: XKCD</p>\n<p><b></b>\n</p>\n<h1><b>Who might want to take this course?</b><p></p></h1>\n<ul>\n <li>People affected by or concerned about a genetic disease (either directly\n or in a family member)</li>\n <li>People interested in the genetic diversity of humans or other species</li>\n <li>People who have had (or are considering having) their genes or genomes\n analyzed by companies such as 23andMe or DecodeMe</li>\n <li>People concerned about the public use of personal genetic information</li>\n <li>People interested in breeding animals or plants, or in in conservation\n of endangered species</li>\n <li>People interested in genealogy and ancestry analysis</li>\n <li>Science teachers</li>\n <li>Anyone interested in genetics but unable to enroll in university at this\n time</li>\n</ul>', 'https://www.coursera.org/course/usefulgenetics', 'http://www.youtube.com/watch?v=jHT3pAgAbFE', '2013-05-01', 10, 'https://coursera-course-photos.s3.amazonaws.com/aa/bf1521ed2e08eec23addd42c6c2763/Icon5cropped2.jpg', 'Health & Society, Biology & Life Sciences', 'Coursera'),
(536, 'Archaeology\'s Dirty Little Secrets', 'Admit it — you wanted to be an archaeologist when you grew up... This course builds on that enthusiasm, while radically expanding your notions about just what archaeology is and just what archaeologists do. \n ', '<p>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n</p><p>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n</p><p>In this class, we will ask and answer a series of questions\nabout the role and practice of archaeology in the world today. If archaeologists\nare trained to investigate the past, what is left for us to study? Who gets to be an archaeologist? How and why do archaeologists hunt for\n“treasures”, and what do we do once we’ve discovered them? Who pays for archaeological work? When did archaeology begin? What can we know, and not know, about people\nin the past? What do archaeologists know\nabout the past that most people would never guess – and why aren’t we telling\nyou? What is an archaeologist’s greatest\nfear? Why are people entirely willing to\nmurder each other over the fate of archaeological sites? Are Real Men alone capable of discovering the\ntruth behind all this?</p>\n\nArchaeology famously involves getting dirty in\nthe line of duty. Students will\nexperience its hands-on nature, through the use of numerous exercises and archaeological\ncase studies. But there are other ‘dirty\nlittle secrets’ to learn about the field: not least how the stories\narchaeologists tell about the past have been used and abused, for purposes both\ngood and bad. Our goal by the end of the\ncourse is to have you ‘thinking like an archaeologist’ and fully aware of the often-fraught\npolitics of doing archaeology around the globe. <br><p></p>\n\n<p></p>', 'https://www.coursera.org/course/secrets', 'http://www.youtube.com/watch?v=avYqKf1ff08', '2013-06-01', 8, 'https://coursera-course-photos.s3.amazonaws.com/7a/f4b7c52030c045e8edbbfc4bf63c72/archaeology-course.jpeg', 'Humanities', 'Coursera'),
(537, 'Algebra', 'This course is taught so that students will acquire a solid foundation in algebra. The course concentrates on the various functions that are important to the study of calculus.', 'This course is taught so that students will acquire a solid foundation \nin algebra. Emphasis is placed on understanding \nthe properties of linear, polynomial and rational functions, including \ninequalities and complex numbers. Students will learn to work with \nvarious types of functions in symbolic, graphical, numerical and verbal \nform.<br>', 'https://www.coursera.org/course/algebra', 'http://www.youtube.com/watch?v=XImyLldzvHw', '2013-01-28', 10, 'https://coursera-course-photos.s3.amazonaws.com/50/a524974c7a5c057d2310c244f51ab0/algebra-course-logo.jpeg', 'Mathematics', 'Coursera'),
(538, 'Pre-Calculus', 'This class prepares students for eligibility to enroll in the first semester of single variable calculus.', 'This course is taught so that students will acquire a solid foundation \nin algebra and trigonometry. The course concentrates on the various \nfunctions that are important to the study of the calculus. Emphasis is \nplaced on understanding the properties of linear, piece-wise, \nexponential, logarithmic and trigonometric functions. Students will \nlearn to work with various types of functions in symbolic, graphical, \nnumerical and verbal form.<br>', 'https://www.coursera.org/course/precalculus', 'http://www.youtube.com/watch?v=Uee8jkSxgLk', '2013-01-28', 10, 'https://coursera-course-photos.s3.amazonaws.com/8f/f5e6bdde22289bb4a1a813121ab04b/math1b-course-logo.jpg', 'Mathematics', 'Coursera'),
(539, 'Preparation for Introductory Biology: DNA to Organisms', 'Through this class you should be able to explain basic concepts in cellular and molecular biology using correct terminology, as well as develop critical thinking and problem-solving skills that can be applied to all of your studies of biology.', '<p>This course is designed for students who are taking or about\nto take introductory biology at the college level. Its focus will be providing the repeated\npractice and critical thinking activities that will enable students to be\nsuccessful in the class in which they are formally enrolled.<span><br>\n<br>\nThis course will\ncover the foundational concepts of cell biology and chemistry:</span></p><ul><li>Parts of a cell and its membrane</li><li>Polarity, charge and water</li><li>Membrane transport, rearranging the cell and cell movement</li><li>Biological macromolecules and their functional chemistry</li><li>Manufacturing and transporting of proteins</li></ul>', 'https://www.coursera.org/course/introbiology', 'http://www.youtube.com/watch?v=8y_JVP-TzI8', '2013-08-26', 4, 'https://coursera-course-photos.s3.amazonaws.com/f0/69c72d68460fde4955cf20b425f78d/intro-image4.jpg', 'Biology & Life Sciences', 'Coursera'),
(540, 'Science, Technology, and Society in China I: Basic Concepts', 'What are science, technology, and innovation? How do science, technology, and innovation inform our understanding of developments in the social sphere? How have these domains evolved in the Chinese context? In this course, we will examine these issues and attempt answering these and many other questions!', 'Science and technology continue to play an increasingly central role in our lives, not least in countries such as China that are undergoing rapid technological, economic and social change. This course is the first of a trilogy of short courses on science, technology, and society in China. Here, we explore in general terms how engineering as well as scientific knowledge and practice are influenced by dynamic interactions between science, technology, innovation, and society. The course will introduce the innovation systems approach, laying the groundwork for mastering the remaining two parts of the course by introducing broad concepts and ideas to provide students with a platform on which to think about the science/technology–society relationship and related policy issues with a focus on China. This understanding will then be applied more specifically to China in the next two courses in the series. Part II will examine the impact of the Industrial Revolution in the West on scientific and technological progress in China. Part III will examine science and technology in Chinese society today and the basis for the policy prescriptions the Chinese government is currently employing to promote innovation and technology development.<br><br><br>', 'https://www.coursera.org/course/stschina1', 'http://www.youtube.com/watch?v=8L_6eMV-Fg0', '2013-04-04', 3, 'https://coursera-course-photos.s3.amazonaws.com/52/7699289e944856888be31dd98db6d5/Naubahar-Course-Banner.jpg', 'Social Sciences', 'Coursera'),
(541, 'Sports and Society', 'This course explores the role of sports around the world, and how the games we watch and play shape identity, culture, and society. ', 'Sports play a giant role in contemporary society worldwide. But\nfew of us pause to think about the larger questions of money, politics,\nrace, sex, culture, and commercialization that surround sports everywhere.\n This course draws on the tools of anthropology, sociology, history,\nand other disciplines to give you new perspectives on the games we watch\nand play. We will focus on both popular sports like soccer (or “football,”\nas anyone outside America calls it), basketball, and baseball, and also\nlesser-known ones like mountain-climbing and fishing. Special guests\nwill include former major league baseball player and ESPN commentator\n<a\nhref="http://www.dougglanville.com">Doug Glanville</a>; leading sports journalist <a href="http://en.wikipedia.org/wiki/Selena_Roberts">Selena Roberts</a>;\n and sports studies experts <a href="http://sph.umd.edu/KNES/faculty/dandrews_umd/index.html">David Andrews</a>,\n <a\n href="https://asrc.cornell.edu/people/farred.cfm">Grant Farred</a>, and Katya Wesolowski. You will never watch or think\n about sports in the same way again.', 'https://www.coursera.org/course/sports', 'http://www.youtube.com/watch?v=_8tWnw6tcOQ', '2013-04-30', 7, 'https://coursera-course-photos.s3.amazonaws.com/17/0e974aa2d977495b928ff5103c35cd/starn_logo.jpeg', 'Humanities, Social Sciences', 'Coursera'),
(542, 'The Science of Gastronomy', 'This course introduces students to elements of science lying behind cooking and cuisine preparation. The ultimate goal is to help students recognize the importance of scientific principles being applied in everyday life, so that they will appreciate and be able to apply some of these principles in their future cooking practice.', 'This\ncourse introduces students to a number of basic scientific principles underpinning\ncooking and cuisine preparation. Various topics with a strong basis in biology,\nchemistry and physics application will be covered. These include the\nconsumption of cooked food, physiological and evolutionary control of the senses,\ngeographic and cultural influences and the rationale behind cuisine preparation.\nIssues like coupling of senses to improve sense stimulation, altering flavor by\nchemical means, and modification of the coloration to improve the appearance of\ndishes will be discussed in the course. Through video demonstrations of the scientific principles\nunderlying cooking practices, students are expected to recognize the key\ningredients and their combination for preparing good healthy food. They will be\nable to: <span><br>\n</span>(1)\ndevelop an appreciation of the scientific basis of various cuisine recipes; <span><br>\n</span>(2)\ndevelop their own recipes by integrating some of the scientific principles into\nnew dishes; as well as <span><br>\n</span>(3)\nrecognize the influence of the material world on human perception from the\ndifferent senses, and thus <span><br>\n</span>(4)\nbe able to continually take on cooking and dining as an art of integrating\nsciences.', 'https://www.coursera.org/course/scigast', 'http://www.youtube.com/watch?v=x2RRCgjNlYM', '0000-00-00', 6, 'https://coursera-course-photos.s3.amazonaws.com/cf/cbbe4e168e7006fef73ad1ca05ea95/KingYeung-Course-Banner.jpeg', 'Biology & Life Sciences, Food and Nutrition', 'Coursera'),
(543, 'A New History for a New China, 1700-2000: New Data and New Methods, Part 1', 'The purpose of this course is to summarize some of the new directions in Chinese history and Chinese social science produced by the discovery and analysis of new historical data, in particular archival documents and datasets, and to organize this knowledge in a framework that encourages learning about China in comparative perspective.', '<p>Our course demonstrates how a new scholarship of discovery is redefining\n what is singular about modern China and modern Chinese history. The current\n understanding of human history and social theory is based largely on Western\n experience or on non-Western experience seen through a Western lens. This\n course offers alternative perspectives derived from Chinese experience\n during the last three centuries. We present specific case studies of the\n new scholarship of discovery divided into three independent parts, which\n means that students can take any Part without prior or subsequent attendance\n of the other Parts. Part 1 addresses the issue of “Who Gets What” and covers\n sequentially inequality and education, education and social mobility, social\n mobility and wealth distribution, and wealth distribution and regime change.\n Part 2 turns to the related issue of “Who Survives” and includes studies\n of inequality and population behavior, population behavior and human development,\n human development and social organization, and social organization and\n social stratification. Part 3 deals with issues of identification and motivation\n and presents studies of religion and gender, ethnicity, and nationalism\n from late imperial times to the present-day.</p>\n<p>Our class eschews the standard chronological narrative arc for an analytic\n approach that focuses on specific discoveries and on how these new facts\n complicate our understanding of comparative societies, human behavior,\n and the construction of individual and group identities. That being said,\n while we do not emphasize the temporal narratives of late imperial, early\n modern and contemporary China, we of course also discuss change over time\n as China progresses from a largely domestic imperial history to the shared\n stories of imperialism and semi colonialism, communism and collectivization,\n and reform and globalization.</p>', 'https://www.coursera.org/course/newchinahistory1', 'http://www.youtube.com/watch?v=eIM5xFCfj2M', '0000-00-00', 4, 'https://coursera-course-photos.s3.amazonaws.com/c7/d55e65568fb6a79175348f0d11ea4c/James-Course-Banner.jpg', 'Humanities, Social Sciences', 'Coursera'),
(544, 'Introduction to Improvisation', 'Learn the basic concepts of improvisation from Gary Burton, one of the most renowned improvisers in the jazz world, including the mental, melodic, and harmonic processes that contribute to the instinctive skills that an improviser puts to use when taking a solo.', 'While many people are fans of\njazz and understand that musicians are often “making up” the\nnotes they are playing during a performance, most people—often\nincluding musicians, themselves, who are beginning to learn improvising—aren’t\nclear about what exact processes take place to enable this to happen. The\npurpose of this course is to introduce the basic concepts of improvisation and\nhow to go about mastering the different musical and mental skills involved. <br><br>Course author Gary Burton codifies a sought-after approach to improvisation that has been at the \ncore of Berklee College of Music\'s curriculum for decades. Students who complete\nthis course will know what to practice and how to practice the\nvarious aspects of improvising, in addition to understanding how the improviser spontaneously\ncommunicates to the listeners through their musical creations. \n\n\n\n<br>', 'https://www.coursera.org/course/improvisation', 'http://www.youtube.com/watch?v=pTuR6lbSh68', '2013-04-29', 5, 'https://coursera-course-photos.s3.amazonaws.com/0f/457e763eac0790be019fc29e90a153/jazz-large.jpg', 'Music, Film, and Audio', 'Coursera'),
(545, 'Introduction to Guitar', 'Grasp the essentials needed to begin playing acoustic or electric guitar. You\'ll learn an easy approach to get you playing quickly, through a combination of exploring the instrument, performance technique, and basic music theory. ', 'For students who have long thought about picking up the acoustic or electric guitar, this course will provide an easy-access foundation that will get you playing. When first learning guitar, it is important to have the material presented in stages, in an enjoyable way that allows you to grasp the basics of the instrument and music. The course begins simply with the parts of the guitar, the names of the strings, tuning, and technique—whether finger-style or pick. It then explores the basics of music theory with such topics as scales, triads, power chords, and fingering and shapes.<br><br>At the end of this course, students will understand the structure, parts, and accessories of the instrument, in addition to an understanding of its basic maintenance. Electric guitar players will learn the \noperation of their instrument along with basic options for \namplification, effect pedals, and sounds. Students will also learn to develop correct technique and apply theory concepts to their playing. They will have the foundational knowledge necessary to pursue most intermediate guitar courses. <br>', 'https://www.coursera.org/course/guitar', 'http://www.youtube.com/watch?v=iUxpwYUlWDc', '2013-04-29', 6, 'https://coursera-course-photos.s3.amazonaws.com/8f/d4aece023b1764926a3c9adb680b0d/guitar-large.jpg', 'Music, Film, and Audio', 'Coursera'),
(546, 'Songwriting', 'Learn an efficient, effective process for writing songs that express your ideas and emotions, including a range of tools that revolve around the concept of prosody—the matching of lyrics and music to support your underlying message. ', 'There’s a songwriter lurking somewhere inside you, peeking\naround corners, wondering if it’s safe to come out. Now it is. This course is an\ninvitation to let your inner songwriter step into the sunlight. All it takes is\na simple “yes” and you’ll be climbing that windy hill, marveling at the view.<br><br>If you haven’t written any or many songs, this course will show you\nan efficient, effective process for tailoring songs to express your ideas and\nemotions. If you have, you’ll look at your process differently, taking control\nof aspects of the process you may have not noticed.<br><br>The course will start by examining the tools available to you, all\nrevolving around the essential concept of <i>prosody</i>. You’ll learn to use your\ntools to enhance your message—to work compositionally at the same time you’re\ndeveloping your ideas.<br><br>You’ll be working both lyrically and musically, though\nmusically it’s not necessary that you either read music or play an instrument.\nIf you play, great, and you’ll be encouraged to play and record your musical\nresponses to the assignments. If you don’t play, the course offers you a number\nof musical loops to work with. All you’ll have to do is sing your melodies over\nthe loops.<br><br>Assignments will ask you to post something for peer review—sometimes lyric lines or sections, sometimes\nmelodies, sometimes both. None of it has to be polished. The course is about writing,\nnot performing.<br><br>Most important, you’ll have a lot of fun.', 'https://www.coursera.org/course/songwriting', 'http://www.youtube.com/watch?v=X6-5B7IG6zU', '2013-03-01', 6, 'https://coursera-course-photos.s3.amazonaws.com/f4/b0deaed64e4c56f50bf71385d5bc1d/songwriting-large.jpg', 'Music, Film, and Audio', 'Coursera'),
(547, 'Property and Liability: An Introduction to Law and Economics', 'Think about the oldest and most familiar principles of American law, property and proportional liability, in a new and surprising way, and learn to apply economic reasoning to an especially important and interesting aspect of life. ', 'One of the most interesting\nand important developments in social science since 1970 has been the\n"discovery" of a consistent economic logic underlying the great\ncommon law subjects of property, contract, tort and crime, the\nthousand-year-old bedrock of the English and American legal systems. Property\nand contract provide the institutional\nscaffolding that makes free exchange in markets possible, while the liability\nsystems of tort and crime appear to mimic market exchange in areas of human activity\nwhere free exchange itself, for well-defined reasons, is not possible. This\ncourse seeks to expose this underlying economic logic through the close\ninvestigation of a series of paradigmatic problems and examples in light of\nsome simple but very powerful economic ideas. The course assumes no prior\nbackground in economics or law, and begins with an introduction to the basic\nconcepts of property, exchange, efficiency and externality. On this foundation,\nspecific topics in the law, including property, tort and crime, eminent domain, intellectual property and criminal procedure, are considered. Each group of lectures will\nelaborate on a different concrete problem or example to suggest the range of legal issues and questions to which economic reasoning can be productively applied. The ideas and\nmodes of analysis developed in the course are not difficult or mysterious, but\nthe questions of interpretation and policy that they raise about a subject that affects everyone are challenging and\nprovocative. <p></p>', 'https://www.coursera.org/course/lawandecon', 'http://www.youtube.com/watch?v=UzJNfaoki2c', '2013-03-18', 6, 'https://coursera-course-photos.s3.amazonaws.com/20/29a56e9044b4ed07a9abc3140b84bf/Smokestacks_3958.jpeg', 'Economics & Finance, Humanities, Law', 'Coursera'),
(548, 'Introduction to Music Production', 'Learn about the music production process—including recording, editing, and mixing—and the tools available to you to create contemporary music on your computer. ', 'With the recent introduction of high-quality-low-cost software and hardware, the tools of music production are now available to the masses. Albums are made in bedrooms as well as studios. On the surface this is liberating. Anyone can make an album for the low cost of a couple pieces of gear and a software package. But, if you dig deeper, you will find that it is not so easy. Producing music requires knowledge, <b></b>dedication, and creativity.<br> <br>Knowledge is where this course comes in. No matter what kind of music you are making, there is a large set of tools that you will need to use. Each lesson of this course will demonstrate a different set of music production tools, loosely following along the music production process of recording, editing, and mixing. <br><br>We will start with some background on the nature of sound and how we perceive it. We will then examine the components necessary to record audio into a computer, so that you understand the devices that sound must travel through in a music production process. <br> <br>Once recorded, sound must be organized along a timeline, a process known as editing. It allows us to give the impression of perfect performances and create many of the sounds we hear in contemporary music. The contemporary editing tool is the Digital Audio Workstation (DAW), a piece of software that stores and organizes all the assets of a musical project. We will focus on the editing tools that are essential in contemporary music production and that all DAWs provide. <br><br>After editing, sounds must be combined or mixed together, so we look to the mixing board—a very creative place if you know how to use it. We will explore the basic functionality of both hardware and software mixing boards, including volume, pan, mute, solo, busses, inserts, sends, and submixes. The mixing process, however, includes more tools than the mixing board provides on its own. Sound must also be processed, modified from its recorded state to fit the context of the music. We will look at compression, equalization, and delay, and examine the many audio effects that are offshoots of these devices and how they are used in a musical context.<br> <br>We will then explore the synthesizer, a major tool within the production of contemporary music. Yes, great music can and will be created without the synthesizer, but learning how a synthesizer works will give you a language to describe sound. Music is a collaborative art form, so there is nothing more powerful than effective communication. <br> <br>In the end, the music production process relies on your creativity. Creativity is a product of the mind and will stay there, unexpressed, until the right tools are used in the right way to share it with the world. If you have an idea in your head, it will take numerous steps, each with an important tool, to reach your audience. You bring the dedication and creativity, and this course will bring you the knowledge to make that happen.<br>', 'https://www.coursera.org/course/musicproduction', 'http://www.youtube.com/watch?v=pgIQ7ouOw4M', '2013-03-01', 6, 'https://coursera-course-photos.s3.amazonaws.com/01/ddf467a93b09155ddb4f07b07204b1/production-large.jpg', 'Music, Film, and Audio', 'Coursera'),
(549, 'Linear and Discrete Optimization', 'The course is an introduction to linear and discrete optimization - an important part of computational mathematics with a wide range of applications in many areas of everyday life.', 'This\n course serves as an introduction to linear and discrete \noptimization from the viewpoint of a mathematician or computer \nscientist. Besides learning how linear and discrete optimization can be applied, we focus on \nunderstanding methods that solve linear programs and discrete optimization problems in a mathematically \nrigorous way. <br><br>We will answer questions like:<br><br><ul><li>Does a particular method work correctly?</li><li>Does it terminate and, if yes, in what time?</li><li>Can we prove that a solution is optimal?</li></ul>The\n course starts by discussing what a linear program is and how linear programming can be \napplied. Then, we will treat the simplex method and the theory of \nduality. We will then discuss some combinatorial optimization problems like maximum weight bipartite matching and maximum flows. <br><br>The\n course constitutes about half of the material on linear and discrete optimization \nthat is taught for mathematics and computer science undergraduates at \nEPFL and will feature video lectures, quizzes, programming assignments, \nand a final exam. <br>', 'https://www.coursera.org/course/linearopt', 'http://www.youtube.com/watch?v=YxFMBvBw54U', '2013-02-18', 8, 'https://coursera-course-photos.s3.amazonaws.com/1a/c51aad6b5debccc8e5154afe2c039b/logo_big.png', 'Computer Science: Theory, Mathematics', 'Coursera'),
(550, 'Financial Engineering and Risk Management', 'This course is an introduction to the theory and practice of financial engineering and risk management. We consider the pricing of derivatives, portfolio optimization and risk management and cast a critical eye on how these are used in practice.', 'Financial Engineering is a multidisciplinary field involving finance and economics, mathematics, statistics, engineering and computational methods. The emphasis of this course will be on the use of simple stochastic models and optimization for portfolio optimization, derivatives pricing and risk management. <br><br>Our examples will draw from many asset classes including equities, fixed income, credit, mortgage-backed securities and structured products. We will also consider the role that some of these asset classes played during the financial crisis. If time permits, we will also discuss other applications including real options, energy and commodities modeling, and algorithmic trading among others.<br><br>We hope that students who complete the course will have a good understanding of the "rocket science" behind financial engineering. But perhaps more importantly, we hope they will also understand the limitations of this theory in practice and why financial models should always be treated with a healthy degree of skepticism.<br>', 'https://www.coursera.org/course/fe', 'http://www.youtube.com/watch?v=VhU4bFtJ1g0', '2013-02-24', 10, 'https://coursera-course-photos.s3.amazonaws.com/e7/9b1674a03d5fb418115f15b8d6cdaf/FinacialEngLogo.jpg', 'Economics & Finance, Statistics and Data Analysis', 'Coursera'),
(551, 'Natural Language Processing', 'Have you ever wondered how to build a system that automatically translates between languages? Or a system that can understand natural language instructions from a human? This class will cover the fundamentals of mathematical and computational models of language, and the application of these models to key problems in natural language processing.', '<p>Natural language processing (NLP) deals with the application of computational models to text or speech data. Application areas within NLP include automatic (machine) translation between languages; dialogue systems, which allow a human to interact with a machine using natural language; and information extraction, where the goal is to transform unstructured text into structured (database) representations that can be searched and browsed in flexible ways. NLP technologies are having a dramatic impact on the way people interact with computers, on the way people interact with each other through the use of language, and on the way people access the vast amount of linguistic data now in electronic form. From a scientific viewpoint, NLP involves fundamental questions of how to structure formal models (for example statistical models) of natural language phenomena, and of how to design algorithms that implement these models.</p>\n\n<p>In this course you will study mathematical and computational models of language, and the application of these models to key problems in natural language processing. The course has a focus on machine learning methods, which are widely used in modern NLP systems: we will cover formalisms such as hidden Markov models, probabilistic context-free grammars, log-linear models, and statistical models for machine translation. The curriculum closely follows a course currently taught by Professor Collins at Columbia University, and previously taught at MIT.</p>', 'https://www.coursera.org/course/nlangp', '', '2013-02-24', 10, 'https://coursera-course-photos.s3.amazonaws.com/26/761dfb7b58773c88fe4cb2aed26a3c/iStock_000020359734_Small.jpg', 'Computer Science: Artificial Intelligence', 'Coursera'),
(552, 'Climate Literacy: Navigating Climate Change Conversations', 'Climate Literacy tackles the scientific and socio-political dimensions of climate change. This course introduces the basics of the climate system, models and predictions, human and natural impacts, mitigative and adaptive responses, and the evolution of climate policy.', '<p>This course explores the basic concepts and terms needed to understand\n the science of climate change, and the available mitigation, adaptation\n and policy options. By the end of the course, students will be able to:</p>\n<p>· Tell the story of our climate, describing how interactions among\n atmosphere, ocean, land, and life lead to climatic changes at all timescales</p>\n<p>· Evaluate the likely effect of historical human fossil emissions\n and land use changes on Earth’s energy balance and climate.</p>\n<p>· Describe the direct observations of climate change in the second\n half of the 20th century, and articulate the evidence attributing global\n warming in this time period to human causes.</p>\n<p>· Assess the utility - and limits - of climate models to predict\n global and regional climate change.</p>\n<p>· Articulate the demographic, economic, technological and political\n factors that influence both humans’ impact on the climate and humans’ vulnerability\n to climate change.</p>\n<p>· Express an informed opinion on the scope and urgency of the efforts\n needed to both mitigate and adapt to climate change.</p>\n<p> We provide the scientific basics of climate change paired with the\n response options (mitigation and adaptation) and policy landscape. Focusing\n exclusively on the science of climate change may not allow a nuanced understanding\n of the social implications of this science. Similarly, political\n or economic analyses of climate change frequently neglect the underlying\n mechanics behind climate change thresholds, feedbacks, and the potential\n for abrupt change. This course explores linkages between climate change\n and other pressing priorities such as human health, poverty, community\n livability, economic resilience, and other environmental problems (such\n as biodiversity and water quality). We acknowledge the urgent need\n to design innovative strategies that realize multiple objectives (or co-benefits)\n simultaneously, and explore the particular capacity for sustainability\n and climate change to provide an avenue for achieving these objectives. </p>', 'https://www.coursera.org/course/climateliteracy', 'http://www.youtube.com/watch?v=zB6jr34HzZY', '2013-05-20', 10, 'https://coursera-course-photos.s3.amazonaws.com/34/3695b2ea7c68d91a1372216c456582/Sustainability-s-Earth01.jpg', 'Energy & Earth Sciences', 'Coursera'),
(553, 'Creative Programming for Digital Media & Mobile Apps', 'For anyone who would like to apply their technical skills to creative work ranging from video games to art installations to interactive music, and also for artists who would like to use programming in their artistic practice.', 'This course will teach you how to develop and apply programming skills to creative work. This is an important skill within the development of creative mobile applications, digital music and video games. It will teach technical skills needed to write software that make use of images, audio and graphics, and will concentrate on the application of these skills to creative projects. Additional resources will be provided for students with no programming background.<br><br>', 'https://www.coursera.org/course/digitalmedia', 'http://www.youtube.com/watch?v=VrVFJGqu09g', '2013-06-01', 6, 'https://coursera-course-photos.s3.amazonaws.com/60/ae3ac748c777c91d49c08e9a329b79/GoldComputing3.jpg', 'Information, Tech, and Design, Computer Science: Software Engineering', 'Coursera'),
(554, 'Leading Strategic Innovation in Organizations', 'Improve your ability to manage creativity and to lead an innovation strategy in businesses, schools, hospitals, governments, and other complex organizations and institutions, by diagnosing likely innovation failures before they occur.', '<span>This\ncourse is intended to help you improve your ability to manage creativity,\ninnovation and change in business, education, healthcare, government, and in\nany other complex organization or institution by diagnosing potential\ninnovation failures before they can occur. Using an “<span>innovation constraints<i>”</i></span> framework that draws on modern social\nscience research and on insights from business practice, participants will\nlearn how to best manage people (be they co-workers, bosses, customers,\nclients, friends or any other stakeholders) when innovation is the goal. \nWhile we see several examples of technological innovation, we are not focused\non the management of technology. \nInstead, we focus on something much more powerful: understanding and managing the people engaged\nin creation, innovation and positive change, regardless of the context. </span>\n\n<p>The course is\ndesigned to help you answer the following types of questions:</p>\n\n<ul><li>What are the conditions for successful\n innovation?</li><li>What causes innovation to fail?</li><li>What makes creative people creative?</li><li>How should I manage an innovative team?</li><li>How do I lead an effective brainstorm process?</li><li>What is an innovation portfolio and how can\n I manage one?</li><li>Why do so many great ideas get killed?</li></ul>\n\n<p><span>The approach in this\nclass will be to treat innovation as the process of <i>generating</i>, <i>assessing</i>,\nand then <i>implementing</i> useful and valuable ideas. As we will\ndiscuss, generating ideas is relatively easy; what can be hard is getting those\nideas listened to, accepted, and implemented in organizations. In\naddition to learning how to lead creative people and creative teams, participants\nwill also learn techniques for improving their own creativity. During the\ncourse you will engage numerous activities and exercises intended to bring\ncurrent habits of thought and behavior to the surface for examination and\nchange.<br></span></p>', 'https://www.coursera.org/course/innovation', 'http://www.youtube.com/watch?v=AcMCgnTNeMo', '2013-03-05', 8, 'https://coursera-course-photos.s3.amazonaws.com/36/96c0fe846382cecca059755e003e07/Coursera-logo.jpg', 'Business & Management', 'Coursera'),
(555, 'Malicious Software and its Underground Economy: Two Sides to Every Story', 'Learn about traditional and mobile malware, the security threats they represent, state-of-the-art analysis and detection techniques, and the underground ecosystem that drives such a profitable but illegal business.', 'Cybercrime has become both more widespread and harder to battle. Researchers and anecdotal\nexperience show that the cybercrime scene is becoming increasingly organized\nand consolidated, with strong links also to traditional criminal networks.\nModern attacks are indeed stealthy and often profit oriented.\n\n<br><br>Malicious software (malware) is the traditional way in which cybercriminals infect user\nand enterprise hosts to gain access to their private, financial, and\nintellectual property data. Once stolen, such information can enable more\nsophisticated attacks, generate illegal revenue, and allow for cyber-espionage.\n<br><br>By mixing a practical, hands-on approach with the theory and techniques behind the scene, the course discusses the current academic and underground research in the\nfield, trying to answer the foremost question about malware and underground\neconomy, namely, "Should we care?".<br><br> Students will learn how traditional and mobile malware work, how they are analyzed and\ndetected, peering through the underground ecosystem that drives this profitable\nbut illegal business.\n\nUnderstanding how malware operates is of paramount importance to form knowledgeable experts, teachers, researchers, and practitioners able to fight back. Besides, it allows us to gather intimate knowledge of the systems and the threats, which is a necessary step to successfully devise novel, effective, and practical mitigation techniques.', 'https://www.coursera.org/course/malsoftware', 'http://www.youtube.com/watch?v=G_ejj8NfiUw', '2013-06-01', 6, 'https://coursera-course-photos.s3.amazonaws.com/90/214ce37265a397e3cb97fd25e658de/cavallaro-logo.png', 'Computer Science: Systems & Security, Computer Science: Software Engineering', 'Coursera'),
(556, 'Introduction to Systematic Program Design - Part 1', 'This course is about learning to program well: building programs that are elegant, well tested and easy to maintain. The course is intended for students with no programming experience, but many former students who already knew how to program have said it made them better programmers.', '<p>Phones, diesel engines, animated newspapers, medical devices, games, political\n campaigns, medical research, mining, transportation systems, ... and so\n on, and on, and on... every day more of the world around us is at least\n partly run by computer programs. This means that being able to design programs\n - or at least be able to work with people who design programs - is becoming\n a more and more valuable skill.</p>\n<p>To build your own programs you need to know two things: how to use the\n specific programming language and libraries needed, and the more general\n skill of how to design a program.</p>\n<p>This course presents a <b>design method</b> that will enable you to approach\n the design of complex programs systematically. The method will work for\n programs in this course as well as hard to design programs you develop\n in the future.</p>\n<p>Using this method you will learn how to model the information in a problem\n domain, how to structure program data to mirror that information and how\n to further structure the data to lead to a well organized program. You\n will also learn to distinguish those parts of a program that are naturally\n data driven, from those that should use an alternative algorithmic approach.\n The method uses unit-tests to both produce a better developed design, and\n to test your program as you develop it.</p>\n<p>The course has a two-phase structure. In the first phase we use a simple\n teaching language to cover the core of the design method. The second phase\n consists of parallel tracks, with each track using a different popular\n programming language and focusing on a different kind of problem. This\n will help you bring the design method to whatever language and problem\n domain interests you.</p>', 'https://www.coursera.org/course/programdesign', 'http://www.youtube.com/watch?v=_2O5CUVch-g', '2013-06-03', 8, 'https://coursera-course-photos.s3.amazonaws.com/e7/a9c4480054bf8b689e86f5cf9f99e3/IntroSystematic_1280x720.jpg', 'Computer Science: Software Engineering', 'Coursera'),
(557, 'Pattern-Oriented Software Architectures for Concurrent and Networked Software', 'In this course we will learn how to apply patterns, pattern languages, and frameworks to alleviate the complexity of developing concurrent and networked software. \n', '<div><p>The advent of multi-core and distributed-core processors, coupled with ubiquitous wireless and wired connectivity, is driving the need for software engineers and programmers who understand how to develop concurrent and networked software. Despite many improvements in processors and networks, however, developing concurrent and networked software remains hard and developing high quality reusable concurrent and networked software is even harder. The principles, methods, and skills required to develop such software are best learned by understanding <i>patterns</i>, <i>pattern languages</i>, and <i>frameworks</i>.</p> <p>\n\nA <a href="http://en.wikipedia.org/wiki/Software_design_pattern">pattern</a> is general reusable solution to a commonly occurring problem within a given context in software design. When related patterns are woven together they form a <a href="http://en.wikipedia.org/wiki/Pattern_language">pattern language</a> that provides a process for the orderly resolution of software development problems. <a href="http://en.wikipedia.org/wiki/Software_framework">Frameworks</a>\ncan be viewed as concrete realizations of pattern languages that facilitate direct reuse of design and code. </p><p>\n\nThis course describes how to apply patterns, pattern languages, and frameworks to alleviate the complexity of developing concurrent and networked software via the use of object-oriented design techniques and programming language features, distribution middleware, and advanced operating system mechanisms. Case studies from the domains of mobile apps, web servers, communication middleware, and avionics systems will be used to showcase pattern-oriented software architecture design and programming techniques for concurrent and networked software.</p></div>', 'https://www.coursera.org/course/posa', 'http://www.youtube.com/watch?v=8AwCaST6RRY', '2013-03-04', 10, 'https://coursera-course-photos.s3.amazonaws.com/6a/a304d2720149e3ae422acbfda19f6d/foos.jpg', 'Information, Tech, and Design, Computer Science: Systems & Security, Computer Science: Software Engi', 'Coursera'),
(558, 'Nutrition, Health, and Lifestyle: Issues and Insights', 'This seven week course will explore nutrition concepts that take center stage in mainstream media outlets and become conversation topics among consumers interested in food choice as it relates to optimal health and physical performance.', 'Separate fact from fiction and fads as you learn about core\nnutrition concepts and how to evaluate not only personal food choices and\noverall dietary patterns, but nutrition related content in the media and in\nadvertising. Such topics include\nfundamentals of a healthful eating pattern, nutrition labeling, dietary\nsupplements, fortified and “super” foods, plant-based nutrition, nutrition and\nfitness, and food allergies and intolerances. The course will also include an overview of nutrition fundamentals as\nthey relate to human health.\n\n<p>During this course you will have the opportunity to:</p><ul><li>Analyze and evaluate your own food and beverage\nintake using a reputable nutrient database.</li><li>Research of a dietary supplement of your\nchoosing using credible informational websites as well as evidence-based\nmedical literature.</li><li>Personally examine the concept of energy balance\nthrough determination of your calorie needs, intake and expenditure.</li></ul>', 'https://www.coursera.org/course/lifenutr', 'http://www.youtube.com/watch?v=JcU0EwdLVnU', '2013-05-06', 7, 'https://coursera-course-photos.s3.amazonaws.com/fd/2608c3646d8aafa442e8d49216fb90/Food-icon.jpg', 'Biology & Life Sciences, Food and Nutrition', 'Coursera'),
(559, 'Fundamentals of Human Nutrition', 'This introductory course provides an overview of the principles of nutritional science. Subject matter includes description and functions of nutrients, digestion and absorption, effects of nutrient deficiencies and toxicities, requirements, food sources, nutrient interactions, dietary guidelines, and the role of nutrition in health and disease.', '<b>After completing this course, students will be able to:<br></b><ul><li>Identify the nutrients needed by humans and explain their major functions in the body, dietary sources, and the effects of insufficient as well as excessive intakes.</li><li>Describe the processes of food digestion and absorption and nutrient utilization.</li><li>Explain the meaning of energy balance, and methods to calculate energy needs<br></li></ul>', 'https://www.coursera.org/course/humannutrition', '', '2013-01-22', 10, 'https://coursera-course-photos.s3.amazonaws.com/68/789c4a63efb7ff27ac2e624984fb05/HEADHumanNutrition.jpg', 'Health & Society, Biology & Life Sciences, Food and Nutrition', 'Coursera'),
(560, 'Global Sustainable Energy: Past, Present and Future', 'Students will explore energy consumption patterns including individuals, countries and the entire globe. These patterns will include all sectors of the global economy from fully developed countries to developing nations. New energy sources will be investigated and international solutions to future needs will be analyzed.', '<p>This general education course will cover concepts of work and energy and their relationship with our modern society. Each aspect of this relationship with energy will be analyzed including consumptive patterns for the residential, commercial, industrial, and transportation sectors of our economy. Geological sources for fossil fuels will be examined as will the differences between reserves and production. Energy capacities and limitations for new sources of renewable energies will also be examined. All of these topics will be examined within a national and international context.</p>', 'https://www.coursera.org/course/globalenergy', 'http://www.youtube.com/watch?v=GWAMOALSI-8', '2013-03-24', 15, 'https://coursera-course-photos.s3.amazonaws.com/f0/02aa80732c2e82c2b1e0195d6946cc/Global-Sustainable-Energy.jpg', 'Energy & Earth Sciences', 'Coursera'),
(561, 'Sustainable Agricultural Land Management ', 'This course will cover the agricultural and urban water quality issues in Florida, their bases, land and nutrient management strategies, and the science and policy behind the best management practices (BMPs). Students will learn to evaluate BMP research and analyze its role in determining practices and policies that protect water quality.', 'Protecting the state’s water from nutrient contamination depends on adopting best management practices (BMPs) for land and nutrient management in the urban and agricultural settings. BMPs must be based on science and be practical and economical to adopt, while meeting society’s needs.<br>', 'https://www.coursera.org/course/sustainableag', '', '2013-03-04', 9, 'https://coursera-course-photos.s3.amazonaws.com/6d/040f3e75d29cf168777a3c2f4228d3/Sustainable-Agriculture.jpg', 'Business & Management, Food and Nutrition', 'Coursera'),
(562, 'Data Management for Clinical Research', 'Learn critical concepts and practical methods to support research data planning, collection, storage and dissemination.', '<p>This course is designed to teach important concepts related to research data planning, collection, storage and dissemination. Instructors will offer information and best-practice guidelines for 1) investigator-initiated & sponsored research studies, 2) single- & multi-center studies, and 3) prospective data collection & secondary-reuse of clinical data for purposes of research. The curriculum will balance theoretical guidelines with the use of practical tools designed to assist in planning and conducting research. Real-world research examples, problem solving exercises and hands-on training will ensure students are comfortable with all concepts. </p>', 'https://www.coursera.org/course/datamanagement', '', '0000-00-00', 6, 'https://coursera-course-photos.s3.amazonaws.com/ce/6c32f8720ec9c8cd3dac99fcc1c83b/data-sm.jpeg', 'Information, Tech, and Design, Statistics and Data Analysis', 'Coursera'),
(563, 'Why We Need Psychology', 'For adults with an interest in the study of human behaviour – especially those who have often considered studying psychology but who have yet to begin. ', 'This course will introduce students to the discipline of psychology: in particular to the main schools of thought employed to explain human behaviour and to the potential applications of psychology in practice. ', 'https://www.coursera.org/course/needpsych', '', '2013-06-01', 6, 'https://coursera-course-photos.s3.amazonaws.com/15/9dd580d5f364063fd94288be8c398a/V-multicoloured-brain.jpg', 'Humanities', 'Coursera'),
(564, 'The Camera Never Lies', 'Film, images & historical interpretation in the 20th century for those who have a general interest in photojournalism, and films based on historical events.', 'This\nshort course is an introduction to use of photographs as historical evidence in\nthe twentieth century, issues of authenticity and manipulation, and the place\nof film and historical adoptions as public history. ', 'https://www.coursera.org/course/lyingcamera', 'http://www.youtube.com/watch?v=_NMd60yV5Nc', '2013-06-01', 6, 'https://coursera-course-photos.s3.amazonaws.com/46/fb5637e5b6d4e71b0b97cfeb0aec55/Flag-raising-on-Iwo-Jima.jpg', 'Humanities, Music, Film, and Audio', 'Coursera'),
(565, 'English Common Law: Structure and Principles', 'For students or professionals who have an interest in learning about the development and application of the law in a common law jurisdiction. ', 'This course is designed as an introduction to English Common Law and\nwill give students a broad understanding of the characteristics and functions\nof the English Legal System. Students will gain knowledge of the sources of\nEnglish law, the system of courts and tribunals in England and Wales and the legal\nprofession and judiciary. Students will be introduced to the principles of\nlegal research and identification of sources of law. ', 'https://www.coursera.org/course/engcomlaw', 'http://www.youtube.com/watch?v=vuRp2PZuTCs', '2013-06-01', 6, 'https://coursera-course-photos.s3.amazonaws.com/dc/7e695f3864e8bdd71714c0abc22e58/new-logo.jpg', 'Humanities, Law', 'Coursera'),
(566, 'Online Games: Literature, New Media, and Narrative', 'For both newcomers and hard-core gamers who want to reflect on their passion, this course will explore what happens to stories, paintings, and films when they are turned into online games.', '<p><span>Intended for both newcomers who are\ncurious about video games and hard-core gamers who want to reflect on their\npassion, this course will explore what happens to stories, paintings, and films\nwhen they become the basis of massively multiplayer online games. <i>The\nLord of the Rings </i>trilogy—the novels, films, and video game—are our central\nexample of how “remediation” transforms familiar stories as they move across\nmedia. We will study <i>The Lord of the Rings Online</i> against\nthe backdrop of other games such as <i>Final Fantasy </i>, <i>Star Wars: The Old Republic</i>, and <i>Skyrim</i>; narrative theory, intermediality, and game theory; poems by Spenser, Coleridge, Keats, and Browning; fiction by\nTolkien and others;\nand art since the Pre-Raphaelites that has influenced the neo-medievalism of much fantasy literature and gaming.</span></p>\n\n<p>Drawing on centuries\nof romance narrative conventions, the twenty-first century gaming industry has\nbecome a creative and economic powerhouse. \nIt engages the talents of some of our brightest writers, artists,\ncomposers, computer engineers, game theorists, video producers, and marketing\nprofessionals, and in 2011, it generated an estimated $64 billion in revenue. Anyone interested in today’s culture needs to\nbe conversant with the ways this new medium is altering our understanding of\nstories. Join me as we set out on an\nintellectual adventure, the quest to discover the cultural heritage of online\ngames.</p>', 'https://www.coursera.org/course/onlinegames', 'http://www.youtube.com/watch?v=ShjAKuq4i-0', '2013-07-01', 7, 'https://coursera-course-photos.s3.amazonaws.com/12/c22bb29b7a6b73d60eba57bf0fe152/Cheeryble-by-moonlight.jpg', 'Humanities, Arts', 'Coursera'),
(567, 'Economic Issues, Food & You', 'This course emphasizes the role of economics regarding its influence on food prices, the environment, and government policies. The primary objective of this course is to explore the basic tool kit of economic concepts that will enable students to critically analyze the choices they face as consumers and world citizens.', 'Students will study the economic concepts of scarcity, supply and demand, society’s income and well-being, inflation, productivity, unemployment, the basic tools of finance, labor, and the “Fed”. Students will examine how parts of the U.S. economy function and develop an awareness of current economic issues and problems. <br>', 'https://www.coursera.org/course/ecfoodandyou', 'http://www.youtube.com/watch?v=Tn_f7C7hZKE', '2013-03-18', 10, 'https://coursera-course-photos.s3.amazonaws.com/f7/ee7c21aad1a240a7de4f4201cb2c9c/Eco-Issues-Food-and-You.jpeg', 'Economics & Finance, Food and Nutrition', 'Coursera'),
(568, 'Foundations of Business Strategy', 'Learn how to analyze an organization\'s strategy and make recommendations to improve its value creation by building your strategist\'s toolkit.', 'In this course, we will explore the underlying theory and frameworks that provide the foundations of a successful business strategy. We will develop your ability to think strategically by providing you the tools for conducting a strategic analysis. Strategic analysis is critical for analyzing the\ncompetitive context in which an organization operates and for making reasoned\nand reasonable recommendations for how that organization should position itself\nand what actions it should take to maximize value creation. Aspiring managers, entrepreneurs, social\nentrepreneurs, analysts, and consultants all may find value in mastering these\nfundamentals.', 'https://www.coursera.org/course/strategy101', 'http://www.youtube.com/watch?v=06RGAm3yxMQ', '2013-03-04', 6, 'https://coursera-course-photos.s3.amazonaws.com/5d/481eb80f086fca326320a1f0d2c35d/Lenox-Foundations-of-Business-Strategy-460x259.gif', 'Business & Management', 'Coursera'),
(569, 'MOS Transistors', 'Learn how MOS transistors work, and how to model them. The understanding provided in this course is essential not only for device modelers, but also for designers of high-performance circuits.\n', 'The MOS transistor (MOSFET) is the workhorse of the microelectronic revolution. It is estimated that there are currently over 1 billion transistors per human being in the world. Part of the MOS transistor\'s success lies in its very small size (you can fit 1,000 of them within the <i>width</i> of a human hair!), part lies on some amazing things this device can do. However, the descriptions of MOS transistors in basic electronics courses cannot begin to do justice to this device. If you want to really know how the MOSFET operates, and how to model it, you need to study it carefully and systematically. This course will help you do just that. <br>\n<br>The course starts with a review of basic physical principles, and expands into a detailed treatment of MOS transistor phenomena, in a logical and systematic fashion, enhanced by intuitive discussions. We discuss a hierarchy of models - from the simple to the sophisticated - clearly identifying the connections between them, and encompassing many aspects of modeling, including dc, large-signal transient operation, quasi-static operation, non-quasi-static operation, small-signal operation, noise, and structural effects. We discuss the concepts on which the most popular CAD (computer-aided design) MOS transistor models are based.<br><br>', 'https://www.coursera.org/course/mosfet', '', '2013-03-11', 10, 'https://coursera-course-photos.s3.amazonaws.com/33/a89e4f7802ee99b6a3ce57a0a89bd4/Logo1large_b.gif', 'Engineering', 'Coursera'),
(570, 'Surviving Disruptive Technologies', ' The purpose of this course is to help participants and the organizations they encounter survive the waves of technological disruptions facing business, government, education and their daily lives.', '<p><b></b></p><p>The purpose of this course is to help individuals and organizations\nsurvive when confronted with disruptive technologies that threaten their\ncurrent way of life. We will look at a\ngeneral model of survival and use it to analyze companies and industries that\nhave failed or are close to failing. Examples\nof companies that have not survived include Kodak, a firm over 100 years old,\nBlockbuster and Borders. It is likely\nthat each of us has done business with all of these firms, and today Kodak and\nBlockbuster are in bankruptcy and Borders has been liquidated. Disruptions are impacting industries like\neducation; Coursera and others offering these massive open online courses are a\nchallenge for Universities. In addition\nto firms that have failed, we will look at some that have survived and are\ndoing well. What are their strategies\nfor survival?<br></p>\n\n<p>By highlighting the reasons for the decline of firms and\nindustries, participants can begin to understand how to keep the same thing\nfrom happening to them. Through the\nstudy of successful organizations, we will try to tease out approaches to\ndisruptions that actually work. Our\nultimate objective is to develop a strategy for survival in a world confronting\none disruptive technology after another.</p>', 'https://www.coursera.org/course/sdt', 'http://www.youtube.com/watch?v=ZVw4ToQvgkE', '2013-03-25', 7, 'https://coursera-course-photos.s3.amazonaws.com/9d/c079805439e5decddf1f4f652c2994/lucas_logo.jpg', 'Information, Tech, and Design, Business & Management', 'Coursera'),
(571, 'Principles of Microeconomics', 'Learn how markets work, what they accomplish well and what their limitations are.', '<p>\n \n \n \n\n\n</p><p>We make economics\ndecisions every day: what to buy, whether to work or play, what to\nstudy. We respond to markets all the time: prices influence our\ndecisions, markets signal where to put effort, they direct firms to\nproduce certain goods over others. Economics is all around us. </p><p>This\ncourse is a rigorous introduction to the microeconomic theory of\nmarkets: why we have them, how they work, what they accomplish. We\nwill explore what outcomes they generate when they work well\nand what happens when they do not. We will learn why governments are\nimportant and when regulation and intervention is necessary. Examples\nare taken from everyday life, from goods and services that we all\npurchase and use. We will apply the theory to current events and\npolicy debates through weekly exercises. These will empower you to be\nan educated, critical thinker who can understand, analyze and\nevaluate market outcomes. \n</p>\n<p><br>\n</p><p></p>', 'https://www.coursera.org/course/steinmicro', 'http://www.youtube.com/watch?v=pz3SyOk6ZgM', '2013-04-08', 9, 'https://coursera-course-photos.s3.amazonaws.com/cc/d29c75169172a7c1b1cdb15bb47b4c/DS_tax.png', 'Economics & Finance', 'Coursera'),
(572, 'Social Psychology', 'Ever wonder why people do what they do? This course offers some answers based on the latest research from social psychology.', 'Each of us is dealt a different hand in life, but we all face similar\nquestions when it comes to human behavior: What leads us to like one\nperson and dislike another? How do conflicts and prejudices develop, and\nhow can they be reduced? Can psychological research help protect the environment,\nand if so, how? This course offers an introduction to classic and contemporary\nsocial psychology, covering topics such as decision making, persuasion,\ngroup behavior, personal attraction, and factors that promote health and\nwell-being.\n<br>\n<br>Our focus will be on surprising, entertaining, and intriguing research\nfindings that are easy to apply in daily life. As part of this focus, several\nhomework assignments will encourage you to experiment with your life, observe\nthe results, and analyze what took place. The course will also draw from\nthe web sites of <a href="http://www.socialpsychology.org/">Social Psychology Network</a>,\nthe world\'s largest online community devoted to social psychology. I hope\nyou\'ll join me for this course, have fun, and learn some useful information\nthat enriches your life! \n<br>', 'https://www.coursera.org/course/socialpsychology', 'http://www.youtube.com/watch?v=XxLVwBd4bHQ', '2013-07-08', 6, 'https://coursera-course-photos.s3.amazonaws.com/dc/99ebd7aa52f3c39d32e97ca6e3a66c/Course-Image3200x1800.png', 'Health & Society, Business & Management, Education, Social Sciences', 'Coursera'),
(573, 'Calculus One', 'Calculus One is a first introduction to differential and integral calculus, emphasizing engaging examples from everyday life.', 'Calculus is about the very large, the very small, and how things change. The surprise is that something seemingly so abstract ends up explaining the real world. Calculus plays a starring role in the biological, physical, and social sciences. By focusing outside of the classroom, we will see examples of calculus appearing in daily life.<br><br>This course is a first and friendly introduction to calculus, suitable for someone who has never seen the subject before, or for someone who has seen some calculus but wants to review the concepts and practice applying those concepts to solve problems. One learns calculus by doing calculus, and so this course encourages you to participate by providing you with:<br><br><ul><li>instant feedback on practice problems</li><li>interactive graphs and games for you to play</li><li>calculus projects and demos you can try at home</li><li>opportunities for you to explain your thought process</li></ul>', 'https://www.coursera.org/course/calc1', 'http://www.youtube.com/watch?v=Zkn9dj5JZn4', '2013-01-07', 15, 'https://coursera-course-photos.s3.amazonaws.com/78/c0178b527d61fb916f7759eba31125/calculus1.png', 'Mathematics', 'Coursera'),
(574, 'Introduction to Engineering Mechanics', 'This course is an introduction to learning and applying the principles required to solve engineering mechanics problems. ', '<p>This course is an introduction to learning and applying the\nprinciples required to solve engineering mechanics problems.<br></p>\n\n<p>Concepts will be\napplied in this course from previous courses you have taken in basic math and\nphysics. The course addresses the\nmodeling and analysis of static equilibrium problems with an emphasis on real\nworld engineering applications and problem solving.</p>', 'https://www.coursera.org/course/statics1', 'http://www.youtube.com/watch?v=SnMUW8BIdl0', '2013-02-25', 5, 'https://coursera-course-photos.s3.amazonaws.com/c8/5c66a35f74004121e8a8f89ff4c010/whiteman-coursera-icon.jpeg', 'Engineering', 'Coursera'),
(575, 'The Law of the European Union: An Introduction', 'The EU is the most successful supranational legal order to which 27 Member States have transferred sovereign rights. This course explores the functioning of the unique creature that is the EU, the impact of its laws on states, citizens and companies, and the current challenges it faces.', '<p>In 2012, the EU received the Nobel Peace Prize for its decades-long\ncontribution to the advancement of peace and reconciliation, democracy and\nhuman rights in Europe. War has become virtually unthinkable in the EU. When\nthe first steps towards supranational cooperation - primarily targeted at\npreventing the rearmament of Germany - were made in the aftermath of World War\nTwo, the Founding Fathers of the European integration construct could never\nhave imagined this outcome in their wildest dreams. Over the years, the\nsupranational cooperation would widen - from the original European Communities\nconsisting of 6 Member States to the current Union of 27 Members – and deepen –\nfrom the originally almost purely economically inspired Communities to the\ncurrent Union with a say in almost all areas of national competence. At the\nsame time, problems with the Euro have plunged the EU in one of the biggest\ncrises since its inception. This challenges lawmakers to tackle difficult questions\nabout the continued existence of the Euro and the future direction of the\nEuropean integration project.</p><p>This course will give the students an insight into the law of the EU, a\nvast and fascinating area of law which forms an integral part of the legal\nsystems of its 27 Member States. The course is divided\ninto three parts. In the first part, we will pay attention to the creation and the development of the EU, its\ninstitutional structure and functioning, and the specific nature and sources of\nEU law. In the second part, we will examine how EU law\nimpacts on the lives of EU citizens as well as on companies that are\nestablished or provide services in the EU. In the final part, we will tackle Europe’s common currency crisis,\ninvestigating causes, effects and possible routes out of this existential\ncrisis of the Union.</p>\n\n\n\n<p>If you are a student, lawyer, entrepreneur or simply\ninterested in the EU, its development and legal system, this course will\nprovide you with the foundations. The course is of interest to people both\ninside and outside the European Union: EU citizens may learn how to benefit\nfrom the rights contained in EU life; people from other parts of the world may\nlearn from the EU’s specific set-up, its functioning and the legal solutions\nbeing applied in the European context.</p>', 'https://www.coursera.org/course/introeulaw', 'http://www.youtube.com/watch?v=qJv6XMFsKwI', '0000-00-00', 5, 'https://coursera-course-photos.s3.amazonaws.com/4a/eb093dc24f8ae7acfbc3e3654c8f28/logo-for-the-class.jpg', 'Humanities, Social Sciences, Law', 'Coursera'),
(576, 'Analyse Numérique pour Ingénieurs', 'Ce cours contient les 7 premiers chapitres d\'un cours donné aux étudiants bachelor de l\'EPFL. Il est basé sur le livre "Introduction à l\'analyse numérique", J. Rappaz M. Picasso, Ed. PPUR. Des outils de base sont décrits dans les 5 premiers chapitres. Les deux derniers chapitres abordent la question de la résolution numérique d\'équations différentielles. \n', 'L\'analyse numérique fait partie de ce que l\'on appelle aujourd\'hui "Scientific Computing" ou encore "Computational Sciences". Il s\'agit de faire des simulations numériques de phénomènes complexes, par exemple l\'écoulement autour d\'un avion, le retrait passé ou futur d\'un glacier, ou encore des effets spéciaux pour l\'industrie du cinéma. <br><br>Le cheminement permettant d\'obtenir une simulation numérique est le suivant.<br><span><br>\n\n<ul><li>Dérivation d\'un modèle mathématique. Par exemple, dans le cas de la chute d\'un corps, les équations de Newton "masse x accéleration = forces" permettent d\'obtenir une équation différentielle, à laquelle il faut ajouter une condition initiale sur la position et sur la vitesse du corps.</li>\n<br>\n<li>Analyse mathématique : le modèle mathématique obtenu est-il bien posé ? Par exemple, l\'existence d\'une solution unique de l\'équation différentielle demande que certaines conditions sur les forces soient satisfaites.<br></li>\n<br>\n<li>Analyse numérique : en général, la solution du modèle mathématique ne peut pas être obtenue de manière explicite. Il convient d\'utiliser un algorithme permettant d\'approcher la solution grâce à un ordinateur. Dans la mesure du possible on souhaite quantifier l\'erreur entre la solution du modèle mathématique (que l\'on ne connait pas) et son approximation numérique (que l\'on va calculer sur un ordinateur). Pour le choix de l\'algorithme, on tiendra compte du nombre d\'opérations nécessaire au calcul de la solution approchée.</li>\n<br>\n<li>Implémentation sur ordinateur (programmation).</li>\n<br>\n<li>Tests, validation et comparaison avec l\'expérience ou d\'autres résultats numériques.<br></li></ul></span>', 'https://www.coursera.org/course/analysenumerique', 'http://www.youtube.com/watch?v=T7BbKhgI9Ro', '2013-02-18', 9, 'https://coursera-course-photos.s3.amazonaws.com/2f/90ee4f762c16572cb4473f3c505092/coursera.jpg', 'Mathematics, Statistics and Data Analysis', 'Coursera'),
(577, 'A Brief History of Humankind', 'The course surveys the entire length of human history, from the evolution of various human species in the Stone Age up to the political and technological revolutions of the twenty-first century.', '<p>One hundred thousand years ago, <i>Homo\nsapiens </i>was still an insignificant animal minding its own business in a\ncorner of Africa. Our ancestors shared the\nplanet with at least five other human species, and their role in the ecosystem\nwas no greater than that of gorillas, fireflies, or jellyfish. Then, about\n70,000 years ago, a mysterious change took place in the cognitive abilities of <i>Homo\nsapiens, </i>transforming it into the master of the entire planet and the\nterror of the ecosystem. Today it stands on the verge of becoming a god,\nmolding not only its surroundings but also its own body and mind.</p>\n\n<p> The\ncourse will explain how <i>Homo sapiens</i> conquered planet Earth, and what it\ndid with its newly acquired power. How did <i>Homo sapiens</i> manage to drive\nall other human species to extinction, along with about half of the world’s\nlarge terrestrial mammals? When did money and gods appear, and why? How did\nempires rise and fall, and why is it possible for small minorities to lord it\nover vast numbers of subject populations? Why did almost all societies believe\nthat women are inferior to men? What was the role of religion in history, and\nwhy did monotheism become the most widespread type of religion? How did science\nand capitalism become the dominant creeds of the modern era? Does history have\na direction? Did people become happier as history progressed? And what are the\nchances that <i>Homo sapiens</i> will still be around in a hundred years?</p>', 'https://www.coursera.org/course/humankind', 'http://www.youtube.com/watch?v=xQ4eg7Zj5OY', '0000-00-00', 0, 'https://coursera-course-photos.s3.amazonaws.com/d4/67be62c268689fb920785cddb926f1/LOGO-hands-cave.jpg', 'Humanities', 'Coursera'),
(578, 'New Models of Business in Society', 'Examine the critical role that business plays in society, and learn about the exciting new models of business that are changing the way that companies create value.', '<p>This course examines the emergence of a new story about\nbusiness. This new story locates\nbusiness within a societal framework. Almost every business creates or destroys value for customers,\nsuppliers, employees, communities and society, in addition to shareholders and\nother financiers. A number of new models\nof business can be built on this idea such as corporate\nresponsibility, philanthropy, shared value and sustainability. Profits and stakeholder value go together,\nand this course explains how. The final\nsession explores the idea of how to become a stakeholder entrepreneur and\ncreate a business that makes money and makes the world a better place.<br></p>', 'https://www.coursera.org/course/bizsociety', 'http://www.youtube.com/watch?v=X8iSITfLePE', '2013-09-02', 5, 'https://coursera-course-photos.s3.amazonaws.com/13/317b1f7ee5b3208acee83977b843e6/Coursera-New-Models-logo.jpg', 'Business & Management, Social Sciences', 'Coursera'),
(579, 'Genes and the Human Condition (From Behavior to Biotechnology)', 'To acquire an understanding of the fundamental concepts of genomics and biotechnology, and their implications for human biology, evolution, medicine, social policy and individual life path choices in the 21st century. ', '<p>In this class we will cover the essentials of genomics to help you better\nunderstand your own life (know thy genome, know thyself), and how advances in\nbiotechnology are radically changing the scientific landscape.</p>\n\n<p>We will begin with some of the most basic issues\nof genetics, such as the composition of genomes and how the information in them\nis processed so we can get an adult human from an egg. Then we’ll see that much\nof the power of genomics is in comparisons. If I only had your genome there\'s\nnot much I could do with it. But if I lined it up against a chimpanzee genome\nI’d see that they are 98.5% identical. It’s that 1.5% difference that we study to\ndetermine what makes a chimp a chimp and a human a human. </p>\n\n<p>In the next few years you’ll be able\nto get your genome done for a few hundred dollars, and we will look at the\nchallenges you might face dealing with this new self-knowledge. We shall\nparticularly focus on behavior. How can genes predispose some of us to be nice\nand others of us to be psychopaths? We will be examining behavior as a complex\nunfolding of interactions between your genome and the environment. </p>\n\nThanks in large part to genomics we are\nbeginning to understand the living processes that constitute ourselves, where\nwe can begin to intervene to take control of our own future. We will look at\nthe technologies involved and the consequences of this new power. Genetic\nengineering has already changed what you eat and the medicines you take, and will\nlikely therefore change how long you live. If we choose to genetically engineer\nourselves as some advocate then we may also change how we view ourselves as\nhuman beings. We do not know where our ability to intervene in our own living\nprocesses is going to lead us. Depending on your point of view that is the\npromise or the threat of the era we live in. Scientists today already envisage\ncreating life from scratch, and we are entering a world where political considerations,\nand imagination, may be the only brakes on biotechnology.', 'https://www.coursera.org/course/genes', 'http://www.youtube.com/watch?v=fbRSkMVb_Ek', '2013-04-22', 6, 'https://coursera-course-photos.s3.amazonaws.com/9d/700b2427e5b2413b3baa34c4287dcd/Genes.jpg', 'Medicine, Health & Society, Biology & Life Sciences', 'Coursera'),
(580, 'General Game Playing', 'Learn about General Game Playing (GGP) and develop GGP programs capable of competing against humans and other programs in GGP competitions .', 'General game players are computer systems able to play strategy games\nbased solely on formal game descriptions supplied at "runtime". (In\nother words, they don\'t know the rules until the game starts.) Unlike\nspecialized game players, such as Deep Blue, general game players cannot\nrely on algorithms designed in advance for specific games; they must discover\nsuch algorithms themselves. General game playing expertise depends\non intelligence on the part of the game player and not just intelligence\nof the programmer of the game player.\n<br>\n<br>\n<div>GGP is an interesting application in its own right. It is intellectually\n engaging and more than a little fun. But it is much more than that.\n It provides a theoretical framework for modeling discrete dynamic\n systems and for defining rationality in a way that takes into account problem\n representation and complexities like incompleteness of information and\n resource bounds. It has practical applications in areas where these\n features are important, e.g. in business and law. More fundamentally,\n it raises questions about the nature of intelligence and serves as a laboratory\n in which to evaluate competing approaches to artificial intelligence.</div>\n<br>This course is an introduction to General Game Playing (GGP). Students\nwill get an introduction to the theory of General Game Playing and will learn\nhow to create GGP programs capable of competing against other programs\nand humans.', 'https://www.coursera.org/course/ggp', '', '2013-09-30', 8, 'https://coursera-course-photos.s3.amazonaws.com/0c/9f94be74f3fffc9dc21cc72f0a94b4/ggp.jpg', 'Computer Science: Theory, Mathematics, Computer Science: Artificial Intelligence', 'Coursera'),
(581, 'Guinea Pigs, Heroes & Desperate Patients: The History & Ethics of Human Research', 'Learn about the ethical issues that arise when conducting human subjects research, as well as the history that grounds policies and debates in this area of biomedicine.', 'The objective of this course is to increase participants’ awareness and\nunderstanding of ethical issues that arise in the conduct of research on\nhuman subjects. The course will explore the history and future of ethical\nand policy challenges using a multi-disciplinary approach. Leading\nscholars in the ethics of human subject research will serve as course faculty.\n This course will introduce participants to the history that grounds\npolicies and debates regarding the use of humans in research. It will continue\nwith discussion of how current international and US policies\ngoverning research are applied, how ethical norms and concepts have evolved,\nand how, in some cases, changes in research have outpaced changes in policy,\nleading to an often complicated mismatch between the two.\n<br>\n<br>The lead instructor is Jeffrey Kahn, who is the Robert Henry\nLevi and Ryda Hecht Levi Professor of Bioethics and Public Policy at the\nJohns Hopkins University Berman Institute of Bioethics. He will be\njoined by colleagues who are all among the leading scholars in aspects\nof the ethical and policy issues related to research on human subjects,\nincluding Profs. Ruth Faden (history and theory of informed consent), Nancy\nKass (public health research, research in international settings), Jeremy\nSugarman (empirical approaches to research ethics, US research policy),\nDebra Mathews (US and international science and research policy), Gail\nGeller (participants\' perspectives on research participation), Joseph\nAli (law and research oversight in US and international settings), and\nDan O\'Connor (medical history, ethics and social media-based research).\n<br>', 'https://www.coursera.org/course/humanresearch', '', '0000-00-00', 0, 'https://coursera-course-photos.s3.amazonaws.com/91/ae57afe43398e0152daf8b550731af/GuineaPigsHeroesPatients_Logo.jpg', 'Medicine, Humanities, Health & Society, Biology & Life Sciences, Social Sciences', 'Coursera'),
(582, 'Startup Engineering', 'Learn the engineering skills needed to build a technology startup from the ground up.', '<b></b>\n<div><b></b>Spiritual sequel to Peter Thiel\'s <a href="http://blakemasters.tumblr.com/peter-thiels-cs183-startup">CS183</a> course\n on startups. Bridges the gap between academic computer science and production\n softwar<b></b>e engineering. Fast-paced introduction to key tools and techniques\n (command line, dotfiles, text editor, distributed version control, debugging,\n testing, documentation, reading code, deployments), featuring guest appearances\n by senior engineers from successful startups and large-scale academic projects.\n Over the course of the class, students will build a command line application,\n expose it as a web service, and then link other students\' applications\n and services together to build an HTML5 mobile app. General principles\n are illustrated through modern Javascript and the latest web technologies,\n including Node, Backbone, Coffeescript, Bootstrap, Git, and Github. <b></b><b></b><b></b>\n</div>', 'https://www.coursera.org/course/startup', '', '2013-06-01', 10, 'https://coursera-course-photos.s3.amazonaws.com/d6/b79772266def5c49c018552620b760/logo.png', 'Computer Science: Software Engineering, Business & Management, Statistics and Data Analysis', 'Coursera'),
(583, 'TechniCity', 'We live in real-time, technologically enhanced cities. <br>Explore the sweeping changes that our cities are undergoing as a result of networks, sensors, and communication technology.', '<b></b>We are part of the \'TechniCity\'. The increasing availability of\nnetworks, sensors and mobile technologies allows for new approaches to\naddress the challenges that our cities face. The way we understand cities\nis undergoing sweeping transformation, right along with the analytical\ntools we use to design our cities and the communication tools we use to\nengage people. Absorbing, studying and understanding the role of technology\nfrom a critical viewpoint allows us to generate creative ideas for improving\nour cities. \n<br>\n<br>This course begins by examining how our cities are changing. We then jump\ninto how technology is used to engage with the public to support decision-making.\nStudents will be examining tools for analyzing the city. Then we move into\nexploring the infrastructure that makes the real-time, technologically-enhanced\ncity possible. And rounding out the course is an exploration of entrepreneurial\nurbanism, looking at how creativity can spawn technological innovation.\nYou\'ll hear from technological innovators and thought leaders about all\nof these topics. You can learn more as this course develops on \n<a\nhref="http://planforsocialmedia.wordpress.com" target="”_blank”">Dr. Evans-Cowley’s blog</a>', 'https://www.coursera.org/course/techcity', 'http://www.youtube.com/watch?v=sm1OL_FWjuc', '2013-05-04', 4, 'https://coursera-course-photos.s3.amazonaws.com/ef/937b238b1a0aee3d65317268740091/RealTimeCity.jpg', 'Information, Tech, and Design', 'Coursera'),
(584, 'Introductory Physics I with Laboratory', 'Explore motion in the real world using modern tools and techniques (video capture and analysis, computer modeling) guided by fundamental physics principles.', '<div>\n <p>We will investigate motion in the world around us; we welcome both those\n who want to participate fully and those who wish to sample, cafeteria-style,\n the activities of this course. Those who participate fully will experience\n a course that is very different in style but equivalent (at least) in core\n content to a traditional, on-campus, first-semester college-level introductory\n physics course that includes a laboratory. At the same time, those who\n cherry-pick selected course elements (e.g., learning the basics of video\n capture and analysis of motion in one’s own surroundings) will still advance\n their understanding of physics. \n <br>\n </p>\n <p>We aim to understand and to predict motion in the real world using a small\n set of powerful fundamental principles. The laboratories are the backbone\n of this course, providing opportunities (1) to observe and to analyze motion\n in our own surroundings, (2) to apply fundamental principles to build explanations\n of the motion, and (3) to evaluate, in a constructively critical way, our\n own measurements and models, as well as the measurements and models of\n our course peers. Other course elements (lecture videos with “clicker”\n questions, homework) support and extend the physics explored in the laboratories.</p>Participants\n who satisfactorily complete the course will be eligible for six (6) Continuing\n Education Units from the American Association of Physics Teachers. </div>', 'https://www.coursera.org/course/phys1', 'http://www.youtube.com/watch?v=rJm15gwqd-U', '2013-05-20', 11, 'https://coursera-course-photos.s3.amazonaws.com/70/c64330de3e59aae8288122b0158d99/Hero-Logo-Yellow.png', 'Physics', 'Coursera'),
(585, 'Survey of Music Technology', 'Learn to make music with digital audio workstation software, understand the theory and history behind music production tools, and write your own computer programs to make new music and sounds.', '<p>\n <br>How can we use computers to create expressive, compelling music? And how\n can we write computer software to help us create and organize sounds in\n new ways? This course provides a hands-on introduction to the field of\n music technology as both a creative musical practice and an interdisciplinary\n technical research pursuit. Through the exploration of topics such as acoustics,\n psychoacoustics, digital sound, digital signal processing, audio synthesis,\n spectral analysis, algorithmic composition, and music information retrieval,\n we will explore the deep relationships between art and science, between\n theory and practice, and between experimental and popular electronic music.</p>\n<p> </p>We will learn about these topics in the context of digital audio\nworkstation (DAW) software, the multi-track editing paradigm that has been\ndominant in music production since the 1980s. As we learn about the foundations\nbehind such software, we will use this knowledge to more effectively create\nmusic with it, and we will also write a series of short software programs\nthat extend the software’s ability to manipulate, transform, and analyze\nsound.\n<br>\n<br>', 'https://www.coursera.org/course/musictech', 'http://www.youtube.com/watch?v=SjRoWD735Mg', '2013-08-26', 6, 'https://coursera-course-photos.s3.amazonaws.com/ab/adf89f2824a6053fe8550b72cc0c2bda/freeman-icon.jpg', 'Music, Film, and Audio', 'Coursera'),
(586, 'Initiation à la programmation (en Java)', 'Ce cours initie à la programmation en utilisant le langage Java. Il ne présuppose pas de connaissance préalable. Les aspects plus avancés (programmation orientée objet) sont donnés dans un cours suivant, «Introduction à la programmation orientée objet (en Java)». ', 'Ce cours présente des concepts de base de la programmation tels que : variables, expressions, structures de contrôle, fonctions/méthodes, ...<br>en les illustrant dans la syntaxe du langage Java.<br><br>Ces notions simples seront pratiquées de façon intensive pour vous faire réaliser de façon de plus en plus autonome les étapes allant de la conception d\'un programme (algorithme) à sa mise en oeuvre concrète.<br><br>Ce cours de base est conçu pour être prolongé par les aspects orienté-objet, présentés dans le cours <a href="https://www.coursera.org/course/java-fr">«Introduction à la programmation orientée objet (en Java)»</a>. <br><br>', 'https://www.coursera.org/course/intro-java-fr', 'http://www.youtube.com/watch?v=4vM76vWXyhM', '2013-09-17', 7, 'https://coursera-course-photos.s3.amazonaws.com/05/a28268dcbb5fbf8c5262e09069ceed/IMG_1575_4_3_4.JPG', 'Computer Science: Software Engineering', 'Coursera'),
(587, 'Initiation à la programmation (en C++)', 'Ce cours initie à la programmation en utilisant le langage C++. Il ne présuppose pas de connaissance préalable. Les aspects plus avancés (programmation orientée objet) sont donnés dans un cours suivant, «Introduction à la programmation orientée objet (en C++)». ', 'Ce cours présente des concepts de base de la programmation tels que : \nvariables, expressions, structures de contrôle, fonctions/méthodes, ...<br>en les illustrant dans la syntaxe du langage C++.<br><br>Ces\n notions simples seront pratiquées de façon intensive pour vous \nfaire réaliser de façon de plus en plus autonome les étapes allant de \nla conception d\'un programme (algorithme) à sa mise en oeuvre concrète.<br><br>Ce cours est conçu pour être prolongé par les aspects orienté-objet, présentés dans le cours <a href="https://www.coursera.org/course/cpp-fr">«Introduction à la programmation orientée objet (en C++)»</a>. <br><br><br><br>', 'https://www.coursera.org/course/intro-cpp-fr', 'http://www.youtube.com/watch?v=H4rGoAdDcqQ', '2013-09-17', 7, 'https://coursera-course-photos.s3.amazonaws.com/c6/b087da3eff87a2dca1352a8120c048/IMG_1565_4_5.JPG', 'Computer Science: Software Engineering', 'Coursera'),
(588, 'Introduction à la programmation orientée objet (en C++)', 'Ce cours introduit la programmation orientée objet en l\'illustrant en langage C++. Il présuppose connues les bases de la programmation (variables, types, boucles, fonctions, ...). Il est conçu comme la suite du cours «Initiation à la programmation (en C++)».', 'Présentation et mise en pratique en C++ des concepts de base de la \nprogrammation orientée objet : objets, classes, méthodes, encapsulation,\n polymorphisme, ...<br><br>Bien que nous vous garantissons les bases pour programmer de façon autonome dans\n le langage C++, ce cours se concentre avant tout sur les concepts de \nprogrammation, plutôt que sur les détails du langage lui-même. <br>Ainsi, après avoir suivi ce cours, vous devriez également pouvoir<br>facilement aborder par vous-mêmes de nouveaux langages de<br>programmation.<br><br>Ce cours est conçu pour être prolongé par les aspects orienté-objet, présentés dans le cours <a href="https://www.coursera.org/course/cpp-fr">«Introduction à la programmation orientée objet (en C++)»</a>. <br><br><br><br>', 'https://www.coursera.org/course/cpp-fr', 'http://www.youtube.com/watch?v=T3l0Co9bHJg', '2014-02-17', 7, 'https://coursera-course-photos.s3.amazonaws.com/7d/54aff146697bcfac862c40f9e0aa44/IMG_1576_2_2_4.JPG', 'Computer Science: Software Engineering', 'Coursera'),
(589, '"Pay Attention!!" ADHD Through the Lifespan', 'This course reviews current scientific knowledge and clinical approaches to Attention-Deficit/Hyperactivity Disorder (ADHD) and examines its impact on development, functioning and health outcomes.', 'It is estimated that 5-8% of school-aged children and 4% of adults in the United States suffer from some form of attention deficit disorder and that the incidence of the disorder is increasing in the population. Although it is the most widely studied behavior disorder of childhood, its etiology remains unclear, its outcome is variable, and its treatment is complex and moderately successful. Advances in neuroscience have provided new insights into the pathophysiology of ADHD, pointing to key neural circuits involved in attention, behavioral control, learning, and reward maintenance that appear to be underperforming in patients with the disorder. Moreover, the etiology of this heterogeneous disorder points to the key role of genetic and environmental interactions during prenatal and perinatal periods. Over the past decade, new diagnostic and interventional approaches have enabled clinicians to better diagnose and treat ADHD across the lifespan, while longitudinal studies have elucidated the long-term impact of the disorder on health and adaptive functioning.<br><br>This course is intended for students with a background in psychology and/or neuroscience who are interested in learning more about the complexities of ADHD from both scientific and clinical perspectives. Scientific topics covered include prevalence and epidemiology, diagnostic criteria, clinical presentation at different ages, impact on development (intellect, academic, speech and language, emotional self control, motivation and executive functioning), health outcomes (risk taking, accidents, injuries, driving difficulties, unintended pregnancy), co-existing conditions (anxiety, mood, substance use disorders), and etiology (genetic, pre/perinatal, neurodevelopmental, neuroanatomic, neuropsychological). Clinical topics covered include approaches to assessment, medication treatments (stimulant and non-stimulant), and non-medical interventions.', 'https://www.coursera.org/course/adhd', 'http://www.youtube.com/watch?v=W--uMpGUQOY', '2013-03-18', 12, 'https://coursera-course-photos.s3.amazonaws.com/1a/de97ee8a065368496192593ab056ab/ADHD_brain.jpg', 'Medicine', 'Coursera'),
(590, 'Introduction to Psychology as a Science', 'Learn about how psychology has developed a body of knowledge about behavior and mind through the use of scientific methods. All areas of psychology will be covered.', 'Since we were young children, we have tried to understand, to predict,\nand to control behavior. We first dealt with our parents and teachers,\nand later our friends and companions. This course shows, however,\nhow the understanding, prediction, and control of behavior require scientific\nvalidation. By using tools that are systematic and objective, psychology\nhas learned how people behave and think.\n<br>\n<br>Psychology is a very broad field of study and the course will include\ndiscussions of the brain and nervous system, sensation and perception,\nlearning, memory, intelligence and thinking, lifespan development, emotion\nand motivation, personality, social behavior, behavioral disorders, and\npsychological treatment of disorders. The course will include short\nlecture modules, demonstrations and experiments, and writing assignments.\n<br>\n<br>', 'https://www.coursera.org/course/psy', 'http://www.youtube.com/watch?v=-Bls1ATgnXA', '2013-03-25', 12, 'https://coursera-course-photos.s3.amazonaws.com/2a/5de0b85933a38136624dbb3d1e4bb8/smith-course-icon.png', 'Social Sciences', 'Coursera'),
(591, 'English Composition I: Achieving Expertise', 'You will gain a foundation for college-level writing valuable for nearly any field. Students will learn how to read carefully, write effective arguments, understand the writing process, engage with others\' ideas, cite accurately, and craft powerful prose. We will create a workshop environment. ', '<p>English Composition I provides an introduction to and foundation\nfor the academic reading and writing characteristic of college. Attending\nexplicitly to disciplinary context, you will learn to read critically, write\neffective arguments, understand the writing process, and craft powerful prose\nthat meets readers’ expectations. You will gain writing expertise by exploring questions about expertise itself: What factors impact expert achievement? What does it take to succeed? Who determines success? Since personal investment yields better writing, you can select an area of expertise meaningful to you (a hobby, trade, profession, discipline, etc.) for your major writing projects, which will be drafted and revised in sequenced stages: a critical response to an argument about expertise (2pp.); an explication of a visual image (2pp.); a case study of an expert (4pp.) and an Op-Ed (2 pp.). Your writing will be central to the course as we create a seminar/workshop structure with peer response and selected instructor feedback. </p><p>Two overarching assumptions about academic writing will shape our work: 1) it is transferable; 2) it is learnable. Being an\neffective academic writer involves asking meaningful questions and\nengaging in complex dialogue with texts and ideas. These skills are useful across\nvirtually all academic disciplines and they provide a valuable means for making sense of non-academic experiences as well.\nPerhaps even more important, though, is that learning how to write effectively does not require inspiration\nor genius, but hard work, reflection, and feedback. This means that, with\npractice, dedication, and working with others,<i> you</i> can be an effective academic\nwriter and contribute your ideas to important, ongoing conversations. Let\'s start now.</p>\n<span>\n<span><p> <a href="https://duke.qualtrics.com/SE/?SID=SV_eWEH2NWLXc39gJT"><b>Share why you want to improve your writing</b></a></p><p><a href="https://duke.qualtrics.com/WRReport/?RPID=RP2_9tVOvczFExmWknP&P=CP"><b>Find out what others say about writing</b></a><br></p></span>\n</span>', 'https://www.coursera.org/course/composition', 'http://www.youtube.com/watch?v=ppE4ntBbKHs', '2013-03-18', 12, 'https://coursera-course-photos.s3.amazonaws.com/24/3061bb92f2ab2bd892dbf6665dfefd/wordlemap.jpeg', 'Humanities, Education, Social Sciences', 'Coursera'),
(592, 'Introduction to Psychology', 'This course is all about you ... your mind, your behavior, and what underlies them both. It will be a fast paced tour of the most important experiments in psychology, one that is intended to fascinate, inform, and provoke deep thought. Come learn about yourself with us!', 'This course will highlight the most interesting experiments within the\nfield of psychology, discussing the implications of those studies for our\nunderstanding of the human mind and human behavior. We will explore\nthe brain and some of the cognitive abilities it supports like memory,\nlearning, attention, perception and consciousness. We will examine\nhuman development - both in terms of growing up and growing old - and will\ndiscuss the manner in which the behavior of others affect our own thoughts\nand behavior. Finally we will discuss various forms of mental illness\nand the treatments that are used to help those who suffer from them. \n<br>\n<br>The fact of the matter is that humans routinely do amazing things without\nappreciating how interesting they are. However, we are also routinely\ninfluenced by people and events without always being aware of those influences.\n By the end of this course you will have gained a much better understanding\nand appreciation of who you are and how you work. And I can guarantee\nyou that you\'ll learn things that you\'ll be telling your friends and family\nabout, things that will fundamentally change the way you think of yourself\nand others. How can you resist that?!', 'https://www.coursera.org/course/intropsych', 'http://www.youtube.com/watch?v=YGAK1tW_Ovg', '2013-05-06', 8, 'https://coursera-course-photos.s3.amazonaws.com/2a/4f4038f9a060f0f2e4fa50c2d6a857/iStock_000002041388_ExtraSmall.jpg', 'Social Sciences', 'Coursera'),
(593, 'Statistics: Making Sense of Data', 'This course is an introduction to the key ideas and principles\nof the collection, display, and analysis of data to guide you in making\nvalid and appropriate conclusions about the world.', '<p>We live in a world where data are increasingly available, in ever larger quantities, and are increasingly expected to form the basis for decisions by governments, businesses, and other organizations, as well as by individuals in their daily lives. To cope effectively, every informed citizen must be statistically literate. </p><p>This course will provide an intuitive introduction to applied statistical reasoning, introducing fundamental statistical skills and acquainting students with the full process of inquiry and evaluation used in investigations in a wide range of fields. In particular, the course will cover methods of data collection, constructing effective graphical and numerical displays to understand the data, how to estimate and describe the error in estimates of some important quantities, and the key ideas in how statistical tests can be used to separate significant differences from those that are only a reflection of the natural variability in data.</p>', 'https://www.coursera.org/course/introstats', 'http://www.youtube.com/watch?v=0nmxFpNBFIY', '2013-04-01', 8, 'https://coursera-course-photos.s3.amazonaws.com/5a/866dab7961a4755f97137b50f4a399/introstatslogocropped.jpg', 'Statistics and Data Analysis', 'Coursera'),
(594, 'Games without Chance: Combinatorial Game Theory ', 'This course will cover the mathematical theory and analysis of simple games without chance moves.', ' This course explores the\nmathematical theory of two player games without chance moves. We will cover\nsimplifying games, determining when games are equivalent to numbers, and\nimpartial games. Many of the examples will be with simple games that may be new\nto you: Hackenbush, Nim, Push, Toads and Frogs, and others. While this probably\nwon’t make you a better chess or go player, the course will give you a better\ninsight into the structure of games. \n\n\n\n<br>', 'https://www.coursera.org/course/cgt', 'http://www.youtube.com/watch?v=04-0W08GxTs', '2013-02-25', 7, 'https://coursera-course-photos.s3.amazonaws.com/33/a0bae37cdb8e1f10d221e236d6a83e/morley-icon.jpg', 'Mathematics', 'Coursera'),
(595, 'Corporate Finance', 'This course is intended to provide a market-oriented framework for analyzing the major\ntypes of financial decisions made by corporations. Lectures and readings will provide an\nintroduction to present value techniques, capital budgeting principles, asset valuation, the operation and efficiency of financial markets, the financial decisions of firms, and derivatives.', '<div><div>This course serves as an introduction to business finance (corporate financial management and investments) for graduate level business school students preparing for upper-level course work. The primary objective is to provide a framework, concepts, and tools for analyzing financial decisions based on fundamental principles of modern financial theory.</div></div><br>', 'https://www.coursera.org/course/finance', 'http://www.youtube.com/watch?v=c7TsC101pgs', '0000-00-00', 0, 'https://coursera-course-photos.s3.amazonaws.com/ca/4173e050112c2f006a04b365074f2b/coursera_finance_460x259.png', 'Economics & Finance, Business & Management', 'Coursera'),
(596, 'Writing II: Rhetorical Composing', 'Rhetorical Composing engages you in a series of interactive reading, research, and composing activities along with assignments designed to help you become more effective consumers and producers of alphabetic, visual and multimodal texts.\n\nJoin us to become more effective writers... and better citizens.', '<p>Rhetorical Composing is a course where writers exchange words, ideas,\n talents, and support. You will be introduced to a variety of rhetorical\n concepts—that is, ideas and techniques to inform and persuade audiences—that\n will help you become a more effective consumer and producer of written,\n visual, and multimodal texts. The class includes short videos, demonstrations,\n and activities.</p>\n<p></p>We envision Rhetorical Composing as a learning community that includes\nboth those enrolled in this course and the instructors. We bring our expertise\nin writing, rhetoric and course design, and we have designed the assignments\nand course infrastructure to help you share your experiences as writers,\nstudents, and professionals with each other and with us. These collaborations\nare facilitated through WEx, The Writers Exchange, a place where you will\nexchange your work and feedback\n<br>', 'https://www.coursera.org/course/writing2', 'http://www.youtube.com/watch?v=RSTMmdYSPFY', '2013-04-22', 10, 'https://coursera-course-photos.s3.amazonaws.com/1c/b743f7962cbdf16ba8f466ee7c25e3/Writing2-Rhetorical-Composing.jpg', 'Humanities, Education', 'Coursera'),
(597, 'The Global Business of Sports', 'This course analyzes the business side of sports and discusses the intricacies of global sports leagues as well as various countries\' sports strategies. You will be equipped with a framework and tools to understand and evaluate the business side of competitive sports around the world.', '<p>The wide range of global sports businesses constitutes a multi-billion\n dollar industry. This course will examine and explain the business of sports\n by analyzing the economic, legal, governance and success models in various\n sports industries. The primary focus will be on American team sports but\n comparative global models will be contemplated as well. We will seek\n to find the answers to questions such as: what lessons can global sports\n entities learn from each other? What business strategies are used to retain\n the profitability of world leagues, sports teams and franchises? What lessons\n can be drawn from the United States based sports models? What revised models\n should new entrepreneurial leagues apply in order to achieve success? Substantive\n instruction will be drawn from the likes of the Olympics, FIFA World Cup,\n MLB, NFL, Premier League, various player unions, China, India, South Africa,\n Brazil and much more. Ultimately, our goal is to equip the\n student with a framework and tools with which to understand and evaluate\n the business side of a wide range of competitive sports ventures.</p>', 'https://www.coursera.org/course/globalsportsbusiness', 'http://www.youtube.com/watch?v=m7CPqME1gEk', '0000-00-00', 6, 'https://coursera-course-photos.s3.amazonaws.com/0b/d85a09701d7ab5e83938f9ca44fbf5/GBS.jpg', 'Business & Management, Social Sciences', 'Coursera'),
(598, 'An Introduction to Financial Accounting', 'This course will improve your fluency in financial accounting, the language of business. You will learn how to read, understand, and analyze most of the information provided by companies in their financial statements. These skills will help you make more informed decisions using financial information.', '<p>Accounting is the language of\nbusiness. Companies communicate their\nperformance to outsiders and evaluate the performance of their employees using information\ngenerated by the accounting system. Learning\nthe language of accounting is essential for anyone that must make decisions\nbased on financial information.</p>\n\n<p>The course is designed to provide an understanding of financial\naccounting fundamentals for prospective users of corporate financial\ninformation, such as investors, creditors, employees, and other stakeholders\n(e.g., suppliers, customers). The course focuses on understanding how economic events such\nas operating activities, corporate investments, and financing transactions are\nrecorded in the three main financial statements (i.e., the income statement,\nbalance sheet, and statement of cash flows). Students will develop the technical\nskills needed to analyze financial statements and disclosures for use in\nfinancial analysis. Students will also\nlearn how accounting standards and managerial incentives affect the financial\nreporting process. </p>', 'https://www.coursera.org/course/accounting', 'http://www.youtube.com/watch?v=mzXFp0wyEaA', '0000-00-00', 10, 'https://coursera-course-photos.s3.amazonaws.com/bb/419d113742fca8bc70f09530d71235/coursera_accounting_460x259.png', 'Economics & Finance, Business & Management', 'Coursera'),
(599, 'Caries Management by Risk Assessment (CAMBRA)', 'This course will provide the scientific basis for caries (dental decay) risk assessment and practice interventions. You will immediately be able to apply “caries management by risk assessment” into your clinical setting or into your personal health care.', 'Dental Caries (tooth decay) is a bacterially based disease that progresses\nwhen acid produced by bacterial action on dietary fermentable carbohydrates\ntravels into the tooth and dissolves the carbonated hydroxyapatite mineral.\n This process is<span> called demineralization.<br>\n<br>\nPathological factors, including acidogenic bacteria, salivary dysfunction, and\ndietary carbohydrates are related to caries progression. Protective factors, which include\nantibacterials, salivary calcium, phosphate and proteins, salivary flow, and\nfluoride in saliva can balance, prevent or reverse dental caries through a\nprocess of remineralization. \nRemineralization is a natural and reliable repair mechanism for\nnon-cavitated carious lesions.<br>\n<br>\nThis course will provide the scientific basis behind the “caries balance”\nconcept, which is the key to caries management by risk assessment in clinical\npractice. If pathological factors\nprevail caries progresses. If protective\nfactors prevail the caries process is halted or reversed.<br>\n<br>\nThe course will present tools to implement CAMBRA, “caries management by risk assessment,”\nin your clinical setting. It can be in\nimplemented medical and dental settings, and can benefit children and adults of\nall ages. Implementation in dental practice provides patients with genuine hope\nand success for the management of their oral health. It is a practice builder for dentistry.</span>', 'https://www.coursera.org/course/cariesmanagement', 'http://www.youtube.com/watch?v=Tc9xq5fVyYY', '0000-00-00', 6, 'https://coursera-course-photos.s3.amazonaws.com/69/be481ce5e3fd0fe06d1c8296382cc3/newlogo.jpg', 'Medicine, Health & Society, Biology & Life Sciences', 'Coursera'),
(600, 'First-Year Composition 2.0', 'First-Year Composition 2.0 will help you to develop a better process and gain confidence in written, visual, and oral communication and to create and critique college-level documents and presentations.', 'First-Year Composition 2.0 will help you to develop a better process and\ngain confidence in written, visual, and oral communication and to create\nand critique documents and presentations in college, in the workplace,\nand in your community. You will draft and revise the following assignments:\na personal essay, an image, and an oral presentation.\n<br>\n<br>You will develop confidence in the following areas:\n<br>\n<ul>\n <li>Critical Thinking: Evaluate the effectiveness of personal essays, images,\n and oral presentations. Assess your work and the work of your peers. Reflect\n on your own processes and performance.\n <br>\n </li>\n <li>Rhetoric: Analyze the ways in which you and other communicators use persuasion.\n Think about and use context, audience, purpose, argument, genre, organization,\n design, visuals, and conventions.\n <br>\n </li>\n <li>Process: Apply processes (read, invent, plan, draft, design, rehearse,\n revise, publish, present, and critique).\n <br>\n </li>\n <li>Digital Media: Produce written, oral, and visual artifacts.\n <br>\n </li>\n</ul>', 'https://www.coursera.org/course/gtcomp', 'http://www.youtube.com/watch?v=Pt2VJzUqUBk', '2013-05-27', 8, 'https://coursera-course-photos.s3.amazonaws.com/8d/e33e2fdac1a9cfdeda1f9bcc509c68/LMC-icon5.png', 'Humanities', 'Coursera'),
(601, 'Computational Molecular Evolution', 'In this course you will learn about how and why DNA and protein sequences evolve. You will learn the theory behind methods for building and analyzing phylogenetic trees, and get hands-on experience with some widely used software packages.\n', '<div>This course is about molecular evolution - the evolution of DNA, RNA, and protein molecules. The focus is on computational methods for inferring phylogenetic trees from sequence data, and the course will cover the fundamental theory and algorithms, while also giving the student hands-on experience with some widely used software tools. Since evolutionary theory is the conceptual foundation of biology (in the words of Theodosius Dobzhansky: "Nothing in biology makes sense except in the light of evolution"), what you learn on this course will be relevant for any project you will ever do inside the life sciences. A phylogenetic tree will almost always help you think more clearly about your biological problem. </div><div><br></div><div>A special emphasis is put on methods that employ explicit models of the evolutionary process (maximum likelihood and Bayesian approaches), and we will explore the role of statistical modeling in molecular evolution, and in science more generally. A mathematical (statistical) model of a biological system can be considered to be a stringently phrased hypothesis about that system, and this way of thinking about models will often be helpful. In addition to model-based methods, you will also learn about other approaches, such as those based on parsimony and genetic distance (<i>e.g.</i>, neighbor joining). </div><div><br></div><div>Often, the evolutionary tree is the result we are interested in - knowing how a set of sequences (or organisms) are related can provide us with important information about the biological problem we are investigating. For instance, knowing which organisms are most closely related to a newly identified, uncharacterized, pathogenic bacterium will allow you to infer many aspects of its lifestyle, thereby giving you important clues about how to fight it. In other cases, however, inferring the structure of the tree is not the goal: for instance, our main focus may instead be the detection of positions in a protein undergoing positive selection (indicating adaptation) or negative selection (indicating conserved functional importance). However, even in these cases, the underlying phylogenetic tree <i>will</i> be an important part of our hypothesis about (model of) how the proteins have been evolving, and will help in getting the correct answer. </div><div><br></div><div>Although the study of molecular evolution does require a certain level of mathematical understanding, this course has been designed to be accessible also for students with limited computational background (e.g., students of biology).</div><div><br></div><div>Topics covered:<br><br></div><ul><li>Brief introduction to evolutionary theory and population genetics.</li><li>Mechanisms of molecular evolution.</li><li>Models of DNA and protein substitution.</li><li>Reconstruction of phylogenetic trees using parsimony, distance based methods, maximum likelihood, and Bayesian techniques.</li><li>Advanced models of nucleotide substitution (gamma-distributed mutation rates, molecular clock models, codon models and analysis of selective pressure).</li><li>Statistical analysis of biological hypotheses (likelihood ratio tests, non-parametric and parametric bootstrapping, Bayesian statistics).</li></ul><div><br></div>', 'https://www.coursera.org/course/molevol', 'http://www.youtube.com/watch?v=SCj2vAtYqho', '2013-06-24', 10, 'https://coursera-course-photos.s3.amazonaws.com/c0/3c822f759b1d4d312426a1b8c219be/green_lime4.png', 'Biology & Life Sciences, Statistics and Data Analysis', 'Coursera'),
(602, 'The Beauty of Kunqu Opera | 崑曲之美', '本課程以崑曲的歷史文化背景、音樂、表演、文學、美學為核心主題,透過解說、欣賞、分析、討論,加深學生對中國傳統文化、古典文學與表演藝術之鑑賞能力。\n課程所選崑劇經典如《牡丹亭》和《長生殿》,學生除研讀其劇本選齣,並將在老師的導引下,觀賞、領會崑曲載歌載舞、寫意抒情的特點。', '<div>本課程以崑曲的歷史文化背景、音樂、表演、文學、美學為核心主題,透過解說、欣賞、分析、討論,加深學生對中國傳統文化、古典文學與表演藝術之鑑賞能力。</div><div>課程所選崑劇經典如《牡丹亭》和《長生殿》,學生除研讀其劇本選齣,並將在老師的導引下,觀賞、領會崑曲載歌載舞、寫意抒情的特點。</div><div><br><div>學生透過本科的學習,可以 :</div><div>(1) 增進對中國歷史及其文化瑰寶「崑曲」的認識</div><div>(2) 加深對中國古典文學、美學與表演藝術之鑑賞能力</div><div>(3) 加深對中國人文精神的感知</div><div>(4) 增加學生文化素養,對個人及社會的感悟</div></div>', 'https://www.coursera.org/course/kunqu', '', '0000-00-00', 13, 'https://coursera-course-photos.s3.amazonaws.com/04/b02c97b2f8eff5f38462e700f1e9d6/banner_kq.jpg', 'Arts', 'Coursera'),
(603, 'Classics of Chinese Humanities: Guided Readings | 中國人文經典: 大師導讀', '課程擬定四個不同特色之主題,在每個主題下,各選取若干經典文章為範文,讓學生透\n過欣賞,理解及分析,提升文學鑑賞能力,亦從而增加學生文化素養,奠定堅實的語文基礎。\n所選經典文本除突顯個別主題內容外,亦能相互配合,發揮互相帶動之作用。', '李歐梵說: 「“人文”這個字,最早出現在中國的《易經》,“觀乎天文以察時變,觀乎人文以化成天下。” 這個人文是指整個人間的各種事物,用詩、書、禮、樂這些東西來教化天下。大學傳統,唸的都是經典……,他們注重的就是讀書、寫作,而不是考試填鴨,我想這……應該是有啟發的……作為一個老師,我們不能夠把我們以前的一套想法都認為是理所當然的,全盤地灌輸給學生,相反,我們應該要有反思,對歷史也好,對各種理論也好,都要有一種反思意識。」 節錄自 2006 年 10 月《人文與社會》 李歐梵:關於“人文精神”的訪談 <br><br>課程擬定以下四個不同特色之主題,在每個主題下,各選取若干經典文章為範文,讓學生透過欣賞,理解及分析,提昇文學鑑賞能力,亦從而增加學生文化素養,奠定堅實的語文基礎。<br><ol><li>「英雄本色」- 選讀《史記.項羽本紀》「鴻門宴」、「霸王別姬」相關段落,探究儒家思想哲學涵意,並論其如何影響中國哲學思想之發展</li><li>「政教道統」- 選讀韓愈《原道》,原道是唐朝古文大家韓愈的經典文章。此文第一次把儒家 聖賢之道立為道統,以反駁道家和佛家所宣揚 的道理,影響了後世各代的儒家知識分子。此文也是唐宋古文八大家的始創者的代表作,條理清晰,論證豐富,文氣波瀾起伏。我們將試圖用欣賞和批判的雙重角度來解讀。 </li><li>「江河歲月」- 選讀蘇東坡之經典篇章〈赤壁賦〉,並論古典文學與山水畫之關係 </li><li>「魂兮歸來」- 選讀魯迅之經典篇章〈阿 Q 正傳〉,並論魯迅於現代文學及文化研究之意義</li></ol><br>學生透過本科的學習,可以 :<br><ol><li>提升文學鑑賞能力</li><li>加強語文基礎</li><li>增加學生文化素養</li></ol>', 'https://www.coursera.org/course/chinesehumanities', '', '0000-00-00', 8, 'https://coursera-course-photos.s3.amazonaws.com/a5/c14102371930437cc47e4107f14e0b/humanities.jpg', 'Humanities', 'Coursera'),
(604, 'Growing Old Around the Globe', 'The world is ageing – people are older and societies are facing hard realities. What are we to make our lives in this time of global ageing? In six weeks, we analyze critical questions about age and ageing around the world.', '<p>Growing old is discussed today in ominous terms – concerns about disease,\n dysfunction, and destitution are daily discussed by media and policy makers.\n What are individuals, families, communities and societies to make of an\n ageing world? We analyze contemporary topics in psychological and social\n ageing from a global perspective. Each week, we pose a question to be explored\n and discussed online. Participants are encouraged to contribute their experiences\n and perspectives as we create a global community to discuss age, ageing,\n and the science of gerontology in action. Participants will then compile\n a portfolio of materials they create and/or collect to address each week’s\n question and critically reflect their knowledge and experience throughout\n the course. Portfolios are then reviewed by peers at the end of the course\n to foster continued discourse among participants in our COURSERA community.</p>', 'https://www.coursera.org/course/oldglobe', 'http://www.youtube.com/watch?v=ls5wfHfKO7Y', '2013-06-10', 6, 'https://coursera-course-photos.s3.amazonaws.com/41/0a3977d20447a8dd13dfa77ae1b95c/Kagan-Intro-fancy-back-16.png', 'Medicine, Health & Society', 'Coursera'),
(605, 'Introduction to Classical Music', 'This course will focus on Western classical music of the eighteenth and nineteenth centuries; it is designed for people who are passionate about classical music but who have not necessarily had any advanced training or taken any college-level music courses. The only prerequisite is a basic knowledge of how to read musical notation.', 'This is a course for students who are passionate about classical music\nand eager to learn more about it, but who have not necessarily had any\nadvanced technical training or taken any college-level music courses. The\nonly prerequisite is a basic knowledge of how to read musical notation.\nOtherwise, no prior experience is needed; all concepts will be explained\nin class, and musical terms will be defined as they arise. This course\nwill focus on Western classical music of the eighteenth and nineteenth\ncenturies, music that exemplifies tonality, the system of major and minor\nkeys, including pieces composed by Bach, Mozart, Beethoven, Schubert, Schumann,\nChopin, Wagner, Brahms, Richard Strauss, and others. This course will tell\ntwo competing stories about tonal music and try to reconcile them. On one\nhand, we will explore what all tonal pieces have in common, the shared\nmusical language that makes them intelligible and allows them to communicate;\non the other hand, we will try to discover what makes each piece unique,\nhow composers bend the common language to say something new. Although the\ncourse will incorporate historical perspectives, it will not be a chronological\nsurvey. Instead, it will combine music theory with aesthetics, balancing\nprinciples of structural organization with insights into the aesthetic\nmeaning and effects of these principles. By illustrating his lectures with\nhis own performances at the keyboard, Professor Korsyn will bring the music\nto life.', 'https://www.coursera.org/course/introtoclassical', 'http://www.youtube.com/watch?v=Hr_PIOV8T8w', '0000-00-00', 8, 'https://coursera-course-photos.s3.amazonaws.com/de/c10e45a894f18c07b7c1506ca73aba/introtoclassical_Logo_3.jpg', 'Music, Film, and Audio', 'Coursera'),
(606, 'Drug Discovery, Development & Commercialization ', 'Students will learn the process of drug discovery and development through specific examples of case studies to better understand the issues facing the challenges of delivering a new drug on the market. At the completion of this course you will be able to have a better understanding of how a small or large molecule becomes a pharmaceutical drug.', 'The University of California San Diego, Skaggs School of Pharmacy and\nPharmaceutical Sciences Drug Discovery, Development & Commercialization\ncourse focuses on drug discovery, development and commercialization. \n<br>In this course, you will learn about the complete process of drug discovery,\ndevelopment, pharmacoeconomics, biosimilars, regulatory affairs, managed\nmarkets, portfolio management and strategic marketing of a new pharmaceutical\ndrug. \n<br>\n<br>Students will also learn that shifting the current drug discovery paradigm\nfrom ‘finding new-entity drugs’ to ‘combining existing agents’ may be helpful\nfor overcoming the current financial challenges that exist in the pharmaceutical/biotech\nmarket. \n<p>The following course objectives will be:</p>\n<p>1. Understand the pharmaceutical and biotechnology market a changing\n landscape</p>\n<p>2. Understand the major aspects of the drug discovery process, starting\n with target selection, to compound screening to designing lead candidates.\n <br>\n</p>\n<p>3. Recognize current modern drug discovery based on the lock-and-key theory,\n which attempts to use one single compound to hit one target to combat the\n related disease.</p>\n<p>4. Increase understanding of the various drug discovery tools and methods\n that are used for finding, identifying and designing a new drug.</p>\n<p>5. Define and understand the regulatory responsibilities for drug discovery,\n including but not limited to, an Investigational New Drug Application (IND),\n New Drug Application (NDA), and product labeling.</p>\n<p> 6. Incorporate study design methods for consideration in the design\n of clinical protocols to access safety, tolerability, and efficacy in multiple\n therapeutic areas.</p>\n<p> 7. Identify the critical components for development of a commercialization\n strategy and a marketing plan to launch a new drug.</p>', 'https://www.coursera.org/course/drugdiscovery', 'http://www.youtube.com/watch?v=pJdVi_sLzh8', '2013-04-19', 9, 'https://coursera-course-photos.s3.amazonaws.com/19/623ca2e7f8e7f6810168e995c56af5/IR.jpg', 'Medicine, Biology & Life Sciences', 'Coursera'),
(607, 'Social Epidemiology', 'Social epidemiology is about how a society makes people sick and/or healthy. We address not only the identification of new disease risk factors (e.g., deficient social capital) but also how well-known exposures (e.g., cigarette smoking, lead paint, health insurance) emerge and are maintained by the social system.', 'This course is about understanding the determinants of health from a broad\nperspective. We focus on how social relationships and institutions -- such\nas familial relationships, national policies, and global economic forces\n-- promote or undermine the health of populations. The course covers existing\nevidence of health disparities, research methods, and theories relevant\nto the topic.\n<br>\n<br>The course is interesting because it reveals the so-called fundamental\ncauses of disease and health disparities recognizable within social groups.\nFor example, we examine why a flu germ can affect whole groups of people\ndifferently. In short, the course challenges the notion that health is\na narrowly defined medical problem.\n<br>\n<br>Students in the course will listen to lectures, read provided materials,\nand complete quizzes and tests that examine comprehension and one\'s ability\nto synthesize ideas.\n<br>\n<br><span>Upon completion of the course students should:<br></span>\n\n<ul>\n <li>have a deep appreciation for how social arrangements impact the health\n of populations,</li>\n <li>be able to critically evaluate the scientific and popular health literature\n that address the causes of disease,</li>\n <li>be able to measure key social drivers such as race and socioeconomic status,\n and </li>\n <li>be able to conceive of research strategies that can answer questions critical\n for policy making.</li>\n</ul>', 'https://www.coursera.org/course/socialepi', 'http://www.youtube.com/watch?v=rm8zQS3VbjQ', '2013-05-31', 7, 'https://coursera-course-photos.s3.amazonaws.com/45/b72d293518f08ce1ac1dc7fc1ffad2/Final-Social-Epidemiology-.jpg', 'Health & Society, Social Sciences', 'Coursera'),
(608, 'Statistical Molecular Thermodynamics', 'This introductory physical chemistry course examines the connections between molecular properties and the behavior of macroscopic chemical systems.', '<p>Statistical Molecular Thermodynamics is a course in physical chemistry\nthat relates the microscopic properties of molecules to the macroscopic behavior\nof chemical systems. Quantized molecular energy levels and their use in the\nconstruction of molecular and ensemble partition functions is described.\nThermodynamic state functions, their dependence on the partition function, and\ntheir relationships with one another (as dictated by the three Laws of\nThermodynamics) are all examined in detail. Analysis and demonstration takes\nplace primarily in the context of ideal and real gases. This eight-week course\ncovers slightly more than half of a typical semester-long course in chemical\nthermodynamics. Typical topics to be addressed subsequently would be phase\nequilibria, liquids, solutions of non-electrolytes and electrolytes, and\nchemical reaction equilibria. <br></p><p>Students\n who successfully complete the course will be able to predict how \nchanges in molecular properties will influence the macroscopic behavior \nof those substances; they will understand the relationships between \nenergy, heat, and work, and be able to predict how much work can be \nextracted from a given chemical process under various sets of \nconditions; they will understand the role of entropy in physical and \nchemical processes; and they will be able to engineer conditions to make\n chemical reactions spontaneously favorable (or not). Students will also\n become adept with differential calculus as a tool to derive and \nmanipulate relationships between connected thermodynamic variables and \nstate functions.<br></p>\n<br>', 'https://www.coursera.org/course/thermodynamics', 'http://www.youtube.com/watch?v=tOEudSv6PtY', '2013-05-20', 9, 'https://coursera-course-photos.s3.amazonaws.com/ea/62eaf508705681803e580be5fe4552/Final-Train.png', 'Chemistry', 'Coursera'),
(609, 'Interprofessional Healthcare Informatics', 'This course examines the implications of informatics for practice, in nursing, public health, and healthcare in general. It covers electronic health record issues and relates ethical, legislative and political issues to health informatics. Students will also explore global and future informatics issues.', 'Interprofessional health care informatics is a graduate-level, hands-on interactive exploration of real informatics tools and techniques. We will be incorporating technology-enabled educational innovations to bring the subject matter to life. Over the 10 weeks that we study together, we will create a vital online learning community and a working healthcare informatics network. <br><br>We will explore perspectives of clinicians like dentists, physical therapists, nurses, and physicians in all sorts of practice settings worldwide. Emerging technologies, telehealth, gaming, simulations, and eScience are just some of the topics that we will consider. <br><br>Throughout the course, we’ll focus on creativity, controversy, and collaboration - as we collectively imagine and create the future within the rapidly evolving healthcare informatics milieu. All healthcare professionals and IT geeks are welcome! <br>', 'https://www.coursera.org/course/newwayhealthcare', 'http://www.youtube.com/watch?v=ZGiLIDrpZ-0', '2013-05-20', 10, 'https://coursera-course-photos.s3.amazonaws.com/d5/9752af8f689bbe28e9ace2e3a9054d/Final-Health-Informatics.jpg', 'Information, Tech, and Design, Health & Society, Social Sciences', 'Coursera'),
(610, 'Sustainability of Food Systems: A Global Life Cycle Perspective', 'This course explores the diversity of the foods we eat, the ways in which we grow, process, distribute, and prepare them, and the impacts they have upon our environment, health, and society. We will also examine the challenges and opportunities of creating a more sustainable global food system in the future.', 'Hamburger or hummus? Organic or conventional? Mediterranean diet or McDonald\'s? What dietary choices are truly the most sustainable when we consider that what we eat affects not just our health but also the environment and the well-being of others?<br><br>This course will provide you with an overview of our world’s food system and its many impacts from the individual to the global scale. You will gain further appreciation of the complex implications of choices that are made along the food supply chain. You will be challenged to think critically about how the global food system may need to change to adapt to future economic and environmental conditions.<br><br>Our world’s population is projected to grow both in numbers and in wealth in the coming decades. Meeting future food demand, and doing so in a sustainable fashion, will require that we greatly increase the amount we produce and improve the efficiency by which it makes it to our tables. Join us as we explore today’s global food system and how we might improve its sustainability for our benefit and that of future generations.<br>', 'https://www.coursera.org/course/globalfoodsystems', 'http://www.youtube.com/watch?v=oXEePhCcr9g', '2013-06-14', 8, 'https://coursera-course-photos.s3.amazonaws.com/7e/1ceb4e281dfe038babae68d58d5571/large.jpg', 'Economics & Finance, Food and Nutrition, Energy & Earth Sciences', 'Coursera'),
(611, 'Introduction to Thermodynamics: Transferring Energy from Here to There', 'In this course, you will learn how to characterize the energy state of a system and the mechanisms for transferring energy from one system to another. These are the tools necessary to understand stationary and transportation power systems from small scale, like batteries, to large scale, like nuclear power plants.', '<div>This course will provide you with an introduction to the most powerful\n engineering principles you will ever learn: thermodynamics! Or the science\n of transferring energy from one place or form to another place or form.\n We will introduce the tools you need to analyze energy systems from\n solar panels, to engines, to insulated coffee mugs.</div>\n<div>\n <br>\n</div>\n<div>More specifically, we will cover the topics of mass and energy conservation\n principles; first law analysis of control mass and control volume systems;\n properties and behavior of pure substances; and applications to thermodynamic\n systems operating at steady state conditions. </div>\n<div>\n <br>\n</div>', 'https://www.coursera.org/course/introthermodynamics', 'http://www.youtube.com/watch?v=KC_9JH6PClo', '2013-06-03', 8, 'https://coursera-course-photos.s3.amazonaws.com/b4/ab6f50003c2033b621b52827259308/bigstockphoto_Gas_Energy_Flames_209173_EDIT.jpg', 'Physical & Earth Sciences', 'Coursera'),
(612, 'Calvin - Histoire et Réception d\'une Réforme', 'Ce cours introduit à la vie et à la pensée du Réformateur Jean Calvin (1509-1564) ainsi qu’à son influence sur le monde moderne et contemporain. La démarche proposée se veut critique, il ne s’agit ni de canoniser ni de condamner Calvin ou sa pensée, mais de les comprendre avec toute la distance requise et d’en analyser les enjeux. (Course in French with English subtitles).', 'Qui était Jean Calvin ? Pourquoi ses idées ont-elles exercé une telle\ninfluence au 16e siècle et dans les siècles suivants ? Ce cours cherchera\nà répondre à ces deux questions.\n<br>Il mettra en évidence l’humanisme de Calvin, sa compréhension de la pensée\nbiblique, son acuité théologique, son sens aigu des problèmes sociaux et\npolitiques. Nous aurons aussi l’occasion d’évoquer l’apport de Calvin à\nla culture (notamment à la langue française, qui lui doit considérablement)\net à la conception de l’humain devant Dieu et dans la société. Nous verrons\négalement comment Calvin fit de Genève la capitale d’une idée et d’un idéal\nde vie chrétienne, en pensant le rapport au travail et à l’argent ou en\ncréant des institutions comme la Compagnie des pasteurs, le Consistoire\net l’Académie.\n<br>Ce cours mettra également en évidence la place que Calvin occupe dans\nl’histoire de la tolérance, ou plutôt de l’intolérance, religieuse :\nl’affaire Servet (du nom de ce savant espagnol condamné à mort à Genève\npour hérésie) fera ainsi l’objet d’une analyse spécifique. Nous tenterons\négalement de montrer les apports de la théologie de Calvin (notamment la\ncompréhension renouvelée d’un Dieu en qui l’humain peut faire confiance)\net ses limites (par exemple la doctrine dite de la prédestination).\n<br>Ce cours d’introduction fera également une place à l’histoire du calvinisme\nen Europe (France, Allemagne, Provinces-Unies, Angleterre) et dans le monde\n(Amérique, Afrique du Sud, Asie).\n<br><i>Le cours est donné en français avec sous-titres en anglais.<br>---<br></i>Who\nwas John Calvin? Why were his ideas so influential in the 16th century\nand well beyond his time? This course seeks to answer these two questions.\n<br>We will present his humanistic leanings, his interpretation of the Bible,\nhis theological vision, his acute sense of social and political questions.\nWe will consider his contribution to culture, how he contributed to shaping\nFrench language, his understanding of the human before God and in society.\nThe course will address how Calvin sought to transform the city of Geneva\ninto an idea and an ideal of Christian life, by thinking the meaning of\nwork and money, but also by creating educational and ecclesiastical institutions\n(the « Company of Pastors », the « Consistory » and\nthe « Academy »).\n<br>The course will locate Calvin within the history of religious toleration,\nor rather of religious intolerance. We will analyse the fate of Michel\nServet, a learned Spanish man who was condemned for heresy and executed\nin Geneva in 1553. With regard to Calvin’s theology, we will show both\nhis lasting contribution (especially his understanding of a God in whom\none may trust) as well as the limitations of his thought (for instance\nhis doctrine of predestination).\n<br>Towards the end of this introductory course, we will turn our attention\nto the history of Calvinism in Europe (France, Germany, the United Provinces,\nEngland) and in various parts of the world (Americas, South Africa and\nAsia).\n<br><i>Course in French with English subtitles.</i>', 'https://www.coursera.org/course/calvin', '', '2013-10-01', 5, 'https://coursera-course-photos.s3.amazonaws.com/e5/1561248f3efdb3ed0e08c1b91de5fb/Calvin.jpg', 'Humanities', 'Coursera'),
(613, 'An Introduction to Global Health', 'This course gives you an introduction to the most important challenges to human health facing the world today. Themes covered include global policies, health systems, changing disease patterns, IT and health, population dynamics, and health promotion.', '<p><span>Good health is intimately linked with\npersonal happiness, productivity, the development of nations and the\nadvancement of people. Increasingly,\nglobalization processes influence the health of individuals, societies and the\nfunctions of health systems. <br></span></p><p><span>This course explores major themes in global health,\nincluding: health and poverty, the primary categories of global illness,\nincluding communicable and non-communicable diseases, environmental health,\nchild health, women’s health, and health among refugees and displaced\npopulations. It focuses on the dual burden of communicable\nand non-communicable disease experienced by much of the world’s population and\nhighlights the role of the health system and diverse global actors in responding\nto the health needs of people worldwide. \n<br></span></p><p>As the deadline for meeting the Millennium Development Goals <span>nears,\ncourse participants will also reflect on life after the MDGs by exploring the\nfuture of global health and trends in technical innovation in the fight for\nbetter health. Through lectures, readings,\nand assignments, course participants will be asked to think critically about the\nhealth of the world’s population and to reflect on overcoming the challenges of\nachieving good health around the world. <br></span></p>', 'https://www.coursera.org/course/globalhealthintro', '', '2013-09-02', 7, 'https://coursera-course-photos.s3.amazonaws.com/0a/02d57e10c0b6c64ff9591583344302/global_health.jpg', 'Medicine, Health & Society, Food and Nutrition, Social Sciences', 'Coursera'),
(614, 'Ser más creativos', 'Todos podemos potenciar nuestra creatividad a través de procedimientos, rutinas y protocolos sencillos. En este curso desarrollaremos estos conocimientos y habilidades a través de retos que activan nuestros talentos para encontrar soluciones originales.', 'En este curso totalmente en español exploraremos qué es y cómo se\ndesarrolla la creatividad. A partir de problemas y retos de diseño\nestaremos generando ideas, representaciones, productos y servicios. Aplicaremos\nactivamente las diferentes estrategias estudiadas en el curso. Esto nos\nllevará a presentar ante los compañeros una variedad de creaciones o mejoras\na objetos, conceptos o servicios ya existentes. Aprenderemos a analizarlas para\nidentificar el nivel de innovación, utilidad y viabilidad de las soluciones\npropuestas, en un ejercicio que resulta, por sí mismo, muy enriquecedor\ny creativo. Empezamos a conocernos desde ahora en www.facebook.com/muycreativos\n<br>', 'https://www.coursera.org/course/creatividad', 'http://www.youtube.com/watch?v=ppXwwSkAgJI', '2013-08-05', 6, 'https://coursera-course-photos.s3.amazonaws.com/08/c31f09e2478b3bc85383da08fd43b0/20130416.elefante_ser_creativo.jpg', 'Information, Tech, and Design, Humanities, Education, Social Sciences', 'Coursera'),
(615, 'Canine Theriogenology for Dog Enthusiasts', 'This course will help anyone who loves dogs to better understand their dog’s reproductive health and how to control its reproduction. This includes understanding the pros and cons of having your dog spayed or castrated, and understanding at what age that surgery can be performed.', 'Every dog owner should have some understanding of reproduction, whether they intend to breed that dog or just want to have their dog spayed or castrated. As a dog enthusiast, you want to know what is best for your dog and to understand your veterinarian’s recommendations. This course is intended to give you the background knowledge necessary to help you achieve those goals. <br><br>Students in this course will learn the basics of anatomy and reproductive physiology necessary to understand reproduction control, and the diagnosis and management of reproductive tract disease in male and female dogs. My goal is to provide you with background information that will help you work with your veterinarian to make the best decisions for your dog.<br><br><br>', 'https://www.coursera.org/course/theriogenology', 'http://www.youtube.com/watch?v=Gl0C5La-L1E', '2013-05-03', 6, 'https://coursera-course-photos.s3.amazonaws.com/47/c5fdeff25af27747c79a1abaea75a8/Therio-logo.gif', 'Medicine, Health & Society, Biology & Life Sciences', 'Coursera'),
(616, 'Social and Economic Networks: Models and Analysis', 'Learn how to model social and economic networks and their impact on human behavior. How do networks form, why do they exhibit certain patterns, and how does their structure impact diffusion, learning, and other behaviors? We will bring together models and techniques from economics, sociology, math, physics, statistics and computer science to answer these questions. ', '<div>Social networks pervade our social and economic lives. They play a central role in the transmission of information about job opportunities and are critical to the trade of many goods and services. They are important in determining which products we buy, which languages we speak, how we vote, as well as whether or not we decide to become criminals, how much education we obtain, and our likelihood of succeeding professionally. The countless ways in which network structures affect our well-being make it critical to understand how social network structures impact behavior, which network structures are likely to emerge in a society, and why we organize ourselves as we do. This course provides an overview and synthesis of research on social and economic networks, drawing on studies by sociologists, economists, computer scientists, physicists, and mathematicians.</div><div><br></div><div>The course begins with some empirical background on social and economic networks, and an overview of concepts used to describe and measure networks. Next, we will cover a set of models of how networks form, including random network models as well as strategic formation models, and some hybrids. We will then discuss a series of models of how networks impact behavior, including contagion, diffusion, learning, and peer influences.</div><div><br></div>', 'https://www.coursera.org/course/networksonline', 'http://www.youtube.com/watch?v=mjS81EoBQOU', '2013-04-01', 8, 'https://coursera-course-photos.s3.amazonaws.com/ec/50a9bcc99dfc058198c9d4827b11e7/Logo1.jpg', 'Computer Science: Theory, Economics & Finance, Mathematics, Statistics and Data Analysis, Social Sci', 'Coursera'),
(617, 'Constitutional Struggles in the Muslim World', 'Learn what motivates the restive Muslim youth from Cairo to Tehran, what political positions Islamists from Mali to Chechnya are fighting for, where the seeming obsession with Islamic law comes from, where the secularists have vanished to, and whether it makes sense to speak of an Islamic state.', '<p>Since 2009 there has been a renewed wave of\npopular unrest sweeping throughout much of the Muslim world. Secular, but\ngenerally repressive and inefficient autocracies have come under pressure or\nbeen swept aside entirely. At the same, the various Islamic Republics have not\nfared much better, but been convulsed by internal unrest, economic and social\ndecline. Throughout the Muslim lands, existing constitutional arrangements are\nbeing challenged, often very violently. </p>\n\n<p><span>This course is a survey of the\nconstitutional ideas and institutions that have developed since the mid 19th\ncentury throughout predominantly Muslim countries, but its focus will lie on\nthe <i>actors</i> that have dominated this\ndiscourse and shaped its outcomes. We will look at the large body of classical\nwritings on the Islamic state only in so far as it is necessary to understand\nthe contemporary debate, but concentrate on the legal and political\ndevelopments of the 20th and 21st centuries.</span></p><p></p><p>Three common themes will characterise the course: </p><p></p><p></p><ul><li>We privilege the study of the <i>legal and social reality</i> and seek to highlight where it is at odds with dogmatic stipulations, be they religious or constitutional. </li></ul><p></p><p></p><ul><li>We seek to illustrate the <i>practical tensions</i> posed by limited administrative capabilities and political legitimacy that resulted from the incomplete reception of modern bureaucratic statehood. </li></ul><p></p><p></p><ul><li>We seek to examine how <i>popular dissatisfaction</i> with the practical performance of Muslim governments has fuelled demands for greater accountability under the guise of cultural authenticity. </li></ul><p></p><p></p><p>Ultimately, the course aims to equip participants to better understand Muslim contemporary discourse about the <i>res publica</i>, better contextualise the demands for religious law in public life, and to better ascertain the theoretical and practical feasibility of postulated religious alternatives to the still-dominant secular model of governance.</p><p></p>', 'https://www.coursera.org/course/muslimworld', '', '2013-09-30', 11, 'https://coursera-course-photos.s3.amazonaws.com/66/9d5e308eb020f72db558021530c4d6/muslim_democracy.jpg', 'Humanities, Social Sciences, Law', 'Coursera'),
(618, 'Diabetes - a Global Challenge', 'Diabetes is a growing health problem in rich and poor countries alike. With this course you will get updated on cutting-edge diabetes research including biological, genetic and clinical aspects as well as prevention and epidemiology of diabetes. All provided by high-profile scientists from one the world\'s leading universities in diabetes research.', '<p>Obesity is a common disorder, and in the United\nStates and many other western countries more than half of the populations are\noverweight or obese. The prevalence is increasing dramatically, and the number\nof obese individuals worldwide is now projected to reach as much as 1.1 billion\nby 2030. Along with the increasing numbers of obese people, the prevalence of\ntype-2 diabetes is increasing tremendously worldwide due to the westernized\nlifestyle. However, the sensitivity of the individual to a westernized\nlifestyle and development of diabetes appears to be much dependent on his or\nher genetic risk factors.\n</p>\n<p>As diabetes is\nassociated with a high rate of morbidity and mortality, and thereby accounts\nfor a large part of the public health care expenses, there is a great interest\nin diabetes research to improve knowledge, prevention and treatment of diabetes.</p><p>This diabetes course will give you the newest state of the art updates on diabetes research in the fields of clinical aspects of diabetes and regulation of insulin\nsecretion, epidemiology of diabetes, heritability of diabetes, genetic aspects\nof diabetes, prevention of diabetes and insulin resistance, molecular insulin\nresistance, cellular aspects of diabetes, physiological regulation of blood\nglucose, type 1 diabetes and stem cell research in diabetes.\n</p>\n<p>Each section will be covered\nby world leading professors (to be announced) in the specific areas.</p>', 'https://www.coursera.org/course/diabetes', '', '0000-00-00', 6, 'https://coursera-course-photos.s3.amazonaws.com/29/ba58b0c2c5b6f66b34c067b0ec2adc/diabetes.jpg', 'Medicine, Health & Society, Biology & Life Sciences', 'Coursera'),
(619, 'Scandinavian Film and Television', 'In many ways Scandinavian film and television is a global cultural brand, connected with and exporting some of the cultural and social values connected to a liberal and progressive welfare society. This course deals with the social, institutional and cultural background of film and television in Scandinavia and in a broader European and global context. ', '<p>Scandinavia is well known internationally\nfor its welfare society, and part of this welfare society is a very developed\ncultural policy based on both the free market and public support. Scandinavia\nhas a strong film and television culture with institutions and traditions\ncreated to secure creative diversity for both national, Scandinavian and global\naudiences. In many ways Scandinavian film and television is a global cultural\nbrand, connected with and exporting some of the cultural and social values\nconnected to a liberal and progressive welfare society. Dating back to the\nsilent cinema era and through the birth of a modern film and television culture\nafter 1945 Scandinavia has contributed significantly to our global cultural\nheritage. </p>\n\n\n\n<p><span>This course in <i>Scandinavian Film and Television</i> deals with the social,\ninstitutional and cultural background of film and television in Scandinavia and\nin a broader European and global context. The course will offer a deeper\nunderstanding of the creative forces behind film and television, of how\nScandinavian society and culture has influenced the production. The course will\ndeal with the co-production in Scandinavia and the role of Scandinavian film\nand television internationally. Theoretically the course will deal with\nnational and global cinema, with film and media sociology, with genre and\nauteur theory and with film and media policy.</span></p>\n\n\n\n<p><span>The course will also deal with some of the\nmost important film directors and film and television genres and the way they\nhave reflected and influenced our understanding of Scandinavia and the image of\nScandinavian culture and society abroad. From Carl Th. Dreyer’s complex\nhistorical and religious dramas, Ingmar Bergman’s symbolic and psychological\nfilms to the modern cinema of Lars von Trier, Aki Kaurismäki, Lukas Moodyson\nand Bent Hamer - all important Scandinavian names in a broader European art\ncinema tradition. The course will deal\nwith typical examples of other and more popular genres in Scandinavian cinema\nand modern, Scandinavian television drama and with aspects of the Scandinavian\ndocumentary tradition. Examples include Jan Troell’s epic serial <i>The Immigrants/The New Land </i>(1971-72), global,\nprize winning drama series like <i>The\nKilling</i> (2007-12) and <i>Borgen</i> (2010-)\nand international film blockbusters such as the Stieg Larson trilogy.</span></p>', 'https://www.coursera.org/course/scanfilmtv', '', '2014-02-03', 10, 'https://coursera-course-photos.s3.amazonaws.com/22/c796d9046014cdcd7cbccac941de43/scandinavian_film.jpg', 'Humanities, Music, Film, and Audio', 'Coursera'),
(620, 'Measuring Causal Effects in the Social Sciences', 'How can we know if the differences in wages between men and women are caused by discrimination or differences in background characteristics? In this course we look at causal effects as opposed to spurious relationships. We will discuss how they can be identified in the social sciences using quantitative data, and describe how this can help us understand social mechanisms. ', '<p>In this course\nwe discuss how to identify causal effect in the social sciences. Causal effects\nare interesting whenever we want to understand <i>mechanisms</i>. <br></p><p></p><p>As\nan example we can think of the case of wage differentials across gender. This\nmay be due to either discrimination from employers or differences in unobserved\nbackground characteristics across gender. Usually we would like to think about\ndiscrimination as a mechanism whereas differences in background characteristics\nwould usually not been seen as a mechanism. So it may be important to be able\nto tell why there is pay differences across gender. </p>\n\n\n\n<p><span>To show\ncausal effects the provision of a statistical relationship is not enough. The fundamental problem in identifying causal\neffects is therefore a matter of research design and research strategy. <br></span></p><p>During the course we will\nexamine such research designs and strategies and look at the relevance of different assumptions behind these\nmethods. The course also addresses the benefits of experimental data and introduces several new statistical and econometrical methods designed to improve causal statements from\nnon-experimental and observational data.</p><br>', 'https://www.coursera.org/course/causaleffects', '', '0000-00-00', 9, 'https://coursera-course-photos.s3.amazonaws.com/dd/b5a71597c2af418b368e7e8fc85654/social_science.jpg', 'Social Sciences', 'Coursera'),
(621, 'Søren Kierkegaard - Subjectivity, Irony and the Crisis of Modernity', 'Kierkegaard\'s ideas are still highly relevant today and they have been an inspiration for many leading figures of Existentialism, Post-Structuralism and Post-Modernism. In this course we will explore how Kierkegaard deals with the problems associated with relativism, the lack of meaning and the undermining of religious faith that are typical of modern life. ', '<p>It is often claimed that relativism, subjectivism and nihilism are\ntypically modern philosophical problems that emerge with the breakdown of\ntraditional values, customs and ways of life. The result is the absence of\nmeaning, the lapse of religious faith, and feeling of alienation that is so\nwidespread in modernity. <br></p><p>The Danish thinker Søren Kierkegaard (1813-55) gave\none of the most penetrating analyses of this complex phenomenon. But somewhat\nsurprisingly he seeks insight into it not in any modern thinker but rather in\nan ancient one, the Greek philosopher Socrates. </p>\n\n<p><span>In his famous work <i>The Concept\nof Irony</i> Kierkegaard examines different forms of subjectivism and\nrelativism as they are conceived as criticisms of traditional culture. He\ncharacterizes these different tendencies under the heading of “irony.” He\nrealizes that once critical reflection has destroyed traditional values, there\nis no way to go back. But yet the way forward is uncertain. As the modern\nmovements such as Existentialism, Post-Structuralism and Post-Modernism reveal,\nthe issues that Kierkegaard faced are still among the central problems of\nphilosophy today.</span></p>', 'https://www.coursera.org/course/kierkegaard', '', '2013-10-07', 8, 'https://coursera-course-photos.s3.amazonaws.com/9b/561c5c530133e338c10ffaa3cafe97/kirkegaard.jpg', 'Humanities', 'Coursera'),
(622, 'Origins - Formation of the Universe, Solar System, Earth and Life', 'The Origins course tracks the origin of all things – from the Big Bang to the origin of the Solar System and the Earth. The course follows the evolution of life on our planet through deep geological time to present life forms.', '<p>The history\nof our planet and Solar System, during an interval of almost 5 billion years, is\ncontrolled by a series of key biological and geological processes. The course\nwill investigate the prehistory and origins of our Solar System, the Earth and\nits tectonic processes, the origin of life and the evolution of the complex\nmarine and terrestrial ecosystems that have uniquely defined our planet.</p>\n\n<p>The course\nis taught by a broad range of specialists from the Natural History Museum of\nDenmark, University of Copenhagen. The extensive collections at the museum will\nbe used throughout the course to illustrate what we know and why we know it.</p>', 'https://www.coursera.org/course/origins', '', '0000-00-00', 8, 'https://coursera-course-photos.s3.amazonaws.com/45/5637fba9fcd5f219a84c7c346096d2/origins.jpg', 'Biology & Life Sciences, Physics', 'Coursera'),
(623, 'The New Nordic Diet - from Gastronomy to Health ', 'The New Nordic Diet is a new food culture which emphasizes gastronomy, health, and environment. This course presents the scientific background of the New Nordic Diet, the world’s largest research project into adult and child health and well-being, and will help you better understand the global challenges such as obesity and obesity-related diseases. ', '<p>The New Nordic Diet is a new food culture developed in 2009-13 with key emphasis on gastronomy, health, and environment. Major research in its effect on acceptability, behavior and learning skills, and disease prevention have been conducted by the OPUS centre at the University of Copenhagen and the people behind the award-winning restaurant Noma in Copenhagen.<br></p><p>This course\nwill give the participants the opportunity to experience a healthy and\npalatable new food and eating concept diet “The New Nordic Diet” and an\nunderstanding of how food and diets can affect mental and physical health and\nensure the foundation for a healthier life style for future generations with a regional based diet and food\nculture. <br></p><p>In Denmark “the Nordic cuisine”, has expanded from food eaten at\nthe award-winning Copenhagen restaurant Noma to homemade dishes of local\ningredients of whole-grain rye bread, root vegetables, berries, fresh fish and\nseaweed. </p>', 'https://www.coursera.org/course/newnordicdiet', '', '2013-09-02', 8, 'https://coursera-course-photos.s3.amazonaws.com/71/57ae6fca2458b3061471877d5fdbe1/nordic_food.jpg', 'Health & Society, Biology & Life Sciences, Food and Nutrition', 'Coursera'),
(624, 'The Role of Renminbi (RMB) in the International Monetary System', 'This self-contained course will discuss our policy views on various topics of RMB internationalization.', 'Despite the rapid growth of the Chinese economy, the RMB is still not ready to be an international currency. For the RMB to be an international currency, China’s financial markets should be conceptually well developed. Further, China will have to build up the credibility that the Central Bank can maintain the stability of its currency and ensure full convertibility of the RMB. <br><br>This self-contained course will discuss our policy views on various topics of RMB internationalization. Specifically, we will provide innovative suggestions on increasing the autonomy of the People’s Bank of China (PBC), implementing an inflation targeting policy, developing securities markets for corporate borrowing, establishing a flexible and market-determined exchange rate, removing restrictions on capital control, and improving the legal infrastructure and regulations for financial markets. Since the internationalization of Renminbi is of major importance to the further development of Hong Kong as an international financial centre, we will also discuss how this process affects Hong Kong and other Asian economies.', 'https://www.coursera.org/course/renminbi', '', '2013-09-01', 4, 'https://coursera-course-photos.s3.amazonaws.com/43/f60d61a66e46088b54c1384cb69619/renminbi.jpg', 'Economics & Finance', 'Coursera'),
(625, 'Information Theory', 'This course is an introduction to information theory, which emphasizes fundamental concepts as well as analytical techniques. Specific topics include: Information Measures, The I-Measure, Zero-Error Data Compression, Weak Typicality, Strong Typicality, Discrete Memoryless Channels, etc.', 'The lectures are based on the first 11 chapters of Prof. Raymond Yeung’s textbook entitled <a href="http://iest2.ie.cuhk.edu.hk/~whyeung/book2/" target="_blank"><i>Information Theory and Network Coding</i></a> (Springer 2008).<br><br>\n<span>\n<ul><li>Chapter 1 The Science of Information </li><li>Chapter 2 Information Measures </li><li>Chapter 3 The I-Measure </li><li>Chapter 4 Zero-Error Data Compression </li><li>Chapter 5 Weak Typicality </li><li>Chapter 6 Strong Typicality </li><li>Chapter 7 Discrete Memoryless Channels </li><li>Chapter 8 Rate-Distortion Theory </li><li>Chapter 9 The Blahut-Arimoto Algorithms </li><li>Chapter 10 Differential Entropy </li><li>Chapter 11 Continuous-Valued Channels\n</li></ul></span><br>This book and its predecessor, <i>A First Course in Information Theory </i>(Kluwer 2002,\nessentially the first edition of the 2008 book), have been adopted by over 60\nuniversities around the world as either a textbook or reference text. The electronic version\nof the 2008 book can be downloaded for <a href="http://www.springerlink.com/content/ht487u/?p=e727e403bb8c4d26b30d8d6b9344e133&pi=9" target="_blank">free</a> (with institutional subscription).<br><br><div>At the completion of this course, the student should be able to:</div><ol><li>Demonstrate knowledge and understanding of the fundamentals of information theory.</li><li>Appreciate the notion of fundamental limits in communication systems and more generally all systems.</li><li>Develop deeper understanding of communication systems.</li><li>Apply the concepts of information theory to various disciplines in information science.</li></ol>', 'https://www.coursera.org/course/informationtheory', '', '0000-00-00', 15, 'https://coursera-course-photos.s3.amazonaws.com/ec/bba7bbae6eac875e7231f6cc6523dc/informationtheory.jpg', 'Information, Tech, and Design', 'Coursera'),
(626, 'Tecnologías de información y comunicación en la educación', 'Analiza diferentes casos de estudio de usos educativos de las TIC y diseña un ambiente de aprendizaje que involucre herramientas digitales y tecnologías basadas en Internet. ', 'Las tecnologías de información y comunicación (TIC) han transformado la educación. Ello ocurre no sólo porque éstas han facilitado el desarrollo de algunas tareas que comúnmente realizábamos los profesores, los alumnos y los administradores sino porque también han abierto oportunidades para modificar tanto los ambientes de aprendizaje en los cuales se llevan a cabo los procesos educativos así como los métodos empleados para enseñar y aprender e incluso, cambiar los roles que anteriormente jugaba cada uno de los actores que intervenimos en el proceso educativo.<br><br> A lo largo de este curso analizaremos diferentes ambientes de aprendizaje y el papel que juegan las TIC en cada uno de ellos; reflexionando específicamente acerca de aquellos que podemos desarrollar nosotros mismos dados los contextos personales en los que nos encontramos.<br><br>El curso se imparte en español.<br><br><br><br>', 'https://www.coursera.org/course/ticyeducacion', 'http://www.youtube.com/watch?v=ehGPilntzrs', '2013-05-20', 5, 'https://coursera-course-photos.s3.amazonaws.com/2b/bc2872519870dbd473e9d42d789104/20130214.logo.curso.tic.en.educacin.jpg', 'Education', 'Coursera'),
(627, 'C++ For C Programmers', 'This course is for experienced C programmers who want to program in C++. The examples and exercises require a basic understanding of algorithms and object-oriented software.', 'The course provides an overview of C++ for the experienced C programmer. You will learn how C++ is more powerful than C. The C++ STL library will be featured. This library allows C++ programmers to code generically, efficiently and at a high level. You will learn how to write basic graph algorithms such as the shortest path algorithm. You\'ll then put this skill to use in a programming assignment aimed at producing an intelligent hex player.<br>', 'https://www.coursera.org/course/cplusplus4c', 'http://www.youtube.com/watch?v=tph2O4qPNMg', '0000-00-00', 0, 'https://coursera-course-photos.s3.amazonaws.com/5a/9714c78f48e904da8812795fe243c9/Cplusplus_pic.jpg', 'Computer Science: Software Engineering', 'Coursera'),
(628, 'Children Acquiring Literacy Naturally', 'This course will survey fundamental principles of language acquisition and learning to read. We will explore the possibility of becoming literate without formal schooling and instruction. No prior background in behavioral science, neuroscience, or technology is required.', '<p>Have recent developments in behavioral\nscience, neuroscience, and technology made it possible to achieve universal literacy with minimal cost? This course explores that important question. The lectures contemplate a revolutionary\nnew age that challenges the survival of our educational institutions and\nsociety as we know them. Learn about current research and theory in language\nacquisition, reading pedagogy, and wearable computing to assess the possibility\nof an interactive system that would enable infants, toddlers, and preschool children to\nacquire literacy naturally.</p>', 'https://www.coursera.org/course/childliteracy', 'http://www.youtube.com/watch?v=BVyEdK4pMTk', '0000-00-00', 0, 'https://coursera-course-photos.s3.amazonaws.com/a2/d2c66287ca20bc22a88b4fff39e49d/Slide1.jpg', 'Information, Tech, and Design, Education, Social Sciences', 'Coursera'),
(629, 'Child Nutrition and Cooking', 'Learn the basics of child nutrition and how to make healthy meals for healthy children and families.\n', 'Eating patterns that begin in childhood affect health and wellbeing across\nthe lifespan. In the USA, we are in the midst of a childhood obesity epidemic\nthat threatens to leave our children with a shorter life expectancy than\ntheir parents. As processed foods become more readily available around\nthe world, other developed nations are beginning to follow suit. This course\nexamines contemporary child nutrition in America from the individual decisions\nmade by each family to the widespread food marketing targeting our children.\n The health risks associated with obesity in childhood are also discussed.\nStudents will learn what constitutes a healthy diet for children and adults\nand how to prepare simple, delicious foods aimed at inspiring a lifelong\ncelebration of easy home-cooked meals. This course will help prepare students\nto be the leading health providers, teachers and parents of the present\nand future.', 'https://www.coursera.org/course/childnutrition', 'http://www.youtube.com/watch?v=KvnVsr5iGEo', '2013-05-06', 5, 'https://coursera-course-photos.s3.amazonaws.com/b8/c80dd0d379e5f57503489baefa6edb/Just-Cook-Logo.jpg', 'Medicine, Health & Society, Education, Food and Nutrition', 'Coursera'),
(630, 'Pensamiento Científico', 'Aprenderemos cómo podemos usar el pensamiento científico en la vida cotidiana para tomar mejores decisiones.', '<div>¿El pensamiento científico es sólo para científicos? Su utilidad va mucho\n más allá, ayudando a las personas a tomar mejores decisiones todos los\n días. El objetivo de este curso es fomentar en pensamiento científico en\n los alumnos para ayudarles a tomar mejores decisiones profesionales, personales\n y sociales. </div>\n<div>\n <br>\n</div>\n<div>Para lograr este objetivo, el curso destila conceptos de ciencias y filosofía\n a un nivel accesible al público general, ilustrándolos con ejemplos actuales\n de diversas áreas.</div>', 'https://www.coursera.org/course/ciencia', 'http://www.youtube.com/watch?v=MK3kRxvu9_c', '2013-05-06', 6, 'https://coursera-course-photos.s3.amazonaws.com/6c/eee82a90e4efa2c283497e09c10f5c/20130218.logo.curso.pensamiento.cientfico.amarillo.jpg', 'Humanities, Biology & Life Sciences', 'Coursera'),
(631, 'International Organizations Management', 'This course provides an overview of the management challenges international organizations & NGOs are faced with. You will learn key theoretical frameworks and practical tools to excel in this environment. ', 'International and not-for-profit organizations present an increasingly\ncomplex environment to work in and therefore require for their successful\nmanagement an unprecedented level of managerial skills on top of a deep\nunderstanding of the socioeconomic and political context they operate in.\nThis course is designed to provide students with (1) basic notions of the\npractice of international relations (2) a general overview of the management\nchallenges international and not-for-profit organizations are faced with\nas well as key theoretical frameworks and practical tools for managers\nto excel in this environment. Key areas of management will be reviewed,\nfrom strategy setting to implementation through marketing & fund raising,\nand assessment. (3) Given the growing interaction between public and private\nsectors, this course also touches upon the management of public/private\npartnerships.\n<br>\n<br>A panel of instructors, all visiting professors at the University of Geneva’s\nInternational Organizations MBA, will be invited to give you a general\noverview of international and not-for-profit organizations. Among them\nare:\n<br> \n<br>\n<ul>\n <li>Dr. <b>Sebastian Buckup</b>, Director and alumnus of the Global Leadership\n Fellows Programme at the World Economic Forum in Geneva, Switzerland, with\n previous experience at the ILO, UNDP and the private sector.</li>\n <li><b>Julian Fleet </b>has experience and training in both public health\n and in law. He currently serves as Director of the Department of Human\n Resources Management in the Joint United Nations Programme on HIV/AIDS\n (UNAIDS).\n <br>\n </li>\n <li><b>Claudia Gonzales</b>, Head of Marketing for the Global Fund to fight\n AIDS, TB and malaria, with more than 18 years leading marketing, PR, branding,\n social media and communications for international organizations like the\n World Economic Forum and UNHCR. </li>\n <li><span>Dr. <b>Bruce Jenks</b> served as Assistant Secretary General at UNDP until\n2010 and in 2013 he was appointed by the Secretary General to be a member of\nthe Council of the University for Peace. In his career, he served as Director\nof the Office of Strategic Planning (1997-99), as Director of the UN Office in\nBrussels (1995-97) Director of Budget and Chief of Staff (1990-95). Since 2010,\nDr. Jenks has consulted with a number of Organizations.</span> Dr. Jenks\n is an adjunct professor at the Columbia University School of International\n and Public Affairs, and lectures at the Geneva Graduate Institute of International\n and Development Studies and at the University of Geneva.</li>\n <li><b>Stephan\nMergenthaler</b>\nis Associate Director, Strategic Foresight at the World\n Economic Forum in Geneva, as well as Non-resident Fellow with the Global\n Public Policy Institute in Berlin (GPPi).</li>\n <li>Dr. <b>Lea Stadtler</b> is Research Fellow at the University of Geneva,\n DHEC, as well as Visiting Scholar at INSEAD and has previous work experience\n in the private sector.\n <br>\n </li>\n <li><b>Achim von Heynitz</b>\nhas over 30 years of international consulting\n and management experience, including eight years as Director of the World\n Bank’s department of Corporate Resource Management, and five years as Director\n of the Front Office Planning and Budget department at the European Bank\n for Reconstruction and Development.</li>\n</ul>', 'https://www.coursera.org/course/interorg', '', '0000-00-00', 6, 'https://coursera-course-photos.s3.amazonaws.com/b9/b8509e2565640a45872b19f15301c9/IO-Management.jpg', 'Business & Management', 'Coursera'),
(632, 'Introduction to Art: Concepts & Techniques', 'Learn to identify and define various art movements, artists, and their artworks. Convey a personal appreciation for art concepts, techniques, and approaches through the creation and sharing of your own original artwork.', 'Introduction to Art: Concepts & Techniques is an art appreciation course created for individuals without any artistic background. This course introduces you to various art movements, cultural influences, artistic genres, artists, and their artwork. The main emphasis of the course is to teach you hands-on studio arts techniques as you conduct personal research and explore your own creativity. While utilizing historical and contemporary art concepts, the course guides you through different time periods. Examining and discussing artwork is a crucial part of this course, encouraging you to express your opinions about art in an intelligent and articulate manner. By the conclusion of the course, you will compile a portfolio of artworks reflective of your research, understanding, creativity, and personal growth.<br> <br>Subjects discussed: Fantastic Art, Mail Art, Black and White Portraiture Photography, Installation Art, and 3-D Art.<br> <br>Art Concepts explored: Line, Shape, Value, Texture, and Color.<br> <br>Art Mediums used: Graphite Pencils, Charcoal, Pastels, Ink, Watercolor, Acrylic Paint, Collage.', 'https://www.coursera.org/course/art', 'http://www.youtube.com/watch?v=LUyceQxedQw', '2013-05-27', 7, 'https://coursera-course-photos.s3.amazonaws.com/30/929bd34fdaf4a4076a346a620205ec/art10_logo.jpg', 'Humanities, Arts', 'Coursera'),
(633, 'Maps and the Geospatial Revolution', 'Learn how advances in geospatial technology and analytical methods have changed how we do everything, and discover how to make maps and analyze geographic patterns using the latest tools.', 'The past decade has seen an explosion of new mechanisms for understanding and using location information in widely-accessible technologies. This Geospatial Revolution has resulted in the development of consumer GPS tools, interactive web maps, and location-aware mobile devices. These radical advances are making it possible for people from all walks of life to use, collect, and understand spatial information like never before.<br> <br>This course brings together core concepts in cartography, geographic information systems, and spatial thinking with real-world examples to provide the fundamentals necessary to engage with Geography beyond the surface-level. We will explore what makes spatial information special, how spatial data is created, how spatial analysis is conducted, and how to design maps so that they’re effective at telling the stories we wish to share. To gain experience using this knowledge, we will work with the latest mapping and analysis software to explore geographic problems. ', 'https://www.coursera.org/course/maps', 'http://www.youtube.com/watch?v=9lCwGxEt28w', '2013-07-17', 5, 'https://coursera-course-photos.s3.amazonaws.com/67/675cb1af3e868d0b5463bdf5c694e4/MapsGR_Logo.jpg', 'Information, Tech, and Design, Statistics and Data Analysis, Social Sciences', 'Coursera'),
(634, 'Creativity, Innovation, and Change', 'Explore your unique brand of creativity to gain deeper personal insight. \nLearn and apply new techniques to make innovative contributions in your own world.\nSolve complex problems and drive change creatively.', '<span>This course empowers learners to develop their creative human potential to improve, enhance, and transform their businesses, communities, and personal lives. Processes like Intelligent Fast Failure will teach you rapid prototyping skills, while the Adaption-Innovation creative style spectrum will help you understand how and why your ideas are unique - and how you can work better with others to solve complex problems.<br><br>Personal reflection tools like CENTER add a character development dimension to the course that is an important first step towards unlocking your creative potential. Along the way, you will engage with a rich set of tools, exercises, and metrics in order to understand these concepts and how they impact the development of your creative life and career. <br><br>Follow us on Twitter <a href="https://twitter.com/PSUCIC" title="Link: https://twitter.com/PSUCIC">@PSUCIC</a> <br>Like our Facebook Page <a href="http://www.facebook.com/pages/Creativity-Innovation-and-Change/491714650886286" title="Link: http://www.facebook.com/pages/Creativity-Innovation-and-Change/491714650886286">here</a><br>Join our Google+ community <a href="http://bit.ly/14XEbVS" target="_blank" title="Link: http://bit.ly/14XEbVS">here</a><br>Connect with the community on LinkedIn <a href="http://linkd.in/YICQy6" target="_blank" title="Link: http://linkd.in/YICQy6">here</a> <br><br><br></span>\n\n<br>\n<br>', 'https://www.coursera.org/course/cic', 'http://www.youtube.com/watch?v=b1zbcfEe51E', '2013-09-01', 12, 'https://coursera-course-photos.s3.amazonaws.com/aa/5d0afdb09612ca12746e2e63dffdd7/CIC_MOOC_logo.jpeg', 'Information, Tech, and Design, Business & Management, Education, Social Sciences', 'Coursera'),
(635, 'Epidemics - the Dynamics of Infectious Diseases', 'Malaria, HIV/AIDS, Influenza, Measles - we’re in a constant battle against infectious diseases. This is a course about the dynamics of such diseases - how they emerge, how they spread around the globe, and how they can best be controlled.', '<div>Not so long ago, it was almost guaranteed that you would die of an infectious disease. In fact, had you been born just 150 years ago, your chances of dying of an infectious disease before you\'ve reached the tender age of 5 would have been extremely high. </div><div> </div><div>Since then, science has come a long way in understanding infectious diseases - what they are, how they spread, and how they can be prevented. But diseases like HIV/AIDS, Malaria, Tuberculosis, or the flu are still major killers worldwide, and novel emerging diseases are a constant threat to public health. In addition, the bugs are evolving. Antibiotics, our most potent weapon against bacterial infections, are losing their power because the bacteria are becoming resistant. In this course, we\'ll explore the major themes of infectious diseases dynamics.<br><br>After we’ve covered the basics, we\'ll be looking at the dynamics of the flu, and why we\'re worried about flu pandemics. We\'ll be looking at the dynamics of childhood diseases such as measles and whooping cough, which were once considered almost eradicated, but are now making a comeback. We\'ll explore Malaria, and use it as a case study of the evolution of drug resistance. We\'ll even be looking at social networks - how diseases can spread from you to your friends to your friends\' friends, and so on. And of course we’ll be talking about vaccination too. We’ll also be talking about how mobile phones, social media and crowdsourcing are revolutionizing disease surveillance, giving rise to a new field of digital epidemiology. And yes, we will be talking about Zombies - not human zombies, but zombie ants whose brains are hijacked by an infectious fungus. <br><br>And there\'s one more thing: during the course, we\'ll be running a massive online epidemic with you, the participants - virtually, of course. We\'re looking forward to having you join us for an exciting course!<br></div>', 'https://www.coursera.org/course/epidemics', 'http://www.youtube.com/watch?v=SosPtT-MaT4', '2013-10-15', 8, 'https://coursera-course-photos.s3.amazonaws.com/8e/843ecf485e4a40259959487a21660b/infectiousdisease-MOOC.png', 'Health & Society, Biology & Life Sciences', 'Coursera'),
(636, 'Energy, the Environment, and Our Future', 'Get Rich and Save the Earth…Or Else! Learn about the past, present, and possible futures of human energy use.', '<span><div>Join\n internationally-acclaimed researcher and award-winning\n educator Richard Alley in an exploration of the role of\n energy in our environment and our future. Energy use has\n done great good for humans by giving those in the\n developed world the equivalent of 100 energy "serfs" to do\n our bidding, making up roughly 10% of the economy, and\n powering most of the economy. However, the unintended\n consequences of energy use are affecting people around the\n world and changing the climate in ways that will make life\n much harder. Numerous options exist for development of a\n sustainable energy system that provides a stronger\n economy, more jobs, and greater security that is more\n consistent with ethical principles. The course explores\n these issues.<br>\n <br>\n “Energy, the Environment, and Our Future” will combine\n student-centered instructional materials and film clips\n from the PBS TV series <a href="http://www.youtube.com/watch?v=2RyvpsIx47E" target="_blank">Earth: The Operators\' Manual</a>, also\n hosted by Richard Alley, to tell the history, present, and\n possible futures of human energy use. <br>\n </div>\n </span><br>', 'https://www.coursera.org/course/energy', 'http://www.youtube.com/watch?v=8xvDz7YGg_Q', '2013-09-16', 8, 'https://coursera-course-photos.s3.amazonaws.com/d7/9278e1bee3d5e086477af9fde07330/alley_energy_course_graphic.jpg', 'Energy & Earth Sciences', 'Coursera'),
(637, 'The Holocaust', 'This course traces the destruction of the Jews and Jewish life in Europe by Nazi Germany, drawing on major works of history, literature, and film. The lectures outline the work of the Nazis as well as Jewish responses.', '<p>This course focuses on the destruction of Jews in Europe by Nazi Germany,\n but the true scope of the course is much broader; exploring also the shifting\n historical conditions from which the Holocaust emerged. Students will explore\n memoirs, historical documents, poetry, documentary footage, filmic representations,\n novels, and other media that help to illustrate the multiplicity and variety\n of human experience during this important historical episode.</p>\n<p>By the end of the course, you will have an expanded knowledge and understanding\n of Eastern and Western Jewish communities, the origins and development\n of antisemitism, the formation and operation of concentration camps, the\n resistance movements, and the Holocaust as a problem for world-history.\n Additionally, you will have engaged with the problematics of representation,\n memory, "the memorial", and witnessing.</p>\n<p></p>\n<p>This course is supported by the Neufeld-Levin Chair in Holocaust\n studies.</p>\n<p></p>', 'https://www.coursera.org/course/holocaust', 'http://www.youtube.com/watch?v=RbbDk1rBzQQ', '0000-00-00', 10, 'https://coursera-course-photos.s3.amazonaws.com/f5/d6de42623575b23518446de7f5ce63/g31j.jpg', 'Humanities', 'Coursera'),
(638, 'Human Evolution: Past and Future', 'Introduction to the science of human origins, the fossil and archaeological record, and genetic ancestry of living and ancient human populations. The course emphasizes the ways our evolution touches our lives, including health and diet, and explores how deep history may shape the future of our species.', '<div>This course covers our evolutionary history across more than seven million years, from our origins among the apes up to the biological changes that are still unfolding today. If you enroll, you\'ll encounter the evidence for the earliest members of our lineage, as they begin the long pathway to humanity. You\'ll see how scientists are learning about the diets of ancient people, using microscopic evidence and chemical signatures in ancient teeth. We will explore together the exciting fossil discoveries of the last ten years, which have shaken up our notions of the origin of human culture and our own genus. <br><br>Genomics has fundamentally transformed the way we understand our evolution, in many ways opening the direct evidence of our history to anyone. The course will teach you how to look inside the genomes of humans, Neandertals and other ancient people. If you have used personal genomics to get your own genotypes, the course will guide you in connecting genetics to your ancestry among ancient humans.<br><br>The course brings a special focus on the rapid evolutionary changes of the last 10,000 years. You\'ll learn about the consequences of our shift to agriculture, and the ways that people of industrialized nations are still changing today. At the end, we trek forward to anticipate what evolutionary changes may be in store for humanity in the future, using our knowledge of history and scientific understanding to inform our speculations.</div>', 'https://www.coursera.org/course/humanevolution', '', '2014-01-01', 10, 'https://coursera-course-photos.s3.amazonaws.com/30/3f42d745f5b6a3d0ac7a4c7ce834bc/amud-ohalo-vienna.jpg', 'Biology & Life Sciences, Social Sciences', 'Coursera'),
(639, 'Videogames and Learning', 'Videogames aren’t just fun, they can be powerful vehicles for learning as well. In this course, we discuss research on the kinds of thinking and learning that goes into videogames and gaming culture, benefits and drawbacks of digital gameplay, tensions between youth culture and traditional education, and new developments intended to bridge that growing divide.', 'Videogames are one of the fastest trending topics in media, education, and technology. Research across fields as disparate as science, literacy, history, visual processing, curriculum, and computer science suggests that videogames aren’t just fun – they can actually be good for your mind as well. In this course, we will discuss current research on the kinds of thinking and learning that goes into videogames and gaming culture. We’ll investigate the intellectual side of digital gameplay, covering topics that range from perception and attention in Left 4 Dead 2 to the development of historical understanding in Civilization to collaborative learning in massively multiplayer online games like World of Warcraft. Throughout the course, we examine the inherent tensions between contemporary youth culture and traditional education and new developments in games for learning that promise to help bridge that growing divide.', 'https://www.coursera.org/course/videogameslearning', '', '0000-00-00', 10, 'https://coursera-course-photos.s3.amazonaws.com/4d/01096ea987af434bc42af3f7da4c92/games_learn.jpg', 'Information, Tech, and Design, Education', 'Coursera'),
(640, 'Globalizing Higher Education and Research for the ‘Knowledge Economy’', 'This course is designed to examine an array of issues related to the globalization of higher education and research. The main objective of the course is to enable students to better understand how and why universities are engaged in the globalization process, as well as what the key implications of this development process are.\n', '<p>Universities, and higher education systems worldwide, are being transformed\n by new or changing practices, programs, policies, and agendas. From notions\n of ‘global competency’ and the ‘global engineer,’ through to ever more\n common perceptions that international collaborative research is a desirable\n objective, through to the phenomena of bibliometrics, rankings and benchmarking\n that work at a global scale, contexts are changing.</p>\n<p>This course is designed to help students better understand the complex\n and rapidly changing nature of higher education and research in a globalizing\n era. A complementary objective is to experiment with the MOOC platform\n and assess how well it works to support international collaborative teaching\n and service. We decided to participate in this initiative to engage in\n some ‘learning while doing’ that will build on our experiences in international\n collaborative research, advising, and teaching, as well as Kris’ experience\n at UW-Madison with a relative new online course (Geography 340 – World\n Regions in Global Context).</p>\n<p>Professors Olds and Robertson began collaborating via a Worldwide Universities\n Network (WUN) exchange scheme in the mid-2000s. The University of Bristol\n and University of Wisconsin-Madison are both members of the WUN. We very\n much look forward to engaging with you about this topic.</p>', 'https://www.coursera.org/course/globalhighered', '', '2014-01-21', 8, 'https://coursera-course-photos.s3.amazonaws.com/33/5423a2bd882cf11b84f5a7d5ae4957/TwitterAvatar.jpg', 'Information, Tech, and Design, Education, Social Sciences', 'Coursera'),
(641, 'Markets with Frictions', 'This course explores markets with frictions. The goal is to sharpen our economic reasoning, add a few twists that you are unlikely to have seen in other courses, and apply the methods to interesting phenomena. This should improve the way you think analytically about the economy, and help address interesting issues that come up in the world of business.', '<p>The classical economic theory of markets cannot account for some important\n issues, such as the coexistence of unemployment and vacancies; credit market\n rationing; or bubbles and crashes in asset prices. This course will explore\n markets with frictions, shedding light on these issues and other fundamental\n questions such as: What is a bank, why do we use money, and how do organizations\n like firms or families emerge?\n <br>\n <br>\n</p>\n<br>', 'https://www.coursera.org/course/marketswithfrictions', '', '0000-00-00', 6, 'https://coursera-course-photos.s3.amazonaws.com/0a/7f41543af7568616b40a82605b7b34/markets.jpg', 'Economics & Finance, Business & Management', 'Coursera'),
(642, 'Global Health: Interdisciplinary Overview', 'This course proposes an overview of current global health challenges drawing on the insights of several academic disciplines including medicine, public health, law, economics, social sciences and humanities. This interdisciplinary approach will guide the student into seven critical topics in global health.', 'Course instructors: Prof. Antoine Geissbuhler, MD and Prof. Louis Loutan,\nMD\n<br>Course coordinators: Dr Slim Slama, MD and Dr Didier Wernli\n<br>Course director: Dr Samantha Battams, PhD\n<br>Course assistant: Dr Rafael Ruiz De Castaneda, PhD\n<br>\n<br>In our globalizing world, Infectious diseases travel quickly and widely\nacross countries, so do the large determinants of chronic diseases resulting\nin a growing burden in developed but also developing countries. Issues\nin traditionally non health sector such as Climate change or trade governance\ncan have dramatic and worldwide effects on health and health systems.\n<br>\n<br>These short examples illustrate what Global health is about: issues\nthat not only cross national boundaries but also disciplinary territories.\nIn our interdependent world, more and more health issues cannot be addressed\nby a country nor by a sector alone and require collaboration, coordination\nand integration.\n<br>', 'https://www.coursera.org/course/globalhealthoverview', '', '2013-10-01', 7, 'https://coursera-course-photos.s3.amazonaws.com/11/a542e457ed18d0f0edd14ad7801fb2/GlobalHealth.jpg', 'Medicine, Health & Society', 'Coursera'),
(643, 'Fundamentals of Audio and Music Engineering: Part 1 Musical Sound & Electronics', 'In this course students learn the basic concepts of acoustics and electronics and how they can applied to understand musical sound and make music with electronic instruments. Topics include: sound waves, musical sound, basic electronics, and applications of these basic principles in amplifiers and speaker design. ', '<p>This 6-week course is for students who are interested in learning the\n basic concepts of sound & acoustics and signals & electronics as\n they relate to music. The goal is for students to understand the basic\n concepts and principles of musical acoustics and electronics and to learn\n how equipment such as electric guitars, amplifiers, and loudspeakers are\n designed and operate. Students are encouraged to put the theory into practice\n by building a simple guitar practice amplifier. The course employs high-school\n level algebra and trigonometry, no calculus is required. </p>', 'https://www.coursera.org/course/audiomusicengpart1', 'http://www.youtube.com/watch?v=RTyBbLqp2pg', '2013-06-03', 6, 'https://coursera-course-photos.s3.amazonaws.com/b8/96492d34ff9e6824b8b0cb9e070094/FundamentalsSound_ImageLogo-3.jpg', 'Engineering, Music, Film, and Audio', 'Coursera'),
(644, 'Introduction to Mathematical Philosophy', 'Learn how to apply mathematical methods to philosophical problems and questions.', '<p>Since antiquity, philosophers have questioned the foundations--the foundations of the physical world, of our everyday experience, of our scientific knowledge, and of culture and society. In recent\nyears, more and more young philosophers have become convinced\nthat, in order to understand these foundations, and thus to make progress in\nphilosophy, the use of mathematical methods is of crucial importance.\nThis is what our course will be concerned with:\nmathematical philosophy, that is, philosophy done with the help of mathematical\nmethods.</p><p></p><p>As we will try to show, one can analyze philosophical concepts much more clearly in mathematical terms, one can derive philosophical conclusions from philosophical assumptions by mathematical proof, and one can build mathematical models in which we can study philosophical problems.</p><p></p><p>So, as Leibniz would have said: even in philosophy, <i>calculemus</i>. Let\'s calculate.</p><p></p><p></p>', 'https://www.coursera.org/course/mathphil', 'http://www.youtube.com/watch?v=9gO31jhI7xU', '2013-07-01', 8, 'https://coursera-course-photos.s3.amazonaws.com/d0/f05ee62896e67c6b150042cab93529/LogoMathPhil11.jpg', 'Humanities', 'Coursera'),
(645, 'Programmed cell death', 'Billions of cells in the body die every day. How and why do these cells die? If you want to know the answers to these questions and if you also would like to know how scientists figured them out, this course might interest you.', '<p>In this\ncourse, you will learn about the conserved, molecular machinery that eliminates\ncells through programmed cell death type I, also referred to as ‘apoptosis’.\nThrough apoptosis many cells are eliminated from our body during development\nand throughout adult life, and deregulated apoptosis can lead to various\ndiseases such as cancer and auto-immune diseases. Rather than just telling you\nabout the molecular machinery of apoptosis and how it works to kill cells, I\nwill walk you through and discuss with you the critical experiments that led to\nthe discovery of the key components of this molecular machinery and the\nmechanisms through which they function. I will also\ndiscuss how apoptosis research can help to develop novel therapeutics\nand consider the questions that remain open in\nthe field.</p><p>The course\nwill cover the following topics:</p>\n\n<p>1. \nIntroduction\nto programmed cell death and apoptosis</p>\n\n<p>2. \nThe\nBCL-2 family of proteins</p>\n\n<p>3. \nApaf\nproteins</p>\n\n<p>4. \nCaspases</p>\n\n<p>5. \nMechanisms\nthat regulate apoptosis</p>\n\n<p>6. \nNon-apoptotic\nfunctions of components of the central apoptosis machinery</p>\n\n<p>7. \nDiseases\ncaused by deregulated apoptosis</p><p><br></p>', 'https://www.coursera.org/course/pcd', 'http://www.youtube.com/watch?v=arS7Cs3Js8Q', '2013-07-01', 6, 'https://coursera-course-photos.s3.amazonaws.com/f8/ecfa4bfaccfe154b2f7f6048a69abb/zellen_iStock_Snowlemon-bvba_600_web.png', 'Biology & Life Sciences', 'Coursera'),
(646, '機率', '這是一個機率的入門課程,著重的是教授機率基本概念。另外我們的作業將搭配台大電機系所開發的多人競技線上遊戲方式,讓同學在遊戲中快樂的學習,快速培養同學們對於機率的洞察力與應用能力。', '<p>由於人類的所知有限,無法完全掌握這個世界的所有運作。就如同一個沒念書的小孩,在考試時只能以過去的經驗揣摩老師的答案,何者機率最高。 人類在面對這個非全知的世界,就如同那小孩一般,只能以機率的概念來揣摩、了解這個世界,進而做決策。因此機率在很多的領域都普遍的被應用,如工程、財務等。</p>\n<p><br></p>\n<p>這門課程是機率的入門課程,我們將介紹機率的重要概念。有別於一般機率課程多著重於數學理論的證明,使得學生在面對實際問題時不知如何下手。這門課的教學將透過生活化的例子,讓同學學會如何「用」機率,如何應用機率的概念來解決實際的問題。</p>\n<p><br></p>\n<p>另外,我們在這個課程當中,將搭配使用我們在台灣大學所開發的多人競技線上遊戲系統,來幫助大家快速成長。這個遊戲的主要精神,便是由學生們自己設計一個機率題目,而後彼此競技,互相攻破他人的題目。我們會教同學如何設計題目。同學在設計題目的過程之中,可以快速養成對於機率題目的洞察力,這是傳統由老師指定題目較不易做到的。另外競技的過程中充滿樂趣,過去兩年台大電機的機率課搭配這套系統使用,有不少同學便因此對機率解題「上癮」。</p>\n<p><br></p>\n<p>想學機率嗎?想充滿樂趣的學習機率嗎?想跟全世界的學生一較高下一起學機率嗎?這是有史以來第一次在線上課程出現的多人競技線上遊戲,歡迎你一起來加入!</p>', 'https://www.coursera.org/course/prob', '', '2013-08-01', 10, 'https://coursera-course-photos.s3.amazonaws.com/8b/c7dcc68b7c1346c4c3dbe98d98c3ec/iStock_000000248160_Small.jpg', 'Mathematics, Engineering', 'Coursera'),
(647, 'History of Rock, Part One', 'Learn about the early days of rock music, from the pre-rock years of the post World War II era through the birth of rock in the mid 1950s to the psychedelic era of the late 1960s.', 'This course, part 1 of a 2-course sequence, examines the history of rock, primarily as it unfolded in the United States, from the days before rock (pre-1955) to the end of the 1960s. This course covers the music of Elvis Presley, Chuck Berry, Phil Spector, Bob Dylan, the Beatles, the Rolling Stones, Jimi Hendrix, Cream, and many more artists, with an emphasis both on cultural context and on the music itself. We will also explore how developments in the music business and in technology helped shape the ways in which styles developed. <br><br>Rock emerged in the mid 1950s as a blending of mainstream pop, rhythm and blues, and country and western--styles that previously had remained relatively separate. This new style became the music of the emerging youth culture and was often associated with teen rebellion. We will follow the story of how this rowdy first wave of rock and roll (1955-59) was tamed in the early 60s but came roaring back with the Beatles and the Rolling Stones and then went psychedelic by the end of the decade.', 'https://www.coursera.org/course/historyofrock1', 'http://www.youtube.com/watch?v=6IdXEOdRxPs', '2013-05-13', 7, 'https://coursera-course-photos.s3.amazonaws.com/f6/f0c01d4b28c43e525f5e9d075b3e25/HistoryofRockLogo2pt1.jpg', 'Music, Film, and Audio', 'Coursera'),
(648, 'Design Thinking for Business Innovation', 'This course provides an overview of the process and tools used for design thinking, and examines their application in business situations.\n\n', '<div>Design thinking is a popular new idea in the business world. Accelerated by the spectacular rise of Apple and IDEO, design thinking offers an approach better suited for dealing with the accelerating pressures for growth and innovation faced by so many firms and their managers today than business’ traditional analytic methods. But design thinking can remain mysterious for business students and managers interested in introducing this approach into their decision-making processes. Demystifying it is the focus of this course.</div><div>Though designing as a craft requires years of dedicated education and talent to master, design thinking, as a problem solving approach, does not. In this course, we work with the following model that contains four questions and ten tools:<br><img src="https://coursera-topic-photos.s3.amazonaws.com/27/12e27d2216ba70fd7089556c788733/design_business.jpg"><br> <br></div><div>The four sequential questions that take us on a journey through an assessment of current reality (What is?), the envisioning of a new future (What if?), the development of some concepts for new-business opportunities (What wows?), and the testing of some of those in the marketplace (What works?). The process of design thinking begins with data gathering: at the outset of the design process, designers gather a great deal of data on the users they want to create value for. They mostly do this through ethnographic methods like experience mapping, rather than traditional methods like focus groups and surveys. Farther along in the process, designers make their new ideas concrete (in the form of prototypes) and go out and get better data from the real world in a process that is hypothesis-driven. That is, they treat their new ideas as hypotheses to be tested. They surface the assumptions underlying their hypotheses and test them – usually looking for the kind of behavioral metrics that will allow them to iterate their way to improved value propositions. </div><div>Accompanying the four questions is a set of new tools to help business people achieve the same kind of disciplined approach to innovation and growth that they bring to the rest of their business.</div>', 'https://www.coursera.org/course/designbiz', 'http://www.youtube.com/watch?v=UHpQXC8rPfg', '2013-11-04', 5, 'https://coursera-course-photos.s3.amazonaws.com/99/bba417ab75418d0ea4ffe4e59307ba/DatD_Coursera.png', 'Business & Management', 'Coursera'),
(649, 'Initiation à la théorie des distributions', 'Une fonction discontinue peut-elle être solution d\'une équation différentielle? Comment définir rigoureusement la masse de Dirac (une "fonction" d\'intégrale un, nulle partout sauf en un point) et ses dérivées? Peut-on définir une notion de "dérivée d\'ordre fractionnaire"? Cette initiation aux distributions répond à ces questions - et à bien d\'autres.', 'Dans plusieurs domaines des sciences (physique, mécanique, analyse numérique, etc.) apparaît la nécessité de développer un calcul différentiel "généralisé" pour des fonctions peu régulières, par exemple discontinues. La première leçon présente une situation de ce genre. L\'objet de ce cours est d\'introduire la théorie des distributions qui fournit une réponse élégante à ce problème.<br><br>Dans un premier temps, nous présentons la notion de distribution, généralisant la notion de fonction, et les premières propriétés de ces objets mathématiques. <br><br>On montre ensuite comment certaines opérations bien connues sur les fonctions, en particulier la dérivation, se prolongent naturellement au cadre des distributions. <br><br>Le cours s\'achève sur quelques applications à des exemples classiques d\'équations aux dérivées partielles linéaires.<br><br>', 'https://www.coursera.org/course/distributions', '', '2013-12-02', 9, 'https://coursera-course-photos.s3.amazonaws.com/b6/4412c4848eaa5eb6c279cfb379698a/logg.jpg', 'Mathematics', 'Coursera'),
(650, 'History of Rock, Part Two', 'Learn about the growth of rock music, from the early 1970s through the rise of punk and disco in the late 1970s, and from the emergence of MTV, hip hop, and heavy metal in 1980s to the rebellion of Nirvana in the early 90s.', 'This course, part 2 of a 2-course sequence, examines the history of rock, primarily as it unfolded in the United States, from the early 1970s to the early 1990s. This course covers the music of Led Zeppelin, the Allman Brothers, Carole King, Bob Marley, the Sex Pistols, Donna Summer, Michael Jackson, Madonna, Prince, Metallica, Run-DMC, and Nirvana, and many more artists, with an emphasis both on cultural context and on the music itself. We will also explore how developments in the music business and in technology helped shape the ways in which styles developed. <br><br>Emerging out of the experimental and ambitious years of late-60s psychedelia, rock splintered into a variety of styles in the 1970s as the music business continued to expand. By the end of the decade, punk and disco had challenged the excesses of the hippie aesthetic, as rock became more commercially streamlined and radio friendly. The emergence and rise of MTV transformed pop music and propelled the careers of Michael jackson and Madonna, while heavy metal and hip hop dominated the late 1980s. Nirvana leads alt-rock\'s return to simplicity in the early 1990s. ', 'https://www.coursera.org/course/historyofrock2', 'http://www.youtube.com/watch?v=B1-zyI5IbHE', '2013-07-08', 6, 'https://coursera-course-photos.s3.amazonaws.com/41/f3a2983b3f19b2b7fdb9f1e047692d/HistoryofRockLogo2pt2.jpg', 'Music, Film, and Audio', 'Coursera'),
(651, 'Live!: A History of Art for Artists, Animators and Gamers', 'Explore art history from the artist\'s perspective. Learn how contemporary artists, animators and gamers work from the art of the past as part of their creative process, while building your own skills in visual analysis and creative and critical thinking.\n', '<p>This course approaches the questions of “art” and “history”\nfrom the perspective of contemporary makers of art (sculpture, painting,\nphotography, performance, installation and more), animators (whether\ncharacter/story-based or experimental) and gamers, asking how artists actively\nmake a history for their own practices by thinking about the creative process\nas a “conversation” with a wide range of art from the past. Why are ground-breaking artists so often\nhistorically-minded (and yet tend to break all the rules of conventional\nhistory-telling)? How do animators\nthemselves “write” the largely unwritten history of their art through\nquotation, transposition and mash-ups? \nWhy should contemporary gamers look at classical painting anyway?</p>\n\n<p>This course will combine short video lectures/interviews and\ninteractive quizzes with independent, peer-reviewed sketchbook and field work (suggested visits to\nlocal museums, film viewings, etc.). It is\nintended to give the student a background in a wide range of visual practices and\na greater familiarity with techniques of historical analysis. It will help to build skills in visual\nanalysis, and will also provide insight into the creative culture of CalArts,\nwhere a certain portion of these art histories have been made in the first\nplace.</p>', 'https://www.coursera.org/course/livearthistory', '', '2013-10-01', 8, 'https://coursera-course-photos.s3.amazonaws.com/ed/3560c8df888d3f816fc0e60cdb369d/fury_mills.jpg', 'Humanities, Music, Film, and Audio, Arts', 'Coursera'),
(652, 'Creating Site-Specific Dance and Performance Works', 'This course will look into the process of creating live site-specific choreography/performance works from conception, production to performance. Site-specific dance/performance is work created in response to a particular place, site, inspired by its architecture/design, the history and current use.', '<p>This course will look into the process of creating live\nsite-specific choreography/performance works from conception, production to\nperformance. Site-specific dance/performance is work created in response to a\nparticular place, site, inspired by its architecture/design, the history and\ncurrent use. We will investigate urban, architectural and\nenvironmental inspired site projects ranging from large-scale to small\n(guerrilla) style productions. We will delineate definitions of\nsite-specificity, and look across the history of the field, focusing primarily on\ndance.<br></p>\n\n<p>Specific techniques and approaches towards generating site\ninspired choreography, developed over the last 25 years by site artist Stephan\nKoplowitz will be introduced. Aspects of navigating technical issues (lighting,\nsound, media) including a primer on producing (budgeting, obtaining\npermissions, insurance, fundraising, audience/event design) will also be\ncovered. </p>', 'https://www.coursera.org/course/sitedance', '', '2013-10-01', 5, 'https://coursera-course-photos.s3.amazonaws.com/22/e70475751f77332297c6f8fe15bff4/Koplowitzsitedance.jpg', 'Arts', 'Coursera'),
(653, 'Introduction to Programming for Musicians and Digital Artists', 'This course provides a complete introduction to programming for digital musicians and\nartists, in the real-time multimedia language ChucK. Rich with practical examples and\npointers to additional web resources, it can be understood by novices wishing to learn to\nprogram interactive arts systems. \n', '<p>The course, lecture, and examples build on each other to teach the fundamentals\n of programming in general (logic, loops, functions, objects, classes) and\n also deals with advanced topics including multi-threading, events and signals.\n Throughout the course, students create meaningful and rewarding expressive\n digital “instruments” that make sound and music in direct response to program\n logic. The ChucK language provides precise high-level control over\n time, audio computation, and user interface elements (track pad, joysticks,\n etc.). ChucK is used (unknowingly in most cases, via SMule Apps)\n by millions of users throughout the world, and is the backbone of dozens\n of academic programs and laptop orchestras. Learning to program using\n ChucK, through the musical examples provided in this course, will prepare\n students to program in C++, Java, and other languages. There will be special\n guest lectures from creators of the ChucK language, Dr. Ge Wang (Stanford\n University) and Dr. Perry R. Cook (Princeton University).</p>', 'https://www.coursera.org/course/chuck101', '', '2013-10-01', 9, 'https://coursera-course-photos.s3.amazonaws.com/0e/4dcda798b9c16dcc62073e617f6624/logo.gif', 'Computer Science: Software Engineering, Music, Film, and Audio, Arts', 'Coursera'),
(654, 'Structural Equation Model and its Applications | 结构方程模型及其应用', '在社会学、心理学、教育学、经济学、管理学、市场学等研究领域的数据分析中,结构方程建模是当前最前沿的统计方法中应用最广、研究最多的一个。它包含了方差分析、回归分析、路径分析和因子分析,弥补了传统回归分析和因子分析的不足,可以分析多因多果的联系、潜变量的关系,还可以处理多水平数据和纵向数据,是非常重要的多元数据分析工具。本课程系统地介绍结构方程模型和LISREL软件的应用,内容包括:结构方程分析(包括验证性因子分析)的基本概念、统计原理、在社会科学研究中的应用、常用模型及其LISREL程序、结果的解释和模型评价。学员应具备基本的统计知识(如:标准差、t-检验、相关系数),理解回归分析和因子分析的概念。 注:本课程配套教材为《结构方程模型及其应用》(以LISREL软件为例)。', '自 1995十多年以来,我已在大陆不同地方,举办近百次大型结构方程研习班。大陆学生勤奋、进取的学习态度,令我甚为感动。不过,中国地域甚为广阔, 就算我到一些偏远地方辦免費班,頗多学生仍难以支付旅费前往参加研习班。为此,我将在香港中文大学内自行制作的网上课程公开,方便学生们用這网上課程及大量的練習去修读。課程內容著重理論的解釋及應用,適合使用LISREL及其他輭件者選讀。\n<br><br>Since 1995, I have conducted close to a hundred large-scale structural equation workshops and am moved by Mainland Chinese students’ diligence and eagerness to learn. However, China is geographically too large. Even if I conduct free workshops at remote cities, a lot of students still cannot pay for the travel expenses to attend. Therefore, I am now making publicly available an original web course that is used by our own students. I hope all Chinese students can now enjoy this course with plenty of exercises to monitor their learning. As most of the course content concentrates on the explanation and applications of theories, the course should be useful for students who intend to use LISREL or other software.', 'https://www.coursera.org/course/sem', '', '0000-00-00', 12, 'https://coursera-course-photos.s3.amazonaws.com/e5/123d7af37ab05a647e6f83b8f378ee/banner_n.jpg', 'Education, Statistics and Data Analysis, Social Sciences', 'Coursera'),
(655, 'Conception et mise en oeuvre d\'algorithmes.', 'Modéliser un problème, concevoir un algorithme de résolution et en proposer une implémentation correcte. Du problème à sa solution, ce cours combine approches pragmatique, pratique et théorique de l\'informatique.', 'Ce cours vous fera découvrir différents aspects de la conception d\'un programme. Au travers de nombreuses études de cas, nous mettrons en exergue les structures de données et les algorithmes permettant d\'apporter des solutions. Comme souvent en informatique, il n\'existe pas de solution unique et nous serons amenés à découvrir différentes classes d\'algorithme et à les comparer.<br>Nous introduirons à cet effet la notion de complexité d\'un programme, c\'est à dire à la fois une estimation du temps d\'exécution de votre programme et de l\'espace requis par celui-ci. Il est tentant de croire que le "meilleur" programme est celui qui minimise le temps d\'exécution mais très souvent cette complexité est contrainte par la mémoire dont vous disposez. Ainsi, vous n\'utiliserez peut-être pas le même algorithme selon que votre programme s\'exécute sur un ordinateur ou un téléphone !', 'https://www.coursera.org/course/algoprog', '', '2013-10-28', 8, 'https://coursera-course-photos.s3.amazonaws.com/66/18ef4770c97248c06f253aff55f81a/logo3.jpg', 'Computer Science: Theory', 'Coursera'),
(656, 'Aléatoire : une Introduction aux Probabilités ', 'Ce cours introduit le concept de Probabilité, dont la puissance permet de modéliser d\'innombrables situations où le hasard intervient. Il est basé sur le livre de Sylvie Méléard "Aléatoire : introduction à la théorie et au calcul des probabilités" qui résulte lui-même du cours de tronc commun de première année de l\'École polytechnique.', 'La modélisation probabiliste est fondamentale dans tous les domaines d\'applications tels que, par exemple, la physique, l\'informatique, les réseaux de télécommunications, la finance, l\'assurance, la biologie et la médecine. Modéliser tant de situations de nature très différente où le hasard intervient requiert un cadre général abstrait qui ne fut rigoureusement défini qu\'en 1933 par Kolmogorov. <br>C\'est ce grand écart entre l\'apparente simplicité de certains problèmes probabilistes concrets et l\'abstraction que nécessite leur résolution qui peut<br>rendre le monde de l\'aléatoire difficile voire inquiétant, mais c\'est aussi ce qui en fait un domaine des mathématiques d\'une grande richesse.<br><br>Le but de ce cours est d\'en convaincre les étudiants par une introduction des notions de base de la théorie des probabilités. Il n\'exige pas de pré-requis en théorie de la mesure et de l\'intégration. Les outils d\'analyse nécessaires à une bonne compréhension des objets probabilistes sont fournis au fur et à mesure de leur construction, mettant ainsi en lumière leur nécessité. <br>Le contenu du cours va de la définition d\'une probabilité au théorème de la limite centrale, et contient également un ourverture aux processus aléatoires.<br><br><br><br>', 'https://www.coursera.org/course/probas', '', '2013-10-21', 0, 'https://coursera-course-photos.s3.amazonaws.com/ae/502b13026cc6efca7aa39dac4de841/logo-0.jpg', 'Mathematics', 'Coursera'),
(657, 'Law and the Entrepreneur ', 'This course will highlight the critical legal and business issues entrepreneurs face as they build and launch a new venture. We will explore real world scenarios, and address the legal and business issues that entrepreneurs face, from the moment they conceive of the "million dollar idea" to all of the important junctures along the path to success.', 'Are you a passionate entrepreneur with a new business idea, but feeling\nintimidated by the law? Or perhaps you\nare a lawyer or aspiring lawyer looking to break into the exciting world of\nstart-ups? This course addresses the\nlegal aspects of entrepreneurship, and is appropriate both for entrepreneurs and\nlawyers who hope to represent entrepreneurs. Entrepreneurs face many challenges\nas they pursue a new business idea. With\nthe right legal tools, they can take steps that provide significant legal\nprotections and avoid future liability. Among\nother subjects, the course will cover American law on choice of entity (corporation,\nlimited liability company, partnership, sole proprietorship), selection of a\ncompany name and trademark, protecting intellectual property of the business\nwith patent, trade secret, trademark and copyright law, structuring agreements\namong owners, venture capital and other equity and debt financing arrangements,\nrisk management, and the relationship between attorneys and entrepreneurs. In\naddition to discussing applicable legal rules, the course will focus on\npractical steps entrepreneurs and their lawyers can take to build and protect a\nnew venture. The goal of the course will\nbe for students to have a better understanding of practical ways they can\nprotect a new venture and spot potential issues from a business-legal perspective.<br><br><br>', 'https://www.coursera.org/course/law', '', '0000-00-00', 8, 'https://coursera-course-photos.s3.amazonaws.com/a1/021f6e754bcf10842ff72406b50562/lawmooc-image.JPG', 'Business & Management, Law', 'Coursera'),
(658, 'Recovering the Humankind Past and Saving the Universal Heritage', 'Archaeology has as its objective the recovery and revival of humankind past, and as its aim the rescue and preservation of cultural heritage.', 'Archaeology has\n as its objective the recovery and revival of humankind past,\n and as its aim\n the rescue and preservation of cultural heritage. The past was\n always the\n object of attention in the ancient civilizations. In the modern\n world,\n Archaeology is no longer about the classification of found objects, but rather about understanding ancient\n cultures. Its fascination is precisely in its methods: a path\n inevitably\n fluctuating between identity and alterity. <br>', 'https://www.coursera.org/course/recoveringthepast', '', '0000-00-00', 6, 'https://coursera-course-photos.s3.amazonaws.com/37/58140776ad96610f665a55ba21a7ba/Matthiae_Ebla.jpg', 'Humanities', 'Coursera'),
(659, 'Terrorism and Counterterrorism: comparing theory and practice', 'Students, policy makers, journalists or anyone with a strong interest in terrorism and counter terrorism studies and trends will find the course most relevant. It will equip you with a range of insights that help you to analyze and understand these complex phenomena. ', '<p>\n\n</p><p>Terrorism has\narguably been one of the defining factors of our age. It frequently\nmakes headlines, threatening or attacking governments, private business and\nordinary citizens. And in many parts of the world, it has been one of the most\nimportant threats to peace, security and stability. But what does this exactly\nmean? What is the nature of this threat? Who or what is threatened, how, by\nwhom and why? What can be done about it or how can we at least limit the impact\nof terrorism and make sure that terrorists do not make headlines and manage to\nscare us?</p><p>\n\nThese are just a handful of questions that will\nbe addressd in this course that consists of three parts. First it focuses on the\nessence of terrorism as an instrument to achieve certain goals, in addition to\nan exploration of this phenomenon and the difficulties in defining it. The\nsecond part provides an overview of the state of the art in (counter) terrorism\nstudies. Since ‘9/11’ terrorism\nstudies have grown exponentially, reflecting the rise in perceived threats. But\nwhat has academia come up with? What theories, assumptions and\nconventional wisdom has it produced that could be of help in understanding\nterrorism and dealing with it? The most interesting results are examined and compared\nwith empirical evidence with the aim to either stress their importance or to\ndebunk them as myths. The final part looks into the implications and\npossibilities for policy making.</p><p>\n\n<br></p>', 'https://www.coursera.org/course/terrorism', '', '0000-00-00', 5, 'https://coursera-course-photos.s3.amazonaws.com/29/5d4f6dfbd7b529d18d0c834ace525e/Terrorism-and-Counterterrorism.jpg', 'Humanities, Social Sciences', 'Coursera'),
(660, 'Understanding Einstein: The Special Theory of Relativity', 'This course offers you the opportunity to gain a deeper understanding of the life and work of the young Albert Einstein and especially his mind-bending special theory of relativity. ', 'In this course we will seek to “understand Einstein,” especially focusing\non the special theory of relativity that Albert Einstein, as a 26-year-old\npatent clerk, introduced in his so-called “miracle year” of 1905. Our goal\nwill be to go behind the myth-making and beyond the popularized presentations\nof relativity in order to gain a deeper understanding of both Einstein\nthe person and the concepts, predictions, and strange paradoxes of his\ntheory. Some of the questions we will address include: How did Einstein\ncome up with his ideas? What was the nature of his genius? What is the\nmeaning of relativity? What’s “special” about the special theory of relativity?\nWhy did the theory initially seem to be dead on arrival? What does it mean\nto say that time is the “fourth dimension”? Can time actually run more\nslowly for one person than another, and the size of things change depending\non their velocity? Is time travel possible, and if so, how? Why can’t things\ntravel faster than the speed of light? Is it possible to travel to the\ncenter of the galaxy and return in one lifetime? Is there any evidence\nthat definitively confirms the theory, or is it mainly speculation? Why\ndidn’t Einstein win the Nobel Prize for the theory of relativity?\n<br>\n<br>Students may choose one of three approaches to the course: a more quantitative\napproach, a more qualitative approach, or an auditing approach. The more\nquantitative approach will include weekly problem sets, while the more\nqualitative approach will include a creative project relating to the young\nEinstein and/or the special theory of relativity.\n<br>', 'https://www.coursera.org/course/einstein', 'http://www.youtube.com/watch?v=pv6IUpC-ug0', '2013-04-08', 8, 'https://coursera-course-photos.s3.amazonaws.com/5e/98dbd2525f8c84298841ca0edd81dc/iStock_000018822031Small.jpg', 'Humanities, Physics', 'Coursera'),
(661, '中國古代歷史與人物--秦始皇', '這是一門透過全新方式設計的歷史入門課,目的在於使非文史專業的學生重新發現學習歷史的樂趣,並重新認識學習歷史的價值。', '<div>在近代以前,歷史學是培養各種領袖與人才的必備教育,因為它能夠使人對過去「稽其興壞成敗之理」、「原始察終,見盛觀衰」(《史記‧太史公自序》)。「中國古代歷史與人物」這門課程希望回到歷史學的原點,藉由具體的事例,來探索「讀歷史到底有什麼用?」。</div><div><br>從東周到秦漢是中國歷史上承先啟後的鉅變時期,更是一個英雄輩出、波瀾壯闊的大時代。而秦始皇正是主導這個時代,且令後世爭議不絕的歷史關鍵人物之一。本課程將利用現代歷史學的各種取徑,以原典史料為中心,結合出土文獻、考古成果、古代文物等,對歷史人物進行多角度的剖析,探索秦始皇及其統治集團成功和失敗的祕密究竟何在,並希望使同學藉此明瞭歷史學的功用與價值。<br><br></div>', 'https://www.coursera.org/course/chinesehistory', '', '2013-08-01', 10, 'https://coursera-course-photos.s3.amazonaws.com/9e/e4ff7cf49e8f3b2daffbfe512f9eea/A.jpg', 'Humanities', 'Coursera'),
(662, 'Soul Beliefs: Causes and Consequences', 'Exploration of the causes and consequences of various beliefs about the soul. Topics such as the self, mind/body dualism, evolution, culture, death anxiety, afterlife, and religious and political conflict.', '<p>Throughout history, the vast majority of people around the globe have\n believed they have, however defined, a “soul.” While the question of whether\n the soul exists cannot be answered by <span>science, what\nwe can study are the causes and consequences of various <i>beliefs </i>about\nthe soul and its prospects of surviving the death of the body. Why are soul and\nafterlife beliefs so common in human history? Are there adaptive advantages to\nassuming souls exist? Are there brain\nstructures that have been shaped by environmental pressures that provide the\nfoundation of body/mind dualism that is such a prominent feature of many\nreligions? How do these beliefs shape the worldviews of different cultures and\nour collective lives? What is the role of competing afterlife beliefs in\nreligion, science, politics, and war? This course explores several facets of\nthis relatively unexplored but profoundly important aspect of human thought and\nbehavior.</span>\n</p>\n<br>\n<br>\n<br>', 'https://www.coursera.org/course/soulbeliefs', 'http://www.youtube.com/watch?v=Y2ZzHxtfGHI', '0000-00-00', 13, 'https://coursera-course-photos.s3.amazonaws.com/e0/bdf8651505657ac79281e160a8dd6a/BD_Mummy_and_Ba.jpg', 'Humanities, Social Sciences', 'Coursera'),
(663, 'Confronting The Big Questions: Highlights of Modern Astronomy', 'An introduction to the most modern astronomy\'s most important questions. The four sections of the course are Planets and Life in The Universe; The Life of Stars; Galaxies and Their Environments; The History of The Universe.', '<p>This course provides students with a short overview of structure and content of the Universe. Each week will cover one question. In week one we address the issue of extra-solar planets - planets orbiting other stars and ask what do we know about these alien worlds touching on issues of life in the Universe as well. In the second week we explore the life of stars. The third week looks at galaxies their history and their distribution across space. The last two lectures explore cosmology - the history of the Universe as a whole.</p>\n<p>Each lecture will use online interactives developed for the textbook that will help students gain an understanding of the dynamic nature of the topic. By the end of the class students will have gained an overview of the Universe they inhabit and an understanding of its biggest unresolved questions.</p>', 'https://www.coursera.org/course/astronomy', 'http://www.youtube.com/watch?v=IhdCu2OHtnc', '2014-02-01', 4, 'https://coursera-course-photos.s3.amazonaws.com/3e/462e5f6b7d94efa7e0f372760b1a2e/HighlightsAstronomyLogo-2.jpg', 'Physics', 'Coursera'),
(664, 'Innovación educativa con recursos abiertos', 'Este curso promueve el conocimiento de los recursos educativos abiertos y su integración en el movimiento educativo abierto como una oportunidad para innovar en los procesos formativos.', 'El curso cubre la temática de la selección, uso y reúso de recursos educativos abiertos, las posibilidades de repositorios que alojan estos materiales, estrategias de búsqueda e integración en procesos formativos, así como de valorar su impacto en los aprendizajes de los participantes. <br><br>\n\nEl participante podrá desarrollar competencias digitales y de diseño Instruccional para integrar recursos educativos abiertos (REA) en los ambientes de aprendizaje.<br><br>\n\nUn elemento diferenciador será conocer sistemas de indización de recursos concretos, como el Sistema Temoa del Tecnológico de Monterrey.', 'https://www.coursera.org/course/innovacionrea', 'http://www.youtube.com/watch?v=YDNrn6ZqRLY', '2013-09-02', 4, 'https://coursera-course-photos.s3.amazonaws.com/a1/1ddc10150939cb249cba3829947226/coursera_001_logo.jpg', 'Education', 'Coursera'),
(665, 'Competitive Strategy', 'In this six-week course you will learn how firms behave in situations in which strategic decisions are interdependent, i.e. where my actions affect my competitors\' profits and vice versa. Using the basic tools of game theory, we will analyze how firms choose strategies to attain competitive advantage. ', '<p>This course\nis about the behavior of companies in\ncompetitive markets. Facing competition forces firms to look ahead and\nanticipate developments: If my rivals are likely\nto react to a price cut, I will have to take the expected reaction into account.\nWe focus on such instances of “strategic\ninterdependencies” in real business situations.\nWe will first study the basic concepts of game theory as a toolbox with which we will\nthen analyze strategic “games” in real-life settings. Rather than a set\nof checklists of “how-to-behave” in a number of\nprespecified situations, this course will teach you to think about business\nstrategy in a systematic and exciting - and\nultimately more successful - way!</p>\n\nWe will use our toolbox to\naddress and analyze different decisions firms take: Why do firms preannounce\ntheir products? How do price wars happen and when do they end? When should I\nenter a market in which firms currently make high profits? What makes strategic\npartnerships work? These are just some examples of the questions we will\ndiscuss during the course, but by the end of the course you should be able to\napply the concepts to pretty much any business situation. <br>', 'https://www.coursera.org/course/compstrategy', 'http://www.youtube.com/watch?v=4nx2z0yX4so', '2013-07-01', 6, 'https://coursera-course-photos.s3.amazonaws.com/c9/aaaec0f37fe9fa9f4cad54550fd8d2/tic_tac_toe_iStock_Natasha-Japp-Photography_webl.png', 'Business & Management', 'Coursera'),
(666, 'Understanding economic policymaking', 'This course will take a non-technical approach to understanding how governments influence the macroeconomy. Topics will include fiscal policy, deficits and debts, monetary policy and structural reform. We will review some current debates, such as fiscal stimulus vs. austerity and rules vs. quantitative easing.', '<p>Developed countries are immersed in the worst crisis\nsince World War II. How are governments\nresponding? Could they do more? These are the questions that will be tackled\nin this course.</p>\n\n<p> </p>\n\n<p>The course begins with a review of some basic\nmacroeconomic concepts to lay the groundwork for the policy framework. It then analyzes how fiscal policy works and\nwhat the effects of today´s outsized deficits and debts could be on national\neconomies. It then moves to monetary\npolicy and explores its drawbacks and the recourse to other approaches, such as\nquantitative easing. Finally, the course\nlooks at the other policies open to governments to address a crisis, and the\ndebate over how they have been used today.</p>\n\n<p> </p>\n\nStudents will finish\nthe course by trying their own hands at economic policymaking for an\nunidentified country, with an online simulator exercise.<br><br><br>', 'https://www.coursera.org/course/econpolicy', 'http://www.youtube.com/watch?v=NZjfqjv_6Gg', '0000-00-00', 6, 'https://coursera-course-photos.s3.amazonaws.com/3f/f561bfe742b0e20993a7b0e608f523/5course_logo.jpg', 'Economics & Finance', 'Coursera'),
(667, 'La visione del mondo della Relatività e della Meccanica Quantistica', 'In questo corso imparerete come la fisica del XX secolo, con la Relatività e la Meccanica Quantistica, abbia combiato la nostra visione del mondo.', 'La fisica del\nXX secolo, con le teorie della relatività e della meccanica quantistica, ha\ncambiato radicalmente la visione del mondo che ci circonda. Dallo spazio e\ntempo assoluti e indipendenti si è passati ad una descrizione di un mondo in cui\ndistanze ed intervalli di tempo dipendono da chi le osserva, in cui l’ordine di\naccadimento di due eventi non è univoco, in cui la velocità del tempo segnato\nda un orologio dipende da quali corpi si trovino vicino. Nel microscopico si è\ninvece abbandonata la descrizione della fisica classica, magari caotica, ma\nsempre deterministica, per arrivare ad una descrizione probabilistica, in cui\ngli stati e le proprietà del mondo microscopico non sono determinati, a priori,\nintrinsecamente, ma acquisiscono realtà solo se vengano misurati o se entrino\nin contatto con altri “oggetti”. L’abbandono della realtà locale, del fatto\ncioè che le azioni esercitate in un luogo, per particolari sistemi, possono\navere effetti istantanei su oggetti a distanze virtualmente infinite,\nstravolgono la descrizione di un mondo che fino al secolo scorso sembrava\nsensato e ragionevole. Nel corso verranno descritte le principali\ncaratteristiche di queste due teorie, di come abbiano cambiato il concetto del\nnostro universo e delle possibilità di conoscerlo, e di come abbiano influito\nnella vita quotidiana.<p></p>', 'https://www.coursera.org/course/rqm', '', '0000-00-00', 8, 'https://coursera-course-photos.s3.amazonaws.com/db/331edd3f16a7391ffa670a6fefa03d/logo-RQM-4-1-liv.jpg', 'Humanities, Physics', 'Coursera'),
(668, 'Analyzing the Universe', 'Using publicly available data from NASA of actual satellite observations of astronomical x-ray sources, we explore some of the mysteries of the cosmos, including neutron stars, black holes, quasars and supernovae.', '<span> Science is really not about looking up facts in an encyclopedia. It is a <i>process</i> that\nextends what we know into the realm of the unexplored. This can be\nexciting, certainly; to be able to sneak a peak at the Universe at its strange,\nawesome, cosmic best. But it is very different from your run-of-the-mill\nstandard “textbook” idea of science. Science is a social, human endeavor.<br></span><br><span>And as human beings, we crave authenticity. We have seen the trappings of\nsociety, we act as if we have mastered technology, and yet we know that\nsomething is lacking. We have succumbed to the lure of Ebay, Facebook and\nAmazon (at least, I know <u>I</u> have!), and yet we remain unsatisfied at some primal level. \nIt’s time to peel away the layers of glitzy imagery and use our machines to exploit their ultimate purpose: the capability to process large amounts\nof data with instructions that we provide, in order to test our ideas about how\nthe Universe seems to behave. In short, to do Science.</span><span> For the\nfirst time, it is possible for the interested student (and we are <u>all</u>\nstudents, <u>especially</u> those that have any claim to be considered\n“learned” , such as the instructor!) to have this experience on-line. <br><br></span><p>The subject matter for this course will be divided into two\nbroad components which will be interweaved in an interdisciplinary fashion. The first is a general introduction to the physics and astronomy\ninformation you will need to understand basic phenomena that occur in the realm\nof x-ray astrophysics; the second is the presentation of authentic satellite\ndata from various exciting types of x-ray sources, which you will analyze to\nbetter understand the working of the high-energy Universe in which we live.\nThere are no prerequistes for this course, other than high-school mathematics\n(algebra and trigonometry).<br></p><p> I hope you will enjoy your experience in "Analyzing the Universe".</p>', 'https://www.coursera.org/course/analyze', 'http://www.youtube.com/watch?v=VfSumhQblEM', '0000-00-00', 6, 'https://coursera-course-photos.s3.amazonaws.com/69/c0e0fa7afe31813d3322a2b3007937/supernova-black-hole.jpg', 'Physics', 'Coursera'),
(669, 'Inspiring Leadership through Emotional Intelligence', 'Emotional intelligence, hope, mindfulness, and compassion help a person reverse the damage of chronic stress and build great leadership relationships. The Positive and Negative Emotional Attractors inspire sustained, desired change and learning at many levels. ', '<p>Great leaders move us through our emotions. They establish a deep emotional\n connection with others called resonance. Their own levels of emotional\n intelligence allow them to create and nurture these resonant relationships.\n They use their EI as a path to resonant leadership through mindfulness,\n hope, compassion, and playfulness. Unfortunately, most people in leadership\n and helping positions (i.e., doctors, teachers, coaches, etc.) lose their\n effectiveness over time because of the cumulative damage from chronic stress.\n But humans can renew themselves, neurologically, hormonally, and emotionally.</p>\n<p>Based on decades of research into emotional intelligence competencies\n and longitudinal studies of their development, the course will examine\n resonance and developing "resonant leadership" capability, emotional\n intelligence, and the experiences of mindfulness, hope, and compassion.\n Using the latest in neuroscience, behavioral, organizational and psychological\n research, participants will understand the theory, research, and experience\n of the Positive Emotional Attractor that is an essential beginning to sustained,\n desired change for individuals, teams, organizations and communities. </p>\n<p> </p>', 'https://www.coursera.org/course/lead-ei', 'http://www.youtube.com/watch?v=NH4_Ptj0C28', '2013-05-01', 6, 'https://coursera-course-photos.s3.amazonaws.com/09/417bb17c47b134bf9399974d250bec/147669568.jpg', 'Business & Management, Education, Social Sciences', 'Coursera'),
(670, 'El ABC del emprendimiento esbelto ', 'A través de diferentes actividades de campo el participante vive personalmente el proceso emprendedor, aprendiendo los conceptos del curso principalmente con base en la experimentación. ', '<p>A pesar de que una gran parte de la literatura sobre emprendimiento prepara\n al “candidato emprendedor” a cómo hacer planes de negocio para conseguir\n financiamiento proveniente de supuestos inversionistas, tal y como lo hace\n la tradición norteamericana de enseñanza del emprendimiento, la realidad\n de negocios nos dice que inclusive en los países desarrollados los proyectos\n emprendedores inician con sus recursos financieros propios y normalmente\n muy escasos.</p>La principal herramienta para estos emprendimientos no\nes el plan de negocios ni el financiamiento, sino la creatividad empresarial. \nPor lo que, para una enseñanza efectiva del proceso emprendedor, hay que\npartir de esta realidad y no solo imitar lo que sucede en universidades,\nprincipalmente norteamericanas, con un contexto muy diferente al resto\ndel mundo. Por otro lado, pareciera un misterio el por qué solo muy pocos\nproyectos de empresa o de negocio tienen éxito, pareciera una combinación\nentre el “culto” a la personalidad del emprendedor y suerte; sin embargo\nla realidad nos demuestra que los proceso emprendedores que tienen éxito,\nsi bien tiene una influencia la importante motivación y la persona, siguen\nun proceso con etapas específicas, un patrón de acciones muy similar, aunque\nlos emprendedores no se hayan dado cuenta de este proceso.\n<br>\n<br>\n<p>Este curso invita al participante a tener la persistencia para seguir\n este proceso emprendedor basado en la experimentación.</p>', 'https://www.coursera.org/course/abcemprendimiento', 'http://www.youtube.com/watch?v=L3qoBvVKh9U', '2013-08-05', 6, 'https://coursera-course-photos.s3.amazonaws.com/1d/6f317a77d43e3acbedca8d3e4dc52d/coursera_002_logo.jpg', '', 'Coursera'),
(671, 'Volcanic Eruptions: a materials science.', 'Volcanic eruptions are a powerful demonstration of the energy of the Earth´s interior. A materials-based understanding of the evolution of erupting systems provides a quantitative physico-chemical description of the nature of lava and magma and the role of experiments in quantifying the eruptive process. ', '<p>Geoscientists define\na “living planet” as one with active volcanism. By this definition our Earth is\nvery much alive, with many eruptions each year and with a far greater number of\n“active volcanoes” that can potentially erupt in any given year. </p><p>In detail, each eruption is\ndifferent. Every volcano is its own physical and chemical system, occurs in its\nown geological location, is subjected to its local stress field, and is at its\nown stage in evolution in geological time. \nExternal triggers of volcanic eruptions are also believed to play an\nimportant role.</p><p>Yet powerful generalisations\nand models of volcanic eruptions are indeed possible and in fact very useful in\ndealing with the consequences of volcanic eruptions.</p>\n\n<p>How are such models\nconstructed? They must rest on a basis of a mechanistic understanding of what\nvolcanoes are, and what they are doing – not just during eruptions but also in\nthe events leading up to eruptions, and not just at the Earth´s surface but\nalso at depth, where the magma is being prepared for the next eruption.</p><p>In addition to\nfield observations of past eruptions, monitoring of signals from magmatic\nsystems, and computer-based simulation of volcanic eruptions, increasingly,\nhigh pressure and high temperature experiments are employed in order to answer\nthe question of how volcanic systems work.</p>\n\n<p>These controlled laboratory conditions\nfor experimental volcanology are transforming the study of volcanoes from a\nchiefly observational discipline where eruptive mechanisms were developed via\ntheoretical analysis of such observations, into a fully modern scientific\ndiscipline where such theoretical approaches are either verified or rejected,\nby the experimental picture of what is possible and what is not.</p><p>This course shows you how such experimental insight is obtained and what it tells us about erupting volcanoes.<br></p>', 'https://www.coursera.org/course/volcano', 'http://www.youtube.com/watch?v=o1FoKMXv9vY', '2013-07-01', 10, 'https://coursera-course-photos.s3.amazonaws.com/d8/6a95f7ba54f7799763248e1dac2b7a/vulkan_ammit_istock_webl.png', 'Energy & Earth Sciences', 'Coursera'),
(672, 'Introduction to International Criminal Law', 'Taught by one of the world’s leading experts in the field, this course will educate students about the fundamentals of international criminal law and policy. We will explore the challenges of prosecuting international genocide, war crimes, terrorism, and piracy cases. ', '<p>From the Nuremberg trial to the case\nagainst Saddam Hussein, from the prosecution of Al-Qaeda terrorists to the\ntrial of Somali pirates – no area of law is as important to world peace and\nsecurity as international criminal law. Taught\nby one of the world’s leading experts in the field, this course will educate\nstudents about the fundamentals of international criminal law and policy. We will explore the contours of international\ncrimes such as genocide, war crimes, terrorism, and piracy. We will examine unique modes of international\ncriminal liability and specialized defenses. \nAnd we will delve into the challenges of obtaining custody of the\naccused and maintaining control of the courtroom.</p>', 'https://www.coursera.org/course/intlcriminallaw', 'http://www.youtube.com/watch?v=P9WbkjBrSSg', '2013-05-01', 8, 'https://coursera-course-photos.s3.amazonaws.com/7d/b9ca86812e37761e1d836fb37cd5a0/Untitled.png', 'Law', 'Coursera'),
(673, 'Early Renaissance Architecture in Italy: from Alberti to Bramante', 'Through some of the most celebrated examples of the early Renaissance architecture and the most important statements of the early Renaissance theories, the course will examine problems of the architectural spaces, technology and forms looking to the antiquity in the XV century in Italy.', '<p><b>Early Renaissance Architecture in Italy: from Alberti\nto Bramante</b>\n\n</p>\n<p><span>When\nLeon Battista Alberti completed<i> </i>his\ntreatise about architecture around 1452, his initial study of texts and\nmonuments of Antiquity was based on mathematics and geometry as a reflection of\nnature, with a belief that architecture was a part of a man\'s civil duty.</span>\n\n</p>\n<p>This<span> attitude would\ncondition the architectural principles of the early Renaissance and architects\ndid not apply themselves to textual imitations of individual antique monuments.\nIn Florence, they preferred to accept and articulate the rational “system” of\nBrunelleschi, either transforming it, like Alberti, or breaking with<b> </b>it in a return to tradition, like\nMichelozzo. In north and south Italy, the battle between innovation and resistance\nwas increasing in strength and substance because it not only encompassed\nimmediate questions of decorative language \n(antique forms and architectural orders) but also the problems of\nconceiving and constructing an architecture that could replace the gothic\nstructural membering with the continuous masonry of the Antiquity. At first,\nthe new decoration was frequently adapted to the existing architectural system,\nand only later did it find a partner in the different spatial and structural\nconceptions that descended from Florentine exempla. The tendency to see norms\nand models in antique architecture, which must be rigidly replicated, first\naffirmed itself at the beginning of the XVI century in Rome.</span>\n\n</p>\n<p>Through some of the most celebrated examples of the early Renaissance\n architecture and the most important statements of the early Renaissance\n theories, the course will examine problems of the architectural spaces,\n technology and forms in the XV century in Italy, from Leon Battista Alberti’s\n to Francesco di Giorgio’s and Bramante’s proposals.</p>\n<br>\n<br>\n<br>\n<br>', 'https://www.coursera.org/course/renaissancearchitect', '', '0000-00-00', 8, 'https://coursera-course-photos.s3.amazonaws.com/03/e3dc90082e82795783e6b5e031d4b6/77650945.jpg', 'Humanities, Arts', 'Coursera'),
(674, 'Crafting an Effective Writer: Tools of the Trade', 'Learn to become an effective builder of sentences using the basic tools of grammar, punctuation, and writing.', 'Learn to become an effective builder of sentences using the basic tools\nof grammar, punctuation, and writing. By dedicating yourself to the craft\nof writing, you will learn to develop the four basic sentence types into\na well-organized, detailed paragraph. This course is designed for anyone\nwho wants to become a better writer. If you need to write more clearly\nfor work, prepare for a placement test for a college, or improve your skills\nfor current writing projects, this class will definitely be beneficial.\n<br>\n<br>\n<b><i>Objectives:\n</i></b>\n<br>\n<ul>\n <li>Students will be able to identify and correct some sentence level grammatical\n and punctuation errors.</li>\n <li>Students will be able to develop four sentence types: simple, compound,\n complex and compound-complex.</li>\n <li>Students will be able to combine sentences using all four sentence types.</li>\n <li>Students will be able to develop a clear topic sentence.</li>\n <li>Students will be able to write a well-organized, detailed paragraph.</li>\n</ul><b><i>Why would you want to take this course?</i></b> There are\na variety of reasons:\n<br>\n<ul>\n <li>As a pre-Assessment activity</li>\n <li>As a petition for English placement</li>\n <li>As a brush-up for students while in writing classes</li>\n <li>As a brush-up for students who don’t/can’t enroll in an English class</li>\n <li>As a resource for flipped/blended classrooms</li>\n <li>To become a better writer!\n <br>\n </li>\n</ul>', 'https://www.coursera.org/course/basicwriting', 'http://www.youtube.com/watch?v=S0jWw-t9pvs', '2013-05-13', 5, 'https://coursera-course-photos.s3.amazonaws.com/a1/556cc99b065bcf82c23ca7f40ab739/msjc.jpg', 'Humanities', 'Coursera'),
(675, 'Bioinformatics Algorithms (Part 1) ', 'This course will cover some of the common algorithms underlying the following fundamental topics in bioinformatics: assembling genomes, comparing DNA and protein sequences, predicting genes, finding regulatory motifs, analyzing gene expression, constructing evolutionary trees, analyzing genome rearrangements, and identifying proteins.', '<p>Sequencing the human genome in 2001 started a computational revolution\n in biology, which has arguably been an impetus for more new algorithms\n than any other fundamental realm of science. The newly formed links\n between computer science and biology affect the way we teach computational\n ideas to biologists, as well as how applied algorithms are taught to computer\n scientists. </p>\n<p>Genome sequencing is just one of hundreds of biological problems that\n have become inextricable from the computational methods required to solve\n them. In this course, we will take a look at some of the algorithmic ideas\n that are fundamental to an understanding of modern biology. \n Computational concepts like dynamic programming and network analysis will\n help us explore algorithms applied to a wide range of biological topics,\n from finding genes to reconstructing the tree of life. Throughout\n the process, we will apply <i>real</i> bioinformatics tools and analyze <i>real</i> genetic\n data.</p>\n<p>In order to streamline homework assignments and solidify the material\n covered in the course, we will employ Rosalind (<a href="http://rosalind.info/">http://rosalind.info</a>),\n a fun new resource for learning bioinformatics that was founded by\n the instructors. We hope that Rosalind will show you how\n fun solving problems in bioinformatics can be.</p>', 'https://www.coursera.org/course/bioinformatics', '', '0000-00-00', 6, 'https://coursera-course-photos.s3.amazonaws.com/f6/7527a3eec88c18842c9b621ba6ee70/genome-assembly.png', 'Computer Science: Theory, Biology & Life Sciences', 'Coursera'),
(676, 'Critical Perspectives on Management', 'Innovative management and inspired leadership need more than rules and knowledge: imagination, creativity and lateral thinking are also integral. This class offers students the opportunity to consider different ways to ask questions, ponder problems, discover opportunities and explore key concepts that inform the contemporary practice of management.\n\n\n', '<p>Designed for students who are thinking of a career in\nmanagement or consulting, this course brings the methodology and critical\napparatus of the humanities into the field of management to fulfill two basic\nobjectives. The first objective is to place in broad critical perspective how\nwe think about the function and culture of management and to expand the\nboundaries of how managers understand their role within a firm, how they take\ndecisions, set priorities and benchmark success and failure. The second objective\nis to help students learn how to build robust analytical frameworks informed by\ndifferent perspectives in order to evaluate concepts and solve problems.</p>\n\nThe course draws upon\ndiverse material, ranging from history to economics, to encourage students to\nthink about management beyond its traditional confines. Topics include the\nfunction of the firm, the role of incentive, the ways in which narrative forces shape decision making, and how market relationships define the\nmanagerial culture in ways that can lead to sub-optimal outcomes.<br>', 'https://www.coursera.org/course/criticalmanagement', 'http://www.youtube.com/watch?v=M0uKKrTJg4M', '2013-11-01', 6, 'https://coursera-course-photos.s3.amazonaws.com/f2/dc74afd15165b9fd4a5476f25415c9/managemen_logot.jpg', 'Business & Management', 'Coursera'),
(677, 'Understanding Media by Understanding Google', 'Few Americans who “just Google it” to find an answer to their every question understand just what the company does (and why). Through this course, you\'ll join the minority that really gets it.', '<p>Google Inc. is one of the key success stories of the Internet era. The\n company has expanded beyond its original search business through innovation\n and acquisition to touch the lives of nearly every person who lives life\n online. Americans spend more than 3,400 hours per year using consumer media,\n the field where Google’s impact is most profound, and increasingly must\n understand what the company has wrought not only to control our\n offline and online environments, but also to interact and engage successfully\n with anyone in our professional and personal lives.</p>\n<p>You will learn how to understand the tactics that modern media companies,\n journalists, marketers, politicians, technologists, and social networks\n are using to reach you and affect your behavior. You will learn how to\n adopt strategies that put them on an even footing with these entities in\n achieving your own communications goals. We\'ll </p>\n<ul>\n <li>think about, react to, and write about half a dozen important books about\n Google; </li>\n <li>read a sampling of newspaper and magazine reportage from Google’s entire\n history;</li>\n <li>monitor news sites and specialized blogs about the company and its competitors;</li>\n <li>take note of our own usage of Google and other online resources;\n and</li>\n <li>learn how to anticipate the future impact of the company and its competitors\n on information consumption, creation, and distribution. </li>\n</ul>', 'https://www.coursera.org/course/googlemedia', '', '0000-00-00', 0, 'https://coursera-course-photos.s3.amazonaws.com/c2/9a2134b106a1e7fc70c37f4c229259/photo.JPG', 'Economics & Finance, Information, Tech, and Design, Business & Management', 'Coursera'),
(678, 'Introduction to Power Electronics', 'The course is an introduction to switched-mode power converters. It provides a basic knowledge of circuitry for the control and conversion of electrical power with high efficiency. ', 'The course is an introduction to switched-mode power converters. It provides a basic knowledge of circuitry for the control and conversion of electrical power with high efficiency. These converters can change and regulate the voltage, current, or power; dc-dc converters, ac-dc rectifiers, dc-ac inverters, and ac-ac cycloconverters are in common use. Applications include electronic power supplies, aerospace and vehicular power systems, and renewable energy systems.', 'https://www.coursera.org/course/powerelectronics', '', '0000-00-00', 0, 'https://coursera-course-photos.s3.amazonaws.com/58/79756faa2f1227bb1c6e60522f446a/image.jpeg', 'Engineering', 'Coursera'),
(679, 'Latin American Culture', 'This course seeks to interest students in the Latin American culture by studying it from multiple perspectives.', '<p>This course\nwill develop students’ abilities to understand Latin American culture at both\nthe national and regional levels. Students will analyze the social, economic,\npolitical, and cultural development of the region by applying modern critical\nthinking to the understood history of the individual Latin American countries.\nAt the same time, students will study the contributions of different cultural\nand ethnic groups that exist within these countries, in order to understand fully\nthe social complexity of what we call “Latin America”. Lastly, students will\nevaluate the developmental needs of Latin American countries and propose\npossible solutions in which individuals can act as a force for change.</p>Throughout the course,\nstudents will develop abilities such as: independent thinking and learning, analytical\nskills, and the ability to synthesize, and evaluate. The final part of the\ncourse will help develop critical thinking and problem solving skills. After\ncompleting this course, students will gain a better awareness of Latin American\nreality and needs.', 'https://www.coursera.org/course/latinamericanculture', 'http://www.youtube.com/watch?v=T-ggRQcPLqw', '2013-06-03', 6, 'https://coursera-course-photos.s3.amazonaws.com/d3/615156b474505e97d625ec0998c378/coursera_003_logo.jpg', 'Humanities, Social Sciences', 'Coursera'),
(680, 'How Green Is That Product? An Introduction to Environmental Life Cycle Assessment', 'In this course you will learn the basics of the life-cycle assessment (LCA) method for holistic environmental analysis of products, technologies, and systems. LCA sheds light on the environmental implications of the consumption and behavioral choices we all make on a daily basis.', 'Paper or plastic? Hybrid or conventional vehicles? Which is\nbetter for the environment? To answer these questions, one must take\na holistic systems view using a quantitative approach known as life cycle\nassessment.\n<br>\n<br>Life cycle assessment (LCA) is a fundamental method for assessing the\nenvironmental impacts of products and technologies from a "cradle to grave"\nsystems perspective. It is an essential tool for anyone who performs\nenvironmental analyses or uses the results of such analyses for decision\nmaking. \n<br>\n<br>The course will provide an introduction to LCA methods and applications. \nStudents taking this course will emerge with a solid understanding of why\nan LCA systems perspective is important, basic skills for sound application\nof the LCA method and proper interpretation of its results, and an appreciation\nfor the strengths and limitations of LCA in practice. The course\nwill cover the four major steps in LCA: (1) goal definition and scope;\n(2) life-cycle inventory compilation; (3) life-cycle impact assessment;\nand (4) interpretation and management. The course will include a\nhands-on modeling project, which the students will perform in parallel\nto the lectures to reinforce learning objectives and to gain experience\nin LCA application.\n<br>', 'https://www.coursera.org/course/introtolca', '', '0000-00-00', 8, 'https://coursera-course-photos.s3.amazonaws.com/15/7647feef7d1807f638f6dfddf2a2c2/tree-logo-600x340.jpg', 'Engineering, Statistics and Data Analysis, Energy & Earth Sciences', 'Coursera'),
(681, 'Continuidad y desarrollo de la empresa familiar', '¿Cuál es la importancia de las empresas familiares en el mundo?, ¿cómo garantizar su continuidad y permanencia?, ¿cómo mejorar la comunicación entre sus miembros? y ¿cómo lograr sucesiones exitosas? Este curso brinda estas respuestas a través de la identificación de estrategias para la profesionalización de las empresas familiares.', '<p><span>El curso <b>Continuidad y Desarrollo de la Empresa\nFamiliar</b> tiene como propósitos educativos que los participantes al final\ndel mismo:<br>\n</span>\n</p>\n<ul>\n <li>Sean conscientes de la importancia de las empresas familiares en el mundo.</li>\n <li>Comprendan la complejidad de las empresas familiares como un sistema familia,\n empresa y propiedad.</li>\n <li>Sean capaces de diagnosticar la problemática de las empresas familiares.</li>\n <li>Apliquen modelos y soluciones útiles para la continuidad y sucesión de\n la empresa familiar.</li>\n <li>Se visualicen como agentes de cambio de la empresa familiar.</li>\n <li>Desarrollen un pensamiento crítico.\n <br>\n </li>\n</ul>\n<p><span>\nEste curso incluye como valor agregado la aplicación de un <b>cuestionario</b> que permitirá contar con una radiografía de la empresa\nfamiliar, el cual está basado en 5 dimensiones: estrategia, liderazgo,\ninnovación, institucionalización y continuidad.</span> \n <br>\n</p>\n<p><span>Se tendrá acceso a entrevistas con <b>expertos internacionales</b>, quienes\ncompartirán su punto de vista y experiencias reforzando la comprensión de los temas del curso. </span> \n <br>\n</p>\n<p><span>Además, se tendrá\nla oportunidad de aplicar modelos avanzados para transitar de una empresa\nfamiliar a una <b>familia emprendedora.<br></b></span>\n</p>\n<p>El curso considera el análisis de <b>casos de estudio</b> de distintos países\n de Latinoamérica para poner en práctica el aprendizaje de los participantes. </p>', 'https://www.coursera.org/course/empresafamiliar', 'http://www.youtube.com/watch?v=X1zhDLEbSVA', '2013-05-13', 6, 'https://coursera-course-photos.s3.amazonaws.com/2f/27e19aafb217f33a4768664de85b2b/coursera_004_logo.jpg', 'Economics & Finance, Business & Management, Social Sciences', 'Coursera'),
(682, 'Linear and Integer Programming', 'This course will cover the very basic ideas in optimization. Topics include the basic theory and algorithms behind linear and integer linear programming along with some of the important applications. We will also explore the theory of convex polyhedra using linear programming.\n', '<div><p>Linear Programming (LP), arguably one of the most important optimization problems in applied mathematics and engineering. The Simplex algorithm to solve linear programs is widely regarded as one among the " <a href="http://www.siam.org/pdf/news/637.pdf">top ten </a>" algorithms of the 20th century. Linear Programs arise almost all fields of engineering including operations research, statistics, machine learning, control system design, scheduling, formal verification and computer vision. It forms the basis for numerous approaches to solving hard combinatorial optimization problems through randomization and approximation.</p><p><br></p><p>The primary goals of this course will be</p><p>1. Understand the basic theory behind LP, algorithms to solve LPs, and basics of (mixed) integer programs.</p><p>2. Understand important and emerging applications of LP to economic problems (optimal resource allocation, scheduling problems), machine learning (SVM), control design (finite horizon optimal control, dynamic programming), and formal verification (ranking functions, symbolic execution, SMT solvers).</p><p>At the end of the course, the successful student will be able to cast various problems that may arise in her research as optimization problems, understand the cases where the optimization problem will be linear, choose appropriate solution methods and interpret results appropriately.<i> This is generally considered a useful ability in many research areas.</i></p></div><div></div><div><br></div>', 'https://www.coursera.org/course/linearprogramming', '', '0000-00-00', 0, 'https://coursera-course-photos.s3.amazonaws.com/da/f9b75dd249e7cf7b851148e4bdf543/lpLogo.png', 'Computer Science: Theory', 'Coursera'),
(683, 'Conditions of War and Peace', 'This course aims to nail down some of the basic issues that had been argued in the current research on peace and security. ', '<p>Discourse on war and peace has gone through a remarkable transition during\n the two decades after the end of the Cold War. We do not have to worry\n of major nuclear wars, and then, no longer can we anticipate stability\n based on nuclear deterrence. We have no immediate threat emanating from\n a belligerent adversary equipped with a major arsenal, but we observe a\n number of small to medium military powers that are more belligerent than\n the days of the Soviet Union. We have more democracies in the world, and\n yet are far from the democratic peace that has been imagined by the students\n of international relations.</p>\n<p>This course aims to nail down some of the basic issues that had been argued\n in the current research on peace and security. The questions are all deceptively\n simple enough, but then the answers will all be ambiguous at best. It is\n my hope that you will be able to provide better answers than those given\n in the course by developing your own analytical capacity.</p>', 'https://www.coursera.org/course/warandpeace', '', '2013-10-15', 4, 'https://coursera-course-photos.s3.amazonaws.com/f6/5c6c702b2d58350c8166e654e76fe5/warandpeace_image.jpg', 'Social Sciences', 'Coursera'),
(684, 'From the Big Bang to Dark Energy', 'This course will cover the various topics on the discoveries about how the Universe evolved in 13.7 billion years since the Big Bang. ', 'We have learned a lot recently about how the Universe evolved in 13.7 \nbillion years since the Big Bang. More than 80% of matter in the \nUniverse is mysterious Dark Matter, which made stars and galaxies to \nform. The newly discovered Higgs-boson became frozen into the Universe a\n trillionth of a second after the Big Bang and brought order to the \nUniverse. Yet we still do not know how ordinary matter (atoms) survived\n against total annihilation by Anti-Matter. The expansion of the \nUniverse started acceleration about 7 billion years ago and Universe is \nbeing ripped apart. The culprit is Dark Energy, a mysterious energy \nmultiplying in vacuum. I will present evidence behind these startling \ndiscoveries and discuss what we may learn in the near future.<br>', 'https://www.coursera.org/course/bigbang', '', '2013-09-03', 4, 'https://coursera-course-photos.s3.amazonaws.com/d1/2f7944a06b482ba94cab20ed2218da/Hubble_Ultra_Deep_Field_part_d_high.jpg', 'Physics', 'Coursera'),
(685, 'The Diversity of Exoplanets', 'The course will provide an overview of the knowledge acquired during the past 20 years in the domain of exoplanets. It will review the different detection methods, their limitations, and the information provided on the orbital system and the planet itself, and how this information is helping our understanding of planet formation.', 'The discovery of extra-solar planets orbiting other stars has been one of the major breakthroughs in astronomy of the past decades, changing our view on the formation of planetary systems, mainly drawn from the observation of the Solar System. Today, over 860 exoplanets are known and the Kepler satellite has recently identified over 2700 additional candidates, most of them awaiting for confirmation. We have learned that exoplanets are extremely common objects in the Universe and that planetary systems are much more diverse than originally predicted. <br><br>Our knowledge about exoplanets has dramatically increased thanks to the systematic monitoring of stars in the solar neighborhood by radial velocities, photometry, microlensing, and recently direct imaging, bringing valuable constraints to planet formation theories, as well as to models of planet interior structure, and atmosphere physics. In this course, we will review the main discoveries, describing the different approaches to detect exoplanets and characterise their orbital and physical properties.<br>', 'https://www.coursera.org/course/extrasolarplanets', '', '0000-00-00', 5, 'https://coursera-course-photos.s3.amazonaws.com/b6/f82873962dc3057bc7a6e3ae499bbe/exoplanet07.jpg', 'Physics', 'Coursera'),
(686, 'Fundamentals of Digital Image and Video Processing', 'In this class you will learn the basic principles and tools used to process images and videos, and how to apply them in solving practical problems of commercial and scientific interests. ', '<p>Digital images and videos are everywhere these days – in thousands of\nscientific (e.g., astronomical, bio-medical), consumer, industrial, and\nartistic applications. Moreover they come in a wide range of the\nelectromagnetic spectrum - from visible light and infrared to gamma rays and\nbeyond. The ability to process image and video signals is therefore an\nincredibly important skill to master for engineering/science students, software\ndevelopers, and practicing scientists. \nDigital image and video processing continues to enable the multimedia\ntechnology revolution we are experiencing today. Some important examples of\nimage and video processing include the removal of degradations images suffer\nduring acquisition (e.g., removing blur from a picture of a fast moving car),\nand the compression and transmission of images and videos (if you watch videos\nonline, or share photos via a social media website, you use this everyday!),\nfor economical storage and efficient transmission. </p>\n\nThis course will cover the fundamentals of image and video processing. We will provide a mathematical framework to describe and analyze images and videos as two- and three-dimensional signals in the spatial, spatio-temporal, and frequency domains. In this class not only will you learn the theory behind fundamental processing tasks including image/video enhancement, recovery, and compression - but you will also learn how to perform these key processing tasks in practice using state-of-the-art techniques and tools. We will introduce and use a wide variety of such tools – from optimization toolboxes to statistical techniques. Emphasis on the special role sparsity plays in modern image and video processing will also be given. In all cases, example images and videos pertaining to specific application domains will be utilized.<br><br>', 'https://www.coursera.org/course/digital', '', '0000-00-00', 12, 'https://coursera-course-photos.s3.amazonaws.com/3e/8166be0abcc2a8803d91b7aa55135c/logo_aggelos.jpg', 'Information, Tech, and Design, Engineering, Computer Science: Artificial Intelligence', 'Coursera'),
(687, 'Introduction to Environmental Law and Policy', 'Interested in learning about how the law analyzes issues and resolves disputes involving pollution, natural resources, endangered species, environmental justice, and sustainable development? Professor Hornstein will guide you through these issues, and more, in this course.', 'This course introduces the major substantive themes in environmental law and gives\nstudents insight and experience with critical thinking about these themes. Students will demonstrate mastery by learning how past environmental disputes have been resolved, and by applying insights and critical-thinking skills from past disputes to predicting how future ones might be addressed, including future disputes involving climate change.\n\n\n\n\n\n<br>', 'https://www.coursera.org/course/environlaw', '', '2013-08-01', 8, 'https://coursera-course-photos.s3.amazonaws.com/13/fb54ff3e7f336cbb4f347a9e6318ff/dons-icon.jpg', 'Law', 'Coursera'),
(688, 'Physics 1 for Physical Science Majors', 'Coming in Fall 2013: This is the first semester of a 2-semester introductory physics sequence taught at the University of Colorado at Boulder. The course is intended for physical science majors and others desiring a rigorous introduction to physics. The course covers classical mechanics, including kinematics, dynamics, conservation laws, and applications.', '<p>This course is a rigorous introduction to classical mechanics, which is the study of forces and motion. How does gravity control the motion of the\nplanets around the sun or the motion of a projectile fired from a cannon? Why does a spinning skater spin faster when\nshe pulls her arms in? Why is a\nperpetual motion machine impossible? These are the kinds of questions which can\nbe answered with classical mechanics, which was first formulated by Isaac\nNewton around 1666. Classical, or Newtonian Mechanics is the oldest branch of\nphysics, but it will never go out of style. \nIt remains the foundation of our understanding of the physical world and\nis constantly used by engineers and scientists. There is a space probe, called\nNew Horizons, that is on its way to Pluto right now, and it will arrive on July\n14, 2015, exactly on time and on target, because its path has been computed\nusing classical mechanics, and nothing\nmore.</p>', 'https://www.coursera.org/course/physics1', 'http://www.youtube.com/watch?v=AfdeGHfwBpM', '0000-00-00', 0, 'https://coursera-course-photos.s3.amazonaws.com/a6/9827ee8f978e6fe67ae6585d5fa814/CourseraLogo.jpg', 'Physics', 'Coursera'),
(689, 'Content Strategy for Professionals: Engaging Audiences for Your Organization', 'This professional Content Strategy MOOC is for people anywhere in an organization who have content development experience and now want to significantly improve their abilities to understand audiences and develop strategic words, pictures, graphics, and videos to convey their organization’s most important goals.', 'Why Content Strategy is essential for professionals in any organization – business,\nnon-profit, or government.\n<br>\n<br>Content Strategy is a conversation that provides thought-leadership. It\nstarts a “conversation” with users and stakeholders inside and outside\nan organization. Conversations are the natural way people think about\ncomplex issues. Conversations also enable people to develop “stories,”\nwhich lead to understanding and helpful mental pictures. Content Strategy\npractitioners are at all levels of the best enterprises – in all departments\nand sectors from the top leader to the newcomer in the ranks.\n<br>\n<br>In this complex information age, forward-thinking employees know that\nif they and their organizations are to thrive, they need to go beyond their\njob descriptions. They must master the most demanding communications frontier\n– creating engaging, strategic, honest stories and information that is\nvalued by their most important audiences. In turn that will make their\nenterprise stand out.\n<br>\n<br>Regardless of their department, area of work, or expertise, Content Strategy\npractitioners know how to use words, pictures, video, and social and mobile\nmedia to interact with their most important constituents with trustable,\nactionable information that the audience values and will use. The strategic\ncontent they produce enhances the audience’s lives and deepens their\nunderstanding and engagement with the organization.\n<br>\n<br>Content Strategy is similar to the best examples of journalism, but it\nis done by non-journalism organizations. Content Strategy is always honest,\ntrustable, and transparent. It tells all sides of every story it reports.\nOften it is also deeper and directed at topics and audiences that traditional\njournalism under-serves or does not reach at all. Content Strategy is not\nadvertising, marketing, or public relations. It is different because it\nnever pursues the persuasive goals that are appropriate in those disciplines.\n<br>', 'https://www.coursera.org/course/contentstrategy', '', '0000-00-00', 6, 'https://coursera-course-photos.s3.amazonaws.com/2d/d77f35ab4002efa08e6bc876f0450e/Content-Strategy-logo2.JPG', 'Information, Tech, and Design, Business & Management', 'Coursera'),
(690, 'Comic Books and Graphic Novels', 'Comic books have arrived! "Comic Books and Graphic Novels" presents a survey of the comic book canon and of the major graphic novels in circulation today. Its governing question is simple: by what terms can we discuss comic books as literary art? In pursuit of that question it develops a theory of literary reading and time itself.\n\nVisit us at www.facebook.com/UCBComics', 'The comic book pamphlet developed as an independent literary form in the\n1930s and early 1940s and has been a favorite of adolescent enthusiasts\nand cult devotees ever since. Recently, it has entered into a process of\ntransformation, moving from a species of pulp fiction on the margins of\nchildren’s literature to an autonomous genre, one Will Eisner labeled the\ngraphic novel. This transformation has been noted in such literary venues\nas the New York Times and the New Yorker, as well as in an increasing number\nof university classrooms and bookstore shelves.\n<br>\n<br>“Comic books and Graphic Novels” presents a survey of the history of American\ncomics and a review of major graphic novels circulating in the U. S. today.\nIt is focused on three main points. First, it argues that as comics develop\nin concert with, and participate in literary culture, they should be considered\nliterature. Second, it reasons that such a designation forces us to redefine\nour concept of literature itself. Finally, it explore this transformative\nliterary world by arguing that comics have much to teach us about ourselves.\n<br>', 'https://www.coursera.org/course/comics', '', '0000-00-00', 0, 'https://coursera-course-photos.s3.amazonaws.com/39/4aba5c35176fca1e5e07fb3259d2a6/Comics-and-Graphic-Novels.png', 'Humanities, Arts', 'Coursera'),
(691, 'Everything is the Same: Modeling Engineered Systems', 'Learn modeling and analysis techniques for electrical, mechanical, and chemical systems and discover how engineered systems that seem very different are actually very similar. ', 'Students\n in this class will learn modeling and analysis techniques applicable to\n electrical, mechanical, and chemical systems. This “systems” view, \nthat focuses on what is common to these different physical systems, has \nbeen responsible for much of the progress in the last several decades in\n aeronautics, robotics, and other engineering disciplines where there \nare many different technologies working together. <br><br>Starting\n with algebraic descriptions of individual components (such as \nresistors), the class develops tools capable of predicting large-scale \nbehavior of dynamic systems that evolve over time. Differential \nequations are key ingredients, so we will spend significant time \nlearning how to derive differential equations from component descriptions. \n One of the key ideas in this class is that electrical, mechanical, and \nchemical systems may seem very different from each other but often have \nvery similar behavior, allowing us to draw powerful analogies between \nthem. Case studies from several areas of engineering will be used to \nillustrate the modeling techniques, including examples from robotics, \npower networks, drug delivery, vehicle suspension, thermal stress, and \nflexible electronics. Students will have the option of doing hands on \nexperiments that demonstrate the utility of the techniques. <br><br>', 'https://www.coursera.org/course/modelsystems', '', '0000-00-00', 8, 'https://coursera-course-photos.s3.amazonaws.com/f9/728a46926baf6218aff2bfdbc1c9ef/TDMurpheyCourseraLogo.jpg', 'Engineering', 'Coursera'),
(692, 'Exploring Beethoven’s Piano Sonatas', 'A series of lectures on one of the greatest bodies of music ever composed, from the point of view of a performer. Each lecture will explore a different facet of the music; all will attempt to locate the source of the tremendous psychological power of Beethoven’s music.', '<p>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n</p><p></p><p>Our relationship to Beethoven is a deep and paradoxical one. For\nmany musicians, he represents a kind of holy grail: His music has an intensity,\nrigor, and profundity which keep us in its thrall, and it is perhaps unequalled\nin the interpretive, technical, and even spiritual challenges it poses to\nperformers. At the same time, Beethoven’s music is casually familiar to\nmillions of people who do not attend concerts or consider themselves musically\ninclined. Two hundred years after his death, he is everywhere in the culture,\nyet still represents its summit.</p>\n\n<p>This course takes an inside-out look at the 32 piano sonatas\nfrom the point of view of a performer. Each lecture will focus on one sonata\nand an aspect of Beethoven’s music exemplified by it. (These might include: the\nrelationship between Beethoven the pianist and Beethoven the composer; the\ncritical role improvisation plays in his highly structured music; his mixing of\nextremely refined music with rougher elements; and the often surprising ways in\nwhich the events of his life influenced his compositional process and the\ncharacter of the music he was writing.) The course will feature some analysis\nand historical background, but its perspective is that of a player, not a\nmusicologist. Its main aim is to explore and demystify the work of the\nperformer, even while embracing the eternal mystery of Beethoven’s music\nitself.</p>\n\n<p></p>', 'https://www.coursera.org/course/beethovensonatas', '', '0000-00-00', 5, 'https://coursera-course-photos.s3.amazonaws.com/21/0e5c188aab1fd78c75197d360c1a11/coursera-lvb.jpg', 'Humanities, Music, Film, and Audio', 'Coursera'),
(693, 'From the Repertoire: Western Music History through Performance', 'This course will focus on six important works from the Western classical-music repertoire that represent different eras and genres throughout history. We\'ll observe performances of this music recorded at Curtis, and our interactive discussions will explore each work’s historical context, musical significance, and compositional design.', '<p>A survey of music history\nbegins with those works of music that convey the artistic trends, innovations,\nand compositional techniques representative of their time. Rather than offer\na discussion of Western music focusing on a succession of composers, this course\nwill look at key works throughout history: from early music composed as much as a\nthousand years ago, to contemporary concert music written just in the past decade. Through interactive historical presentations and performances, students will learn how Western music has developed throughout the ages into the rich and diverse\nrepertoire that we have today.</p>\n\n<p>What makes this music truly special and important? Distinguished members of the Curtis faculty <span><span>will provide their unique insights. Performances by Curtis students, alumni, and faculty will enhance the learning experience by demonstrating the form and design of the material in a creative<b> </b>and vital way.</span> </span></p>\n\n<p>Two course presentations each\nweek will offer different perspectives on the same work: one that focuses on historical context and description for students with little or no prior\nexperience in music theory; and one that goes more in-depth into musical structure\nand formal design. Students are encouraged to watch both lectures to get the\nmost out of the course.</p>', 'https://www.coursera.org/course/musichistoryperforms', '', '0000-00-00', 7, 'https://coursera-course-photos.s3.amazonaws.com/b9/021a7dc3ce3dd5ecd45f0555b6b9d5/Guido-2.jpg', 'Humanities, Music, Film, and Audio', 'Coursera'),
(694, 'Fundamentals of Rehearsing Music Ensembles', 'Learn and practice the basic principles of running an effective music ensemble rehearsal. Techniques and strategies are applicable to a variety of ensembles, including bands, orchestras, choirs, and chamber groups.', 'Leading a musical ensemble as a conductor is an art and craft that requires skills beyond being an excellent musician. This course will teach an overview of these skills, including musical expression, rehearsal strategies, basic conducting techniques, and listening skills. Students will learn good teaching practices for real-life situations and participate in “virtual teaching lab” exercises that will create unique opportunities to share ideas and techniques--and along the way support their fellow musicians.<br>', 'https://www.coursera.org/course/music-ensembles', '', '2013-08-01', 8, 'https://coursera-course-photos.s3.amazonaws.com/dd/d2fe631f9e4afb472d830b411ea0f9/music-logo.jpg', 'Music, Film, and Audio', 'Coursera'),
(695, 'Metadata: Organizing and Discovering Information', 'Metadata is an unsung hero of the modern world, the plumbing that makes the information age possible. This course describes how Metadata is used as an information tool for the Web, for databases, and for the software and computing applications around us.', 'If you use nearly any digital technology, you make use of metadata. Use\nan ATM today? You interacted with metadata about your account. Searched\nfor songs in iTunes or Spotify? You used metadata about those songs. We\nuse and even create metadata constantly, but we rarely realize it. Metadata\n-- or data about data -- describes real and digital objects, so that those\nobjects may be organized now and found later.\n<br>\n<br>Metadata is a tool that enables the information age functions performed\nby humans as well as those performed by computers. Metadata is important\nto many fields, particularly Computer Science; but this course is not purely\na Computer Science course. This course approaches Metadata from the perspective\nof Information Science, which is a broad interdisciplinary field that studies\nhow people create and manage information.\n<br>', 'https://www.coursera.org/course/metadata', '', '2013-09-01', 8, 'https://coursera-course-photos.s3.amazonaws.com/ba/c8e42c5596ac84279430d16c9b2b73/meta1.jpg', 'Information, Tech, and Design', 'Coursera'),
(696, 'Epidemiology: The Basic Science of Public Health', 'This course explores public health—both locally and globally—through the lens of epidemiology.', 'Often called “the cornerstone” of public health, epidemiology is the study\nof the distribution and determinants of health conditions or events among\npopulations and the application of that study to control health problems.\nBy applying the concepts learned in this course to current public health\nproblems and issues, students will understand the practice of epidemiology\nas it relates to real life and makes for a better appreciation of public\nhealth programs and policies. This course explores public health\nissues like obesity and infectious diseases – both locally and globally\n–through the lens of epidemiology.\n<br>', 'https://www.coursera.org/course/epidemiology', '', '2013-10-01', 6, 'https://coursera-course-photos.s3.amazonaws.com/73/18595f8ac3737793707f73014d499e/epid-mooc.jpg', 'Health & Society', 'Coursera'),
(697, 'Desarrollo rápido de productos innovadores para mercados emergentes', 'Entender las metodologías para la innovación de productos para mercados emergentes. Las metodologías son: 1) megatendencias sociales, tecnológicas y del comportamiento del consumidor 2) JTBD y 3) Matriz Morfológica.', '<p>El objetivo del curso es aprender el proceso para el\nDesarrollo Rápido de Productos Innovadores para mercados emergentes a través de la\naplicación de 3 metodologías. Las\nmetodologías que abordaremos en el curso son: </p>\n\n<p> <b><span>1) Megatendencias sociales,\ntecnologías y del comportamiento del consumidor: <br></span></b>Las megatendencias sociales describen\ncomportamientos de la sociedad y hábitos de consumo. Las megatendencias\ntecnológicas identifican el uso potencial de tecnologías para desarrollar\nproductos. Finalmente, la megatendencias del comportamiento del consumidor\ndescriben características funcionales de productos que son deseables por el\ncliente. <b><br></b></p>\n\n<p><b>2) Jobs To Be\nDone (JTBD):<br></b><b> </b>Jobs To Be Done (JTBD) es un conjunto de técnicas que permiten describir las actividades\nde los consumidores, sus hábitos en el uso de productos y la evaluación de cada\nactividad en términos de su carácter crítico en una matriz de necesidades y\nsatisfactores. Esto permite identificar\naquellas actividades en donde el desarrollo productos innovadores tiene más\nprobabilidades de éxito. </p>\n\n\n\n<p><b><span>3) Matriz Morfológica: <br></span></b>La última metodología es la matriz morfológica que\npermite evaluar opciones de tecnologías para desarrollar los productos\nconceptualizados por las técnicas anteriores. </p>\n\n\n\n<span>En este curso\npresentaremos desarrollos de productos innovadores que están siendo\ncomercializados en mercados emergentes, así como, casos de estudio desarrollados\npor los profesores que ofrecen el curso sobre productos que <b>no</b> han sido exitosos.</span>', 'https://www.coursera.org/course/innovacion', 'http://www.youtube.com/watch?v=Ase9c_VE3JA', '2013-05-06', 6, 'https://coursera-course-photos.s3.amazonaws.com/93/dfab36d8c44be812b4f4f05fd627a1/coursera_008_logo.jpg', 'Economics & Finance, Business & Management', 'Coursera'),
(698, 'Democratic Development', 'Gain an understanding of the political, social, cultural, economic, institutional and international factors that foster and obstruct the development and consolidation of democracy. It is hoped that students in developing or prospective democracies will use the theories, ideas, and lessons in the class to help build or improve democracy in their own countries.', 'Democratic Development is intended as a broad, introductory survey\nof the political, social, cultural, economic, institutional, and international\nfactors that foster or obstruct the development, and consolidation, of\ndemocracy. Topics will be examined in historical and comparative perspective,\nand reference a variety of different national experiences. It is hoped\nthat students in developing or prospective democracies will use the theories,\nideas, and lessons in the class to help build or improve democracy in their\nown countries.\n<br>\n<br>This course is primarily intended for individuals in college or beyond,\nwith some academic background or preparation in political science or the\nsocial sciences. However, it seeks to be accessible and useful to a diverse\ninternational audience, including educators at the secondary and college\nlevels, government officials, development professionals, civil society\nleaders, journalists, bloggers, activists, and individuals involved in\na wide range of activities and professions related to the development and\ndeepening of democracy.\n<br>', 'https://www.coursera.org/course/democraticdev', '', '2013-04-03', 10, 'https://coursera-course-photos.s3.amazonaws.com/84/2fbd349d77a0a036ecb0d86e2dcc47/Icon_DualColor_Lg.png', 'Humanities, Social Sciences', 'Coursera'),
(699, 'Write Like Mozart: An Introduction to Classical Music Composition', 'This course introduces students to strategies for style writing of common practice European art music. The issues of harmonic progression, voice leading, and texture are addressed in addition to relevant compositional concepts like repetition, variation, and elaboration. The course aims to offer a creative space even within the restrictions of stylistic emulation.', '<div>This course aims to give students a set of approaches for composition in the style of Classical and Romantic era European art music. The principles and skills in this course engage one as much as possible in the thinking of composers from those eras, giving the student compositional freedoms that composers of that era enjoyed. The issues of harmonic progression, voice leading, and texture are addressed in addition to relevant compositional concepts such as common tones, leading tones, repetition, variation, and elaboration.</div><div><br></div><div>The course offers presentations, demonstrations, and exercises for self-</div><div>evaluation. Assessment involves a variety of short compositions in common textures found during the 18th and 19th centuries.</div><div><br></div><div>This course assumes that the student has had exposure to the basic principles of tonal harmony, musicianship, and/or some similar music theory introductory course. Students should be fairly comfortable with roman numeral analysis or, at least, chord symbols and common harmonic progressions. This course is not aimed exclusively at musicians with a classical music background. Rock, pop, and jazz musicians might find this course interesting as a stylistic contrast to the genres they usually work in.</div>', 'https://www.coursera.org/course/classicalcomp', '', '2014-01-01', 6, 'https://coursera-course-photos.s3.amazonaws.com/31/42cf1995c06247393e947063133915/coursera_icon-01.png', 'Music, Film, and Audio', 'Coursera'),
(700, 'Unpredictable? Randomness, Chance and Free Will', 'This cross-disciplinary course deals with the undetermined, the unpredictable- or what appears to be such. Learn about the usefulness of randomness in communication and computation, the intrinsic randomness of quantum phenomena, the unpredictability of the weather, the role of chance in evolution, and the implications of the neural activity of the brain on our "free will".', 'This cross-disciplinary course deals with the undetermined, the unpredictable -- or what appears to be such. Among the questions that will be addressed are:<div><b><br></b></div><ul><li>How has randomness, often seen as a nuisance, become a useful resource for communication and computing?</li><li>How can physicists make the astounding claim that there is real randomness in nature?</li><li>What is the “chance” invoked by biologists in the context of evolution?</li><li>Can our apparently free acts be predicted by monitoring the activity of the brain?</li></ul><div><br></div>', 'https://www.coursera.org/course/randomness', '', '2014-01-01', 8, 'https://coursera-course-photos.s3.amazonaws.com/cb/d405f80ba7ca88bd720c8053a65c1d/RANDOMNESS.jpg', 'Statistics and Data Analysis, Physics', 'Coursera'),
(701, 'Matemáticas y movimiento', 'El curso propone un acercamiento a la Matemática Preuniversitaria donde el contexto del movimiento en línea recta dará significado al conocimiento y la tecnología será el medio para interactuar con el mismo.', '<p>En este curso\nvamos a considerar el contexto real del movimiento en línea recta para dar\ncabida a ideas y nociones importantes del Cálculo. </p>\n\n<p>El curso se\nrestringe al conocimiento de los modelos matemáticos lineal, cuadrático y\ncúbico; no obstante, con estos casos quedará clara de un modo general la visión\ndel Cálculo como la Matemática que estudia el cambio y la variación.</p>\n\n<p>A través del\nanálisis de diferentes tipos de movimiento realizados por un “personaje” sobre\nuna recta horizontal, la relación entre las gráficas de velocidad y de posición\ndel movimiento con respecto al tiempo, aparecerán ante nuestra vista como la\nrepresentación matemática que invita a interpretar lo que está sucediendo con\nel movimiento en cuestión.</p>\n\n<p>Algunos\nconocimientos algebraicos y geométricos que corresponden con ecuaciones y\nfunciones lineales, cuadráticas y cúbicas van a ser retomados decididamente durante\nel curso, y esto para dar respuesta a diferentes preguntas que surgen del\nmovimiento rectilíneo en cuestión.</p>\n\n<p>Será de esta\nmodo que se podrá interactuar combinando las diferentes representaciones\nmatemáticas (numérica, algebraica y gráfica) en el afán por entender la\nsituación real considerada.</p>\n\n<p>En este curso\nse hará un uso pleno de tecnologías digitales para la graficación y de software\nespecializado en conocimiento matemático del cual se puede hacer uso de manera\nlibre en la actualidad. Las prácticas\nque buscan consolidar el aprendizaje integran el uso de estos recursos también, brindando a la\nvez la oportunidad de ver en la tecnología digital un aliado en la interacción\ncon la Matemática y nuestro pensamiento.</p>\n\nEl curso puede\nconsiderarse como una preparación al Cálculo en el nivel universitario; no\nobstante, busca ofrecer a cualquier persona un acercamiento a la Matemática\ndiferente, donde números, letras, fórmulas y gráficas se entrelazan en un\nrazonamiento coherente. Es una oportunidad para todo aquel que busca hacer del\nrazonamiento matemático una forma de pensar y actuar.', 'https://www.coursera.org/course/precalculo', 'http://www.youtube.com/watch?v=QmR2dt0u2Sk', '2013-08-12', 14, 'https://coursera-course-photos.s3.amazonaws.com/53/b6639a183c758e6b619d4119ff7bad/coursera_006_logo.jpg', 'Mathematics', 'Coursera'),
(702, 'Egiptología (Egyptology)', 'Este curso introduce a los estudiantes de grado de habla hispana en los aspectos más relevantes de la lengua, la historia y la cultura del Egipto de los faraones.', '<p>Este curso está dirigido a estudiantes de grado y a personas interesadas\n en las civilizaciones antiguas que deseen adquirir conocimientos fundamentales\n acerca de la lengua, la historia y la cultura del Egipto faraónico e introducirse\n en los métodos y las herramientas de la disciplina egiptológica para, a\n continuación, seguir profundizando autónomamente o realizar ulteriores\n estudios académicos de grado o de máster en el ámbito de la disciplina.</p>\n<p>Los objetivos del curso son los siguientes:</p>\n<p></p>\n<ul>\n <li>Explicar los aspectos esenciales y diferenciales de las principales etapas\n de la historia y la cultura del antiguo Egipto, prestando especial atención\n a las fuentes textuales y arqueológicas.</li>\n <li>Conocer la lengua y las escrituras egipcias, su desciframiento y las principales\n creaciones literarias que el antiguo Egipto nos ha legado.</li>\n</ul>', 'https://www.coursera.org/course/egypt', 'http://www.youtube.com/watch?v=APL1bTMJb2U', '2013-10-14', 8, 'https://coursera-course-photos.s3.amazonaws.com/8c/c990bee03d4b64dfe2e5b101a126e9/Egiptologia.jpg', 'Humanities', 'Coursera'),
(703, 'Pre-Calculus', 'Se trata de un curso pensado para facilitar la entrada del estudiante en los cursos de cálculo de primer semestre de prácticamente cualquier grado universitario, con especial énfasis en Ciencias e Ingeniería. ', '<p>Este curso\npermite a los estudiantes adquirir una base sólida que permita abordar con\ngarantías el primer semestre de un grado universitario. El contenido sienta las\nbases para trabajar con números reales, funciones y números complejos, incluyendo\nel estudio de las familias más importantes de funciones: lineales, cuadráticas,\npolinomiales, exponenciales, logarítmicas y trigonométricas. También incluye\nuna introducción al cálculo diferencial e integral (reglas de derivación y\nfunciones derivadas), incluyendo también la aplicación simple del cálculo\nintegral para resolver problemas sencillos sobre áreas planas y volúmenes. </p>\n\n<p>El curso\nestá orientado a estudiantes pre-universitarios o personas con conocimientos\nbásicos de cálculo que quieren estar preparados para los cursos de nivel\nuniversitario.</p>\n\n<p>Los\nobjetivos del curso son:</p>\n\n<ul><li>Adquirir competencias básicas\n de cálculo.</li><li>Resolver problemas matemáticos\n que aplican los conocimientos adquiridos a los problemas que puedan surgir\n en las ciencias y la ingeniería.</li></ul>\n\n<p>El curso será\nimpartido en castellano.</p>\n\n<div></div><br>', 'https://www.coursera.org/course/precalc', 'http://www.youtube.com/watch?v=a2EIZuboBKU', '2013-09-23', 8, 'https://coursera-course-photos.s3.amazonaws.com/e5/3e7d49769674e52dc089d51f3b570f/precalculo.png', 'Mathematics', 'Coursera'),
(704, 'Histología básica: los cuatro tejidos fundamentales ', 'Este curso está diseñado para que los estudiantes adquieran los conocimientos necesarios para distinguir los cuatro tipos de tejidos celulares que conforman el organismo. Está dirigido a estudiantes de Medicina, Biología, Veterinaria, Fisioterapia y Enfermería', '<p>A lo largo del curso, los estudiantes aprenderán a diferenciar los\ntejidos epiteliales, los tejidos conectivos, los tejidos musculares y el tejido\nnervioso, en base a las características morfológicas funcionales de las células\nque los conforman. El curso se desarrollará haciendo incidencia en la\ninterpretación de imágenes histológicas tomadas mediante microscopía óptica,\nmicroscopía de fluorescencia y microscopía electrónica de transmisión y de\nbarrido. Se utilizarán imágenes de preparaciones histológicas procesadas con\ndistintas técnicas de marcaje incluyendo técnicas topográficas, técnicas de\nmarcado específico, técnicas histoquímicas y técnicas inmunohistoquímicas.</p>\n\n<p>Con el desarrollo del curso, los\nestudiantes:</p>\n\n<ol><li>Aprenderán a reconocer los\ntejidos básicos y sus variantes</li><li>Adquirirán destreza en la\ninterpretación de imágenes histológicas</li><li>Ampliarán sus conocimientos\ntécnicos sobre métodos de marcaje histológico</li></ol>', 'https://www.coursera.org/course/histologia', '', '0000-00-00', 0, 'https://coursera-course-photos.s3.amazonaws.com/25/d2db1b2ac7b647ec11b6751bcd035d/histologia_logo.png', 'Health & Society, Biology & Life Sciences', 'Coursera'),
(705, 'Einführung in Computer Vision', 'Dieser Kurs vermittelt einen Überblick über die Grundlagen des Maschinellen Sehens an Hand der Extraktion von 3D-Information aus dem Stereokamerabild einer Szene.', '<div>\n <p><span>Räumliches Sehen stellt für die meisten Menschen eine Selbstverständlichkeit da. Maschinen mit einem gleichwertigen Sehvermögen auszustatten, ist hingegen eine sehr komplizierte Angelegenheit. Seit den 1960-er Jahren hat sich dieser als <i>Computer Vision</i> bezeichnete Forschungsbereich kontinuierlich entwickelt und zahlreiche Forschungsergebnisse hervorgebracht. Viele Fragen haben jedoch noch nicht hinreichend beantwortet werden können und sind bis heute aktuell.</span>\n\n </p>\n</div>\n<p>Dieser Kurs befasst sich mit einigen grundlegenden Algorithmen der Computer\n Vision, führt das hierzu benötigte Fachvokabular ein und frischt die benötigten\n mathematischen Grundlagen auf, wann immer sie benötigt werden. Beginnend\n mit grundlegenden Methoden der Bildverarbeitung wie z.B. der Kantendetektion,\n werden diese im Lauf des Kurses für umfassendere Aufgaben wie Merkmalsextraktion\n und Korrespondenzschätzung angewendet.</p>\n<p>Diese Korrespondenzen können mit Wissen über die Darstellung von Bildern\n am Computer und der Beschreibung von Objektbewegungen im Raum dann verwendet\n werden, um die Epipolargeometrie eines Sterokamerasystems und somit die\n 2D-3D-Beziehung zwischen Bildern und der Szene zu beschreiben. Hierbei\n wird der Unterschied zwischen unkalibriertem und kalibriertem Kamerasystem\n erläutert, sowie auf das Konzept der Homographie eingegangen. Schließlich\n ermöglicht das Zusammenspiel all dieser Aspekte die 3D-Rekonstruktion einer\n Szene aus einem Stereokamerabildpaar.</p>', 'https://www.coursera.org/course/compvision', '', '0000-00-00', 0, 'https://coursera-course-photos.s3.amazonaws.com/37/dc9609e73affd2ed41611617dfe67d/Course_Logo_Computer_Vision.jpg', 'Computer Science: Artificial Intelligence', 'Coursera'),
(706, 'The Future of Humankind', 'This course will take students on an extraordinary journey – the beginning of a massive transformation of humankind. Nothing remotely like this had ever happened in the billions of years of evolution on Earth. It was enabled by technology, but many other factors were part of its driving force.', '<div>\n\n<p>Back in 1750, there were no complex machines\nin use, except for church clocks. There was no power for machines other than\nprimitive windmills, water wheels and the pulleys with weights that drove\nchurch clocks.</p>\n\n<p>We have changed amazingly\nsince 1750, but the truly dramatic changes are yet to come. If we get things\nright, we have the potential to create a Neo-Renaissance, fundamentally\ndifferent from the Renaissance centered around Florence in the 16th\nand 17th centuries. Later\nthis century there will be ubiquitous computer power, fully automated\nfactories, and intelligent robots doing most of the jobs that people do today.\nIf implemented in an enlightened way, people will become used to having a large\namount of leisure time, and the arts and humanities will flourish. </p></div>', 'https://www.coursera.org/course/humankindfuture', '', '2013-09-01', 0, 'https://coursera-course-photos.s3.amazonaws.com/06/15d53081308480785e2369a261cc63/MC900071032.jpg', 'Humanities', 'Coursera'),
(707, 'UT.2.01x: Ideas of the 20th Century', 'Learn how philosophy, art, literature, and history shaped the last century and the world today.', 'The last century ushered in significant progress. Philosophers, scientists, artists, and poets overthrew our understanding of the physical world, of human behavior, of thought and its limits, and of art, creativity, and beauty. Scientific progress improved the way we lived across the world.\nYet the last century also brought increased levels of war, tyranny, and genocide. Man pushed boundaries of good and evil, right and wrong, justice and injustice – and people lost faith in values. Now, thinkers and leaders are reconstructing theories of value and creating institutions to embody them.\nJoin this thought-provoking, broad-sweeping course as it draws intriguing connections between philosophy, art, literature, and history, illuminating our world and our place in it.\n', 'https://www.edx.org/courses/UTAustinX/UT.2.01x/2013_Sept/about', 'http://www.youtube.com/embed/0qrlGDLYv84', '0000-00-00', 0, 'http://www.edx.org/static/content-utaustin-002x/images/course_image.jpg', '', 'Edx'),
(708, 'SPU27x: Science & Cooking: From Haute Cuisine to Soft Matter Science', 'SPU27x brings together top chefs and Harvard researchers to explore how everyday cooking and haute cuisine can illuminate basic principles in physics and engineering, and vice versa.', 'Science & Cooking brings together top chefs and preeminent Harvard researchers to explore how everyday cooking and haute cuisine can illuminate basic principles in physics and engineering, and vice versa.\n\n\nDuring each week of the course, you will watch as chefs reveal the secrets behind some of their most famous culinary creations — often right in their own restaurants. Inspired by such cooking mastery, the Harvard team will then explain, in simple and sophisticated ways, the science behind the recipe.\n\n\nTopics will include: soft matter materials, such as emulsions, illustrated by aioli; elasticity, exemplified by the done-ness of a steak; and diffusion, revealed by the phenomenon of spherification, the culinary technique pioneered by Ferran Adrià.\n\n\nTo help you make the link between cooking and science, an “equation of the week” will capture the core scientific concept being explored. You will also have the opportunity to be an experimental scientist in your very own laboratory — your kitchen. By following along with the engaging recipe of the week, taking measurements, and making observations, you will learn to think both like a cook and a scientist. The lab is also one of the most unique components of this course — after all, in what other science course do you get to eat your lab?\n\n', 'https://www.edx.org/courses/HarvardX/SPU27x/2013_Oct/about', '', '2013-10-01', 1, 'http://www.edx.org/static/content-harvard-spu27x/images/course_image.jpg', '', 'Edx'),
(709, 'UT.1.01x: Energy 101', 'By being fluent in energy you will be able to think critically about energy issues.', 'Energy Technology & Policy\nThis multidisciplinary course will give students an overview of energy technologies, fuels, environmental impacts and public policies. Topics will be interdisciplinary and will include an introduction to quantitative concepts in energy, including the differences among fuels and energy technologies, energy policy levers, and the societal aspects of energy, such as culture, economics, war, and international affairs. This course will cover brief snippets of energy history, use real-world examples, and look forward into the future. The course will have interactive learning modules and lecture-oriented around current events related to energy.\n', 'https://www.edx.org/courses/UTAustinX/UT.1.01x/2013_Sept/about', '', '0000-00-00', 0, 'http://www.edx.org/static/content-utaustin-001x/images/course_image.jpg', '', 'Edx'),
(710, 'UT.3.01x: Age of Globalization', 'Identify the historical and cultural systems driving globalization and changing societies around the world.', 'Globalization is a fascinating spectacle that can be understood as global systems of competition and connectivity. These man-made systems provide transport, communication, governance, and entertainment on a global scale. International crime networks are outgrowths of the same systems. Topics include national identity, language diversity, the global labor market, popular culture, sports and climate change.\nHowever, an increase in integration has not brought increased equality. Globalization creates winners and losers among countries and global corporations, making competition the beating heart of the globalization process.\nThe globalization process exemplifies connectivity. Globalization is unimaginable without the unprecedented electronic networks that project dominant cultural products into every society on earth.\nLearn how to identify and analyze global systems and better understand how the world works.\n', 'https://www.edx.org/courses/UTAustinX/UT.3.01x/2013_Sept/about', 'http://www.youtube.com/embed/lfFaHUFEQB4', '0000-00-00', 0, 'http://www.edx.org/static/content-utaustin-003x/images/course_image.jpg', '', 'Edx'),
(711, 'UT.4.01x: Take Your Medicine - The Impact of Drug Development', 'Discover the impact of drug development and become an informed consumer or scientist.', 'Everyone gets sick. Thanks to medical innovations in the past 50 years, many diseases and conditions have been either mitigated or even cured through medicine. How does a research innovation turn into a therapeutic medicine that health care providers prescribe to patients? This course explores the process, challenges and issues in developing pharmaceutical products. Drug development is a dynamic field where innovation and entrepreneurship are necessary to keep up with health care expectations, strict regulations and tightening development budgets. An overview of drug development, approval, and consumer issues will be presented and discussed in the context of research practices, science, marketing, public welfare and business. Participants from all backgrounds and interest, including scientists, healthcare professionals, entrepreneurs and the general public, are encouraged to participate.', 'https://www.edx.org/courses/UTAustinX/UT.4.01x/2013_Sept/about', '', '0000-00-00', 0, 'http://www.edx.org/static/content-utaustin-004x/images/course_image.jpg', '', 'Edx'),
(712, 'Stat2.2x: Introduction to Statistics: Probability', 'An introduction to probability, with the aim of developing probabilistic intuition as well as techniques needed to analyze simple random samples.', 'Introduction to Statistics: Probability\nStatistics 2 at Berkeley is an introductory class taken by about 1000 students each year. Stat2.2x is the second of three five-week courses that make up Stat2x, the online equivalent of Berkeley\'s Stat 2.\nThe focus of Stat2.2x is on probability theory: exactly what is a random sample, and how does randomness work? If you buy 10 lottery tickets instead of 1, does your chance of winning go up by a factor of 10? What is the law of averages? How can polls make accurate predictions based on data from small fractions of the population? What should you expect to happen "just by chance"? These are some of the questions we will address in the course.\nWe will start with exact calculations of chances when the experiments are small enough that exact calculations are feasible and interesting. Then we will step back from all the details and try to identify features of large random samples that will help us approximate probabilities that are hard to compute exactly. We will study sums and averages of large random samples, discuss the factors that affect their accuracy, and use the normal approximation for their probability distributions.\nBe warned: by the end of Stat2.2x you will not want to gamble. Ever. (Unless you\'re really good at counting cards, in which case you could try blackjack, but perhaps after taking all these edX courses you\'ll find other ways of earning money.)\nAs Stat2.2x is part of a series, the basic prerequisites are the same as those for Stat2.1x: high school arithmetic and good comprehension of English. In addition, you are expected to know the material of Stat2.1x, with particular emphasis on histograms, averages, SDs, and the normal curve.\nThe fundamental approach of the series was provided in the description of Stat2.1x and appears here again: There will be no mindless memorization of formulas and methods. Throughout the course, the emphasis will be on understanding the reasoning behind the calculations, the assumptions under which they are valid, and the correct interpretation of results.\n', 'https://www.edx.org/courses/BerkeleyX/Stat2.2x/2013_April/about', '', '0000-00-00', 0, 'http://www.edx.org/c4x/BerkeleyX/Stat2.2x/asset/images_course_image.jpg', '', 'Edx'),
(713, '7.00x: Introduction to Biology - The Secret of Life', '7.00x lets you explore the secret of life by guiding you through the basics of biochemistry, genetics, molecular biology, recombinant DNA, genomics, and rational medicine.', '7.00x is an introductory level biology course hosted by professor Eric Lander, who was one of the leaders of the Human Genome Project. Although this course has been designed exclusively for edX, the course content reflects the topics taught in the MIT introductory biology courses and many biology courses across the world. As a student, you will first focus on the structure and function of macromolecules such as DNA, RNA and proteins. You will discover how changes in the structure of some of these macromolecules alters their functions and what the implications of such changes have on human health. As you continue in the course, you will apply an understanding of heredity and information flow within cells to human health and disease and will learn about molecular biological techniques and their potential to impact our changing world. After you complete this course, you will have a foundation in biology that will allow you to understand the remarkable medical revolution going on today.\nStudents will complete this course in 12 weeks. Each week features a series of lecture sequences that \n are supported by interactive video tutorials and interspersed exercises or problems. Additionally, students \n will work on a homework assignment or exam each week. The course will conclude with a comprehensive final exam.\n\n Additionally, for teachers of science, we have forged a collaboration with the National Science Teachers \n Association (NSTA) to facilitate understanding of challenging content and help with practical classroom \n applications of the courseware. There will be four NSTA web seminars and moderated community forums for \n discussion related to 7.00x Secret of Life subject matter and pedagogy. Visit \n NSTA/MITx for web seminar details.\n \n7.00x – The Secret of Life will let you explore the mysteries of biochemistry, genetics, molecular biology, \n recombinant DNA technology and genomics, and rational medicine. We are excited to take this journey with you!\n', 'https://www.edx.org/courses/MITx/7.00x/2013_Spring/about', 'http://www.youtube.com/embed/dmx-50613P8', '0000-00-00', 0, 'http://www.edx.org/static/content-mit-7012x~2013_Spring/images/course_image.jpg', '', 'Edx'),
(714, 'CS191x: Quantum Mechanics and Quantum Computation', ' A simple conceptual introduction to quantum mechanics and quantum computation.', 'Quantum Mechanics and Quantum Computation\n Quantum computation is a remarkable subject based on one of the great computational discoveries that computers based on quantum mechanics are exponentially powerful. This course aims to make this cutting-edge material broadly accessible to undergraduate students, including computer science majors who do not have any prior exposure to quantum mechanics. The course starts with a simple introduction to the fundamental principles of quantum mechanics using the concepts of qubits (or quantum bits) and quantum gates. This treatment emphasizes the paradoxical nature of the subject, including entanglement, non-local correlations, the no-cloning theorem and quantum teleportation. The course covers the fundamentals of quantum algorithms, including the quantum fourier transform, period finding, Shor\'s quantum algorithm for factoring integers, as well as the prospects for quantum algorithms for NP-complete problems. \n', 'https://www.edx.org/courses/BerkeleyX/CS191x/2013_Spring/about', 'http://www.youtube.com/embed/zlcfJgNDIAo?autoplay=1&rel=0', '0000-00-00', 0, 'http://www.edx.org/c4x/BerkeleyX/CS191x/asset/images_course_image.jpg', '', 'Edx'),
(715, '8.02x: Electricity and Magnetism', '8.02x (Electricity and Magnetism) presents the basic concepts of Electromagnetism, and how this touches upon a vast variety of interesting real-world topics. ', '\n8.02 is the second semester of the MIT introductory physics\nsequence. Passing the online version of this course will guarantee you an MITx certificate of mastery.\nThe course is on electricity and magnetism which are at the\nheart of Maxwell\'s equations. We will study\n\nelectric fields, magnetic fields, electromagnetic forces, conductors\nand dielectrics, electromagnetic waves, and the nature of light. This\nonline version follows the MIT on-campus class as it was given by the\nrenowned Professor Walter Lewin in the spring of 2002, and includes\nhis video lectures and problem solving sessions. Professor Lewin, proclaimed "a Web Star" by The\n New York Times, has\nsupplemented his lectures specifically for 8.02x by including\ninteractive questions to help students check their understanding\nduring the lectures themselves. Also, the course uses prize-winning\nanimations and interactive simulations developed under the leadership\nof Professor John Belcher for MIT\'s Technology Enabled Active Learning\n(TEAL) classroom.\n\n\nIn addition to the basic concepts of Electromagnetism, a vast variety of interesting topics are covered in this course including: Lightning, Electric Shock Treatment, Electrocardiograms, Metal Detectors, Musical Instruments, Magnetic Levitation, Bullet Trains, Electric Motors, Radios, TV, Car Coils, Superconductivity, Aurora Borealis, Rainbows, Radio Telescopes, Interferometers, Particle Accelerators such as the Large Hadron Collider, Mass Spectrometers, Red Sunsets, Blue Skies, Haloes around Sun and Moon, Color Perception, Doppler Effect, Big-Bang Cosmology.\n\n\nYou will complete automatically graded weekly homework problems\nand a series of exams using multiple choice, numerical and symbolic\nquestions to test your understanding and to help you master the\nmaterial. Lectures are interspersed with questions that must be\nanswered before advancing to the next lecture segment. There is a\nmoderated forum for student-to-student threaded discussions. While\nhomework deadlines will be strictly enforced, the lowest homework\ngrade will be dropped. Your grade will be based on interactive\nquestions during the lectures (5%), homework problems and simulations (20%), three\nmidterm exams (15% each), and the final exam (30%). Depending\non what percentage of all the points you get, your grade will be\nas follows: A (more than 85%), B (70-85%), C (60-70%). At least 60%\nof the points must be obtained to qualify for a certificate of mastery.\n\n', 'https://www.edx.org/courses/MITx/8.02x/2013_Spring/about', 'http://www.youtube.com/embed/JYpHWK6WaW4', '0000-00-00', 0, 'http://www.edx.org/static/content-mit-802x~2013_Spring/images/course_image.jpg', '', 'Edx'),
(716, 'PH278x: Human Health and Global Environmental Change', 'PH278x explores global environmental changes, examining their causes as well as their health consequences, and engages students in thinking about their solutions', 'One of the greatest challenges of our time is to address global environmental changes, such as climate change and biodiversity loss, that may harm the health of billions of people worldwide. This class will examine these changes, their causes, as well as their health consequences, and engage students in thinking about their solutions. Those who earn a passing grade will get a certificate of mastery from HarvardX.', 'https://www.edx.org/courses/HarvardX/PH278x/2013_Spring/about', '', '0000-00-00', 0, 'http://www.edx.org/c4x/HarvardX/PH278x/asset/images_course_image.jpg', '', 'Edx'),
(717, '2.01x: Elements of Structures', 'A first course on mathematical modeling of structures and the mechanical behavior of deformable structural elements.', '2.01x is a first course on the mechanical behavior of deformable structural elements. It introduces principles of structural analysis in applications to essential load-bearing elements, such as bars in axial loading, axisymmetric shafts in torsion, and symmetric beams in bending. The course covers fundamental concepts of continuum mechanics, including internal forces, displacement fields, stresses, and strains. The students will learn to predict linear elastic structural behavior, and prevent failure, by relying on the notions of equilibrium, geometric compatibility, and constitutive material response.', 'https://www.edx.org/courses/MITx/2.01x/2013_Spring/about', 'http://www.youtube.com/embed/BHl-xk84Cv4?showinfo=0', '0000-00-00', 0, 'http://www.edx.org/static/content-mit-201x~2013_Spring/images/course_image.jpg', '', 'Edx'),
(718, 'CS184.1x: Foundations of Computer Graphics', 'CS184.1x teaches the Foundations of Computer Graphics. Students will be able to make images of 3D scenes in both real-time, and with offline raytracing. ', 'CS184.1x teaches the Foundations of Computer Graphics.\n Students will make images of \n 3D scenes in real-time, and with offline raytracing.\n This course runs for 6 weeks and consists of four segments. Each segment includes an\n individual programming assignment: \nOverview and Basic Math (Homework 0: 10% of grade)\nTransformations (Homework 1: 20% of grade)\nOpenGL and Lighting (Homework 2: 35% of grade)\nRaytracing (Homework 3: 35% of grade)\nThis term, students who earn a total score of 50% or greater will have passed the course and may obtain a free honor code certificate from BerkeleyX. \n', 'https://www.edx.org/courses/BerkeleyX/CS184.1x/2013_Spring/about', 'http://www.youtube.com/embed/6F0pR-ANmXY?autoplay=1&rel=0', '0000-00-00', 0, 'http://www.edx.org/c4x/BerkeleyX/CS184.1x/asset/images_course_image.jpg', '', 'Edx'),
(719, 'CS169.1x: Software as a Service', 'CS169.1x teaches the fundamentals for engineering long-lived software using Agile techniques to develop Software as a Service (SaaS) using Ruby on Rails.', 'CS169.1x teaches the fundamentals for engineering long-lasting software using highly-productive Agile techniques to develop Software as a Service (SaaS) using Ruby on Rails. Students will understand the new challenges and opportunities of SaaS versus shrink-wrapped software. They will understand and apply fundamental programming techniques to the design, development, testing, and public cloud deployment of a simple SaaS application. Students will use best-of-breed tools that support modern development techniques including behavior-driven design, user stories, test-driven development, velocity, and pair programming. Students will learn how modern programming language features like metaprogramming and reflection can improve productivity and code maintainability.\nStudents will work individually on weekly coding projects. Those who successfully complete each assignment and earn a passing grade will get an honor code certificate from BerkeleyX.\n', 'https://www.edx.org/courses/BerkeleyX/CS169.1x/2013_March/about', 'http://www.youtube.com/embed/V36LpHqtcDY?autoplay=1&rel=0', '0000-00-00', 0, 'http://www.edx.org/c4x/BerkeleyX/CS169.1x/asset/images_course_image.jpg', '', 'Edx'),
(720, '6.002x: Circuits and Electronics', '6.002x teaches the fundamentals of circuit and electronic analysis. ', 'The course introduces engineering in the context of the lumped circuit abstraction. Topics covered include: resistive elements and networks; independent and dependent sources; switches and MOS transistors; digital abstraction; amplifiers; energy storage elements; dynamics of first- and second-order networks; design in the time and frequency domains; and analog and digital circuits and applications. Design and lab exercises are also significant components of the course. \nThe course is organized by weeks. To keep pace with the class, you are expected to complete all the work by the due dates indicated. Homeworks and labs must be completed by the Sunday of the week following the one in which they are posted. Weekly coursework includes interactive video sequences, readings from the textbook, homework, online laboratories, and optional tutorials. The course will also have a midterm exam and a final exam. Those who successfully earn enough points will receive an honor code certificate from MITx.\n', 'https://www.edx.org/courses/MITx/6.002x/2013_Spring/about', 'http://www.youtube.com/embed/jeo1R9LskHU?autoplay=1&rel=0', '0000-00-00', 0, 'http://www.edx.org/c4x/MITx/6.002x/asset/images_course_image.jpg', '', 'Edx'),
(721, 'CB22x: The Ancient Greek Hero', 'The Ancient Greek Hero is a survey of ancient Greek literature focusing on classical concepts of the hero and how they can inform our understanding of the human condition.', 'NOTE ABOUT OUR START DATE: Although the course was launched on March 13th, it\'s not too late to start participating! We offer everyone a flexible schedule and multiple paths for participation. You can work through the course videos and readings at your own pace to complete the associated exercises by the end date. Or, you may choose to "audit" the course by exploring just the particular videos and readings that seem most suited to your interests. You are free to do as much or as little as you would like. Either way, new participants will be joining the course through late June, so you would actually be quite early if you start now!\nWhat is it to be human, and how can ancient concepts of the heroic and anti-heroic inform our understanding of the human condition? That question is at the core of The Ancient Greek Hero, which introduces (or reintroduces) students to the great texts of classical Greek culture by focusing on concepts of the Hero in an engaging, highly comparative way.\nThe classical Greeks\' concepts of Heroes and the "heroic" were very different from the way we understand the term today. In this course, students analyze Greek heroes and anti-heroes in their own historical contexts, in order to gain an understanding of these concepts as they were originally understood while also learning how they can inform our understanding of the human condition in general.\nIn Greek tradition, a hero was a human, male or female, of the remote past, who was endowed with superhuman abilities by virtue of being descended from an immortal god. Rather than being paragons of virtue, as heroes are viewed in many modern cultures, ancient Greek heroes had all of the qualities and faults of their fellow humans, but on a much larger scale. Further, despite their mortality, heroes, like the gods, were objects of cult worship – a dimension which is also explored in depth in the course.\nThe original sources studied in this course include the Homeric Iliad and Odyssey; tragedies of Aeschylus, Sophocles, and Euripides; songs of Sappho and Pindar; dialogues of Plato; historical texts of Herodotus; and more, including the intriguing but rarely studied dialogue "On Heroes" by Philostratus. All works are presented in English translation, with attention to the subtleties of the original Greek. These original sources are frequently supplemented both by ancient art and by modern comparanda, including opera and cinema (from Jacques Offenbach\'s opera Tales of Hoffman to Ridley Scott\'s science fiction classic Blade Runner).\nThe true hero of the course is the logos ("word") of reasoned expression, as activated by Socratic dialogue. The logos of dialogue requires both careful thought and close (or "slow") reading, which is a core skill taught in this class. The course begins by considering the heroes of Homer\'s epics and ends with Plato\'s memories of the final days of Socrates -- memories which can only be fully understood by a reader who has gained a thorough comprehension of the ancient Greek hero in all his or her various manifestations.\nUsing modern technology and engaging texts, The Ancient Greek Hero provides students who have no previous background in classical Greek civilization with a fully engaging and immediately accessible introduction to the most beautiful moments in this ancient literature, its myths, and its ritual practices.\n', 'https://www.edx.org/courses/HarvardX/CB22x/2013_Spring/about', '', '0000-00-00', 0, 'http://www.edx.org/c4x/HarvardX/CB22x/asset/images_course_image.jpg', '', 'Edx'),
(722, 'ER22x: Justice', 'JusticeX is an introduction to moral and political philosophy, including discussion of contemporary dilemmas and controversies.', 'Justice is a critical analysis of classical and contemporary theories of justice, including discussion of present-day applications. Topics include affirmative action, income distribution, same-sex marriage, the role of markets, debates about rights (human rights and property rights), arguments for and against equality, dilemmas of loyalty in public and private life. The course invites students to subject their own views on these controversies to critical examination.\nThe principal readings for the course are texts by Aristotle, John Locke, Immanuel Kant, John Stuart Mill, and John Rawls. Other assigned readings include writings by contemporary philosophers, court cases, and articles about political controversies that raise philosophical questions.\n', 'https://www.edx.org/courses/HarvardX/ER22x/2013_Spring/about', 'http://www.youtube.com/embed/fajlZMdPkKE#!', '0000-00-00', 0, 'http://www.edx.org/c4x/HarvardX/ER22x/asset/images_course_image.jpg', '', 'Edx'),
(723, 'Stat2.1x: Introduction to Statistics: Descriptive Statistics', ' An introduction to descriptive statistics, emphasizing critical thinking and clear communication.', 'Introduction to Statistics\nWe are surrounded by information, much of it numerical, and it is important to know how to make sense of it. Stat2x is an introduction to the fundamental concepts and methods of statistics, the science of drawing conclusions from data.\nThe course is the online equivalent of Statistics 2, a 15-week introductory course taken in Berkeley by about 1,000 students each year. Stat2x is divided into three 5-week components. Stat2.1x is the first of the three.\nThe focus of Stat2.1x is on descriptive statistics. The goal of descriptive statistics is to summarize and present numerical information in a manner that is illuminating and useful. The course will cover graphical as well as numerical summaries of data, starting with a single variable and progressing to the relation between two variables. Methods will be illustrated with data from a variety of areas in the sciences and humanities.\nThere will be no mindless memorization of formulas and methods. Throughout Stat2.1x, the emphasis will be on understanding the reasoning behind the calculations, the assumptions under which they are valid, and the correct interpretation of results.\n', 'https://www.edx.org/courses/BerkeleyX/Stat2.1x/2013_Spring/about', 'http://www.youtube.com/embed/h4azmJy-MnQ?autoplay=1&rel=0', '0000-00-00', 0, 'http://www.edx.org/c4x/BerkeleyX/Stat2.1x/asset/images_course_image.jpg', '', 'Edx'),
(724, 'CS188.1x: Artificial Intelligence', 'CS188.1x is an online adaptation of the first half of UC Berkeley’s upper division course CS188: Introduction to Artificial Intelligence. ', 'CS188.1x is a new online adaptation of the first half of UC Berkeley\'s CS188: Introduction to Artificial Intelligence. The on-campus version of this upper division computer science course draws about 600 Berkeley students each year.\nArtificial intelligence is already all around you, from web search to video games. AI methods plan your driving directions, filter your spam, and focus your cameras on faces. AI lets you guide your phone with your voice and read foreign newspapers in English. Beyond today\'s applications, AI is at the core of many new technologies that will shape our future. From self-driving cars to household robots, advancements in AI help transform science fiction into real systems.\n \n CS188.1x focuses on Behavior from Computation. It will introduce the basic ideas and techniques underlying the design of intelligent computer systems. A specific emphasis will be on the statistical and decision–theoretic modeling paradigm. By the end of this course, you will have built autonomous agents that efficiently make decisions in stochastic and in adversarial settings. CS188.2x (to follow CS188.1x, precise date to be determined) will cover Reasoning and Learning. With this additional machinery your agents will be able to draw inferences in uncertain environments and optimize actions for arbitrary reward structures. Your machine learning algorithms will classify handwritten digits and photographs. The techniques you learn in CS188x apply to a wide variety of artificial intelligence problems and will serve as the foundation for further study in any application area you choose to pursue. \n \n', 'https://www.edx.org/courses/BerkeleyX/CS188.1x/2013_Spring/about', '', '0000-00-00', 0, 'http://www.edx.org/static/content-berkeley-cs188x~2013_Spring/images/course_image.jpg', '', 'Edx'),
(725, 'CS169.2x: Software as a Service', 'CS 169.2x teaches sophisticated SaaS+Agile skills, such as working with legacy code, building on basics from CS 169.1x.', 'CS 169.2x is the second half of University of California, Berkeley\'s semester long course on Software as a Service. In the first half of the course, CS 169.1x, students use Agile development methods to deploy a simple SaaS app in the cloud. In the second half, CS 169.2x, students create more sophisticated apps by adding relationships between models in apps and by enhancing their apps with JavaScript. They also learn about what happens after the apps are deployed to real users, including how to monitor performance, identify and fix common performance problems, and avoid compromising customer data. Finally, students learn how to apply Agile techniques to enhance and refactor legacy code, a critical skill for professional programmers.\nOther topics covered in CS 169.2x include\nHow to form, organize and manage small programming teams\nIntroduction to design patterns: what they are and how to recognize opportunities to apply them\nUsing Rails for more advanced features like third-party authentication and elegantly expressing design patterns that arise frequently in SaaS\nThere will be three homework assignments: two programming assignments and one assignment about operations/deployment. There will also be several short quizzes.\nNote: Unlike CS 169.1x, which has been offered multiple times both online and on-campus, CS 169.2x is fresh, new material. Although versions of it have been taught at UC Berkeley, it has evolved significantly between offerings, and this online version is essentially new. This is, therefore, an "alpha" version. A more polished version will offered at a later date.\n', 'https://www.edx.org/courses/BerkeleyX/CS169.2x/2013_Spring/about', 'http://www.youtube.com/embed/u2PO2ITd78A?showinfo=0', '0000-00-00', 0, 'http://www.edx.org/static/content-berkeley-cs169.2x~2013_Spring/images/course_image.jpg', '', 'Edx'),
(726, '14.73x: The Challenges of Global Poverty', 'An introduction to development economics, from the urgent issues of global poverty and the economic models that might explain them, to the policy implications of those models.', 'This is a course for those who are interested in the challenge posed by massive and persistent world poverty, and are hopeful that economists might have something useful to say about this challenge. The questions we will take up include: Is extreme poverty a thing of the past? What is economic life like when living under a dollar per day? Are the poor always hungry? How do we make schools work for poor citizens? How do we deal with the disease burden? Is microfinance invaluable or overrated? Without property rights, is life destined to be "nasty, brutish and short"? Should we leave economic development to the market? Should we leave economic development to non-governmental organizations (NGOs)? Does foreign aid help or hinder? Where is the best place to intervene? And many others. At the end of this course, you should have a good sense of the key questions asked by scholars interested in poverty today, and hopefully a few answers as well.', 'https://www.edx.org/courses/MITx/14.73x/2013_Spring/about', 'http://www.youtube.com/embed/6pKbLWYSuNc', '0000-00-00', 0, 'http://www.edx.org/static/content-mit-1473x~2013_Spring/images/course_image.jpg', '', 'Edx'),
(727, '3.091x: Introduction to Solid State Chemistry', '3.091x explains chemical principles by examination of the properties of materials. ', '3.091x is a first-year course where chemical principles are explained by examination of the properties of materials. The electronic structure and chemical bonding of materials is related to applications and engineering systems throughout the course. The on-campus version of the course has been taught for over thirty five years and is one of the largest classes at MIT. The class will cover the relationship between electronic structure, chemical bonding, and atomic order, and characterization of atomic arrangements in crystalline and amorphous solids: metals, ceramics, semiconductors, and polymers (including proteins). There will be topical coverage of organic chemistry, solution chemistry, acid-base equilibria, electrochemistry, biochemistry, chemical kinetics, diffusion, and phase diagrams. Examples will be drawn from industrial practice (including the environmental impact of chemical processes), from energy generation and storage (e.g. batteries and fuel cells), and from emerging technologies (e.g. photonic and biomedical devices). For the Spring 2013 class, edX registration and course materials are free.\nStudents will complete weekly concept questions, watch videos and work on interspersed exercises, as well as submit weekly homework. Homework assignments may be submitted multiple times until the deadline. Those who earn a passing grade will get a free honor code certificate from MITx.\n', 'https://www.edx.org/courses/MITx/3.091x/2013_Spring/about', 'http://www.youtube.com/embed/jkfTkxVaSFg', '0000-00-00', 0, 'http://www.edx.org/static/content-mit-3091x~2013_Spring/images/course_image.jpg', '', 'Edx'),
(728, '6.00x: Introduction to Computer Science and Programming', '6.00x is an introduction to computer science as a tool to solve real-world analytical problems.', 'Introduction to Computer Science and Programming\n6.00x is an introduction to using computation to solve real problems. The course is aimed at students with little or no prior programming experience who have a desire (or at least a need) to understand computational approaches to problem solving. Some of the people taking the course will use it as a stepping stone to more advanced computer science courses, but for many, it will be their first and last computer science course.\nSince the course will be the only formal computer science course many of the students take, we have chosen to focus on breadth rather than depth. \n The goal is to provide students with a brief introduction to many topics so they will have an idea of what is possible when they need to think about \n how to use computation to accomplish some goal later in their career. That said, it is not a "computation appreciation" course. It is a challenging \n and rigorous course in which the students spend a lot of time and effort learning to bend the computer to their will.\nThose who earn a passing grade will get an honor code certificate from MITx. Please see the edX FAQ for more information about certificates.\nThe required textbook for this course is Introduction to Computation and Programming Using\n Python (Spring 2013 edition) by John Guttag. The MIT Press has generously provided free\n access for MITx students to an online version of the required textbook for the duration of the\n course. The open, online version offers the full text of the book in a static, read-only format (not\n searchable or downloadable for use offline). The book will also be published in both print and e-\n book editions in January 2013 by the MIT Press. Both editions of the book are priced at $25.00\n and are now available from retailers.\nLimited-time offer! The MIT Press is offering MITx students a special price, through\n March 22, 2013 only, of $17.50 (a 30% discount). To take advantage of this offer, please use\n promotion code ICPUP30 at http://mitpress.mit.edu/guttag.\nNote to students who purchased the Fall 2012 edition of this textbook: If you already own a copy \n of the Fall 2012 version of Introduction to Computation and Programming Using Python by John Guttag, \n please be aware that the newly released Spring 2013 edition of the book reflects numerous corrections and \n minor revisions throughout. You may use the Fall 2012 edition for this Spring course but you are strongly\n advised to regularly compare its text against the open online edition of the Spring 2013 edition \n (which will be freely posted within the Spring 6.00x courseware). Alternatively, you may wish to \n purchase the Spring 2013 edition if you are able.\nIn the meantime, if you\'re interested in reading more on Python, check your local library for Python textbooks or\n search online for a free Python text, such as this one.\n', 'https://www.edx.org/courses/MITx/6.00x/2013_Spring/about', 'http://www.youtube.com/embed/NHd27UvY-lw?showinfo=0', '0000-00-00', 0, 'http://www.edx.org/static/content-mit-600x~2013_Spring/images/course_image.jpg', '', 'Edx'),
(729, 'HLS1x: Copyright', 'HLS1x Copyright will explore the current law of copyright and the ongoing debates concerning how that law should be reformed.', 'Please note that the "Register" button above is not used for HLS1x. The application period closed on January 3rd, 2013.\nHLS1x Copyright, an experimental course offered on edX, explores in depth the law, theory, and practice of copyright. Approximately two thirds of the course focus on the copyright system of the United States; the remainder is devoted to the laws pertaining to copyright and "neighboring rights" in other countries. Considerable attention is devoted to the relationship between copyright law and creative expression in a variety of fields: literature; music; film; photography; graphic art; software; comedy; fashion; and architecture. The course commences on January 28, 2013, and lasts for 12 weeks.\nEnrollment in the course is limited to 500 participants, who were selected through an application process. When admitting participants, the course organizers sought to create a group that is diverse along many dimensions, including country of residence, age, occupation, educational background, and gender. Applicants had to be at least 13 years old, have a good grasp of the English language, and be willing to devote eight hours per week to learning and discussing the material. Otherwise, however, there are no prerequisites for taking this course. In particular, no legal background is required.\nSeveral methods of instruction are used. Participants watch pre-recorded lectures, engage in interactive live webcasts of events in which guest speakers address especially controversial issues, discuss legal problems in online forums, and (most importantly) participate once a week in an 80-minute online seminar. Those seminars are taught by teaching fellows, all of whom are currently students at Harvard Law School.\nAt the conclusion of the course, each participant takes a three-hour exam, designed to assess his or her knowledge of copyright law and policy. Those exams are graded by the teaching fellows. Participants who receive passing grades are to be awarded certificates of completion and provided written assessments of their degree of proficiency.\nHLS1x Copyright is an experimental course, with four different variants that allow Prof. Fisher and his team to experiment with different combinations of teaching materials and educational technologies. Enrollment for the course is limited because we believe that high-quality legal education depends, at least in part, upon supervised small-group discussions of difficult issues. Fidelity to that principle requires confining the course to the number of participants that can be supervised effectively by our 21 teaching fellows. The limit on the enrollment does not mean, however, that we are not allowing access to the course materials; to the contrary, they are made publicly available.\n', 'https://www.edx.org/courses/HarvardX/HLS1x/2013_Spring/about', '', '0000-00-00', 0, 'http://www.edx.org/static/content-harvard-copyrightx~2013_Spring/images/course_image.jpg', '', 'Edx'),
(730, 'CS169.1x: Software as a Service', 'CS169.1x teaches the fundamentals for engineering long-lived software using Agile techniques to develop Software as a Service (SaaS) using Ruby on Rails.', 'CS169.1x teaches the fundamentals for engineering long-lasting software using highly-productive Agile techniques to develop Software as a Service (SaaS) using Ruby on Rails. Students will understand the new challenges and opportunities of SaaS versus shrink-wrapped software. They will understand and apply fundamental programming techniques to the design, development, testing, and public cloud deployment of a simple SaaS application. Students will use best-of-breed tools that support modern development techniques including behavior-driven design, user stories, test-driven development, velocity, and pair programming. Students will learn how modern programming language features like metaprogramming and reflection can improve productivity and code maintainability.\nStudents will work individually on weekly coding projects. Those who successfully complete each assignment and earn a passing grade will get an honor code certificate from BerkeleyX.\n', 'https://www.edx.org/courses/BerkeleyX/CS169.1x/2013_Spring/about', 'http://www.youtube.com/embed/V36LpHqtcDY?showinfo=0', '0000-00-00', 0, 'http://www.edx.org/static/content-berkeley-cs169x~2013_Spring/images/course_image.jpg', '', 'Edx'),
(731, 'CS169.2x: Software as a Service', 'CS 169.2x teaches sophisticated SaaS+Agile skills, such as working with legacy code, building on basics from CS 169.1x.', 'CS 169.2x is the second half of University of California, Berkeley\'s semester long course on Software as a Service. In the first half of the course, CS 169.1x, students use Agile development methods to deploy a simple SaaS app in the cloud. In the second half, CS 169.2x, students create more sophisticated apps by adding relationships between models in apps and by enhancing their apps with JavaScript. They also learn about what happens after the apps are deployed to real users, including how to monitor performance, identify and fix common performance problems, and avoid compromising customer data. Finally, students learn how to apply Agile techniques to enhance and refactor legacy code, a critical skill for professional programmers.\nOther topics covered in CS 169.2x include\nHow to form, organize and manage small programming teams\nIntroduction to design patterns: what they are and how to recognize opportunities to apply them\nUsing Rails for more advanced features like third-party authentication and elegantly expressing design patterns that arise frequently in SaaS\nThere will be three homework assignments: two programming assignments and one assignment about operations/deployment. There will also be several short quizzes.\nNote: Unlike CS 169.1x, which has been offered multiple times both online and on-campus, CS 169.2x is fresh, new material. Although versions of it have been taught at UC Berkeley, it has evolved significantly between offerings, and this online version is essentially new. This is, therefore, an "alpha" version. A more polished version will offered at a later date.\n', 'https://www.edx.org/courses/BerkeleyX/CS169.2x/2012_Fall/about', 'http://www.youtube.com/embed/u2PO2ITd78A?showinfo=0', '0000-00-00', 0, 'http://www.edx.org/static/content-berkeley-cs169.2x~2012_Fall/images/course_image.jpg', '', 'Edx'),
(732, 'CS184.1x: Foundations of Computer Graphics', 'CS184.1x teaches the Foundations of Computer Graphics. Students will be able to make images of 3D scenes in both real-time, and with offline raytracing. ', 'CS184.1x teaches the Foundations of Computer Graphics.\n Students will make images of \n 3D scenes in real-time, and with offline raytracing.\n This course runs for 6 weeks and consists of four segments. Each segment includes an\n individual programming assignment: \nOverview and Basic Math (Homework 0: 10% of grade)\nTransformations (Homework 1: 20% of grade)\nOpenGL and Lighting (Homework 2: 35% of grade)\nRaytracing (Homework 3: 35% of grade)\nThis term, students who earn a total score of 50% or greater will have passed the course and may obtain a free honor code certificate from BerkeleyX. \n', 'https://www.edx.org/courses/BerkeleyX/CS184.1x/2012_Fall/about', 'http://www.youtube.com/embed/6F0pR-ANmXY?showinfo=0', '0000-00-00', 0, 'http://www.edx.org/static/content-berkeley-cs184x~2012_Fall/images/course_image.jpg', '', 'Edx'),
(733, 'CS50x: Introduction to Computer Science I', 'CS50x is an introduction to the intellectual enterprises of computer science and the art of programming.', 'CS50x is Harvard College\'s introduction to the intellectual enterprises of computer science and the art of programming for majors and non-majors alike, with or without prior programming experience. An entry-level course taught by David J. Malan, CS50x teaches students how to think algorithmically and solve problems efficiently. Topics include abstraction, algorithms, data structures, encapsulation, resource management, security, software engineering, and web development. Languages include C, PHP, and JavaScript plus SQL, CSS, and HTML. Problem sets inspired by real-world domains of biology, cryptography, finance, forensics, and gaming. As of Fall 2012, the on-campus version of CS50x is Harvard\'s largest course.\nStudents who earn a passing grade on 8 problem sets (programming assignments - 15-20 hours each), 2 quizzes, and a final project will get an honor code certificate from HarvardX. Students may take CS50x at their own pace, starting anytime after October 15, 2012 and finishing anytime before April 15, 2013.\n', 'https://www.edx.org/courses/HarvardX/CS50x/2012/about', 'http://www.youtube.com/embed/ZAldYMFUIac?showinfo=0', '0000-00-00', 0, 'http://www.edx.org/static/content-harvard-cs50x~2012/images/course_image.jpg', '', 'Edx'),
(734, 'PH207x: Health in Numbers: Quantitative Methods in Clinical & Public Health Research', 'PH207x is the online adaptation of material from the Harvard School of Public Health\'s classes in epidemiology and biostatistics.', 'Quantitative Methods in Clinical and Public Health Research is the online adaptation of material from the Harvard School of Public Health\'s classes in epidemiology and biostatistics.\nPrincipled investigations to monitor and thus improve the health of individuals are firmly based on a sound understanding of modern quantitative methods. This involves the ability to discover patterns and extract knowledge from health data on a sample of individuals and then to infer, with measured uncertainty, the unobserved population characteristics. This course will address this need by covering the principles of biostatistics and epidemiology used for public health and clinical research. These include outcomes measurement, measures of associations between outcomes and their determinants, study design options, bias and confounding, probability and diagnostic tests, confidence intervals and hypothesis testing, power and sample size determinations, life tables and survival methods, regression methods (both, linear and logistic), and sample survey techniques. Students will analyze sample data sets to acquire knowledge of appropriate computer software. By the end of the course the successful student should have attained a sound understanding of these methods and a solid foundation for further study.\n', 'https://www.edx.org/courses/HarvardX/PH207x/2012_Fall/about', 'http://www.youtube.com/embed/j9CqWffkVNw?showinfo=0', '0000-00-00', 0, 'http://www.edx.org/static/content-harvard-id270x/images/course_image.jpg', '', 'Edx'),
(735, '6.00x: Introduction to Computer Science and Programming', '6.00x is an introduction to computer science as a tool to solve real-world analytical problems.', 'Introduction to Computer Science and Programming\n6.00x is an introduction to using computation to solve real problems. The course is aimed at students with little or no prior programming experience who have a desire (or at least a need) to understand computational approaches to problem solving. Some of the people taking the course will use it as a stepping stone to more advanced computer science courses, but for many, it will be their first and last computer science course.\nSince the course will be the only formal computer science course many of the students take, we have chosen to focus on breadth rather than depth. \n The goal is to provide students with a brief introduction to many topics so they will have an idea of what is possible when they need to think about \n how to use computation to accomplish some goal later in their career. That said, it is not a "computation appreciation" course. It is a challenging \n and rigorous course in which the students spend a lot of time and effort learning to bend the computer to their will.\nThose who earn a passing grade will get an honor code certificate from MITx. Please see the edX FAQ for more information about certificates.\nA textbook for 6.00x \n is now available for purchase ($24.99) - expect the book to take at least 10 days to arrive (North America; rest of the world may take longer). The book and the course \n lectures parallel each other, though there is more detail in the book about some topics. The book is NOT required. We will not be referring to it in assignments or \n depending upon it to cover holes in the lectures. If you choose not to purchase this book, you will probably find it useful to buy or borrow another book that covers Python \n - you might check your local public library\'s resources, or search online for a free Python text, such as this one.\n', 'https://www.edx.org/courses/MITx/6.00x/2012_Fall/about', 'http://www.youtube.com/embed/NHd27UvY-lw?showinfo=0', '0000-00-00', 0, 'http://www.edx.org/static/content-mit-600x~2012_Fall/images/course_image.jpg', '', 'Edx'),
(736, 'CS188.1x: Artificial Intelligence', 'CS188.1x is an online adaptation of the first half of UC Berkeley’s upper division course CS188: Introduction to Artificial Intelligence. ', 'CS188.1x is a new online adaptation of the first half of UC Berkeley\'s CS188: Introduction to Artificial Intelligence. The on-campus version of this upper division computer science course draws about 600 Berkeley students each year.\nArtificial intelligence is already all around you, from web search to video games. AI methods plan your driving directions, filter your spam, and focus your cameras on faces. AI lets you guide your phone with your voice and read foreign newspapers in English. Beyond today\'s applications, AI is at the core of many new technologies that will shape our future. From self-driving cars to household robots, advancements in AI help transform science fiction into real systems.\n \n CS188.1x focuses on Behavior from Computation. It will introduce the basic ideas and techniques underlying the design of intelligent computer systems. A specific emphasis will be on the statistical and decision–theoretic modeling paradigm. By the end of this course, you will have built autonomous agents that efficiently make decisions in stochastic and in adversarial settings. CS188.2x (to follow CS188.1x, precise date to be determined) will cover Reasoning and Learning. With this additional machinery your agents will be able to draw inferences in uncertain environments and optimize actions for arbitrary reward structures. Your machine learning algorithms will classify handwritten digits and photographs. The techniques you learn in CS188x apply to a wide variety of artificial intelligence problems and will serve as the foundation for further study in any application area you choose to pursue. \n \n', 'https://www.edx.org/courses/BerkeleyX/CS188.1x/2012_Fall/about', '', '0000-00-00', 0, 'http://www.edx.org/static/content-berkeley-cs188x~2012_Fall/images/course_image.jpg', '', 'Edx'),
(737, 'CS169.1x: Software as a Service', 'CS169.1x teaches the fundamentals for engineering long-lived software using Agile techniques to develop Software as a Service (SaaS) using Ruby on Rails.', 'CS169.1x teaches the fundamentals for engineering long-lasting software using highly-productive Agile techniques to develop Software as a Service (SaaS) using Ruby on Rails. Students will understand the new challenges and opportunities of SaaS versus shrink-wrapped software. They will understand and apply fundamental programming techniques to the design, development, testing, and public cloud deployment of a simple SaaS application. Students will use best-of-breed tools that support modern development techniques including behavior-driven design, user stories, test-driven development, velocity, and pair programming. Students will learn how modern programming language features like metaprogramming and reflection can improve productivity and code maintainability.\nStudents will work individually on weekly coding projects. Those who successfully complete each assignment and earn a passing grade will get an honor code certificate from BerkeleyX.\n', 'https://www.edx.org/courses/BerkeleyX/CS169.1x/2012_Fall/about', 'http://www.youtube.com/embed/V36LpHqtcDY?showinfo=0', '0000-00-00', 0, 'http://www.edx.org/static/content-berkeley-cs169x~2012_Fall/images/course_image.jpg', '', 'Edx'),
(738, '6.002x: Circuits and Electronics', '6.002x teaches the fundamentals of circuit and electronic analysis. ', 'The course introduces engineering in the context of the lumped circuit abstraction. Topics covered include: resistive elements and networks; independent and dependent sources; switches and MOS transistors; digital abstraction; amplifiers; energy storage elements; dynamics of first- and second-order networks; design in the time and frequency domains; and analog and digital circuits and applications. Design and lab exercises are also significant components of the course. \nThe course is organized by weeks. To keep pace with the class, you are expected to complete all the work by the due dates indicated. Homeworks and labs must be completed by the Sunday of the week following the one in which they are posted. Weekly coursework includes interactive video sequences, readings from the textbook, homework, online laboratories, and optional tutorials. The course will also have a midterm exam and a final exam. Those who successfully earn enough points will receive an honor code certificate from MITx.\n', 'https://www.edx.org/courses/MITx/6.002x/2012_Fall/about', 'http://www.youtube.com/embed/jeo1R9LskHU?showinfo=0', '0000-00-00', 0, 'http://www.edx.org/static/content-mit-6002x~2012_Fall/images/course_image.jpg', '', 'Edx');
/*!40000 ALTER TABLE `course_data` ENABLE KEYS */;
/*!40014 SET FOREIGN_KEY_CHECKS=1 */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;