Y

Youssef Ibrahim

@youssef_net

Platinum
311 Reputation Points

About

Network engineer and security specialist

Joined Jan 2026

Q&A Statistics

Questions 4
Answers 5
Articles 1
Total Votes 213

Recent Questions

Answered

How to check if file exists in Python

33 1 518 4 weeks, 1 day ago
Answered
Answered

SSH connection refused - how to troubleshoot

47 1 1650 4 weeks, 1 day ago
Answered

Recent Answers

Re: How to send emails in Python

import smtplib from email.mime.text import MIMEText from email.mime.multipart import MIMEMultipart # Email configuration smtp_server = "smtp.gmail.com" port = 587 sender …

5 4 weeks, 1 day ago

Re: How to create Django model relationships

from django.db import models class Author(models.Model): name = models.CharField(max_length=100) class Book(models.Model): title = models.CharField(max_length=200) # ForeignKey (many-to-one) author = models.ForeignKey(Author, …

7 4 weeks, 1 day ago

Re: How to read CSV files in Python

import csv # Using csv module with open('data.csv', 'r') as f: reader = csv.DictReader(f) for row in reader: print(row['column_name']) # …

27 4 weeks, 1 day ago

Re: How to view and manage running processes

# List all processes ps aux # Filter by name ps aux | grep nginx # Interactive process viewer htop …

26 4 weeks, 1 day ago

Re: How to use regular expressions in Python

Basic regex operations import re text = "Email: user@example.com, Phone: 123-456-7890" # Find all matches emails = re.findall(r'[\w.-]+@[\w.-]+', text) # …

7 4 weeks, 1 day ago

Open Source Projects

No projects yet.