q My Thoughts

Blogs and Learn with me

Sharing ideas, code, practical knowledge and learn with me

Jun 01, 2025
C# WINFORM CRUD

using Npgsql; using System.Data; using System.Windows.Forms; namespace post {     public partial class Form1 : Form     { …

May 22, 2025
translator

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0"/> <title>Translotor</title> <style> body { font-family: Arial, sans-serif; background-color: …

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. …