Python Project – How to Build Tony Stark's JARVIS with Python
https://www.freecodecamp.org/news/python-project-how-to-build-your-own-jarvis-using-python/
https://www.freecodecamp.org/news/python-project-how-to-build-your-own-jarvis-using-python/
freeCodeCamp.org
Python Project – How to Build Tony Stark's JARVIS with Python
Do you remember J.A.R.V.I.S., Tony Stark's virtual personal assistant? If you've seen any of the Ironman or Avengers movies, I'm sure you do. Have you ever wondered whether you could create your own personal assistant? Yes? Tony Stark can help us wit...
A Complete 26 Week Course to Learn Python for Data Science in 2022 | by Frank Andrade | Dec, 2021 | Towards Data Science
https://towardsdatascience.com/a-complete-26-week-course-to-learn-python-for-data-science-in-2022-e95b67551df4
https://towardsdatascience.com/a-complete-26-week-course-to-learn-python-for-data-science-in-2022-e95b67551df4
Medium
A Complete 26 Week Course to Learn Python for Data Science in 2022
Learn most of the Python stuff you need for data science in 26 weeks
Top 25 websites for coding challenge and competition [Updated for 2021] | By Benedict Neo | Towards Data Science
https://towardsdatascience.com/top-20-websites-for-coding-challenge-and-competition-in-2020-f667089a5b47
https://towardsdatascience.com/top-20-websites-for-coding-challenge-and-competition-in-2020-f667089a5b47
Medium
Top 25 websites for coding challenge and competition [Updated for 2021]
Here is my list of the best websites for coding challenges and competitions to practice coding.
7 Best Coding Challenge Websites in 2020 - GeeksforGeeks
https://www.geeksforgeeks.org/7-best-coding-challenge-websites-in-2020/
https://www.geeksforgeeks.org/7-best-coding-challenge-websites-in-2020/
GeeksforGeeks
Top 10 Coding Platforms to Enhance Your Coding Skills in 2025 - GeeksforGeeks
Your All-in-One Learning Portal: GeeksforGeeks is a comprehensive educational platform that empowers learners across domains-spanning computer science and programming, school education, upskilling, commerce, software tools, competitive exams, and more.
10 Exciting Python GUI Projects & Topics For Beginners [2021] | upGrad blog
https://www.upgrad.com/blog/python-gui-projects-project-ideas-for-beginners/
https://www.upgrad.com/blog/python-gui-projects-project-ideas-for-beginners/
upGrad blog
25+ Python GUI Projects to Up Your Programming Skills
Learn everything about Python GUI projects with this comprehensive guide. Master Tkinter, enhance functionality and create dynamic, user-friendly applications.
ترفندهای برنامهنویسی
blog.bjrn.se: Lexicographic permutations using Algorithm L (STL next_permutation in Python) http://blog.bjrn.se/2008/04/lexicographic-permutations-using.html?m=1
def next_promutation(li: list) -> list:
"""returns next promutation of a given list"""
j = -2
while True:
if li[j+1] < li[j]:
j -= 1
if j == 0:
break
else:
break
lii, liii = li[:j+1], li[j+1:]
m = -1
while True:
if liii[m] < lii[-1]:
m -= 1
else:
lii[-1], liii[m] = liii[m], lii[-1]
break
liii = sorted(liii)
return lii + liii
"""returns next promutation of a given list"""
j = -2
while True:
if li[j+1] < li[j]:
j -= 1
if j == 0:
break
else:
break
lii, liii = li[:j+1], li[j+1:]
m = -1
while True:
if liii[m] < lii[-1]:
m -= 1
else:
lii[-1], liii[m] = liii[m], lii[-1]
break
liii = sorted(liii)
return lii + liii
Forwarded from کتابخانه مهندسی کامپیوتر و پایتون via @chToolsBot
آموزش طراحی قالب سایت با html-css bootstrap
مدرس: مهدی عباسی
منبع: درسمن
➖➖➖➖
🔅هشتگ ها را در کانال دنبال کنید 👇
#طراحی_سایت #جاوااسکریپت
#html #Css #JavaScript
🆔 @Max_Academy
مدرس: مهدی عباسی
منبع: درسمن
➖➖➖➖
🔅هشتگ ها را در کانال دنبال کنید 👇
#طراحی_سایت #جاوااسکریپت
#html #Css #JavaScript
🆔 @Max_Academy
سلام دوستان گرامی
یه تغییر جدید توی ویاسکد که تازه از وجودش مطلع شدم افزودهشدن bracketPairColorization به صورت native هست که بعضیا مثل خودم از این خوشمون میاد و تا قبل از این باید براش افزونهی جدگانه نصب میکردیم ولی همونطور که میدونید سرعت اون افزونهها خوب نبود و باز اضافی بودن.
الان این مشکل حل شده و تنظیمات لازم رو براتون قرار میدم:
تا ۶ رنگ مختلف برای ۶ لول نستد رو میتونید تنظیم کنید و همچنین میتونید جفتتگهای مدنظرخودتون رو لیست کنید.
یه تغییر جدید توی ویاسکد که تازه از وجودش مطلع شدم افزودهشدن bracketPairColorization به صورت native هست که بعضیا مثل خودم از این خوشمون میاد و تا قبل از این باید براش افزونهی جدگانه نصب میکردیم ولی همونطور که میدونید سرعت اون افزونهها خوب نبود و باز اضافی بودن.
الان این مشکل حل شده و تنظیمات لازم رو براتون قرار میدم:
تا ۶ رنگ مختلف برای ۶ لول نستد رو میتونید تنظیم کنید و همچنین میتونید جفتتگهای مدنظرخودتون رو لیست کنید.
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": "active",
"editor.language.colorizedBracketPairs": [["{%","%}"],["{{","}}"],["{","}"],["(",")"],["[","]"],["<",">"],["<","/>"],["</",">"]],
"editor.matchBrackets": "always",
"workbench.colorCustomizations": {
"editorBracketHighlight.foreground1": "#81a2be",
"editorBracketHighlight.foreground2": "#de935f",
"editorBracketHighlight.foreground3": "#c172d9",
"editorBracketHighlight.foreground4": "#4fb1bc",
"editorBracketHighlight.foreground5": "#97c26c",
"editorBracketHighlight.foreground6": "#b294bb",
"editorBracketHighlight.unexpectedBracket.foreground": "#db6165",
},
https://t.me/programming_tricksTop 7 Skills to Get Hired in Data Science in 2022
https://www.r-bloggers.com/2021/12/top-7-skills-to-get-hired-in-data-science-in-2022/
https://www.r-bloggers.com/2021/12/top-7-skills-to-get-hired-in-data-science-in-2022/
R-bloggers
Top 7 Skills to Get Hired in Data Science in 2022
<div style = "width:60%; display: inline-block; float:left; "> If you want to know how to get hired in data science, you’re in luck. We’ve prepared a complete guide on the 7 skills you need to land your first job or internship. These also apply if you’re…
Host Your Django Project on Heroku – Real Python
https://realpython.com/courses/host-your-django-project-on-heroku/
https://realpython.com/courses/host-your-django-project-on-heroku/
Realpython
Host Your Django Project on Heroku – Real Python
In this course, you'll learn how to host your Django project in the cloud for free and with little hassle. You'll use Heroku, which takes the burden of infrastructure management off your shoulders.