Rujan Tandukarruzan.hashnode.dev路Dec 21, 2024Building Bookmark Sync Extension with Django and JavaScript.Managing bookmarks across multiple browsers can be a hassle. With browsers storing bookmarks locally, switching between Chrome, Edge, Brave or other browsers and different devices often results in duplicated or missing links. To solve this problem, I...Python
Saurav Sharmaselftaughtdev.hashnode.dev路Dec 7, 2024Implementing a Robust SQLite Backup System in DjangoIn this blog post, I'll share our approach to implementing a comprehensive SQLite backup system for a Django application. This system not only creates backups but also verifies their integrity and automatically pushes them to GitHub for safe storage....91 readsSQLite
Danish Khandanishpy.hashnode.dev路Dec 6, 2024Improving database performance in Django part-1: Optimized QueriesIf you want to improve performance of your django application, basically it's related to, improving database Queries. Writting efficient ORM queries is key. How much operations are taking place while any action performed by your view, less operations...54 readsDjango: Beyond CRUDDjango
Abhay Pratap Mauryaabhayapm.hashnode.dev路Nov 25, 2024Models And DatabasesIn Django, models are the core component for defining the structure of your data. They represent the database tables and act as a bridge between the database and your application. In Django, models are defined as Python classes, and Django uses these...1 likeDjangoModels in Django
Saurav Sharmaselftaughtdev.hashnode.dev路Oct 13, 2024Case Study: Building a Real-Time Focus Timer with Django, Redis, and WebSocketsHey there! Today, we're diving into the inner workings of Tymr, a cloud-based focus timer that's got some interesting tech under the hood. You can check it out at https://tymr.online if you're curious. Let's break down how this app keeps you focused,...2 likes路108 readsDjango
Saurav Sharmaselftaughtdev.hashnode.dev路Oct 13, 2024Comprehensive Django Deployment Guide for BeginnersTable of Contents Introduction Prerequisites Setting Up Your VPS Securing Your Server Installing Required Software Configuring Your Django Project Setting Up Nginx and Uvicorn Configuring SSL with Let's Encrypt Setting Up Supervisor Firewal...691 reads#django deployment
Poovarasu Sekarpoovarasu.hashnode.dev路Oct 9, 2024Stay Updated with Python/FastAPI/Django: Weekly News Summary (30/09/2024-06/10/2024Intro: Check out this insightful summary of Python/FastAPI/Django Weekly News for September 30th to October 06th, 2024. Stay updated with the latest developments, releases, and community updates in the Nil ecosystem. Key Points: 馃悕 Real Python highl...Python
Saurav Sharmaselftaughtdev.hashnode.dev路Oct 5, 2024Mastering Complex DataTables with Django: A Deep Dive into Server-Side ProcessingHey fellow Django enthusiasts! Today, I'm excited to share a recent challenge I tackled involving Django and DataTables. This one's a bit complex, so grab your favorite caffeinated beverage and let's dive in! but first, here is a screencast of how it...251 readsDjango
Poovarasu Sekarpoovarasu.hashnode.dev路Oct 1, 2024Stay Updated with Python/FastAPI/Django: Weekly News Summary (16/09/2024-22/09/2024Intro: Check out this insightful summary of Python/FastAPI/Django Weekly News for September 16th to September 22nd, 2024. Stay updated with the latest developments, releases, and community updates in the Nil ecosystem. Key Points: Python Virtual Env...Python
Saurav Sharmaselftaughtdev.hashnode.dev路Sep 24, 2024Supercharge Your Django Logging: Custom Filters for the WinThe Problem Default Django logs are okay, but they lack juicy details like IP addresses, browsers, and user info. Wouldn't it be cool to have all that at your fingertips? Enter Custom Logging Filters Django lets us create custom filters to add extra ...1 like路290 readsDjango