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 May 4, 2025 13:13
Recommended Routine - Reddit BodyweightFitness
@GenevieveBuckley
GenevieveBuckley / test_monkeypatch.py
Last active February 6, 2025 16:19
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'))