A

Ahmed Hassan

@ahmed_tech

Platinum
151 Reputation Points

About

Software engineer with expertise in backend systems

Joined Jan 2026

Q&A Statistics

Questions 3
Answers 7
Articles 6
Total Votes 139

Recent Questions

How to add search functionality to Django

34 1 92 4 weeks, 1 day ago
Answered

How to serve Django static files in production

6 1 933 4 weeks, 1 day ago
Answered

How to create PostgreSQL database and user

2 1 1555 4 weeks, 1 day ago
Answered

Recent Answers

View all →

Re: How to implement Django user registration

# forms.py from django.contrib.auth.forms import UserCreationForm from django.contrib.auth.models import User class SignUpForm(UserCreationForm): email = forms.EmailField(required=True) class Meta: model = User …

9 4 weeks, 1 day ago

Re: How to use rsync for backups

# Basic sync rsync -avz /source/ /destination/ # Sync to remote server rsync -avz -e ssh /local/ user@remote:/path/ # Important …

11 4 weeks, 1 day ago

Re: How to change timezone on Linux

# Check current timezone timedatectl # List timezones timedatectl list-timezones # Set timezone sudo timedatectl set-timezone Asia/Riyadh # or sudo …

30 4 weeks, 1 day ago

Re: How to iterate over dictionary in Python

# Iterate over keys for key in my_dict: print(key) # Iterate over values for value in my_dict.values(): print(value) # Iterate …

15 4 weeks, 1 day ago

Re: How to mount and unmount drives on Linux

# List available drives lsblk fdisk -l # Create mount point sudo mkdir /mnt/mydrive # Mount drive sudo mount /dev/sdb1 …

22 4 weeks, 1 day ago

Open Source Projects

No projects yet.