forked from michaelsproul/bullshit
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added an offensive mode, cleaned up a bit.
- Loading branch information
1 parent
e60fd76
commit 196c1bd
Showing
4 changed files
with
148 additions
and
64 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
old | ||
*.pyc | ||
__pycache__ |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
"""Filth up the horoscope generator with some stupid words.""" | ||
|
||
import wordlist | ||
|
||
wordlist.avoid.extend([ "poor people", | ||
"mamallian flesh", | ||
"white people", | ||
"black people", | ||
"foreigners", | ||
"oral sex", | ||
"bullshit artists", | ||
"cats that look like Jesus", | ||
"anarcho-syndicalists", | ||
"athesists", | ||
"Christians", | ||
"Mormons" | ||
]) | ||
|
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,47 +1,64 @@ | ||
# Astrological words | ||
planet = ["Mercury", "Venus", "Mars", "Jupiter", "Saturn", | ||
"Uranus", "Neptune", "Pluto"] | ||
planet = ["Mercury", "Venus", "Mars", "Jupiter", "Saturn", "Uranus", | ||
"Neptune", "Pluto"] | ||
|
||
star = ["Proxima Centauri", "Barnard's Star", "Sirius A", "Epsilon Eridani"] | ||
|
||
aspect = ["conjunction", "sextile", "square", "trine", "opposition"] | ||
|
||
wanky_event = ["a large Electromagnetic disturbance", "Quantum Flux", "the upcoming Solar eclipse", | ||
"Unusual planetary motion"] | ||
wanky_event = ["a large Electromagnetic disturbance", "Quantum Flux", | ||
"the upcoming Solar eclipse", "Unusual planetary motion"] | ||
|
||
# Prediction words | ||
prediction_verb = ["heralds", "marks", "foreshadows", "signifies"] | ||
|
||
# Time related words | ||
# Time words | ||
time_point = ["arrival", "beginning", "start", "end", "death"] | ||
|
||
time_period = ["interlude", "period", "week", "day"] | ||
|
||
# Emotive adjectives | ||
good_feeling_adj = ["romantic", "emotional", "reflective", "irreverent", "subversive", | ||
"spiritual", "creative", "intellectual", "adventurous", | ||
"enlightening"] | ||
|
||
good_emotive_adj = ["cathartic", "healing", "mystical"] | ||
# Feeling adjectives | ||
good_feeling_adj = ["romantic", "emotional", "reflective", "irreverent", | ||
"subversive", "spiritual", "creative", "intellectual", | ||
"adventurous", "enlightening", "fantastic"] | ||
|
||
bad_feeling_adj = ["bitter", "disappointing", "frustrating"] | ||
|
||
|
||
good_emotive_adj = ["cathartic", "healing", "mystical"] | ||
|
||
bad_emotive_adj = ["anti-climactic"] | ||
|
||
# Intensifiers for use in front of feeling adjectives | ||
good_degree = ["ridiculously", "amazingly"] | ||
neutral_degree = ["a little bit", "fairly", "pretty", "curiously"] | ||
bad_degree = ["worringly", "distressingly"] | ||
|
||
# Emotive nouns | ||
good_emotive_noun = ["love", "reflection", "romance", "enlightenment", | ||
"healing", "catharsis", "mysticism", "joy", "desire", | ||
"transcendence", "creativity", "metamorphosis"] | ||
|
||
bad_emotive_noun = ["bitterness", "disappointment", "sadness", "frustration", "anger", "failure", "boredom"] | ||
bad_emotive_noun = ["bitterness", "disappointment", "sadness", "frustration", | ||
"anger", "failure", "boredom"] | ||
|
||
# Misc | ||
vowels = {'a', 'e', 'i', 'o', 'u'} | ||
prediction_verb = ["heralds", "marks", "foreshadows", "signifies"] | ||
|
||
emotional_degree = ["a little bit", "pretty", "ridiculously", "amazingly", "curiously"] | ||
|
||
# "You would be well advised to avoid..." | ||
avoid = ["shopping", "engaging strangers in conversation", "swimming", | ||
"making too many jokes", "eating seafood", "rigorous physical activity", | ||
"staying inside for extended periods of time", "alienating your friends", | ||
"making life-changing decisions", "prolonging the inevitable"] | ||
# You would be well advised to avoid... | ||
avoid = [ "shopping", | ||
"swimming", | ||
"starchy carbs", | ||
"engaging strangers in conversation", | ||
"making too many jokes", | ||
"eating seafood", | ||
"rigorous physical activity", | ||
"operating heavy machinery", | ||
"staying inside for extended periods of time", | ||
"alienating your friends", | ||
"making life-changing decisions", | ||
"prolonging the inevitable", | ||
"places of worship", | ||
"people who are likely to annoy you", | ||
"drinking heavily this weekend", | ||
"hard drugs" | ||
] |