q My Thoughts

Blogs and Learn with me

Sharing ideas, code, practical knowledge and learn with me

May 22, 2025
C# Connection database and data fetch

using Microsoft.Data.SqlClient; using System; using System.Data; using System.Windows.Forms; namespace databasecon {     public partial class Form1 : Form   …

Jan 05, 2025
Image not loading in hosting/production while DEBUG = TRUE in DJANGO

When you're hosting your Django application in a production environment, images may not load even with DEBUG = Truedue to the …

Task Management System Development in DJANGO Python
Apr 24, 2024
Task Management System Development in DJANGO Python

Task Management System Development Introduction In this documentation, you'll be guided through the process of developing a Task Management System using Django. …

Make a image uploader in Django. How to handle image in python django.
Apr 24, 2024
Make a image uploader in Django. How to handle image in python django.

File Upload Feature Documentation Overview The File Upload feature allows users to upload images or other files and associate them …

Learn python in easy step. Python Basic Syntax
Apr 24, 2024
Learn python in easy step. Python Basic Syntax

Python Variables Variables are containers for storing data values. Python has no command for declaring a variable. A variable is …