-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathAwesome_Python_Learning.csv
We can make this file beautiful and searchable if this error is corrected: Any value after quoted field isn't allowed in line 205.
1521 lines (1521 loc) · 231 KB
/
Awesome_Python_Learning.csv
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
Title;URL;Category
(1) My Data Science & Machine Learning, Beginner’s Learning Path | LinkedIn;https://www.linkedin.com/pulse/my-data-science-machine-learning-beginners-path-vin-vashishta/?trackingId=J16vYmqLQEZ5wr4oElpnNA%3D%3D;Roadmaps
(1) Python;https://www.reddit.com/r/Python/;Project examples for Junior
(189) The magic of Python - Quora;https://www.quora.com/q/themagicofpython?__ni__=0&__nsrc__=4&__snid3__=11257821174&__tiids__=11039349;Articles about Software Engineering
(Tutorial) Reading and Writing Files in Python - DataCamp;https://www.datacamp.com/community/tutorials/reading-writing-files-python;MOOC and courses
(Tutorial) Web Scraping With Python: Beautiful Soup - DataCamp;https://www.datacamp.com/community/tutorials/amazon-web-scraping-using-beautifulsoup?utm_medium=email&utm_source=customerio&utm_campaign=dc_insights&utm_term=blog;Developer's Tools
[UNИX][Python-Dev] Лекция 1. Разработка ПО. Индивидуальное использование GIT - YouTube;https://www.youtube.com/watch?v=wOBSo09owqs&list=PLPErILqzuTQqXEIjjN6gwFzV1yRuwReR0;Video
| fastai;https://docs.fast.ai/;Developer's Tools
10 Best CSS Frameworks For Frontend Developers in 2020 - GeeksforGeeks;https://www.geeksforgeeks.org/10-best-css-frameworks-for-frontend-developers-in-2020/;Developer's Tools
10 Clustering Algorithms With Python;https://machinelearningmastery.com/clustering-algorithms-with-python/;Articles about Software Engineering
10 Data Science Projects – Dataquest;https://www.dataquest.io/blog/10-data-science-projects-join/;Project examples for Junior
10 Data Structure, Algorithms, and Programming Courses to Crack Any Coding Interview;https://medium.com/hackernoon/10-data-structure-algorithms-and-programming-courses-to-crack-any-coding-interview-e1c50b30b927;Articles about Software Engineering
10 Great Programming Projects to Improve Your Resume and Learn to Program;https://levelup.gitconnected.com/10-great-programming-projects-to-improve-your-resume-and-learn-to-program-74b14d3e9e16;Project examples for Junior
10 minutes to Koalas — Koalas 0.33.0 documentation;https://koalas.readthedocs.io/en/latest/getting_started/10min.html;Developer's Tools
10 Programming Best Practices to Name Variables, Methods, Classes and Packages;https://javarevisited.blogspot.com/2014/10/10-java-best-practices-to-name-variables-methods-classes-packages.html#axzz5Bwn8nSNW;Articles about Software Engineering
10 Underrated Python Skills | Nicole Janeway Bills | Towards Data Science;https://towardsdatascience.com/10-underrated-python-skills-dfdff5741fdf;Articles about Software Engineering
10 лучших книг по программированию по мнению Reddit;https://proglib.io/p/best-programming-books/;Books
10 лучших материалов для изучения Django;https://proglib.io/p/django-sources/;Django
10 мобильных приложений, которые научат вас программировать;https://proglib.io/p/programming-apps/;Games for Education
10 советов для обучающихся программированию;https://proglib.io/p/learn-to-code/;Articles about Software Engineering
10 структур данных, которые вы должны знать (+видео и задания);https://proglib.io/p/data-structures/;Articles about Software Engineering
100 days of algorithms – Medium;https://medium.com/100-days-of-algorithms;Textbooks
11 must-have алгоритмов машинного обучения для Data Scientist;https://proglib.io/p/11-ml-algorithms/;Articles about Software Engineering
11.1 - Regular Expressions - Мичиганский университет | Coursera;https://www.coursera.org/learn/python-network-data/lecture/bMyWb/11-1-regular-expressions;MOOC and courses
110% Complete JWT Authentication with Django & React - 2020 | Hacker Noon;https://hackernoon.com/110percent-complete-jwt-authentication-with-django-and-react-2020-tiq3bhj?source=rss;Django
12 бесплатных ресурсов для обучения программированию в игровой форме;https://proglib.io/p/learn-programming-playfully/;Games for Education
13 Project Ideas for Intermediate Python Developers – Real Python;https://realpython.com/intermediate-python-project-ideas/;Project examples for Junior
15 App Ideas to Build and Level Up your Coding Skills;https://blog.bitsrc.io/15-app-ideas-to-build-and-level-up-your-coding-skills-28612c72a3b1;Jobs
15 Best Django Courses & Tutorials - Learn Django Online - (Updated 2020);https://blog.coursesity.com/best-django-tutorials/;Django
15 вопросов по Python: как джуниору пройти собеседование;https://proglib.io/p/python-interview/;Jobs
15 задач на собеседовании для программиста;https://proglib.io/p/15-questions-for-programmers/;Jobs
15 лучших книг по программированию на Python - Kompot Journal;https://read.kj.media/obuchenie/books-python/;Books
16-річний програміст із Черкащини — про те, як 11-класником влаштувався на роботу зі зарплатнею майже $1000 | DOU;https://dou.ua/lenta/interviews/first-job-in-sixteen/?from=comment-digest_bc&utm_source=transactional&utm_medium=email&utm_campaign=digest-comments#1829186;Jobs
20 short tutorials all data scientists should read (and practice) - Data Science Central;https://www.datasciencecentral.com/profiles/blogs/17-short-tutorials-all-data-scientists-should-read-and-practice;Developer's Tools
200+ SQL Interview Questions and Answers for Developers | Udemy;https://www.udemy.com/course/sql-interview-questions/?LSNPUBID=JVFxdTr9V80&ranEAID=JVFxdTr9V80&ranMID=39197&ranSiteID=JVFxdTr9V80-vfc1VkvwmmFDsRFTJ0oVtw;MOOC and courses
25 Exciting Python Project Ideas & Topics for Beginners 2020 | upGrad blog;https://www.upgrad.com/blog/python-projects-ideas-topics-beginners/;Project examples for Junior
26 полезных возможностей Python: букварь разработки от А до Z;https://proglib.io/p/a-z-python/;Articles about Software Engineering
27 шпаргалок по машинному обучению и Python в 2017;https://proglib.io/p/ds-cheatsheets/;Articles about Software Engineering
28 cайтов, на которых можно порешать задачи по программированию;https://tproger.ru/digest/competitive-programming-practice/;Articles about Software Engineering
3 Programming Books Every Data Scientist Must Read | by Dario Radečić | Sep, 2020 | Towards Data Science;https://towardsdatascience.com/3-programming-books-every-data-scientist-must-read-db1d3a1a284c;Articles about Software Engineering
3 Python Tricks to Read, Create, and Run Multiple Files Automatically | by Khuyen Tran | Oct, 2020 | Towards Data Science;https://towardsdatascience.com/3-python-tricks-to-read-create-and-run-multiple-files-automatically-5221ebaad2ba;Articles about Software Engineering
3 VS Code Extensions for Faster Web Development in Django | by Malak Ben Romdhane | Better Programming | Medium;https://medium.com/better-programming/master-django-with-these-vs-code-extensions-for-fast-web-development-a4e0c29cc362;Django
3 лучших книги по объектно-ориентированному программированию;https://proglib.io/p/oop-books/;Books
30 Helpful Python Snippets That You Can Learn in 30 Seconds or Less;https://towardsdatascience.com/30-helpful-python-snippets-that-you-can-learn-in-30-seconds-or-less-69bb49204172;Textbooks
35 лучших сайтов для самообразования;https://proglib.io/p/35-websites-to-learn/;Articles about Software Engineering
4 Pandas Tricks that Most People Don’t Know | by Christopher Tao | Medium | Towards Data Science;https://towardsdatascience.com/4-pandas-tricks-that-most-people-dont-know-86a70a007993;Articles about Software Engineering
4 Tools to Speed Up Your Data Science Writing | by Rebecca Vickery | Aug, 2020 | Towards Data Science;https://towardsdatascience.com/4-tools-to-speed-up-your-data-science-writing-11d3823cd01b;Articles about Software Engineering
4 Tricks to Effectively Use JSON in Python | by Erik van Baaren | Aug, 2020 | Towards Data Science;https://towardsdatascience.com/4-tricks-to-effectively-use-json-in-python-4ca18c3f91d0;Articles about Software Engineering
4 способа создать файл в терминале Linux | ИТ Блог. Администрирование серверов на основе Linux (Ubuntu, Debian, CentOS, openSUSE);https://andreyex.ru/linux/komandy-linux-i-komandy-shell/4-sposoba-sozdat-fajl-v-terminale-linux/amp/;Articles about Software Engineering
4. More Control Flow Tools — Python 3.8.2 documentation;https://docs.python.org/3/tutorial/controlflow.html#defining-functions;Articles about Software Engineering
410 Deleted by author — Medium;https://codeburst.io/how-to-create-a-simple-django-web-app-with-python-cf2e03cd68cf;Django
5 Cool Python Project Ideas For Inspiration | Hacker Noon;https://hackernoon.com/5-cool-python-project-ideas-for-inspiration-sr44367v;Project examples for Junior
5 Different Ways to Load Data in Python;https://www.kdnuggets.com/2020/08/5-different-ways-load-data-python.html;Articles about Software Engineering
5 Minute Guide to Decorators in Python | by Dario Radečić | Aug, 2020 | Towards Data Science;https://towardsdatascience.com/5-minute-guide-to-decorators-in-python-b5ca0f2c7ce7;Articles about Software Engineering
5 Python Tricks To Make Your Life More Productive | by Anupam Chugh | Sep, 2020 | Towards Data Science;https://towardsdatascience.com/5-python-tricks-to-make-your-life-more-productive-974ebeb54a53;Articles about Software Engineering
5 Reasons why you should Switch from Jupyter Notebook to Scripts | by Khuyen Tran | Aug, 2020 | Towards Data Science;https://towardsdatascience.com/5-reasons-why-you-should-switch-from-jupyter-notebook-to-scripts-cb3535ba9c95;Articles about Software Engineering
5 отличных англоязычных книг по теоретическому Computer Science;https://proglib.io/p/5-computer-science-books/;Books
5 популярных IDE для программирования на C++;https://tproger.ru/digest/5-cpp-ide/;Articles about Software Engineering
5 сайтов для оттачивания навыков написания SQL-запросов;https://proglib.io/p/sql-practice-sites/;Articles about Software Engineering
5 советов по созданию вашего резюме;https://proglib.io/p/best-format-on-cv/;Jobs
50 Python Interview Questions and Answers - Better Programming - Medium;https://medium.com/better-programming/50-python-interview-questions-and-answers-f8e80d031bd3;Jobs
50+ Data Structure and Algorithms Problems from Coding Interviews - DEV Community 👩💻👨💻;https://dev.to/javinpaul/50-data-structure-and-algorithms-problems-from-coding-interviews-4lh2;Jobs
50+ Free Data Science Books - Data Science Central;https://www.datasciencecentral.com/profiles/blogs/50-free-data-science-books;Books
51 бесплатная книга о Data Science;https://icanchoose.ru/blog/51-besplatnaya-kniga-o-data-science/;Books
53 Python Interview Questions and Answers - Towards Data Science;https://towardsdatascience.com/53-python-interview-questions-and-answers-91fa311eec3f;Jobs
58 подкастов для программистов;https://proglib.io/p/it-podcasts/;Articles about Software Engineering
6 Open-Source Data Science Projects | Get Future Ready;https://www.analyticsvidhya.com/blog/2020/08/6-open-source-data-science-projects-2/;Articles about Software Engineering
6 Python Projects For Beginners | Codementor;https://www.codementor.io/@ilyaas97/6-python-projects-for-beginners-yn3va03fs;Project examples for Junior
6 бесплатных книг по алгоритмам в программировании;https://proglib.io/p/algorythm-books/;Books
6.006: Introduction to Algorithms - Massachusetts Institute of Technology;https://courses.csail.mit.edu/6.006/fall11/notes.shtml;MOOC and courses
6.042J Complete course notes;https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-042j-mathematics-for-computer-science-fall-2010/readings/MIT6_042JF10_notes.pdf;Books
6.824 Lecture 1 - YouTube;https://www.youtube.com/watch?v=hBWfjkGKRas&list=PLkcQbKbegkMqiWf7nF8apfMRL4P4sw8UL;Video
600 NLP Datasets and Glory. State of Big Bad NLP Database | by Quantum Stat | Towards AI — Multidisciplinary Science Journal | Oct, 2020 | Medium;https://medium.com/towards-artificial-intelligence/600-nlp-datasets-and-glory-4b0080bf5ab;Articles about Software Engineering
600+ Data Science Courses [2020\] | Learn Online for Free | Class Central;https://www.classcentral.com/subject/data-science;Articles about Software Engineering
62 лучших видео для тех, кто хочет углубить знания в JavaScript;https://proglib.io/p/js-must-watch-videos/;Video
7 Steps to Mastering Machine Learning With Python;https://www.kdnuggets.com/2015/11/seven-steps-machine-learning-python.html/2;Developer's Tools
7 эффективных способов зарабатывать на искусственном интеллекте;https://proglib.io/p/make-money-with-ai/;Articles about Software Engineering
7. Input and Output — Python 3.8.2 documentation;https://docs.python.org/3/tutorial/inputoutput.html#reading-and-writing-files;Articles about Software Engineering
8 Categorical Data Encoding Techniques to Boost your Model in Python!;https://www.analyticsvidhya.com/blog/2020/08/types-of-categorical-data-encoding/;Articles about Software Engineering
8 Free Resources To Learn Ethical Hacking With Python;https://analyticsindiamag.com/8-free-resources-to-learn-ethical-hacking-with-python/;Articles about Software Engineering
8 Free tools and services for software developers to gain high productivity | TechGig;https://content.techgig.com/8-free-tools-and-services-for-software-developers-to-gain-high-productivity/amp_articleshow/78861168.cms;Articles about Software Engineering
8 Levels of Using List Comprehension in Python | by Yang Zhou | TechToFreedom | Oct, 2020 | Medium;https://medium.com/techtofreedom/8-levels-of-using-list-comprehension-in-python-efc3c339a1f0;Articles about Software Engineering
8 книг по компьютерным сетям;https://proglib.io/p/network-books/;Books
9 Python project ideas for beginners, to practice your coding skills and get hired;https://www.blog.duomly.com/python-project-ideas-for-beginners/;Project examples for Junior
9 новых технологий, которые вы можете освоить за лето и стать ценнее на рынке труда;https://tproger.ru/digest/9-new-technologies/;Articles about Software Engineering
9. Classes — Python 3.6.10 documentation;https://docs.python.org/3.6/tutorial/classes.html;Articles about Software Engineering
97-things-every-programmer-should-know/ru/thing_01 at master · 97-things/97-things-every-programmer-should-know;https://github.com/97-things/97-things-every-programmer-should-know/tree/master/ru/thing_01;Textbooks
A Beginner’s Introduction to Python Web Frameworks : Python;https://www.reddit.com/r/Python/comments/cr3l7z/a_beginners_introduction_to_python_web_frameworks/;Developer's Tools
A Comprehensive Guide to Django Middleware - DEV;https://dev.to/bikramjeetsingh/a-comprehensive-guide-to-django-middleware-2fee;Django
A curated list with Python packages | LibHunt;https://python.libhunt.com/categories;Developer's Tools
A gentle introduction to itertools;https://jmduke.com/2013/11/29/itertools;Articles about Software Engineering
A Gentle Introduction to Web Scraping with Python | by Otávio Simões Silveira | Oct, 2020 | Towards Data Science;https://towardsdatascience.com/a-gentle-introduction-to-web-scraping-with-python-b914a64b2fb8;Articles about Software Engineering
A Guide to Django Web Development for your Business | Codementor;https://www.codementor.io/@botreetechnologies/a-guide-to-django-web-development-for-your-business-19mwgepd5w;Django
A Guide to Extracting All Links on a Website Using Python | Hacker Noon;https://hackernoon.com/a-guide-to-extracting-all-links-on-a-website-using-python-or1x3w7w?source=rss;Articles about Software Engineering
A Practical Introduction to Web Scraping in Python – Real Python;https://realpython.com/python-web-scraping-practical-introduction/;Articles about Software Engineering
A Quick Guide to Django I18n - DZone Web Dev;https://dzone.com/articles/a-quick-guide-to-django-i18n;Django
A successful Git branching model » nvie.com;https://nvie.com/posts/a-successful-git-branching-model/;Developer's Tools
abhimishra91/insight: Repository for Project Insight: NLP as a Service;https://github.com/abhimishra91/insight;Code
About - Project Euler;https://projecteuler.net/index.php;Puzzles
academic/awesome-datascience: An awesome Data Science repository to learn and apply for real world problems.;https://github.com/academic/awesome-datascience;Online education (others)
Account | Mapbox;https://account.mapbox.com/;Developer's Tools
Add Some Magic to Your Django Website - DEV;https://dev.to/adamghill/add-some-magic-to-your-django-website-l8k;Django
Adding Robots.txt file to Django Application - https://pythoncircle.com;https://pythoncircle.com/post/578/adding-robotstxt-file-to-django-application/;Django
adi1090x/termux-desktop: Setup A Beautiful Desktop/GUI In Termux;https://github.com/adi1090x/termux-desktop;Code
AdminLTE - Django Dashboard | Codementor;https://www.codementor.io/@chirilovadrian360/adminlte-django-dashboard-19dqgq2cxv;Django
Advanced Operating Systems;https://www.udacity.com/course/advanced-operating-systems--ud189;MOOC and courses
Advanced plots in Matplotlib — Part 2 | by Parul Pandey | Sep, 2020 | Towards Data Science;https://towardsdatascience.com/advanced-plots-in-matplotlib-part-2-e88f91ce9e31;Articles about Software Engineering
Advanced Python made easy - Quick Code - Medium;https://medium.com/quick-code/advanced-python-made-easy-eece317334fa;Articles about Software Engineering
Age of total which during know.;https://powerful-peak-68152.herokuapp.com/blog/post/1;Articles about Software Engineering
ageitgey/face_recognition: The world's simplest facial recognition api for Python and the command line;https://github.com/ageitgey/face_recognition;Code
AI For Everyone — главная | Coursera;https://www.coursera.org/learn/ai-for-everyone/home/welcome;MOOC and courses
AI & ML дайджест #17: курсы по ML & DL, обзор популярных GAN архитектур, AI бот для ребенка | DOU;https://dou.ua/lenta/digests/ai-ml-digest-17/?from=nl&utm_source=20200414&utm_medium=email&utm_campaign=CM;Roadmaps
AlgoList - алгоритмы, методы, исходники;http://algolist.ru/;Learning (another)
Algorithmic Thinking (Part 1) — главная | Coursera;https://www.coursera.org/learn/algorithmic-thinking-1/resources/g4XDi;MOOC and courses
Algorithmic Toolbox | Coursera;https://www.coursera.org/learn/algorithmic-toolbox?recoOrder=5&utm_medium=email&utm_source=recommendations&utm_campaign=recommendationsEmail~recs_email~2020-03-30;MOOC and courses
Algorithms - Algorithmia;https://algorithmia.com/algorithms;Developer's Tools
Algorithms for Coding Interviews in Python - Learn Interactively;https://www.educative.io/courses/algorithms-coding-interviews-python;MOOC and courses
All the basics of Python classes - Level Up Coding;https://levelup.gitconnected.com/all-the-basics-of-python-classes-8b07046d2a52;Textbooks
All Tools — PyViz 0.0.1 documentation;https://pyviz.org/tools.html;Developer's Tools
AlSweigart - Twitch;https://www.twitch.tv/alsweigart;Video
Amazon Online Assessment Questions - LeetCode Discuss;https://leetcode.com/discuss/interview-question/344650/Amazon-Online-Assessment-Questions;Articles about Software Engineering
Amazon Web Services Sign-In;https://signin.aws.amazon.com/signin?redirect_uri=https%3A%2F%2Fus-west-2.console.aws.amazon.com%2Fcloud9%2Fide%2Fca383e00d67748bc81e6a66a723090d7%3Fstate%3DhashArgs%2523%26isauthcode%3Dtrue&client_id=arn%3Aaws%3Aiam%3A%3A015428540659%3Auser%2Fcloud9&forceMobileApp=0&code_challenge=apBGk2U19lHSfFKRF4VO4W6Hbadtr4AQfklozCXltAY&code_challenge_method=SHA-256;MOOC and courses
An Intro to Git and GitHub for Beginners (Tutorial);https://product.hubspot.com/blog/git-and-github-tutorial-for-beginners;Articles about Software Engineering
An Introduction to Interactive Programming in Python (Part 1) - Rice University | Coursera;https://www.coursera.org/learn/interactive-python-1/home/info;MOOC and courses
An Introduction to TF-IDF. Let’s make this article interactive and… | by Nikhil Jain | Sep, 2020 | Medium;https://medium.com/@nikhiljain.gaya/an-introduction-to-tf-idf-bbaa2580a4a9;Articles about Software Engineering
Analysis and Visualization of Unstructured Text | Towards Data Science;https://towardsdatascience.com/analysis-and-visualization-of-unstructured-text-data-2de07d9adc84;Articles about Software Engineering
anonymous technical interview practice | interviewing.io;https://interviewing.io/;Jobs
Answers to dozens of data science job interview questions - Data Science Central;https://www.datasciencecentral.com/profiles/blogs/answers-to-dozens-of-data-science-job-interview-questions;Jobs
AP®︎ Computer Science Principles (AP®︎ CSP) | Khan Academy;https://www.khanacademy.org/computing/ap-computer-science-principles;MOOC and courses
Apache Kafka;https://kafka.apache.org/quickstart;Developer's Tools
Apache против Nginx: практические соображения;https://www.codeflow.site/ru/article/apache-vs-nginx-practical-considerations;Developer's Tools
App Maker Academy | LEARN;https://learn.by/courses/course-v1:EPAM+AMA+ext1/about;MOOC and courses
Applications of Linear Algebra Part 1 | edX;https://www.edx.org/course/applications-of-linear-algebra-part-1;Math
Applications of Linear Algebra Part 2 | edX;https://www.edx.org/course/applications-of-linear-algebra-part-2;Math
Applied Machine Learning in Python — главная | Coursera;https://www.coursera.org/learn/python-machine-learning/home/welcome;MOOC and courses
Applied Machine Learning in Python | Coursera;https://www.coursera.org/learn/python-machine-learning?specialization=data-science-python;MOOC and courses
Applied Plotting, Charting & Data Representation in Python | Coursera;https://www.coursera.org/learn/python-plotting?specialization=data-science-python;MOOC and courses
Applied Social Network Analysis in Python | Coursera;https://www.coursera.org/learn/python-social-network-analysis;MOOC and courses
Applied Text Mining in Python | Coursera;https://www.coursera.org/learn/python-text-mining?specialization=data-science-python;MOOC and courses
Architectural Styles and the Design of Network-based Software Architectures;https://www.ics.uci.edu/~fielding/pubs/dissertation/top.htm;Books
ARCore - Google Developers;https://developers.google.com/ar/;Developer's Tools
Are you still using Pandas for big data? - Towards Data Science;https://towardsdatascience.com/are-you-still-using-pandas-for-big-data-12788018ba1a;Developer's Tools
Artificial Intelligence;https://www.udacity.com/course/artificial-intelligence--ud954;MOOC and courses
Artificial Intelligence for Robotics | Udacity;https://www.udacity.com/course/artificial-intelligence-for-robotics--cs373;MOOC and courses
ArtVk & Bugtrack: Задачи по базам данных. Решение задач по SQL [1];https://artvk.blogspot.com/2014/01/sql.html;Developer's Tools
arXiv Dataset | Kaggle;https://www.kaggle.com/Cornell-University/arxiv#;Datasets
arXiv.org e-Print archive;https://arxiv.org/;Online education (others)
Async Views in Django 3.1 | TestDriven.io;https://testdriven.io/blog/django-async-views/;Django
Awesome Python;https://awesome-python.com/#configuration;Developer's Tools
Awesome Python | LibHunt;https://python.libhunt.com/;Developer's Tools
awesome-vscode | 🎨 A curated list of delightful VS Code packages and resources.;https://viatsko.github.io/awesome-vscode/#python;Developer's Tools
Azure Machine Learning SDK for Python - Azure Machine Learning Python | Microsoft Docs;https://docs.microsoft.com/uk-ua/python/api/overview/azure/ml/?view=azure-ml-py;Developer's Tools
Back To Back SWE - YouTube;https://m.youtube.com/c/BackToBackSWE;Video
Basics of Software Architecture & Design Patterns in Java | Udemy;https://www.udemy.com/course/basics-of-software-architecture-design-in-java/?LSNPUBID=JVFxdTr9V80&ranEAID=JVFxdTr9V80&ranMID=39197&ranSiteID=JVFxdTr9V80-KOKGxDo89w69mkjZQRXoiw;MOOC and courses
Batch convert images to PDF with Python by using Pillow or img2pdf | Solarian Programmer;https://solarianprogrammer.com/2019/06/12/batch-convert-images-to-pdf-with-python-using-pillow-or-img2pdf/;Developer's Tools
Beautifulsoup — All that you need to know to get any data from any web site using this Python library. | by Felipe Florencio Garcia | ITNEXT;https://itnext.io/beautifulsoup-all-that-you-need-to-know-to-get-any-data-from-any-web-site-using-this-python-149ac1f273dc;
BeautifulSoup is so 2000-and-late: Web Scraping in 2020 - DEV;https://dev.to/maxhumber/beautifulsoup-is-so-2000-and-late-web-scraping-in-2020-2528;Articles about Software Engineering
Become a Python Developer;https://www.linkedin.com/learning/paths/become-a-python-developer;MOOC and courses
Become a Solution Architect: Architecture Course | Udemy;https://www.udemy.com/course/how-to-become-an-outstanding-solution-architect/?LSNPUBID=JVFxdTr9V80&ranEAID=JVFxdTr9V80&ranMID=39197&ranSiteID=JVFxdTr9V80-V.PfRaGSBVyIDs0jrROOXQ;MOOC and courses
BeginnersGuide/Programmers - Python Wiki;https://wiki.python.org/moin/BeginnersGuide/Programmers;Textbooks
benfred/py-spy: Sampling profiler for Python programs;https://github.com/benfred/py-spy;Code
Berkeley AI Materials;http://ai.berkeley.edu/lecture_videos.html;Video
BERT-based Sentiment Analysis and Visualization of Plato’s Republic I~II | by Mr. Nemo & Data | Sep, 2020 | Towards Data Science;https://towardsdatascience.com/bert-based-sentiment-analysis-and-visualization-of-platos-republic-i-ii-6f42f07845c4;Articles about Software Engineering
Better Code Hub;https://bettercodehub.com/repositories;Developer's Tools
Big Data Analytics in Healthcare;https://www.udacity.com/course/big-data-analytics-in-healthcare--ud758;MOOC and courses
Big data sets available for free - Data Science Central;https://www.datasciencecentral.com/profiles/blogs/big-data-sets-available-for-free;Developer's Tools
Big Upgrades are coming to VSCode Jupyter Notebooks | Towards Data Science;https://towardsdatascience.com/vscode-jupyter-notebooks-are-getting-an-upgrade-cc9aaaefc744;Articles about Software Engineering
Big-O Algorithm Complexity Cheat Sheet (Know Thy Complexities!) @ericdrowell;https://www.bigocheatsheet.com/;Articles about Software Engineering
Binder;https://mybinder.org/;Awesome Python
Black Dashboard - Coded in Flask and Django | Codementor;https://www.codementor.io/@chirilovadrian360/black-dashboard-coded-in-flask-and-django-18ug2bpvgn;Django
Bootcamp - Scrimba Tutorial;https://scrimba.com/p/pG66Msa/c66k2RCr;MOOC and courses
Bootstrap 4 Tutorial - Learn Bootstrap For Free | Scrimba;https://scrimba.com/g/gbootstrap4;MOOC and courses
Break Away: Programming And Coding Interviews | Udemy;https://www.udemy.com/course/break-away-coding-interviews-1/?LSNPUBID=JVFxdTr9V80&ranEAID=JVFxdTr9V80&ranMID=39197&ranSiteID=JVFxdTr9V80-xK68R9T0iKj38_3pS1WcYg;MOOC and courses
Build & Deploy an Unsupervised Learning Flask App from Scratch | by Saffa Fatima | Sep, 2020 | Towards Data Science;https://towardsdatascience.com/how-to-build-deploy-an-unsupervised-learning-flask-app-from-scratch-afd3a18661a7;Articles about Software Engineering
Build a Data Analysis Library from Scratch in Python - YouTube;https://www.youtube.com/playlist?list=PLVyhfExBT1XDTu-oocI3ttl_OPhulAJOp;Video
Build A Django CI/CD Pipeline using Jenkins | Codementor;https://www.codementor.io/@vahiwe/build-a-django-ci-cd-pipeline-using-jenkins-1avemkw6hq;Django
Build a Rest API with Python and Django - The easiest way | Codementor;https://www.codementor.io/@mstspr1155/build-a-rest-api-with-python-and-django-the-easiest-way-129n478fpd;Django
Build a Story Generator | Pranav Vadrevu | Towards Data Science;https://towardsdatascience.com/generate-fresh-movie-stories-for-your-favorite-genre-with-deep-learning-143da14b29d6;Articles about Software Engineering
Build and deploy your first machine learning web app;https://towardsdatascience.com/build-and-deploy-your-first-machine-learning-web-app-e020db344a99;Developer's Tools
Build and run a Python app in a container;https://code.visualstudio.com/docs/containers/quickstart-python;Developer's Tools
Build your first app | Android Developers;https://developer.android.com/training/basics/firstapp/index.html;Books
Build your own Audiobook in 7 lines of Python Code | by Satyam Kumar | Oct, 2020 | Towards Data Science;https://towardsdatascience.com/build-your-own-audiobook-in-7-lines-of-python-code-bfd805fca4b1;Articles about Software Engineering
Building A Blog Application With Django | Django Central;https://djangocentral.com/building-a-blog-application-with-django/;Django
Building a Concurrent Web Scraper with Python and Selenium | TestDriven.io;https://testdriven.io/blog/building-a-concurrent-web-scraper-with-python-and-selenium/;Articles about Software Engineering
Building a Face Recognizer in Python | by Behic Guven | Sep, 2020 | Towards Data Science;https://towardsdatascience.com/building-a-face-recognizer-in-python-7fd6630c6340;Articles about Software Engineering
Building a Job Recommender via NLP and Machine Learning | by Preston Lam | Oct, 2020 | Towards Data Science;https://towardsdatascience.com/building-a-job-recommender-for-non-technical-business-roles-via-nlp-and-machine-learning-626c4039931e;Articles about Software Engineering
Building a keylogger using Python + Pynput - YouTube;https://www.youtube.com/playlist?list=PLhTjy8cBISEoYoJd-zR8EV0NqDddAjK3m;Video
Building a Microservice in Python - Sonu Sharma - Medium;https://medium.com/@sonusharma.mnnit/building-a-microservice-in-python-ff009da83dac;Developer's Tools
Building a recommendation engine inside Postgres with Python and Pandas;https://info.crunchydata.com/blog/recommendation_engine_in_postgres_with_pandas_and_python?hs_amp=true;Articles about Software Engineering
Building a Simple Chatbot from Scratch in Python (using NLTK);https://medium.com/analytics-vidhya/building-a-simple-chatbot-in-python-using-nltk-7c8c8215ac6e;Project examples for Junior
Building Blocks for Theoretical Computer Science;http://mfleck.cs.illinois.edu/building-blocks/index.html;Books
Built-in Functions — Python 3.8.2 documentation;https://docs.python.org/3/library/functions.html;Articles about Software Engineering
Caching in Python Using the LRU Cache Strategy – Real Python;https://realpython.com/preview/lru-cache-python/;Articles about Software Engineering
Caching in Python Using the LRU Cache Strategy – Real Python;https://realpython.com/lru-cache-python/;Articles about Software Engineering
Caesar - CS50x;https://cs50.harvard.edu/x/2020/psets/2/caesar/;MOOC and courses
Caffe | Installation;http://caffe.berkeleyvision.org/installation.html;Developer's Tools
CAL board - Agile board - Jira;https://kuprienko.atlassian.net/jira/software/projects/CAL/boards/3;Developer's Tools
Calculating Streaks in Pandas;https://joshdevlin.com/blog/calculate-streaks-in-pandas/?utm_source=Iterable&utm_medium=email&utm_campaign=newsletter_82;Textbooks
Calculus 1A: Differentiation | edX;https://www.edx.org/course/calculus-1a-differentiation;Math
Calculus 1B: Integration | edX;https://www.edx.org/course/calculus-1b-integration;Math
Calculus 1C: Coordinate Systems & Infinite Series | edX;https://www.edx.org/course/calculus-1c-coordinate-systems-infinite-series;Math
Catalog of Patterns of Enterprise Application Architecture;https://martinfowler.com/eaaCatalog/index.html;Developer's Tools
Category:Python - Rosetta Code;https://rosettacode.org/wiki/Category:Python;Code
chaconnewu/free-data-science-books: Free resources for learning data science;https://github.com/chaconnewu/free-data-science-books;Books
"Changing the ""tick frequency"" on x or y axis in matplotlib? - Stack Overflow";https://stackoverflow.com/questions/12608788/changing-the-tick-frequency-on-x-or-y-axis-in-matplotlib;Code
Chapter 1. Getting to know Redis - Redis in Action;https://livebook.manning.com/book/redis-in-action/chapter-1/9;Developer's Tools
Chat with React - Scrimba Tutorial;https://scrimba.com/p/pbNpTv/c9bWPAp;MOOC and courses
Cheat Sheet - Google Таблиці;https://docs.google.com/spreadsheets/d/1eNBLcKqCVN9zZQvfGUmm5bAzsETqB_ugVOlUtmvJGYU/edit#gid=0;Textbooks
Cheat Sheet of Machine Learning and Python (and Math) Cheat Sheets;https://medium.com/machine-learning-in-practice/cheat-sheet-of-machine-learning-and-python-and-math-cheat-sheets-a4afe4e791b6;Textbooks
Check out these lesser-known Python features;https://thenextweb.com/syndication/2020/08/13/check-out-these-lesser-known-python-features/;Articles about Software Engineering
Choose the Best Python Web Scraping Library for Your Application | by Sara A. Metwalli | Aug, 2020 | Towards Data Science;https://towardsdatascience.com/choose-the-best-python-web-scraping-library-for-your-application-91a68bc81c4f;Articles about Software Engineering
Choosing the right estimator — scikit-learn 0.22.2 documentation;https://scikit-learn.org/stable/tutorial/machine_learning_map/index.html;Developer's Tools
chrismattmann/tika-python: Tika-Python is a Python binding to the Apache Tika™ REST services allowing Tika to be called natively in the Python community.;https://github.com/chrismattmann/tika-python;Code
Clean Code | LEARN;https://learn.by/courses/course-v1:EPAM+CC+ext1/about;MOOC and courses
CLI Setup - NativeScript Docs;https://docs.nativescript.org/angular/start/quick-setup;Developer's Tools
Client-Server Communication;https://www.udacity.com/course/client-server-communication--ud897;MOOC and courses
Cloud Shell;https://ssh.cloud.google.com/cloudshell/editor?project&pli=1&shellonly=true;Developer's Tools
cloudera/hue: Hue Editor: Open source SQL Query Assistant for Databases/Warehouses;https://github.com/cloudera/hue;Code
Clustering using k-Means with implementation | by Dr. Saptarsi Goswami | Sep, 2020 | Towards Data Science;https://towardsdatascience.com/clustering-using-k-means-with-implementation-40988620a973;Articles about Software Engineering
Codacy Onboarding;https://app.codacy.com/welcome/organizations;Developer's Tools
Code Basics: основы программирования;https://ru.code-basics.com/languages/javascript/modules/basics/lessons/comments;MOOC and courses
Code Basics: основы программирования на Javascript;https://ru.code-basics.com/languages/javascript;Online education (others)
Codecademy;https://www.codecademy.com/catalog/subject/all;MOOC and courses
Codecov;https://codecov.io/gh;Developer's Tools
CodeKata;http://codekata.com/;Puzzles
codelucas/newspaper: News, full-text, and article metadata extraction in Python 3. Advanced docs:;https://github.com/codelucas/newspaper;Code
Codementor - Instant 1-on-1 Mentor for Programming & Design;https://www.codementor.io/@samwatt/django-best-practices-how-to-add-custom-model-managers-in-django-16wgl5ftzo;Django
Codementor - Instant 1-on-1 Mentor for Programming & Design;https://www.codementor.io/@djangostars/using-the-django-rest-framework-to-develop-apis-10jra2u0z5;Django
Codementor - Instant 1-on-1 Mentor for Programming & Design;https://www.codementor.io/@samwatt/implementing-celery-using-django-for-background-task-processing-17pzwu2dfz;Django
CodePen: Build, Test, and Discover Front-end Code.;https://codepen.io/;Developer's Tools
CodeProject - For those who code;https://www.codeproject.com/;Project examples for Junior
Coderbyte | Code Screening, Challenges, & Interview Prep;https://www.coderbyte.com/;Puzzles
CoderNet Портал для помощи программистам | CoderNet;https://codernet.ru/;Online education (others)
CodeSkulptor;http://www.codeskulptor.org/;MOOC and courses
Coding for Kids | Tynker;https://www.tynker.com/lesson/host;MOOC and courses
Coding Interview Bootcamp Algorithms, Data Structures Course | Udemy;https://www.udemy.com/course/coding-interview-bootcamp-algorithms-and-data-structure/?LSNPUBID=JVFxdTr9V80&ranEAID=JVFxdTr9V80&ranMID=39197&ranSiteID=JVFxdTr9V80-TlXTfAkPvfYsaAfzlBDfzw;MOOC and courses
Coding our first Django app! | Better Programming;https://medium.com/better-programming/writing-your-first-django-app-e81f76c9b0e1;Django
colorama · PyPI;https://pypi.org/project/colorama/;Developer's Tools
Command Line Essentials: Git Bash for Windows | Udemy;https://www.udemy.com/course/git-bash/learn/lecture/2723932#overview;MOOC and courses
Compilers with Alex Aiken - YouTube;https://www.youtube.com/watch?v=sm0QQO-WZlM&list=PLFB9EC7B8FE963EB8;Video
Computability, Complexity & Algorithms;https://www.udacity.com/course/computability-complexity-algorithms--ud061;MOOC and courses
Computer Networking: a Top Down Approach;https://gaia.cs.umass.edu/kurose_ross/wireshark.htm;Books
Computer programming | Computing | Khan Academy;https://www.khanacademy.org/computing/computer-programming;MOOC and courses
Computer science | Computing | Khan Academy;https://www.khanacademy.org/computing/computer-science;MOOC and courses
Computer Science 162 (Fall 2010) - Lecture 1 - YouTube;https://www.youtube.com/watch?v=feAOZuID1HM&list=PLggtecHMfYHA7j2rF7nZFgnepu_uPuYws;Video
Computer Science 61A, 001 - Spring 2011 : Free Movies : Free Download, Borrow and Streaming : Internet Archive;https://archive.org/details/ucberkeley-webcast-PL3E89002AA9B9879E?sort=titleSorter;Video
Conda Cheat Sheet - Kapeli;https://kapeli.com/cheat_sheets/Conda.docset/Contents/Resources/Documents/index;Developer's Tools
Configuring Jupyter Notebook in Windows Subsystem Linux (WSL2) | by Cristian Saavedra Desmoineaux | Aug, 2020 | Towards Data Science;https://towardsdatascience.com/configuring-jupyter-notebook-in-windows-subsystem-linux-wsl2-c757893e9d69;Articles about Software Engineering
connorferster/handcalcs: Python library for converting Python calculations into rendered latex.;https://github.com/connorferster/handcalcs;Code
Continuous Integration and Continuous Delivery using Interactive Browser-Based Labs | Katacoda;https://www.katacoda.com/courses/cicd;MOOC and courses
Continuous Integration with Jenkins | LEARN;https://learn.by/courses/course-v1:EPAM+CIJ+ext1/about;MOOC and courses
Control Room | Home | Automation Anywhere;https://community.cloud.automationanywhere.digital/#/home;Developer's Tools
Convert Text to Speech in 5 Lines of Code | by Behic Guven | Towards Data Science;https://towardsdatascience.com/convert-text-to-speech-in-5-lines-of-code-1c67b12f4729;Articles about Software Engineering
Converting PDFs, Word docs, and HTML pages to text with Apache Tika | Data Science for Journalism;https://investigate.ai/text-analysis/processing-documents-with-apache-tika/;Developer's Tools
Convolutional Neural Networks | Coursera;https://www.coursera.org/learn/convolutional-neural-networks?specialization=deep-learning;MOOC and courses
Course | 15.071x | edX;https://courses.edx.org/courses/course-v1:MITx+15.071x+1T2020/course/;MOOC and courses
Course | CS1301xII | edX;https://courses.edx.org/courses/course-v1:GTx+CS1301xII+3T2019/course/;MOOC and courses
Course | CS50W | edX;https://courses.edx.org/courses/course-v1:HarvardX+CS50W+Web/course/;MOOC and courses
Course Introduction: Neural Networks in JavaScript - Scrimba Tutorial;https://scrimba.com/p/pVZJQfg/cv4rvCR;MOOC and courses
Course overview;https://www.robomindacademy.com/navigator/courses;MOOC and courses
Course Overview - Scrimba Tutorial;https://scrimba.com/p/pQxesM/ce4baHb;MOOC and courses
Courses | edX;https://www.edx.org/course/introduction-python-data-science-2;MOOC and courses
Courses | LEARN;https://learn.by/courses;MOOC and courses
Coveralls - Test Coverage History & Statistics;https://coveralls.io/repos/new;Developer's Tools
CRAN - Package rattle;https://cran.r-project.org/web/packages/rattle/index.html;Developer's Tools
Crash Course on Python — главная | Coursera;https://www.coursera.org/learn/python-crash-course/home/info;MOOC and courses
create-graphql-server — instantly scaffold a GraphQL server;https://blog.hichroma.com/create-graphql-server-instantly-scaffold-a-graphql-server-1ebad1e71840;Developer's Tools
Creating a Machine Learning Based Web Application Using Django | by Akash Chauhan | Sep, 2020 | Towards Data Science;https://towardsdatascience.com/creating-a-machine-learning-based-web-application-using-django-5444e0053a09;Django
Creating an iPhone App-Like Only With Your Data Science Skills: One-Tap Life Logger Linked to Google Sheets | by Moto DEI | Sep, 2020 | Towards Data Science;https://towardsdatascience.com/creating-an-iphone-app-like-with-only-your-data-science-skills-one-tap-life-logger-ac691698d3b3;Articles about Software Engineering
Creating and Automating an Interactive Dashboard using Python | by Truett Bloxsom | Aug, 2020 | Towards Data Science;https://towardsdatascience.com/creating-and-automating-an-interactive-dashboard-using-python-5d9dfa170206;Articles about Software Engineering
Creating Sitemaps in Django | Django Central;https://djangocentral.com/creating-sitemaps-in-django/;Django
CS 436: Distributed Computer Systems - Lecture 1 - YouTube;https://www.youtube.com/watch?v=w8KFPWkK0bI&list=PLawkBQ15NDEkDJ5IyLIJUTZ1rRM9YQq6N;Video
CS109 Data Science;https://cs109.github.io/2015/;Math
CS144 Fall 2013, Video 4-0: Congestion Control - YouTube;https://www.youtube.com/watch?v=nh970YyKRDA&list=PLvFG2xYBrYAQCyz4Wx3NPoYJOFjvU7g2Z;Video
cs184/284a;https://cs184.eecs.berkeley.edu/sp20;Online education (others)
CS61C Spring 2015: Great Ideas in Computer Architecture (Machine Structures);http://inst.eecs.berkeley.edu/~cs61c/sp15/;Online education (others)
CSS - Scrimba Tutorial;https://scrimba.com/p/pWvwCg/c3vBJu2;MOOC and courses
Customize the Django Admin With Python – Real Python;https://realpython.com/customize-django-admin-python/;Django
Daniel Deutsch – Towards Data Science;https://towardsdatascience.com/@createdd;Articles about Software Engineering
Dash Bootstrap Components;https://dash-bootstrap-components.opensource.faculty.ai/;Developer's Tools
Dash for Beginners - DataCamp;https://www.datacamp.com/community/tutorials/learn-build-dash-python;Developer's Tools
Dashboard : skromnitsky : PythonAnywhere;https://www.pythonanywhere.com/user/skromnitsky/;Developer's Tools
Dashboard | Khan Academy;https://www.khanacademy.org/profile/kaid_319771232046788166624019/courses;MOOC and courses
Dashboard · WakaTime;https://wakatime.com/dashboard;Developer's Tools
Dask + Numba for Efficient In-Memory Model Scoring - Capital One Tech - Medium;https://medium.com/capital-one-tech/dask-numba-for-efficient-in-memory-model-scoring-dfc9b68ba6ce;Developer's Tools
Data Analysis and Visualization;https://www.udacity.com/course/data-analysis-and-visualization--ud404;MOOC and courses
Data Analysis Learning Path | Springboard;https://www.springboard.com/learning-paths/data-analysis/learn/?referral=https://www.springboard.com/resources/learning-paths/data-analysis/#351-introduction-to-algorithms;MOOC and courses
Data Management With Python, SQLite, and SQLAlchemy – Real Python;https://realpython.com/python-sqlite-sqlalchemy/;Articles about Software Engineering
Data School;https://www.dataschool.io/;Developer's Tools
Data Science A-Z™: Real-Life Data Science Exercises Included | Udemy;https://www.udemy.com/course/datascience/?LSNPUBID=JVFxdTr9V80&ranEAID=JVFxdTr9V80&ranMID=39197&ranSiteID=JVFxdTr9V80-ehAZ1CgIaMuZej9hJQmD5A;MOOC and courses
Data Science Career Guide – Dataquest;https://www.dataquest.io/blog/data-science-career-guide/?utm_source=Iterable&utm_medium=email&utm_campaign=onboarding_7;Roadmaps
Data Science Career Tips Archives – Dataquest;https://www.dataquest.io/blog/topics/data-science-career-tips/?utm_source=Iterable&utm_medium=email&utm_campaign=onboarding_7;Roadmaps
Data Science Dream Job - YouTube;https://www.youtube.com/channel/UCr6_XCxMLXWGguWZi_93n7w;Video
Data Science Interview Prep;https://www.udacity.com/course/data-science-interview-prep--ud944;MOOC and courses
Data Science Office Hours - YouTube;https://www.youtube.com/channel/UC5c7r0SlnNmPfqxEyni71FA;Video
Data Science with Python: Intro to Data Visualization with Matplotlib;https://towardsdatascience.com/data-science-with-python-intro-to-data-visualization-and-matplotlib-5f799b7c6d82;Developer's Tools
Data Science with R | Pluralsight;https://www.pluralsight.com/courses/r-data-science?clickid=2FASLxUR5xyOUgVwUx0Mo3EWUki2W90Cx3OTW80&irgwc=1&mpid=1193463&utm_source=impactradius&utm_medium=digital_affiliate&utm_campaign=1193463&aid=7010a000001xAKZAA2;MOOC and courses
Data Scientist Path: Interactive Python, SQL | Dataquest;https://app.dataquest.io/path/data-scientist;MOOC and courses
Data Structure - Part I | Udemy;https://www.udemy.com/course/data-structures-part-1-lognacademy/learn/lecture/2587894#overview;MOOC and courses
Data Structures & Algorithms in Python | by Papa Moryba Kouate | Aug, 2020 | Towards Data Science;https://towardsdatascience.com/data-structures-algorithms-in-python-68c8dbb19c90;Articles about Software Engineering
Data Structures and Performance | Coursera;https://www.coursera.org/learn/data-structures-optimizing-performance?recoOrder=9&utm_medium=email&utm_source=recommendations&utm_campaign=recommendationsEmail~recs_email~2020-03-30;MOOC and courses
Data Structures Fundamentals;https://courses.edx.org/courses/course-v1:UCSanDiegoX+ALGS201x+1T2019/course/;MOOC and courses
Data Visualization in Python — DataCamp;https://www.datacamp.com/resources/webinars/data-visualization-in-python;Video
Data Visualization with Python | Towards Data Science;https://towardsdatascience.com/data-visualization-with-python-8bc988e44f22;Articles about Software Engineering
Data Wrangling with MongoDB;https://www.udacity.com/course/data-wrangling-with-mongodb--ud032;MOOC and courses
Data: Querying, Analyzing and Downloading: The GDELT Project;https://www.gdeltproject.org/data.html#rawdatafiles;Developer's Tools
Database Systems Concepts & Design;https://www.udacity.com/course/database-systems-concepts-design--ud150;MOOC and courses
Databricks;https://community.cloud.databricks.com/?o=7623223593112325#/setting/clusters/0822-110756-soils611/libraries;Developer's Tools
DataCamp;https://learn.datacamp.com/;MOOC and courses
Data-Oriented Design;https://www.dataorienteddesign.com/dodmain/dodmain.html;Books
Data-science/word2vec.ipynb at master · khuyentran1401/Data-science;https://github.com/khuyentran1401/Data-science/blob/master/nlp/word2vec.ipynb;Code
Data-science-best-resources/README.md at master · tirthajyoti/Data-science-best-resources;https://github.com/tirthajyoti/Data-science-best-resources/blob/master/README.md;Online education (others)
Dataset Search;https://datasetsearch.research.google.com/;Developer's Tools
Datasets for Data Mining and Data Science;https://www.kdnuggets.com/datasets/index.html;Developer's Tools
Datatypes & Typecasting - Scrimba Tutorial;https://scrimba.com/p/pNpZMAB/cgqp9rSz;MOOC and courses
Day 0: Hello, World. | HackerRank;https://www.hackerrank.com/challenges/30-hello-world/problem?h_r=email&unlock_token=1770c0299fa24248c80aca07b1ba45b7971a0c13&utm_campaign=30_days_of_code_continuous&utm_medium=email&utm_source=daily_reminder;Training
DBA1 : Компания Postgres Professional;https://postgrespro.ru/education/courses/DBA1;Video
DBA2 : Компания Postgres Professional;https://postgrespro.ru/education/courses/DBA2;Video
ddangelov/Top2Vec: Top2Vec learns jointly embedded topic, document and word vectors.;https://github.com/ddangelov/Top2Vec;Code
Decorators — Python 3 Patterns, Recipes and Idioms;https://python-3-patterns-idioms-test.readthedocs.io/en/latest/PythonDecorators.html;Articles about Software Engineering
Deep Learning;http://www.deeplearningbook.org/;Textbooks
Deep learning на пальцах!;https://dlcourse.ai/;MOOC and courses
deepset-ai/haystack: Transformers at scale for question answering & neural search. Using NLP via a modular Retriever-Reader-Pipeline. Supporting DPR, Elasticsearch, HuggingFace's Modelhub...;https://github.com/deepset-ai/haystack/;Code
Defining Main Functions in Python – Real Python;https://realpython.com/courses/python-main-function/;Articles about Software Engineering
Deploy Django and Flask Applications in the cloud using Nginx, Gunicorn and Supervisor (Ubuntu 18.04) | Codementor;https://www.codementor.io/@vahiwe/deploy-django-and-flask-applications-in-the-cloud-using-nginx-gunicorn-and-supervisor-ubuntu-18-04-16gacze6u4;Django
Deploy Django and Flask Applications in the cloud using Nginx, Gunicorn and Systemd (CentOS 7) | Codementor;https://www.codementor.io/@vahiwe/deploy-django-and-flask-applications-in-the-cloud-using-nginx-gunicorn-and-systemd-centos-7-16hcmzsi0q;Django
Deploying a Django Blog App on Heroku - DEV;https://dev.to/danimalphantom/deploying-a-django-blog-app-on-heroku-ja;Django
Deploying Django App to Heroku: Full Guide | by Shubh Agrawal | Quick Code | Sep, 2020 | Medium;https://medium.com/quick-code/deploying-django-app-to-heroku-full-guide-6ff7252578d7;Django
Design of Computer Programs;https://www.udacity.com/course/design-of-computer-programs--cs212;MOOC and courses
Designing custom 404 and 500 error pages in Django - https://pythoncircle.com;https://pythoncircle.com/post/40/designing-custom-404-and-500-error-pages-in-django/;Django
Designing RESTful APIs;https://www.udacity.com/course/designing-restful-apis--ud388;MOOC and courses
DEV Community ;https://dev.to/;Jobs
DevashishPrasad/CascadeTabNet: This repository contains the code and implementation details of the CascadeTabNet ;https://github.com/DevashishPrasad/CascadeTabNet;Code
DevDocs API Documentation;https://devdocs.io/;Textbooks
Developing AI Applications on Azure — главная | Coursera;https://www.coursera.org/learn/developing-ai-applications-azure/home/welcome;MOOC and courses
DevOps Tools: Online Courses, Training and Tutorials on LinkedIn Learning;https://www.linkedin.com/learning/topics/devops-tools;Online education (others)
Differential Equations in Action;https://www.udacity.com/course/differential-equations-in-action--cs222;MOOC and courses
Dimensionality Reduction using t-Distributed Stochastic Neighbor Embedding (t-SNE) on the MNIST Dataset | by Dehao Zhang | Aug, 2020 | Towards Data Science;https://towardsdatascience.com/dimensionality-reduction-using-t-distributed-stochastic-neighbor-embedding-t-sne-on-the-mnist-9d36a3dd4521;Articles about Software Engineering
Displaying custom 404 error (page not found) page in Django 2.0 - https://pythoncircle.com;https://pythoncircle.com/post/564/displaying-custom-404-error-page-not-found-page-in-django-20/;Django
Distributed Systems: Principles and Paradigms;http://barbie.uta.edu/~jli/Resources/MapReduce&Hadoop/Distributed%20Systems%20Principles%20and%20Paradigms.pdf;Books
DistroWatch.com: Put the fun back into computing. Use Linux, BSD.;https://distrowatch.com/?language=RU;Articles about Software Engineering
Dive Into Python 3;https://diveintopython3.net/;Books
Divide and Conquer, Sorting and Searching, and Randomized Algorithms | Coursera;https://www.coursera.org/learn/algorithms-divide-conquer;MOOC and courses
"Django ""Hello, World"" 5 Different Ways - DEV";https://dev.to/learndjango/django-hello-world-5-different-ways-209f;Django
Django 3 Tutorial & CRUD Example with MySQL and Bootstrap;https://www.ahmedbouchefra.com/django-3-tutorial-and-crud-example-with-mysql-and-bootstrap/;Django
Django Admin- Populate subcategory | Better Programming;https://medium.com/better-programming/optimizing-django-admin-6a1187ddbb09;Django
Django And Asynchronous Support: A Never Ending Story | Hacker Noon;https://hackernoon.com/django-and-asynchronous-support-a-never-ending-story-q0233uls?source=rss;Django
Django and React Single Page Application Development - Part 1 - DZone Web Dev;https://dzone.com/articles/django-graphql-react-integration-tutorial-part-1;Django
Django Async: What's New and What's Next? - DZone Web Dev;https://dzone.com/articles/django-async-whats-new-and-whats-next;Django
Django Authentication With GitHub - Kodnito;https://kodnito.com/posts/django-authentication-github/;Django
Django Bootstrap Dashboard - Material Design | Codementor;https://www.codementor.io/@chirilovadrian360/django-bootstrap-dashboard-material-design-18nvmg7g7g;Django
DJANGO CHANNELS 2 Tutorial (V2) - Real Time - WebSockets - Async - YouTube;https://www.youtube.com/watch?v=RVH05S1qab8;Video
django CMS - Enterprise Content Management with Django - django CMS;https://www.django-cms.org/en/;Django
Django Dashboards - Open-Source and Free Starters | Codementor;https://www.codementor.io/@chirilovadrian360/django-dashboards-open-source-and-free-starters-191cwwvpiz;Django
Django documentation | Django documentation | Django;https://docs.djangoproject.com/en/3.0/;Django
Django Model with Relationships — What is Relationship and why to use it? by Sjlouji | Joan Louji | codeburst;https://codeburst.io/django-model-with-relationships-what-is-relationship-and-why-to-use-it-1718037d1335;Django
Django ORM if you already know SQL - DEV;https://dev.to/amitness/django-orm-if-you-already-know-sql-k80;Django
Django ORM. Добавим сахарку / Хабр;https://habr.com/ru/post/263821/;Django
Django Project Best Practices to Keep Your Developers Happy | by Victoria Drake | Better Programming | Sep, 2020 | Medium;https://medium.com/better-programming/django-project-best-practices-to-keep-your-developers-happy-bcb522f3eb12;Django
Django Quick Tips: Context Processors | Better Programming;https://medium.com/better-programming/django-quick-tips-context-processors-da74f887f1fc;Django
Django Redirects – Real Python;https://realpython.com/courses/django-redirects/;Django
Django Test Suite Introduction – How to Increase Your Confidence as a Python Developer;https://www.freecodecamp.org/news/increase-developer-confidence-with-a-great-django-test-suite/;Django
Django Testing Toolbox · Matt Layman;https://www.mattlayman.com/blog/2020/django-testing-toolbox/;Django
Django User Model | Codementor;https://www.codementor.io/@mohanedmashaly12/django-user-model-17a8ckftus;Django
Django в примерах · GitBook (Legacy);https://legacy.gitbook.com/book/pocoz/django-v-primerah/details;Django
Django введение - Изучение веб-разработки | MDN;https://developer.mozilla.org/ru/docs/Learn/Server-side/Django/Введение;Django
Django или Ruby on Rails: какой фреймворк выбрать?;https://tproger.ru/translations/django-or-ruby-on-rails/;Django
Django на русском;https://djbook.ru/;Django
Django Руководство часть 11: Разворачивание сайта на сервере - Изучение веб-разработки | MDN;https://developer.mozilla.org/ru/docs/Learn/Server-side/Django/%D0%A0%D0%B0%D0%B7%D0%B2%D0%BE%D1%80%D0%B0%D1%87%D0%B8%D0%B2%D0%B0%D0%BD%D0%B8%D0%B5;Django
Django, Anaconda, Brave, Spyder and Test Driven Development: Obey the Testing Goat! | by Guglielmo Feis | codeburst;https://codeburst.io/django-anaconda-brave-spyder-and-test-driven-development-obey-the-testing-goat-5931d3b92f14;Django
Django, Celery, Redis and Flower Implementation | Hacker Noon;https://hackernoon.com/django-celery-redis-and-flower-implementation-gy663ysy?source=rss;Django
Django: Create your own Telegram bot with Django on Heroku - Part 10;https://www.marc-richter.info/django-telegram-bot-part-11/;Django
django-novaposhta · PyPI;https://pypi.org/project/django-novaposhta/;Django
django-oscar/django-oscar: Domain-driven e-commerce for Django;https://github.com/django-oscar/django-oscar#id3;Django
dmitryrubtsov/Python-for-Data-Science: Education;https://github.com/dmitryrubtsov/Python-for-Data-Science;Books
Do You Post Too Much? Analyze Personal Facebook Data with Python;https://www.dataquest.io/blog/analyze-facebook-data-python/?utm_content=bufferc96b5&utm_medium=social&utm_source=linkedin.com&utm_campaign=dataquest_buffer;MOOC and courses
Docker Swarm Mode Playground | Katacoda;https://www.katacoda.com/courses/docker-orchestration/playground;MOOC and courses
Dockerizing Flask With Compose and Machine – From Localhost to the Cloud – Real Python;https://realpython.com/dockerizing-flask-with-compose-and-machine-from-localhost-to-the-cloud/;Articles about Software Engineering
Doctest in Python. A very simple but useful way to test… | by Yang Zhou | TechToFreedom | Aug, 2020 | Medium;https://medium.com/techtofreedom/doctest-in-python-19a17b781cbe;Articles about Software Engineering
Domain Driven Design Quickly;https://www.infoq.com/minibooks/domain-driven-design-quickly/;Books
donnemartin/system-design-primer: Learn how to design large-scale systems. Prep for the system design interview. Includes Anki flashcards.;https://github.com/donnemartin/system-design-primer;Code
DOU Проектор: Homemade Machine Learning — репозиторий для изучения ML на Python с Jupyter-демо | DOU;https://dou.ua/lenta/articles/dou-projector-homemade-machine-learning/;Articles about Software Engineering
DOU Проектор: репозиторий на GitHub — шпаргалка для изучения Python | DOU;https://dou.ua/lenta/articles/dou-projector-playground-for-learning-python/;Articles about Software Engineering
Download · Bootstrap;https://getbootstrap.com/docs/4.4/getting-started/download/;Developer's Tools
Download All Free Textbooks from Springer using Python;https://towardsdatascience.com/download-all-free-textbooks-from-springer-using-python-bd0b10e0ccc;Developer's Tools
Download jQuery | jQuery;https://jquery.com/download/;Developer's Tools
Download RequireJS;https://requirejs.org/docs/download.html;Developer's Tools
DZone Big Data;https://dzone.com/big-data-analytics-tutorials-tools-news;Textbooks
DZone: Programming & DevOps news, tutorials & tools;https://dzone.com/refcardz?filter=popular;MOOC and courses
Easy to Advanced Data Structures | Udemy;https://www.udemy.com/course/introduction-to-data-structures/?LSNPUBID=JVFxdTr9V80&ranEAID=JVFxdTr9V80&ranMID=39197&ranSiteID=JVFxdTr9V80-P91lzG_giImwniobx2X3Jg;MOOC and courses
Easy to Advanced Data Structures | Udemy;https://www.udemy.com/course/introduction-to-data-structures/?LSNPUBID=JVFxdTr9V80&ranEAID=JVFxdTr9V80&ranMID=39197&ranSiteID=JVFxdTr9V80-ZbkYrZOIS7t4Ikpe7FLW_A;MOOC and courses
ekzhu/datasketch: MinHash, LSH, LSH Forest, Weighted MinHash, HyperLogLog, HyperLogLog++, LSH Ensemble;https://github.com/ekzhu/datasketch;Code
Elasticsearch Analytics Tutorial. Use Knowi to connect to an… | by Patrick Bacon | Sep, 2020 | Towards Data Science;https://towardsdatascience.com/elasticsearch-analytics-tutorial-7d47029804a0;Articles about Software Engineering
Elements of Statistical Learning: data mining, inference, and prediction. 2nd Edition.;http://web.stanford.edu/~hastie/ElemStatLearn/;Books
EleutherAI/The-Pile;https://github.com/EleutherAI/The-Pile;Code
Eloquent JavaScript;https://eloquentjavascript.net/;Books
Embarrassingly parallel for loops — joblib 0.18.0.dev0 documentation;https://joblib.readthedocs.io/en/latest/parallel.html;Code
emmetio/emmet-atom: Emmet support for Atom;https://github.com/emmetio/emmet-atom#readme;Code
Episode #193 Break out the Django testing toolbox - [Python Bytes Podcast\];https://pythonbytes.fm/episodes/show/193/break-out-the-django-testing-toolbox;Django
Erotemic/ubelt: A Python utility belt containing simple tools, a stdlib like feel, and extra batteries. Hashing, Caching, Timing, Progress, and more made easy!;https://github.com/Erotemic/ubelt?utm_source=mybridge&utm_medium=blog&utm_campaign=read_more;Code
ersaurabhverma/autoplotter;https://github.com/ersaurabhverma/autoplotter;Code
ES6: прокси изнутри — CSS-LIVE;https://css-live.ru/articles/es6-proksi-iznutri.html;Articles about Software Engineering
Essence of linear algebra - YouTube;https://www.youtube.com/playlist?list=PLZHQObOWTQDPD3MizzM2xVFitgF8hE_ab;Video
Estimating tasks with statistics and simulations using Python | by Sau Sheong | Aug, 2020 | Towards Data Science;https://towardsdatascience.com/estimating-tasks-with-statistics-and-simulations-using-python-ddd1df3c7ce1;Articles about Software Engineering
Exercise files;https://www.linkedin.com/learning/python-essential-training-2/exercise-files?pathUrn=urn%3Ali%3AlyndaLearningPath%3A56db2f4b3dd5596be4e4989f;MOOC and courses
Exercises on the Python Track | Exercism;https://exercism.io/tracks/python/exercises;MOOC and courses
Exploratory Data Analysis(EDA): Python | by Kaushik Katari | Aug, 2020 | Towards Data Science;https://towardsdatascience.com/exploratory-data-analysis-eda-python-87178e35b14;Articles about Software Engineering
Explore - LeetCode;https://leetcode.com/explore/;MOOC and courses
Explore and Visualize your LinkedIn Network with Python and Sentiment Analysis | by Khuyen Tran | Aug, 2020 | Towards Data Science;https://towardsdatascience.com/sentiment-analysis-of-linkedin-messages-3bb152307f84;Articles about Software Engineering
Exploring Design Patterns in Python | by Dan Root | Oct, 2020 | Towards Data Science;https://towardsdatascience.com/exploring-design-patterns-in-python-be55fbcf8b34;Articles about Software Engineering
Exploring your data with just 1 line of Python - Towards Data Science;https://towardsdatascience.com/exploring-your-data-with-just-1-line-of-python-4b35ce21a82d;Developer's Tools
explosion/spacy-streamlit: 👑 spaCy building blocks and visualizers for Streamlit apps;https://github.com/explosion/spacy-streamlit;Code
Extracting Keyphrases from Text: RAKE and Gensim in Python | by Nikita Saxena | Sep, 2020 | Towards Data Science;https://towardsdatascience.com/extracting-keyphrases-from-text-rake-and-gensim-in-python-eefd0fad582f;Articles about Software Engineering
Extracting Speech from Video using Python | by Behic Guven | Aug, 2020 | Towards Data Science;https://towardsdatascience.com/extracting-speech-from-video-using-python-f0ec7e312d38;Articles about Software Engineering
Extracting Speech from Video using Python | by Behic Guven | Aug, 2020 | Towards Data Science;https://towardsdatascience.com/extracting-speech-from-video-using-python-f0ec7e312d38;Articles about Software Engineering
eyaltrabelsi/pandas-log: The goal of pandas-log is to provide feedback about basic pandas operations. It provides simple wrapper functions for the most common functions that add additional logs;https://github.com/eyaltrabelsi/pandas-log;Code
facebook/create-react-app: Set up a modern web app by running one command.;https://github.com/facebook/create-react-app;Code
facebookresearch/detectron2: Detectron2 is FAIR's next-generation platform for object detection and segmentation.;https://github.com/facebookresearch/detectron2;Code
facebookresearch/DrQA: Reading Wikipedia to Answer Open-Domain Questions;https://github.com/facebookresearch/DrQA;Code
facebookresearch/faiss: A library for efficient similarity search and clustering of dense vectors.;https://github.com/facebookresearch/faiss;Code
facebookresearch/fastMRI: A large-scale dataset of both raw MRI measurements and clinical MRI images;https://github.com/facebookresearch/fastMRI;Code
facebookresearch/habitat-api: A modular high-level library to train embodied AI agents across a variety of tasks, environments, and simulators.;https://github.com/facebookresearch/habitat-api;Code
facebookresearch/KILT: Library for Knowledge Intensive Language Tasks;https://github.com/facebookresearch/KILT;Code
facebookresearch/LAMA: LAnguage Model Analysis;https://github.com/facebookresearch/LAMA;Code
facebookresearch/nevergrad: A Python toolbox for performing gradient-free optimization;https://github.com/facebookresearch/nevergrad;Code
facebookresearch/pytext: A natural language modeling framework based on PyTorch;https://github.com/facebookresearch/pytext;Code
facebookresearch/pytorch_GAN_zoo: A mix of GAN implementations including progressive growing;https://github.com/facebookresearch/pytorch_GAN_zoo;Code
facebookresearch/VideoPose3D: Efficient 3D human pose estimation in video using 2D keypoint trajectories;https://github.com/facebookresearch/VideoPose3D;Code
facebookresearch/visdom: A flexible tool for creating, organizing, and sharing visualizations of live, rich data. Supports Torch and Numpy.;https://github.com/facebookresearch/visdom;Code
facebookresearch/vizseq: An Analysis Toolkit for Natural Language Generation (Translation, Captioning, Summarization, etc.);https://github.com/facebookresearch/vizseq;Code
FavioVazquez/ds-cheatsheets: List of Data Science Cheatsheets to rule the world;https://github.com/FavioVazquez/ds-cheatsheets;Code
FeatureSelector: отбор признаков для машинного обучения на Python;https://proglib.io/p/feature-selector/;Articles about Software Engineering
Find Open Datasets and Machine Learning Projects | Kaggle;https://www.kaggle.com/datasets;Developer's Tools
Finding Duplicate Quora Questions Using Machine Learning | by Arun Mohan | Sep, 2020 | Towards Data Science;https://towardsdatascience.com/finding-duplicate-quora-questions-using-machine-learning-249475b7d84d;Articles about Software Engineering
First Steps With PySpark and Big Data Processing – Real Python;https://realpython.com/pyspark-intro/;Articles about Software Engineering
Five Advanced Django Tips | LAAC Technology;https://www.laac.dev/blog/five-advanced-django-tips/;Django
Flask - Full Stack Python;https://www.fullstackpython.com/flask.html;Developer's Tools
Flask tutorial — Dependency Injector 3.30.2 documentation;http://python-dependency-injector.ets-labs.org/tutorials/flask.html;Articles about Software Engineering
Free books;https://www.mccme.ru/free-books/;Books
Free Clean Architecture Course: Patterns, Practices, and Principles for Beginners | Pluralsight;https://www.pluralsight.com/courses/clean-architecture-patterns-practices-principles?clickid=2FASLxUR5xyOUgVwUx0Mo3EWUki2TWVKx3OTW80&irgwc=1&mpid=1193463&utm_source=impactradius&utm_medium=digital_affiliate&utm_campaign=1193463&aid=7010a000001xAKZAA2;MOOC and courses
Free From MIT: Intro to Computer Science and Programming in Python;https://www.kdnuggets.com/2020/09/free-mit-intro-computer-science-programming-python.html;Articles about Software Engineering
Free JavaScript Course: Code School JavaScript Road Trip Part 1 | Pluralsight;https://www.pluralsight.com/courses/code-school-javascript-road-trip-part-1;Online education (others)
Free Software Architect Course: Developer to Architect | Pluralsight;https://www.pluralsight.com/courses/developer-to-architect?clickid=2FASLxUR5xyOUgVwUx0Mo3EWUki2TWVrx3OTW80&irgwc=1&mpid=1193463&utm_source=impactradius&utm_medium=digital_affiliate&utm_campaign=1193463&aid=7010a000001xAKZAA2;MOOC and courses
Free SOLID Course: Principles of Object Oriented Design | Pluralsight;https://www.pluralsight.com/courses/principles-oo-design?clickid=2FASLxUR5xyOUgVwUx0Mo3EWUki2W4xqx3OTW80&irgwc=1&mpid=1193463&utm_source=impactradius&utm_medium=digital_affiliate&utm_campaign=1193463&aid=7010a000001xAKZAA2;MOOC and courses
free-data-science-learning/free-data-science-books.md at master · LearnDataSci/free-data-science-learning;https://github.com/LearnDataSci/free-data-science-learning/blob/master/free-data-science-books.md;Online education (others)
"From Jupyter Notebook To Scripts. Don’t play toy models; be ready to… | by Geoffrey Hung | Aug, 2020 | Towards Data Science";https://towardsdatascience.com/from-jupyter-notebook-to-sc-582978d3c0c;Articles about Software Engineering
Front Matter — Alembic 1.4.2 documentation;https://alembic.sqlalchemy.org/en/latest/front.html#installation;MOOC and courses
Front-end Developer Handbook 2019 - Learn the entire JavaScript, CSS and HTML development practice!;https://frontendmasters.com/books/front-end-handbook/2019/;Textbooks
Front-End Web UI Frameworks and Tools: Bootstrap 4 — главная | Coursera;https://www.coursera.org/learn/bootstrap-4/home/welcome?utm_campaign=mgT_0F1wEem5a3PcVrpGrg&utm_medium=email&utm_source=learner;MOOC and courses
Full Deployment of Cookiecutter-Django on DigitalOcean with Docker | by Matthew Wimberly | codeburst;https://codeburst.io/a-full-deployment-of-cookiecutter-django-on-digitalocean-with-docker-5293f31a1fdc;Django
Full production Django Docker configuration | by Tigran Bayburtsyan | ITNEXT;https://itnext.io/full-production-django-docker-configuration-75824855da03;Django
Full Stack Development in Django | Codementor;https://www.codementor.io/@maxongzb/full-stack-development-in-django-reading-time-3-mins-15zz3791m2;Django
Full Stack Foundations;https://www.udacity.com/course/full-stack-foundations--ud088;MOOC and courses
Full-Stack JavaScript in Six Weeks: A Curriculum Guide;https://medium.com/ladies-storm-hackathons/follow-this-curriculum-to-learn-full-stack-javascript-in-six-weeks-c0f100426902;Roadmaps
Functional Programming HOWTO — Python 3.8.2 documentation;https://docs.python.org/3/howto/functional.html;Articles about Software Engineering
functools — Higher-order functions and operations on callable objects — Python 3.8.2 documentation;https://docs.python.org/3/library/functools.html;Articles about Software Engineering
GeoSpatial analysis in Python and Jupyter Notebooks | by Fran Pérez | Oct, 2020 | Towards Data Science;https://towardsdatascience.com/geospatial-analysis-in-python-and-jupyter-notebooks-f90de25b0777;Articles about Software Engineering
Get Started - Flyway by Redgate • Database Migrations Made Easy.;https://flywaydb.org/getstarted/;Developer's Tools
Get Started With Django Part 2: Django User Management – Real Python;https://realpython.com/django-user-management/;Django
Get Started With Django Part 3: Django View Authorization – Real Python;https://realpython.com/preview/django-view-authorization/;Django
Get Started With Django Part 3: Django View Authorization – Real Python;https://realpython.com/django-view-authorization/;Django
Getting started — Flexx 1.0 documentation;https://flexx.readthedocs.io/en/latest/start.html;Developer's Tools
Getting started — HiPlot 0.1.9.post2 documentation;https://facebookresearch.github.io/hiplot/getting_started.html;Developer's Tools
Getting started — pandas 1.0.3 documentation;https://pandas.pydata.org/pandas-docs/stable/getting_started/index.html;Developer's Tools
Getting started — SciPy.org;https://www.scipy.org/getting-started.html;Developer's Tools
Getting started with Django | Django;https://www.djangoproject.com/start/;Django
Getting started with Django middleware / Paweł Fertyk;https://pfertyk.me/2020/04/getting-started-with-django-middleware/;Django
Getting Started with Docker for Data Scientists | by Sara A. Metwalli | Aug, 2020 | Towards Data Science;https://towardsdatascience.com/getting-started-with-docker-for-data-scientists-a2ed505e2a09;Articles about Software Engineering
Getting started with PyMC3 — PyMC3 3.8 documentation;https://docs.pymc.io/notebooks/getting_started.html;Developer's Tools
Git - Lecture 0 - CS50's Web Programming with Python and JavaScript - YouTube;https://www.youtube.com/watch?v=1u2qu-EmIRc&list=PLhQjrBD2T382hIW-IsOVuXP1uMzEvmcE5;Video
Git Playground | Katacoda;https://www.katacoda.com/courses/git/playground;MOOC and courses
Git Started with GitHub | Udemy;https://www.udemy.com/course/git-started-with-github/learn/lecture/2918876#overview;MOOC and courses
github/hub: A command-line tool that makes git easier to use with GitHub.;https://github.com/github/hub;Code
Glitch;https://glitch.com/;Developer's Tools
Golovach Courses - YouTube;https://www.youtube.com/user/KharkovITCourses/playlists;Video
Google - Site Reliability Engineering;https://landing.google.com/sre/sre-book/toc/index.html;Books
Google's Python Class | Python Education | Google Developers;https://developers.google.com/edu/python;Textbooks
Got Writer’s Block? It’s PlotJam to the Rescue! | by Robert A. Gonsalves | Sep, 2020 | Towards Data Science;https://towardsdatascience.com/got-writers-block-it-s-plotjam-to-the-rescue-e555db9f3272;Articles about Software Engineering
Graph Search, Shortest Paths, and Data Structures — главная | Coursera;https://www.coursera.org/learn/algorithms-graphs-data-structures/home/welcome;MOOC and courses
Graph Search, Shortest Paths, and Data Structures | Coursera;https://www.coursera.org/learn/algorithms-graphs-data-structures;MOOC and courses
Graphene-Python;https://docs.graphene-python.org/en/latest/quickstart/;Developer's Tools
Great Python Libraries for accessing Public Data | by Sadrach Pierre, Ph.D. | Oct, 2020 | Towards Data Science;https://towardsdatascience.com/great-python-libraries-for-accessing-public-data-adef88073be;Articles about Software Engineering
great-expectations/great_expectations: Always know what to expect from your data.;https://github.com/great-expectations/great_expectations;Code
Greedy Algorithms, Minimum Spanning Trees, and Dynamic Programming | Coursera;https://www.coursera.org/learn/algorithms-greedy;MOOC and courses
Grok Learning;https://groklearning.com/launch/#language=javascript&language=python&language=sql&level=beginners&level=intermediate&level=advanced;MOOC and courses
Grokking the System Design Interview - Learn Interactively;https://www.educative.io/courses/grokking-the-system-design-interview?affiliate_id=5073518643380224;MOOC and courses
Grow;https://grow.telescopeai.com/pdp/;Roadmaps
GT - Refresher - Advanced OS;https://www.udacity.com/course/gt-refresher-advanced-os--ud098;MOOC and courses
gto76/python-cheatsheet: Comprehensive Python Cheatsheet;https://github.com/gto76/python-cheatsheet;Code
GUI (графический интерфейс пользователя) | Python 3 для начинающих и чайников;https://pythonworld.ru/gui;Developer's Tools
GuiProgramming - Python Wiki;https://wiki.python.org/moin/GuiProgramming;Developer's Tools
HackerEarth | Online coding platform and developer assessment software;https://www.hackerearth.com/for-developers;Jobs
Hands-on Guide to StanfordNLP - A Python Wrapper For Popular NLP Library CoreNLP - Analytics India Magazine;https://analyticsindiamag.com/hands-on-guide-to-stanfordnlp-a-python-wrapper-for-popular-nlp-library-corenlp/;Articles about Software Engineering
hankcs/HanLP;https://github.com/hankcs/HanLP;Code
happygirlzt - YouTube;https://m.youtube.com/c/happygirlzt;Video
Harvard CS109 Data Science Course, Resources Free and Online;https://www.kdnuggets.com/2013/11/harvard-cs109-data-science-course-resources-free-online.html;MOOC and courses
Haskell и хождение в базы данных с помощью HDBC | Записки программиста;https://eax.me/haskell-hdbc/;Articles about Software Engineering
Hello Python - YouTube;https://www.youtube.com/channel/UCwx8lBs4yUPBNvyq_VQcwJg;Video
Hello, skromnitsky · App Center;https://appcenter.ms/apps;Developer's Tools
hh.ua;https://kiev.hh.ua/applicant/resumes?from=header_new;Jobs
High Performance Computer Architecture;https://www.udacity.com/course/high-performance-computer-architecture--ud007;MOOC and courses
High Performance Computing;https://www.udacity.com/course/high-performance-computing--ud281;MOOC and courses
hoffstadt/DearPyGui: DearPyGui: A GPU Accelerated Python GUI Framework;https://github.com/hoffstadt/DearPyGui;Code
holoviz/hvplot: A high-level plotting API for pandas, dask, xarray, and networkx built on HoloViews;https://github.com/holoviz/hvplot;Books
Home - Quora;https://www.quora.com/;Articles about Software Engineering
House Prices: Advanced Regression Techniques | Kaggle;https://www.kaggle.com/c/house-prices-advanced-regression-techniques;Games for Education
How and why I built A Decentralized and Multi-Level Information System Using DJango 3.1 / Python3.8 / Postgres / Chart.js and Deployed on Ubuntu, Nginx and Gunicorn. | Codementor;https://www.codementor.io/@collinsonyemaobi/how-and-why-i-built-a-decentralized-and-multiple-level-information-system-portal-using-django-3-1-python3-8-chart-js-and-deployed-on-ubuntu-nginx-and-gunicorn-1al9rae3mj;Django
How to add tags to your models in Django: Django Packages Series #1 | Hacker Noon;https://hackernoon.com/how-to-add-tags-to-your-models-in-django-django-packages-series-1-4y1b32sf?source=rss;Django
How to become a data scientist? - Towards Data Science;https://towardsdatascience.com/how-to-become-a-data-scientist-3f8d6e75482f;Roadmaps
How to Build a Web Scraper in Python | by Roman Paolucci | Aug, 2020 | Towards Data Science;https://towardsdatascience.com/how-to-build-a-web-scraper-in-python-c75563ee60b7;Articles about Software Engineering
How to Build an E-commerce Website with Django and Python;https://www.freecodecamp.org/news/how-to-build-an-e-commerce-website-with-django-and-python/;Django
How to Build an Effective Data Science Portfolio - Towards Data Science;https://towardsdatascience.com/how-to-build-an-effective-data-science-portfolio-56d19b885aa8;Jobs
How to compress the uploaded image before storing it in Django - https://pythoncircle.com;https://pythoncircle.com/post/707/how-to-compress-the-uploaded-image-before-storing-it-in-django/;Django
How To Create A Vocabulary Builder For NLP Tasks?;https://analyticsindiamag.com/how-to-create-a-vocabulary-builder-for-nlp-tasks/;Articles about Software Engineering
How to create an analytics dashboard in a Django app;https://www.freecodecamp.org/news/how-to-create-an-analytics-dashboard-in-django-app/;Django
How to Deploy A Django Project - DEV;https://dev.to/ericnanhu/how-to-deploy-a-django-project-cfo;Django
How To Deploy Django App with Nginx, Gunicorn, PostgreSQL and Let's Encrypt SSL on Ubuntu | Django Central;https://djangocentral.com/deploy-django-with-nginx-gunicorn-postgresql-and-lets-encrypt-ssl-on-ubuntu/;Django
How to deploy ML models using Flask + Gunicorn + Nginx + Docker;https://towardsdatascience.com/how-to-deploy-ml-models-using-flask-gunicorn-nginx-docker-9b32055b3d0;Developer's Tools
How to Design Programs;https://htdp.org/;Books
How to Extract Data From Existing Series and DataFrame in Pandas | by Yong Cui, Ph.D. | Sep, 2020 | Towards Data Science;https://towardsdatascience.com/how-to-extract-data-from-existing-series-and-dataframe-in-pandas-8d6882814ab7;Articles about Software Engineering
How to Get a Job with Python - Towards Data Science;https://towardsdatascience.com/how-to-get-a-job-with-python-575f1b79fa11;Jobs
How to get started with Google Text-to-Speech using Python | by Bharath K | Aug, 2020 | Towards Data Science;https://towardsdatascience.com/how-to-get-started-with-google-text-to-speech-using-python-485e43d1d544;Articles about Software Engineering
How to Install and Run Hadoop on Windows for Beginners - Data Science Central;https://www.datasciencecentral.com/profiles/blogs/how-to-install-and-run-hadoop-on-windows-for-beginners;Developer's Tools
How to Install Django on Ubuntu;https://mobile.linuxtoday.com/developer/how-to-install-django-on-ubuntu-200404214525.html?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+linuxtoday%2Flinux+(Linux+Today);Django
How to Learn Python (Step-by-Step) in 2020 — Dataquest;https://www.dataquest.io/blog/learn-python-the-right-way/?utm_content=buffer086ce&utm_medium=social&utm_source=linkedin.com&utm_campaign=dataquest_buffer;Articles about Software Engineering
How to Learn SQL - DataCamp;https://www.datacamp.com/community/blog/how-to-learn-sql;Articles about Software Engineering
How to Make a Simple CMS With Cloudflare, GitHub Actions and Metalsmith | CSS-Tricks;https://css-tricks.com/how-to-make-a-simple-cms-with-cloudflare-github-actions-and-metalsmith/;Project examples for Junior
How to Make a Twitter Bot in Python With Tweepy – Real Python;https://realpython.com/twitter-bot-python-tweepy/;Articles about Software Engineering
How to Move a Django Model to Another App – Real Python;https://realpython.com/move-django-model/;Django
How to NEVER use lambdas - Python 3 edition;https://gist.github.com/MineRobber9000/19c331a9f5d8e994a4ed251f0ffa1e98;Code
How to not get caught while web scraping? - Data Driven Investor - Medium;https://medium.com/datadriveninvestor/how-to-not-get-caught-while-web-scraping-88097b383ab8;Books
How to Redesign & Customize the Django Admin with Bootstrap - SitePoint;https://www.sitepoint.com/how-to-hack-redesign-customize-the-django-admin-with-bootstrap/?utm_source=rss;Django
How to reset Django superuser password - https://pythoncircle.com;https://pythoncircle.com/post/704/how-to-reset-django-superuser-password/;Django
How to reset password in Django. In this article, you gonna see you how… | by Renjith S Raj | Medium;https://medium.com/@renjithsraj/how-to-reset-password-in-django-bd5e1d6ed652;Django
How To Scale Django/Postgres With PgBouncer on Heroku | Hacker Noon;https://hackernoon.com/how-to-scale-djangopostgres-with-pgbouncer-on-heroku-n91e3xsb?source=rss;Django
How to Scrape a Website with a Single Line of Python Code | by Lynn Leifker | The Startup | Medium;https://medium.com/swlh/how-to-scrape-a-website-with-a-single-line-of-python-code-5efe124275bb;Articles about Software Engineering
How to set a variable in Django template - https://pythoncircle.com;https://pythoncircle.com/post/701/how-to-set-a-variable-in-django-template/;Django
How to start web development with Python using the Django framework | by Tommaso De Ponti | Quick Code | Medium;https://medium.com/quick-code/how-to-start-web-development-with-python-using-the-django-framework-371c4c4794ca;Django
How to store digital files in databases with Python | Towards Data Science;https://towardsdatascience.com/how-to-store-digital-files-in-a-database-with-python-f9ec8d15741a;Articles about Software Engineering
How to Update All Python Packages | ActiveState;https://www.activestate.com/resources/quick-reads/how-to-update-all-python-packages/;Developer's Tools
How to Update Your Live Django Website | Towards Data Science;https://towardsdatascience.com/how-to-update-your-live-django-website-b84645753ea1;Django
How To Upload Images With Django | Django Central;https://djangocentral.com/uploading-images-with-django/;Django
How to use Ansible to update your Django web app - PythonAnywhere News;https://blog.pythonanywhere.com/191/;Articles about Software Engineering
How to version control Jupyter Notebooks | by Amit Rathi | Aug, 2020 | Towards Data Science;https://towardsdatascience.com/how-to-version-control-jupyter-notebooks-ccf0be144319;Articles about Software Engineering
How to Wrap Your Head Around Spark NLP | by Mustafa Aytuğ Kaya | Aug, 2020 | Towards Data Science;https://towardsdatascience.com/how-to-wrap-your-head-around-spark-nlp-a6f6a968b7e8;Articles about Software Engineering
How to write a killer Software Engineering résumé - freeCodeCamp.org - Medium;https://medium.com/free-code-camp/writing-a-killer-software-engineering-resume-b11c91ef699d;Jobs
How to Write an Installable Django App – Real Python;https://realpython.com/installable-django-app/;Django
How to Write Efficient Views, Models, and Queries in Django;https://www.freecodecamp.org/news/how-to-write-efficient-views-models-and-queries-in-django/;Django
How we built our first full-stack JavaScript web app in three weeks;https://medium.com/ladies-storm-hackathons/how-we-built-our-first-full-stack-javascript-web-app-in-three-weeks-8a4668dbd67c;Roadmaps
HTML / CSS Basics;https://slides.com/sergeyshalyapin/html_css_basics#/11;Articles about Software Engineering
HTML Data Cleaning in Python for NLP | by Brandon Ko | Sep, 2020 | Towards Data Science;https://towardsdatascience.com/website-data-cleaning-in-python-for-nlp-dda282a7a871;Articles about Software Engineering
HTML Scraping — The Hitchhiker's Guide to Python;https://docs.python-guide.org/scenarios/scrape/;Code
HTML5 и CSS3. Веб-разработка по стандартам нового поколения - Хоган Брайан - Google Книги;https://books.google.ru/books/about/HTML5_%D0%B8_CSS3_%D0%92%D0%B5%D0%B1_%D1%80%D0%B0%D0%B7%D1%80%D0%B0%D0%B1%D0%BE%D1%82%D0%BA.html?id=Sgcw0HrQ7KYC&redir_esc=y&hl=ru;Books
HTTP & Web Servers;https://www.udacity.com/course/http-web-servers--ud303;MOOC and courses
HTTP & Web Servers - Udacity;https://classroom.udacity.com/courses/ud303;Video
https://scratch.mit.edu/projects/374672500/editor;https://scratch.mit.edu/projects/374672500/editor;MOOC and courses
Hugging Face – On a mission to solve NLP, one commit at a time.;https://huggingface.co/models;Articles about Software Engineering
huggingface/datasets: Fast, efficient, open-access datasets and evaluation metrics for Natural Language Processing in PyTorch, TensorFlow, NumPy and Pandas;https://github.com/huggingface/datasets;Code
humiaozuzu/awesome-flask: A curated list of awesome Flask resources and plugins;https://github.com/humiaozuzu/awesome-flask;Code
I Dropped Out of School to Create My Own Data Science Master’s — Here’s My Curriculum | by David Venturi | Medium;https://medium.com/@davidventuri/i-dropped-out-of-school-to-create-my-own-data-science-master-s-here-s-my-curriculum-1b400dcee412;Articles about Software Engineering
If I had to start learning Data Science again, how would I do it?;https://towardsdatascience.com/if-i-had-to-start-learning-data-science-again-how-would-i-do-it-78a72b80fd93;Roadmaps
igorbarinov/awesome-data-engineering: A curated list of data engineering tools for software developers;https://github.com/igorbarinov/awesome-data-engineering;Code
Images and masks splitting into multiple pieces in Python with Google Colab | by Oleksii Sheremet | Aug, 2020 | Towards Data Science;https://towardsdatascience.com/images-and-masks-splitting-into-multiple-pieces-in-python-with-google-colab-2f6b2ddcb322;Code
Imperative vs Declarative Programming;https://tylermcginnis.com/imperative-vs-declarative-programming/;Articles about Software Engineering
Implement real-time updates with Django REST Framework: Building Cryptocurrency API | Hacker Noon;https://hackernoon.com/implement-real-time-updates-with-django-rest-framework-building-cryptocurrency-api-2e103z7w?source=rss;Django
Improving Deep Neural Networks: Hyperparameter tuning, Regularization and Optimization | Coursera;https://www.coursera.org/learn/deep-neural-network?specialization=deep-learning;MOOC and courses
Increase Your Developer Confidence With a Great Django Test Suite | by Victoria Drake | Better Programming | Oct, 2020 | Medium;https://medium.com/better-programming/increase-your-developer-confidence-with-a-great-django-test-suite-e1d8e7df8c90;Django
Inferential Statistical Analysis with Python — главная | Coursera;https://www.coursera.org/learn/inferential-statistical-analysis-python/home/welcome;MOOC and courses
Input and output – Intro to Interviewing – Grasshopper;https://learn.grasshopper.app/project/intro-to-interviewing;MOOC and courses
Installation — Kivy 1.11.1 documentation;https://kivy.org/doc/stable/gettingstarted/installation.html;Developer's Tools
Installation — Koalas 0.33.0 documentation;https://koalas.readthedocs.io/en/latest/getting_started/install.html;Developer's Tools
Installation — pyglet v1.5.0;https://pyglet.readthedocs.io/en/latest/programming_guide/installation.html;Developer's Tools
Installing and Configuring MySQL with Django | by I Sun | codeburst;https://codeburst.io/installing-and-configuring-mysql-with-django-a7b54b0f27ce;Django
Installing Shuup — Shuup 1.9.3b3+ documentation;https://shuup.readthedocs.io/en/latest/howto/getting_started.html;Articles about Software Engineering
Integrating Summernote WYSIWYG Editor in Django | Django Central;https://djangocentral.com/integrating-summernote-in-django/;Django
Intel® Edge AI Fundamentals with OpenVINO™;https://www.udacity.com/course/intel-edge-AI-fundamentals-with-openvino--ud132;MOOC and courses
Interactive Map Visualizations in Python and Bokeh | Towards Data Science;https://towardsdatascience.com/level-up-your-visualizations-make-interactive-maps-with-python-and-bokeh-7a8c1da911fd;Articles about Software Engineering
interpretml/interpret: Fit interpretable machine learning models. Explain blackbox machine learning.;https://github.com/interpretml/interpret;Code
Interview Camp - Online Bootcamp for Coding Interviews;https://interviewcamp.io/;Jobs
Intro to Algorithms | Udacity;https://www.udacity.com/course/intro-to-algorithms--cs215;MOOC and courses
Intro to Artificial Intelligence - Udacity;https://classroom.udacity.com/courses/cs271;MOOC and courses
Intro to Backend - Udacity;https://classroom.udacity.com/courses/ud171;Video
Intro to Data Analysis | Udacity;https://www.udacity.com/course/intro-to-data-analysis--ud170;MOOC and courses
Intro to Data Science;https://www.udacity.com/course/intro-to-data-science--ud359;MOOC and courses
Intro to Data Structures and Algorithms;https://www.udacity.com/course/data-structures-and-algorithms-in-python--ud513;MOOC and courses
Intro to Deep Learning with PyTorch;https://www.udacity.com/course/deep-learning-pytorch--ud188;MOOC and courses
Intro to Descriptive Statistics;https://www.udacity.com/course/intro-to-descriptive-statistics--ud827;MOOC and courses
Intro to DevOps;https://www.udacity.com/course/intro-to-devops--ud611;MOOC and courses
Intro To Dynamic Programming - Coding Interview Preparation | Udemy;https://www.udemy.com/course/dynamic-programming/?LSNPUBID=JVFxdTr9V80&ranEAID=JVFxdTr9V80&ranMID=39197&ranSiteID=JVFxdTr9V80-5t_2vOX4idtKYG4iSwTiag;MOOC and courses
Intro To Dynamic Programming - Coding Interview Preparation | Udemy;https://www.udemy.com/course/dynamic-programming/?LSNPUBID=JVFxdTr9V80&ranEAID=JVFxdTr9V80&ranMID=39197&ranSiteID=JVFxdTr9V80-qJwyifi_MKZkj41MTaaH.Q;MOOC and courses
Intro to Flask Series - YouTube;https://www.youtube.com/playlist?list=PLXmMXHVSvS-AjwTOtiW1DXFYTgUlrUmHV;Video
Intro to Hadoop and MapReduce;https://www.udacity.com/course/intro-to-hadoop-and-mapreduce--ud617;MOOC and courses
Intro to Inferential Statistics;https://www.udacity.com/course/intro-to-inferential-statistics--ud201;MOOC and courses
Intro to Progressive Web Apps;https://www.udacity.com/course/intro-to-progressive-web-apps--ud811;MOOC and courses
Intro to Relational Databases;https://www.udacity.com/course/intro-to-relational-databases--ud197;MOOC and courses
Intro to TensorFlow for Deep Learning;https://www.udacity.com/course/intro-to-tensorflow-for-deep-learning--ud187;Math
Intro to the Design of Everyday Things;https://www.udacity.com/course/intro-to-the-design-of-everyday-things--design101;MOOC and courses
Intro to Theoretical Computer Science;https://www.udacity.com/course/intro-to-theoretical-computer-science--cs313;MOOC and courses
Introducing AutoScraper: A Smart, Fast and Lightweight Web Scraper For Python | by Alireza Mika | Better Programming | Sep, 2020 | Medium;https://medium.com/better-programming/introducing-autoscraper-a-smart-fast-and-lightweight-web-scraper-for-python-20987f52c749;Articles about Software Engineering
Introducing Bamboolib — a GUI for Pandas - Towards Data Science;https://towardsdatascience.com/introducing-bamboolib-a-gui-for-pandas-4f6c091089e3;Developer's Tools
Introducing GitFlow;https://datasift.github.io/gitflow/IntroducingGitFlow.html;Articles about Software Engineering
Introducing Pandas Objects | Python Data Science Handbook;https://jakevdp.github.io/PythonDataScienceHandbook/03.01-introducing-pandas-objects.html;Code
Introduction - Scrimba Tutorial;https://scrimba.com/p/pPPeCy/c7veET3;MOOC and courses
Introduction - Выразительный Javascript;https://eloquent-javascript.karmazzin.ru/;Books
Introduction to Computational Thinking and Data Science | edX;https://www.edx.org/course/introduction-to-computational-thinking-and-data-4?source=aw&awc=6798_1531898458_2bba85670feb320e9c65b2b6f704ee06&utm_source=aw&utm_medium=affiliate_partner&utm_content=text-link&utm_term=301045_https%3A%2F%2Fwww.class-central.com%2F;MOOC and courses
Introduction to Computer Science and Programming in Python | Electrical Engineering and Computer Science | MIT OpenCourseWare;https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-0001-introduction-to-computer-science-and-programming-in-python-fall-2016/;MOOC and courses
Introduction to Computer Vision;https://www.udacity.com/course/introduction-to-computer-vision--ud810;MOOC and courses
Introduction to Computing: Explorations in Language, Logic, and Machines;http://computingbook.org/;Books
Introduction to D3 - Scrimba Tutorial;https://scrimba.com/p/pb4WsX/c2bB4hN;MOOC and courses
Introduction to Data Preprocessing | Sci-kit learn library | Towards Data Science;https://towardsdatascience.com/introduction-to-data-preprocessing-67a67c42a036;Articles about Software Engineering
Introduction to Data Science in Python | Coursera;https://www.coursera.org/learn/python-data-analysis?specialization=data-science-python;MOOC and courses
Introduction to Dynamical Systems and Chaos;https://www.complexityexplorer.org/courses/91-introduction-to-dynamical-systems-and-chaos;MOOC and courses
Introduction to Graduate Algorithms;https://www.udacity.com/course/introduction-to-graduate-algorithms--ud401;MOOC and courses
Introduction to GraphQL | GraphQL;https://graphql.org/learn/;MOOC and courses
Introduction to JavaScript | Codecademy;https://www.codecademy.com/learn/introduction-to-javascript;MOOC and courses
Introduction to Linear Algebra, 5th Edition;http://math.mit.edu/~gs/linearalgebra/;Books
Introduction to Machine Learning - Online Course | DataCamp;https://learn.datacamp.com/courses/introduction-to-machine-learning-with-r;MOOC and courses
Introduction to Machine Learning Course | Udacity;https://www.udacity.com/course/intro-to-machine-learning--ud120;MOOC and courses
Introduction to Operating Systems;https://www.udacity.com/course/introduction-to-operating-systems--ud923;MOOC and courses
Introduction to Operating Systems - Udacity;https://classroom.udacity.com/courses/ud923;Video
Introduction to Programming in Java · Computer Science;https://introcs.cs.princeton.edu/java/home/;Books
Introduction to Python Programming | Udacity;https://www.udacity.com/course/introduction-to-python--ud1110;MOOC and courses
Introduction To Python Programming | Udemy;https://www.udemy.com/course/pythonforbeginnersintro/learn/lecture/7717096#overview;MOOC and courses
Introduction to Scripting in Python | Coursera;https://www.coursera.org/specializations/introduction-scripting-in-python;MOOC and courses
Introduction to Statistics for Data Science;https://www.kdnuggets.com/2020/08/introduction-statistics-data-science.html;Articles about Software Engineering
Introduction to Statistics: Descriptive Statistics | edX;https://www.edx.org/course/introduction-to-statistics-descriptive-statistic-2;Math
Introduction to Statistics: Inference | edX;https://www.edx.org/course/introduction-to-statistics-inference-5;Math
Introduction to Statistics: Probability | edX;https://www.edx.org/course/introduction-to-statistics-probability-2;Math
Introduction to Word Embeddings (NLP) | by Prateek Sawhney | Sep, 2020 | Towards Data Science;https://towardsdatascience.com/introduction-to-word-embeddings-nlp-c72ffa2941fa;Articles about Software Engineering
ipinfo.io/json;http://ipinfo.io/json;Developer's Tools
ironmussa/Optimus at develop-3.0;https://github.com/ironmussa/Optimus/tree/develop-3.0;Code
IT Курсы программировани�� онлайн - обучение программированию, видео уроки | ITVDN;https://itvdn.com/ru;MOOC and courses
ivan-bilan/The-NLP-Pandect: A comprehensive reference for all topics related to Natural Language Processing;https://github.com/ivan-bilan/The-NLP-Pandect;Code
japronto/1_hello.md at master · squeaky-pl/japronto;https://github.com/squeaky-pl/japronto/blob/master/tutorial/1_hello.md;Code
JasonKessler/scattertext: Beautiful visualizations of how language differs among document types.;https://github.com/JasonKessler/scattertext;Code
JasonKessler/scattertext: Beautiful visualizations of how language differs among document types.;https://github.com/JasonKessler/scattertext#tutorial;Code
JavaScript ES6 Intro - Scrimba Tutorial;https://scrimba.com/p/p7v3gCd/cvk2Jfd;MOOC and courses
jaybaird/python-bloomfilter: Scalable Bloom Filter implemented in Python;https://github.com/jaybaird/python-bloomfilter;Code
jazzband/pip-tools: A set of tools to keep your pinned Python dependencies fresh.;https://github.com/jazzband/pip-tools;Code
Jetware - aise / tensorflow18_keras21_python36_cpu_notebook - 180509 appliance;http://jetware.io/appliances/aise/tensorflow18_keras21_python36_cpu_notebook;Developer's Tools
jfilter/clean-text: Python package for text cleaning;https://github.com/jfilter/clean-text;Code
jiffyclub/snakeviz: An in-browser Python profile viewer;https://github.com/jiffyclub/snakeviz;Code
Job search, venture investing & new tech products | AngelList;https://angel.co/;Jobs
jonathan-bower/DataScienceResources: Open Source Data Science Resources.;https://github.com/jonathan-bower/DataScienceResources;Online education (others)
JQuery;http://jquery.page2page.ru/index.php5/%D0%97%D0%B0%D0%B3%D0%BB%D0%B0%D0%B2%D0%BD%D0%B0%D1%8F_%D1%81%D1%82%D1%80%D0%B0%D0%BD%D0%B8%D1%86%D0%B0;Books
JS Bin - Collaborative JavaScript Debugging;http://jsbin.com/?html,output;Developer's Tools
jupytercalpoly/jupyterlab-interactive-dashboard-editor;https://github.com/jupytercalpoly/jupyterlab-interactive-dashboard-editor;Code
jupytercalpoly/jupyterlab-tabular-data-editor: Manipulate your tabular data responsively and effectively within JupyterLab.;https://github.com/jupytercalpoly/jupyterlab-tabular-data-editor;Code
Kaggle - YouTube;https://www.youtube.com/user/kaggledotcom;Video
Kaggle Mercedes и кросс-валидация / Блог компании Open Data Science / Хабр;https://habr.com/ru/company/ods/blog/336168/;MOOC and courses
kanaka/mal: mal - Make a Lisp;https://github.com/kanaka/mal;Online education (others)
karan/Projects: A list of practical projects that anyone can solve in any programming language.;https://github.com/karan/Projects;Project examples for Junior
karpathy/minGPT: A minimal PyTorch re-implementation of the OpenAI GPT (Generative Pretrained Transformer) training;https://github.com/karpathy/minGPT;Code
Katacoda - Interactive Learning Platform for Software Engineers;https://www.katacoda.com/;MOOC and courses
Keras Cheat Sheet: Neural Networks in Python - DataCamp;https://www.datacamp.com/community/blog/keras-cheat-sheet;Developer's Tools
kernel21d8d4ec28 | Kaggle;https://www.kaggle.com/skromnitsky/kernel21d8d4ec28/edit;Datasets
Kevin Naughton Jr. - YouTube;https://m.youtube.com/c/KevinNaughtonJr;Video
keyboard-shortcuts-windows.pdf;https://code.visualstudio.com/shortcuts/keyboard-shortcuts-windows.pdf;Developer's Tools
Khan Academy | Free Online Courses, Lessons & Practice;https://www.khanacademy.org/#statistics;MOOC and courses
K-Means Clustering from Scratch. Understand one of the most powerful… | by Theo Botella | Towards AI — Multidisciplinary Science Journal | Medium;https://medium.com/towards-artificial-intelligence/k-means-clustering-from-scratch-4e357ac4716f;Articles about Software Engineering
K-Means Clustering in Python: A Practical Guide – Real Python;https://realpython.com/k-means-clustering-python/;Articles about Software Engineering
Kmeans w/ Scikit-learn, Spotify API, & Tableau | Towards Data Science;https://towardsdatascience.com/unsupervised-learning-with-scikit-learn-spotify-api-and-tableau-public-50fcecf3bdf5;Articles about Software Engineering
K-Nearest Neighbors Algorithm In Python, by example | by Stephen Fordham | Sep, 2020 | Towards Data Science;https://towardsdatascience.com/k-nearest-neighbors-algorithm-in-python-by-example-79abc37a4443;Articles about Software Engineering
knockknock/README.md at master · huggingface/knockknock;https://github.com/huggingface/knockknock/blob/master/README.md/;Code
Knowing these, You Can Cover 99% of File Operations in Python | by Xiaoxu Gao | Aug, 2020 | Towards Data Science;https://towardsdatascience.com/knowing-these-you-can-cover-99-of-file-operations-in-python-84725d82c2df;Articles about Software Engineering
Knowledge-Based AI: Cognitive Systems;https://www.udacity.com/course/knowledge-based-ai-cognitive-systems--ud409;MOOC and courses
L01 Functional Programming | UC Berkeley CS 61A, Spring 2010 - YouTube;https://www.youtube.com/watch?v=4leZ1Ca4f0g&list=PLhMnuBfGeCDNgVzLPxF9o5UNKG1b-LFY9;Video
Laravel Nova - Beautifully-designed administration panel for Laravel;https://nova.laravel.com/;Developer's Tools
latest Python project topics and ideas with source code for final year projects - kashipara;https://www.kashipara.com/project/topics/latest_python-project-ideas_12;Project examples for Junior
Learn | freeCodeCamp.org;https://www.freecodecamp.org/learn;MOOC and courses
Learn Basic JavaScript: Declare JavaScript Variables | freeCodeCamp.org;https://www.freecodecamp.org/learn/javascript-algorithms-and-data-structures/basic-javascript/declare-javascript-variables;Online education (others)
Learn CI/CD with Jenkins using Interactive Browser-Based Labs | Katacoda;https://www.katacoda.com/courses/jenkins;MOOC and courses
Learn CSS Animations;https://scrimba.com/g/gcssanimations?utm_source=newsletter&utm_medium=email&utm_campaign=gcssanimations_mainlist_launch;MOOC and courses
Learn Data Analysis using Pandas and Python (Module 2/3) | Udemy;https://www.udemy.com/course/learn-data-analysis-using-pandas-and-python/learn/lecture/11211074;MOOC and courses
Learn Data Structures and Algorithms: Ace the Coding Interview | Udemy;https://www.udemy.com/course/learn-data-structure-algorithms-with-java-interview/?LSNPUBID=JVFxdTr9V80&ranEAID=JVFxdTr9V80&ranMID=39197&ranSiteID=JVFxdTr9V80-UtExCtEfwxOwPM48vP0X6g;MOOC and courses
Learn Data Visualization Tutorials | Kaggle;https://www.kaggle.com/learn/data-visualization;MOOC and courses
Learn Deno, a Node.js alternative;https://www.freecodecamp.org/news/learn-deno-a-node-js-alternative/;Video
Learn DS & Algorithms | Programiz;https://www.programiz.com/dsa;Textbooks
Learn Git Branching;https://learngitbranching.js.org/;Games for Education
Learn Git Version Control using Interactive Browser-Based Labs | Katacoda;https://www.katacoda.com/courses/git;MOOC and courses
Learn How to Code | Codecademy;https://www.codecademy.com/learn/learn-how-to-code;MOOC and courses
Learn Intermediate Machine Learning Tutorials | Kaggle;https://www.kaggle.com/learn/intermediate-machine-learning;MOOC and courses
Learn Intro to Machine Learning Tutorials | Kaggle;https://www.kaggle.com/learn/intro-to-machine-learning;MOOC and courses
Learn Kubernetes using Interactive Browser-Based Labs | Katacoda;https://www.katacoda.com/courses/kubernetes;MOOC and courses
Learn Machine Learning using Interactive Browser-Based Labs | Katacoda;https://www.katacoda.com/courses/machine-learning;MOOC and courses
Learn Pandas Tutorials | Kaggle;https://www.kaggle.com/learn/pandas;MOOC and courses
Learn Python - Free Interactive Python Tutorial;https://www.learnpython.org/;Books
Learn Python - Full Course for Beginners [Tutorial] - YouTube;https://www.youtube.com/watch?v=rfscVS0vtbw;Video
Learn Python 3.6 for Total Beginners | Udemy;https://www.udemy.com/course/python-3-for-total-beginners/learn/lecture/8389008#overview;MOOC and courses
Learn Python for Data Science, Structures, Algorithms, Interviews | Udemy;https://www.udemy.com/course/python-for-data-science-and-machine-learning-bootcamp/?LSNPUBID=JVFxdTr9V80&ranEAID=JVFxdTr9V80&ranMID=39197&ranSiteID=JVFxdTr9V80-SmD2rWBa9X3v_xfqcTwS9g;MOOC and courses
Learn Python for Data Structures, Algorithms & Interviews | Udemy;https://www.udemy.com/course/python-for-data-structures-algorithms-and-interviews/?LSNPUBID=JVFxdTr9V80&ranEAID=JVFxdTr9V80&ranMID=39197&ranSiteID=JVFxdTr9V80-Y4DoHDW7JqaAhp8UbYY1Vw;MOOC and courses
Learn Python in Y Minutes;https://learnxinyminutes.com/docs/python/;Books
Learn Python the Hard Way;https://learnpythonthehardway.org/;Books
Learn Python Tutorials | Kaggle;https://www.kaggle.com/learn/python;MOOC and courses
Learn Python with Online Python Courses | edX;https://www.edx.org/learn/python;MOOC and courses
Learn Python: Build a Virtual Assistant | Udemy;https://www.udemy.com/course/learn-python-build-a-virtual-assistant-in-python/learn/lecture/5078926;MOOC and courses
Learn Serverless and Functions/FaaS Technologies using Interactive Browser-Based Labs | Katacoda;https://www.katacoda.com/courses/serverless;MOOC and courses
Learn SQL | Codecademy;https://www.codecademy.com/learn/learn-sql;MOOC and courses
Learn to Code with Interactive Tutorials | Scrimba;https://scrimba.com/;MOOC and courses
Learn to Program: Crafting Quality Code — главная | Coursera;https://www.coursera.org/learn/program-code/home/welcome;MOOC and courses
Learn to Program: The Fundamentals — главная | Coursera;https://www.coursera.org/learn/learn-to-program/home/info;MOOC and courses
Learning From Data (Introductory Machine Learning) | edX;https://www.edx.org/course/learning-from-data-introductory-machine-learning;Math
Lecture 01. Motivation, What is a DBMS? (2015/01/20) (CS 186, Spring 2015, UC Berkeley) - YouTube;https://www.youtube.com/watch?v=IZmWm9YP_kg&list=PLItyOfErSadfnXtWkFX5yA7PQ8j8ZpORE;Video
"Lecture 1: Administrivia; Introduction; Analysis of Algorithms, Insertion Sort, Mergesort | Video Lectures | Introduction to Algorithms (SMA 5503) | Electrical Engineering and Computer Science | MIT OpenCourseWare";https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-046j-introduction-to-algorithms-sma-5503-fall-2005/video-lectures/lecture-1-administrivia-introduction-analysis-of-algorithms-insertion-sort-mergesort/;Video
LeetCode - The World's Leading Online Programming Learning Platform;https://leetcode.com/;Jobs
Leo-G/Data-Science-Wiki: A wiki of DataScience, Statistics, Maths, R,Python, AI, Machine Learning, Automation, Devops Tools, Bash, Linux Tutorials, Scripts and Datasets;https://github.com/Leo-G/Data-Science-Wiki;Online education (others)
Libra in under 15 lines of code - Colaboratory;https://colab.research.google.com/drive/1sLHUi5rKKJ4R86dZyPt_NvpzBAU6faoc?usp=sharing;Code
Linear Algebra - Foundations to Frontiers | edX;https://www.edx.org/course/linear-algebra-foundations-to-frontiers#!;Math
Linear Algebra Refresher Course;https://www.udacity.com/course/linear-algebra-refresher-course--ud953;MOOC and courses
linkedin/detext: DeText: A Deep Neural Text Understanding Framework for Ranking and Classification Tasks;https://github.com/linkedin/detext;Code
List of Keywords in Python Programming;https://www.programiz.com/python-programming/keyword-list;Textbooks
Livestreams | Codecademy;https://www.codecademy.com/learn/livestreams;MOOC and courses
localhost:54321/callback?code=b7e3a07c1695c5b58b6d;http://localhost:54321/callback?code=b7e3a07c1695c5b58b6d;Developer's Tools
Logging Explained in 5 Minutes — Walkthrough with Python | by Dario Radečić | Aug, 2020 | Towards Data Science;https://towardsdatascience.com/logging-explained-in-5-minutes-walkthrough-with-python-8bd7d8c2cf3a;Articles about Software Engineering
loveunk/Deep-learning-books: Books for machine learning, deep learning, math, NLP, CV, RL, etc;https://github.com/loveunk/Deep-learning-books;Code
MaartenGr/BERTopic: Leveraging BERT and a class-based TF-IDF to create easily interpretable topics.;https://github.com/MaartenGr/BERTopic;Code
Machine Learning;http://www.machinelearning.ru/wiki/index.php?title=%D0%97%D0%B0%D0%B3%D0%BB%D0%B0%D0%B2%D0%BD%D0%B0%D1%8F_%D1%81%D1%82%D1%80%D0%B0%D0%BD%D0%B8%D1%86%D0%B0;Developer's Tools
Machine Learning;https://www.udacity.com/course/machine-learning--ud262;MOOC and courses
Machine Learning Algorithms For Beginners with Code Examples in Python | by Towards AI Team | Towards AI — Multidisciplinary Science Journal | Medium;https://medium.com/towards-artificial-intelligence/machine-learning-algorithms-for-beginners-with-python-code-examples-ml-19c6afd60daa;Articles about Software Engineering
Machine Learning A-Z (Python & R in Data Science Course) | Udemy;https://www.udemy.com/course/machinelearning/?LSNPUBID=JVFxdTr9V80&ranEAID=JVFxdTr9V80&ranMID=39197&ranSiteID=JVFxdTr9V80-Sv8Zh6oY0Us.D_q0ZY03tA;MOOC and courses
Machine Learning Course Outline | Course Outline | CSMM.102x Courseware | edX;https://courses.edx.org/courses/course-v1:ColumbiaX+CSMM.102x+1T2020/courseware/2945e520da3f4b86bae2a390887faa10/0e0bc99270ad4788ba4d306467d6ea0c/;MOOC and courses
Machine Learning Crash Course | Google Developers;https://developers.google.com/machine-learning/crash-course;MOOC and courses
Machine Learning Foundations: A Case Study Approach | Coursera;https://www.coursera.org/learn/ml-foundations?siteID=SAyYsTvLiGQ-j1V0zZ5fHhcoOM0BkeGXuw&utm_content=10&utm_medium=partners&utm_source=linkshare&utm_campaign=SAyYsTvLiGQ;MOOC and courses
Machine Learning in Python (Data Science and Deep Learning) | Udemy;https://www.udemy.com/course/data-science-and-machine-learning-with-python-hands-on/?LSNPUBID=JVFxdTr9V80&ranEAID=JVFxdTr9V80&ranMID=39197&ranSiteID=JVFxdTr9V80-Tt64BSk_T3eae86HjaaI6Q;MOOC and courses
Machine Learning Interview Preparation;https://www.udacity.com/course/machine-learning-interview-prep--ud1001;MOOC and courses
Machine Learning is Fun! - Adam Geitgey - Medium;https://medium.com/@ageitgey/machine-learning-is-fun-80ea3ec3c471;Online education (others)
Machine Learning Mastery;https://machinelearningmastery.com/;Online education (others)
Machine Learning Projects | Data Science Projects with Example;https://www.analyticsvidhya.com/blog/2018/05/24-ultimate-data-science-projects-to-boost-your-knowledge-and-skills/;Project examples for Junior
Machine Learning with TensorFlow on Google Cloud Platform | Coursera;https://www.coursera.org/specializations/machine-learning-tensorflow-gcp?;MOOC and courses
Machine Learning: Unsupervised Learning;https://www.udacity.com/course/machine-learning-unsupervised-learning--ud741;MOOC and courses
Mailtrap.io — Fake smtp testing server. Dummy smtp email testing;https://mailtrap.io/;Awesome Python
main;https://repo.anaconda.com/pkgs/main/;Developer's Tools
Make kNN 300 times faster than Scikit-learn’s in 20 lines! | by Jakub Adamczyk | Sep, 2020 | Towards Data Science;https://towardsdatascience.com/make-knn-300-times-faster-than-scikit-learns-in-20-lines-5e29d74e76bb;Articles about Software Engineering
Make Your Pandas DataFrame Output Report-Ready | by Christopher Tao | Sep, 2020 | Towards Data Science;https://towardsdatascience.com/make-your-pandas-dataframe-output-report-ready-a9440f6045c6;Articles about Software Engineering
Making a Web Scraping Application with Python, Celery, and Django | by Matthew Wimberly | codeburst;https://codeburst.io/making-a-web-scraping-application-with-python-celery-and-django-23162397c0b6;Django
Manipulating Data With Django Migrations | by Victoria Drake | Better Programming | Sep, 2020 | Medium;https://medium.com/better-programming/manipulating-data-with-django-migrations-93833b69e9c;Django
Manning | Catalog;https://www.manning.com/catalog;Textbooks
Manning | Deep Learning with Python, Second Edition;https://www.manning.com/books/deep-learning-with-python-second-edition;Textbooks
Manning | Get Programming;https://www.manning.com/books/get-programming;Textbooks
Manning | liveBook;https://www.manning.com/livebook-program;Textbooks
Manning | Making Sense of Edge Computing;https://www.manning.com/books/making-sense-of-edge-computing;Textbooks
Manning | The Quick Python Book, Third Edition;https://www.manning.com/books/the-quick-python-book-third-edition#toc;Textbooks
marcotcr/lime: Lime: Explaining the predictions of any machine learning classifier;https://github.com/marcotcr/lime;Code
Martyr2's Mega Project Ideas List! - Share Your Project | Dream.In.Code;https://www.dreamincode.net/forums/topic/78802-martyr2s-mega-project-ideas-list/;Project examples for Junior
Master Algorithms with Python for Coding Interviews;https://www.educative.io/blog/python-algorithms-coding-interview;Jobs
Master Object Oriented Programming Concepts | Udemy;https://www.udemy.com/course/master-object-oriented-programming-concepts/learn/lecture/14292436#overview;MOOC and courses
Master Python for Data Science;https://www.linkedin.com/learning/paths/master-python-for-data-science;MOOC and courses
Master the JavaScript Interview: What is Functional Programming?;https://medium.com/javascript-scene/master-the-javascript-interview-what-is-functional-programming-7f218c68b3a0;Articles about Software Engineering
Master the User Authentication in Django — AllAuth | by Hashir Hassan | codeburst;https://codeburst.io/master-the-user-authentication-in-django-allauth-f1a4368bb460;Django
Material Dashboard - Free Django Template | Codementor;https://www.codementor.io/@chirilovadrian360/material-dashboard-free-django-template-1aycr59bt3;Django
Mathematics for Computer Science | Electrical Engineering and Computer Science | MIT OpenCourseWare;https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-042j-mathematics-for-computer-science-fall-2010/index.htm;MOOC and courses
matrix-org/synapse: Synapse: Matrix reference homeserver;https://github.com/matrix-org/synapse;Code
melanierichards/just-build-websites: Some ideas for websites you can build!;https://github.com/melanierichards/just-build-websites;Articles about Software Engineering
microsoft/presidio: Context aware, pluggable and customizable data protection and anonymization service for text and images;https://github.com/microsoft/presidio;Code
Microsoft: Our new free Python programming language courses are for novice AI developers | ZDNet;https://www.zdnet.com/google-amp/article/microsoft-our-new-free-python-programming-language-courses-are-for-novice-ai-developers/;MOOC and courses
Migrate From Flask to FastAPI Smoothly | by Ng Wai Foong | Better Programming | Aug, 2020 | Medium;https://medium.com/better-programming/migrate-from-flask-to-fastapi-smoothly-cc4c6c255397;Articles about Software Engineering
miguelgrinberg.com;https://blog.miguelgrinberg.com/;Articles about Software Engineering
MIT 6.042J Mathematics for Computer Science;https://www.youtube.com/watch?v=L3LMbpZIKhQ;Video
MIT App Inventor 2;http://ai2.appinventor.mit.edu/?locale=ru&repo=http%3A%2F%2Fappinventor.mit.edu%2Fyrtoolkit%2Fyr%2FaiaFiles%2FmoodCounter%2Fyr_mood_starter.asc#6567580202041344;Developer's Tools
MLOps: Continuous delivery and automation pipelines in machine learning;https://cloud.google.com/solutions/machine-learning/mlops-continuous-delivery-and-automation-pipelines-in-machine-learning;Textbooks
Model field reference | Django documentation | Django;https://docs.djangoproject.com/en/3.1/ref/models/fields/;Django
Model-View-Controller (MVC) Explained – With Legos – Real Python;https://realpython.com/the-model-view-controller-mvc-paradigm-summarized-with-legos/;Articles about Software Engineering
modin-project/modin: Modin: Speed up your Pandas workflows by changing a single line of code;https://github.com/modin-project/modin;Code
More Itertools — more-itertools 8.2.0 documentation;https://more-itertools.readthedocs.io/en/stable/index.html;Developer's Tools
mouradmourafiq/pandas-summary: An extension to pandas dataframes describe function.;https://github.com/mouradmourafiq/pandas-summary;Code
Multi Label Classification using Bag-of-Words (BoW) and TF-IDF | by Snehal Nair | Towards Data Science;https://towardsdatascience.com/multi-label-classification-using-bag-of-words-bow-and-tf-idf-4f95858740e5;Articles about Software Engineering
Multivariable Calculus | Mathematics | MIT OpenCourseWare;https://ocw.mit.edu/courses/mathematics/18-02sc-multivariable-calculus-fall-2010/index.htm;Math
My Apify;https://my.apify.com/tasks/TcrUShOyCZXZjNdik#/input;Developer's Tools
My Odyssey, Finding The Most Popular Python Function | by Sandro | Sep, 2020 | Towards Data Science;https://towardsdatascience.com/my-odyssey-finding-the-most-popular-python-function-6aa216db047c;Articles about Software Engineering
My Python's project cheatsheet - Carlos Grande;https://carlosgrande.me/my-pythons-project-cheatsheet/;Developer's Tools
naiveHobo/InvoiceNet: Deep neural network to extract intelligent information from invoice documents.;https://github.com/naiveHobo/InvoiceNet;Code
naiveHobo/InvoiceNet: Deep neural network to extract intelligent information from PDF invoice documents.;https://github.com/naiveHobo/InvoiceNet;Code
Native mobile apps with Angular, Vue.js, TypeScript, JavaScript - NativeScript;https://www.nativescript.org/;Developer's Tools
Natural Language Processing (NLP) with Python — Tutorial | by Towards AI Team | Towards AI — Multidisciplinary Science Journal | Medium;https://medium.com/towards-artificial-intelligence/natural-language-processing-nlp-with-python-tutorial-for-beginners-1f54e610a1a0;Articles about Software Engineering
Natural Language Processing With spaCy in Python – Real Python;https://realpython.com/natural-language-processing-spacy-python/;Articles about Software Engineering
Natural Language Processing: Intelligent Search through text using Spacy and Python | by Akash Chauhan | Aug, 2020 | Towards Data Science;https://towardsdatascience.com/natural-language-processing-document-search-using-spacy-and-python-820acdf604af;Articles about Software Engineering
neomatrix369/nlp_profiler: A simple NLP library allows profiling datasets with one or more text columns. When given a dataset and a column name containing text data, NLP Profiler will return either high-level insights or low-level/granular statistical information about the text in that column.;https://github.com/neomatrix369/nlp_profiler;Code
Network Programming with Python Course (build a port scanner, mailing client, chat room, DDOS) - YouTube;https://m.youtube.com/watch?feature=youtu.be&v=FGdiSJakIS4;Video
Neural Network Embedding Recommendation System | Kaggle;https://www.kaggle.com/willkoehrsen/neural-network-embedding-recommendation-system;Project examples for Junior
Neural Networks and Deep Learning — главная | Coursera;https://www.coursera.org/learn/neural-networks-deep-learning/home/welcome;MOOC and courses
new fast.ai course: A Code-First Introduction to Natural Language Processing · fast.ai;https://www.fast.ai/2019/07/08/fastai-nlp/;Online education (others)
nicolaskruchten/pivottable: Open-source Javascript Pivot Table (aka Pivot Grid, Pivot Chart, Cross-Tab) implementation with drag'n'drop.;https://github.com/nicolaskruchten/pivottable;Code
NLP Text Preprocessing: Steps, tools, and examples | by Viet Hoang Tran Duong | Oct, 2020 | Towards Data Science;https://towardsdatascience.com/nlp-text-preprocessing-steps-tools-and-examples-94c91ce5d30;Articles about Software Engineering
NLP With Python: Build a Haiku Machine in 50 Lines Of Code | by Sean Zhai | Better Programming | Oct, 2020 | Medium;https://medium.com/better-programming/nlp-with-python-build-a-haiku-machine-in-50-lines-of-code-6c7b6de959e3;Articles about Software Engineering
NLP: Don't Reinvent the Wheel! | Towards Data Science;https://towardsdatascience.com/natural-language-processing-nlp-dont-reinvent-the-wheel-8cf3204383dd;Articles about Software Engineering
nlp_profiler/nlp_profiler.ipynb at master · neomatrix369/nlp_profiler;https://github.com/neomatrix369/nlp_profiler/blob/master/notebooks/google-colab/nlp_profiler.ipynb;Code
NLTK Data;http://www.nltk.org/nltk_data/;Developer's Tools
Node.js Playground | Katacoda;https://www.katacoda.com/courses/nodejs/playground;MOOC and courses
Nonlinear Dynamics: Mathematical and Computational Approaches;https://www.complexityexplorer.org/courses/92-nonlinear-dynamics-mathematical-and-computational-approaches;MOOC and courses
norvig/pytudes: Python programs, usually short, of considerable difficulty, to perfect particular skills.;https://github.com/norvig/pytudes;Code
NoSQL Databases List by Hosting Data - Updated 2020;https://hostingdata.co.uk/nosql-database/;Developer's Tools
Numba: A High Performance Python Compiler;http://numba.pydata.org/;Developer's Tools
NumPy | Python 3 для начинающих и чайников;https://pythonworld.ru/numpy;Learning (another)
Numpy and Scipy Documentation — Numpy and Scipy documentation;https://docs.scipy.org/doc/;Developer's Tools
NumPy Tutorial: Data Analysis with Python – Dataquest;https://www.dataquest.io/blog/numpy-tutorial-python/;Textbooks
NumPy в Python. Часть 1 / Хабр;https://habr.com/ru/post/352678/;Developer's Tools
NVIDIA/NeMo: NeMo: a toolkit for conversational AI;https://github.com/NVIDIA/NeMo;Code
Object Detection: как написать Hello World приложениe | DOU;https://dou.ua/lenta/articles/object-detection/;Articles about Software Engineering
Object-Oriented Programming (OOP) in Python 3 – Real Python;https://realpython.com/python3-object-oriented-programming/;Articles about Software Engineering
oborchers/Fast_Sentence_Embeddings: Compute Sentence Embeddings Fast!;https://github.com/oborchers/Fast_Sentence_Embeddings;Code
omreps/programmer-competency-matrix: ENG -> RU: Матрица компетентности программиста, мой перевод;https://github.com/omreps/programmer-competency-matrix;Roadmaps
Online regex tester and debugger: PHP, PCRE, Python, Golang and JavaScript;https://regex101.com/;Developer's Tools
OOP Concept Tutorial in Java - Object Oriented Programming | Java67;https://www.java67.com/2016/09/oops-concept-tutorial-in-java-object-oriented-programming.html;Online education (others)
Open Data Science (ODS.ai);https://ods.ai/;MOOC and courses
Open Machine Learning Course mlcourse.ai • mlcourse.ai;https://mlcourse.ai/;MOOC and courses
opendata835/awesome835: Зведений список всіх існуючих інструментів, стандартів, реєстрів та решти за відкритими даними в Україні;https://github.com/opendata835/awesome835;Code
Operating Systems: Three Easy Pieces;http://pages.cs.wisc.edu/~remzi/OSTEP/;Online education (others)
Optimus/README.md at master · ironmussa/Optimus;https://github.com/ironmussa/Optimus/blob/master/README.md;Code
Oscar — django-oscar 2.1 documentation;http://docs.oscarcommerce.com/en/latest/;Django
ossu/computer-science: Path to a free self-taught education in Computer Science!;https://github.com/ossu/computer-science;MOOC and courses
Our journey to type checking 4 million lines of Python - Dropbox;https://dropbox.tech/application/our-journey-to-type-checking-4-million-lines-of-python;Articles about Software Engineering
Over 150 of the Best Machine Learning, NLP, and Python Tutorials I’ve Found;https://medium.com/machine-learning-in-practice/over-150-of-the-best-machine-learning-nlp-and-python-tutorials-ive-found-ffce2939bd78;Developer's Tools
Overview — Matplotlib 3.2.1 documentation;https://matplotlib.org/contents.html;Developer's Tools
Overview — NumPy v1.19.dev0 Manual;https://numpy.org/devdocs/;Developer's Tools
PaddleOCR/inference_en.md at develop · PaddlePaddle/PaddleOCR;https://github.com/PaddlePaddle/PaddleOCR/blob/develop/doc/doc_en/inference_en.md;Code
PaddlePaddle/PaddleOCR: Awesome OCR toolkits based on PaddlePaddle (3.5M practical ultra lightweight OCR system, support training and deployment among server, mobile, embedded and IoT devices);https://github.com/PaddlePaddle/PaddleOCR;Code
PageSpeed Insights;https://developers.google.com/speed/pagespeed/insights/?hl=uk&url=https%3A%2F%2Fkuprienko.info%2F&tab=desktop;Developer's Tools
PAIR-code/lit: The Language Interpretability Tool: Interactively analyze NLP models for model understanding in an extensible and framework agnostic interface.;https://github.com/pair-code/lit/;Code
PAIR-code/lit: The Language Interpretability Tool: Interactively analyze NLP models for model understanding in an extensible and framework agnostic interface.;https://github.com/pair-code/lit;Code
Palashio/libra: Ergonomic machine learning for everyone.;https://github.com/Palashio/libra;Code
pallets/werkzeug: The comprehensive WSGI web application library.;https://github.com/pallets/werkzeug;Code
Pandas Beyond Numbers: Working with Textual Data | by Soner Yıldırım | Sep, 2020 | Towards Data Science;https://towardsdatascience.com/pandas-beyond-numbers-working-with-textual-data-19cf353b23a5;Articles about Software Engineering
Pandas Cheat Sheet: top 35 commands and operations;https://www.educative.io/blog/pandas-cheat-sheet;Developer's Tools
Pandas DataFrame (Python): 10 useful tricks | by Maurizio Sluijmers | Level Up Coding;https://levelup.gitconnected.com/pandas-dataframe-python-10-useful-tricks-b4beae91df3d;Articles about Software Engineering
Pandas Tutorial: DataFrames in Python - DataCamp;https://www.datacamp.com/community/tutorials/pandas-tutorial-dataframe-python;MOOC and courses
Pandas Урок — чтение файлов csv, создание dataframe и фильтрация данных;https://pythonru.com/uroki/osnovy-pandas-1-chtenie-fajlov-dataframe-otbor-dannyh;Roadmaps
Papers;http://dsrg.pdos.csail.mit.edu/papers/;Articles about Software Engineering
Parallelism and Concurrency in Python (Concepts + Code) | Hacker Noon;https://hackernoon.com/parallelism-and-concurrency-in-python-concept-code-3w75430wo?source=rss;Articles about Software Engineering
PHP 25 лет: почему он именно такой и что с ним будет — рассказывает создатель языка;https://tproger.ru/video/25-years-of-php/?autoplay=1;Articles about Software Engineering
pip-upgrade-outdated · PyPI;https://pypi.org/project/pip-upgrade-outdated/;Awesome Python
Pivot Demo From Local CSV;https://pivottable.js.org/examples/local.html;Developer's Tools
PivotTable.js;https://pivottable.js.org/examples/index.html;Developer's Tools
PL/Python: The Hero We Need. Getting started with PL/Python a… | by Devesh Poojari | Aug, 2020 | Towards Data Science;https://towardsdatascience.com/pl-python-the-hero-we-need-4c23e412f88;Articles about Software Engineering
Play CodeCombat Levels - Learn Python, JavaScript, and HTML | CodeCombat;https://codecombat.com/play/forest;Games for Education
PlotJam Sampling - Colaboratory;https://colab.research.google.com/github/robgon-art/PlotJam/blob/master/PlotJam_Sampling.ipynb#scrollTo=obcf4rj_LXJr;Code
Plotting Google Sheets data in Python with Folium - Towards Data Science;https://towardsdatascience.com/plotting-crowdsourced-data-with-google-sheets-and-folium-6c9edbef2bb8;Developer's Tools
Plugin Status · WakaTime;https://wakatime.com/plugins/status?onboarding=true;Developer's Tools
Politics, Python, and Wikipedia. Using Python and the MediaWiki Action… | by Tal Zaken | Aug, 2020 | Towards Data Science;https://towardsdatascience.com/liberating-knowledge-from-the-free-encyclopedia-af8c8dbdb751;Articles about Software Engineering
Polymer Project;https://www.polymer-project.org/;Developer's Tools
Popper - Tooltip & Popover Positioning Engine;https://popper.js.org/;Developer's Tools
Porting to pandas df · Issue #51 · gtalarico/airtable-python-wrapper;https://github.com/gtalarico/airtable-python-wrapper/issues/51;Code
POS Tagging Using RNN. Learn how to use RNNs to tag words in… | by Tanya Dayanand | Sep, 2020 | Towards Data Science;https://towardsdatascience.com/pos-tagging-using-rnn-7f08a522f849;Articles about Software Engineering
PostgreSQL;https://radhima.github.io/PostgreSQL/;Code
PostgreSQL : Документация : Компания Postgres Professional;https://postgrespro.ru/docs/postgresql;Developer's Tools
PostgreSQL Exercises;https://pgexercises.com/gettingstarted.html;Articles about Software Engineering
Practical Deep Learning for Coders, v3 | fast.ai course v3;https://course.fast.ai/;MOOC and courses
Practical Python Programming | practical-python;https://dabeaz-course.github.io/practical-python/Notes/Contents.html;MOOC and courses
Prisma - Database tools for modern application development;https://www.prisma.io/;Developer's Tools
Probabilistic Graphical Models 1: Representation | Coursera;https://www.coursera.org/learn/probabilistic-graphical-models;MOOC and courses
Probability - The Science of Uncertainty and Data | edX;https://www.edx.org/course/probability-the-science-of-uncertainty-and-data#.U3yb762SzIo;Math
Probability and combinatorics | Precalculus (2018 edition) | Khan Academy;https://www.khanacademy.org/math/precalculus-2018/prob-comb?redirected-from-mobile-app=1;MOOC and courses
Problem set @ Timus Online Judge;https://acm.timus.ru/problemset.aspx;Puzzles
Problem Solving with Algorithms and Data Structures using Python — Problem Solving with Algorithms and Data Structures;https://runestone.academy/runestone/books/published/pythonds/index.html;Books
Problems - LeetCode;https://leetcode.com/problemset/all/?difficulty=Easy&status=Todo&listId=79h8rn6;Testing
Programmer Competency Matrix – Sijin Joseph;http://sijinjoseph.com/programmer-competency-matrix/;Roadmaps
programmer-competency-matrix/partII.md at master · omreps/programmer-competency-matrix;https://github.com/omreps/programmer-competency-matrix/blob/master/partII.md;Roadmaps
Programming – Towards Data Science;https://towardsdatascience.com/programming/home;Online education (others)
Programming Interview Questions + Help Getting Job Offers | Interview Cake;https://www.interviewcake.com/;Jobs
Programming Languages;https://www.udacity.com/course/programming-languages--cs262;MOOC and courses
Programming Praxis | A collection of etudes, updated weekly, for the education and enjoyment of the savvy programmer;https://programmingpraxis.com/;Puzzles
Project 1 - CS50's Web Programming with Python and JavaScript;https://cs50.harvard.edu/web/2020/projects/1/;Project examples for Junior
Projects - Home;https://dev.azure.com/kupriienko/;Developer's Tools
Pros and Cons of Django Framework for App Development - DZone Web Dev;https://dzone.com/articles/pros-and-cons-of-django-framework-for-app-developm;Django
Prototype-based programming - Wikipedia;https://en.wikipedia.org/wiki/Prototype-based_programming;Articles about Software Engineering
PY4E - Python for Everybody;https://www.py4e.com/html3/11-regex;MOOC and courses
pydqc/README.md at master · SauceCat/pydqc;https://github.com/SauceCat/pydqc/blob/master/README.md;Code
PyQt5 book with a foreword by the creator of PyQt;https://build-system.fman.io/pyqt5-book;Developer's Tools
Pythia’s Documentation — Pythia 0.3 documentation;https://learnpythia.readthedocs.io/en/latest/;Developer's Tools
Python - OOP | Udemy;https://www.udemy.com/course/python-oop/learn/lecture/11878738#overview;MOOC and courses
Python - YouTube;https://www.youtube.com/playlist?list=PL-_cKNuVAYAXkJLFpu-dq3nphjftOOR6C;Video
Python - Все для студента;https://www.twirpx.com/files/applied/comp/python/;Textbooks
Python | CoderNet;https://codernet.ru/books/python/;Textbooks
Python | CoderNet;https://codernet.ru/videos/python/;Video
Python 3 для начинающих и чайников - уроки программирования;https://pythonworld.ru/;Textbooks
Python 3, BBC Microbit, and MicroPython Bootcamp | Udemy;https://www.udemy.com/course/python-3-bootcamp/?LSNPUBID=JVFxdTr9V80&ranEAID=JVFxdTr9V80&ranMID=39197&ranSiteID=JVFxdTr9V80-yt_5odS.FhZtVvCiK.As3A;MOOC and courses
Python 3.4 Programming Tutorials - YouTube;https://www.youtube.com/playlist?list=PL6gx4Cwl9DGAcbMi1sH6oAMk4JHw91mC_;Video
Python 3.8 documentation — DevDocs;https://devdocs.io/python~3.8/;Developer's Tools
Python 3.9 Updates Explained with Hands-on Code Examples;https://www.freecodecamp.org/news/python-updates/;Articles about Software Engineering
Python 3.9: Cool New Features for You to Try – Real Python;https://realpython.com/python39-new-features/;Articles about Software Engineering
Python and Data Science Tutorial in Visual Studio Code;https://code.visualstudio.com/docs/python/data-science-tutorial;Articles about Software Engineering
Python Basics — главная | Coursera;https://www.coursera.org/learn/python-basics/home/info;MOOC and courses
Python Books You Must Read in 2020 | by Claire D. Costa | Sep, 2020 | Towards Data Science;https://towardsdatascience.com/python-books-you-must-read-in-2020-a0fc33798bb;Articles about Software Engineering
Python Booleans: Optimize Your Code With Truth Values – Real Python;https://realpython.com/python-boolean/;Articles about Software Engineering
Python Concurrency: Making sense of asyncio;https://www.educative.io/blog/python-concurrency-making-sense-of-asyncio;Developer's Tools
Python Data Science Handbook | Python Data Science Handbook;https://jakevdp.github.io/PythonDataScienceHandbook/;Textbooks
Python Developers Survey 2019 Results | JetBrains: Developer Tools for Professionals and Teams;https://www.jetbrains.com/lp/python-developers-survey-2019/?utm_source=Iterable&utm_medium=email&utm_campaign=newsletter_82;Roadmaps
Python Django Interview Questions and Answers - Get hired as Django developer - DataFlair;https://data--flair-training.cdn.ampproject.org/c/s/data-flair.training/blogs/django-interview-questions-and-answers/amp;Jobs
Python Docker Tutorials – Real Python;https://realpython.com/tutorials/docker/;Articles about Software Engineering
Python Documentation contents — Python 3.8.2 documentation;https://docs.python.org/3/contents.html;Books
Python Extension Packages for Windows - Christoph Gohlke;https://www.lfd.uci.edu/~gohlke/pythonlibs/;Developer's Tools
Python for Big Data Analytics - Edureka;https://www.edureka.co/blog/videos/python-for-big-data-analytics/#utm_content=buffer09e67;Video
Python for Data Science | edX;https://www.edx.org/course/python-for-data-science-2;MOOC and courses
Python Frameworks Comparison: How to Choose the Best for Web Development;https://medium.com/better-programming/python-frameworks-comparison-how-to-choose-the-best-for-web-development-9603107ec905;Developer's Tools
Python Hash Tables: Understanding Dictionaries - The Python Corner;http://thepythoncorner.com/dev/hash-tables-understanding-dictionaries/;Articles about Software Engineering
Python Interview Problem – Parsing CSV Files – Real Python;https://realpython.com/python-interview-problem-parsing-csv-files/;Articles about Software Engineering
Python Interview Questions and Answers |Top 50+ Python Questions;http://www.kitsonlinetrainings.com/python-interview-questions.html;Jobs
Python Libraries for Natural Language Processing | by Claire D. Costa | Towards Data Science;https://towardsdatascience.com/python-libraries-for-natural-language-processing-be0e5a35dd64;Articles about Software Engineering
Python mmap: Improved File I/O With Memory Mapping – Real Python;https://realpython.com/python-mmap/;Articles about Software Engineering
Python OOP : Four Pillars of OOP in Python 3 for Beginners | Udemy;https://www.udemy.com/course/python-oops-beginners/?LSNPUBID=JVFxdTr9V80&ranEAID=JVFxdTr9V80&ranMID=39197&ranSiteID=JVFxdTr9V80-Nr4tBMduhid_6vaIlWdcqg;MOOC and courses
Python Pandas Tutorial - Tutorialspoint;https://www.tutorialspoint.com/python_pandas/;Textbooks
Python Playground | Katacoda;https://www.katacoda.com/courses/python/playground;MOOC and courses
Python Programming - Build a Reconnaissance Scanner | Udemy;https://www.udemy.com/course/python-programming-build-a-reconnaissance-scanner/learn/lecture/3964992#overview;MOOC and courses
Python Programming - YouTube;https://www.youtube.com/watch?v=N4mEzFDjqtA;Video
Python Programming for Beginners - Learn in 100 Easy Steps | Udemy;https://www.udemy.com/course/python-tutorial-for-beginners/?LSNPUBID=JVFxdTr9V80&ranEAID=JVFxdTr9V80&ranMID=39197&ranSiteID=JVFxdTr9V80-3rVEPCsYZocttcQCmzYBNg;MOOC and courses
Python Programming Language - GeeksforGeeks;https://www.geeksforgeeks.org/python-programming-language/;MOOC and courses
Python Programming: A Concise Introduction — главная | Coursera;https://www.coursera.org/learn/python-programming-introduction/home/info;MOOC and courses
Python Project Ideas for Final Year, Python Project Help;https://instanteduhelp.com/python-project-ideas-final-year-engineering-students/;Project examples for Junior
Python Regex in a nutshell | Codementor;https://www.codementor.io/@muhammedtunde/python-regex-in-a-nutshell-m8u244htf;Articles about Software Engineering
Python REST APIs With Flask, Connexion, and SQLAlchemy – Part 4 – Real Python;https://realpython.com/flask-connexion-rest-api-part-4/;Articles about Software Engineering
Python REST APIs With Flask, Connexion, and SQLAlchemy – Real Python;https://realpython.com/flask-connexion-rest-api/;Articles about Software Engineering
Python Track | Exercism;https://exercism.io/my/tracks/python;MOOC and courses
Python Tricks 101🐍 - HackerNoon.com - Medium;https://medium.com/hackernoon/python-tricks-101-2836251922e0;Textbooks
Python Tutorial | Learn Python For Data Science;https://www.analyticsvidhya.com/blog/2016/01/complete-tutorial-learn-data-science-python-scratch-2/;Textbooks
Python Tutorial for Beginners: Learn Python Programming in 7 Days;https://www.guru99.com/python-tutorials.html;Textbooks
Python Tutorial: Class vs. Instance Attributes;https://www.python-course.eu/python3_class_and_instance_attributes.php;Articles about Software Engineering
Python Tutorial: Object Oriented Programming;https://www.python-course.eu/python3_object_oriented_programming.php;Articles about Software Engineering
Python Tutorial: Properties vs. getters and setters;https://www.python-course.eu/python3_properties.php;Articles about Software Engineering
Python Tutorials - YouTube;https://www.youtube.com/playlist?list=PL-osiE80TeTt2d9bfVyTiXJA-UTHn6WwU;Video
Python Variables;https://www.w3schools.com/python/python_variables.asp;MOOC and courses
Python Web Applications With Flask – Part II – Real Python;https://realpython.com/python-web-applications-with-flask-part-ii/;Articles about Software Engineering
Python в три ручья: работаем с потоками (часть 1) | GeekBrains - образовательный портал;https://geekbrains.ru/posts/python_threading_part1;Developer's Tools
Python для Data Science: 8 понятий, которые важно помнить;https://proglib.io/p/python-data-science/;Articles about Software Engineering
Python на Хабре / Хабр;https://habr.com/ru/post/205944/;Textbooks
Python програмісти - Джин;https://djinni.co/developers/?sortby=rating&title=Python&utm_medium=email&utm_source=transactional&utm_campaign=email%2Fcandidate_weeklystats.html;Jobs
Python/Объектно-ориентированное программирование на Python — Викиучебник;https://ru.wikibooks.org/wiki/Python/%D0%9E%D0%B1%D1%8A%D0%B5%D0%BA%D1%82%D0%BD%D0%BE-%D0%BE%D1%80%D0%B8%D0%B5%D0%BD%D1%82%D0%B8%D1%80%D0%BE%D0%B2%D0%B0%D0%BD%D0%BD%D0%BE%D0%B5_%D0%BF%D1%80%D0%BE%D0%B3%D1%80%D0%B0%D0%BC%D0%BC%D0%B8%D1%80%D0%BE%D0%B2%D0%B0%D0%BD%D0%B8%D0%B5_%D0%BD%D0%B0_Python;Articles about Software Engineering
Python/Учебник Python 3.1 — Викиучебник;https://ru.wikibooks.org/wiki/Python/%D0%A3%D1%87%D0%B5%D0%B1%D0%BD%D0%B8%D0%BA_Python_3.1;Textbooks
Python: Object Oriented Programming | Udemy;https://www.udemy.com/course/python-object-oriented-programming/?LSNPUBID=JVFxdTr9V80&ranEAID=JVFxdTr9V80&ranMID=39197&ranSiteID=JVFxdTr9V80-_XEuwOZ_8ATanV5IEXa0Cw;MOOC and courses
python: Online Courses, Training and Tutorials on LinkedIn Learning;https://www.linkedin.com/learning/search?entityType=LEARNING_PATH&keywords=python;MOOC and courses
python-catalin: Python 3.8.2 : Create a Django Calendar - part 002.;https://python-catalin.blogspot.com/2020/06/python-382-create-django-calendar-part_17.html?m=1;Django
PythonDecorators - Python Wiki;https://wiki.python.org/moin/PythonDecorators;Awesome Python
Python's map(): Processing Iterables Without a Loop – Real Python;https://realpython.com/python-map-function/;Articles about Software Engineering
Python's reduce(): From Functional to Pythonic Style – Real Python;https://realpython.com/python-reduce-function/;Articles about Software Engineering
PythonSpeed - Python Wiki;https://wiki.python.org/moin/PythonSpeed;Articles about Software Engineering
pytorch3d/INSTALL.md at master · facebookresearch/pytorch3d;https://github.com/facebookresearch/pytorch3d/blob/master/INSTALL.md;Code
PyVideo.org;https://pyvideo.org/;Online education (others)
pyxtract_v.0.3.1_jobs_scraper.ipynb - Colaboratory;https://colab.research.google.com/drive/1-wZerXww_HrqC9Pj46NXNHhV1s7BBu8V#scrollTo=7UCSKE5hhDkD;Code
Qt Designer Download for Windows and Mac;https://build-system.fman.io/qt-designer-download;Developer's Tools
Quick Start | GatsbyJS;https://www.gatsbyjs.org/docs/quick-start/;Developer's Tools
Quick Start · gulp.js;https://gulpjs.com/docs/en/getting-started/quick-start;Developer's Tools
Quick Start for Apache Kafka using Confluent Platform (Docker) — Confluent Platform 5.5.1;https://docs.confluent.io/current/quickstart/ce-docker-quickstart.html;Developer's Tools
Quickly Use Bootstrap 4 in a Django Template with a CDN - Full Stack Python;https://www.fullstackpython.com/blog/bootstrap-4-django-template.html;Django
Quickstart for Cloud SQL for PostgreSQL | Google Cloud;https://cloud.google.com/sql/docs/postgres/quickstart;MOOC and courses
Quickstart for Python/WSGI applications — uWSGI 2.0 documentation;https://uwsgi-docs.readthedocs.io/en/latest/WSGIquickstart.html;Developer's Tools
Quickstart tutorial — NumPy v1.19.dev0 Manual;https://numpy.org/devdocs/user/quickstart.html;Developer's Tools
Quiz: Data Engineer, Data Analyst, Data Scientist — Which Role Fits You?;https://www.dataquest.io/blog/data-analyst-data-scientist-data-engineer/;Roadmaps
quokkaproject/quokka: LOOKING FOR NEW MAINTAINER - Quokka is a Content Management System - `docker run --rm -it -p 5000:5000 quokka/quokka`;https://github.com/quokkaproject/quokka;Code
R Language Playground | Katacoda;https://www.katacoda.com/courses/rlang/playground;MOOC and courses
R Packages - RStudio;https://rstudio.com/products/rpackages/;Developer's Tools
R Tutorial for Beginners: Learning R Programming;https://www.guru99.com/r-tutorial.html;Books
RaRe-Technologies/bounter: Efficient Counter that uses a limited (bounded) amount of memory regardless of data size.;https://github.com/RaRe-Technologies/bounter;Code
RasaHQ/whatlies: toolkit to help visualise - what lies in word embeddings;https://github.com/RasaHQ/whatlies;Code
React – JavaScript-бібліотека для створення користувацьких інтерфейсів;https://uk.reactjs.org/;Developer's Tools
React - Scrimba Tutorial;https://scrimba.com/p/p7P5Hd/cWKkvVuL;MOOC and courses
React & Django TUTORIAL Integration // REACTify Django - YouTube;https://www.youtube.com/watch?v=AHhQRHE8IR8&t=37s;Video
React Tutorial: Learn React JS For Free | Scrimba;https://scrimba.com/g/glearnreact;MOOC and courses
Reading: Welcome | Welcome | ALGS201x Courseware | edX;https://courses.edx.org/courses/course-v1:UCSanDiegoX+ALGS201x+1T2019/courseware/5d2fce07f792430dad418f828b327e98/ea2153a2fabc400e88b87b4668755dd2/;MOOC and courses
Real-Time Analytics with Apache Storm;https://www.udacity.com/course/real-time-analytics-with-apache-storm--ud381;MOOC and courses
RegExr: Learn, Build, & Test RegEx;https://regexr.com/;Developer's Tools
Regular Expression Library;https://regexlib.com/Default.aspx;Articles about Software Engineering
Regular Expressions Intro - Scrimba Tutorial;https://scrimba.com/p/peyvVAN/c7mweAZ;MOOC and courses
Regular Expressions: Regexes in Python (Part 2) – Real Python;https://realpython.com/regex-python-part-2/;Articles about Software Engineering
Release John Snow Labs Spark-NLP 2.6.0: New multi-label classifier, BERT sentence embeddings, unsupervised keyword extractions, over 110 pretrained pipelines, models, Transformers, and more! · JohnSnowLabs/spark-nlp;https://github.com/JohnSnowLabs/spark-nlp/releases/tag/2.6.0;Code
Rendering Text on Video using Python | by Behic Guven | Aug, 2020 | Towards Data Science;https://towardsdatascience.com/rendering-text-on-video-using-python-1c006519c0aa;Articles about Software Engineering
Repl.it - Home;https://repl.it/~;Developer's Tools
Reproducing SQL queries in Python | by Shuhan Lu | The Startup | Medium;https://medium.com/swlh/reproducing-sql-queries-in-python-codes-35d90f716b1a;Articles about Software Engineering
Reqres - A hosted REST-API ready to respond to your AJAX requests;https://reqres.in/;Developer's Tools
Resources I Wish I Knew When I Started Out With Data Science;https://towardsdatascience.com/resources-i-wish-i-knew-when-i-started-out-with-data-science-9a8889654c36;Roadmaps
Responsive Images;https://www.udacity.com/course/responsive-images--ud882;MOOC and courses
Richer Django logging;https://www.willmcgugan.com/blog/tech/post/richer-django-logging/;Django
Roadmap • mlcourse.ai;https://mlcourse.ai/roadmap;Roadmaps
Rock Paper Scissors - Python Tutorial | Udemy;https://www.udemy.com/course/rock-paper-scissors-python/learn/lecture/4175270#overview;MOOC and courses
Roundup of Python NLP Libraries - NLP-FOR-HACKERS;https://nlpforhackers.io/libraries/;Developer's Tools
RPA: Automation Anywhere: Example: Ticket Processing - YouTube;https://www.youtube.com/watch?v=YjWRhtL1D2E;Video
Run your Python Unit Tests with GitHub Actions | Techiediaries;https://www.techiediaries.com/python-unit-tests-github-actions/;Code
Running Geo Django on ElasticBeanstalk | Hacker Noon;https://hackernoon.com/running-geo-django-on-elasticbeanstalk-k0l3uww?source=rss;Django
salesforce/GeDi: GeDi: Generative Discriminator Guided Sequence Generation;https://github.com/salesforce/GeDi;Code
samuelhwilliams/Eel: A little Python library for making simple Electron-like HTML/JS GUI apps;https://github.com/samuelhwilliams/Eel?utm_source=mybridge&utm_medium=blog&utm_campaign=read_more;Code
Scalable Microservices with Kubernetes;https://www.udacity.com/course/scalable-microservices-with-kubernetes--ud615;MOOC and courses
SciPy — SciPy v1.4.1 Reference Guide;https://docs.scipy.org/doc/scipy/reference/;Developer's Tools
Scipy Lecture Notes — Scipy lecture notes;https://scipy-lectures.org/;MOOC and courses
Scipy Tutorial: Vectors and Arrays (Linear Algebra) - DataCamp;https://www.datacamp.com/community/tutorials/python-scipy-tutorial;Textbooks
SciPy.org — SciPy.org;https://www.scipy.org/;Developer's Tools
Scrapy 2.1 documentation — Scrapy 2.1.0 documentation;https://docs.scrapy.org/en/latest/;Developer's Tools
Search - CS50's Web Programming with Python and JavaScript;https://cs50.harvard.edu/web/2020/projects/0/search/;Project examples for Junior
sebst/pythonic-news: A Hacker News lookalike written in Python/Django, powering https://news.python.sc;https://github.com/sebst/pythonic-news/;Code
Select Star SQL;https://selectstarsql.com/;Developer's Tools
Self-Driving Fundamentals: Featuring Apollo;https://www.udacity.com/course/self-driving-car-fundamentals-featuring-apollo--ud0419;MOOC and courses
Send emails with Django and Gmail , a better way - DEV;https://dev.to/abderrahmanemustapha/how-to-send-email-with-django-and-gmail-in-production-the-right-way-24ab;Django
Sentiment Analysis of a book through Unsupervised Learning | by Angelica Lo Duca | Sep, 2020 | Towards Data Science;https://towardsdatascience.com/sentiment-analysis-of-a-book-through-unsupervised-learning-df876563dd1b;Articles about Software Engineering
Sequence Models | Coursera;https://www.coursera.org/learn/nlp-sequence-models;MOOC and courses
Settings | Account · WakaTime;https://wakatime.com/settings/account;Developer's Tools
shaypal5/cachier: Persistent, stale-free, local and cross-machine caching for Python functions.;https://github.com/shaypal5/cachier;Code
Shortest Paths Revisited, NP-Complete Problems and What To Do About Them | Coursera;https://www.coursera.org/learn/algorithms-npcomplete;MOOC and courses
Simple infinite scroll in Django | spikelantern;https://spikelantern.com/articles/simple-infinite-scroll-in-django/;Django
simple keylogger | Python Adventures;https://pythonadventures.wordpress.com/2019/11/16/simple-keylogger/;Articles about Software Engineering
Simple String Reversal — DS & A (I) | by Michael Jiang | Oct, 2020 | Medium;https://medium.com/@jiams/simple-string-reversal-ds-a-i-b43b0ef2619f;Articles about Software Engineering
sindresorhus/awesome: 😎 Awesome lists about all kinds of interesting topics;https://github.com/sindresorhus/awesome;Code
Skiena's Audio Lectures;http://www3.cs.stonybrook.edu/~algorith/video-lectures/;Online education (others)
Skill Assessment;https://assessment.datacamp.com/python-programming;Training
Travis CI;https://travis-ci.org/account/repositories;Developer's Tools