Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ configs/v2/*.txt
configs/v2/images/bunnies/output/*.jpg
configs/v2/images/puppies/output/*.jpg

configs/v2/make_variations_v2-DESKTOP-A44CV6F.py
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"python.pythonPath": "C:\\Users\\donni\\AppData\\Local\\Programs\\Python\\Python38-32\\python.exe"
}
41 changes: 41 additions & 0 deletions configs/v2/make_variations_v2.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@
#'They\'re all corrupt sh!tbags',
#'President pardons self for any and all crimes he, family, friends commit, or may commit.',
'Brutal autocrats invite Trump to address annual convention.',
'Trump doubles down on doubling down. Wait, what? What is this, Vegas?'
],
'actions': {
'trump': {
Expand Down Expand Up @@ -274,6 +275,20 @@
],
'randomize_mode': 'always',
},
'musk': {
'default_enabled': False,
'find_regex': [
"((ELON|Elon)\\s)?(MUSK|Musk)(?!\\w)", "g"
],
'randomize_mode': 'always',
},
'kanye': {
'default_enabled': False,
'find_regex': [
"(KANYE|Kanye)\\s?((WEST|West)?)!\\w", "g"
],
'randomize_mode': 'always',
},
},
}

Expand Down Expand Up @@ -1754,6 +1769,32 @@
],
'loser': [],
},
'musk': {
'clean': [
'Chief Twit (his words as well as ours)',
'Darth Twitter',
'Dijon Mustard',
'Melon Husk',
'Keno Slum',
'Mole Sunk',
'Space Karen',
'Phony Stark',
'Worthless Billionaire',
],
'dirty': [],
'loser': [],
},
'kanye': {
'clean': [
'Black Adolf Hitler',
'Rapper Who Used To Be Married To A Gold Digger',
'Softer, Worse, Slower, Weaker',
],
'dirty': [
"Kim Kardashian's Ex-Dick",
],
'loser': [],
},
}

url_base = 'https://toolsofourtools.org/detrumpify2/v2/'
Expand Down