Skip to content

Instantly share code, notes, and snippets.

View morenohernan's full-sized avatar
🏠
Working from home

Hernan Moreno morenohernan

🏠
Working from home
View GitHub Profile
@sgup
sgup / recommended-routine.md
Last active March 11, 2026 20:45
Recommended Routine - Reddit BodyweightFitness
@GenevieveBuckley
GenevieveBuckley / test_monkeypatch.py
Last active March 11, 2026 20:37
Monkeypatching user input with pytest
from io import StringIO
def double():
x = input("Enter an integer: ")
return int(x) * 2
def adding():
x = float(input('Enter the first number'))