Implementing Varnish Between Nginx and Django Gunicorn In the fast-paced world of web development, optimizing your stack for performance is crucial to provide a seamless user experience. One po... Adarshreddy Adelli Saturday, November 11, 2023
Understanding the Django N+1 Problem: A Guide for Developers Django is a powerful web framework that simplifies the process of building robust and scalable web applications. However, like any framewor... Adarshreddy Adelli November 11, 2023
Rethinking Tech Stacks: Beyond the Fancy and into the Functional In the fast-paced world of technology, the allure of cutting-edge, sophisticated tech stacks has become increasingly irresistible. Compan... Adarshreddy Adelli Sunday, October 22, 2023
⚠ 𝐃𝐣𝐚𝐧𝐠𝐨 𝐏𝐫𝐨𝐝𝐮𝐜𝐭𝐢𝐨𝐧 𝐂𝐡𝐞𝐜𝐤𝐥𝐢𝐬𝐭 ✓ As we prepare to transition our application to a production environment, it's crucial to ensure that we don't overlook any potential... Adarshreddy Adelli Sunday, August 13, 2023
Music streaming app with Django + vuejs + Django rest framework + jwt This post will help you to build a music API that serves the music. I will be choosing the Django rest framework because it is easy to build... Adarshreddy Adelli Saturday, August 6, 2022 Django Nodejs python vuejs web development
Google Authentication in React native app with access and id token Building mobile applications with reactive native and Django is blazing fast at least for me. In this tutorial let us build a react native... Adarshreddy Adelli August 06, 2022 firebase react-native
Find diagonal Difference of a matrix python [ hacker rank ] Sample matrix: 3 11 2 4 4 5 6 10 8 -12 Diagonal 1 : 11 , 5 ,-12 Diagonal 2: 4 ,5 ,10 Difference = |4-19| Solution: #!/bin/python3 imp... Adarshreddy Adelli Tuesday, September 21, 2021
Get user IP address in django Get user IP address in Django def get_client_ip(request): x_forwarded_for = request.META.get('HTTP_X_FORWARDED_FOR') if... Adarshreddy Adelli Tuesday, May 4, 2021 100days Django python
Get the current logged in user in Django models #Django 100 days You can get the currently logged-in user in views of Django easily using request.user. It might be time-consuming if your... Adarshreddy Adelli May 04, 2021 100days Django python
Automatically update foreign key in django rest framework using serializer #Django100days This code helps you to update the foreign key automatically after saving the serializer in views. class CreateGroup(APIVi... Adarshreddy Adelli Monday, May 3, 2021 100days Django python Snippets
Patch request in vuejs axios jwt Why patch instead of post request? Patch request is helpful when you need to replace the existing resource partially. For Instance, when upd... Adarshreddy Adelli Saturday, December 26, 2020 javascript Nodejs vuejs
MongoDB Introduction | Let's Get Started Why MongoDB? MongoDB is the most popular and practised by many developers. Now it is placed among the top five database management systems. ... supriya pinumalla Saturday, September 5, 2020 MongoDB
Github Codespaces beta | setting up things Finally, the wait is over! I got a mail from Github this morning stating that " You're now in the Codespaces beta! ". Isn... Adarshreddy Adelli September 05, 2020 git github opensource vuejs
Lottie animation in vuejs Lottie is a JSON based animation file format that enables us to render After Effects animations in real-time as easily as shipping static i... Adarshreddy Adelli Wednesday, September 2, 2020 vuejs web development
Dockerize Django application Hey there! I am very excited to write on one of my personal favourites ie: docker. Nowadays there is a huge buzz for docker among the devel... Adarshreddy Adelli Tuesday, August 11, 2020 operating systems python
Vuejs Rest authentication with axios + jwt + Vuetify We rocked in our previous posts , where we successfully built a backend for our music streaming app using Django, Django rest framework and... Adarshreddy Adelli Sunday, August 9, 2020 Nodejs python web development
Django + vuejs + Django rest framework and jwt - Part 2 In our previous post , we have successfully built our basic API using Django and DRF. In this post, we will add authentication and make ou... Adarshreddy Adelli Tuesday, August 4, 2020 Nodejs python web development
Github's secret: Adding Profile readme.md bio Okay fine, it's now popular! Maybe you have heard about this newest release from Github. And I loved it and added mine. If you have not... Adarshreddy Adelli Friday, July 24, 2020
Colorize and customize linux terminal Most Linux people prefer terminal over GUI (count me in ✋). Doesn't know how others feel but for me using terminal makes feel super exc... Adarshreddy Adelli Saturday, June 20, 2020 Linux