This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Sample code from TheSimplePostcard.com | |
# TechStack: Django, PostgreSQL, VQL, Twilio, Lob, Stripe, Bootstrap, usaddress | |
# Occasionally, we choose to ship a card for free | |
import datetime, random | |
def FreeCard(): | |
die_1 = random.randint(1, 6) | |
die_2 = random.randint(1, 6) | |
current_month = datetime.datetime.now().month | |
return (die_1 + die_2) == current_month |