-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsettings.py
More file actions
82 lines (73 loc) · 3.82 KB
/
Copy pathsettings.py
File metadata and controls
82 lines (73 loc) · 3.82 KB
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
import logging
GROVE_CHANNEL_KEY = "edit in private_settings.py"
SCRUMY_BOARD_URL = "edit in private_settings.py"
ICON_URL = "https://secure.gravatar.com/avatar/696d38ee8bab910de6079ff226b8be0c"
GROVE_ENDPOINT = "https://grove.io/api/notice/%s/" % GROVE_CHANNEL_KEY
SCRUMY_PROJECT = "edit in private_settings.py"
SCRUMY_PASSWORD = ""
SCRUMY_ENDPOINT = "https://scrumy.com/api/"
PITHY_COMMENTS = ["Cool story, bro.",
"Great job!",
"A for effort!",
"I'm coming. That's what I'm here for. That's why you had me, Mama, to save you.",
"Atta boy.",
"Weath... Witch... Work. That's it, work. I gotta work on where it is.",
"Atta girl.",
"That was a hell of a thing.",
"Girl power!",
"Now that's what I call great IT work!",
"Thanks. I was hoping you'd do that one.",
"NEVER GIVE UP! NEVER SURRENDER!",
"And it's about fucking time.",
"YOUNG LADY"]
PITHY_NEW_COMMENTS = ["...AND BOY ARE MY ARMS TIRED!",
"The more you know!",
"Do you even have a life?",
"Anybody else?",
"You're just going to have to kill it.",
"Go for the heart, then, the throat, his vulnerable spots!",
"CAW!!! CAW!!!",
"I don't like this. I don't like this at all.",
"What I could really use here is a cup holder and a couple of Advil.",
"Give her a hand, she's British.",
"So if you could just go ahead and take care of that, that would be terrific, mmmmkay?",
"SO THERE'S THAT.",
"You call that a task?"]
PITHY_NEW_COMMENTS.extend(PITHY_COMMENTS)
PITHY_TAKE_COMMENTS = ["Good job, yo.",
"BREAKS EVERYTHING.",
"Don't forget to bring a towel.",
"Now you're playing with power!",
"See you on the other side, brother.",
"Try not to break anything.",
"And posted a really distasteful video of it on the internet.",
"...WITH GUSTO!!!",
"Better you than me.",
"But who will guard the guards themselves?!",
"But the--the law won.",
"You can do it, put your back into it.",
"What? You want a cookie or something?",
"Thanks. I was hoping you'd do that one.",
"Two tasks enter; One task leaves.",
"Have fun storming the castle.",
"The taskman. Taskatollah. The taskster. Task-o-rama. The taskinator. The taskmeister. Taskarino. Taskerosa.",
"Swiper, no swiping!"]
PITHY_TAKE_COMMENTS.extend(PITHY_COMMENTS)
PITHY_DONE_COMMENTS = ["The end."
"That'll do, pig. That'll do.",
"I see you've managed to get your shirt off.",
"Maybe you could mow the lawn next?",
"Could you possibly try NOT to hit EVERY SINGLE ONE?",
"Aren't YOU special.",
"Did IIII do that?",
"And so the task becomes the grass, and the antelope eat the grass. And so we are all connnected in the great Circle of Life. ",
"This task is no more! It has ceased to be!",
"I'm not dead yet.",
"Another one bites the dust."]
PITHY_DONE_COMMENTS.extend(PITHY_COMMENTS)
try:
from private_settings import *
except Exception, e:
logging.error(e)
pass
ALL = locals()