Дорогие друзья!
После того, как #YouTube заблокировал наш канал, мы долго переживали, но все же решили создать новый канал.
Подписывайтесь, оставляйте свои комментарии и советуйте друзьям.
Милости просим:
https://www.youtube.com/@Pasashgroup
#пасаш
#рок
#ютьюб
#эйрокер
Frontend interviewlarga tayyorgarlik
Suhbatlarga tayyorgarlik ko'rayotganda odatda quyidagi resurslardan foydalanaman, o'ylaymanki foydali bo'ladi bilmaganlar uchun.
Foydali linklar 🔗
Coding savollari va qo'shimchalar:
https://bigfrontend.dev/
JavaScriptdan outputlarni topish bo'yicha savollar (men eng qiynaladigan qismim 😬):
https://github.com/lydiahallie/javascript-questions
Frontend intervyu savollari, deyarli barcha yo'nalishlar bo'yicha (Rus tilida):
https://github.com/YauhenKavalchuk/interview-questions?tab=readme-ov-file
JavaScript intevyu savollari:
https://github.com/sudheerj/javascript-interview-questions
React intervyu savollari:
https://github.com/sudheerj/reactjs-interview-questions
System design va Tier 1 kompaniyalarda tushadigan savollar:
https://www.frontendinterviewhandbook.com/
https://www.greatfrontend.com/
Men ham yaqin orada JoshDeveloper va shahzodcodes o'tkazayotgan interviewlarda chiqib qolsam ajabmas 🌚
P.S. Sharing is caring, foydali bo'lsa, ulashing 😉
#foydali#useful#resources#links
@khumoyun_codes
https://github.com/sourcesimian/pyTelegramBotAPI
An implementation of the #Telegram#Bot#API messages and some simple #clients.
Used by:
txTelegramBot - An easily customisable bot written in Twisted Python3.
YouTube удалил 30 тысяч видео с COVID-дезинформацией
И это только за последние полгода, заявила Axios представитель платформы Елена Эрнандес. Если считать с февраля 2020-го, то число составляет 800 тысяч.
Видео сначала помечаются либо системами искусственного интеллекта компании, либо рецензентами-людьми, а затем проходят проверку на другом уровне, после чего аккаунты-нарушители получают предупреждение и могут быть заблокированы.
По мнению обозревателя, очень важно то, что платформы вообще раскрывают такие цифры, но ещё ценнее знать, в каких масштабах дезинформация НЕ улавливается.
#новости#инфовойны#YouTube#фейки#дезинформация#коронавирус
Film on online education during lockdown released on YouTube - #Online#Education#YouTube#Film - https://www.tribuneindia.com/news/himachal/film-on-online-education-during-lockdown-released-on-youtube-237456
https://online.dr-chuck.com/about.php
This is the web site of the "University of Dr. Chuck". I teach a number of free/online/open courses based on free and open materials and this site is the course catalog for my free courses.
#learn#python
https://python.swaroopch.com/
A Byte of #Python
"A Byte of Python" is a free book on programming using the Python language. It serves as a tutorial or guide to the Python language for a beginner audience. If all you know about computers is how to save text files, then this is the book for you.
#learn
https://intellipaat.com/tutorial/python-tutorial/
This #Python free tutorial is for beginners as an introduction to learn this powerful programming language.
#learn
# In Python 3.4+ you can use
# contextlib.suppress() to selectively
# ignore specific exceptions:
import contextlib
with contextlib.suppress(FileNotFoundError):
os.remove('somefile.tmp')
# This is equivalent to:
try:
os.remove('somefile.tmp')
except FileNotFoundError:
pass
# contextlib.suppress docstring:
#
# "Return a context manager that suppresses any
# of the specified exceptions if they occur in the body
# of a with statement and then resumes execution with
# the first statement following the end of
# the with statement."
#python#learn