This repository has been archived by the owner on Jan 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnukedb.ts
1001 lines (994 loc) · 83.6 KB
/
nukedb.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import mongoose from 'mongoose'
import { Category } from './src/models/category'
import { Chapter } from './src/models/chapter'
import { Course } from './src/models/course'
import { Review } from './src/models/review'
import { User, UserOTPVerification } from './src/models/user'
const MONGO_DB_URL = process.env.MONGO_DB_URL || ''
mongoose.connect(MONGO_DB_URL).then(() => console.log('Connected to the database.'))
const users = [
{
name: 'Nguyen Hoang Long',
email: '[email protected]',
password: '12345678',
role: 'student'
},
{ email: '[email protected]', password: '12345678', role: 'student' },
{
name: 'Nguyen Hoang Long',
email: '[email protected]',
password: '12345678',
role: 'lecturer',
about:
"Minerva McGonagall was born on 4 October in Scotland to Robert McGonagall and Isobel Ross. McGonagall was born a half-blood witch as her father was a Muggle and her mother a witch. McGonagall began her Hogwarts education at the age of eleven and was sorted into Gryffindor after being the longest ever Hatstall between Gryffindor and Ravenclaw. McGonagall became friends with Hufflepuff student and future colleague Pomona Sprout and gained a particular talent in the art of Transfiguration under the tutelage of then Transfiguration professor Albus Dumbledore. During this time, McGonagall managed to become an Animagus, taking the form of a tabby cat and filed her paperwork to be officially registered. McGonagall was also a skilled member of the Gryffindor Quidditch team. After graduation, McGonagall became an employee for the Ministry of Magic in the Department of Magical Law Enforcement where she met her husband, Elphinstone Urquart. McGonagall was offered a promotion but turned it down and applied to teach Transfiguration at Hogwarts under Dumbledore. During her employment at Hogwarts, McGonagall grew particularly close to Dumbledore and the two were near inseparable friends and colleagues, and he began to recognise her as one of his most trusted allies. Eventually, McGonagall became the Head of the Transfiguration Department as well as the Head of Gryffindor House. After Headmaster Armando Dippet's retirement and Dumbledore's appointment as Headmaster, McGonagall became his Deputy Headmistress. Despite being a crucial force during the First Wizarding War against Lord Voldemort, McGonagall was not a member of the initial forming of the Order of the Phoenix. During the war, McGonagall lost her brother, Robert Jr, and two of her favourite students, James and Lily Potter. Following the death of the Potters and the first downfall of Voldemort, McGonagall accompanied Dumbledore and Rubeus Hagrid in delivering the sole survivor of the encounter, Harry Potter, to his aunt and uncle Petunia and Vernon Dursley in Surrey. Despite McGonagall's reservations that the Dursleys were the \"worst kind of Muggles\", she understood that due to the framing and imprisonment of Harry's godfather Sirius Black, the Dursleys were the only family the infant had left. After the war, McGonagall and Elphinstone married, but three years later he died from a Venomous Tentacula bite, making Minerva a widow.[citation needed]"
},
{
name: 'Admin',
email: '[email protected]',
password: '12345678',
role: 'admin'
}
]
const data = {
Categories: [
{
image: 'https://s.udemycdn.com/home/top-categories/lohp-category-development-2x-v2.jpg',
name: 'Development',
courses: [
{
title: 'Javascript for Beginners',
shortDesc:
'Learn javascript online and supercharge your web design with this Javascript for beginners training course.',
longDesc:
'<p>Take this Javascript training course and start learning Javascript today.<br><br>"As a business guy I have no place in programming." Ten years ago you could have gotten away with that statement. Today you say that to your colleagues and they scoff at you before they go back to their computers to fix real problems and do real work.<br><br>If you want to do something useful start by learning Javascript . In these days when the browser is central to all computer use knowing "the language of the browser" is the most important step. A few years ago Javascript potential was uncertain and many programmers considered it useless. These days however competent programmers have identified Javascript real potential and uses and it has gone from a toy language to the main language of the browser. It has become one of the most useful languages of this era. Every developer needs at least a basic understanding of Javascript. A developer who knows Javascript is the rockstar of the company and is in constant demand by employers. Our online Javascript</p>\n<p>course will get you started by teaching all the essential aspects of coding in Javascript. So... what\'s it gonna be? Do you want to supercharge your career and be in constant demand by employers? Do you want to learn how to create dynamic and innovative Javascript documents? Start programming today with our Javascript course for Beginners training and take control of your career.</p>',
viewCount: 286,
totalRatingStars: 11,
reviewCount: 3,
reviews: [
{
ratingStars: 4,
feedback:
'Excellent explanation with accompanying videos. I expected a few more videos in this session to help me learn more about JavaScript.'
},
{
ratingStars: 4,
feedback: 'Very good but some of the lab instructions are a little vague for a beginner.'
},
{
ratingStars: 3,
feedback: 'Not bad not also not good'
}
],
chapters: [
{
video: 'Javascript for Beginners - 1.webm',
title: 'Javascript for Beginners'
},
{
video: 'Javascript for Beginners - 2.mp4',
title: 'Course Introduction'
},
{
video: 'Javascript for Beginners - 3.mp4',
title: 'Introducing Mark and the course'
},
{
video: 'Javascript for Beginners - 4.mp4',
title: 'Your development toolbox'
}
],
thumbnail:
'https://techvccloud.mediacdn.vn/zoom/600_315/2018/5/31/js-15277589636571360694919-0-93-340-698-crop-15277589683161724742811.png',
basePrice: 299
},
{
title: 'Become a Certified HTML, CSS, JavaScript Web Developer',
shortDesc:
'Understand and enjoy classical music at your own pace. A music history course, including a music theory introduction.',
longDesc:
'<p><strong>Completely Updated for 2023/2024 with 40 NEW lectures coding activities and projects! </strong></p>\n<p>Learn What It Takes to Code Dynamic, Professional Websites and Web Apps From The Comfort of Your Own Home </p>\n<p>Do you ever browse the internet wondering how your favorite websites were built? Facebook, Twitter, Amazon—they were all created by people who at one point in time didn’t know anything about coding. How did they obtain this knowledge? </p>\n<p>In this comprehensive course, I’m going to show you everything you need to know so that you can follow in these people’s footsteps. </p>\n<p>You’re going to learn how to code AND you’re going to become a certified professional from a recognized international trainer. And best of all, you’re going to have fun doing it. </p>\n<p>You Don’t Have to Be a Genius or a Mathematical Wizard. </p>\n<p>So many people believe that you must have a special ‘gift’ to create professional-quality, dynamic websites/web apps. I’m here to tell you once and for all that this is false. All you need to have is the desire to learn and the ability to follow instructions—that’s it! </p>\n<p>Our course starts teaching basic coding principles and develops your coding skills in a variety of languages from beginner through to advanced. Here it is, once and for all, a complete guide that will take you from novice to web developer. </p>\n<p>Skip Hours of Frustration and Thousands of Wasted Dollars and Become 100% Certified </p>\n<p>The internet has changed the rules of doing business. More and more companies are migrating online while many new, never before seen businesses are created every day thanks to the power of this phenomenon. You know what that means? Higher demand for people just like you! </p>\n<p>But the problem for these businesses is that while demand is high, supply is short. </p>\n<p>Please don’t let a lack of knowledge stop you from having the career of your dreams, not when the knowledge you need is right here and is extremely affordable. </p>\n<p>Don’t worry, you won’t need to buy any additional courses, it’s all here. No need to spend four years and over $15,000 per year in college tuition either—it really is all here. From HTML to CSS then to Javascript and finally PHP, you will learn how to Become a Certified Web Developer. </p>\n<p>It Doesn’t Matter Where You’re Starting From...You Can Do It! </p>\n<p>Maybe: </p>\n<p> ● You’re planning on studying coding at college and want to build a rock-solid foundation so that you have a huge head start before your course begins? </p>\n<p> ● You’re dissatisfied with your current job and want to learn exactly what it takes to become a fully qualified web developer? </p>\n<p> ● You’re currently working in IT but want to expand your skill base so that you’re 100% up to date with the latest developments in web technology? </p>\n<p> ● You want to develop mobile apps or websites on the side to create some additional income while retaining your current job? </p>\n<p><strong>Learn Skills That Will Benefit You for The Rest of Your Life </strong></p>\n<p>- Imagine being able to create a web app that is downloaded by millions of paying customers—or a website that’s visited by people from all seven continents. </p>\n<p>- Imagine the limitless opportunities that having these programming skills will give you. </p>\n<p>- Imagine working in a field that challenges you and allows you to express yourself freely every day. </p>\n<p>- Imagine being paid extremely well for developing products and services that can help change people’s lives. </p>\n<p>Stop imagining and take action! It’s time to start your journey. Your future is waiting for you...</p>',
viewCount: 146,
totalRatingStars: 17,
reviewCount: 4,
reviews: [
{
ratingStars: 4,
feedback:
'I loved the teaching and the exercise help me to understand the topic more than just watching the video.'
},
{
ratingStars: 4,
feedback:
'Mark is very dedicated, has great knowledge and transfers it through his videos. Easy to understand and follow. Thank you for this amazing course!'
},
{
ratingStars: 5,
feedback: 'Learned a lot through this course.'
},
{
ratingStars: 4,
feedback: 'A pretty good start to my journey becoming a web developer.'
}
],
chapters: [
{
video: 'Become a Certified HTML, CSS, JavaScript Web Developer - 1.mp4',
title: 'About the course'
},
{
video: 'Become a Certified HTML, CSS, JavaScript Web Developer - 2.mp4',
title: 'About our certification'
},
{
video: 'Become a Certified HTML, CSS, JavaScript Web Developer - 3.mp4',
title: 'Getting your questions answered'
}
],
thumbnail: 'https://nentang.vn/wp-content/uploads/2018/07/html-css-js-course-intro.jpeg',
basePrice: 399
},
{
title: 'Learn C# Programming (In Ten Easy Steps)',
shortDesc: 'The simplest way to learn C# programming.',
longDesc:
'<p><strong>Learn C# Programming</strong> <strong>(in ten easy steps)</strong> <em>[Version 2]</em> is suitable for <em>beginner </em>programmers or anyone with experience in another programming language who needs to learn C# from the ground up. Step-by-step it explains how to write C# code to develop Windows applications using either the <strong>free Visual Studio Community Edition</strong> or a commercial edition of Microsoft Visual Studio (it even explains how to write C# programs using free tools for OS X). This is the completely revised and updated second version of this course. </p>\n<p><strong>C#</strong> is one of the most widely used an important of all modern programming languages. If you need to learn C# <em>quickly</em> and <em>painlessly</em>, this is the perfect course.</p>\n<p>You will begin by learning the core features of programming – variables, constants, functions and data types. You will move on rapidly to learn about Object Orientation and the more advanced features of C# and the .NET framework such as file-handling, data-streaming, dealing with exceptions (errors) and overriding methods. Even if you start out as a complete beginner, by the end of this course you will have built a really solid foundation of programming knowledge and skills.</p>\n<p>All the <strong>source code</strong> of sample projects is provided ready for you to download, run and modify. The course also includes an <strong>eBook </strong>that provides even more information on the topics being discussed. And there are also interactive <strong>quizzes </strong>to test your understanding of each major topic.</p>\n<p>The course instructor, <em>Huw Collingbourne</em>, is Director of Technology with SapphireSteel Software, a company that specialises in Visual Studio development tools (written in C#) for professional programmers.</p>\n<p><em>Learn C# Programming (in ten easy steps)</em> is the fastest and simplest way to help you make the move from coding novice to professional programmer. The first version of this course was launched in 2012. The current version has been completely re-made and expanded with numerous new lessons. As an added bonus, <strong>the complete version 1</strong> of the course (<em>almost 4 additional hours of video instruction</em>) is also included as a free download.</p>',
viewCount: 122,
totalRatingStars: 18,
reviewCount: 4,
reviews: [
{
ratingStars: 5,
feedback: 'Definitely helpful for my computer graphics course at school.'
},
{
ratingStars: 3,
feedback: 'Not using the lastest version of Visual Studio.'
},
{
ratingStars: 5,
feedback:
'Speech pattern is very relaxed and easy to understand. Gives very thorough explanations.Never talks down to his audience. Conveys interest and excitement about the subject in his speech patterns.'
},
{
ratingStars: 5,
feedback:
'Excellent introductory course to C#, with lots of work put in by the author to help keep things interesting.'
}
],
chapters: [
{
video: 'Learn C# Programming (In Ten Easy Steps) - 1.webm',
title: 'Install Visual Studio'
},
{
video: 'Learn C# Programming (In Ten Easy Steps) - 2.webm',
title: 'Your first C# project'
},
{
video: 'Learn C# Programming (In Ten Easy Steps) - 3.webm',
title: 'Adding components to a form'
}
],
thumbnail: 'https://i.redd.it/nbc8i22ia3091.png',
basePrice: 199
},
{
title: 'AJAX Development',
shortDesc: 'Create Elegant, Powerful Web and Mobile Applications Using AJAX.',
longDesc:
'<p>You’ve learned a little Javascript, but you still look at websites with slick, smooth and elegant user interfaces and want to know how web developers create that. The answer is simple: Ajax. You’ve probably heard of it, but you’ve always wondered “What is Ajax”? Ajax is simply Asynchronous Javascript and XML. By taking our Ajax course, you can make pages on your web application respond quickly, and with a minimum of screen refreshes.</p>\n<p><br>With our Ajax course and a little Javascript knowledge you can use Ajax to take database information and store, alter, sort and conditionally format it all on the client side. This minimizes the load on your server and makes your applications respond quickly and without reloading the HTML page. Ajax communicates with the server behind the scenes while your user continues to use your web site, accessing the information they want. Our course will show you numerous Ajax examples and help you become proficient in using Ajax.<br><br>In our Ajax course, master trainer Mark Lassoff takes you through the basics of Ajax right to advanced topics like parsing JSON responses from web services. Our Ajax course is recommended for all web developers who want to improve their client side skills, and make professional, fast and responsive web applications.</p>',
viewCount: 217,
totalRatingStars: 10,
reviewCount: 3,
reviews: [
{
ratingStars: 2,
feedback: 'Instructor talks too fast. Gotta watch it on slower playback speed.'
},
{
ratingStars: 4,
feedback:
'Es un curso demasiado básico y está muy desactualizado. Podría llegar a ser útil para personas que apenas está ingresadno al mundo del ajax pero no lo veo como una buena base sino un pequeño pantallaso. No veo la necesitdad de armar un json de la forma en la que se hizo.'
},
{
ratingStars: 4,
feedback:
'It is quite interesting, especially for the practical part. It is very dynamic too and quite organized and well explained. The only thing I would like you to add more information to configure localhost 8888 and try at the same time, maybe with Xampp?'
}
],
chapters: [
{
video: 'AJAX Development - 1.mp4',
title: 'Ajaxified Web Sites'
},
{
video: 'AJAX Development - 2.mp4',
title: 'Dynamic content placement'
},
{
video: 'AJAX Development - 3.webm',
title: 'The XMLHTTP Request Object'
}
],
thumbnail: 'https://wiki.matbao.net/wp-content/uploads/2019/08/ajax-la-gi-ajax-dinh-nghia-1.png',
basePrice: 129
},
{
title: 'Java Swing (GUI) Programming From Beginner to Expert',
shortDesc:
'Learn how to create desktop and Internet GUI Java programs and take your Java programming to the next level.',
longDesc:
"<p>This course teaches you how to create desktop and web-based applications using Java Swing, Java's built-in user interface toolkit. Each tutorial is fairly self-contained; but we'll also build two complete applications step by step along the way, so you can choose either to work through the whole course or to dip in and out.</p>\n<p>Among other things we'll look at nearly all Swing widgets, we'll take a look at JDBC for database access, the graphics API, model-view-controller (MVC) architecture, serialization for saving data, the listener-event model and even basic animation.</p>\n<p>When you finish the course, you'll be an advanced Swing developer, capable of creating complex and scalable Swing GUI applications.</p>",
viewCount: 66,
totalRatingStars: 14,
reviewCount: 3,
reviews: [
{
ratingStars: 5,
feedback:
'Ive always wanted to get at least a good depth of Java Swing knowledge... YouTube was just an okay resource, but this course is an absolute eye-opener and a very encouraging one. Thank you for this course, John. Im sure many like myself have really benefited from this course.'
},
{
ratingStars: 4,
feedback:
'John gives easy-to-follow explanations, amazing examples, and also teaches design principles that were unexpected, but greatly appreciated.'
},
{
ratingStars: 5,
feedback:
'This course is perfect and relevant even today. Im learning so much, not only about swing, but MVC and more. There are a few spots of trouble, like the database file not downloading, but you can easily find Johns work on GitHub under Cave of Programming or recreate the file from his well-explained videos. I highly recommend this course. Dont be put off by its age.'
}
],
chapters: [
{
video: 'Java Swing (GUI) Programming From Beginner to Expert - 1.mp4',
title: 'About the course'
},
{
video: 'Java Swing (GUI) Programming From Beginner to Expert - 2.mp4',
title: 'About our certification'
},
{
video: 'Java Swing (GUI) Programming From Beginner to Expert - 3.mp4',
title: 'Getting your questions answered'
}
],
thumbnail: 'https://i.morioh.com/201107/4363daf9.webp',
basePrice: 299
}
]
},
{
image: 'https://s.udemycdn.com/home/top-categories/lohp-category-music-2x-v2.jpg',
name: 'Music',
courses: [
{
title: 'Adventures in Classical Music—Music Appreciation for All!',
shortDesc:
'Understand and enjoy classical music at your own pace. A music history course, including a music theory introduction.',
longDesc:
'<p> <strong>Music appreciation for the 21st century. Learn about Classical Music in the Western world from the Middle Ages to the present. </strong> </p>\n<p> You’ll begin with an introduction to the various elements of music -- for example, melody, rhythm, pitch and harmony – to give you the basics and vocabulary of music theory to understand and appreciate any type of music. You’ll then explore the History of Classical Music through its various stylistic periods, from medieval chant right up to the current cutting edge. Anyone interested in classical music will benefit from this course. </p>\n<p> ______________________________________________________________________ </p>\n<p> <strong> About this course: </strong> </p>\n<ol>\n<li>\n<p>Over 3800 happy students</p>\n</li>\n<li>\n<p>Updated regularly</p>\n</li>\n<li>\n<p>Full, free lifetime access</p>\n</li>\n<li>\n<p>All future extra and upgraded lectures are always included for free</p>\n</li>\n<li>\n<p>Unconditional Udemy 30 day money-back guarantee</p>\n</li>\n<li>\n<p><strong>See testimonials from former students below</strong></p>\n</li>\n</ol>\n<p> ______________________________________________________________________ </p>\n<p> This course is structured in 32 sections; </p>\n<p> • the first section is devoted to the elements of music in order to give you a detailed primer in music theory: melody, rhythm, pitch, harmony, texture, tempo, dynamics and form. Section 1 includes a <strong>Short History of Rock and Roll</strong> to illustrate the musical elements and musical style. </p>\n<p> After that, each section is devoted to one of the broad eras of music history: </p>\n<p> <strong> • The Middle Ages.</strong> Learn about early music beginning with monophony and how polyphony developed during the period of the building of the great cathedrals. </p>\n<p> <strong> • The Renaissance.</strong> What was happening in music during the period in which Michelangelo was painting the Sistine Chapel? A return to some Ancient ideals led to a rediscovery of the science of acoustics, providing a basis for the theory of modern harmony. How the course of music changed as a result of Martin Luther’s break from the Church. </p>\n<p> <strong> • The Baroque.</strong> Here we have the origins of opera, as well as a flowering of instrumental music, culminating in the works of Bach, Handel and Vivaldi. </p>\n<p> <strong> • The Classical.</strong> In reaction to the florid complexities of the Baroque, and influenced by the Age of Reason, the Classical period focused on simplicity and elegance, producing such composers as Haydn, Mozart and Beethoven. </p>\n<p> <strong> • Romanticism.</strong> The Age of Reason was too “reasonable” for the the Romanticists. They valued heightened emotion over elegance. The music of Schumann, Chopin, Wagner, Tchaikovsky, Verdi and Puccini were some of its greatest accomplishments. </p>\n<p> <strong> • The Modern Period.</strong> Formerly referred to as the 20th century period, it now needs to reflect its expansion into the 21st century. Some of the greatest composers of this period have been Stravinsky, Bartok, Schoenberg, Britten, Shostakovich, Ives, Copland and Barber. </p>\n<p> • We conclude with a retrospective and some final remarks to wrap it all up.</p>',
viewCount: 78,
totalRatingStars: 13,
reviewCount: 3,
reviews: [
{
ratingStars: 3,
feedback:
"I wanted to thank you, Bill Neely, for sharing your knowledge with us. This has been a super-duper class, and I find myself a little sad to find it drawing to a close. I've always enjoyed classical music rather passively; I now feel that I can be an active participant, with a deeper understanding of the musical concepts, the composers themselves, and their historical context. Very cool!"
},
{
ratingStars: 5,
feedback:
'Excellent! You just gotta know your Staccato from your Legato it’s that simple. Seriously, I’m really enjoying the instructions it’s working for me what can I say bravo Eric! Thanks eh’ ??????? Check out his YouTube: Guitar Sage'
},
{
ratingStars: 5,
feedback: 'Excellent! Would highly recomment this course!'
}
],
chapters: [
{
video: 'Adventures in Classical Music—Music Appreciation for All! - 1.mp4',
title: 'Introductory Overview'
},
{
video: 'Adventures in Classical Music—Music Appreciation for All! - 2.mp4',
title: 'A history of Rock and Roll, Part 1'
},
{
video: 'Adventures in Classical Music—Music Appreciation for All! - 3.webm',
title: 'A history of Rock and Roll, Part 2'
}
],
thumbnail: 'https://miro.medium.com/max/1024/1*mixpt3aTomNCPC2-cBlmIw.jpeg',
basePrice: 399
},
{
title: 'Acoustic Guitar and Electric Guitar Lessons Getting Started',
shortDesc:
'Acoustic Guitar Theory, Fingerpicking, Fretting, Chords: Most Important 25 Videos For Getting Started w/ Playing Guitar',
longDesc:
'<p>Eliminate All the Major Struggles When Getting Started With Playing Guitar</p>\n<p> This course is the most <strong>"Direct and To the Point"</strong> course for ANY guitar player to watch and learn. </p>\n<p> Finding 2 Hours of Quality Guitar Lessons that can be accessed <em>anywhere</em> for FREE and at <em>any time</em> of the day is hard to come by these days. </p>\n<p> This free course solves all of those problems. </p>\n<p>Follow the Videos in the Exact Same Order and You Will See a Huge Positive Difference in Your Playing</p>\n<p> </p>\n<ul>\n<li>\n<p>Over 2 hours of Video and PDF attachments for most Lectures</p>\n</li>\n<li>\n<p>Access this course 24/7, Mac or PC, Iphone, Ipad and Android</p>\n</li>\n</ul>\n<p> Establishing solid core practice habits helps the speed of your results and also the quality of your results. </p>\n<p>You\'ll Go From First Time User, Picking Up the Guitar, to Chord Transitioning AND Everything in Between Including the 9 Most Essential Chords</p>\n<ul>\n<li>\n<p>Erich Andreas is Consider a Top 5 Online Guitar Teacher</p>\n</li>\n<li>\n<p>With <strong>more than 730,000</strong> Youtube subscribers and <strong>over 100 Million</strong> views his teachings have been able to reach Millions of people all around the world</p>\n</li>\n</ul>\n<p> The built in learning center allows you to track which videos you <strong>have or have not</strong> seen or watched. This is a great feature that gives the student the ability to learn at their own pace. </p>\n<p>Still undecided? Check out the value that\'s in this course.</p>\n<p> 23 Lectures equals out to be 6 hours of one-on-one lessons with Erich. That holds a value of $600 ($100/hr) and you get all of these videos, lectures, and PDFs for FREE. </p>\n<ul>\n<li>\n<p>Nearly 30 years of guitar experience both teaching and playing</p>\n</li>\n<li>\n<p>Incredible $600 value for Free</p>\n</li>\n</ul>\n<p>Add 2 <em>Bonus Videos</em> - That Makes it a Total of 25 Videos!</p>\n<p> <strong>Special Tip:</strong> You\'re also the first to be notified about any promo codes for any of my other Udemy courses but you have to become a student of this free course to receive these special one-time promo codes. </p>\n<p> <strong>In all honesty, you can\'t find a hook-up as good as this anywhere else. 25 videos that will quickly help anyone get started with playing guitar ALL for Free.</strong> </p>\n<p> My guarantee is that you will see great guitar results if you follow this course and put in the practice. </p>\n<p> <strong><em>Scroll up and click on the </em>"Start Learning Now"<em> button.</em></strong> </p>\n<p> Check out what our students have to say. Read the reviews. </p>\n<p> Get Started Today</p>',
viewCount: 98,
totalRatingStars: 12,
reviewCount: 3,
reviews: [
{
ratingStars: 4,
feedback:
'The information about purchasing a guitar was very intuitive. I already own three and what you said about budget, sound and feel made me realize that I did things right when I bought the guitars.'
},
{
ratingStars: 5,
feedback:
"The technique to mute the strings isn't appropriate and can lead to bad habits. Overall it's fine to know different aspects though."
},
{
ratingStars: 3,
feedback:
'Sessions disjoined. Good content in some areas but little playing practice to action the theory and techniques taught.'
}
],
chapters: [
{
video: 'Acoustic Guitar and Electric Guitar Lessons Getting Started - 1.mp4',
title: 'Introduction Video'
},
{
video: 'Acoustic Guitar and Electric Guitar Lessons Getting Started - 2.mp4',
title: 'Choosing an Acoustic guitar'
},
{
video: 'Acoustic Guitar and Electric Guitar Lessons Getting Started - 3.mp4',
title: 'Choosing an Electric guitar'
},
{
video: 'Acoustic Guitar and Electric Guitar Lessons Getting Started - 4.mp4',
title: 'Compare between the two guitars'
}
],
thumbnail:
'https://images.unsplash.com/photo-1525201548942-d8732f6617a0?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1770&q=80',
basePrice: 179
},
{
title: 'Complete Guitar Lessons System - Beginner to Advanced',
shortDesc:
'All-in-one Guitar Course, Fingerstyle Guitar, Blues Guitar, Acoustic Guitar, Electric Guitar & Fingerpicking Guitarra',
longDesc:
'<p>Would You Like to Eliminate Every Struggle That You Are Faced With When Starting to Play Guitar?</p>\n<p> This course is your <strong>"<em>Ticket</em>"</strong> to playing guitar. <strong>It is the most <em>direct and to the point</em> complete online guitar course.</strong> </p>\n<p>Follow the Videos in the Exact Same Order and You Will See a Huge Positive Change in Your Playing</p>\n<ul>\n<li>\n<p>306 Lectures/Videos with PDF Attachments</p>\n</li>\n<li>\n<p>Over 40 hours of video</p>\n</li>\n<li>\n<p>It\'s available on a PC or MAC and there is a iPad, iPhone and Android app ready to go! </p>\n</li>\n<li>\n<p>Keeping track of which videos(lectures) you have already watched is a breeze. Udemy has a great way of keeping track of your completed lessons(lectures).</p>\n</li>\n<li>\n<p>The entire course is organized in step-by-step easy to follow layout</p>\n</li>\n</ul>\n<p> The more you practice the better you will get. With the <em>Right Practice</em> style you will be able to witness fast results! </p>\n<p> Erich\'s teachings are different than all of the other online teachers. He has made it super easy to be successful at playing guitar. All you have to do is follow the videos in order and put together some good practice habits. </p>\n<p>Here is what Renee Martin had to say about Erichs Course: See reviews at the bottom.</p>\n<p> <strong>"WOW! 0 to 60 in 306 Lessons!</strong> </p>',
viewCount: 98,
totalRatingStars: 9,
reviewCount: 2,
reviews: [
{
ratingStars: 4,
feedback:
'The information about purchasing a guitar was very intuitive. I already own three and what you said about budget, sound and feel made me realize that I did things right when I bought the guitars.'
},
{
ratingStars: 5,
feedback:
"The technique to mute the strings isn't appropriate and can lead to bad habits. Overall it's fine to know different aspects though."
}
],
chapters: [
{
video: 'Complete Guitar Lessons System - Beginner to Advanced - 1.mp4',
title: 'THE CORE - MODULE 1'
},
{
video: 'Complete Guitar Lessons System - Beginner to Advanced - 2.mp4',
title: 'THE CORE - MODULE 2'
},
{
video: 'Complete Guitar Lessons System - Beginner to Advanced - 3.mp4',
title: 'THE CORE - MODULE 3'
}
],
thumbnail:
'https://images.unsplash.com/photo-1522536421511-14c9073df899?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1770&q=80',
basePrice: 149
},
{
title: 'Elite Singing Techniques - Phase I',
shortDesc:
'All-in-one Guitar Course, Fingerstyle Guitar, Blues Guitar, Acoustic Guitar, Electric Guitar & Fingerpicking Guitarra',
longDesc:
'<p>Would You Like to Eliminate Every Struggle That You Are Faced With When Starting to Play Guitar?</p>\n<p> This course is your <strong>"<em>Ticket</em>"</strong> to playing guitar. <strong>It is the most <em>direct and to the point</em> complete online guitar course.</strong> </p>\n<p>Follow the Videos in the Exact Same Order and You Will See a Huge Positive Change in Your Playing</p>\n<ul>\n<li>\n<p>306 Lectures/Videos with PDF Attachments</p>\n</li>\n<li>\n<p>Over 40 hours of video</p>\n</li>\n<li>\n<p>It\'s available on a PC or MAC and there is a iPad, iPhone and Android app ready to go! </p>\n</li>\n<li>\n<p>Keeping track of which videos(lectures) you have already watched is a breeze. Udemy has a great way of keeping track of your completed lessons(lectures).</p>\n</li>\n<li>\n<p>The entire course is organized in step-by-step easy to follow layout</p>\n</li>\n</ul>\n<p> The more you practice the better you will get. With the <em>Right Practice</em> style you will be able to witness fast results! </p>\n<p> Erich\'s teachings are different than all of the other online teachers. He has made it super easy to be successful at playing guitar. All you have to do is follow the videos in order and put together some good practice habits. </p>\n<p>Here is what Renee Martin had to say about Erichs Course: See reviews at the bottom.</p>\n<p> <strong>"WOW! 0 to 60 in 306 Lessons!</strong> </p>',
viewCount: 98,
totalRatingStars: 14,
reviewCount: 3,
reviews: [
{
ratingStars: 4,
feedback:
'The information about purchasing a guitar was very intuitive. I already own three and what you said about budget, sound and feel made me realize that I did things right when I bought the guitars.'
},
{
ratingStars: 5,
feedback:
"The technique to mute the strings isn't appropriate and can lead to bad habits. Overall it's fine to know different aspects though."
},
{
ratingStars: 5,
feedback: 'Nice vocal.'
}
],
chapters: [
{
video: 'Elite Singing Techniques - Phase I - 1.mp4',
title: 'Vocal 1'
},
{
video: 'Elite Singing Techniques - Phase I - 2.mp4',
title: 'Vocal 2'
},
{
video: 'Elite Singing Techniques - Phase I - 3.mp4',
title: 'Vocal 3'
}
],
thumbnail:
'https://img.freepik.com/premium-photo/young-pretty-woman-happy-motivated-singing-song-with-microphone-presenting-event-having-party-enjoy-moment_1258-5909.jpg?w=2000',
basePrice: 99
},
{
title: 'Mixing for Music Producers',
shortDesc:
'All-in-one Guitar Course, Fingerstyle Guitar, Blues Guitar, Acoustic Guitar, Electric Guitar & Fingerpicking Guitarra',
longDesc:
'<p>Would You Like to Eliminate Every Struggle That You Are Faced With When Starting to Play Guitar?</p>\n<p> This course is your <strong>"<em>Ticket</em>"</strong> to playing guitar. <strong>It is the most <em>direct and to the point</em> complete online guitar course.</strong> </p>\n<p>Follow the Videos in the Exact Same Order and You Will See a Huge Positive Change in Your Playing</p>\n<ul>\n<li>\n<p>306 Lectures/Videos with PDF Attachments</p>\n</li>\n<li>\n<p>Over 40 hours of video</p>\n</li>\n<li>\n<p>It\'s available on a PC or MAC and there is a iPad, iPhone and Android app ready to go! </p>\n</li>\n<li>\n<p>Keeping track of which videos(lectures) you have already watched is a breeze. Udemy has a great way of keeping track of your completed lessons(lectures).</p>\n</li>\n<li>\n<p>The entire course is organized in step-by-step easy to follow layout</p>\n</li>\n</ul>\n<p> The more you practice the better you will get. With the <em>Right Practice</em> style you will be able to witness fast results! </p>\n<p> Erich\'s teachings are different than all of the other online teachers. He has made it super easy to be successful at playing guitar. All you have to do is follow the videos in order and put together some good practice habits. </p>\n<p>Here is what Renee Martin had to say about Erichs Course: See reviews at the bottom.</p>\n<p> <strong>"WOW! 0 to 60 in 306 Lessons!</strong> </p>',
viewCount: 98,
totalRatingStars: 14,
reviewCount: 3,
reviews: [
{
ratingStars: 4,
feedback:
'The information about purchasing a guitar was very intuitive. I already own three and what you said about budget, sound and feel made me realize that I did things right when I bought the guitars.'
},
{
ratingStars: 5,
feedback:
"The technique to mute the strings isn't appropriate and can lead to bad habits. Overall it's fine to know different aspects though."
},
{
ratingStars: 5,
feedback: 'Nice vocal.'
}
],
chapters: [
{
video: 'Mixing for Music Producers - 1.mp4',
title: 'Introduction to DJ'
},
{
video: 'Mixing for Music Producers - 2.mp4',
title: 'Mixing with MIDI'
},
{
video: 'Mixing for Music Producers - 3.mp4',
title: 'Introducing Logic Pro X'
}
],
thumbnail:
'https://online.berklee.edu/takenote/wp-content/uploads/2020/11/what_music_producers_do_article_image_2020.jpg',
basePrice: 499
}
]
},
{
image: 'https://s.udemycdn.com/home/top-categories/lohp-category-business-2x-v2.jpg',
name: 'Business',
courses: [
{
title: 'Introduction to Trading',
shortDesc:
'Learn javascript online and supercharge your web design with this Javascript for beginners training course.',
longDesc:
'<p>Take this Javascript training course and start learning Javascript today.<br><br>"As a business guy I have no place in programming." Ten years ago you could have gotten away with that statement. Today you say that to your colleagues and they scoff at you before they go back to their computers to fix real problems and do real work.<br><br>If you want to do something useful start by learning Javascript . In these days when the browser is central to all computer use knowing "the language of the browser" is the most important step. A few years ago Javascript potential was uncertain and many programmers considered it useless. These days however competent programmers have identified Javascript real potential and uses and it has gone from a toy language to the main language of the browser. It has become one of the most useful languages of this era. Every developer needs at least a basic understanding of Javascript. A developer who knows Javascript is the rockstar of the company and is in constant demand by employers. Our online Javascript</p>\n<p>course will get you started by teaching all the essential aspects of coding in Javascript. So... what\'s it gonna be? Do you want to supercharge your career and be in constant demand by employers? Do you want to learn how to create dynamic and innovative Javascript documents? Start programming today with our Javascript course for Beginners training and take control of your career.</p>',
viewCount: 486,
totalRatingStars: 11,
reviewCount: 3,
reviews: [
{
ratingStars: 4,
feedback:
'Excellent explanation with accompanying videos. I expected a few more videos in this session to help me learn more about JavaScript.'
},
{
ratingStars: 2,
feedback: 'Very good but some of the lab instructions are a little vague for a beginner.'
},
{
ratingStars: 5,
feedback: 'Not bad not also not good'
}
],
chapters: [
{
video: 'Introduction to Trading - 1.mp4',
title: 'Javascript for Beginners'
},
{
video: 'Introduction to Trading - 2.mp4',
title: 'Course Introduction'
},
{
video: 'Introduction to Trading - 3.mp4',
title: 'Introducing Mark and the course'
}
],
thumbnail:
'https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxzZWFyY2h8Mnx8dHJhZGluZ3xlbnwwfHwwfHw%3D&w=1000&q=80',
basePrice: 399
},
{
title: 'Marketing',
shortDesc:
'Understand and enjoy classical music at your own pace. A music history course, including a music theory introduction.',
longDesc:
'<p><strong>Completely Updated for 2023/2024 with 40 NEW lectures coding activities and projects! </strong></p>\n<p>Learn What It Takes to Code Dynamic, Professional Websites and Web Apps From The Comfort of Your Own Home </p>\n<p>Do you ever browse the internet wondering how your favorite websites were built? Facebook, Twitter, Amazon—they were all created by people who at one point in time didn’t know anything about coding. How did they obtain this knowledge? </p>\n<p>In this comprehensive course, I’m going to show you everything you need to know so that you can follow in these people’s footsteps. </p>\n<p>You’re going to learn how to code AND you’re going to become a certified professional from a recognized international trainer. And best of all, you’re going to have fun doing it. </p>\n<p>You Don’t Have to Be a Genius or a Mathematical Wizard. </p>\n<p>So many people believe that you must have a special ‘gift’ to create professional-quality, dynamic websites/web apps. I’m here to tell you once and for all that this is false. All you need to have is the desire to learn and the ability to follow instructions—that’s it! </p>\n<p>Our course starts teaching basic coding principles and develops your coding skills in a variety of languages from beginner through to advanced. Here it is, once and for all, a complete guide that will take you from novice to web developer. </p>\n<p>Skip Hours of Frustration and Thousands of Wasted Dollars and Become 100% Certified </p>\n<p>The internet has changed the rules of doing business. More and more companies are migrating online while many new, never before seen businesses are created every day thanks to the power of this phenomenon. You know what that means? Higher demand for people just like you! </p>\n<p>But the problem for these businesses is that while demand is high, supply is short. </p>\n<p>Please don’t let a lack of knowledge stop you from having the career of your dreams, not when the knowledge you need is right here and is extremely affordable. </p>\n<p>Don’t worry, you won’t need to buy any additional courses, it’s all here. No need to spend four years and over $15,000 per year in college tuition either—it really is all here. From HTML to CSS then to Javascript and finally PHP, you will learn how to Become a Certified Web Developer. </p>\n<p>It Doesn’t Matter Where You’re Starting From...You Can Do It! </p>\n<p>Maybe: </p>\n<p> ● You’re planning on studying coding at college and want to build a rock-solid foundation so that you have a huge head start before your course begins? </p>\n<p> ● You’re dissatisfied with your current job and want to learn exactly what it takes to become a fully qualified web developer? </p>\n<p> ● You’re currently working in IT but want to expand your skill base so that you’re 100% up to date with the latest developments in web technology? </p>\n<p> ● You want to develop mobile apps or websites on the side to create some additional income while retaining your current job? </p>\n<p><strong>Learn Skills That Will Benefit You for The Rest of Your Life </strong></p>\n<p>- Imagine being able to create a web app that is downloaded by millions of paying customers—or a website that’s visited by people from all seven continents. </p>\n<p>- Imagine the limitless opportunities that having these programming skills will give you. </p>\n<p>- Imagine working in a field that challenges you and allows you to express yourself freely every day. </p>\n<p>- Imagine being paid extremely well for developing products and services that can help change people’s lives. </p>\n<p>Stop imagining and take action! It’s time to start your journey. Your future is waiting for you...</p>',
viewCount: 194,
totalRatingStars: 12,
reviewCount: 4,
reviews: [
{
ratingStars: 3,
feedback:
'I loved the teaching and the exercise help me to understand the topic more than just watching the video.'
},
{
ratingStars: 3,
feedback:
'Mark is very dedicated, has great knowledge and transfers it through his videos. Easy to understand and follow. Thank you for this amazing course!'
},
{
ratingStars: 2,
feedback: 'Learned a lot through this course.'
},
{
ratingStars: 4,
feedback: 'A pretty good start to my journey becoming a web developer.'
}
],
chapters: [
{
video: 'Marketing - 1.mp4',
title: 'About the course'
},
{
video: 'Marketing - 2.mp4',
title: 'About our certification'
},
{
video: 'Marketing - 3.mp4',
title: 'Getting your questions answered'
}
],
thumbnail: 'https://www.lucidadvertising.com/wp-content/uploads/2020/06/marketing.jpg',
basePrice: 349
},
{
title: 'How to start your own business',
shortDesc: 'The simplest way to learn C# programming.',
longDesc:
'<p><strong>Learn C# Programming</strong> <strong>(in ten easy steps)</strong> <em>[Version 2]</em> is suitable for <em>beginner </em>programmers or anyone with experience in another programming language who needs to learn C# from the ground up. Step-by-step it explains how to write C# code to develop Windows applications using either the <strong>free Visual Studio Community Edition</strong> or a commercial edition of Microsoft Visual Studio (it even explains how to write C# programs using free tools for OS X). This is the completely revised and updated second version of this course. </p>\n<p><strong>C#</strong> is one of the most widely used an important of all modern programming languages. If you need to learn C# <em>quickly</em> and <em>painlessly</em>, this is the perfect course.</p>\n<p>You will begin by learning the core features of programming – variables, constants, functions and data types. You will move on rapidly to learn about Object Orientation and the more advanced features of C# and the .NET framework such as file-handling, data-streaming, dealing with exceptions (errors) and overriding methods. Even if you start out as a complete beginner, by the end of this course you will have built a really solid foundation of programming knowledge and skills.</p>\n<p>All the <strong>source code</strong> of sample projects is provided ready for you to download, run and modify. The course also includes an <strong>eBook </strong>that provides even more information on the topics being discussed. And there are also interactive <strong>quizzes </strong>to test your understanding of each major topic.</p>\n<p>The course instructor, <em>Huw Collingbourne</em>, is Director of Technology with SapphireSteel Software, a company that specialises in Visual Studio development tools (written in C#) for professional programmers.</p>\n<p><em>Learn C# Programming (in ten easy steps)</em> is the fastest and simplest way to help you make the move from coding novice to professional programmer. The first version of this course was launched in 2012. The current version has been completely re-made and expanded with numerous new lessons. As an added bonus, <strong>the complete version 1</strong> of the course (<em>almost 4 additional hours of video instruction</em>) is also included as a free download.</p>',
viewCount: 122,
totalRatingStars: 12,
reviewCount: 4,
reviews: [
{
ratingStars: 2,
feedback: 'Definitely helpful for my computer graphics course at school.'
},
{
ratingStars: 3,
feedback: 'Not using the lastest version of Visual Studio.'
},
{
ratingStars: 5,
feedback:
'Speech pattern is very relaxed and easy to understand. Gives very thorough explanations.Never talks down to his audience. Conveys interest and excitement about the subject in his speech patterns.'
},
{
ratingStars: 2,
feedback:
'Excellent introductory course to C#, with lots of work put in by the author to help keep things interesting.'
}
],
chapters: [
{
video: 'How to start your own business - 1.mp4',
title: 'Install Visual Studio'
},
{
video: 'How to start your own business - 2.mp4',
title: 'Your first C# project'
},
{
video: 'How to start your own business - 3.mp4',
title: 'Adding components to a form'
}
],
thumbnail:
'https://media.istockphoto.com/id/1413766112/photo/successful-mature-businessman-looking-at-camera-with-confidence.jpg?b=1&s=170667a&w=0&k=20&c=lrHSjzuqKIAC76-vpOhzR7pRsP38DGPWt7x7SOFbm0Q=',
basePrice: 379
},
{
title: 'Business Analyst',
shortDesc: 'Create Elegant, Powerful Web and Mobile Applications Using AJAX.',
longDesc:
'<p>You’ve learned a little Javascript, but you still look at websites with slick, smooth and elegant user interfaces and want to know how web developers create that. The answer is simple: Ajax. You’ve probably heard of it, but you’ve always wondered “What is Ajax”? Ajax is simply Asynchronous Javascript and XML. By taking our Ajax course, you can make pages on your web application respond quickly, and with a minimum of screen refreshes.</p>\n<p><br>With our Ajax course and a little Javascript knowledge you can use Ajax to take database information and store, alter, sort and conditionally format it all on the client side. This minimizes the load on your server and makes your applications respond quickly and without reloading the HTML page. Ajax communicates with the server behind the scenes while your user continues to use your web site, accessing the information they want. Our course will show you numerous Ajax examples and help you become proficient in using Ajax.<br><br>In our Ajax course, master trainer Mark Lassoff takes you through the basics of Ajax right to advanced topics like parsing JSON responses from web services. Our Ajax course is recommended for all web developers who want to improve their client side skills, and make professional, fast and responsive web applications.</p>',
viewCount: 562,
totalRatingStars: 7,
reviewCount: 3,
reviews: [
{
ratingStars: 2,
feedback: 'Instructor talks too fast. Gotta watch it on slower playback speed.'
},
{
ratingStars: 4,
feedback:
'Es un curso demasiado básico y está muy desactualizado. Podría llegar a ser útil para personas que apenas está ingresadno al mundo del ajax pero no lo veo como una buena base sino un pequeño pantallaso. No veo la necesitdad de armar un json de la forma en la que se hizo.'
},
{
ratingStars: 1,
feedback:
'It is quite interesting, especially for the practical part. It is very dynamic too and quite organized and well explained. The only thing I would like you to add more information to configure localhost 8888 and try at the same time, maybe with Xampp?'
}
],
chapters: [
{
video: 'Business Analyst - 1.mp4',
title: 'Ajaxified Web Sites'
},
{
video: 'Business Analyst - 2.mp4',
title: 'Dynamic content placement'
},
{
video: 'Business Analyst - 3.mp4',
title: 'The XMLHTTP Request Object'
}
],
thumbnail: 'https://images.viblo.asia/59f9277c-323f-4c6a-b151-ca52f8778db5.jpg',
basePrice: 429
},
{
title: 'Financial',
shortDesc:
'Learn how to create desktop and Internet GUI Java programs and take your Java programming to the next level.',
longDesc:
"<p>This course teaches you how to create desktop and web-based applications using Java Swing, Java's built-in user interface toolkit. Each tutorial is fairly self-contained; but we'll also build two complete applications step by step along the way, so you can choose either to work through the whole course or to dip in and out.</p>\n<p>Among other things we'll look at nearly all Swing widgets, we'll take a look at JDBC for database access, the graphics API, model-view-controller (MVC) architecture, serialization for saving data, the listener-event model and even basic animation.</p>\n<p>When you finish the course, you'll be an advanced Swing developer, capable of creating complex and scalable Swing GUI applications.</p>",
viewCount: 676,
totalRatingStars: 12,
reviewCount: 3,
reviews: [
{
ratingStars: 5,
feedback:
'Ive always wanted to get at least a good depth of Java Swing knowledge... YouTube was just an okay resource, but this course is an absolute eye-opener and a very encouraging one. Thank you for this course, John. Im sure many like myself have really benefited from this course.'
},
{
ratingStars: 5,
feedback:
'John gives easy-to-follow explanations, amazing examples, and also teaches design principles that were unexpected, but greatly appreciated.'
},
{
ratingStars: 2,
feedback:
'This course is perfect and relevant even today. Im learning so much, not only about swing, but MVC and more. There are a few spots of trouble, like the database file not downloading, but you can easily find Johns work on GitHub under Cave of Programming or recreate the file from his well-explained videos. I highly recommend this course. Dont be put off by its age.'
}
],
chapters: [
{
video: 'Financial - 1.mp4',
title: 'About the course'
},
{
video: 'Financial - 2.mp4',
title: 'About our certification'
},
{
video: 'Financial - 3.mp4',
title: 'Getting your questions answered'
}
],
thumbnail:
'https://img.freepik.com/free-vector/finance-financial-performance-concept-illustration_53876-40450.jpg?w=2000',
basePrice: 279
}
]
},
{
image: 'https://s.udemycdn.com/home/top-categories/lohp-category-personal-development-2x-v2.jpg',
name: 'Personal Development',
courses: [
{
title: 'Learn how to learn',
shortDesc:
'Understand and enjoy classical music at your own pace. A music history course, including a music theory introduction.',
longDesc:
'<p> <strong>Music appreciation for the 21st century. Learn about Classical Music in the Western world from the Middle Ages to the present. </strong> </p>\n<p> You’ll begin with an introduction to the various elements of music -- for example, melody, rhythm, pitch and harmony – to give you the basics and vocabulary of music theory to understand and appreciate any type of music. You’ll then explore the History of Classical Music through its various stylistic periods, from medieval chant right up to the current cutting edge. Anyone interested in classical music will benefit from this course. </p>\n<p> ______________________________________________________________________ </p>\n<p> <strong> About this course: </strong> </p>\n<ol>\n<li>\n<p>Over 3800 happy students</p>\n</li>\n<li>\n<p>Updated regularly</p>\n</li>\n<li>\n<p>Full, free lifetime access</p>\n</li>\n<li>\n<p>All future extra and upgraded lectures are always included for free</p>\n</li>\n<li>\n<p>Unconditional Udemy 30 day money-back guarantee</p>\n</li>\n<li>\n<p><strong>See testimonials from former students below</strong></p>\n</li>\n</ol>\n<p> ______________________________________________________________________ </p>\n<p> This course is structured in 32 sections; </p>\n<p> • the first section is devoted to the elements of music in order to give you a detailed primer in music theory: melody, rhythm, pitch, harmony, texture, tempo, dynamics and form. Section 1 includes a <strong>Short History of Rock and Roll</strong> to illustrate the musical elements and musical style. </p>\n<p> After that, each section is devoted to one of the broad eras of music history: </p>\n<p> <strong> • The Middle Ages.</strong> Learn about early music beginning with monophony and how polyphony developed during the period of the building of the great cathedrals. </p>\n<p> <strong> • The Renaissance.</strong> What was happening in music during the period in which Michelangelo was painting the Sistine Chapel? A return to some Ancient ideals led to a rediscovery of the science of acoustics, providing a basis for the theory of modern harmony. How the course of music changed as a result of Martin Luther’s break from the Church. </p>\n<p> <strong> • The Baroque.</strong> Here we have the origins of opera, as well as a flowering of instrumental music, culminating in the works of Bach, Handel and Vivaldi. </p>\n<p> <strong> • The Classical.</strong> In reaction to the florid complexities of the Baroque, and influenced by the Age of Reason, the Classical period focused on simplicity and elegance, producing such composers as Haydn, Mozart and Beethoven. </p>\n<p> <strong> • Romanticism.</strong> The Age of Reason was too “reasonable” for the the Romanticists. They valued heightened emotion over elegance. The music of Schumann, Chopin, Wagner, Tchaikovsky, Verdi and Puccini were some of its greatest accomplishments. </p>\n<p> <strong> • The Modern Period.</strong> Formerly referred to as the 20th century period, it now needs to reflect its expansion into the 21st century. Some of the greatest composers of this period have been Stravinsky, Bartok, Schoenberg, Britten, Shostakovich, Ives, Copland and Barber. </p>\n<p> • We conclude with a retrospective and some final remarks to wrap it all up.</p>',
viewCount: 983,
totalRatingStars: 9,
reviewCount: 3,
reviews: [
{
ratingStars: 2,
feedback:
"I wanted to thank you, Bill Neely, for sharing your knowledge with us. This has been a super-duper class, and I find myself a little sad to find it drawing to a close. I've always enjoyed classical music rather passively; I now feel that I can be an active participant, with a deeper understanding of the musical concepts, the composers themselves, and their historical context. Very cool!"
},
{
ratingStars: 4,
feedback:
'Excellent! You just gotta know your Staccato from your Legato it’s that simple. Seriously, I’m really enjoying the instructions it’s working for me what can I say bravo Eric! Thanks eh’ ??????? Check out his YouTube: Guitar Sage'
},
{
ratingStars: 3,
feedback: 'Excellent! Would highly recomment this course!'
}
],
chapters: [
{
video: 'Learn how to learn - 1.mp4',
title: 'Introductory Overview'
},
{
video: 'Learn how to learn - 2.mp4',
title: 'A history of Rock and Roll, Part 1'
},
{
video: 'Learn how to learn - 3.mp4',
title: 'A history of Rock and Roll, Part 2'
}
],
thumbnail: 'https://static.toiimg.com/thumb/msid-64915824,width-1280,height-720,resizemode-4/.jpg',
basePrice: 99
},
{
title: 'Fail better',
shortDesc:
'Acoustic Guitar Theory, Fingerpicking, Fretting, Chords: Most Important 25 Videos For Getting Started w/ Playing Guitar',
longDesc:
'<p>Eliminate All the Major Struggles When Getting Started With Playing Guitar</p>\n<p> This course is the most <strong>"Direct and To the Point"</strong> course for ANY guitar player to watch and learn. </p>\n<p> Finding 2 Hours of Quality Guitar Lessons that can be accessed <em>anywhere</em> for FREE and at <em>any time</em> of the day is hard to come by these days. </p>\n<p> This free course solves all of those problems. </p>\n<p>Follow the Videos in the Exact Same Order and You Will See a Huge Positive Difference in Your Playing</p>\n<p> </p>\n<ul>\n<li>\n<p>Over 2 hours of Video and PDF attachments for most Lectures</p>\n</li>\n<li>\n<p>Access this course 24/7, Mac or PC, Iphone, Ipad and Android</p>\n</li>\n</ul>\n<p> Establishing solid core practice habits helps the speed of your results and also the quality of your results. </p>\n<p>You\'ll Go From First Time User, Picking Up the Guitar, to Chord Transitioning AND Everything in Between Including the 9 Most Essential Chords</p>\n<ul>\n<li>\n<p>Erich Andreas is Consider a Top 5 Online Guitar Teacher</p>\n</li>\n<li>\n<p>With <strong>more than 730,000</strong> Youtube subscribers and <strong>over 100 Million</strong> views his teachings have been able to reach Millions of people all around the world</p>\n</li>\n</ul>\n<p> The built in learning center allows you to track which videos you <strong>have or have not</strong> seen or watched. This is a great feature that gives the student the ability to learn at their own pace. </p>\n<p>Still undecided? Check out the value that\'s in this course.</p>\n<p> 23 Lectures equals out to be 6 hours of one-on-one lessons with Erich. That holds a value of $600 ($100/hr) and you get all of these videos, lectures, and PDFs for FREE. </p>\n<ul>\n<li>\n<p>Nearly 30 years of guitar experience both teaching and playing</p>\n</li>\n<li>\n<p>Incredible $600 value for Free</p>\n</li>\n</ul>\n<p>Add 2 <em>Bonus Videos</em> - That Makes it a Total of 25 Videos!</p>\n<p> <strong>Special Tip:</strong> You\'re also the first to be notified about any promo codes for any of my other Udemy courses but you have to become a student of this free course to receive these special one-time promo codes. </p>\n<p> <strong>In all honesty, you can\'t find a hook-up as good as this anywhere else. 25 videos that will quickly help anyone get started with playing guitar ALL for Free.</strong> </p>\n<p> My guarantee is that you will see great guitar results if you follow this course and put in the practice. </p>\n<p> <strong><em>Scroll up and click on the </em>"Start Learning Now"<em> button.</em></strong> </p>\n<p> Check out what our students have to say. Read the reviews. </p>\n<p> Get Started Today</p>',
viewCount: 436,
totalRatingStars: 8,
reviewCount: 3,
reviews: [
{
ratingStars: 4,
feedback:
'The information about purchasing a guitar was very intuitive. I already own three and what you said about budget, sound and feel made me realize that I did things right when I bought the guitars.'
},
{
ratingStars: 1,
feedback:
"The technique to mute the strings isn't appropriate and can lead to bad habits. Overall it's fine to know different aspects though."
},
{
ratingStars: 3,
feedback:
'Sessions disjoined. Good content in some areas but little playing practice to action the theory and techniques taught.'
}
],
chapters: [
{
video: 'Fail better - 1.mp4',
title: 'Introduction Video'
},
{
video: 'Fail better - 2.mp4',
title: 'Choosing an Acoustic guitar'
},
{
video: 'Fail better - 3.mp4',
title: 'Choosing an Electric guitar'
}
],
thumbnail: 'https://thumbs.dreamstime.com/b/pass-fail-red-pen-38454720.jpg',
basePrice: 169
},
{
title: 'Lazy is fine',
shortDesc:
'All-in-one Guitar Course, Fingerstyle Guitar, Blues Guitar, Acoustic Guitar, Electric Guitar & Fingerpicking Guitarra',
longDesc:
'<p>Would You Like to Eliminate Every Struggle That You Are Faced With When Starting to Play Guitar?</p>\n<p> This course is your <strong>"<em>Ticket</em>"</strong> to playing guitar. <strong>It is the most <em>direct and to the point</em> complete online guitar course.</strong> </p>\n<p>Follow the Videos in the Exact Same Order and You Will See a Huge Positive Change in Your Playing</p>\n<ul>\n<li>\n<p>306 Lectures/Videos with PDF Attachments</p>\n</li>\n<li>\n<p>Over 40 hours of video</p>\n</li>\n<li>\n<p>It\'s available on a PC or MAC and there is a iPad, iPhone and Android app ready to go! </p>\n</li>\n<li>\n<p>Keeping track of which videos(lectures) you have already watched is a breeze. Udemy has a great way of keeping track of your completed lessons(lectures).</p>\n</li>\n<li>\n<p>The entire course is organized in step-by-step easy to follow layout</p>\n</li>\n</ul>\n<p> The more you practice the better you will get. With the <em>Right Practice</em> style you will be able to witness fast results! </p>\n<p> Erich\'s teachings are different than all of the other online teachers. He has made it super easy to be successful at playing guitar. All you have to do is follow the videos in order and put together some good practice habits. </p>\n<p>Here is what Renee Martin had to say about Erichs Course: See reviews at the bottom.</p>\n<p> <strong>"WOW! 0 to 60 in 306 Lessons!</strong> </p>',
viewCount: 444,
totalRatingStars: 7,
reviewCount: 2,
reviews: [
{
ratingStars: 3,
feedback:
'The information about purchasing a guitar was very intuitive. I already own three and what you said about budget, sound and feel made me realize that I did things right when I bought the guitars.'
},
{
ratingStars: 4,
feedback:
"The technique to mute the strings isn't appropriate and can lead to bad habits. Overall it's fine to know different aspects though."
}
],
chapters: [
{
video: 'Lazy is fine - 1.mp4',
title: 'THE CORE - MODULE 1'
},
{
video: 'Lazy is fine - 2.mp4',
title: 'THE CORE - MODULE 2'
},
{
video: 'Lazy is fine - 3.mp4',
title: 'THE CORE - MODULE 3'
}
],
thumbnail: 'https://www.oberlo.com/media/1605807659-image3.jpg?fit=max&fm=jpg&w=1824',
basePrice: 259
},
{
title: 'Love yourself',
shortDesc:
'All-in-one Guitar Course, Fingerstyle Guitar, Blues Guitar, Acoustic Guitar, Electric Guitar & Fingerpicking Guitarra',
longDesc:
'<p>Would You Like to Eliminate Every Struggle That You Are Faced With When Starting to Play Guitar?</p>\n<p> This course is your <strong>"<em>Ticket</em>"</strong> to playing guitar. <strong>It is the most <em>direct and to the point</em> complete online guitar course.</strong> </p>\n<p>Follow the Videos in the Exact Same Order and You Will See a Huge Positive Change in Your Playing</p>\n<ul>\n<li>\n<p>306 Lectures/Videos with PDF Attachments</p>\n</li>\n<li>\n<p>Over 40 hours of video</p>\n</li>\n<li>\n<p>It\'s available on a PC or MAC and there is a iPad, iPhone and Android app ready to go! </p>\n</li>\n<li>\n<p>Keeping track of which videos(lectures) you have already watched is a breeze. Udemy has a great way of keeping track of your completed lessons(lectures).</p>\n</li>\n<li>\n<p>The entire course is organized in step-by-step easy to follow layout</p>\n</li>\n</ul>\n<p> The more you practice the better you will get. With the <em>Right Practice</em> style you will be able to witness fast results! </p>\n<p> Erich\'s teachings are different than all of the other online teachers. He has made it super easy to be successful at playing guitar. All you have to do is follow the videos in order and put together some good practice habits. </p>\n<p>Here is what Renee Martin had to say about Erichs Course: See reviews at the bottom.</p>\n<p> <strong>"WOW! 0 to 60 in 306 Lessons!</strong> </p>',
viewCount: 240,
totalRatingStars: 10,
reviewCount: 3,
reviews: [
{
ratingStars: 5,
feedback:
'The information about purchasing a guitar was very intuitive. I already own three and what you said about budget, sound and feel made me realize that I did things right when I bought the guitars.'
},
{
ratingStars: 2,
feedback:
"The technique to mute the strings isn't appropriate and can lead to bad habits. Overall it's fine to know different aspects though."
},
{
ratingStars: 3,
feedback: 'Nice vocal.'
}
],
chapters: [
{
video: 'Love yourself - 1.mp4',
title: 'Vocal 1'
},
{
video: 'Love yourself - 2.mp4',
title: 'Vocal 2'
},
{
video: 'Love yourself - 3.mp4',
title: 'Vocal 3'
}
],
thumbnail: 'https://www.healthshots.com/wp-content/uploads/2020/02/self-love-2.jpg',
basePrice: 399
},
{
title: 'Quality Sleep',
shortDesc:
'All-in-one Guitar Course, Fingerstyle Guitar, Blues Guitar, Acoustic Guitar, Electric Guitar & Fingerpicking Guitarra',
longDesc:
'<p>Would You Like to Eliminate Every Struggle That You Are Faced With When Starting to Play Guitar?</p>\n<p> This course is your <strong>"<em>Ticket</em>"</strong> to playing guitar. <strong>It is the most <em>direct and to the point</em> complete online guitar course.</strong> </p>\n<p>Follow the Videos in the Exact Same Order and You Will See a Huge Positive Change in Your Playing</p>\n<ul>\n<li>\n<p>306 Lectures/Videos with PDF Attachments</p>\n</li>\n<li>\n<p>Over 40 hours of video</p>\n</li>\n<li>\n<p>It\'s available on a PC or MAC and there is a iPad, iPhone and Android app ready to go! </p>\n</li>\n<li>\n<p>Keeping track of which videos(lectures) you have already watched is a breeze. Udemy has a great way of keeping track of your completed lessons(lectures).</p>\n</li>\n<li>\n<p>The entire course is organized in step-by-step easy to follow layout</p>\n</li>\n</ul>\n<p> The more you practice the better you will get. With the <em>Right Practice</em> style you will be able to witness fast results! </p>\n<p> Erich\'s teachings are different than all of the other online teachers. He has made it super easy to be successful at playing guitar. All you have to do is follow the videos in order and put together some good practice habits. </p>\n<p>Here is what Renee Martin had to say about Erichs Course: See reviews at the bottom.</p>\n<p> <strong>"WOW! 0 to 60 in 306 Lessons!</strong> </p>',
viewCount: 557,
totalRatingStars: 9,
reviewCount: 3,
reviews: [
{
ratingStars: 5,
feedback:
'The information about purchasing a guitar was very intuitive. I already own three and what you said about budget, sound and feel made me realize that I did things right when I bought the guitars.'
},
{
ratingStars: 3,
feedback:
"The technique to mute the strings isn't appropriate and can lead to bad habits. Overall it's fine to know different aspects though."
},
{
ratingStars: 1,
feedback: 'Nice vocal.'
}
],
chapters: [
{
video: 'Quality Sleep - 1.mp4',
title: 'Introduction to DJ'
},
{
video: 'Quality Sleep - 2.mp4',
title: 'Mixing with MIDI'
},
{
video: 'Quality Sleep - 3.mp4',
title: 'Introducing Logic Pro X'
}
],
thumbnail: 'https://www.helpguide.org/wp-content/uploads/young-woman-smiling-in-bed-stretching-arms-out.jpg',
basePrice: 129
}
]
}
]
}
const nukedb = async () => {
await User.collection.drop().then(() => console.log('User dropped'))
const userModels = await Promise.all(
users.map(async (user) => {
return await User.create({
email: user.email,
isVerified: true,
role: user.role,
name: user.name,
about: user.about
}).then(async (result) => {
result.password = user.password
return await result.save()
})
})
)
const students = userModels.filter((user) => user.role == 'student')
const lecturers = userModels.filter((user) => user.role == 'lecturer')
await UserOTPVerification.collection.drop().then(() => console.log('UserOTPVerification dropped'))
await Category.collection.drop().then(() => console.log('Category dropped'))
await Course.collection.drop().then(() => console.log('Course dropped'))
await Review.collection.drop().then(() => console.log('Review dropped'))
const categories = data.Categories
await Promise.all(
categories.map(async (category) => {
const courses = category.courses
const courseModels = await Promise.all(
courses.map(async (course) => {
const reviews = await Promise.all(
course.reviews.map(async (review) => {
const student = students[Math.floor(Math.random() * students.length)]
return await Review.create({
author: student._id,
ratingStars: review.ratingStars,
feedback: review.feedback
})
})
)
const chapters = await Promise.all(
course.chapters.map(async (chapter) => {
return await Chapter.create({
video: `https://apluscademy.sgp1.cdn.digitaloceanspaces.com/${chapter.video}`,
title: chapter.title
})
})
)
const lecturer = lecturers[Math.floor(Math.random() * lecturers.length)]
const reviewIds = reviews.map((review) => review._id)
return await Course.create({
lecturer: lecturer._id,
title: course.title,
shortDesc: course.shortDesc,
longDesc: course.longDesc,
markedAsComplete: true,
viewCount: course.viewCount,
totalRatingStars: course.totalRatingStars,
reviewCount: course.reviewCount,
basePrice: course.basePrice,
image: course.thumbnail,
reviews: reviewIds,
chapters: chapters,
category: category.name
})
})
)
const courseIds = courseModels.map((course) => course._id)
return await Category.create({ name: category.name, image: category.image, courses: courseIds })
})
).then(() => {
console.log('Category created')
})
}