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 June 25, 2024 07:33
Recommended Routine - Reddit BodyweightFitness
@GenevieveBuckley
GenevieveBuckley / test_monkeypatch.py
Last active December 12, 2023 18:57
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'))