- My Forums
- Tiger Rant
- LSU Recruiting
- SEC Rant
- Saints Talk
- Pelicans Talk
- More Sports Board
- Fantasy Sports
- Golf Board
- Soccer Board
- O-T Lounge
- Tech Board
- Home/Garden Board
- Outdoor Board
- Health/Fitness Board
- Movie/TV Board
- Book Board
- Music Board
- Political Talk
- Money Talk
- Fark Board
- Gaming Board
- Travel Board
- Food/Drink Board
- Ticket Exchange
- TD Help Board
Customize My Forums- View All Forums
- Show Left Links
- Topic Sort Options
- Trending Topics
- Recent Topics
- Active Topics
Started By
Message
re: Who really has TDS...the ultra MAGA Trump can do no wrong or the Libs who melt?
Posted on 5/29/25 at 11:15 am to sidewalkside
Posted on 5/29/25 at 11:15 am to sidewalkside
Most people hate the other side much more than they hate or love Trump.
Trump is just an outlet to display that love or hate. When he's gone from the scene it will be somebody else.
Trump is just an outlet to display that love or hate. When he's gone from the scene it will be somebody else.
Posted on 5/29/25 at 11:16 am to sidewalkside
The answer is the Ronbot cult
Posted on 5/29/25 at 11:18 am to sidewalkside
quote:
Who really has TDS...the ultra MAGA Trump can do no wrong or the Libs who melt?
Both have TDS but completely different outcomes.
Blue haired TDS has you sky screaming on TikTok.
Ultra MAGA TDS has you partying on the weekends at Crab Island with friends and family.
Posted on 5/29/25 at 11:21 am to Clyde Tipton
quote:
These people are made up in your head. I know no one like what you just described

Posted on 5/29/25 at 11:29 am to sidewalkside
I would TDS started with lunatic libs (sorry that was redundant). It then CAUSED right wing TDS. The all out war on him drove people to defend him no matter what
Posted on 5/29/25 at 11:31 am to sidewalkside
quote:He's not perfect, however he is the ABSOLUTE best President in my lifetime.
they are utterly and completely incapable of accepting ANY negative opinion, or view point, or analysis of Trumps actions.
Posted on 5/29/25 at 11:33 am to Clyde Tipton
quote:
These people are made up in your head. I know no one like what you just described.
You can’t be serious.

Let’s start with TigerHuskers…
Posted on 5/29/25 at 11:33 am to AUTigerking
quote:
would TDS started with lunatic libs (sorry that was redundant). It then CAUSED right wing TDS. The all out war on him drove people to defend him no matter what
I concur.
Posted on 5/29/25 at 11:37 am to sidewalkside
quote:
Who really has TDS?
This chick:
Loading Twitter/X Embed...
If tweet fails to load, click here.
This post was edited on 5/29/25 at 11:37 am
Posted on 5/29/25 at 11:42 am to Grumpy Nemesis
quote:
There's no such thing as the Trump is my God he can do no wrong people.

Posted on 5/29/25 at 11:44 am to Kjnstkmn
For the most part supporting a politician for any office is almost always a lesser of two evils type situation.
Trump definitely has some cons with his ego, brash personality etc… rubbing a lot of folks the wrong way.
But when compared to the puppets on the other side who wanted to keep the grift going as a status quo and sell us out to China and to global elites who are trying purposely to decimate the world population so they can live like kings over the remnants when robots and AI make most of us unnecessary.
Not to mention the trafficking rings and pedophile blackmail control in play, or big pharma profiting by keeping us sick and big government keeping us as debt slaves.
it’s pretty much a no-brainer choice between good and evil.
Between salvaging a free society and falling into an unimaginable abyss.
Understanding the stakes makes it easy to stomach personality issues and even embrace the awkward trolling.
Those that don’t understand the stakes are sheep who would lead us to the slaughter, because (insert single issue voter topic here, like meh abortion).
Trump definitely has some cons with his ego, brash personality etc… rubbing a lot of folks the wrong way.
But when compared to the puppets on the other side who wanted to keep the grift going as a status quo and sell us out to China and to global elites who are trying purposely to decimate the world population so they can live like kings over the remnants when robots and AI make most of us unnecessary.
Not to mention the trafficking rings and pedophile blackmail control in play, or big pharma profiting by keeping us sick and big government keeping us as debt slaves.
it’s pretty much a no-brainer choice between good and evil.
Between salvaging a free society and falling into an unimaginable abyss.
Understanding the stakes makes it easy to stomach personality issues and even embrace the awkward trolling.
Those that don’t understand the stakes are sheep who would lead us to the slaughter, because (insert single issue voter topic here, like meh abortion).
This post was edited on 5/29/25 at 11:50 am
Posted on 5/29/25 at 11:53 am to sidewalkside
First get your terminology correct. TDS only applies to those who are anti-Trump.
Posted on 5/29/25 at 11:53 am to sidewalkside
quote:
MAGA/Libs
Behaviors are similar. I’ve been saying this. Both defend the indefensible and deny the undeniable.
Both pick a side and go hard regardless of the lies. I don’t see where one is any better than the other.
Libs TDS
MAGA TSS (Trump Sycophant Syndrome
Posted on 5/29/25 at 11:54 am to Clyde Tipton
quote:
These people are made up in your head. I know no one like what you just described.

Posted on 5/29/25 at 12:14 pm to sidewalkside
quote:No specifics?
they are the ones with the real TDS...they are utterly and completely incapable of accepting ANY negative opinion, or view point, or analysis of Trumps actions.
Odd. It seems with such a strong opinion, you'd lay out some examples.
quote:
but it got me thinking

So far in this thread you've not made that apparent. Perhaps you will though?
Posted on 5/29/25 at 12:22 pm to sidewalkside
-- Create a fictional user table
CREATE TABLE users (
user_id INT PRIMARY KEY,
username VARCHAR(50),
registration_date DATE,
political_alignment VARCHAR(20)
);
-- Create a fictional posts table
CREATE TABLE posts (
post_id INT PRIMARY KEY,
user_id INT,
post_date DATE,
thread_title TEXT,
content TEXT,
FOREIGN KEY (user_id) REFERENCES users(user_id)
);
-- Insert our infamous daily doom-poster
INSERT INTO users (user_id, username, registration_date, political_alignment)
VALUES (1, 'sidewalkside', '2020-06-01', 'Terminally Online Progressive');
-- Simulate the daily anti-Trump threads
INSERT INTO posts (post_id, user_id, post_date, thread_title, content)
SELECT
generate_series(1, 365) AS post_id,
1 AS user_id,
CURRENT_DATE - (365 - generate_series(1, 365)) AS post_date,
'This Is It, Trump’s Going Down THIS Time' AS thread_title,
'If you still support him after this latest “bombshell,” you’re beyond help. Democracy is hanging by a THREAD!!' AS content
FROM generate_series(1, 365);
Sidewalk, if you handed over your login credentials. I’m fairly certain I could automate you daily TDS thread for you. Might save you some time
CREATE TABLE users (
user_id INT PRIMARY KEY,
username VARCHAR(50),
registration_date DATE,
political_alignment VARCHAR(20)
);
-- Create a fictional posts table
CREATE TABLE posts (
post_id INT PRIMARY KEY,
user_id INT,
post_date DATE,
thread_title TEXT,
content TEXT,
FOREIGN KEY (user_id) REFERENCES users(user_id)
);
-- Insert our infamous daily doom-poster
INSERT INTO users (user_id, username, registration_date, political_alignment)
VALUES (1, 'sidewalkside', '2020-06-01', 'Terminally Online Progressive');
-- Simulate the daily anti-Trump threads
INSERT INTO posts (post_id, user_id, post_date, thread_title, content)
SELECT
generate_series(1, 365) AS post_id,
1 AS user_id,
CURRENT_DATE - (365 - generate_series(1, 365)) AS post_date,
'This Is It, Trump’s Going Down THIS Time' AS thread_title,
'If you still support him after this latest “bombshell,” you’re beyond help. Democracy is hanging by a THREAD!!' AS content
FROM generate_series(1, 365);
Sidewalk, if you handed over your login credentials. I’m fairly certain I could automate you daily TDS thread for you. Might save you some time

This post was edited on 5/29/25 at 12:24 pm
Posted on 5/29/25 at 12:36 pm to sidewalkside
Stephen King for sure.
Posted on 5/29/25 at 12:52 pm to sidewalkside
Did you really not get an answer to this dumb statement the previous 9000 times it's been posted? Or did you just not get the answer you wanted so now you are fishing for support from your fellow deranged lunatics?
"Those MAGA have repeatedly criticized Trump but they don't do it when I want them to and they don't go along with retarded criticisms like "Trump is using tariffs to get better trade deals waaaaahhhh", so I'm going to pretend it's never happened. Posting the same comment that's already been disproven will make me feel better about being a whiny loser."
"Those MAGA have repeatedly criticized Trump but they don't do it when I want them to and they don't go along with retarded criticisms like "Trump is using tariffs to get better trade deals waaaaahhhh", so I'm going to pretend it's never happened. Posting the same comment that's already been disproven will make me feel better about being a whiny loser."
Posted on 5/29/25 at 12:58 pm to sidewalkside
The main thing I see people putting on Trump is the BBB. If America is going to cut the deficit, it's going to take a group effort, which means the House and Senate will have to do their parts too. They all have their roles. But hardly anybody on this board will recognize that.
One side screams it's all Trumps fault, which isn't true.The other side says it's not Trump's fault at all, which isn't true either. He has influence and he will have the last say on whether to sign or veto.
Statements from Rand (I'm sure all other politicians say this but I mention Rand because I follow him on X) like "Ive always said the power of the purse lies with Congress, not the POTUS", is what irritates me. . every bill I can remember adds to the deficit because Congress keeps sending shite bills to the POTUS desk.
One side screams it's all Trumps fault, which isn't true.The other side says it's not Trump's fault at all, which isn't true either. He has influence and he will have the last say on whether to sign or veto.
Statements from Rand (I'm sure all other politicians say this but I mention Rand because I follow him on X) like "Ive always said the power of the purse lies with Congress, not the POTUS", is what irritates me. . every bill I can remember adds to the deficit because Congress keeps sending shite bills to the POTUS desk.
Posted on 5/29/25 at 1:03 pm to sidewalkside
You were right to come here and air your grievances.
Popular
Back to top
