From eae7597bc8a1de125649f265209d7399032cc247 Mon Sep 17 00:00:00 2001 From: Brandon Taylor Date: Thu, 11 Jun 2020 12:32:52 -0500 Subject: [PATCH 1/3] Added breaking headline Added a fake headline to the breaking news section. --- .gitignore | 1 + .vscode/settings.json | 3 +++ configs/v2/make_variations_v2.py | 1 + 3 files changed, 5 insertions(+) create mode 100644 .vscode/settings.json diff --git a/.gitignore b/.gitignore index 556fc5b..fe39681 100644 --- a/.gitignore +++ b/.gitignore @@ -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 diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..36acc7d --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "python.pythonPath": "C:\\Users\\donni\\AppData\\Local\\Programs\\Python\\Python38-32\\python.exe" +} \ No newline at end of file diff --git a/configs/v2/make_variations_v2.py b/configs/v2/make_variations_v2.py index c9d70ea..65b70b4 100755 --- a/configs/v2/make_variations_v2.py +++ b/configs/v2/make_variations_v2.py @@ -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': { From 07b62111504494b21c367f84acb67b2017c9956c Mon Sep 17 00:00:00 2001 From: Brandon Taylor Date: Sun, 4 Dec 2022 14:30:44 -0600 Subject: [PATCH 2/3] Musk Added a section for Elon Musk. --- configs/v2/make_variations_v2.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/configs/v2/make_variations_v2.py b/configs/v2/make_variations_v2.py index 4f84aab..37077ba 100755 --- a/configs/v2/make_variations_v2.py +++ b/configs/v2/make_variations_v2.py @@ -274,6 +274,13 @@ ], 'randomize_mode': 'always', }, + 'musk': { + 'default_enabled': False, + 'find_regex': [ + "(Elon\\s)Musk(?!\\w)", "g" + ], + 'randomize_mode': 'always', + }, }, } @@ -1754,6 +1761,15 @@ ], 'loser': [], }, + 'musk': { + 'clean': [ + 'Chief Twit (his words as well as ours)', + 'Darth Twitter', + 'Dijon Mustard' + ], + 'dirty': [], + 'loser': [], + }, } url_base = 'https://toolsofourtools.org/detrumpify2/v2/' From 6d465412c694ce5d655f656d87f8e58cef3b2b4a Mon Sep 17 00:00:00 2001 From: Brandon Taylor Date: Mon, 5 Dec 2022 22:41:54 -0600 Subject: [PATCH 3/3] Added a section for Kanye West a.k.a. "ye." --- configs/v2/make_variations_v2.py | 28 ++++++++++++++++++++++++++-- 1 file changed, 26 insertions(+), 2 deletions(-) diff --git a/configs/v2/make_variations_v2.py b/configs/v2/make_variations_v2.py index b34992d..c59899e 100755 --- a/configs/v2/make_variations_v2.py +++ b/configs/v2/make_variations_v2.py @@ -278,7 +278,14 @@ 'musk': { 'default_enabled': False, 'find_regex': [ - "(Elon\\s)Musk(?!\\w)", "g" + "((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', }, @@ -1766,11 +1773,28 @@ 'clean': [ 'Chief Twit (his words as well as ours)', 'Darth Twitter', - 'Dijon Mustard' + '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/'