-
Notifications
You must be signed in to change notification settings - Fork 7
/
pychill
executable file
·83 lines (73 loc) · 2 KB
/
pychill
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#!/usr/bin/env python
import random
# ;)
def pick(arr):
return random.choice(arr)
# ;)
BANDS = [
"Dave Matthews Band",
"Erykah Badu",
"Joni Mitchell",
"Cat Stevens",
"Guster",
"Dispatch",
"early Phil Collins",
"Ben Folds",
"Sam Cooke",
"Carole King",
"Bob Marley",
"Wilco"
]
# ;)
PLACES = [
"fern bar",
"swim-up bar",
"park",
"big park",
"regional music event",
"free local music event",
"low-cost local music event",
"beer tasting event",
"friend's bbq",
"lazy river"
]
# ;)
EMOTICONS = [ ";)" ]
# ;)
EXPRESSIONS = [
"bingo",
"tubular",
"aw yeah",
"feels right",
"emotions just right",
"everything just right"
]
# ;)
BEER_BRANDS = [
"Sierra Nevada",
"not hoppy IPA",
"Corona",
"Corona",
"Corona",
"Corona"
]
# ;)
GOOD_THINGS = [
"hanging with a cool ex",
"playing pool but not for money",
"avoiding a nail in the road",
"meeting Sade",
"almost meeting Sade",
"inner-tubing down the Nile with a hippo",
"reading about Mars and just loving science",
"snorkeling for the first time",
"talking to Sade about her trip to Costa Rica",
"discovering $5 in my pocket and giving it away",
"an unexpected sunset"
]
saying = """
Someone just put on {0}. {1}. That's just what it's like at this {2}.
Feels like {3}.
{4}. {5}
""".format(pick(BANDS), pick(BEER_BRANDS), pick(PLACES), pick(GOOD_THINGS), pick(EXPRESSIONS), pick(EMOTICONS))
print(saying)