Improving Django View Performance with Async Support | NextLink Labs
https://nextlinklabs.com/insights/django-async-views-improves-API-calls
https://nextlinklabs.com/insights/django-async-views-improves-API-calls
Nextlinklabs
Improving Django View Performance with Async Support | NextLink Labs
Django 3.1 provides support for asynchronous views, allowing developers to make signifcant performance improvements.
https://www.cprime.com/resources/blog/the-7-best-git-tutorials-to-get-you-started-quickly/
https://medium.com/javarevisited/7-best-courses-to-master-git-and-github-for-programmers-d671859a68b2
https://medium.com/javarevisited/7-best-courses-to-master-git-and-github-for-programmers-d671859a68b2
Cprime
The 7 Best Git Tutorials to Get You Started Quickly
Git is one of the most popular open-source version control systems. In this blog, we discuss the 7 best Git tutorials to help you get started today!
pyodide/pyodide: Python with the scientific stack, compiled to WebAssembly.
https://github.com/pyodide/pyodide
https://github.com/pyodide/pyodide
GitHub
GitHub - pyodide/pyodide: Pyodide is a Python distribution for the browser and Node.js based on WebAssembly
Pyodide is a Python distribution for the browser and Node.js based on WebAssembly - pyodide/pyodide
ترفندهای برنامهنویسی
دوستانی که ویندوز دارین استفاده میکنید یه سری تنظمیات هستن میتونید انجام بدین و یکمی پاورشل رو بهتر کنید. ویدئو اخر دورهی وبسایت چند زبانه با جنگو، خودم ویندوز داشتم و ترمینالم پاورشل بود که این تنظمیات رو داشته: اون فونت رو نصب میکنید، تا شکلکهای powerline…
سلام
پستی دربارهی دستکاری و ارتقای حالت پیشفرض پاورشل در ویندوز داشتم.
توی این لینک کمی بیشتر همون مطلب رو توضیح دادم و امیدوارم مورد استفاده قرار بگیره.
لطفا ستاره هم یادتون نره🙏🏻.
آیدی کانال👇:
programming_tricks
https://gist.github.com/mh-firouzjaah/2548513a8a842d532bfb10346f8f5db0
پستی دربارهی دستکاری و ارتقای حالت پیشفرض پاورشل در ویندوز داشتم.
توی این لینک کمی بیشتر همون مطلب رو توضیح دادم و امیدوارم مورد استفاده قرار بگیره.
لطفا ستاره هم یادتون نره🙏🏻.
آیدی کانال👇:
programming_tricks
https://gist.github.com/mh-firouzjaah/2548513a8a842d532bfb10346f8f5db0
Gist
how to add zsh-like theme and feature to windows powershell
how to add zsh-like theme and feature to windows powershell - better_powershell.md
6 Tips To Make Python Code Run Incredibly Faster | by Pralabh Saxena | May, 2021 | Better Programming
https://betterprogramming.pub/6-tips-to-make-python-code-run-incredibly-faster-932db815c3a8
https://betterprogramming.pub/6-tips-to-make-python-code-run-incredibly-faster-932db815c3a8
Medium
6 Tips To Make Python Code Run Incredibly Faster
Speed up your Python code
10 Platforms to Help Level Up Your Frontend Development Skills
https://dev.to/goodiec/10-platforms-to-help-level-up-your-frontend-development-skills-455p
https://dev.to/goodiec/10-platforms-to-help-level-up-your-frontend-development-skills-455p
DEV Community
10 Platforms to Help Level Up Your Frontend Development Skills
This article lists out some great platforms for practicing and improving your frontend development skills.
Python could become 5x faster. What would it mean for finance? | eFinancialCareers
https://www.efinancialcareers.com/news/2021/06/python-made-faster-use-in-finance
https://www.efinancialcareers.com/news/2021/06/python-made-faster-use-in-finance
eFinancialCareers
Python could become 5x faster. What would it mean for finance?
If anything it might encourage users to switch to alternatives.
5 projects to master Front End Development - DEV Community
https://dev.to/ruppysuppy/5-projects-to-master-front-end-development-57p
https://dev.to/ruppysuppy/5-projects-to-master-front-end-development-57p
DEV Community
5 projects to master Front End Development
If you are starting on the journey to becoming a Front End Developer, once you get the basics down,...
How to have an awesome GitHub profile ? - DEV Community
https://dev.to/supritha/how-to-have-an-awesome-github-profile-1969
https://dev.to/supritha/how-to-have-an-awesome-github-profile-1969
DEV Community
How to have an awesome GitHub profile ?
Get Started! Customize your Readme.md on your GitHub profile to make it look attractive by...
Note: In Python 2.x, filter() returns list objects. This behavior changed in Python 3.x. Now the function returns a filter object, which is an iterator that yields items on demand. Python iterators are well known to be memory efficient.
Note There is a subtlety when the sequence is being modified by the loop (this can only occur for mutable sequences, e.g. lists). An internal counter is used to keep track of which item is used next, and this is incremented on each iteration. When this counter has reached the length of the sequence the loop terminates. This means that if the suite deletes the current (or a previous) item from the sequence, the next item will be skipped (since it gets the index of the current item which has already been treated). Likewise, if the suite inserts an item in the sequence before the current item, the current item will be treated again the next time through the loop. This can lead to nasty bugs that can be avoided by making a temporary copy using a slice of the whole sequence, e.g.,
for x in a[:]:
if x < 0: a.remove(x)
Basic and Full-text Search with Django and Postgres | TestDriven.io
https://testdriven.io/blog/django-search/
https://testdriven.io/blog/django-search/
testdriven.io
Basic and Full-text Search with Django and Postgres
This tutorial looks at how to add basic and full-text search to a Django app with Postgres.
How to use Svelte Kit with Tailwind CSS/JIT (Just-in-time Compilation) | by Glory Katende | Jun, 2021 | Level Up Coding
https://levelup.gitconnected.com/how-to-use-svelte-kit-with-tailwind-css-jit-just-in-time-compilation-bc04c0c9ec17
https://levelup.gitconnected.com/how-to-use-svelte-kit-with-tailwind-css-jit-just-in-time-compilation-bc04c0c9ec17
Medium
How to use Svelte Kit with Tailwind CSS/JIT (Just-in-time Compilation)
The much-awaited Sveltekit is finally here, and it’s just as amazing as we thought it would be! it brings so many new cool features and…
Django Authentication System - Tutorial for Beginners - DEV Community
https://dev.to/sm0ke/django-authentication-system-4ha9
https://dev.to/sm0ke/django-authentication-system-4ha9
DEV Community
Django Authentication System - Tutorial for Beginners
Learn how to manage users in Django with ease - tutorial for beginners.
Faster Python programming: How these developers built Pyston, and where it goes next - TechRepublic
https://www.techrepublic.com/article/faster-python-programming-how-these-developers-built-pyston-and-where-it-goes-next/
https://www.techrepublic.com/article/faster-python-programming-how-these-developers-built-pyston-and-where-it-goes-next/
TechRepublic
Faster Python programming: How these developers built Pyston, and where it goes next
Python implementation Pyston aims to speed up the programming language's code for web applications. Creator Kevin Modzelewski tells TechRepublic where the project is heading next.
20 Figma Plugins and Tools to Boost your Design Workflow
https://www.awwwards.com/20-figma-plugins-and-tools-to-boost-your-design-workflow.html
https://www.awwwards.com/20-figma-plugins-and-tools-to-boost-your-design-workflow.html
Awwwards
20 Figma Plugins and Tools to Boost your Design Workflow
<h2><b>Figma</b> is an excellent tool for designing interfaces, and the one of the best things about it is the enormous community behind it, providing a continuous flow of great resources such as templates,...
Lei Mao's Log Book – Python AsyncIO: Asynchronous IO
https://leimao.github.io/blog/Python-AsyncIO-Asynchronous-IO/
https://leimao.github.io/blog/Python-AsyncIO-Asynchronous-IO/
Lei Mao's Log Book
Python AsyncIO: Asynchronous IO
The Key to the Success of Single-Thread Asynchronous Application
17 Linux commands every sysadmin should know | Enable Sysadmin
https://www.redhat.com/sysadmin/linux-commands-to-know
https://www.redhat.com/sysadmin/linux-commands-to-know
Enable Sysadmin
17 Linux commands every sysadmin should know
Get out your notepad, here is a huge list of commands that every Linux sysadmin needs to know.
سلام دوستان، دوتا عکس از یک کد براتون میفرستم، ببخشید که تایپش نکردم.
سه تا پکیج هست نصب میکنید
بعد عکس دیگری کدهای داخل یه فایل sh. هست. اونم بنویسید و ذخیره کنید
بعد از توی دسکتاپ مثلا sytemsettings5 برای kde یا ستینگز گنوم یک کیبورد شورتکات اختصاص میدین که با زدنش اسکریپت نوشته شده (یعنی همین فایل) اجرا بشه.
حالا این چی هست؟ این یک پاپآپ باز میکنه که آخرین متنی که کپی کرده باشین و توی کلیپبوردتون باشه رو براتون با استفاده از گوگلترنسلیت ترجمه میکنه😄. یعنی یه متن رو انتخاب میکنید کنترل+سی و بعد شورتکات خودتون رو بزنید ترجمهش رو میبینید
سه تا پکیج هست نصب میکنید
بعد عکس دیگری کدهای داخل یه فایل sh. هست. اونم بنویسید و ذخیره کنید
بعد از توی دسکتاپ مثلا sytemsettings5 برای kde یا ستینگز گنوم یک کیبورد شورتکات اختصاص میدین که با زدنش اسکریپت نوشته شده (یعنی همین فایل) اجرا بشه.
حالا این چی هست؟ این یک پاپآپ باز میکنه که آخرین متنی که کپی کرده باشین و توی کلیپبوردتون باشه رو براتون با استفاده از گوگلترنسلیت ترجمه میکنه😄. یعنی یه متن رو انتخاب میکنید کنترل+سی و بعد شورتکات خودتون رو بزنید ترجمهش رو میبینید