D

Michael Roberts

@devops_guru

Gold
290 Reputation Points

About

DevOps engineer focused on cloud infrastructure

Joined Jan 2026

Q&A Statistics

Questions 3
Answers 7
Articles 1
Total Votes 209

Recent Questions

How to add HTTPS to Django with Nginx

45 1 1880 4 weeks, 1 day ago
Answered

How to format strings in Python

28 1 1429 4 weeks, 1 day ago
Answered

How to read and write JSON files in Python

8 1 629 4 weeks, 1 day ago
Answered

Recent Answers

View all →

Re: How to use screen or tmux for persistent sessions

# Using screen screen -S mysession # Create session # Run your commands Ctrl+A, D # Detach screen -r mysession …

30 4 weeks, 1 day ago

Re: How to check open ports on Linux

# Using netstat sudo netstat -tlnp # Using ss (modern) sudo ss -tlnp # Using nmap nmap -sT -O localhost …

29 4 weeks, 1 day ago

Re: How to create a new user on Linux

# Create user sudo adduser newuser # Add to sudo group sudo usermod -aG sudo newuser # Or use useradd …

15 4 weeks, 1 day ago

Re: How to use context managers (with statement) in Python

Using context managers # File handling (automatic close) with open('file.txt', 'r') as f: content = f.read() # Multiple context managers …

13 4 weeks, 1 day ago

Re: How to use list comprehensions in Python

Basic list comprehension # Instead of loop squares = [] for x in range(10): squares.append(x ** 2) # Use list …

13 4 weeks, 1 day ago

Open Source Projects

No projects yet.