Everything You Need To Know When You’re Falling For A ‘Straight’ Girl
The online magazine "Gomag" has publish in January #2019 an article with that said title ...
Lesbians, this is a HUGE undertaking.
Yes, getting a "No, I'm not interested in you.", is a really HUGE undertaking. If I would be the editor, I need to be fired, not because of I'm a man and being #heterosexual but because of the inaccuracy of this article.
1) How do I get over someone who is good in bed? And 2) I am falling for a straight girl… what the hell do I do?
Let me answer this for you:
1) We all started as rookies in anything, completely "untrained". So why should a straight woman (they thank you for that!) be better in bed than a lesbian?
2) Move on, straight (heterosexual) women are into us men and our penises and not you being a woman and having a vagina.
Second of all, I want to let you know that I, in my core, sorely disapprove of the concept of the straight girl crush. I think you’re setting yourself up for heartbreak, and I question why you feel the need to chase after a woman who claims not to be into other women. A lot of the straight girl crush, I believe, stems from our ugly egos.
Yes, true. You get yourself a heartbreak, move on. And straight people are born that way, we don't have to claim it, okay?
I understand that a million different things can be true at once and that nothing in this world is black and white, especially sexuality. Sometimes, despite our better judgment, we fall for flawed people. Sometimes "straight" women aren’t really straight; they just haven’t come to terms with their own sexuality. Sometimes sexuality is fluid. Sometimes love is simply love. And sometimes you just need to go for something, even if you know you’re probably going to end up wounded.
That's true, that there is bisexuality, I get the point. But homosexuality/heterosexuality is black and white. Straight women find penises attractive, not lesbian vaginas, straight men find vaginas attractive while gays penises. It isn't that hard to understand. And yes, some "straight" women need to hold their homosexuality back or else they face jail-time but that's only true for most non-Western countries, never be true for Germany or USA or so. The last part I disagree with: You can either be attracted to penises, vaginas, both or none of them. There is no "fluid" here, that e.g. a straight woman (=adult female human, not youth and confused) might try out something homosexual. or how about this, lesbians, try out having being fucked by a man with his penis, maybe even anal ... No, not your thing? So why is "fluid" only a straight thing here as the article suggests?
When someone tells you who they are, believe them. If the words "I’m straight" flew out of her freshly glossed straight girl lips, for all you know, she’s straight. We don’t always flirt with people because we’re truly into them—you know that.
Bottom line: Got rejected for this reason, move on! I reject gays because I'm straight and I'm not into men and penises. Period and end of story. Why make a big drama out of it anyway? I got often rejected for sometimes really shallow reasons and I have moved on.
I do that to everyone. Men, women, non-binary babes—no one is safe. The only people I don’t shamelessly flirt with, ironically, are people I’m actually attracted to. I freeze around people I think are hot, as many of us do.
You call yourself "big lesbian sister" and flirt with men? How can you be so deceptive? You cannot justify your wrong behavior and blame later others for their "bigotry".
Whether she’s straight or not, deep inside her soul, that’s none of your business. If she’s proclaimed to be straight, respect that. It’s very possible that she enjoys the novelty of getting lesbian attention from you, but will never, ever sleep with you (let alone date you). This shit happens all the time! Don’t read too far into it.
Yes, you got that right again. Straight women aren't into lesbians (which are also women) or even don't want to be close to your vagina. Also I don't want to be close to an other man's penis, it creeps me out.
In fact, the best way to tell if she’s f*cking with you or might actually be catching feelings for you… is to pull back. Let her take the lead. Which leads me, seamlessly, into my next point.
Why cannot you read your own words? Let me say this clearly to you: REAL straight women won't come after you! They will thank you for letting them in peace and move away. Live with it.
Just because we’re women doesn’t mean that we’re exempt from being creepy. And it is creepy to go after a girl who claims not to be interested in your gender. Bottom line. Even if she’s all over you. Respect her sexual identity, just as you desire yours to be respected. And if she can’t handle her attraction to you, despite her "heterosexuality," let her come to you.
Yes, that's right again. Respect us/her as much as you want to be respected back.
Here’s the truth: You don’t want to be seen as the girl who coerced the straight girl into being with her, do you? It’s not fun to be that girl, trust me. And you won’t ever be seen as that girl if you let her pursue you. If she tries to kiss you one night after a plethora of cocktails, pull away and ask her: "Aren’t you straight?" And let her explain herself. Give her the freedom to come to this earth-shattering conclusion on her own that she’s attracted to a woman. It’s really important to give people a chance to figure this shit out for themselves without a thirsty lez lingering in the background to pull it out of them.
When people are drunk, then the worst thing is that they wake up in the morning next to someone they don't or barely know and had sexual activities with, they feel very low and "dirty". You basically raped her then as under the influence of a lot alcohol nobody can give you real consent. Do NOT take advantage of people to get from them what you want!
Okay, enough of this article. Some parts it got right, some wrong. Don't be a creep or you loose all trust and reputation. Taking advantage of others isn't right, no matter the circumstances (drunk or not). Don't expect a green light from people who won't want you because of your incompatible sex (male/female) or religion or whatever other reason.
Don't slam on us straights, we are straight, not bisexual or pan, not everyone is bi/pan. Nobody is bigoted only because they don't want to come intimately close to you, move on, don't waste your and our time.
youtube.com/watch?v=TH5PYyEC8H…Die schönste Darstellung des Lorenz-Attraktors, die ich je gesehen habe. | #Fraktal
Hey #Canonical, are you MAD?"popularity-contest"? On a #Ubuntu #server? Freshly installed? Without notice?
Guys, seriously. Installing some kind of software "just because we can" during OS deployment is Microsoft-style.
Honestly I do not care if it runs without further configuration or whatever, but a by-default enabled cron job is enough for me to take further action.This is exactly what causes computer security issues. Dropping software on users without need nor confirmation.
Please. Don't be #Microsoft.And this is my polite version.
Investigating slowness of FPM/Friendica combination
With the help of mysqldumpsql -s at -t 10 -a I found some slow SQL queries the current develop code causes:SELECT `id` FROM `contact` WHERE (`network` IN ('dfrn', 'dspr', 'stat', 'apub', 'zot!', 'unkn') AND `self` = 0 AND `id` IN (SELECT `cid` FROM `post-tag` WHERE `cid` = `contact`.`id`) AND (`last-update` < '2022-06-24 18:39:07' OR (NOT `failed` AND `last-update` < '2022-07-17 18:39:07'))) LIMIT 100
This query took over 70 seconds which is WAY to slow (as it also keeps the FPM child process busy and unable to process another request).
An EXPLAIN gives me following extra information:
- table contact: Using index condition; Using where
- table post-tag: Using index; FirstMatch(contact)
It looks already optimized but is still so slow. Another one I came across:
SELECT `account_type`, COUNT(*) AS `count`
FROM `profile` p
JOIN `server` s ON s.`id` = p.`server_id` AND s.`available` AND NOT s.`hidden`
WHERE p.`available` AND NOT p.`hidden` AND p.`region` LIKE 'foo%'
GROUP BY p.`account_type`
ORDER BY `count` DESCWhich is caused by Friendica Directory. The query now runs fast but has an infamous
Using where; Using temporary; Using filesort on the table s (server) which MAY slow it down.But the next one hits the jackpot of most-used tables in a single query:
SELECT `uid`, `id`, `parent`, `guid`, `network`, `gravity`, `uri-id`, `uri`, `thr-parent-id`, `thr-parent`, `parent-uri-id`, `parent-uri`, `commented`, `created`, `edited`, `received`, `verb`, `object-type`, `postopts`, `plink`, `wall`, `private`, `starred`, `origin`, `parent-origin`, `title`, `body`, `language`, `content-warning`, `location`, `coord`, `app`, `rendered-hash`, `rendered-html`, `object`, `allow_cid`, `allow_gid`, `deny_cid`, `deny_gid`, `mention`, `global`, `author-id`, `author-link`, `author-name`, `author-avatar`, `author-network`, `author-updated`, `author-gsid`, `author-addr`, `author-uri-id`, `owner-id`, `owner-link`, `owner-name`, `owner-avatar`, `owner-network`, `owner-contact-type`, `owner-updated`, `causer-id`, `causer-link`, `causer-name`, `causer-avatar`, `causer-contact-type`, `causer-network`, `contact-id`, `contact-uid`, `contact-link`, `contact-name`, `contact-avatar`, `writable`, `self`, `cid`, `alias`, `event-created`, `event-edited`, `event-start`, `event-finish`, `event-summary`, `event-desc`, `event-location`, `event-type`, `event-nofinish`, `event-ignore`, `event-id`, `question-id`, `question-multiple`, `question-voters`, `question-end-time`, `has-categories`, `has-media`, `delivery_queue_count`, `delivery_queue_done`, `delivery_queue_failed` FROM `post-user-view` WHERE ((`uid` = N OR (`uid` = N AND NOT `global`)) AND `uri-id` IN (N, N, N, N, N, N, N, N, N, N, N, N, N, N, N, N, N, N, N, N) AND `visible` AND NOT `deleted` AND NOT `author-blocked` AND NOT `owner-blocked` AND (NOT `causer-blocked` OR `causer-id` = N OR `causer-id` IS NULL) AND NOT `contact-blocked` AND ((NOT `contact-readonly` AND NOT `contact-pending` AND (`contact-rel` IN (N, N))) OR `self` OR `gravity` != N OR `contact-uid` = N) AND NOT EXISTS (SELECT `uri-id` FROM `post-user` WHERE `uid` = N AND `uri-id` = `post-user-view`.`uri-id` AND `hidden`) AND NOT EXISTS (SELECT `cid` FROM `user-contact` WHERE `uid` = N AND `cid` = `author-id` AND `blocked`) AND NOT EXISTS (SELECT `cid` FROM `user-contact` WHERE `uid` = N AND `cid` = `owner-id` AND `blocked`) AND NOT EXISTS (SELECT `cid` FROM `user-contact` WHERE `uid` = N AND `cid` = `author-id` AND `ignored` AND `gravity` = N) AND NOT EXISTS (SELECT `cid` FROM `user-contact` WHERE `uid` = N AND `cid` = `owner-id` AND `ignored` AND `gravity` = N)) ORDER BY `id` DESCThis one causes also the same infamous
Using index condition; Using where; Using temporary; Using filesort over the table post-user and is really scary to see.
fpm child processes are being started, causing the whole web server to slow down and most of them come from my Friendica instance.
Die Folgen 1 bis 209 findet ihr IRGENDWANN auf Kanal "Eure Videos Fahrnünftig - ARCHIV
https://www.youtube.com/channel/UCBYSt8WnZYEcE21cV-RsejgRund um die Uhr FahrnuenftigTV: https://www.twitch.
Dashcam-Videos sind boese! In den sozialen Medien sein ganzes Leben teilen ist gut.
Upgrading Devuan to 4.0
bewulf with chimaera. Your resulting /etc/apt/sources.list should then have these lines:deb http://deb.devuan.org/merged chimaera main
deb http://deb.devuan.org/merged chimaera-updates main
deb http://deb.devuan.org/merged chimaera-security main
#deb http://deb.devuan.org/merged chimaera-backports mainThis upgrade also includes an upgrade from PHP 7.3 to 7.4.
php-xml to have SimpleXML back, upgrade to PHP 7.4 is now complete (7.3 fully removed).
rm -rf ~/searx-ve to get rid of the old environment. So just run ./manage buildenv again.
For me, I set these local variables in ~/.bashrc:
# Searx virtual environment
export SEARX_PYENV="${HOME}/searx/local/py3"
export PATH="${SEARX_PYENV}/bin:${PATH}"
source "${SEARX_PYENV}/bin/activate"And in /etc/uwsgi/apps-available/searx.ini:
# Virtualenv and python path
virtualenv = /home/searx/searx/local/py3/
pythonpath = /home/searx/searx/
chdir = /home/searx/searx/searx/To make my SearX instance at searx.mxchange.org working again.
like this
Kromonos likes this.
Roland Häder🇩🇪 attends.
System Administrator Appreciation Day am Freitag, den 29. Juli, ab 19 Uhr im Hacklabor in #Schwerin. Mal Danke sagen an die Leute, die den Laden am Laufen halten. Mit Ansible-Vortrag “Automatisierung ist des Admins bester Freund" hacklabor.de/2022/07/SysAdminD…
La Linea watched with my daughter
I guess #LaLinea needs no introduction but in case you don't know it:
And I have watched it with my 6 years old daughter and she laughed a lot about it. 
yes, but i did not see any link in the post, since i looked it up i also shared it for convinience of others.
is there a link in the post?
Legale Reklame und illegale Spam sind zwei Seiten der gleichen wertlosen Münze – genau so, wie die Lüge des Werbers und die Lüge des Betrügers aus dem gleichen vergammelten Holz geschnitzt sind.
Ich, am 17. Februar 2021… | #Selbstzitat
Frank Dapor #podmin likes this.
Sahra Wagenknecht - Gegen die neoliberale Linke
Die Selbstgerechten. Mein Gegenprogramm – für Gemeinsinn und Zusammenhalt.Sahra Wagenknecht war von 2015 bis 2019 Vorsitzende der Bundestagsfraktion der Partei Die Linke, die bei den Wahlen 2017 mehr als 9 % der Stimmen erhielt. Zwei Jahre später trat sie offiziell aus Stressgründen zurück. Es gibt jedoch viele, die vermuten, dass ihre Entscheidung durch das allmähliche Abgleiten ihrer Partei in diese Form des "progressiven Neoliberalismus" motiviert war, der mittlerweile alle westlichen Linken infiziert zu haben scheint und der laut Wagenknecht den schwersten Stein für die Linke zu werden droht (zur Erinnerung: bei den Wahlen 2021 halbierte die Partei, die nun in den Händen der liberal-progressiven Strömung ist, ihre Stimmen: ihr schlechtestes Ergebnis überhaupt). Genau diesem Linksdriften ist Wagenknechts neues Buch-Manifest gewidmet. Die zeitgenössische westliche Linke - so prangert der Autor an - hat Begriffe wie Klassenkampf und Kampf gegen Ungleichheiten inzwischen auf den Müllhaufen der Geschichte geworfen und ist zu einer "modischen Linken" geworden: ein Lebensstilvorrecht einer kleinen Elite - vertreten durch die neue Mittelschicht der Universitätsabsolventen aus den Großstädten - und inspiriert von den Dogmen des Kosmopolitismus, des Globalismus, des Europäismus, des Multikulturalismus, des Umweltschutzes, des Identitarismus und der politischen Korrektheit. Eine Elite, die zur Verarmung der Mittelschicht und zur Ausbeutung der Arbeitnehmer nichts zu sagen hat, die nicht nur die Interessen der Globalisierungsgewinner vertritt, sondern die Verlierer, d.h. die Arbeiterklasse und ihre Werte, offen verachtet und als faschistisch, rassistisch, rückschrittlich, sexistisch, nationalistisch und populistisch beschimpft. Eine Elite, die in Bezug auf Wahlen immer kleiner wird, aber dennoch eine sehr starke Hegemonie über die Medien und die Welt der Kultur ausübt. Im Gegensatz zu dieser Linken der Privilegierten entwirft Sahra Wagenknecht eine radikal andere Vision für eine Linke, die wieder in der Lage ist, die Volksschichten zu vertreten und mit ihnen zu sprechen: ein Gegenprogramm, das sich auf Werte stützt, die nicht individualistisch, sondern gemeinschaftlich sind - einschließlich der von den zeitgenössischen Progressiven verabscheuten Begriffe wie Heimat, Gemeinschaft, Zugehörigkeit - und das in der Lage ist, die Identität nicht mehr einer intellektuellen Minderheit, sondern einer aus konkreten Personen bestehenden Mehrheit zu definieren. Damit legen wir den Grundstein für die Schaffung einer gerechteren Gesellschaft.
Veröffentlicht auf Italienisch von 'Fazi Editore' mit einem Vorwort von Vladimiro Giacché.
#Wagenknecht #Linke #Bücher
Pascal likes this.
Wie gefällt euch das erste Best Of?
Einsendepause bis ca Oktober. Schickt mir keine Videos.
Rund um die Uhr FahrnuenftigTV: https://www.twitch.
Und klappt prima!
"People of Color Need TikTok Without 👨🏻🦳Whites"
First of, I don't like #POC at all, because since when is my skin color not a fucking color? And how about Chinese people, from the Northern areas, they have a very bright skin color. And how about Russian people, a lot have "white" skin color there, too. I found POC very racist.
But okay, if these #self-righteous #woke want to have #TikTok for their own, so be it. Let's all quit TikTok (I'm my myself have no account there).
So here is the video, that #OdinsMen has analyzed:
@jec@social.alesan.io is being #blocked for calling me hateful while he wishes me cancer and that I die.
#Woke say, that also trans-men can be #pregnant, not realizing that trans-men are biological women until the #uterus is being medically removed, then technically spoken, that person is a human with no reproductive organs. Woke don't understand that only adult female humans (definition for a #woman ) can have babies because they have the proper organs to do so.
So who do you think will win the #Olympics of Morons?
PS: Don't feel anger, try to logically understand what they say and see the world. Try to move a bit along with them, but don't get dragged into the long way down to insanity (which never ends).
#Woke (radical) leftists want #straight white men to die with cancer, also some #brainwashing by #CNN:
See, #insanity doesn't know boundaries.
The #drag-queen on the left speaks out truth against #Grooming your children and NOT bring them to #LGBTQ #pride festivals because they are going to see "things that belong into the bedroom", as she says. The #gay on the right also is like her minded, good that not all LGBTQ are groomers.
Listen to the 2nd-last one, #Joey who was a naturally born woman but tried to to turn into a man (trans-man) but failed completely. Even the simple act of peeing is a nightmare to Joey.
#pubicblocker are chemical castration! #fertility
Quoted from the comments for above video:
Feminism was once a powerful word to represent women for basic yet powerful portrayal of women strength and portrayal of what we women can do . But now feminism is just men hating men loathing cringe worthy some kind of thing that makes my ears bleed .
There is nothing it between men and women, #non-binary means mentally ill. I get along with inter-sexual, who actually have 2 sexes, penis and vagina, at the same time. But that's only <0.1%. #GenitaliaMatter #StopErasingSex #SexIsReal #SexNotGender
On the flip side: who gives a shit?
A similar percentage will be actually transgender, like <0.1%
The rest are following a trend because:
1. It is the one way hwite men can compete in terms of victimhood with minorities, LGBT, and women
2. Egalitarian societies are victimhood olympics and this gives them #2 pity status
3. Socialized medicine pays for it all and makes them a big deal where they would otherwise be unexceptional
Cut out the free stuff and equality, problem goes away.
Roland Häder🇩🇪 likes this.
And: If you don't agree with #BLM #BankLocalMilfs, you are a racist and fuck off.
#queer teacher are the worst for children, they don't teach them stuff that really matters, like #mathematics, #history or what a man and what a woman is and how society actually works. They just indoctrinate these pool children, like you have seen now when a trans-dad has tried to brainwash "his" (her) daughter into believing that she is a boy. I feel sorry for these kids, not the grown up ones with their woke cult and #pronouns-theater.
≠ reshared this.
You cannot make these people happy, don't even start listening to their repeated talking points.
Yes2020 reshared this.
Yes2020 reshared this.
#woke #POC (I hate this phrase, because it is anti-white (Chinese/Russian included? They are White, too, but not Western ...) freak out:
Best comments:
"When you're born you get a ticket to the freak show. When you're born in America you get a front row seat."
--the late, great George Carlin
Cry harder, self-canceling victim #drama-queen #narcissist !
@panelfmedia@social.vivaldi.net is now instance-wide blocked. He seem to disagree with what I post from #OdinsMen and then threatens me later on with "expect consequences". Wow, so brave of him. Not.
#cis-gendered is #racist, #toxic and #transphobic and you deserve being "canceled/gathered" AKA. blocked and locked out from all social media:
Just stop being cis!
Translated: Chop of of your dick and join the #woke #trans cult. Remove your nipples when you are woman . They have lost their minds.
#trans-woman says why they cannot have periods and why these #woke lunatics are all mental and crazy:
It is physically, medically and biologically impossible for a trans-gender woman like myself to have a period because we do not have uterus(es) therefore we cannot she a(n) uterine lining. We do not have ovaries, how the fuck is a menstruation? Cause it isn't. Trans-women cannot get periods, period!See, this is why I don't associate with the fucking community (woke ABC mafia) because you are all crazy. But you come out with the dumbest fucking bullshit, man. Seriously, like envision 2 parallel lines right now, right in front of you. One of these lines is the lives and struggles of
cis-genderedwomen and one of these other lines is the lives and struggles of trans-women. Now, we may go through the same struggles, we may go through some of the same problems but we're different. We arewomenhumans but we all have different lives. We all have different struggles and we all have our differences, yeah okay. ...
Listen on over there! But a lot true things (I stroke some out I disagree with, as I'm a man and that's biologically also a man).
#DylanMulvaney is the most aggressive promoter and indoctrinator (I created it from indoctrination) for of this woke shit going on, right in front of our own eyes. Not yet over here in #Germany but that won't last long.
Yes2020 reshared this.
Best comment from a woman:
I’m a woman. Full stop. How is asking NOT to be called cis ANY different than asking someone to use chosen pronouns? Actually, it IS different. I didn’t choose my pronouns, God did, please respect that.
Sub comment:
It's not different but they crazy. So they refused to listen to anything you have to say but demands you listening to everything they had to say.
BTW: I'm in my manhood for 16,571 days by now. So I don't have to say anything of being a heterosexual man? No, nothing? Go fuck yourself, #woke #lunatics !
Woman from the video being 11k days into "girl/womanhood":
We are also not "cis"-women, we never asked to be called that.So stop calling us that. We are women, we are biological women.
The point of #cis is to shame you and it is meant to offend you. So let's call these #woke what they are crazy lunatics!
If you talk or write about it, it is #hate-speech , if you do not think what these #woke ABC mafia lunatics tell you, it is a #thought-crime, if you don't magically agree with then, that women can have penises and men can give birth, too (because they try to change the definition of what a woman or a man is), you are #transphobic and a bad person, period. All of this mounts in nothing short but emotional extortion.
Plus: Professional athlete speak up against #transgender ("men bodily individual") in competition with (biological, real) women. These woke woMEN don't want to have own division, they just say: "I'm a woman, with a female penis. Accept me or you are misogynist and #transphobic!"
And: SIMP aka. "Stay-at-home" man does all the work a wife does. But if a wife does, she is oppressed and needs to be freed by woke feminists. Get it? If she is on #OnlySimps aka. #OnlyFans she is stunning and brave and sexually freed.
So she is the biggest victim, right? Fat Black woman? Maybe even trans? Biggest victim of "white-supremacy". #Narcissistic person she is!
Comment found:
I got my first apartment when I was 21. I looked 16. I went across the street to the deli to but something. The guy behind the counter asked me if I was new to the neighborhood. I said yes, that I'd just moved in across the street. I asked him about safety on the street, garbage pick-up, etc. He asked me what my parents do and which highschool I was going to. I laughed, told him I'd recently graduated from college and had my own place across the street. He laughed, apologized. It was so not a thing.It was not a problem that the man thought I looked to young to have my own place. It was SO not a microaggression or any kind of an aggression. It was actually helpful to me to know that I looked like a high-school kid so I knew I might want to dress differently to look more like a grown-up. These people need to stop with this BS.
And:
"I'm not your friend I'm your parent" is EXACTLY the relationship parents should have with their kids. Respect is EARNED. This is the reason kids are ruling their parents these days.
Also:
The Home Depot employee might have been concerned that the woman was being taken advantage of if she rented. But oh no it has to come from a place of racism not real concern. 😕
Put functional people into such positions, not because they are so "diverse". Also the #Pronouns-Circus is touring again.
#POC #ShowTime #Woke Anti-White TV shows like these are not there to heal, they are there to hurt and make you fight at each other without any real reason. They want to divide people further into White/POC and they started with destroying family. Just cancel your subscription with ShowTime or any of these woke shows.
My comment below the video:
There is so much tabloid BS on TV and shows like these are one of them and vert aggreesive on you. They try to push you in that direction that your minds will comply with what they want. So you start hating other people you never met and don't know. Terence McKenna once said it very clearly what this type of media is there for:"Stay the fuck away from that tabloid bullshit, reality tv, the news channels feeding you fear and hatred, lulling your unique human consciousness into a materialistic slumber only useful for selfish gain and the aggrandization of the ego which is ultimately an illusion and which will never be satisfied no matter what you buy. This gratification is and will always be transcient, so don’t buy shit you don’t need, don’t hate people you don’t know, and most importantly, don’t spend your precious time on Earth consuming garbage styled as entertainment."
Source: libreddit.kavin.rocks/r/quotes… (reddit proxy)
And:
I won't stop you from chopping of your penis, go ahead and do it. I won't stop you from wearing whatever you want to wear. I won't stop you from where ever you want to stick your dick in, as long as it is with #consent . Enjoy sucking your partner's dick, I don't care. Live your life happily and best way possible. But stop preying on people who feel offended by you (no straight man wants to suck your dick). Rules are universal, respect is ALWAYS earned!
#woke #polyamorous people are fun to watch on #TikTok :
JT asked: When you are the first one and a 3rd persons enters your relationship, do you still feel loved as before?
They want to "normalize" this again, by calling it "natural". No, the most natural human way is to have a #commitment and #monogamous relationship for easily make offspring (children) and also lesser jealousy is created in it.
You cannot fight #racism with racism, you cannot take out a fire with fire.
Best comment so far:
How does this help us all heal/fix things as humans? Personally, I hate no white people - are there things in all races that need fixing absolutely but at the end of the day we all must live on this earth & if we do not come together and ignore the people trying to keep us apart, we will not accomplish so much.
#Woke #LGBTQ groomer Jeffrey is really evil:
I'm a gay millennial male and I hate what the lgbt community has become. They talk down to you and call you all kinds of phobes. It's really annoying.
Even don't try to be an ally of these woke #trans , if you don't agree with them, you are #transphobic #misogynist . And don't accept #cis-gendered , never accept it!
The corridor of allowed (by these crazy leftists) talking points is getting tighter and tighter each year and on an accelerating speed. Start saying "No, I don't agree with you!", don't be afraid to raise your voice, you are not alone. #Trans
Stop doing that, nobody deserves threats for just raising their voice. And it isn't #transphobic at all!
Please never give up speaking for your point of view, with that and that's what they want, to silence you, until #AlJazeera stepped in:
The left is going nuts over this. Did he choose his words wisely? Good or Bad take?
Roland Häder🇩🇪
in reply to Roland Häder🇩🇪 • •Also what this blond trans-woman at the end, very regretful but now it is to late.