Skip to content

Instantly share code, notes, and snippets.

@mickstevens
Forked from jastrauss/TSP_FreeCards.py
Created April 20, 2016 18:30
Show Gist options
  • Save mickstevens/e7a59680b9bc9a043bc34de5819b5f5f to your computer and use it in GitHub Desktop.
Save mickstevens/e7a59680b9bc9a043bc34de5819b5f5f to your computer and use it in GitHub Desktop.
# 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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment