-
Notifications
You must be signed in to change notification settings - Fork 0
/
coding_101_with_steve.json
1442 lines (1442 loc) · 102 KB
/
coding_101_with_steve.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"UCMNs3Jy_su9hk_5jjIUf2gA": {
"channel_statistics": {
"viewCount": "157956",
"subscriberCount": "2050",
"hiddenSubscriberCount": false,
"videoCount": "21"
},
"video_data": {
"j7CPPrgvCHY": {
"publishedAt": "2023-04-07T18:03:32Z",
"title": "YouTube Logo Design In Python \ud83d\ude0d || Python Coding Status #shorts #programming #pythoncoding #python",
"channelId": "UCMNs3Jy_su9hk_5jjIUf2gA",
"description": "In this video I'll show you simple YouTube logo design Step by step using Python Turtle Graphic Design \n\n\n#pythonforbeginners #pythonforbeginners #graphic #turtle #coding #python3 #pythonturtle #instareels \n\n#codingstatus \n#shorts \n#shortcodingvideo\n#codingstatusvideo \n#pythoncodingstatus \n#ytshort\n#programmingstatusvideo\n#pythontutorial\n#pythonstatus \n#pythonprogrammingstatus \n#codingloverstaus\n#pythoncodingstatus\n#programmingstatus\n#htmltutorial\n#codingdecoding\n#hackingstatus\n#americanreels\n#htmlandcss\n#javascripttutorial\n#htmlcoding \n#codingstatus \n#programminglife \n\nignore tag:-\nprogramming reels video\nCoding decoding video\ncoding status video\ncoding status full screen\ncoding status for whatsapp\ncoding status song\ncoding status in hindi\ncoding status laptop\ncoding attitude status,\nanonymous coding status,\ncoding best status\nbca coding status,\ncoding comedy status,\ncoding class status,\ncomputer coding status,\ncoding dream status,\ncoding diwali status,\ncoding happy diwali status,\ncoding whatsapp status english,\ncoding reality vs expectations status,\ncoding funny status,\ncoding whatsapp status full screen,\ncoding hacking status,\ni love coding status,\njava coding status,\ncoding lover status,\ncoding love status,\ncoding life status,\ncoding is my life status,\ncoding motivation status,\ncoding memes status,\ncoding music status,\nmedical coding status,\nmobile coding status,\nnew coding status,\nstatus on coding,\ncoding power status,\ncoding project status,\npython coding status,\nprogramming coding status,\ncoding expectation vs reality status,\ncoding sad status,\ncoding student status,\ncoding typing status,\ncoding whatsapp status tamil,\ncoding whatsapp status telugu,\ncoding lover whatsapp status tamil,\ncoding funny whatsapp status tamil,\ncoding life whatsapp status tamil,\npython coding whatsapp status tamil,\ncoding whatsapp status video,\ncoding status whatsapp,\ncoding status with song,\ncoding funny whatsapp status,\ncoding happy new year status,\ncoding 4k status\npython status for whatsapp \npython programming status \npython lover status\ncoding status \ncoding status for whatsapp \ncoding WhatsApp status \nprogramming status \npython status \npython whatsapp status \ncomputer science status \nprogrammer whatsapp status \ncoder whatsapp status \ncoder status \nprogramming status for whatsapp \ncomputer engineering status \ncomputer status for whatsapp \ncoding lover status \ncomputer lover whatsapp status \nnew coding status \nprogramming language whatsapp status",
"thumbnails": {
"default": {
"url": "https://i.ytimg.com/vi/j7CPPrgvCHY/default.jpg",
"width": 120,
"height": 90
},
"medium": {
"url": "https://i.ytimg.com/vi/j7CPPrgvCHY/mqdefault.jpg",
"width": 320,
"height": 180
},
"high": {
"url": "https://i.ytimg.com/vi/j7CPPrgvCHY/hqdefault.jpg",
"width": 480,
"height": 360
},
"standard": {
"url": "https://i.ytimg.com/vi/j7CPPrgvCHY/sddefault.jpg",
"width": 640,
"height": 480
},
"maxres": {
"url": "https://i.ytimg.com/vi/j7CPPrgvCHY/maxresdefault.jpg",
"width": 1280,
"height": 720
}
},
"channelTitle": "Coding 101 with Steve",
"categoryId": "27",
"liveBroadcastContent": "none",
"localized": {
"title": "YouTube Logo Design In Python \ud83d\ude0d || Python Coding Status #shorts #programming #pythoncoding #python",
"description": "In this video I'll show you simple YouTube logo design Step by step using Python Turtle Graphic Design \n\n\n#pythonforbeginners #pythonforbeginners #graphic #turtle #coding #python3 #pythonturtle #instareels \n\n#codingstatus \n#shorts \n#shortcodingvideo\n#codingstatusvideo \n#pythoncodingstatus \n#ytshort\n#programmingstatusvideo\n#pythontutorial\n#pythonstatus \n#pythonprogrammingstatus \n#codingloverstaus\n#pythoncodingstatus\n#programmingstatus\n#htmltutorial\n#codingdecoding\n#hackingstatus\n#americanreels\n#htmlandcss\n#javascripttutorial\n#htmlcoding \n#codingstatus \n#programminglife \n\nignore tag:-\nprogramming reels video\nCoding decoding video\ncoding status video\ncoding status full screen\ncoding status for whatsapp\ncoding status song\ncoding status in hindi\ncoding status laptop\ncoding attitude status,\nanonymous coding status,\ncoding best status\nbca coding status,\ncoding comedy status,\ncoding class status,\ncomputer coding status,\ncoding dream status,\ncoding diwali status,\ncoding happy diwali status,\ncoding whatsapp status english,\ncoding reality vs expectations status,\ncoding funny status,\ncoding whatsapp status full screen,\ncoding hacking status,\ni love coding status,\njava coding status,\ncoding lover status,\ncoding love status,\ncoding life status,\ncoding is my life status,\ncoding motivation status,\ncoding memes status,\ncoding music status,\nmedical coding status,\nmobile coding status,\nnew coding status,\nstatus on coding,\ncoding power status,\ncoding project status,\npython coding status,\nprogramming coding status,\ncoding expectation vs reality status,\ncoding sad status,\ncoding student status,\ncoding typing status,\ncoding whatsapp status tamil,\ncoding whatsapp status telugu,\ncoding lover whatsapp status tamil,\ncoding funny whatsapp status tamil,\ncoding life whatsapp status tamil,\npython coding whatsapp status tamil,\ncoding whatsapp status video,\ncoding status whatsapp,\ncoding status with song,\ncoding funny whatsapp status,\ncoding happy new year status,\ncoding 4k status\npython status for whatsapp \npython programming status \npython lover status\ncoding status \ncoding status for whatsapp \ncoding WhatsApp status \nprogramming status \npython status \npython whatsapp status \ncomputer science status \nprogrammer whatsapp status \ncoder whatsapp status \ncoder status \nprogramming status for whatsapp \ncomputer engineering status \ncomputer status for whatsapp \ncoding lover status \ncomputer lover whatsapp status \nnew coding status \nprogramming language whatsapp status"
},
"viewCount": "133",
"likeCount": "2",
"favoriteCount": "0",
"commentCount": "2",
"duration": "PT1M",
"dimension": "2d",
"definition": "hd",
"caption": "false",
"licensedContent": false,
"contentRating": {},
"projection": "rectangular",
"topicCategories": [
"https://en.wikipedia.org/wiki/Technology"
]
},
"QigH_NF7eIg": {
"publishedAt": "2023-04-06T15:53:55Z",
"title": "Python Internet Speedtest Checker in Just 4 Lines of Code #pythonprojects #shorts",
"channelId": "UCMNs3Jy_su9hk_5jjIUf2gA",
"description": "Create an Internet Speedtest Checker using Python with just 4 lines of code\n\nPython Internet Speedtest Checker \n#pythonforbeginners #python3 #pythonprogramming #pythontutorial",
"thumbnails": {
"default": {
"url": "https://i.ytimg.com/vi/QigH_NF7eIg/default.jpg",
"width": 120,
"height": 90
},
"medium": {
"url": "https://i.ytimg.com/vi/QigH_NF7eIg/mqdefault.jpg",
"width": 320,
"height": 180
},
"high": {
"url": "https://i.ytimg.com/vi/QigH_NF7eIg/hqdefault.jpg",
"width": 480,
"height": 360
},
"standard": {
"url": "https://i.ytimg.com/vi/QigH_NF7eIg/sddefault.jpg",
"width": 640,
"height": 480
},
"maxres": {
"url": "https://i.ytimg.com/vi/QigH_NF7eIg/maxresdefault.jpg",
"width": 1280,
"height": 720
}
},
"channelTitle": "Coding 101 with Steve",
"tags": [
"Python internet speedtest",
"python internet speed test",
"speedtest python",
"python internet speed test code",
"python internet speed",
"python internet speed check",
"internet speed test with python",
"speedtest cli python",
"how to check internet speed using python",
"test internet speed using python",
"how to do internet speed test using python",
"internet speed test using python"
],
"categoryId": "27",
"liveBroadcastContent": "none",
"localized": {
"title": "Python Internet Speedtest Checker in Just 4 Lines of Code #pythonprojects #shorts",
"description": "Create an Internet Speedtest Checker using Python with just 4 lines of code\n\nPython Internet Speedtest Checker \n#pythonforbeginners #python3 #pythonprogramming #pythontutorial"
},
"viewCount": "744",
"likeCount": "47",
"favoriteCount": "0",
"commentCount": "0",
"duration": "PT21S",
"dimension": "2d",
"definition": "hd",
"caption": "false",
"licensedContent": false,
"contentRating": {},
"projection": "rectangular",
"topicCategories": [
"https://en.wikipedia.org/wiki/Technology"
]
},
"1yuXeSSzXH8": {
"publishedAt": "2023-04-06T13:48:56Z",
"title": "Python Code To Iterate Over Two Lists At Once | Python Tips & Tricks #1 #pythontips #shorts",
"channelId": "UCMNs3Jy_su9hk_5jjIUf2gA",
"description": "Want to Loop over two or more lists in Python? Check my Python code To Iterate Over Two Lists At Once. \n\nCheck this python trick to iterate over two lists at the same time using for loop.\n\n#pythonforbeginners #pythonprogramming #pythontutorial #python #python3",
"thumbnails": {
"default": {
"url": "https://i.ytimg.com/vi/1yuXeSSzXH8/default.jpg",
"width": 120,
"height": 90
},
"medium": {
"url": "https://i.ytimg.com/vi/1yuXeSSzXH8/mqdefault.jpg",
"width": 320,
"height": 180
},
"high": {
"url": "https://i.ytimg.com/vi/1yuXeSSzXH8/hqdefault.jpg",
"width": 480,
"height": 360
},
"standard": {
"url": "https://i.ytimg.com/vi/1yuXeSSzXH8/sddefault.jpg",
"width": 640,
"height": 480
},
"maxres": {
"url": "https://i.ytimg.com/vi/1yuXeSSzXH8/maxresdefault.jpg",
"width": 1280,
"height": 720
}
},
"channelTitle": "Coding 101 with Steve",
"tags": [
"python iterate over two lists",
"python iterate over multiple lists",
"python code to loop through two lists",
"python code to loop through multiple lists",
"iterate over two lists at one using python",
"iterate two lists using python",
"python for beginners",
"python programming",
"python tutorial"
],
"categoryId": "27",
"liveBroadcastContent": "none",
"localized": {
"title": "Python Code To Iterate Over Two Lists At Once | Python Tips & Tricks #1 #pythontips #shorts",
"description": "Want to Loop over two or more lists in Python? Check my Python code To Iterate Over Two Lists At Once. \n\nCheck this python trick to iterate over two lists at the same time using for loop.\n\n#pythonforbeginners #pythonprogramming #pythontutorial #python #python3"
},
"viewCount": "363",
"likeCount": "11",
"favoriteCount": "0",
"commentCount": "2",
"duration": "PT21S",
"dimension": "2d",
"definition": "hd",
"caption": "false",
"licensedContent": false,
"contentRating": {},
"projection": "rectangular",
"topicCategories": [
"https://en.wikipedia.org/wiki/Knowledge"
]
},
"mrsoRUbSfVA": {
"publishedAt": "2023-04-06T08:20:23Z",
"title": "Python | 99% Failed To Guess The Output ! #pythonforbeginners #python #shorts",
"channelId": "UCMNs3Jy_su9hk_5jjIUf2gA",
"description": "This video is about guessing the output of a python program.\n99% failed to guess the output. So Give it a try!!!\n\n#pythonforbeginners #pythonquestions #python3 #pythonprogramming #python #pythontutorial",
"thumbnails": {
"default": {
"url": "https://i.ytimg.com/vi/mrsoRUbSfVA/default.jpg",
"width": 120,
"height": 90
},
"medium": {
"url": "https://i.ytimg.com/vi/mrsoRUbSfVA/mqdefault.jpg",
"width": 320,
"height": 180
},
"high": {
"url": "https://i.ytimg.com/vi/mrsoRUbSfVA/hqdefault.jpg",
"width": 480,
"height": 360
},
"standard": {
"url": "https://i.ytimg.com/vi/mrsoRUbSfVA/sddefault.jpg",
"width": 640,
"height": 480
},
"maxres": {
"url": "https://i.ytimg.com/vi/mrsoRUbSfVA/maxresdefault.jpg",
"width": 1280,
"height": 720
}
},
"channelTitle": "Coding 101 with Steve",
"tags": [
"python guess the output",
"guess the output python",
"python",
"python for beginners"
],
"categoryId": "27",
"liveBroadcastContent": "none",
"localized": {
"title": "Python | 99% Failed To Guess The Output ! #pythonforbeginners #python #shorts",
"description": "This video is about guessing the output of a python program.\n99% failed to guess the output. So Give it a try!!!\n\n#pythonforbeginners #pythonquestions #python3 #pythonprogramming #python #pythontutorial"
},
"viewCount": "135",
"likeCount": "7",
"favoriteCount": "0",
"commentCount": "0",
"duration": "PT17S",
"dimension": "2d",
"definition": "hd",
"caption": "false",
"licensedContent": false,
"contentRating": {},
"projection": "rectangular",
"topicCategories": [
"https://en.wikipedia.org/wiki/Knowledge"
]
},
"c2I_Rk3K4mc": {
"publishedAt": "2023-03-27T18:29:13Z",
"title": "Adsense Loading - All You Need To Know About Adsense Loading Method In 2023",
"channelId": "UCMNs3Jy_su9hk_5jjIUf2gA",
"description": "Adsense Loading - Are you struggling to earn a decent income through Google AdSense and considering using the Adsense Loading Method? \n\nBeware! In this video, we will expose the truth behind Adsense Loading Tricks and whether it is safe or genuine method to increase your AdSense revenue?\n\nWill you get banned if you use Adsense Loading Tricks?\n\nIn 2023, Google is smarter than ever and can easily detect Adsense Loading methods, leaving content creators and bloggers with no revenue earned through their deceptive practices.\n\nSo, before considering Adsense Loading methods, watch this video and understand the consequences of using such bad practices. Don't fall prey to scammers, they promise to increase your AdSense revenue by sending hundreds and thousands of clicks and generating traffic to your website, and instead use genuine methods to earn a sustainable income through AdSense.\n\n---- DISCLAIMER ----\nThe materials used are for educational and commentary purposes under the Fair Use doctrine, which permits the use of copyrighted material for certain purposes, such as criticism, comment, news reporting, teaching, scholarship, and research. We believe that our use of the copyrighted material falls under the Fair Use doctrine and is not an infringement of copyright. If you are the owner of any copyrighted material and believe that our use of it is not in compliance with the Fair Use doctrine, please contact us.\n\n#adsenseloading",
"thumbnails": {
"default": {
"url": "https://i.ytimg.com/vi/c2I_Rk3K4mc/default.jpg",
"width": 120,
"height": 90
},
"medium": {
"url": "https://i.ytimg.com/vi/c2I_Rk3K4mc/mqdefault.jpg",
"width": 320,
"height": 180
},
"high": {
"url": "https://i.ytimg.com/vi/c2I_Rk3K4mc/hqdefault.jpg",
"width": 480,
"height": 360
},
"standard": {
"url": "https://i.ytimg.com/vi/c2I_Rk3K4mc/sddefault.jpg",
"width": 640,
"height": 480
},
"maxres": {
"url": "https://i.ytimg.com/vi/c2I_Rk3K4mc/maxresdefault.jpg",
"width": 1280,
"height": 720
}
},
"channelTitle": "Coding 101 with Steve",
"tags": [
"adsense loading",
"adsense loading method",
"adsense loading method 2023",
"google adsense loading",
"google adsense loading method",
"what is adsense loading",
"adsense loading trick",
"adsense loading trick 2023",
"adsense loading 2023",
"adsense loading course",
"adsense loading kya hai",
"adsense loading kaise kare",
"adsense loading safe method",
"google adsense safe loading",
"google adsense loading 2023"
],
"categoryId": "27",
"liveBroadcastContent": "none",
"localized": {
"title": "Adsense Loading - All You Need To Know About Adsense Loading Method In 2023",
"description": "Adsense Loading - Are you struggling to earn a decent income through Google AdSense and considering using the Adsense Loading Method? \n\nBeware! In this video, we will expose the truth behind Adsense Loading Tricks and whether it is safe or genuine method to increase your AdSense revenue?\n\nWill you get banned if you use Adsense Loading Tricks?\n\nIn 2023, Google is smarter than ever and can easily detect Adsense Loading methods, leaving content creators and bloggers with no revenue earned through their deceptive practices.\n\nSo, before considering Adsense Loading methods, watch this video and understand the consequences of using such bad practices. Don't fall prey to scammers, they promise to increase your AdSense revenue by sending hundreds and thousands of clicks and generating traffic to your website, and instead use genuine methods to earn a sustainable income through AdSense.\n\n---- DISCLAIMER ----\nThe materials used are for educational and commentary purposes under the Fair Use doctrine, which permits the use of copyrighted material for certain purposes, such as criticism, comment, news reporting, teaching, scholarship, and research. We believe that our use of the copyrighted material falls under the Fair Use doctrine and is not an infringement of copyright. If you are the owner of any copyrighted material and believe that our use of it is not in compliance with the Fair Use doctrine, please contact us.\n\n#adsenseloading"
},
"defaultAudioLanguage": "en",
"viewCount": "764",
"likeCount": "15",
"favoriteCount": "0",
"commentCount": "2",
"duration": "PT3M35S",
"dimension": "2d",
"definition": "hd",
"caption": "false",
"licensedContent": true,
"contentRating": {},
"projection": "rectangular"
},
"IpFZbju0gkE": {
"publishedAt": "2023-03-20T13:37:57Z",
"title": "Node JS Interview Questions and Answers 2023 - Ace Your Node JS Interview | Basics",
"channelId": "UCMNs3Jy_su9hk_5jjIUf2gA",
"description": "Looking to prepare for a Node JS interview? Our video has got you covered with the Node JS interview questions and answers for the year 2023. \n\nIn this video, we will cover the basics of Node JS in the simplest language. Whether you're a beginner or an experienced developer, this video is made to help you improve your knowledge and feel confident during your interview. \n\nWatch our video now! and Stay tuned for Intermediate and advance level Node JS interview questions and answers.\n\nTimestamps:\n0:00 - Node js interview questions\n0:06 - What is Node.js?\n0:15 - What are the benefits of Node.js? Why to use Node.js?\n0:40 - How does Node.js work?\n0:59 - What is non-blocking and event-driven I/O model?\n2:15 - Where can you use Node.js? Real world applications?\n2:39 - What is npm?\n2:56 - What is REPL in context of Node.js?\n3:12 - What is callback?\n3:30 - What is package.json?",
"thumbnails": {
"default": {
"url": "https://i.ytimg.com/vi/IpFZbju0gkE/default.jpg",
"width": 120,
"height": 90
},
"medium": {
"url": "https://i.ytimg.com/vi/IpFZbju0gkE/mqdefault.jpg",
"width": 320,
"height": 180
},
"high": {
"url": "https://i.ytimg.com/vi/IpFZbju0gkE/hqdefault.jpg",
"width": 480,
"height": 360
},
"standard": {
"url": "https://i.ytimg.com/vi/IpFZbju0gkE/sddefault.jpg",
"width": 640,
"height": 480
},
"maxres": {
"url": "https://i.ytimg.com/vi/IpFZbju0gkE/maxresdefault.jpg",
"width": 1280,
"height": 720
}
},
"channelTitle": "Coding 101 with Steve",
"tags": [
"node js interview questions",
"node js interview questions 2023",
"node js interview",
"node js interview questions and answers",
"node js basic concepts",
"node js basic interview questions",
"what is node js",
"nodejs interview questions and answers",
"nodejs interview questions",
"node js interview for beginners",
"nodejs"
],
"categoryId": "27",
"liveBroadcastContent": "none",
"localized": {
"title": "Node JS Interview Questions and Answers 2023 - Ace Your Node JS Interview | Basics",
"description": "Looking to prepare for a Node JS interview? Our video has got you covered with the Node JS interview questions and answers for the year 2023. \n\nIn this video, we will cover the basics of Node JS in the simplest language. Whether you're a beginner or an experienced developer, this video is made to help you improve your knowledge and feel confident during your interview. \n\nWatch our video now! and Stay tuned for Intermediate and advance level Node JS interview questions and answers.\n\nTimestamps:\n0:00 - Node js interview questions\n0:06 - What is Node.js?\n0:15 - What are the benefits of Node.js? Why to use Node.js?\n0:40 - How does Node.js work?\n0:59 - What is non-blocking and event-driven I/O model?\n2:15 - Where can you use Node.js? Real world applications?\n2:39 - What is npm?\n2:56 - What is REPL in context of Node.js?\n3:12 - What is callback?\n3:30 - What is package.json?"
},
"defaultAudioLanguage": "en",
"viewCount": "86",
"likeCount": "2",
"favoriteCount": "0",
"commentCount": "2",
"duration": "PT3M59S",
"dimension": "2d",
"definition": "hd",
"caption": "false",
"licensedContent": true,
"contentRating": {},
"projection": "rectangular",
"topicCategories": [
"https://en.wikipedia.org/wiki/Knowledge"
]
},
"PECs5i2CvaE": {
"publishedAt": "2023-03-15T12:17:23Z",
"title": "GPT4 - What's New In This Game Changing AI Model?",
"channelId": "UCMNs3Jy_su9hk_5jjIUf2gA",
"description": "GPT4 - In this video I will be exploring the newly launched OpenAI model GPT 4. You'll see what's new in this game changing model?\n\nI'll also give you a sneak peak at some of the new features of GPT4 and how it is better from chatGPT and earlier models.\nSo be sure to watch and learn about GPT4 AI in this informative video!\n\n\n\nLearn more about GPT 4 from OpenAI's official website :\nhttps://openai.com/research/gpt-4\n\n---- DISCLAIMER ----\nThe materials used are for educational and commentary purposes under the Fair Use doctrine, which permits the use of copyrighted material for certain purposes, such as criticism, comment, news reporting, teaching, scholarship, and research. We believe that our use of the copyrighted material falls under the Fair Use doctrine and is not an infringement of copyright. If you are the owner of any copyrighted material and believe that our use of it is not in compliance with the Fair Use doctrine, please contact us.",
"thumbnails": {
"default": {
"url": "https://i.ytimg.com/vi/PECs5i2CvaE/default.jpg",
"width": 120,
"height": 90
},
"medium": {
"url": "https://i.ytimg.com/vi/PECs5i2CvaE/mqdefault.jpg",
"width": 320,
"height": 180
},
"high": {
"url": "https://i.ytimg.com/vi/PECs5i2CvaE/hqdefault.jpg",
"width": 480,
"height": 360
},
"standard": {
"url": "https://i.ytimg.com/vi/PECs5i2CvaE/sddefault.jpg",
"width": 640,
"height": 480
},
"maxres": {
"url": "https://i.ytimg.com/vi/PECs5i2CvaE/maxresdefault.jpg",
"width": 1280,
"height": 720
}
},
"channelTitle": "Coding 101 with Steve",
"tags": [
"gpt4",
"gpt 4",
"gpt-4",
"gpt4 review",
"gpt4 openai",
"ai gpt 4",
"gpt4 demo",
"gpt-4 ai",
"gpt 4 vs chatgpt",
"gpt 4 vs gpt 3.5",
"gpt4 features",
"gpt 4 ai",
"gpt4 ai",
"what is gpt 4",
"what's new in gpt 4",
"artificial intelligence",
"gpt3",
"openai gpt 4",
"openai gpt4",
"gpt 4 openai"
],
"categoryId": "27",
"liveBroadcastContent": "none",
"localized": {
"title": "GPT4 - What's New In This Game Changing AI Model?",
"description": "GPT4 - In this video I will be exploring the newly launched OpenAI model GPT 4. You'll see what's new in this game changing model?\n\nI'll also give you a sneak peak at some of the new features of GPT4 and how it is better from chatGPT and earlier models.\nSo be sure to watch and learn about GPT4 AI in this informative video!\n\n\n\nLearn more about GPT 4 from OpenAI's official website :\nhttps://openai.com/research/gpt-4\n\n---- DISCLAIMER ----\nThe materials used are for educational and commentary purposes under the Fair Use doctrine, which permits the use of copyrighted material for certain purposes, such as criticism, comment, news reporting, teaching, scholarship, and research. We believe that our use of the copyrighted material falls under the Fair Use doctrine and is not an infringement of copyright. If you are the owner of any copyrighted material and believe that our use of it is not in compliance with the Fair Use doctrine, please contact us."
},
"defaultAudioLanguage": "en",
"viewCount": "290",
"likeCount": "2",
"favoriteCount": "0",
"commentCount": "1",
"duration": "PT5M2S",
"dimension": "2d",
"definition": "hd",
"caption": "false",
"licensedContent": true,
"contentRating": {},
"projection": "rectangular",
"topicCategories": [
"https://en.wikipedia.org/wiki/Knowledge"
]
},
"1HVGIh-rxg8": {
"publishedAt": "2023-03-04T16:02:07Z",
"title": "An ULTIMATE Prompt Engineering Course - Learn ChatGPT Prompting Secrets",
"channelId": "UCMNs3Jy_su9hk_5jjIUf2gA",
"description": "Prompt Engineering Course : In this video, I will introduce you to the world of ChatGPT Prompt Engineering. What is prompt? What is prompt engineering? ChatGPT prompts secrets.\nIf you are just starting out then this video is for you. It is an ultimate guide to prompt engineering. You will learn how to write chatGPT prompts effectively.\n\nThese prompting techniques will help you to generate new ideas, write prompts more effectively and efficiently.\n\nYou'll learn, \nWhat is a prompt? \nWhat is Prompt Engineering? \nTypes of Prompting with multiple examples.\n\nWith the help of ChatGPT, we'll learn different types of prompting with examples. \n\nFrom basic chatGPT prompts to more advanced techniques, This video will give you the start that you need.\n\n----Chapters Timestamp-----\n0:00 - What is Prompt?\n0:09 - What is Prompt Engineering?\n0:23 - Types of Prompting\n0:26 - Instruction Prompting\n0:38 - Instruction Prompting Example / Use case 1\n1:36 - Instruction Prompting Example / Use case 2\n2:21 - Instruction Prompting Example / Use case 3\n2:57 - Role Prompting\n3:19 - Role Prompting Example / Use case\n3:39 - Standard Prompting Example / Use case\n4:10 - Context Prompting\n4:22 - Context Prompting Example / Use Case\n\n---- DISCLAIMER ----\nThe materials used are for educational and commentary purposes under the Fair Use doctrine, which permits the use of copyrighted material for certain purposes, such as criticism, comment, news reporting, teaching, scholarship, and research. We believe that our use of the copyrighted material falls under the Fair Use doctrine and is not an infringement of copyright. If you are the owner of any copyrighted material and believe that our use of it is not in compliance with the Fair Use doctrine, please contact us.",
"thumbnails": {
"default": {
"url": "https://i.ytimg.com/vi/1HVGIh-rxg8/default.jpg",
"width": 120,
"height": 90
},
"medium": {
"url": "https://i.ytimg.com/vi/1HVGIh-rxg8/mqdefault.jpg",
"width": 320,
"height": 180
},
"high": {
"url": "https://i.ytimg.com/vi/1HVGIh-rxg8/hqdefault.jpg",
"width": 480,
"height": 360
},
"standard": {
"url": "https://i.ytimg.com/vi/1HVGIh-rxg8/sddefault.jpg",
"width": 640,
"height": 480
},
"maxres": {
"url": "https://i.ytimg.com/vi/1HVGIh-rxg8/maxresdefault.jpg",
"width": 1280,
"height": 720
}
},
"channelTitle": "Coding 101 with Steve",
"tags": [
"prompt engineering",
"prompt engineering chatgpt",
"what is prompt engineering",
"chatgpt prompt engineering",
"chat gpt prompt engineering",
"learn prompting",
"prompt engineering gpt 3",
"chat gpt",
"prompt engineering course",
"prompt engineering 101",
"prompt engineer",
"ULTIMATE Guide To Prompt Engineering",
"learn prompt engineering",
"what is prompt",
"what is prompting",
"chat gpt prompting",
"chat gpt prompts",
"chatgpt prompts",
"how to use chat gpt",
"ultimate prompt guide"
],
"categoryId": "27",
"liveBroadcastContent": "none",
"localized": {
"title": "An ULTIMATE Prompt Engineering Course - Learn ChatGPT Prompting Secrets",
"description": "Prompt Engineering Course : In this video, I will introduce you to the world of ChatGPT Prompt Engineering. What is prompt? What is prompt engineering? ChatGPT prompts secrets.\nIf you are just starting out then this video is for you. It is an ultimate guide to prompt engineering. You will learn how to write chatGPT prompts effectively.\n\nThese prompting techniques will help you to generate new ideas, write prompts more effectively and efficiently.\n\nYou'll learn, \nWhat is a prompt? \nWhat is Prompt Engineering? \nTypes of Prompting with multiple examples.\n\nWith the help of ChatGPT, we'll learn different types of prompting with examples. \n\nFrom basic chatGPT prompts to more advanced techniques, This video will give you the start that you need.\n\n----Chapters Timestamp-----\n0:00 - What is Prompt?\n0:09 - What is Prompt Engineering?\n0:23 - Types of Prompting\n0:26 - Instruction Prompting\n0:38 - Instruction Prompting Example / Use case 1\n1:36 - Instruction Prompting Example / Use case 2\n2:21 - Instruction Prompting Example / Use case 3\n2:57 - Role Prompting\n3:19 - Role Prompting Example / Use case\n3:39 - Standard Prompting Example / Use case\n4:10 - Context Prompting\n4:22 - Context Prompting Example / Use Case\n\n---- DISCLAIMER ----\nThe materials used are for educational and commentary purposes under the Fair Use doctrine, which permits the use of copyrighted material for certain purposes, such as criticism, comment, news reporting, teaching, scholarship, and research. We believe that our use of the copyrighted material falls under the Fair Use doctrine and is not an infringement of copyright. If you are the owner of any copyrighted material and believe that our use of it is not in compliance with the Fair Use doctrine, please contact us."
},
"viewCount": "714",
"likeCount": "22",
"favoriteCount": "0",
"commentCount": "2",
"duration": "PT5M12S",
"dimension": "2d",
"definition": "hd",
"caption": "false",
"licensedContent": true,
"contentRating": {},
"projection": "rectangular",
"topicCategories": [
"https://en.wikipedia.org/wiki/Knowledge"
]
},
"H14cNaIQve8": {
"publishedAt": "2023-02-26T11:58:46Z",
"title": "I Created My Own ChatGPT Using Python - Power Of Web Scraping",
"channelId": "UCMNs3Jy_su9hk_5jjIUf2gA",
"description": "In this video I'm going to share with you how I created my own chatGPT using Python. Using a simple logic I made my own chatGPT. \n\nHave you ever thought of making your own chatGPT? I did. In this video I'll show you how I used python and web scraping to buid my own chatGPT.\n\nThis is more of a simple web scraping project, a simple python flask app where I made my own chatbot. \n\nchatGPT is a tool that allows us to interact with a chatbot from a web page, and we're going to be using it to make eb scraping project.\n\nThis is a really interesting project, and I hope you enjoy it!\n\n*************************\nThis video is for education purpose only.\n*************************\nGithub link - https://bit.ly/3KEKrvD\n\n---- DISCLAIMER ----\nThe materials used are for educational and commentary purposes under the Fair Use doctrine, which permits the use of copyrighted material for certain purposes, such as criticism, comment, news reporting, teaching, scholarship, and research. We believe that our use of the copyrighted material falls under the Fair Use doctrine and is not an infringement of copyright. If you are the owner of any copyrighted material and believe that our use of it is not in compliance with the Fair Use doctrine, please contact us.",
"thumbnails": {
"default": {
"url": "https://i.ytimg.com/vi/H14cNaIQve8/default.jpg",
"width": 120,
"height": 90
},
"medium": {
"url": "https://i.ytimg.com/vi/H14cNaIQve8/mqdefault.jpg",
"width": 320,
"height": 180
},
"high": {
"url": "https://i.ytimg.com/vi/H14cNaIQve8/hqdefault.jpg",
"width": 480,
"height": 360
},
"standard": {
"url": "https://i.ytimg.com/vi/H14cNaIQve8/sddefault.jpg",
"width": 640,
"height": 480
},
"maxres": {
"url": "https://i.ytimg.com/vi/H14cNaIQve8/maxresdefault.jpg",
"width": 1280,
"height": 720
}
},
"channelTitle": "Coding 101 with Steve",
"tags": [
"chatgpt python",
"chatgpt using python",
"create chatgpt",
"chat gpt",
"chatgpt",
"chatgpt flask python",
"create your own chatgpt",
"build your own chatgpt",
"creating chat gpt using python",
"how to make chat gpt",
"chatgpt tutorial for developers",
"web scraping project",
"flask app project",
"chat gpt using javascript",
"make your own chatgpt",
"advanced chatgpt",
"how to create my own chat gpt",
"python",
"python chatgpt"
],
"categoryId": "27",
"liveBroadcastContent": "none",
"localized": {
"title": "I Created My Own ChatGPT Using Python - Power Of Web Scraping",
"description": "In this video I'm going to share with you how I created my own chatGPT using Python. Using a simple logic I made my own chatGPT. \n\nHave you ever thought of making your own chatGPT? I did. In this video I'll show you how I used python and web scraping to buid my own chatGPT.\n\nThis is more of a simple web scraping project, a simple python flask app where I made my own chatbot. \n\nchatGPT is a tool that allows us to interact with a chatbot from a web page, and we're going to be using it to make eb scraping project.\n\nThis is a really interesting project, and I hope you enjoy it!\n\n*************************\nThis video is for education purpose only.\n*************************\nGithub link - https://bit.ly/3KEKrvD\n\n---- DISCLAIMER ----\nThe materials used are for educational and commentary purposes under the Fair Use doctrine, which permits the use of copyrighted material for certain purposes, such as criticism, comment, news reporting, teaching, scholarship, and research. We believe that our use of the copyrighted material falls under the Fair Use doctrine and is not an infringement of copyright. If you are the owner of any copyrighted material and believe that our use of it is not in compliance with the Fair Use doctrine, please contact us."
},
"defaultAudioLanguage": "en",
"viewCount": "238",
"likeCount": "7",
"favoriteCount": "0",
"commentCount": "3",
"duration": "PT3M27S",
"dimension": "2d",
"definition": "hd",
"caption": "false",
"licensedContent": true,
"contentRating": {},
"projection": "rectangular",
"topicCategories": [
"https://en.wikipedia.org/wiki/Knowledge"
]
},
"yONuB-ZiJE0": {
"publishedAt": "2023-01-15T17:46:59Z",
"title": "Lead Generation Tutorial - Get Quality Leads Targeted By Location [FREE Tool]",
"channelId": "UCMNs3Jy_su9hk_5jjIUf2gA",
"description": "Have you been in the lead generation game for a while but not getting the results you want? This lead generation tutorial is perfect for you! I'll show you how to use my free tool to generate quality leads targeted by location. \nIt is easy to use and don't require any coding.\n\nThis lead generation tutorial is a great way to learn how to generate leads for your business.\n\nLead generation is the process of finding potential customers for a business. One effective way to generate leads is to use Google Maps to gather information about local businesses in any part of the world.\n\nThis tool allows businesses to find and contact potential customers in their local area. \nOne of the key benefits of using Google Maps for lead generation is that it allows businesses to target a specific geographic area. This can save time and money.\n\nAnother benefit of using this b2b lead generation tool to gather detailed information which can include contact information, business hours, reviews, ratings and more.\n\nUsing this tool for lead generation, businesses can search for potential customers in their local area and then use the information to contact them. \n\n--Disclaimer--\n\"The information provided in this video is for educational purposes only and should not be taken as professional advice. Please seek the advice of a professional before taking any action based on the content present in this video.\"\n\n--Public/shared Google--\nLink to download the tool - http://bitly.ws/yXMo\n\n---- DISCLAIMER ----\nThe materials used are for educational and commentary purposes under the Fair Use doctrine, which permits the use of copyrighted material for certain purposes, such as criticism, comment, news reporting, teaching, scholarship, and research. We believe that our use of the copyrighted material falls under the Fair Use doctrine and is not an infringement of copyright. If you are the owner of any copyrighted material and believe that our use of it is not in compliance with the Fair Use doctrine, please contact us.",
"thumbnails": {
"default": {
"url": "https://i.ytimg.com/vi/yONuB-ZiJE0/default.jpg",
"width": 120,
"height": 90
},
"medium": {
"url": "https://i.ytimg.com/vi/yONuB-ZiJE0/mqdefault.jpg",
"width": 320,
"height": 180
},
"high": {
"url": "https://i.ytimg.com/vi/yONuB-ZiJE0/hqdefault.jpg",
"width": 480,
"height": 360
},
"standard": {
"url": "https://i.ytimg.com/vi/yONuB-ZiJE0/sddefault.jpg",
"width": 640,
"height": 480
},
"maxres": {
"url": "https://i.ytimg.com/vi/yONuB-ZiJE0/maxresdefault.jpg",
"width": 1280,
"height": 720
}
},
"channelTitle": "Coding 101 with Steve",
"tags": [
"lead generation",
"lead generation tutorial",
"b2b lead generation",
"lead generation business",
"lead generation tutorial for beginners",
"how to generate leads",
"lead generation smma",
"real estate lead generation",
"lead generation tools",
"lead generation 2023",
"gmap lead generation",
"google maps lead generation",
"gmap scraper",
"gmaps lead generator",
"lead generation real estate",
"lead generation full course",
"lead gen",
"lead generation course",
"organic lead generation",
"lead generation software"
],
"categoryId": "27",
"liveBroadcastContent": "none",
"localized": {
"title": "Lead Generation Tutorial - Get Quality Leads Targeted By Location [FREE Tool]",
"description": "Have you been in the lead generation game for a while but not getting the results you want? This lead generation tutorial is perfect for you! I'll show you how to use my free tool to generate quality leads targeted by location. \nIt is easy to use and don't require any coding.\n\nThis lead generation tutorial is a great way to learn how to generate leads for your business.\n\nLead generation is the process of finding potential customers for a business. One effective way to generate leads is to use Google Maps to gather information about local businesses in any part of the world.\n\nThis tool allows businesses to find and contact potential customers in their local area. \nOne of the key benefits of using Google Maps for lead generation is that it allows businesses to target a specific geographic area. This can save time and money.\n\nAnother benefit of using this b2b lead generation tool to gather detailed information which can include contact information, business hours, reviews, ratings and more.\n\nUsing this tool for lead generation, businesses can search for potential customers in their local area and then use the information to contact them. \n\n--Disclaimer--\n\"The information provided in this video is for educational purposes only and should not be taken as professional advice. Please seek the advice of a professional before taking any action based on the content present in this video.\"\n\n--Public/shared Google--\nLink to download the tool - http://bitly.ws/yXMo\n\n---- DISCLAIMER ----\nThe materials used are for educational and commentary purposes under the Fair Use doctrine, which permits the use of copyrighted material for certain purposes, such as criticism, comment, news reporting, teaching, scholarship, and research. We believe that our use of the copyrighted material falls under the Fair Use doctrine and is not an infringement of copyright. If you are the owner of any copyrighted material and believe that our use of it is not in compliance with the Fair Use doctrine, please contact us."
},
"defaultAudioLanguage": "en",
"viewCount": "2199",
"likeCount": "37",
"favoriteCount": "0",
"commentCount": "9",
"duration": "PT4M14S",
"dimension": "2d",
"definition": "hd",
"caption": "false",
"licensedContent": true,
"contentRating": {},
"projection": "rectangular",
"topicCategories": [
"https://en.wikipedia.org/wiki/Knowledge"
]
},
"JFuuJFuHC-8": {
"publishedAt": "2023-01-08T09:43:28Z",
"title": "Password Generator Javascript - Create Strong Passwords Easily! \ud83d\udda5\ufe0f\ud83d\udd12",
"channelId": "UCMNs3Jy_su9hk_5jjIUf2gA",
"description": "Password Generator Javascript : Are you tired of using weak, easy-to-guess passwords? In this video, I'll show you how to use JavaScript to create strong, secure passwords that are difficult to crack. \nI'll walk you through the process of building a password generator using JavaScript, and show you how to customize it to meet your specific needs.\n\nWhether you're a beginner or an experienced developer, this tutorial will give you the skills you need to keep your online accounts safe and secure. So let's get started!\n\n#passwordgenerator",
"thumbnails": {
"default": {
"url": "https://i.ytimg.com/vi/JFuuJFuHC-8/default.jpg",
"width": 120,
"height": 90
},
"medium": {
"url": "https://i.ytimg.com/vi/JFuuJFuHC-8/mqdefault.jpg",
"width": 320,
"height": 180
},
"high": {
"url": "https://i.ytimg.com/vi/JFuuJFuHC-8/hqdefault.jpg",
"width": 480,
"height": 360
},
"standard": {
"url": "https://i.ytimg.com/vi/JFuuJFuHC-8/sddefault.jpg",
"width": 640,
"height": 480
},
"maxres": {
"url": "https://i.ytimg.com/vi/JFuuJFuHC-8/maxresdefault.jpg",
"width": 1280,
"height": 720
}
},
"channelTitle": "Coding 101 with Steve",
"tags": [
"password generator javascript",
"javascript password generator",
"random password generator javascript",
"password generator project",
"password generator js",
"random password generator",
"password generator app javascript",
"javascript password generator application",
"password generator using javascript",
"password generator html code",
"how to create password generator in javascript",
"password generator"
],
"categoryId": "27",
"liveBroadcastContent": "none",
"localized": {
"title": "Password Generator Javascript - Create Strong Passwords Easily! \ud83d\udda5\ufe0f\ud83d\udd12",
"description": "Password Generator Javascript : Are you tired of using weak, easy-to-guess passwords? In this video, I'll show you how to use JavaScript to create strong, secure passwords that are difficult to crack. \nI'll walk you through the process of building a password generator using JavaScript, and show you how to customize it to meet your specific needs.\n\nWhether you're a beginner or an experienced developer, this tutorial will give you the skills you need to keep your online accounts safe and secure. So let's get started!\n\n#passwordgenerator"
},
"defaultAudioLanguage": "en",
"viewCount": "85",
"likeCount": "3",
"favoriteCount": "0",
"commentCount": "1",
"duration": "PT2M6S",
"dimension": "2d",
"definition": "hd",
"caption": "false",
"licensedContent": true,
"contentRating": {},
"projection": "rectangular"
},
"lBOYKVy6ceY": {
"publishedAt": "2022-12-20T19:26:44Z",
"title": "YouTube Automation - How To Use ChatGPT To Automate Video Uploading\ud83d\udd25",
"channelId": "UCMNs3Jy_su9hk_5jjIUf2gA",
"description": "YouTube Automation - In this video, I'm going to show you How To Use ChatGPT To Automate Video Uploading process on Youtube \n\nUploading video automatically with title and description is an important part of YouTube Automation. \n\nChatGPT is a great way to save time and increase your productivity.\nSo I automated the video upload process on YouTube using ChatGPT.\n\nHere I'll show you how to use ChatGPT.\nIf you're looking for a way to make your YouTube video uploading process easier, then you need to watch this video! By using ChatGPT, I was able to automate the video upload process on my channel, which has saved me a lot of time and hassle!\n\nChatGPT can provide you details on YouTube automation step by step\n\nHope you learn something for YouTube automation!\n\n---- DISCLAIMER ----\nThe materials used are for educational and commentary purposes under the Fair Use doctrine, which permits the use of copyrighted material for certain purposes, such as criticism, comment, news reporting, teaching, scholarship, and research. We believe that our use of the copyrighted material falls under the Fair Use doctrine and is not an infringement of copyright. If you are the owner of any copyrighted material and believe that our use of it is not in compliance with the Fair Use doctrine, please contact us.\n\nYouTube automation\nYouTube automation tutorial\nautomation YouTube\nYouTube automation step by step\nchatgpt\nhow to use chatgpt\nchatgpt examples\nwhat is youTube automation",
"thumbnails": {
"default": {
"url": "https://i.ytimg.com/vi/lBOYKVy6ceY/default.jpg",
"width": 120,
"height": 90
},
"medium": {
"url": "https://i.ytimg.com/vi/lBOYKVy6ceY/mqdefault.jpg",
"width": 320,
"height": 180
},
"high": {
"url": "https://i.ytimg.com/vi/lBOYKVy6ceY/hqdefault.jpg",
"width": 480,
"height": 360
},
"standard": {
"url": "https://i.ytimg.com/vi/lBOYKVy6ceY/sddefault.jpg",
"width": 640,
"height": 480
},
"maxres": {
"url": "https://i.ytimg.com/vi/lBOYKVy6ceY/maxresdefault.jpg",
"width": 1280,
"height": 720
}
},
"channelTitle": "Coding 101 with Steve",
"tags": [
"youtube automation",
"how to use chatgpt",
"youtube automation tutorial",
"chatgpt",
"chatgpt coding",
"chatgpt how to use",
"youtube automation step by step",
"youtube automation using chatgpt",
"youtube video auto upload",
"automate youtube video upload",
"what is youtube automation",
"youtube automation channels",
"chatgpt examples",
"i tried youtube automation",
"automation youtube",
"chatgpt use cases",
"openai chatgpt",
"upload video to youtube automatically",
"chatgpt youtube automation"
],
"categoryId": "27",
"liveBroadcastContent": "none",
"localized": {
"title": "YouTube Automation - How To Use ChatGPT To Automate Video Uploading\ud83d\udd25",
"description": "YouTube Automation - In this video, I'm going to show you How To Use ChatGPT To Automate Video Uploading process on Youtube \n\nUploading video automatically with title and description is an important part of YouTube Automation. \n\nChatGPT is a great way to save time and increase your productivity.\nSo I automated the video upload process on YouTube using ChatGPT.\n\nHere I'll show you how to use ChatGPT.\nIf you're looking for a way to make your YouTube video uploading process easier, then you need to watch this video! By using ChatGPT, I was able to automate the video upload process on my channel, which has saved me a lot of time and hassle!\n\nChatGPT can provide you details on YouTube automation step by step\n\nHope you learn something for YouTube automation!\n\n---- DISCLAIMER ----\nThe materials used are for educational and commentary purposes under the Fair Use doctrine, which permits the use of copyrighted material for certain purposes, such as criticism, comment, news reporting, teaching, scholarship, and research. We believe that our use of the copyrighted material falls under the Fair Use doctrine and is not an infringement of copyright. If you are the owner of any copyrighted material and believe that our use of it is not in compliance with the Fair Use doctrine, please contact us.\n\nYouTube automation\nYouTube automation tutorial\nautomation YouTube\nYouTube automation step by step\nchatgpt\nhow to use chatgpt\nchatgpt examples\nwhat is youTube automation"
},
"defaultAudioLanguage": "en",
"viewCount": "2724",
"likeCount": "60",
"favoriteCount": "0",
"commentCount": "5",
"duration": "PT2M44S",
"dimension": "2d",
"definition": "hd",
"caption": "false",
"licensedContent": true,
"contentRating": {},
"projection": "rectangular"
},
"TUtvAO6cgLg": {
"publishedAt": "2022-11-21T11:38:09Z",
"title": "HTML to PDF - This FREE Tool Converts Your Pages in Seconds!",
"channelId": "UCMNs3Jy_su9hk_5jjIUf2gA",
"description": "Do you want to convert your HTML pages into PDFs?\nThis HTML to PDF tool is FREE and it works really well.\nIt can take just a few seconds to convert your pages and it will give you an output that looks pretty awesome! No coding required!\n\nWatch this video till the end, I have explained how to convert HTML to PDF step by step. And You'll see how it takes less than 10 seconds to perform.\n\nAlso you can convert webpages into PDF file.",
"thumbnails": {
"default": {
"url": "https://i.ytimg.com/vi/TUtvAO6cgLg/default.jpg",
"width": 120,
"height": 90
},
"medium": {
"url": "https://i.ytimg.com/vi/TUtvAO6cgLg/mqdefault.jpg",
"width": 320,
"height": 180
},
"high": {
"url": "https://i.ytimg.com/vi/TUtvAO6cgLg/hqdefault.jpg",
"width": 480,
"height": 360
},
"standard": {
"url": "https://i.ytimg.com/vi/TUtvAO6cgLg/sddefault.jpg",
"width": 640,
"height": 480
},
"maxres": {
"url": "https://i.ytimg.com/vi/TUtvAO6cgLg/maxresdefault.jpg",
"width": 1280,
"height": 720
}
},
"channelTitle": "Coding 101 with Steve",
"tags": [
"html to pdf",
"html to pdf converter",
"convert html to pdf",
"html to pdf free",
"html to pdf free tool",
"html to pdf without coding",
"html to pdf tutorial",
"change html to pdf",
"how to convert html to pdf",
"how can i convert html to pdf",
"webpage to pdf",
"convert webpage to pdf",
"how to convert webpage to pdf",
"html to pdf in seconds",
"easy html to pdf",
"convert html to pdf 2022",
"html to pdf 2022",
"best tool for converting html to pdf",
"convert html page to pdf",
"html into pdf"
],
"categoryId": "27",
"liveBroadcastContent": "none",
"localized": {
"title": "HTML to PDF - This FREE Tool Converts Your Pages in Seconds!",
"description": "Do you want to convert your HTML pages into PDFs?\nThis HTML to PDF tool is FREE and it works really well.\nIt can take just a few seconds to convert your pages and it will give you an output that looks pretty awesome! No coding required!\n\nWatch this video till the end, I have explained how to convert HTML to PDF step by step. And You'll see how it takes less than 10 seconds to perform.\n\nAlso you can convert webpages into PDF file."
},
"defaultAudioLanguage": "en",
"viewCount": "193",
"likeCount": "3",
"favoriteCount": "0",
"commentCount": "2",
"duration": "PT1M59S",
"dimension": "2d",
"definition": "hd",
"caption": "false",
"licensedContent": true,
"contentRating": {},
"projection": "rectangular",
"topicCategories": [
"https://en.wikipedia.org/wiki/Knowledge"
]
},
"HHHkh9IOqhI": {
"publishedAt": "2022-11-18T12:46:58Z",
"title": "Pytesseract - Convert image to text using Python in just 3 lines of code",
"channelId": "UCMNs3Jy_su9hk_5jjIUf2gA",
"description": "In this video, you'll learn to create your own image to text converter with Pytesseract OCR in python in Just 3 Lines of code.\n\nBy using the pytesseract library, you can easily convert image to text using just a few lines of code. This library is widely used in image recognition and text recognition applications, so it's a great way to convert image to text. In this video, we'll show you how to use the pytesseract library to convert an image to text.\n\nTimestamps\n0:00 - Introduction\n0:11 - What is OCR? \n0:22 - Pre-requisites\n0:44 - Install tesseract OCR\n1:32 - Install Pytesseract\n1:50 - Install OpenCV\n2:01 - Read image using OpenCV\n2:09 - Use tesseract OCR\n2:26 - Pytesseract image to text function\n2:33 - Image to text output\n\n\n#tesseract #pytesseract #imagetotext",
"thumbnails": {
"default": {
"url": "https://i.ytimg.com/vi/HHHkh9IOqhI/default.jpg",
"width": 120,
"height": 90
},
"medium": {
"url": "https://i.ytimg.com/vi/HHHkh9IOqhI/mqdefault.jpg",
"width": 320,
"height": 180
},
"high": {
"url": "https://i.ytimg.com/vi/HHHkh9IOqhI/hqdefault.jpg",
"width": 480,
"height": 360
},
"standard": {
"url": "https://i.ytimg.com/vi/HHHkh9IOqhI/sddefault.jpg",
"width": 640,
"height": 480
},
"maxres": {
"url": "https://i.ytimg.com/vi/HHHkh9IOqhI/maxresdefault.jpg",
"width": 1280,
"height": 720
}
},
"channelTitle": "Coding 101 with Steve",
"tags": [
"pytesseract",
"pytesseract ocr",
"tesseract ocr",
"ocr",
"pytesseract python",
"pytesseract tutorial",
"pytesseract tutorial python",
"ocr python tutorial",
"tesseract ocr python",
"image to text",
"image to text converter",
"image to text online",
"image to text in python",
"image to text python opencv",
"image into text converter",
"pytesseract image to text python",
"how to convert image to text",
"what is ocr",
"tesseract",
"tesseract ocr tutorial",
"python"
],
"categoryId": "27",
"liveBroadcastContent": "none",
"localized": {
"title": "Pytesseract - Convert image to text using Python in just 3 lines of code",
"description": "In this video, you'll learn to create your own image to text converter with Pytesseract OCR in python in Just 3 Lines of code.\n\nBy using the pytesseract library, you can easily convert image to text using just a few lines of code. This library is widely used in image recognition and text recognition applications, so it's a great way to convert image to text. In this video, we'll show you how to use the pytesseract library to convert an image to text.\n\nTimestamps\n0:00 - Introduction\n0:11 - What is OCR? \n0:22 - Pre-requisites\n0:44 - Install tesseract OCR\n1:32 - Install Pytesseract\n1:50 - Install OpenCV\n2:01 - Read image using OpenCV\n2:09 - Use tesseract OCR\n2:26 - Pytesseract image to text function\n2:33 - Image to text output\n\n\n#tesseract #pytesseract #imagetotext"
},
"viewCount": "1004",
"likeCount": "17",
"favoriteCount": "0",
"commentCount": "4",
"duration": "PT3M19S",
"dimension": "2d",
"definition": "hd",
"caption": "false",
"licensedContent": true,
"contentRating": {},
"projection": "rectangular",
"topicCategories": [
"https://en.wikipedia.org/wiki/Knowledge",
"https://en.wikipedia.org/wiki/Technology"
]
},
"Oq-bAa531tY": {
"publishedAt": "2022-10-27T10:03:34Z",
"title": "Streamlit Sidebar and Columns | Streamlit Tutorial [2022]",
"channelId": "UCMNs3Jy_su9hk_5jjIUf2gA",
"description": "In this Streamlit sidebar tutorial, we're going to be creating a sidebar and columns in Streamlit Python web app. This will be a great tutorial for beginners who are new to Streamlit, or who haven't used Streamlit in a while.\n\nIf you're a beginner or a veteran Streamlit user, this tutorial is for you! By the end of this tutorial, you'll have learned how to create a sidebar and columns in your Streamlit project, and be able to use Streamlit more efficiently!\n\nStreamlit python is one of the fastest way to build web apps. \n\nStreamlit turns data scripts into shareable web apps in minutes.\nAll in pure Python. No front\u2011end experience required.\n\n#streamlit #streamlittutorial",
"thumbnails": {
"default": {