forked from skupriienko/Awesome-Python-Learning
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAwesome_Python_Learning.BAK_
1492 lines (1492 loc) · 227 KB
/
Awesome_Python_Learning.BAK_
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;Subcategory
(189) The magic of Python - Quora;https://www.quora.com/q/themagicofpython?__ni__=0&__nsrc__=4&__snid3__=11257821174&__tiids__=11039349;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
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
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
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
10 Clustering Algorithms With Python;https://machinelearningmastery.com/clustering-algorithms-with-python/;Articles about Software Engineering
10 Clustering Algorithms With Python;https://machinelearningmastery.com/clustering-algorithms-with-python/;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
A gentle introduction to itertools;https://jmduke.com/2013/11/29/itertools;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
Age of total which during know.;https://powerful-peak-68152.herokuapp.com/blog/post/1;Articles about Software Engineering
Age of total which during know.;https://powerful-peak-68152.herokuapp.com/blog/post/1;Articles about Software Engineering
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
Async Views in Django 3.1 | TestDriven.io;https://testdriven.io/blog/django-async-views/;Django
Async Views in Django 3.1 | TestDriven.io;https://testdriven.io/blog/django-async-views/;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 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
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
Computer programming | Computing | Khan Academy;https://www.khanacademy.org/computing/computer-programming?lang=en&redirected-from-mobile-app=1;Articles about Software Engineering
Customize the Django Admin With Python – Real Python;https://realpython.com/customize-django-admin-python/;Django
Customize the Django Admin With Python – Real Python;https://realpython.com/customize-django-admin-python/;Django
Django Redirects – Real Python;https://realpython.com/courses/django-redirects/;Django
Django введение - Изучение веб-разработки | MDN;https://developer.mozilla.org/ru/docs/Learn/Server-side/Django/Введение;Django
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
Flask tutorial — Dependency Injector 3.30.2 documentation;http://python-dependency-injector.ets-labs.org/tutorials/flask.html;Articles about Software Engineering
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
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
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
Hugging Face – On a mission to solve NLP, one commit at a time.;https://huggingface.co/models;Articles about Software Engineering
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
Installing Shuup — Shuup 1.9.3b3+ documentation;https://shuup.readthedocs.io/en/latest/howto/getting_started.html;Articles about Software Engineering
Introduction to Statistics for Data Science;https://www.kdnuggets.com/2020/08/introduction-statistics-data-science.html;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
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
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
Natural Language Processing With spaCy in Python – Real Python;https://realpython.com/natural-language-processing-spacy-python/;Articles about Software Engineering
Object-Oriented Programming (OOP) in Python 3 – Real Python;https://realpython.com/python3-object-oriented-programming/;Articles about Software Engineering
PostgreSQL Exercises;https://pgexercises.com/gettingstarted.html;Articles about Software Engineering
Python Docker Tutorials – Real Python;https://realpython.com/tutorials/docker/;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 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 Web Applications With Flask – Part II – Real Python;https://realpython.com/python-web-applications-with-flask-part-ii/;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
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
Speed Up Your Python Program With Concurrency – Real Python;https://realpython.com/python-concurrency/;Articles about Software Engineering
Texthero Guide: A Python Toolkit for Text Processing;https://analyticsindiamag.com/texthero-guide-a-python-toolkit-for-text-processing/;Articles about Software Engineering
TimeComplexity - Python Wiki;https://wiki.python.org/moin/TimeComplexity;Articles about Software Engineering
timeit in Python | Getting Started With timeit Library;https://www.analyticsvidhya.com/blog/2020/09/timeit-in-python/;Articles about Software Engineering
Upload Multiple Images to a Django Model without plugins — Soshace • Soshace;https://blog.soshace.com/upload-multiple-images-to-a-django-model-without-plugins/;Django
Web Scrape Movie Database with Beautiful Soup | by Khuyen Tran | Analytics Vidhya | Medium;https://medium.com/analytics-vidhya/detailed-tutorials-for-beginners-web-scrap-movie-database-from-multiple-pages-with-beautiful-soup-5836828d23;Articles about Software Engineering
What Is TF-IDF And How To Use It: Advanced On-Page Optimization;https://www-semrush-com.cdn.ampproject.org/c/s/www.semrush.com/blog/tf-idf-advanced-on-page-optimization/amp/;Articles about Software Engineering
WonScore - Content Session;https://contentplayer.wonderlic.com/session/5f43b6a39739ab03e84df46c/page/1;Articles about Software Engineering
Zero To One For NLP - Pratik’s Pakodas;https://pakodas.substack.com/p/nlp-metablog-a-blog-of-blogs-693e3a8f1e0c;Articles about Software Engineering
Английский, Git и свой проект на фреймворке. Советы по обучению и не только от разработчиков, которые прошли JavaRush;https://javarush.ru/groups/posts/2919-angliyskiy-git-i-svoy-proekt-na-freymvorke-sovetih-po-obucheniju-i-ne-toljhko-ot-razrabotchikov?utm_source=eSputnik-$email-digest&utm_medium=email&utm_campaign=$email-digest-56-abandoned-user&utm_content=788825223;Articles about Software Engineering
Веб-скрапинг по расписанию с Django и Heroku | Полезное для разработчика;https://prog-help.ru/web/veb-skraping-po-raspisaniju-s-django-i-heroku/amp/;Django
Знакомство с FastAPI / Хабр;https://m.habr.com/ru/post/488468/;Articles about Software Engineering
Модуль re – регулярные выражения | Python;https://www.internet-technologies.ru/articles/modul-re-regulyarnye-vyrazheniya.html;Articles about Software Engineering
Новые Python веб-фреймворки 2020 с примерами кода;https://python-scripts.com/web-frameworks;Articles about Software Engineering
Пишем веб сервис на Python с помощью FastAPI / Хабр;https://m.habr.com/ru/post/513328/;Articles about Software Engineering
Работа с API на Django (Python) - Студия Step-Develop Евгения Степаненко ;https://www.step-develop.com/info/api.html;Articles about Software Engineering
Регулярное выражение для поиска формата «фамилия, имя, отчество» – 5 Ответов;https://overcoder.net/q/846092/регулярное-выражение-для-поиска-формата-фамилия-имя-отчество;Articles about Software Engineering
С помощью regex из ФИО сделать фамилию и инициалы - Stack Overflow на русском;https://ru.stackoverflow.com/questions/755361/С-помощью-regex-из-ФИО-сделать-фамилию-и-инициалы;Articles about Software Engineering
Создание проекта Интернет-Магазина · Django в примерах;https://pocoz.gitbooks.io/django-v-primerah/content/glava-7-sozdanie-internet-magazina/sozdanie-proekta-internet-magazina.html;Django
Чому SOLID — важлива складова мислення програміста. Розбираємося на прикладах з кодом | DOU;https://dou.ua/lenta/articles/solid-principles/?utm_source=dlvr.it&utm_medium=linkedin;Articles about Software Engineering
Як налаштувати локальний тестовий сервер? - Вчимо веб-розробку | MDN;https://developer.mozilla.org/uk/docs/Learn/Common_questions/set_up_a_local_testing_server;Articles about Software Engineering
Databricks;https://community.cloud.databricks.com/?o=7623223593112325#/setting/clusters/0822-110756-soils611/libraries;Developer's Tools
django-novaposhta · PyPI;https://pypi.org/project/django-novaposhta/;Django
My Apify;https://my.apify.com/tasks/TcrUShOyCZXZjNdik#/input;Developer's Tools
Tutorial: Rasa Basics;https://rasa.com/docs/rasa/user-guide/rasa-tutorial/;Developer's Tools
VNC Basics - Andronix App;https://docs.andronix.app/vnc/vnc-basics;Developer's Tools
Algorithmic Thinking (Part 1) — главная | Coursera;https://www.coursera.org/learn/algorithmic-thinking-1/resources/g4XDi;MOOC and courses
Course | CS50W | edX;https://courses.edx.org/courses/course-v1:HarvardX+CS50W+Web/course/;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
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
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
Category:Python - Rosetta Code;https://rosettacode.org/wiki/Category:Python;Code
Libra in under 15 lines of code - Colaboratory;https://colab.research.google.com/drive/1sLHUi5rKKJ4R86dZyPt_NvpzBAU6faoc?usp=sharing;Code
arXiv Dataset | Kaggle;https://www.kaggle.com/Cornell-University/arxiv#;Datasets
kernel21d8d4ec28 | Kaggle;https://www.kaggle.com/skromnitsky/kernel21d8d4ec28/edit;Datasets
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 Interview Questions and Answers |Top 50+ Python Questions;http://www.kitsonlinetrainings.com/python-interview-questions.html;Jobs
Data Science Dream Job - YouTube;https://www.youtube.com/channel/UCr6_XCxMLXWGguWZi_93n7w;Video
5 советов по созданию вашего резюме;https://proglib.io/p/best-format-on-cv/;Jobs
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 вопросов по Python: как джуниору пройти собеседование;https://proglib.io/p/python-interview/;Jobs
15 задач на собеседовании для программиста;https://proglib.io/p/15-questions-for-programmers/;Jobs
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
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
53 Python Interview Questions and Answers - Towards Data Science;https://towardsdatascience.com/53-python-interview-questions-and-answers-91fa311eec3f;Jobs
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
Coderbyte | Code Screening, Challenges, & Interview Prep;https://coderbyte.com/;Jobs
DEV Community ;https://dev.to/;Jobs
HackerEarth | Online coding platform and developer assessment software;https://www.hackerearth.com/for-developers;Jobs
hh.ua;https://kiev.hh.ua/applicant/resumes?from=header_new;Jobs
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 Get a Job with Python - Towards Data Science;https://towardsdatascience.com/how-to-get-a-job-with-python-575f1b79fa11;Jobs
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
Job search, venture investing & new tech products | AngelList;https://angel.co/;Jobs
LeetCode - The World's Leading Online Programming Learning Platform;https://leetcode.com/;Jobs
Master Algorithms with Python for Coding Interviews;https://www.educative.io/blog/python-algorithms-coding-interview;Jobs
Programming Interview Questions + Help Getting Job Offers | Interview Cake;https://www.interviewcake.com/;Jobs
Python програмісти - Джин;https://djinni.co/developers/?sortby=rating&title=Python&utm_medium=email&utm_source=transactional&utm_campaign=email%2Fcandidate_weeklystats.html;Jobs
Top 75 Programming Interview Questions Answers to Crack Any Coding Job Interview | Java67;https://www.java67.com/2018/05/top-75-programming-interview-questions-answers.html;Jobs
Top 100 Data Structure and Algorithm Interview Questions for Java Programmers | Java67;https://www.java67.com/2018/06/data-structure-and-algorithm-interview-questions-programmers.html;Jobs
What I Learned from Doing 60+ Technical Interviews in 30 Days;https://www.freecodecamp.org/news/what-i-learned-from-doing-60-technical-interviews-in-30-days/;Jobs
What I want (and don’t want) to see on your software engineering resume;https://medium.com/job-advice-for-software-engineers/what-i-want-and-dont-want-to-see-on-your-software-engineering-resume-cbc07913f7f6;Jobs
Вакансії | DOU;https://jobs.dou.ua/;Jobs
Вастрик.Инсайд #39: Войти в айти. Нужен ли диплом? Как учиться новому? Как оставаться востребованным? Есть ли жизнь после 30?;https://vas3k.ru/inside/39/;Jobs
Вастрик.Инсайд #46: Краткий гайд о том, как нанимать нормальных людей;https://vas3k.ru/inside/46/;Jobs
Де, як і скільки: аналізуємо найм джуніорів у 2019 році | DOU;https://dou.ua/lenta/articles/juniors-2019/?from=nl&utm_source=20200428&utm_medium=email&utm_campaign=CM;Jobs
Как должно выглядеть резюме ИТ-специалиста: типичные ошибки глазами HR;https://proglib.io/p/it-cv/;Jobs
Как успешно пройти любое техническое собеседование;https://proglib.io/p/programming-interview-success/;Jobs
Мій профіль – Джин;https://djinni.co/my/profile/;Jobs
Работа;https://rabota.ua/;Jobs
Що має знати Senior Python Back-end Developer. Аналіз вакансій в Україні та Каліфорнії | DOU;https://dou.ua/lenta/articles/knowledge-for-senior-python/?utm_source=dlvr.it&utm_medium=linkedin;Jobs
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. More Control Flow Tools — Python 3.8.2 documentation;https://docs.python.org/3/tutorial/controlflow.html#defining-functions;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 популярных 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
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
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
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 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 советов для обучающихся программированию;https://proglib.io/p/learn-to-code/;Articles about Software Engineering
10 структур данных, которые вы должны знать (+видео и задания);https://proglib.io/p/data-structures/;Articles about Software Engineering
11 must-have алгоритмов машинного обучения для Data Scientist;https://proglib.io/p/11-ml-algorithms/;Articles about Software Engineering
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
35 лучших сайтов для самообразования;https://proglib.io/p/35-websites-to-learn/;Articles about Software Engineering
58 подкастов для программистов;https://proglib.io/p/it-podcasts/;Articles about Software Engineering
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
An Intro to Git and GitHub for Beginners (Tutorial);https://product.hubspot.com/blog/git-and-github-tutorial-for-beginners;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
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
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
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
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
Built-in Functions — Python 3.8.2 documentation;https://docs.python.org/3/library/functions.html;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
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
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
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 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
Daniel Deutsch – Towards Data Science;https://towardsdatascience.com/@createdd;Articles about Software Engineering
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 Visualization with Python | Towards Data Science;https://towardsdatascience.com/data-visualization-with-python-8bc988e44f22;Articles about Software Engineering
Decorators — Python 3 Patterns, Recipes and Idioms;https://python-3-patterns-idioms-test.readthedocs.io/en/latest/PythonDecorators.html;Articles about Software Engineering
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
DistroWatch.com: Put the fun back into computing. Use Linux, BSD.;https://distrowatch.com/?language=RU;Articles about Software Engineering
Django или Ruby on Rails: какой фреймворк выбрать?;https://tproger.ru/translations/django-or-ruby-on-rails/;Django
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
ES6: прокси изнутри — CSS-LIVE;https://css-live.ru/articles/es6-proksi-iznutri.html;Articles about Software Engineering
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
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 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
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
FeatureSelector: отбор признаков для машинного обучения на Python;https://proglib.io/p/feature-selector/;Articles about Software Engineering
"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
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
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
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
Haskell и хождение в базы данных с помощью HDBC | Записки программиста;https://eax.me/haskell-hdbc/;Articles about Software Engineering
Home - Quora;https://www.quora.com/;Articles about Software Engineering
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 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 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 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 Your Live Django Website | Towards Data Science;https://towardsdatascience.com/how-to-update-your-live-django-website-b84645753ea1;Django
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
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
Imperative vs Declarative Programming;https://tylermcginnis.com/imperative-vs-declarative-programming/;Articles about Software Engineering
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
Introducing GitFlow;https://datasift.github.io/gitflow/IntroducingGitFlow.html;Articles about Software Engineering
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
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-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
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
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
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
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
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
melanierichards/just-build-websites: Some ideas for websites you can build!;https://github.com/melanierichards/just-build-websites;Articles about Software Engineering
miguelgrinberg.com;https://blog.miguelgrinberg.com/;Articles about Software Engineering
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
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
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
Object Detection: как написать Hello World приложениe | DOU;https://dou.ua/lenta/articles/object-detection/;Articles about Software Engineering
Papers;http://dsrg.pdos.csail.mit.edu/papers/;Articles about Software Engineering
PHP 25 лет: почему он именно такой и что с ним будет — рассказывает создатель языка;https://tproger.ru/video/25-years-of-php/?autoplay=1;Articles about Software Engineering
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
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
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
Prototype-based programming - Wikipedia;https://en.wikipedia.org/wiki/Prototype-based_programming;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 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 Developers Survey 2019 Results | JetBrains: Developer Tools for Professionals and Teams;https://www.jetbrains.com/lp/python-developers-survey-2019/;Articles about Software Engineering
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 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 для Data Science: 8 понятий, которые важно помнить;https://proglib.io/p/python-data-science/;Articles about Software Engineering
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
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
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
Sorting HOW TO — Python 3.8.2 documentation;https://docs.python.org/3/howto/sorting.html;Articles about Software Engineering
SQL против NoSQL на примере MySQL и MongoDB;https://tproger.ru/translations/sql-vs-nosql/;Articles about Software Engineering
SQLite, MySQL и PostgreSQL: сравниваем популярные реляционные СУБД;https://tproger.ru/translations/sqlite-mysql-postgresql-comparison/;Articles about Software Engineering
SWAP: Softmax-Weighted Average Pooling | by Shawn Jain | Jul, 2020 | Towards Data Science;https://towardsdatascience.com/swap-softmax-weighted-average-pooling-70977a69791b;Articles about Software Engineering
Text Classification with NLP: Tf-Idf vs Word2Vec vs BERT | by Mauro Di Pietro | Jul, 2020 | Towards Data Science;https://towardsdatascience.com/text-classification-with-nlp-tf-idf-vs-word2vec-vs-bert-41ff868d1794;Articles about Software Engineering
Text Generation with Bi-LSTM in PyTorch | by Fernando López | Aug, 2020 | Towards Data Science;https://towardsdatascience.com/text-generation-with-bi-lstm-in-pytorch-5fda6e7cc22c;Articles about Software Engineering
Text Summarization Using Deep Neural Networks | by Shivam Duseja | Aug, 2020 | Towards Data Science;https://towardsdatascience.com/text-summarization-using-deep-neural-networks-e7ee7521d804;Articles about Software Engineering
TF IDF | TFIDF Python Example. An example of how to implement TFIDF… | by Cory Maklin | Towards Data Science;https://towardsdatascience.com/natural-language-processing-feature-engineering-using-tf-idf-e8b9d00e7e76;Articles about Software Engineering
The Best Format to Save Pandas Data - Towards Data Science;https://towardsdatascience.com/the-best-format-to-save-pandas-data-414dca023e0d;Articles about Software Engineering
The Ultimate Out-of-the-box Automated Python Model Selection Methods | by Philippe Bouaziz, PhD | Aug, 2020 | Towards Data Science;https://towardsdatascience.com/the-ultimate-out-of-the-box-automated-python-model-selection-methods-f2188472d2a;Articles about Software Engineering
Top 8 Python Libraries for Data Science, Machine Learning, and Artificial Intelligence;https://javarevisited.blogspot.com/2018/10/top-8-python-libraries-for-data-science-machine-learning.html;Articles about Software Engineering
Top 15 Python Libraries for Data Science in 2017 - ActiveWizards — AI & ML for startups - Medium;https://medium.com/activewizards-machine-learning-company/top-15-python-libraries-for-data-science-in-in-2017-ab61b4f9b4a7;Articles about Software Engineering
Top Ranked Articles - CodeProject;https://www.codeproject.com/script/Articles/TopArticles.aspx?ta_so=5;Articles about Software Engineering
Tproger;https://tproger.ru/;Articles about Software Engineering
Train GPT-2 in your own language. A step-by-step guide to train your own… | by Arshabhi Kayal | Aug, 2020 | Towards Data Science;https://towardsdatascience.com/train-gpt-2-in-your-own-language-fc6ad4d60171;Articles about Software Engineering
Train without labeling data using Self-Supervised Learning by Relational Reasoning | by Chien Vu | Aug, 2020 | Towards Data Science;https://towardsdatascience.com/train-without-labeling-data-using-self-supervised-learning-by-relational-reasoning-b0298ad818f9;Articles about Software Engineering
Understanding Automatic Text Summarization-1: Extractive Methods | by Abhijit Roy | Aug, 2020 | Towards Data Science;https://towardsdatascience.com/understanding-automatic-text-summarization-1-extractive-methods-8eb512b21ecc;Articles about Software Engineering
Understanding Google's BigBird — Is It Another Big Milestone In NLP? | by Praveen Mishra | Sep, 2020 | Towards Data Science | Towards Data Science;https://towardsdatascience.com/understanding-bigbird-is-it-another-big-milestone-in-nlp-e7546b2c9643;Articles about Software Engineering
Understanding JavaScript’s async await;https://ponyfoo.com/articles/understanding-javascript-async-await;Articles about Software Engineering
Understanding the GitHub flow · GitHub Guides;https://guides.github.com/introduction/flow/;Articles about Software Engineering
Use Redis Queue for Asynchronous Tasks in a Flask App | by Edward Krueger | Aug, 2020 | Towards Data Science;https://towardsdatascience.com/use-redis-queue-for-asynchronous-tasks-in-a-flask-app-d39f2a8c2667;Articles about Software Engineering
Use Redis Queue for Asynchronous Tasks in a Flask App | by Edward Krueger | Aug, 2020 | Towards Data Science;https://towardsdatascience.com/use-redis-queue-for-asynchronous-tasks-in-a-flask-app-d39f2a8c2667;Articles about Software Engineering
Visualizing YouTube videos using Seaborn and WordCloud in Python | by Tanmayee W | Towards Data Science;https://towardsdatascience.com/visualizing-youtube-videos-using-seaborn-and-wordcloud-in-python-b24247f70228;Articles about Software Engineering
What happens if you write a TCP stack in Python? - Julia Evans;https://jvns.ca/blog/2014/08/12/what-happens-if-you-write-a-tcp-stack-in-python/;Articles about Software Engineering
Why developers are falling in love with functional programming | by Rhea Moutafis | Aug, 2020 | Towards Data Science;https://towardsdatascience.com/why-developers-are-falling-in-love-with-functional-programming-13514df4048e;Articles about Software Engineering
Word Embeddings Deep Dive — A hands-on approach | by Sharvil Nagarkar | Sep, 2020 | Towards Data Science;https://towardsdatascience.com/word-embeddings-deep-dive-hands-on-approach-a710eb03e4c5;Articles about Software Engineering
Write Professional Unit Tests in Python;https://code.tutsplus.com/tutorials/write-professional-unit-tests-in-python--cms-25835;Articles about Software Engineering
You’re living in 1985 if you don’t use Docker for your Data Science Projects | by Sohaib Ahmad | Aug, 2020 | Towards Data Science;https://towardsdatascience.com/youre-living-in-1985-if-you-don-t-use-docker-for-your-data-science-projects-858264db0082;Articles about Software Engineering
Zero-Shot Text Classification with Hugging Face | by Andrej Baranovskij | Aug, 2020 | Towards Data Science;https://towardsdatascience.com/zero-shot-text-classification-with-hugging-face-7f533ba83cd6;Articles about Software Engineering
Алгоритм сортировки Timsort / Блог компании Инфопульс Украина / Хабр;https://habr.com/ru/company/infopulse/blog/133303/;Articles about Software Engineering
Алгоритмы и структуры данных — всё по этой теме для программистов;https://tproger.ru/tag/algos-and-data-structs/;Articles about Software Engineering
Алгоритмы и структуры данных: развернутый видеокурс;https://proglib.io/p/data-structure-algorithms/;Articles about Software Engineering
Бесплатные материалы для программистов;https://tproger.ru/articles/free-programming-books/;Articles about Software Engineering
Большая подборка материалов по машинному обучению: книги, видеокурсы, онлайн-курсы;https://proglib.io/p/learning-ml/;Articles about Software Engineering
Большая подборка ресурсов для изучения Android-разработки;https://tproger.ru/digest/master-android-development/;Articles about Software Engineering
Быстрый старт в Java: от установки необходимого софта до первой программы;https://tproger.ru/articles/start-writing-in-java/;Articles about Software Engineering
Визуальное пояснение JOIN'ов на SQL :: Блог Вастрик.ру;https://vas3k.ru/blog/97/;Articles about Software Engineering
Где программисту-новичку найти упражнения и идеи для проектов?;https://tproger.ru/translations/where-to-find-ideas/;Articles about Software Engineering
Еженедельная подборка свежих и самых значимых новостей o Python;https://pythondigest.ru/;Articles about Software Engineering
Зачем аналитикам данных знать SQL;https://tproger.ru/blogs/why-data-analysts-need-sql/;Articles about Software Engineering
Из армии в IT или как я стал С# разработчиком с помощью JavaRush;https://javarush.ru/groups/posts/2466-iz-armii-v-it-ili-kak-ja-stal-dotnet-razrabotchikom-s-pomojshjhju-javarush;Articles about Software Engineering
Изобретаем JPEG / Хабр;https://habr.com/ru/post/206264/;Articles about Software Engineering
Изучаем алгоритмы: полезные книги, веб-сайты, онлайн-курсы и видеоматериалы;https://proglib.io/p/awesome-algorithms/;Articles about Software Engineering
Как выучить TypeScript за 2 дня и почему стоит начать прямо сейчас: опыт автора Tproger;https://tproger.ru/articles/how-to-learn-typescript/;Articles about Software Engineering
Как начать разрабатывать под Android;https://tproger.ru/translations/how-to-start-android/;Articles about Software Engineering
Как понять, что у тебя глубокие знания в JavaScript;https://proglib.io/p/deep-js/;Articles about Software Engineering
Как попасть в IT после 30;https://proglib.io/p/it-after-thirty/;Articles about Software Engineering
Как правильно искать и читать научные статьи?;https://proglib.io/p/research-papers/;Articles about Software Engineering
Как разобраться в Computer Science самостоятельно;https://tproger.ru/curriculum/computer-science-step-by-step/;Articles about Software Engineering
Как стать Junior-разработчиком и устроиться на работу за 4 месяца;https://proglib.io/p/junior-developer/;Articles about Software Engineering
Книги по программированию на Java. Книги для Джава программиста;https://tproger.ru/books/java-free-advanced-books/;Articles about Software Engineering
Курс Harvard CS50 - Лекция: Библиотеки Си;https://javarush.ru/quests/lectures/questharvardcs50.level01.lecture13;Articles about Software Engineering
Меняем схему базы данных в PostrgreSQL, не останавливая работу приложения;https://tproger.ru/translations/postgres-ddl-without-downtime/;Articles about Software Engineering
Мои текущие инструменты - Time To Learn;https://natenka.github.io/tools/my-current-toolset/;Articles about Software Engineering
Начало работы с PostgreSQL | Записки программиста;https://eax.me/postgresql-install/;Articles about Software Engineering
Нові записи на тему «Python» — Стрічка | DOU;https://dou.ua/lenta/tags/Python/;Articles about Software Engineering
Нюансы перехода на Kotlin, или Руководство для Android-разработчика по предательству Java;https://tproger.ru/articles/switch-from-java-to-kotlin/;Articles about Software Engineering
Объяснение взаимодействия методов (для новичков);https://javarush.ru/groups/posts/2659-prosteyshee-obhhjasnenie-vzaimodeystvija-metodov-dlja-novichkov?utm_source=eSputnik-$email-digest&utm_medium=email&utm_campaign=$email-digest-36-active-user&utm_content=788825223;Articles about Software Engineering
Основные команды SQL, которые должен знать каждый программист;https://tproger.ru/translations/sql-recap/;Articles about Software Engineering
От новичка до профи в машинном обучении за 3 месяца;https://proglib.io/p/ml-3months/;Articles about Software Engineering
Паттерны проектирования на Python;https://refactoring.guru/ru/design-patterns/python;Articles about Software Engineering
Подборка бесплатных курсов с Coursera, которые прокачают ваш скилл в программировании;https://tproger.ru/digest/it-programming-courses/;Articles about Software Engineering
Подборка книг для начинающих Java-программистов;https://tproger.ru/books/java-free-beginners-books/;Articles about Software Engineering
Подборка книг по программированию на Python (Питон);https://tproger.ru/books/free-python-books/;Articles about Software Engineering
Подборка материалов для изучения баз данных и SQL;https://proglib.io/p/sql-digest/;Articles about Software Engineering
Подборка материалов для начинающего Enterprise разработчика;https://tproger.ru/digest/enterprise-junior/;Articles about Software Engineering
Подборка фильмов для айтишников: что посмотреть после работы;https://tproger.ru/digest/films/;Articles about Software Engineering
Почему многие программисты считают PHP плохим языком? — отвечают эксперты;https://tproger.ru/experts/why-php-is-considered-bad/;Articles about Software Engineering
Привет, весна: пишем Hello World на Spring MVC;https://tproger.ru/translations/hello-world-spring/;Articles about Software Engineering
Программа минимум: что должен знать начинающий C# программист;https://tproger.ru/translations/csharp-basic-skills/;Articles about Software Engineering
Программисты, учите статистику или я вас поубиваю!;https://tproger.ru/translations/programmers-need-to-learn-statistics-or-i-will-kill-them-all/;Articles about Software Engineering
Работа с данными по-новому: Pandas вместо SQL;https://tproger.ru/translations/rewrite-sql-queries-in-pandas/;Articles about Software Engineering
Работа с документацией в Python: поиск информации и соглашения;https://proglib.io/p/python-docs/;Articles about Software Engineering
Разбираемся в алгоритмах и структурах данных. Доступно и понятно | DOU;https://dou.ua/lenta/articles/what-you-should-know-about-algorithms/;Articles about Software Engineering
Разработка чрезвычайно быстрых программ на Python / Блог компании RUVDS.com / Хабр;https://m.habr.com/ru/company/ruvds/blog/483678/;Articles about Software Engineering
Руководство по Java 9: компиляция и запуск проекта;https://tproger.ru/translations/java-9-guide-compile-run/;Articles about Software Engineering
Руководство по магическим методам в Питоне / Хабр;https://m.habr.com/ru/post/186608/;Articles about Software Engineering
Создание веб-приложения с помощью Flask в Python 3 | DigitalOcean;https://www.digitalocean.com/community/tutorials/how-to-make-a-web-application-using-flask-in-python-3-ru;Articles about Software Engineering
Стоит ли становиться разработчиком мобильных приложений?;https://proglib.io/p/do-you-need-to-be-mobile-developer/;Articles about Software Engineering
Тест: какой язык программирования вам стоит выбрать для изучения?;https://tproger.ru/quiz/programming-language-selector/;Articles about Software Engineering
ТОП-15 трюков в Python 3, делающих код понятнее и быстрее;https://proglib.io/p/python-tricks/;Articles about Software Engineering
Топ-25 самых рекомендуемых книг по программированию;https://tproger.ru/books/the-25-most-recommended-programming-books-of-all-time/;Articles about Software Engineering
Функциональное программирование для Android-разработчика. Часть первая;https://tproger.ru/translations/functional-android-1/;Articles about Software Engineering
Хочу научиться программировать на PHP. С чего начать?;https://tproger.ru/curriculum/php-beginner/;Articles about Software Engineering
Что лучше изучить: JavaScript стандарта ES5, стандарта ES6 или TypeScript?;https://tproger.ru/translations/es5-es6-or-typescript/;Articles about Software Engineering
Что такое Kotlin и с чем его едят: обучающее руководство и сравнение нового языка Android-разработки с Java;https://tproger.ru/translations/kotlin-vs-java-android/;Articles about Software Engineering
Binder;https://mybinder.org/;Awesome Python
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
Mailtrap.io — Fake smtp testing server. Dummy smtp email testing;https://mailtrap.io/;Awesome Python
Model field reference | Django documentation | Django;https://docs.djangoproject.com/en/3.1/ref/models/fields/;Django
pip-upgrade-outdated · PyPI;https://pypi.org/project/pip-upgrade-outdated/;Awesome Python
PythonDecorators - Python Wiki;https://wiki.python.org/moin/PythonDecorators;Awesome Python
Модуль re – регулярные выражения | Python;https://www.internet-technologies.ru/articles/modul-re-regulyarnye-vyrazheniya.html;Awesome Python
3 лучших книги по объектно-ориентированному программированию;https://proglib.io/p/oop-books/amp/;Books
3 лучших книги по объектно-ориентированному программированию;https://proglib.io/p/oop-books/;Books
5 отличных англоязычных книг по теоретическому Computer Science;https://proglib.io/p/5-computer-science-books/;Books
6 бесплатных книг по алгоритмам в программировании;https://proglib.io/p/algorythm-books/;Books
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
8 книг по компьютерным сетям;https://proglib.io/p/network-books/;Books
10 лучших книг по программированию по мнению Reddit;https://proglib.io/p/best-programming-books/;Books
15 лучших книг по программированию на Python - Kompot Journal;https://read.kj.media/obuchenie/books-python/;Books
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
Architectural Styles and the Design of Network-based Software Architectures;https://www.ics.uci.edu/~fielding/pubs/dissertation/top.htm;Books
Build your first app | Android Developers;https://developer.android.com/training/basics/firstapp/index.html;Books
Building Blocks for Theoretical Computer Science;http://mfleck.cs.illinois.edu/building-blocks/index.html;Books
chaconnewu/free-data-science-books: Free resources for learning data science;https://github.com/chaconnewu/free-data-science-books;Books
Computer Networking: a Top Down Approach;https://gaia.cs.umass.edu/kurose_ross/wireshark.htm;Books
Data-Oriented Design;https://www.dataorienteddesign.com/dodmain/dodmain.html;Books
Distributed Systems: Principles and Paradigms;http://barbie.uta.edu/~jli/Resources/MapReduce&Hadoop/Distributed%20Systems%20Principles%20and%20Paradigms.pdf;Books
Dive Into Python 3;https://diveintopython3.net/;Books
dmitryrubtsov/Python-for-Data-Science: Education;https://github.com/dmitryrubtsov/Python-for-Data-Science;Books
Domain Driven Design Quickly;https://www.infoq.com/minibooks/domain-driven-design-quickly/;Books
Elements of Statistical Learning: data mining, inference, and prediction. 2nd Edition.;http://web.stanford.edu/~hastie/ElemStatLearn/;Books
Eloquent JavaScript;https://eloquentjavascript.net/;Books
Free books;https://www.mccme.ru/free-books/;Books
Google - Site Reliability Engineering;https://landing.google.com/sre/sre-book/toc/index.html;Books
Google - Site Reliability Engineering;https://landing.google.com/sre/workbook/toc/;Books
holoviz/hvplot: A high-level plotting API for pandas, dask, xarray, and networkx built on HoloViews;https://github.com/holoviz/hvplot;Books
How to Design Programs;https://htdp.org/;Books
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
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
Introduction - Выразительный Javascript;https://eloquent-javascript.karmazzin.ru/;Books
Introduction to Computing: Explorations in Language, Logic, and Machines;http://computingbook.org/;Books
Introduction to Linear Algebra, 5th Edition;http://math.mit.edu/~gs/linearalgebra/;Books
Introduction to Programming in Java · Computer Science;https://introcs.cs.princeton.edu/java/home/;Books
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
Learn Python - Free Interactive Python Tutorial;https://www.learnpython.org/;Books
Learn Python in Y Minutes;https://learnxinyminutes.com/docs/python/;Books
Learn Python the Hard Way;https://learnpythonthehardway.org/;Books
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
Python Documentation contents — Python 3.8.2 documentation;https://docs.python.org/3/contents.html;Books
R Tutorial for Beginners: Learning R Programming;https://www.guru99.com/r-tutorial.html;Books
Springer has released 65 Machine Learning and Data books for free;https://towardsdatascience.com/springer-has-released-65-machine-learning-and-data-books-for-free-961f8181f189;Books
Teach Yourself Computer Science;https://teachyourselfcs.com/;Books
The Functional Art: An Introduction to Information Graphics and Visualization: The Functional Art;http://www.thefunctionalart.com/p/about-book.html;Books
The HoTT Book | Homotopy Type Theory;https://homotopytypetheory.org/book/;Books
The Python Standard Library — Python 3.8.2 documentation;https://docs.python.org/3/library/;Books
TheoryOfComputation.dvi;http://cglab.ca/~michiel/TheoryOfComputation/TheoryOfComputation.pdf;Books
Think Python;http://greenteapress.com/thinkpython/html/index.html;Books
tr22.pdf;http://www.tac.mta.ca/tac/reprints/articles/22/tr22.pdf;Books
Tutorial - Learn Python in 10 minutes - Stavros' Stuff;https://www.stavros.io/tutorials/python/;Books
Tutorials — pandas 1.0.3 documentation;https://pandas.pydata.org/pandas-docs/stable/getting_started/tutorials.html;Books
unmaintainable code : Java Glossary;https://www.mindprod.com/jgloss/unmain.html;Books
You-Dont-Know-JS/README.md at 2nd-ed · getify/You-Dont-Know-JS;https://github.com/getify/You-Dont-Know-JS/blob/2nd-ed/get-started/README.md;Books
Большая книга веб-дизайна - Терри Фельке-Моррис - Google книги;https://books.google.ru/books?id=d2oaBAAAQBAJ&printsec=frontcover&hl=uk&source=gbs_ge_summary_r&cad=0#v=onepage&q&f=false;Books
Каталог книг | VK;https://m.vk.com/page-54530371_44620320;Books
Категория:Программирование — Википедия;https://ru.wikipedia.org/wiki/%D0%9A%D0%B0%D1%82%D0%B5%D0%B3%D0%BE%D1%80%D0%B8%D1%8F:%D0%9F%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;Books
Книга «Python для сложных задач: наука о данных и машинное обучение» / Блог компании Издательский дом «Питер» / Хабр;https://habr.com/ru/company/piter/blog/339766/;Books
Книги и другие материалы для обучения - Stack Overflow на русском;https://ru.stackoverflow.com/questions/454683/%d0%9a%d0%bd%d0%b8%d0%b3%d0%b8-%d0%b8-%d0%b4%d1%80%d1%83%d0%b3%d0%b8%d0%b5-%d0%bc%d0%b0%d1%82%d0%b5%d1%80%d0%b8%d0%b0%d0%bb%d1%8b-%d0%b4%d0%bb%d1%8f-%d0%be%d0%b1%d1%83%d1%87%d0%b5%d0%bd%d0%b8%d1%8f;Books
Книги и учебные ресурсы по Python - Stack Overflow на русском;https://ru.stackoverflow.com/questions/420125/%d0%9a%d0%bd%d0%b8%d0%b3%d0%b8-%d0%b8-%d1%83%d1%87%d0%b5%d0%b1%d0%bd%d1%8b%d0%b5-%d1%80%d0%b5%d1%81%d1%83%d1%80%d1%81%d1%8b-%d0%bf%d0%be-python;Books
Лучший самоучитель по Java для начинающих и продвинутых;https://javarush.ru/groups/posts/top-7-knig-po-java;Books
Математические основы анализа данных: подборка материалов по вузовской математике;https://proglib.io/p/math-materials-for-ds/;Books
Много бесплатных книг по программированию / Хабр;https://habr.com/ru/post/191312/;Books
Обложка — A Byte Of Python — русский перевод;http://wombat.org.ua/AByteOfPython/;Books
Оглавление — Problem Solving with Algorithms and Data Structures;http://aliev.me/runestone/;Books
Перевод документации Python 3.x;https://pythoner.name/documentation;Books
Помнить все: делимся лучшей шпаргалкой по Python;https://proglib.io/p/python-cheatsheet;Books
Топ 10 самых популярных книг по программированию;https://proglib.io/p/top-10-programming-books/;Books
Учебник по NumPy - Визуализация примеров для быстрого изучения;https://python-scripts.com/numpy;Books
Учебники, задачники, справочники по web языкам | Трепачёв Дмитрий;http://old.code.mu/;Books
(1) LinkedIn;https://www.linkedin.com/feed/;Developer's Tools
(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
| fastai;https://docs.fast.ai/;Developer's Tools
7 Steps to Mastering Machine Learning With Python;https://www.kdnuggets.com/2015/11/seven-steps-machine-learning-python.html/2;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 minutes to Koalas — Koalas 0.33.0 documentation;https://koalas.readthedocs.io/en/latest/getting_started/10min.html;Developer's Tools
10 лучших материалов для изучения Django;https://proglib.io/p/django-sources/;Django
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
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 curated list with Python packages | LibHunt;https://python.libhunt.com/categories;Developer's Tools
A successful Git branching model » nvie.com;https://nvie.com/posts/a-successful-git-branching-model/;Developer's Tools
Account | Mapbox;https://account.mapbox.com/;Developer's Tools
Algorithms - Algorithmia;https://algorithmia.com/algorithms;Developer's Tools
All Tools — PyViz 0.0.1 documentation;https://pyviz.org/tools.html;Developer's Tools
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
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
ArtVk & Bugtrack: Задачи по базам данных. Решение задач по SQL [1];https://artvk.blogspot.com/2014/01/sql.html;Developer's Tools
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
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
Better Code Hub;https://bettercodehub.com/repositories;Developer's Tools
Big data sets available for free - Data Science Central;https://www.datasciencecentral.com/profiles/blogs/big-data-sets-available-for-free;Developer's Tools
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
Building A Blog Application With Django | Django Central;https://djangocentral.com/building-a-blog-application-with-django/;Django
Building a Microservice in Python - Sonu Sharma - Medium;https://medium.com/@sonusharma.mnnit/building-a-microservice-in-python-ff009da83dac;Developer's Tools
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
Catalog of Patterns of Enterprise Application Architecture;https://martinfowler.com/eaaCatalog/index.html;Developer's Tools
Chapter 1. Getting to know Redis - Redis in Action;https://livebook.manning.com/book/redis-in-action/chapter-1/9;Developer's Tools
Choosing the right estimator — scikit-learn 0.22.2 documentation;https://scikit-learn.org/stable/tutorial/machine_learning_map/index.html;Developer's Tools
CLI Setup - NativeScript Docs;https://docs.nativescript.org/angular/start/quick-setup;Developer's Tools
Cloud Shell;https://ssh.cloud.google.com/cloudshell/editor?project&pli=1&shellonly=true;Developer's Tools
Codacy Onboarding;https://app.codacy.com/welcome/organizations;Developer's Tools
Codecov;https://codecov.io/gh;Developer's Tools
CodePen: Build, Test, and Discover Front-end Code.;https://codepen.io/;Developer's Tools
colorama · PyPI;https://pypi.org/project/colorama/;Developer's Tools
Conda Cheat Sheet - Kapeli;https://kapeli.com/cheat_sheets/Conda.docset/Contents/Resources/Documents/index;Developer's Tools
Control Room | Home | Automation Anywhere;https://community.cloud.automationanywhere.digital/#/home;Developer's Tools
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
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
create-graphql-server — instantly scaffold a GraphQL server;https://blog.hichroma.com/create-graphql-server-instantly-scaffold-a-graphql-server-1ebad1e71840;Developer's Tools
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 · 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 School;https://www.dataschool.io/;Developer's Tools
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: Querying, Analyzing and Downloading: The GDELT Project;https://www.gdeltproject.org/data.html#rawdatafiles;Developer's Tools
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
django CMS - Enterprise Content Management with Django - django CMS;https://www.django-cms.org/en/;Django
Django documentation | Django documentation | Django;https://docs.djangoproject.com/en/3.0/;Django
Django ORM. Добавим сахарку / Хабр;https://habr.com/ru/post/263821/;Developer's Tools
Django в примерах · GitBook (Legacy);https://legacy.gitbook.com/book/pocoz/django-v-primerah/details;Django
Django на русском;https://djbook.ru/;Developer's Tools
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
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
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
Find Open Datasets and Machine Learning Projects | Kaggle;https://www.kaggle.com/datasets;Developer's Tools
Flask - Full Stack Python;https://www.fullstackpython.com/flask.html;Developer's Tools
Get Started - Flyway by Redgate • Database Migrations Made Easy.;https://flywaydb.org/getstarted/;Developer's Tools
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 PyMC3 — PyMC3 3.8 documentation;https://docs.pymc.io/notebooks/getting_started.html;Developer's Tools
Glitch;https://glitch.com/;Developer's Tools
Graphene-Python;https://docs.graphene-python.org/en/latest/quickstart/;Developer's Tools
GUI (графический интерфейс пользователя) | Python 3 для начинающих и чайников;https://pythonworld.ru/gui;Developer's Tools
GuiProgramming - Python Wiki;https://wiki.python.org/moin/GuiProgramming;Developer's Tools
Hello, skromnitsky · App Center;https://appcenter.ms/apps;Developer's Tools
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 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 Update All Python Packages | ActiveState;https://www.activestate.com/resources/quick-reads/how-to-update-all-python-packages/;Developer's Tools
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
Integrating Summernote WYSIWYG Editor in Django | Django Central;https://djangocentral.com/integrating-summernote-in-django/;Django
Introducing Bamboolib — a GUI for Pandas - Towards Data Science;https://towardsdatascience.com/introducing-bamboolib-a-gui-for-pandas-4f6c091089e3;Developer's Tools
ipinfo.io/json;http://ipinfo.io/json;Developer's Tools
Jetware - aise / tensorflow18_keras21_python36_cpu_notebook - 180509 appliance;http://jetware.io/appliances/aise/tensorflow18_keras21_python36_cpu_notebook;Developer's Tools
JS Bin - Collaborative JavaScript Debugging;http://jsbin.com/?html,output;Developer's Tools
Keras Cheat Sheet: Neural Networks in Python - DataCamp;https://www.datacamp.com/community/blog/keras-cheat-sheet;Developer's Tools
keyboard-shortcuts-windows.pdf;https://code.visualstudio.com/shortcuts/keyboard-shortcuts-windows.pdf;Developer's Tools
Laravel Nova - Beautifully-designed administration panel for Laravel;https://nova.laravel.com/;Developer's Tools
localhost:54321/callback?code=b7e3a07c1695c5b58b6d;http://localhost:54321/callback?code=b7e3a07c1695c5b58b6d;Developer's Tools
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
main;https://repo.anaconda.com/pkgs/main/;Developer's Tools
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
More Itertools — more-itertools 8.2.0 documentation;https://more-itertools.readthedocs.io/en/stable/index.html;Developer's Tools
Native mobile apps with Angular, Vue.js, TypeScript, JavaScript - NativeScript;https://www.nativescript.org/;Developer's Tools
NLTK Data;http://www.nltk.org/nltk_data/;Developer's Tools
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 and Scipy Documentation — Numpy and Scipy documentation;https://docs.scipy.org/doc/;Developer's Tools
NumPy в Python. Часть 1 / Хабр;https://habr.com/ru/post/352678/;Developer's Tools
Online regex tester and debugger: PHP, PCRE, Python, Golang and JavaScript;https://regex101.com/;Developer's Tools
Oscar — django-oscar 2.1 documentation;http://docs.oscarcommerce.com/en/latest/;Developer's Tools
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
PageSpeed Insights;https://developers.google.com/speed/pagespeed/insights/?hl=uk&url=https%3A%2F%2Fkuprienko.info%2F&tab=desktop;Developer's Tools
Pandas Cheat Sheet: top 35 commands and operations;https://www.educative.io/blog/pandas-cheat-sheet;Developer's Tools
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
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
Polymer Project;https://www.polymer-project.org/;Developer's Tools
Popper - Tooltip & Popover Positioning Engine;https://popper.js.org/;Developer's Tools
PostgreSQL : Документация : Компания Postgres Professional;https://postgrespro.ru/docs/postgresql;Developer's Tools
Prisma - Database tools for modern application development;https://www.prisma.io/;Developer's Tools
Projects - Home;https://dev.azure.com/kupriienko/;Developer's Tools
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 3.8 documentation — DevDocs;https://devdocs.io/python~3.8/;Developer's Tools
Python Concurrency: Making sense of asyncio;https://www.educative.io/blog/python-concurrency-making-sense-of-asyncio;Developer's Tools
Python Extension Packages for Windows - Christoph Gohlke;https://www.lfd.uci.edu/~gohlke/pythonlibs/;Developer's Tools
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 в три ручья: работаем с потоками (часть 1) | GeekBrains - образовательный портал;https://geekbrains.ru/posts/python_threading_part1;Developer's Tools
Qt Designer Download for Windows and Mac;https://build-system.fman.io/qt-designer-download;Developer's Tools
Quick Start · gulp.js;https://gulpjs.com/docs/en/getting-started/quick-start;Developer's Tools
Quick Start | GatsbyJS;https://www.gatsbyjs.org/docs/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
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
R Packages - RStudio;https://rstudio.com/products/rpackages/;Developer's Tools
React – JavaScript-бібліотека для створення користувацьких інтерфейсів;https://uk.reactjs.org/;Developer's Tools
RegExr: Learn, Build, & Test RegEx;https://regexr.com/;Developer's Tools
Repl.it - Home;https://repl.it/~;Developer's Tools
Reqres - A hosted REST-API ready to respond to your AJAX requests;https://reqres.in/;Developer's Tools
Roundup of Python NLP Libraries - NLP-FOR-HACKERS;https://nlpforhackers.io/libraries/;Developer's Tools
SciPy — SciPy v1.4.1 Reference Guide;https://docs.scipy.org/doc/scipy/reference/;Developer's Tools
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
Settings | Account · WakaTime;https://wakatime.com/settings/account;Developer's Tools
skromnitsky - Profile - Travis CI;https://travis-ci.org/account/repositories;Developer's Tools
Speech Recognition - Speech to Text in Python using Google API, Wit.AI, IBM, CMUSphinx;https://www.pragnakalp.com/speech-recognition-speech-to-text-python-using-google-api-wit-ai-ibm-cmusphinx/;Developer's Tools
Speed Up your Algorithms Part 2— Numba - Towards Data Science;https://towardsdatascience.com/speed-up-your-algorithms-part-2-numba-293e554c5cc1;Developer's Tools
Speeding up your Algorithms Part 4— Dask - Towards Data Science;https://towardsdatascience.com/speeding-up-your-algorithms-part-4-dask-7c6ed79994ef;Developer's Tools
Stop Worrying and Create your Deep Learning Server in 30 minutes;https://towardsdatascience.com/stop-worrying-and-create-your-deep-learning-server-in-30-minutes-bb5bd956b8de;Developer's Tools
The 30 Best Python Libraries and Packages for Beginners;https://www.ubuntupit.com/best-python-libraries-and-packages-for-beginners/;Developer's Tools
The Basics of Data Visualisation with Python - Towards Data Science;https://towardsdatascience.com/the-basics-of-data-visualisation-with-python-23188aa9fc1a;Developer's Tools
The Big Bad NLP Database: Access Nearly 300 Datasets;https://www.kdnuggets.com/2020/02/big-bad-nlp-database.html;Developer's Tools
The Coolest Data Science And Machine Learning Tool Companies Of The 2020 Big Data 100;https://www.crn.com/slide-shows/cloud/the-coolest-data-science-and-machine-learning-tool-companies-of-the-2020-big-data-100;Developer's Tools
The fastest way to integrate APIs and run code - Pipedream;https://pipedream.com/;Developer's Tools
The Flask Mega-Tutorial Part I: Hello, World! - miguelgrinberg.com;https://blog.miguelgrinberg.com/post/the-flask-mega-tutorial-part-i-hello-world;Developer's Tools
The Most Underrated Python Packages - Towards Data Science;https://towardsdatascience.com/the-most-underrated-python-packages-e22bf6049b5e;Developer's Tools
The Super Duper NLP Repo: 100 Ready-to-Run Colab Notebooks;https://www.kdnuggets.com/2020/04/super-duper-nlp-repo.html;Developer's Tools
Tkinter. Программирование GUI на Python. Курс;https://younglinux.info/tkinter.php;Developer's Tools
Top 100 Selenium Interview Questions & Answers;https://www.guru99.com/top-100-selenium-interview-questions-answers.html;Developer's Tools
Top Python Libraries Used In Data Science - Towards Data Science;https://towardsdatascience.com/top-python-libraries-used-in-data-science-a58e90f1b4ba;Developer's Tools
Travis CI - Test and Deploy with Confidence;https://travis-ci.com/dashboard;Developer's Tools
Turn Python Scripts into Beautiful ML Tools - Towards Data Science;https://towardsdatascience.com/coding-ml-tools-like-you-code-ml-models-ddba3357eace;Developer's Tools
Tutorial — ZODB documentation;http://www.zodb.org/en/latest/tutorial.html#installation;Developer's Tools
Tutorial: Web Scraping in R with rvest – Dataquest;https://www.dataquest.io/blog/web-scraping-in-r-rvest/;Developer's Tools
Untitled Diagram - diagrams.net;https://app.diagrams.net/;Developer's Tools
Untitled Document - Creately;https://app.creately.com/diagram/7J75Ibgfcn3/edit;Developer's Tools
User Guide — HTTP Prompt 1.0.0 documentation;http://docs.http-prompt.com/en/latest/user-guide.html#installation;Developer's Tools
User's Guide — Matplotlib 3.2.1 documentation;https://matplotlib.org/users/index.html;Developer's Tools
W3Schools Online Web Tutorials;https://www.w3schools.com/;Developer's Tools
WAVE Report of Мої книги | KUPRIENKO;https://wave.webaim.org/report#/kuprienko.info;Developer's Tools
Web technology for developers | MDN;https://developer.mozilla.org/en-US/docs/Web;Developer's Tools
WebAssembly;https://webassembly.org/;Developer's Tools
Website Style Guide Resources;http://styleguides.io/;Developer's Tools
Welcome to pyjanitor’s documentation! — pyjanitor documentation;https://pyjanitor.readthedocs.io/;Developer's Tools
Welcome to SymPy’s documentation! — SymPy 1.5.1 documentation;https://docs.sympy.org/latest/index.html;Developer's Tools
What is Azure Machine Learning | Microsoft Docs;https://docs.microsoft.com/en-us/azure/machine-learning/overview-what-is-azure-ml;Developer's Tools
Which movie should I watch? - Nishant Sahoo - Medium;https://medium.com/@nishantsahoo/which-movie-should-i-watch-5c83a3c0f5b1;Developer's Tools
Wolfram Client Library for Python — Wolfram Client Library for Python 1.1.0 documentation;https://reference.wolfram.com/language/WolframClientForPython/;Developer's Tools
Wolfram|Alpha: Computational Intelligence;https://www.wolframalpha.com/;Developer's Tools
Xpath cheatsheet;https://devhints.io/xpath;Developer's Tools
Yii PHP Framework;https://www.yiiframework.com/;Developer's Tools
Введение в потоки в Python - Еще один блог веб разработчика;https://webdevblog.ru/vvedenie-v-potoki-v-python/;Developer's Tools
Введение в создание веб-приложений на Python;https://proglib.io/p/python-web-development/;Developer's Tools
Веб-фреймворк Django (Python) - Изучение веб-разработки | MDN;https://developer.mozilla.org/ru/docs/Learn/Server-side/Django;Django
Вступ · Django Girls Tutorial;https://tutorial.djangogirls.org/uk/;Django
Глава 1: Создание первого приложения · Django в примерах;https://pocoz.gitbooks.io/django-v-primerah/content/;Django
Данные важнее, чем модели. Как выглядят эффективные процессы в Data Science | DOU;https://dou.ua/lenta/articles/data-scientists-workflow/;Developer's Tools
Идеальное резюме разработчика / Habr;https://m.habr.com/ru/amp/post/502802/;Developer's Tools
Инструменты для создания макета сайта для новичков: чем отличаются и какой выбрать;https://tproger.ru/articles/tools-for-webdesign-beginners/;Developer's Tools
Искусственная нейронная сеть с нуля на Python c библиотекой NumPy;https://neurohive.io/ru/tutorial/nejronnaja-set-na-numpy/;Developer's Tools
Как написать цепляющую вакансию на ДОУ | DOU;https://dou.ua/forums/topic/30281/?from=comment-digest_bc&utm_source=transactional&utm_medium=email&utm_campaign=digest-comments#1830892;Developer's Tools
Как получить 100/100 в Google Page Speed Test Tool? — SEO компания UAWEB;https://uaweb.ua/publication/google_page_speed_test_tool.html;Developer's Tools
Как установить Django, Nginx и Gunicorn на виртуальный сервер;https://1cloud.ru/help/linux/ustanovka-django-s-postgresql-nginx-i-gunicorn-na-ubuntu-18-04;Django
Краткое руководство по Dash — Python веб-фреймворк для создания дэшбордов. Installation + Dash Layout / Хабр;https://habr.com/ru/post/431754/;Developer's Tools
Курс «Hacking PostgreSQL» : Компания Postgres Professional;https://postgrespro.ru/education/courses/hacking;Developer's Tools
Лучшие датасеты для машинного обучения и анализа данных;https://tproger.ru/translations/the-best-datasets-for-machine-learning-and-data-science/;Developer's Tools
Мега-Учебник Flask, Часть 1: «Привет, Мир!» / Хабр;https://habr.com/ru/post/193242/;Developer's Tools
Многопоточность в Python;https://bablofil.ru/python-multithreading/;Developer's Tools
Многопоточность в Python. Библиотеки threading и multiprocessing.;http://cs.mipt.ru/advanced_python/lessons/lab6.html;Developer's Tools
Многопоточность на примерах - модуль threading;https://python-scripts.com/threading;Developer's Tools
Настраиваем Django + virtualenv + nginx + gunicorn + PostgreSQL + memcached + letsencrypt на Ubuntu 16.04 | Python 3 для начинающих и чайников;https://pythonworld.ru/web/django-ubuntu1604.html;Django
Настройка Django с Postgres, Nginx и Gunicorn в Ubuntu 18.04 | DigitalOcean;https://www.digitalocean.com/community/tutorials/how-to-set-up-django-with-postgres-nginx-and-gunicorn-on-ubuntu-18-04-ru;Django
Настройка веб-сервера для Django с nginx и uWSGI - Как стать программистом;http://itman.in/django-webserver-nginx-uwsgi/;Django
Обработка естественного языка: с чего начать и что изучать дальше;https://proglib.io/p/how-to-start-nlp/;Developer's Tools
Объектно-ориентированное Программирование в Python;https://python-scripts.com/object-oriented-programming-in-python#attributes;Developer's Tools
Описания паттернов проектирования. Паттерны проектирования. Шаблоны проектирования на Design pattern ru;http://design-pattern.ru/patterns/;Developer's Tools
Перші кроки в NLP: розглядаємо Python-бібліотеку TensorFlow та нейронні мережі в реальному завданні | DOU;https://dou.ua/lenta/articles/first-steps-in-nlp-tensorflow/?from=comment-digest_post&utm_source=transactional&utm_medium=email&utm_campaign=digest-comments;Developer's Tools
Почему CSS Grid лучше, чем фреймворк Bootstrap?;https://proglib.io/p/css-grid-vs-bootstrap/;Developer's Tools
Почему Python хорош для Data Science и разработки при��ожений;https://tproger.ru/articles/python-for-software-development-and-data-science/;Developer's Tools
Предсказываем будущее с помощью библиотеки Facebook Prophet / Блог компании Open Data Science / Хабр;https://habr.com/ru/company/ods/blog/323730/;Developer's Tools
Примеры использования Python-библиотеки NumPy | Записки программиста;https://eax.me/python-numpy/;Developer's Tools
Скринкаст по Git;https://learn.javascript.ru/screencast/git;Developer's Tools
Создаем простой калькулятор в PyQt5;https://python-scripts.com/pyqt5-calculator;Developer's Tools
Создание графического интерфейса на Python 3 с Tkinter ~ PythonRu;https://pythonru.com/uroki/obuchenie-python-gui-uroki-po-tkinter;Developer's Tools
Учимся писать многопоточные и многопроцессные приложения на Python / Хабр;https://habr.com/ru/post/149420/;Developer's Tools
Фичи Django ORM, о которых вы не знали;https://tproger.ru/translations/django-orm-tips/;Django
Что такое NGINX. NGINX простыми словами;https://www.dmosk.ru/terminus.php?object=nginx;Developer's Tools
10 мобильных приложений, которые научат вас программировать;https://proglib.io/p/programming-apps/;Games for Education
12 бесплатных ресурсов для обучения программированию в игровой форме;https://proglib.io/p/learn-programming-playfully/;Games for Education
House Prices: Advanced Regression Techniques | Kaggle;https://www.kaggle.com/c/house-prices-advanced-regression-techniques;Games for Education
Learn Git Branching;https://learngitbranching.js.org/;Games for Education
Play CodeCombat Levels - Learn Python, JavaScript, and HTML | CodeCombat;https://codecombat.com/play/forest;Games for Education
The Python Challenge;http://www.pythonchallenge.com/;Games for Education
Titanic: Machine Learning from Disaster | Kaggle;https://www.kaggle.com/c/titanic/overview;Games for Education
Календар IT-подій в Києві | DOU;https://dou.ua/calendar/city/%D0%9A%D0%B8%D0%B5%D0%B2/;IT-events
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
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
CS109 Data Science;https://cs109.github.io/2015/;Math
Intro to TensorFlow for Deep Learning;https://www.udacity.com/course/intro-to-tensorflow-for-deep-learning--ud187;Math
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
Learning From Data (Introductory Machine Learning) | edX;https://www.edx.org/course/learning-from-data-introductory-machine-learning;Math
Linear Algebra - Foundations to Frontiers | edX;https://www.edx.org/course/linear-algebra-foundations-to-frontiers#!;Math
Multivariable Calculus | Mathematics | MIT OpenCourseWare;https://ocw.mit.edu/courses/mathematics/18-02sc-multivariable-calculus-fall-2010/index.htm;Math
Probability - The Science of Uncertainty and Data | edX;https://www.edx.org/course/probability-the-science-of-uncertainty-and-data#.U3yb762SzIo;Math
Stanford University CS224d: Deep Learning for Natural Language Processing;https://cs224d.stanford.edu/;Math
The Analytics Edge | edX;https://www.edx.org/course/the-analytics-edge;Math
Наука о больших данных | Coursera;https://www.coursera.org/specializations/data-science;Math
(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;MOOC and courses
6.006: Introduction to Algorithms - Massachusetts Institute of Technology;https://courses.csail.mit.edu/6.006/fall11/notes.shtml;MOOC and courses
11.1 - Regular Expressions - Мичиганский университет | Coursera;https://www.coursera.org/learn/python-network-data/lecture/bMyWb/11-1-regular-expressions;MOOC and courses
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
Advanced Operating Systems;https://www.udacity.com/course/advanced-operating-systems--ud189;MOOC and courses
AI For Everyone — главная | Coursera;https://www.coursera.org/learn/ai-for-everyone/home/welcome;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 for Coding Interviews in Python - Learn Interactively;https://www.educative.io/courses/algorithms-coding-interviews-python;MOOC and courses
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 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 Interactive Programming in Python (Part 1) — главная | Coursera;https://www.coursera.org/learn/interactive-python-1/home/welcome;MOOC and courses
AP®︎ Computer Science Principles (AP®︎ CSP) | Khan Academy;https://www.khanacademy.org/computing/ap-computer-science-principles;MOOC and courses
App Maker Academy | LEARN;https://learn.by/courses/course-v1:EPAM+AMA+ext1/about;MOOC and courses
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 Plotting, Charting & Data Representation in Python | Coursera;https://www.coursera.org/learn/python-plotting;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
Applied Text Mining in Python | Coursera;https://www.coursera.org/learn/python-text-mining;MOOC and courses
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
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
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
Big Data Analytics in Healthcare;https://www.udacity.com/course/big-data-analytics-in-healthcare--ud758;MOOC and courses
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
Caesar - CS50x;https://cs50.harvard.edu/x/2020/psets/2/caesar/;MOOC and courses
Chat with React - Scrimba Tutorial;https://scrimba.com/p/pbNpTv/c9bWPAp;MOOC and courses
Clean Code | LEARN;https://learn.by/courses/course-v1:EPAM+CC+ext1/about;MOOC and courses
Client-Server Communication;https://www.udacity.com/course/client-server-communication--ud897;MOOC and courses
Code Basics: основы программирования;https://ru.code-basics.com/languages/javascript/modules/basics/lessons/comments;MOOC and courses
Codecademy;https://www.codecademy.com/catalog/subject/all;MOOC and courses
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
Command Line Essentials: Git Bash for Windows | Udemy;https://www.udemy.com/course/git-bash/learn/lecture/2723932#overview;MOOC and courses
Computability, Complexity & Algorithms;https://www.udacity.com/course/computability-complexity-algorithms--ud061;MOOC and courses
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
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
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 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
Crash Course on Python — главная | Coursera;https://www.coursera.org/learn/python-crash-course/home/info;MOOC and courses
CSS - Scrimba Tutorial;https://scrimba.com/p/pWvwCg/c3vBJu2;MOOC and courses
Dashboard | Khan Academy;https://www.khanacademy.org/profile/kaid_319771232046788166624019/courses;MOOC and courses
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 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 Interview Prep;https://www.udacity.com/course/data-science-interview-prep--ud944;MOOC and courses
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 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 Wrangling with MongoDB;https://www.udacity.com/course/data-wrangling-with-mongodb--ud032;MOOC and courses
Database Systems Concepts & Design;https://www.udacity.com/course/database-systems-concepts-design--ud150;MOOC and courses
DataCamp;https://learn.datacamp.com/;MOOC and courses
Datatypes & Typecasting - Scrimba Tutorial;https://scrimba.com/p/pNpZMAB/cgqp9rSz;MOOC and courses
Deep learning на пальцах!;https://dlcourse.ai/;MOOC and courses
Design of Computer Programs;https://www.udacity.com/course/design-of-computer-programs--cs212;MOOC and courses
Designing RESTful APIs;https://www.udacity.com/course/designing-restful-apis--ud388;MOOC and courses
Developing AI Applications on Azure — главная | Coursera;https://www.coursera.org/learn/developing-ai-applications-azure/home/welcome;MOOC and courses
Differential Equations in Action;https://www.udacity.com/course/differential-equations-in-action--cs222;MOOC and courses
Divide and Conquer, Sorting and Searching, and Randomized Algorithms | Coursera;https://www.coursera.org/learn/algorithms-divide-conquer;MOOC and courses
Docker Swarm Mode Playground | Katacoda;https://www.katacoda.com/courses/docker-orchestration/playground;MOOC and courses
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
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
Explore - LeetCode;https://leetcode.com/explore/;MOOC and courses
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 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
Front Matter — Alembic 1.4.2 documentation;https://alembic.sqlalchemy.org/en/latest/front.html#installation;MOOC and courses
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 Stack Foundations;https://www.udacity.com/course/full-stack-foundations--ud088;MOOC and courses
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
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
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
GT - Refresher - Advanced OS;https://www.udacity.com/course/gt-refresher-advanced-os--ud098;MOOC and courses
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
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
HTTP & Web Servers;https://www.udacity.com/course/http-web-servers--ud303;MOOC and courses
https://scratch.mit.edu/projects/374672500/editor;https://scratch.mit.edu/projects/374672500/editor;MOOC and courses
Improving Deep Neural Networks: Hyperparameter tuning, Regularization and Optimization | Coursera;https://www.coursera.org/learn/deep-neural-network?specialization=deep-learning;MOOC and courses
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
Intel® Edge AI Fundamentals with OpenVINO™;https://www.udacity.com/course/intel-edge-AI-fundamentals-with-openvino--ud132;MOOC and courses
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 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 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 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 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
Introduction - Scrimba Tutorial;https://scrimba.com/p/pPPeCy/c7veET3;MOOC and courses
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 Vision;https://www.udacity.com/course/introduction-to-computer-vision--ud810;MOOC and courses
Introduction to D3 - Scrimba Tutorial;https://scrimba.com/p/pb4WsX/c2bB4hN;MOOC and courses
Introduction to Data Science in Python | Coursera;https://www.coursera.org/learn/python-data-analysis;MOOC and courses
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 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 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
IT Курсы программировани�� онлайн - обучение программированию, видео уроки | ITVDN;https://itvdn.com/ru;MOOC and courses
JavaScript ES6 Intro - Scrimba Tutorial;https://scrimba.com/p/p7v3gCd/cvk2Jfd;MOOC and courses
Kaggle Mercedes и кросс-валидация / Блог компании Open Data Science / Хабр;https://habr.com/ru/company/ods/blog/336168/;MOOC and courses
Katacoda - Interactive Learning Platform for Software Engineers;https://www.katacoda.com/#;MOOC and courses
Katacoda - Interactive Learning Platform for Software Engineers;https://www.katacoda.com/;MOOC and courses
Khan Academy | Free Online Courses, Lessons & Practice;https://www.khanacademy.org/#statistics;MOOC and courses
Knowledge-Based AI: Cognitive Systems;https://www.udacity.com/course/knowledge-based-ai-cognitive-systems--ud409;MOOC and courses
Learn | freeCodeCamp.org;https://www.freecodecamp.org/learn;MOOC and courses
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 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 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 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
Linear Algebra Refresher Course;https://www.udacity.com/course/linear-algebra-refresher-course--ud953;MOOC and courses
Livestreams | Codecademy;https://www.codecademy.com/learn/livestreams;MOOC and courses
Machine Learning;https://www.udacity.com/course/machine-learning--ud262;MOOC and courses
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 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
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
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
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/;MOOC and courses
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
Neural Networks and Deep Learning — главная | Coursera;https://www.coursera.org/learn/neural-networks-deep-learning/home/welcome;MOOC and courses
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
Open Data Science (ODS.ai);https://ods.ai/;MOOC and courses
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
ossu/computer-science: Path to a free self-taught education in Computer Science!;https://github.com/ossu/computer-science;MOOC and courses
Pandas Tutorial: DataFrames in Python - DataCamp;https://www.datacamp.com/community/tutorials/pandas-tutorial-dataframe-python;MOOC and courses
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
Probabilistic Graphical Models 1: Representation | Coursera;https://www.coursera.org/learn/probabilistic-graphical-models;MOOC and courses
Programming Languages;https://www.udacity.com/course/programming-languages--cs262;MOOC and courses
PY4E - Python for Everybody;https://www.py4e.com/html3/11-regex;MOOC and courses
Python - OOP | Udemy;https://www.udemy.com/course/python-oop/learn/lecture/11878738#overview;MOOC and courses
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 Basics — главная | Coursera;https://www.coursera.org/learn/python-basics/home/info;MOOC and courses
Python for Data Science | edX;https://www.edx.org/course/python-for-data-science-2?source=aw&awc=6798_1531898412_43bdbbbd83e68a090303b818a7c981ed;MOOC and courses
Python for Data Science | edX;https://www.edx.org/course/python-for-data-science-2;MOOC and courses
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-uMbd4yXuF6XDw3mBAVT4Mg;MOOC and courses
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 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 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 Track | Exercism;https://exercism.io/my/tracks/python;MOOC and courses
Python Variables;https://www.w3schools.com/python/python_variables.asp;MOOC and courses
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
Quickstart for Cloud SQL for PostgreSQL | Google Cloud;https://cloud.google.com/sql/docs/postgres/quickstart;MOOC and courses
R Language Playground | Katacoda;https://www.katacoda.com/courses/rlang/playground;MOOC and courses
React - Scrimba Tutorial;https://scrimba.com/p/p7P5Hd/cWKkvVuL;MOOC and courses
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
Regular Expressions Intro - Scrimba Tutorial;https://scrimba.com/p/peyvVAN/c7mweAZ;MOOC and courses
Responsive Images;https://www.udacity.com/course/responsive-images--ud882;MOOC and courses
Rock Paper Scissors - Python Tutorial | Udemy;https://www.udemy.com/course/rock-paper-scissors-python/learn/lecture/4175270#overview;MOOC and courses
Scalable Microservices with Kubernetes;https://www.udacity.com/course/scalable-microservices-with-kubernetes--ud615;MOOC and courses
Scipy Lecture Notes — Scipy lecture notes;https://scipy-lectures.org/;MOOC and courses
Self-Driving Fundamentals: Featuring Apollo;https://www.udacity.com/course/self-driving-car-fundamentals-featuring-apollo--ud0419;MOOC and courses
Sequence Models | Coursera;https://www.coursera.org/learn/nlp-sequence-models;MOOC and courses
Shortest Paths Revisited, NP-Complete Problems and What To Do About Them | Coursera;https://www.coursera.org/learn/algorithms-npcomplete;MOOC and courses
Software Architecture & Design;https://www.udacity.com/course/software-architecture-design--ud821;MOOC and courses
Software Development Methodologies | LEARN;https://learn.by/courses/course-v1:EPAM+SDM+ext1/about;MOOC and courses
Software Development Processes and Methodologies | Coursera;https://www.coursera.org/learn/software-processes;MOOC and courses
Software Testing Introduction (RUS) | LEARN;https://learn.by/courses/course-v1:EPAM+STI+ext/about;MOOC and courses
Spark;https://www.udacity.com/course/learn-spark-at-udacity--ud2002;MOOC and courses
SQL for Data Analysis | Udacity;https://www.udacity.com/course/sql-for-data-analysis--ud198;MOOC and courses
Stanford Engineering Everywhere | CS229 - Machine Learning;https://see.stanford.edu/Course/CS229;MOOC and courses
Structuring Machine Learning Projects | Coursera;https://www.coursera.org/learn/machine-learning-projects?specialization=deep-learning;MOOC and courses
TensorFlow Getting Started using Interactive Browser-Based Labs | Katacoda;https://www.katacoda.com/basiafusinska/courses/tensorflow-getting-started;MOOC and courses
Textbook | Calculus Online Textbook | MIT OpenCourseWare;https://ocw.mit.edu/resources/res-18-001-calculus-online-textbook-spring-2005/textbook/;MOOC and courses
The Bits and Bytes of Computer Networking | Coursera;https://www.coursera.org/learn/computer-networking;MOOC and courses
The Ultimate GIT 5-day Challenge | Udemy;https://www.udemy.com/course/the-ultimate-git-5-day-challenge/learn/lecture/7668630#overview;MOOC and courses
Tick Tock, Tick Tock – Етап 9 – Stepik;https://stepik.org/lesson/26053/step/9?unit=8085;MOOC and courses
Top Coding Interview Questions (Essential to Getting Hired) | Udemy;https://www.udemy.com/course/11-essential-coding-interview-questions/?LSNPUBID=JVFxdTr9V80&ranEAID=JVFxdTr9V80&ranMID=39197&ranSiteID=JVFxdTr9V80-SXOVEmlGNn4OcRAoNiSv9w;MOOC and courses
Try Django 1.11 // Python Web Development | Udemy;https://www.udemy.com/course/try-django-v1-11-python-web-development/learn/lecture/7604588?LSNPUBID=JVFxdTr9V80&components=purchase%2Ccacheable_buy_button%2Cbuy_button%2Crecommendation&ranEAID=JVFxdTr9V80&ranMID=39197&ranSiteID=JVFxdTr9V80-Qsj0.d13.VSGccsgRd1Jnw&persist_locale=&locale=ru_RU#overview;Django
TypeScript: Introduction - Scrimba Tutorial;https://scrimba.com/p/pKwrCg/cEQBWH3;MOOC and courses
Ubuntu Playground | Katacoda;https://www.katacoda.com/courses/ubuntu/playground;MOOC and courses
UI design - Scrimba Tutorial;https://scrimba.com/p/prpYaAy/cEKWgWSN;MOOC and courses
Using Databases with Python | Coursera;https://www.coursera.org/learn/python-databases;MOOC and courses
Version Control with Git;https://www.udacity.com/course/version-control-with-git--ud123;MOOC and courses
Video | Version control with Git | VCG Courseware | LEARN;https://learn.by/courses/course-v1:EPAM+VCG+ext1/courseware/8a58c84fd1d2474b8f69a15171f524ae/59ea97521eb949c2a43dc360eb062fff/1;MOOC and courses
Video Lectures | Introduction to Computer Science and Programming | Electrical Engineering and Computer Science | MIT OpenCourseWare;https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-00-introduction-to-computer-science-and-programming-fall-2008/video-lectures/;MOOC and courses
Video Lectures | 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/video-lectures/;MOOC and courses
Visual Studio Code Playground | vscode | Katacoda;https://www.katacoda.com/courses/vscode/playground;MOOC and courses
Web Application & Software Architecture 101 - Learn Interactively;https://www.educative.io/courses/web-application-software-architecture-101?affiliate_id=5073518643380224;MOOC and courses
Web Design, Business, Technology Classes and Immersives | General Assembly;https://generalassemb.ly/education;MOOC and courses
Web Tooling & Automation;https://www.udacity.com/course/web-tooling-automation--ud892;MOOC and courses
Web-Services Introduction | LEARN;https://learn.by/courses/course-v1:EpamSystems+EPAM_WB_intro+2019_T1/about;MOOC and courses
WebDriver | LEARN;https://learn.by/courses/course-v1:EPAM+WD+ext1/about;MOOC and courses
Website Performance Optimization;https://www.udacity.com/course/website-performance-optimization--ud884;MOOC and courses
Week 2 | Week 2 | CS50 Courseware | edX;https://courses.edx.org/courses/course-v1:HarvardX+CS50+X/courseware/b94adcd6bd6b4e69b2af7eef0d828674/7e8a56384ddf4142a59bb01b65629c52/?child=first;MOOC and courses
Welcome 👋 to Vue.js! - Scrimba Tutorial;https://scrimba.com/p/pZ45Hz/cK8RnSd;MOOC and courses
Алгоритмы | Coursera;https://www.coursera.org/specializations/algorithms;MOOC and courses
Алгоритмы, часть I | Coursera;https://www.coursera.org/learn/algorithms-part1?ranMID=40328&ranEAID=JVFxdTr9V80&ranSiteID=JVFxdTr9V80-cRruDpdyWoRlqNubOm14Tg&siteID=JVFxdTr9V80-cRruDpdyWoRlqNubOm14Tg&utm_content=10&utm_medium=partners&utm_source=linkshare&utm_campaign=JVFxdTr9V80;MOOC and courses
Алгоритмы, часть I | Coursera;https://www.coursera.org/learn/algorithms-part1?siteID=SAyYsTvLiGQ-DWX_zVQKujUOEJDI8HTy7A&utm_content=10&utm_medium=partners&utm_source=linkshare&utm_campaign=SAyYsTvLiGQ;MOOC and courses
Алгоритмы, часть II | Coursera;https://www.coursera.org/learn/algorithms-part2?siteID=SAyYsTvLiGQ-PYOgJJcBycUDIM0OB9WI8Q&utm_content=10&utm_medium=partners&utm_source=linkshare&utm_campaign=SAyYsTvLiGQ;MOOC and courses
Алгоритмы, часть II | Coursera;https://www.coursera.org/learn/algorithms-part2?ranMID=40328&ranEAID=JVFxdTr9V80&ranSiteID=JVFxdTr9V80-izoUUiGPVhA7d3.eGWiVSQ&siteID=JVFxdTr9V80-izoUUiGPVhA7d3.eGWiVSQ&utm_content=10&utm_medium=partners&utm_source=linkshare&utm_campaign=JVFxdTr9V80;MOOC and courses
Аналіз даних та статистичне виведення на мові R | Prometheus;https://courses.prometheus.org.ua/courses/IRF/Stat101/2016_T3/about;MOOC and courses
"Бесплатное учебное руководство по теме ""NumPy"" — Deep Learning Prerequisites: The Numpy Stack in Python | Udemy";https://www.udemy.com/course/deep-learning-prerequisites-the-numpy-stack-in-python/?LSNPUBID=JVFxdTr9V80&ranEAID=JVFxdTr9V80&ranMID=39197&ranSiteID=JVFxdTr9V80-F4KrvYM0rt_cHRD.CbWkBQ;MOOC and courses
"Бесплатное учебное руководство по теме ""Python"" — Learn Python 3.6 for Total Beginners | Udemy";https://www.udemy.com/course/python-3-for-total-beginners/?LSNPUBID=JVFxdTr9V80&ranEAID=JVFxdTr9V80&ranMID=39197&ranSiteID=JVFxdTr9V80-oM2ZIYMnMagUaWggNNt8Tg;MOOC and courses
Введение в математическое мышление | Coursera;https://www.coursera.org/learn/mathematical-thinking;MOOC and courses
Введение в математическое мышление | Coursera;https://www.coursera.org/learn/mathematical-thinking?siteID=SAyYsTvLiGQ-l3O1WTQmZJJNOReT5kSisQ&utm_content=10&utm_medium=partners&utm_source=linkshare&utm_campaign=SAyYsTvLiGQ;MOOC and courses
Введение в науку о данных | Coursera;https://www.coursera.org/specializations/introduction-data-science?ranMID=40328&ranEAID=JVFxdTr9V80&ranSiteID=JVFxdTr9V80-iS2ZFBhzbNlqafIT7kggTA&siteID=JVFxdTr9V80-iS2ZFBhzbNlqafIT7kggTA&utm_content=10&utm_medium=partners&utm_source=linkshare&utm_campaign=JVFxdTr9V80;MOOC and courses
Введение в программирование с MATLAB | Coursera;https://www.coursera.org/learn/matlab?siteID=SAyYsTvLiGQ-LSoMASywYXrg3X7fF_V0eg&utm_content=10&utm_medium=partners&utm_source=linkshare&utm_campaign=SAyYsTvLiGQ;MOOC and courses
Візуалізація даних | Prometheus;https://courses.prometheus.org.ua/courses/IRF/DV101/2016_T3/about;MOOC and courses
Высшая математика для заочников и не только;http://mathprofi.ru/;MOOC and courses
Глубокое обучение | Coursera;https://www.coursera.org/specializations/deep-learning?ranMID=40328&ranEAID=jU79Zysihs4&ranSiteID=jU79Zysihs4-fwKAr.wrG6i1TTP3aAQCmw&siteID=jU79Zysihs4-fwKAr.wrG6i1TTP3aAQCmw&utm_content=10&utm_medium=partners&utm_source=linkshare&utm_campaign=jU79Zysihs4;MOOC and courses
Глубокое обучение | Coursera;https://www.coursera.org/specializations/deep-learning;MOOC and courses
Глубокое обучение | Coursera;https://www.coursera.org/specializations/deep-learning?action=enroll&authMode=signup&utm_campaign=WebsiteCoursesDLSTopButton&utm_medium=institutions&utm_source=deeplearningai;MOOC and courses
Интерактивные курсы — HTML Academy;https://htmlacademy.ru/courses;MOOC and courses
Интерактивные эксперименты с машинным обучением на TensorFlow | DOU;https://dou.ua/forums/topic/30478/?from=comment-digest_topic&utm_source=transactional&utm_medium=email&utm_campaign=digest-comments;MOOC and courses
Інформація про курс CS50 | Prometheus;https://courses.prometheus.org.ua/courses/course-v1:Prometheus+CS50+2019_T1/info;MOOC and courses
Ключевые аспекты разработки на Python - Курсы по программированию;https://ru.hexlet.io/courses/python-development-course;MOOC and courses
Корисні ресурси для програміста (оновив 11 травня 2020) | DOU;https://dou.ua/forums/topic/26544/;MOOC and courses
Курсы по программированию;https://ru.hexlet.io/courses?pricing_type_eq=free;MOOC and courses
Машинне навчання | Prometheus;https://courses.prometheus.org.ua/courses/IRF/ML101/2016_T3/about;MOOC and courses
Машинное обучение | Coursera;https://www.coursera.org/specializations/machine-learning?ranMID=40328&ranEAID=JVFxdTr9V80&ranSiteID=JVFxdTr9V80-3jZBK_BJODd9KiGHawegMg&siteID=JVFxdTr9V80-3jZBK_BJODd9KiGHawegMg&utm_content=10&utm_medium=partners&utm_source=linkshare&utm_campaign=JVFxdTr9V80;MOOC and courses
Машинное обучение | Coursera;https://www.coursera.org/learn/machine-learning?ranMID=40328&ranEAID=JVFxdTr9V80&ranSiteID=JVFxdTr9V80-oESoY8qkZMT.slfFc4HQpw&siteID=JVFxdTr9V80-oESoY8qkZMT.slfFc4HQpw&utm_content=10&utm_medium=partners&utm_source=linkshare&utm_campaign=JVFxdTr9V80;MOOC and courses
Машинное обучение | Coursera;https://www.coursera.org/learn/machine-learning;MOOC and courses
Машинное обучение для людей :: Разбираемся простыми словами :: Блог Вастрик.ру;https://vas3k.ru/blog/machine_learning/;MOOC and courses
Начало;https://compscicenter.ru/courses/python/2015-autumn/classes/1364/;MOOC and courses
Нейронные сети и глубокое обучение | Coursera;https://www.coursera.org/learn/neural-networks-deep-learning?specialization=deep-learning;MOOC and courses
Онлайн-курсы — когда угодно, где угодно | Udemy;https://www.udemy.com/cart/subscribe/course/808422/;MOOC and courses
Онлайн-курсы Computer Science Center;https://compscicenter.ru/online/;MOOC and courses
Основи програмування CS50 2019 | Prometheus;https://courses.prometheus.org.ua/courses/course-v1:Prometheus+CS50+2019_T1/about;MOOC and courses
Основы React.js;https://learn.javascript.ru/screencast/react;MOOC and courses
Основы компьютерных вычислений | Coursera;https://www.coursera.org/specializations/computer-fundamentals;MOOC and courses
Открытый курс машинного обучения. Тема 1. Первичный анализ данных с Pandas / Блог компании Open Data Science / Хабр;https://habr.com/ru/company/ods/blog/322626/;MOOC and courses
Открытый курс машинного обучения. Тема 2: Визуализация данных c Python / Блог компании Open Data Science / Хабр;https://habr.com/ru/company/ods/blog/323210/;MOOC and courses
Открытый курс машинного обучения. Тема 3. Классификация, деревья решений и метод ближайших соседей / Open Data Science corporate blog / Habr;https://habr.com/en/company/ods/blog/322534/#derevo-resheniy;MOOC and courses
Открытый курс машинного обучения. Тема 3. Классификация, деревья решений и метод ближайших соседей / Блог компании Open Data Science / Хабр;https://habr.com/ru/company/ods/blog/322534/;MOOC and courses
Панель курсів | Prometheus;https://courses.prometheus.org.ua/dashboard;MOOC and courses
Практическое компьютерное обучение | Coursera;https://www.coursera.org/learn/practical-machine-learning?courseSlug=practical-machine-learning&showOnboardingModal=true&siteID=SAyYsTvLiGQ-AiRobBFiNhOX2__wxKDUBg&utm_campaign=SAyYsTvLiGQ&utm_content=10&utm_medium=partners&utm_source=linkshare;MOOC and courses
Прикладная наука о данных с Python | Coursera;https://www.coursera.org/specializations/data-science-python;MOOC and courses
Программирование мобильных приложений для портативных систем на базе Android: Часть 1 | Coursera;https://www.coursera.org/learn/android-programming?siteID=SAyYsTvLiGQ-6PCL2eb.Bt6eXiifkJCcxQ&utm_content=10&utm_medium=partners&utm_source=linkshare&utm_campaign=SAyYsTvLiGQ;MOOC and courses
Программирование мобильных приложений для портативных систем на базе Android: Часть 2 | Coursera;https://www.coursera.org/learn/android-programming-2?siteID=SAyYsTvLiGQ-4lrOStZNI5FfHqS0bB2sVg&utm_content=10&utm_medium=partners&utm_source=linkshare&utm_campaign=SAyYsTvLiGQ;MOOC and courses
Программирование на Python | Coursera;https://www.coursera.org/specializations/programming-in-python;MOOC and courses
Профессиональная сертификация 'Google IT Automation with Python' | Coursera;https://www.coursera.org/professional-certificates/google-it-automation?ranMID=40328&ranEAID=JVFxdTr9V80&ranSiteID=JVFxdTr9V80-2G2cp1Grl76lCbmcds.8.A&siteID=JVFxdTr9V80-2G2cp1Grl76lCbmcds.8.A&utm_content=10&utm_medium=partners&utm_source=linkshare&utm_campaign=JVFxdTr9V80;MOOC and courses
Разведочный анализ данных | Coursera;https://www.coursera.org/learn/exploratory-data-analysis?siteID=SAyYsTvLiGQ-a6bPdq0USJFLoTVZMMv8Fw&utm_content=10&utm_medium=partners&utm_source=linkshare&utm_campaign=SAyYsTvLiGQ;MOOC and courses
Разработка и проектирование адаптивных веб-сайтов | Coursera;https://www.coursera.org/specializations/website-development?recoOrder=8&utm_medium=email&utm_source=recommendations&utm_campaign=recommendationsEmail~recs_email~2020-03-30;MOOC and courses
Рефакторинг и Паттерны проектирования;https://refactoring.guru/ru;MOOC and courses
Розробка та аналіз алгоритмів. Частина 1 | Prometheus;https://edx.prometheus.org.ua/courses/KPI/Algorithms101/2015_Spring/about;MOOC and courses
Скринкаст по Angular;https://learn.javascript.ru/screencast/angular;MOOC and courses
Скринкаст по Gulp;https://learn.javascript.ru/screencast/gulp;MOOC and courses
Скринкаст по Node.JS;https://learn.javascript.ru/screencast/nodejs;MOOC and courses
Скринкаст по Webpack;https://learn.javascript.ru/screencast/webpack;MOOC and courses
Современный учебник JavaScript;https://learn.javascript.ru/;MOOC and courses
Структуры данных в Python | Coursera;https://www.coursera.org/learn/python-data?siteID=SAyYsTvLiGQ-MOrZ7pDRePyazJCxqmOixQ&utm_content=10&utm_medium=partners&utm_source=linkshare&utm_campaign=SAyYsTvLiGQ;MOOC and courses
Структуры и алгоритмы данных | Coursera;https://www.coursera.org/specializations/data-structures-algorithms;MOOC and courses
Теория вероятностей для начинающих | Coursera;https://www.coursera.org/learn/probability-theory-basics;MOOC and courses
Теория игр | Coursera;https://www.coursera.org/learn/game-theory-1;MOOC and courses
Уроки по Python для начинающих и программистов ~ PythonRu;https://pythonru.com/uroki;MOOC and courses
Учимся программировать: основы | Coursera;https://www.coursera.org/learn/learn-to-program?siteID=SAyYsTvLiGQ-CjJZj4Z4fjD5yiEYr0tQUA&utm_content=10&utm_medium=partners&utm_source=linkshare&utm_campaign=SAyYsTvLiGQ;MOOC and courses
Функции - Московский физико-технический институт, Mail.Ru Group & ФРОО | Coursera;https://www.coursera.org/learn/diving-in-python/lecture/JwQvv/funktsii;MOOC and courses
Язык программирования JavaScript;https://learn.javascript.ru/js;MOOC and courses
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)
arXiv.org e-Print archive;https://arxiv.org/;Online education (others)
Code Basics: основы программирования на Javascript;https://ru.code-basics.com/languages/javascript;Online education (others)
CoderNet Портал для помощи программистам | CoderNet;https://codernet.ru/;Online education (others)
CS61C Spring 2015: Great Ideas in Computer Architecture (Machine Structures);http://inst.eecs.berkeley.edu/~cs61c/sp15/;Online education (others)
cs184/284a;https://cs184.eecs.berkeley.edu/sp20;Online education (others)
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)
DevOps Tools: Online Courses, Training and Tutorials on LinkedIn Learning;https://www.linkedin.com/learning/topics/devops-tools;Online education (others)
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-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)
jonathan-bower/DataScienceResources: Open Source Data Science Resources.;https://github.com/jonathan-bower/DataScienceResources;Online education (others)
kanaka/mal: mal - Make a Lisp;https://github.com/kanaka/mal;Online education (others)
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)
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)
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)
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)
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)
Operating Systems: Three Easy Pieces;http://pages.cs.wisc.edu/~remzi/OSTEP/;Online education (others)
Programming – Towards Data Science;https://towardsdatascience.com/programming/home;Online education (others)
PyVideo.org;https://pyvideo.org/;Online education (others)
Skiena's Audio Lectures;http://www3.cs.stonybrook.edu/~algorith/video-lectures/;Online education (others)
Solve Easy Unpack - Py.CheckiO;https://py.checkio.org/mission/easy-unpack/solve/;Online education (others)
The Best Python Tutorials;https://www.freecodecamp.org/news/best-python-tutorial/;Online education (others)
Web | Google Developers;https://developers.google.com/web;Online education (others)
Why every Data Scientist should use Dask? - Towards Data Science;https://towardsdatascience.com/why-every-data-scientist-should-use-dask-81b2b850e15b;Online education (others)
Открытый курс машинного обучения. Тема 1. Первичный анализ данных с Pandas / Хабр;https://m.habr.com/ru/company/ods/blog/322626/;Online education (others)
Упражнения по SQL;http://www.sql-ex.ru/index.php;Online education (others)
(1) Python;https://www.reddit.com/r/Python/;Project examples for Junior
5 Cool Python Project Ideas For Inspiration | Hacker Noon;https://hackernoon.com/5-cool-python-project-ideas-for-inspiration-sr44367v;Project examples for Junior
6 Python Projects For Beginners | Codementor;https://www.codementor.io/@ilyaas97/6-python-projects-for-beginners-yn3va03fs;Project examples for Junior
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
10 Data Science Projects – Dataquest;https://www.dataquest.io/blog/10-data-science-projects-join/;Project examples for Junior
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
13 Project Ideas for Intermediate Python Developers – Real Python;https://realpython.com/intermediate-python-project-ideas/;Project examples for Junior
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
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
CodeProject - For those who code;https://www.codeproject.com/;Project examples for Junior
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
karan/Projects: A list of practical projects that anyone can solve in any programming language.;https://github.com/karan/Projects;Project examples for Junior
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
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
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
Neural Network Embedding Recommendation System | Kaggle;https://www.kaggle.com/willkoehrsen/neural-network-embedding-recommendation-system;Project examples for Junior
Project 1 - CS50's Web Programming with Python and JavaScript;https://cs50.harvard.edu/web/2020/projects/1/;Project examples for Junior
Python Project Ideas for Final Year, Python Project Help;https://instanteduhelp.com/python-project-ideas-final-year-engineering-students/;Project examples for Junior
Search - CS50's Web Programming with Python and JavaScript;https://cs50.harvard.edu/web/2020/projects/0/search/;Project examples for Junior
Top 9 Data Science Projects for a Beginner in 2020 - Towards Data Science;https://towardsdatascience.com/top-9-data-science-projects-for-a-beginner-in-2020-26eb7d42b116;Project examples for Junior
Top Python Projects | Easy, Intermediate And Advanced Python Projects | Edureka;https://www.edureka.co/blog/python-projects/;Project examples for Junior