Optimizing Django Rest Framework - fix the n+1 problem!
The N+1 problem is a common issue that can occur when using the Django REST framework serializer. It happens when the code makes multiple database queries to retrieve related data, instead of using a single query with a JOIN statement. This can signi...
Read: https://ahmadsalah.com/optimizing-django-rest-framework-fix-the-n1-problem
The N+1 problem is a common issue that can occur when using the Django REST framework serializer. It happens when the code makes multiple database queries to retrieve related data, instead of using a single query with a JOIN statement. This can signi...
Read: https://ahmadsalah.com/optimizing-django-rest-framework-fix-the-n1-problem
Building a To-Do List App with Django
To-do list applications are essential tools that improve our productivity and help us keep track of important tasks. In this tutorial, we will go through the steps involved in building a to-do list application using Django. Django is a high-level web...
Read: https://mrtechblogs.hashnode.dev/building-a-to-do-list-app-with-django
To-do list applications are essential tools that improve our productivity and help us keep track of important tasks. In this tutorial, we will go through the steps involved in building a to-do list application using Django. Django is a high-level web...
Read: https://mrtechblogs.hashnode.dev/building-a-to-do-list-app-with-django
A quick guide to building a high-performant Django app
Creating a Django application that performs well can be difficult, especially when handling big amounts of data and high traffic. In this post, we'll look at several key methods and best practices for enhancing the functionality of your Django app. T...
Read: https://glorykolade.hashnode.dev/a-quick-guide-to-building-a-high-performant-django-app
Creating a Django application that performs well can be difficult, especially when handling big amounts of data and high traffic. In this post, we'll look at several key methods and best practices for enhancing the functionality of your Django app. T...
Read: https://glorykolade.hashnode.dev/a-quick-guide-to-building-a-high-performant-django-app
6 Best Security Features for Building Secure Web Applications With Django
The Django framework is robust, open-source, and well-liked, frequently used to create secure and scalable web applications. For every application, security is one of the main issues, and Django has several features built in to assist engineers in ma...
Read: https://winsay.hashnode.dev/6-best-security-features-for-building-secure-web-applications-with-django
The Django framework is robust, open-source, and well-liked, frequently used to create secure and scalable web applications. For every application, security is one of the main issues, and Django has several features built in to assist engineers in ma...
Read: https://winsay.hashnode.dev/6-best-security-features-for-building-secure-web-applications-with-django
Django vs. Ruby on Rails: Which Framework is Better
Originally published at Shakuro.com
Web development frameworks offer a wide range of options in the programming world. The choice of the best one frequently depends on the knowledge and experience of the developer. Additionally, it may affect the pro...
Read: https://shakuro.hashnode.dev/django-vs-ruby-on-rails-which-framework-is-better
Originally published at Shakuro.com
Web development frameworks offer a wide range of options in the programming world. The choice of the best one frequently depends on the knowledge and experience of the developer. Additionally, it may affect the pro...
Read: https://shakuro.hashnode.dev/django-vs-ruby-on-rails-which-framework-is-better
Leveraging Developer Community as a Tool for effective Networking
Hello Team, my name is Dennis Mutai and I am a full-stack web developer with a Certificate in Full Stack Web Development. With experience in HTML, CSS, Angular, JavaScript, Django, and Python, I am a skilled coder who takes pride in writing efficient...
Read: https://abul.hashnode.dev/leveraging-developer-community-as-a-tool-for-effective-networking
Hello Team, my name is Dennis Mutai and I am a full-stack web developer with a Certificate in Full Stack Web Development. With experience in HTML, CSS, Angular, JavaScript, Django, and Python, I am a skilled coder who takes pride in writing efficient...
Read: https://abul.hashnode.dev/leveraging-developer-community-as-a-tool-for-effective-networking
Laravel vs Django
Introduction
Django and Laravel are both popular web frameworks used for developing web applications. While both of these frameworks have their strengths and weaknesses, they are both great choices for building web applications. In this article, we w...
Read: https://ologescript.hashnode.dev/laravel-vs-django
Introduction
Django and Laravel are both popular web frameworks used for developing web applications. While both of these frameworks have their strengths and weaknesses, they are both great choices for building web applications. In this article, we w...
Read: https://ologescript.hashnode.dev/laravel-vs-django
Django Media Files
In Django, media files can be defined as those files which are uploaded by the users. For examples:
Profile Picture uploads
File Uploads and many more ...
Configurations
On our Django settings settings.py we add MEDIA_URL and MEDIA_ROOT settings
ME...
Read: https://djangotherightway.com/django-media-files
In Django, media files can be defined as those files which are uploaded by the users. For examples:
Profile Picture uploads
File Uploads and many more ...
Configurations
On our Django settings settings.py we add MEDIA_URL and MEDIA_ROOT settings
ME...
Read: https://djangotherightway.com/django-media-files
Django Folder Structure
The Django folder structure is a standard way to organize files and directories within a Django project. At the root level, there are typically files like manage.py and settings.py, which define project settings and configurations. A basic folder str...
Read: https://pythonislove.com/django-folder-structure
The Django folder structure is a standard way to organize files and directories within a Django project. At the root level, there are typically files like manage.py and settings.py, which define project settings and configurations. A basic folder str...
Read: https://pythonislove.com/django-folder-structure
6 Best Security Features of Django for Building Secure Web Applications
The Django framework is robust, open-source, and well-liked, frequently used to create secure and scalable web applications. For every application, security is one of the main issues, and Django has several features built in to assist engineers in ma...
Read: https://winsay.hashnode.dev/6-best-security-features-of-django-for-building-secure-web-applications
The Django framework is robust, open-source, and well-liked, frequently used to create secure and scalable web applications. For every application, security is one of the main issues, and Django has several features built in to assist engineers in ma...
Read: https://winsay.hashnode.dev/6-best-security-features-of-django-for-building-secure-web-applications
Deploying Django with PostgreSQL on Vercel
Welcome to the world of web application deployment🚀 and my first blog 🤗!
In this blog, we will walk through the steps involved in deploying a Django application on Vercel, from start to finish. Whether you're a seasoned developer or just starting, ...
Read: https://omavhad.hashnode.dev/deploying-django-with-postgresql-on-vercel
Welcome to the world of web application deployment🚀 and my first blog 🤗!
In this blog, we will walk through the steps involved in deploying a Django application on Vercel, from start to finish. Whether you're a seasoned developer or just starting, ...
Read: https://omavhad.hashnode.dev/deploying-django-with-postgresql-on-vercel
❤2
Learn How to Create a CI Pipeline for Your Django Application
Continuous Integration (CI) has become an integral part of the software development process, allowing developers to automate testing, building, and deployment of their applications. CI helps to catch bugs and errors early in the development process, ...
Read: https://pavanbelagatti.hashnode.dev/learn-how-to-create-a-ci-pipeline-for-your-django-application
Continuous Integration (CI) has become an integral part of the software development process, allowing developers to automate testing, building, and deployment of their applications. CI helps to catch bugs and errors early in the development process, ...
Read: https://pavanbelagatti.hashnode.dev/learn-how-to-create-a-ci-pipeline-for-your-django-application
👍2
Django how to set up Apache to run with virtualhost
Prerequisites
Django and python need to be already installed on the server
Set up the django environment
The first we need to do is to set up our Django environment then we need to set up a virtual environment where we can install Django. In there we...
Read: https://tempcoder.hashnode.dev/django-how-to-set-up-apache-to-run-with-virtualhost
Prerequisites
Django and python need to be already installed on the server
Set up the django environment
The first we need to do is to set up our Django environment then we need to set up a virtual environment where we can install Django. In there we...
Read: https://tempcoder.hashnode.dev/django-how-to-set-up-apache-to-run-with-virtualhost
Solving Common Performance Issues in Django REST Framework
Are you experiencing sluggish load times or inefficient database queries in your Django REST Framework (DRF) application? These performance hitches can hinder your app's scalability and impede your development momentum. Fortunately, with the right to...
Read: https://ahmadsalah.com/solving-common-performance-issues-in-django-rest-framework
Are you experiencing sluggish load times or inefficient database queries in your Django REST Framework (DRF) application? These performance hitches can hinder your app's scalability and impede your development momentum. Fortunately, with the right to...
Read: https://ahmadsalah.com/solving-common-performance-issues-in-django-rest-framework
Django Unleashed Framework
Photo
Welcome our new Fellow - Natalia Bidart
The DSF Board and Fellows Committee are pleased to introduce Natalia Bidart as our new Django Fellow. Natalia will be joining Mariusz Felisiak who is continuing his long and excellent tenure as a Fellow.
Natalia is a Python expert with almost 15 years of experience working with Django. She graduated from the National University of Cordoba, Argentina, with a degree in Computer Science in 2007, and began her professional career in 2005 working for a Python startup before joining Canonical in 2009.
During her time at Canonical, Natalia spent over a decade as a senior engineer in the Online Services team, where she helped develop and maintain various backend web services, including the Ubuntu One File Sync service. Later on, she was promoted to tech lead and architect of the Snap Store.
Natalia has been an active participant in the Python community, attending various Python related conferences over the years. She has given talks on a variety of topics, including building robust software, with a focus on software development best practices and testing. Additionally, Natalia is committed to promoting diversity and inclusion in the tech industry and is always looking for ways to contribute to this effort. She is passionate about open source and believes that well-written code, documentation, and tests are essential to a project's success.
You can find Natalia on Github as nessita and on Mastodon at @nessita@fosstodon.org.
Thank you to all of the applicants to the Fellowship. We hope that we will be able to expand the Fellowship program in the future, and knowing that there are more excellent candidates gives us confidence in working towards that goal.
Finally our deepest thanks and gratitude goes to Carlton Gibson. Carlton is stepping down from the Fellowship after 5 years of dedicated service in order to focus on other areas of the Django world. We wish you well Carlton.
Read: https://www.djangoproject.com/weblog/2023/mar/31/welcome-our-new-fellow-natalia-bidart/
The DSF Board and Fellows Committee are pleased to introduce Natalia Bidart as our new Django Fellow. Natalia will be joining Mariusz Felisiak who is continuing his long and excellent tenure as a Fellow.
Natalia is a Python expert with almost 15 years of experience working with Django. She graduated from the National University of Cordoba, Argentina, with a degree in Computer Science in 2007, and began her professional career in 2005 working for a Python startup before joining Canonical in 2009.
During her time at Canonical, Natalia spent over a decade as a senior engineer in the Online Services team, where she helped develop and maintain various backend web services, including the Ubuntu One File Sync service. Later on, she was promoted to tech lead and architect of the Snap Store.
Natalia has been an active participant in the Python community, attending various Python related conferences over the years. She has given talks on a variety of topics, including building robust software, with a focus on software development best practices and testing. Additionally, Natalia is committed to promoting diversity and inclusion in the tech industry and is always looking for ways to contribute to this effort. She is passionate about open source and believes that well-written code, documentation, and tests are essential to a project's success.
You can find Natalia on Github as nessita and on Mastodon at @nessita@fosstodon.org.
Thank you to all of the applicants to the Fellowship. We hope that we will be able to expand the Fellowship program in the future, and knowing that there are more excellent candidates gives us confidence in working towards that goal.
Finally our deepest thanks and gratitude goes to Carlton Gibson. Carlton is stepping down from the Fellowship after 5 years of dedicated service in order to focus on other areas of the Django world. We wish you well Carlton.
Read: https://www.djangoproject.com/weblog/2023/mar/31/welcome-our-new-fellow-natalia-bidart/
Дайджест Типичного программиста: GPT-4, сервер на смартфоне и пик Балмера
Дайджест Типичного программиста ⭐ Держите выжимку из самых полезных и интересных материалов в IT-сфере за последние дни.
Читать: «Дайджест Типичного программиста: GPT-4, сервер на смартфоне и пик Балмера»
Дайджест Типичного программиста ⭐ Держите выжимку из самых полезных и интересных материалов в IT-сфере за последние дни.
Читать: «Дайджест Типичного программиста: GPT-4, сервер на смартфоне и пик Балмера»
Tproger
Дайджест Tproger: GPT-4, сервер на смартфоне и пик Балмера
Дайджест Типичного программиста ⭐ Держите выжимку из самых полезных и интересных материалов в IT-сфере за последние дни.
Web frameworks in Python - Django
Django is a high-level, open-source Python web framework that allows developers to quickly and efficiently build web applications. It follows the Model-View-Controller (MVC) architectural pattern and emphasizes the concept of "don't repeat yourself" ...
Read: https://nikhilakki.in/web-frameworks-in-python-django
Django is a high-level, open-source Python web framework that allows developers to quickly and efficiently build web applications. It follows the Model-View-Controller (MVC) architectural pattern and emphasizes the concept of "don't repeat yourself" ...
Read: https://nikhilakki.in/web-frameworks-in-python-django
Session Handling Middleware in Django
Alright, this is my second technical article in a short span. I'm mostly dumping my learnings here, for that serves two purposes. Proof of work duh and next time I'm trying to implement the same thing I visit this for quick reference. Said every tech...
Read: https://msris108.hashnode.dev/session-handling-middleware-in-django
Alright, this is my second technical article in a short span. I'm mostly dumping my learnings here, for that serves two purposes. Proof of work duh and next time I'm trying to implement the same thing I visit this for quick reference. Said every tech...
Read: https://msris108.hashnode.dev/session-handling-middleware-in-django
🔥1
How to add passwords to certain content/pages in your web page using Django for beginners
Have you ever wanted to restrict access to content on your web page? For instance, if you have created a course on a specific topic and want to provide access to only certain users, password protection is a good way to do this.
Here is a step-by-step...
Read: https://bisesh-blog.hashnode.dev/how-to-add-passwords-to-certain-contentpages-in-your-web-page-using-django-for-beginners
Have you ever wanted to restrict access to content on your web page? For instance, if you have created a course on a specific topic and want to provide access to only certain users, password protection is a good way to do this.
Here is a step-by-step...
Read: https://bisesh-blog.hashnode.dev/how-to-add-passwords-to-certain-contentpages-in-your-web-page-using-django-for-beginners
👍1