LiuShisan123 commited on
Commit
d861b4b
·
verified ·
1 Parent(s): 0869928

上传文件夹

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. .gitattributes +3 -0
  2. Api.py +102 -0
  3. Datasets/Negative CSV/Misandry.csv +617 -0
  4. Datasets/Negative CSV/hatemen.csv +258 -0
  5. Datasets/Negative CSV/hatewomen.csv +92 -0
  6. Datasets/Negative CSV/menaretrash.csv +324 -0
  7. Datasets/Negative CSV/womenarebaddrivers.csv +142 -0
  8. Datasets/Negative CSV/womenarestupid.csv +328 -0
  9. Datasets/Negative Txt/negative1.txt +1 -0
  10. Datasets/Negative Txt/negative10.txt +1 -0
  11. Datasets/Negative Txt/negative100.txt +2 -0
  12. Datasets/Negative Txt/negative1000.txt +1 -0
  13. Datasets/Negative Txt/negative1001.txt +1 -0
  14. Datasets/Negative Txt/negative1002.txt +2 -0
  15. Datasets/Negative Txt/negative1003.txt +1 -0
  16. Datasets/Negative Txt/negative1004.txt +1 -0
  17. Datasets/Negative Txt/negative1005.txt +1 -0
  18. Datasets/Negative Txt/negative1006.txt +1 -0
  19. Datasets/Negative Txt/negative1007.txt +1 -0
  20. Datasets/Negative Txt/negative1008.txt +1 -0
  21. Datasets/Negative Txt/negative1009.txt +2 -0
  22. Datasets/Negative Txt/negative101.txt +1 -0
  23. Datasets/Negative Txt/negative1010.txt +1 -0
  24. Datasets/Negative Txt/negative1011.txt +1 -0
  25. Datasets/Negative Txt/negative1012.txt +1 -0
  26. Datasets/Negative Txt/negative1013.txt +1 -0
  27. Datasets/Negative Txt/negative1014.txt +1 -0
  28. Datasets/Negative Txt/negative1015.txt +1 -0
  29. Datasets/Negative Txt/negative1016.txt +3 -0
  30. Datasets/Negative Txt/negative1017.txt +4 -0
  31. Datasets/Negative Txt/negative1018.txt +1 -0
  32. Datasets/Negative Txt/negative1019.txt +1 -0
  33. Datasets/Negative Txt/negative102.txt +1 -0
  34. Datasets/Negative Txt/negative1020.txt +3 -0
  35. Datasets/Negative Txt/negative1021.txt +1 -0
  36. Datasets/Negative Txt/negative1022.txt +1 -0
  37. Datasets/Negative Txt/negative1023.txt +1 -0
  38. Datasets/Negative Txt/negative1024.txt +1 -0
  39. Datasets/Negative Txt/negative1025.txt +1 -0
  40. Datasets/Negative Txt/negative1026.txt +8 -0
  41. Datasets/Negative Txt/negative1027.txt +1 -0
  42. Datasets/Negative Txt/negative1028.txt +1 -0
  43. Datasets/Negative Txt/negative1029.txt +1 -0
  44. Datasets/Negative Txt/negative103.txt +1 -0
  45. Datasets/Negative Txt/negative1030.txt +1 -0
  46. Datasets/Negative Txt/negative1031.txt +1 -0
  47. Datasets/Negative Txt/negative1032.txt +2 -0
  48. Datasets/Negative Txt/negative1033.txt +1 -0
  49. Datasets/Negative Txt/negative1034.txt +1 -0
  50. Datasets/Negative Txt/negative1035.txt +1 -0
.gitattributes CHANGED
@@ -33,3 +33,6 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ finetuned_model/tokenizer.json filter=lfs diff=lfs merge=lfs -text
37
+ outputs/checkpoint-81/tokenizer.json filter=lfs diff=lfs merge=lfs -text
38
+ outputs/checkpoint-90/tokenizer.json filter=lfs diff=lfs merge=lfs -text
Api.py ADDED
@@ -0,0 +1,102 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from fastapi import FastAPI, UploadFile, File
2
+ from fastapi.responses import JSONResponse
3
+ from fastapi.middleware.cors import CORSMiddleware
4
+ import os
5
+ # 导入 ModelInferenceServe 中的推理函数和 model_manager 实例
6
+ from ModelInferenceServe import process_article_for_inference, model_manager
7
+ # 移除不再需要的导入
8
+ # from ModelInferenceServe import run_inference_on_article
9
+
10
+ # 使用 lifespan 事件管理应用启动和关闭
11
+ from contextlib import asynccontextmanager
12
+
13
+ # 定义 lifespan 函数,用于应用启动时加载模型
14
+ @asynccontextmanager
15
+ async def lifespan(app: FastAPI):
16
+ # 加载模型
17
+ try:
18
+ model_manager.load_model()
19
+ print("应用启动:模型加载成功。")
20
+ except Exception as e:
21
+ print(f"应用启动:模型加载失败: {e}")
22
+ # 如果模型加载失败,可以选择在此处终止应用启动,或记录错误并允许应用继续运行但推理功能可能不可用
23
+ # 为了简单,这里只打印错误并继续
24
+
25
+ yield
26
+ # 在应用关闭时可以进行一些清理工作,例如释放模型资源(如果需要)
27
+ print("应用关闭:清理完成。")
28
+
29
+ # 将 lifespan 函数传递给 FastAPI
30
+ app = FastAPI(lifespan=lifespan)
31
+
32
+ # 配置CORS
33
+ app.add_middleware(
34
+ CORSMiddleware,
35
+ allow_origins=["*"], # 允许所有来源
36
+ allow_credentials=True,
37
+ allow_methods=["*"], # 允许所有方法
38
+ allow_headers=["*"], # 允许所有头部
39
+ )
40
+
41
+ @app.get('/generate') #获取语言模型生成结果
42
+ # 修改接口,调用 process_article_for_inference
43
+ async def generate():
44
+ # 检查模型是否加载成功
45
+ if not model_manager.is_loaded:
46
+ return JSONResponse(
47
+ status_code=503, # Service Unavailable
48
+ content={"message": "模型尚未加载成功,请稍后再试或检查后端日志。"}
49
+ )
50
+
51
+ # 定义要进行推理的文章文件路径 (应与 /upload 保存的文件路径一致)
52
+ article_file_path = "article.txt"
53
+
54
+ # 检查文章文件是否存在
55
+ if not os.path.exists(article_file_path):
56
+ return JSONResponse(
57
+ status_code=404,
58
+ content={"message": f"文章文件未找到: {article_file_path}。请先通过 /upload 接口上传文件。"}
59
+ )
60
+
61
+ # 调用文章处理函数进行推理
62
+ try:
63
+ inference_results = process_article_for_inference(article_file_path)
64
+ return JSONResponse(
65
+ status_code=200,
66
+ content={"message": "推理完成", "results": inference_results}
67
+ )
68
+ except Exception as e:
69
+ return JSONResponse(
70
+ status_code=500,
71
+ content={"message": f"推理过程中发生错误: {str(e)}"}
72
+ )
73
+
74
+ @app.post("/upload")
75
+ async def upload_file(file: UploadFile = File(...)):
76
+ try:
77
+ # 确保文件是txt格式
78
+ if not file.filename.endswith('.txt'):
79
+ return JSONResponse(
80
+ status_code=400,
81
+ content={"message": "只接受txt文件"}
82
+ )
83
+
84
+ # 保存文件到当前目录
85
+ file_path = "article.txt"
86
+ with open(file_path, "wb") as buffer:
87
+ content = await file.read()
88
+ buffer.write(content)
89
+
90
+ return JSONResponse(
91
+ status_code=200,
92
+ content={"message": "文件上传成功", "filename": file_path}
93
+ )
94
+ except Exception as e:
95
+ return JSONResponse(
96
+ status_code=500,
97
+ content={"message": f"文件上传失败: {str(e)}"}
98
+ )
99
+
100
+ if __name__ == "__main__":
101
+ import uvicorn
102
+ uvicorn.run(app, host="0.0.0.0", port=8002)
Datasets/Negative CSV/Misandry.csv ADDED
@@ -0,0 +1,617 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ,Date,User,Tweet
2
+ 0,2022-11-10 11:54:11+00:00,btcMGTOW,"@MasterExile @SandmanMGTOW Once thoroughly #MGTOW, simple conversations can expose the depth of women's willingness to destroy family, negate fatherhood & practice prostitution -with a deep desire for financially raping all men.
3
+
4
+ #Misandry is toxic because #NaturalFeminineHypergamy is fundamentally immoral"
5
+ 1,2022-11-10 08:45:48+00:00,justice4all2023,"@BBCWomansHour @BBCRadio4 Alarming levels of #misandry and discrimination against men promoted by certain media and politicians, when is #BBC going to address #RadicalToxicFeminisim as well????"
6
+ 2,2022-11-10 07:42:10+00:00,justice4all2023,"Alarming levels of #misandry (hatred of men) promoted by certain media and politicians, when is BBC going to report on #RadicalToxicFeminisim??? #R4Today"
7
+ 3,2022-11-10 07:32:23+00:00,justice4all2023,"@BBCRadio4 Alarming levels of #misandry promoted by certain media, when is #BBC going to address #RadicalToxicFeminisim??"
8
+ 4,2022-11-10 04:22:56+00:00,JMugarian,@GovWhitmer Don’t you mean a #misandry-gander? #michiganelection
9
+ 5,2022-11-10 01:14:57+00:00,Yobachi,"Grannies Gone Wild - She Wants To Go Gumming | Men's Minestate Ep 4
10
+
11
+ Man grandma is out of control and she got something for y'all: https://t.co/gEsH7riOjV via
12
+ @YouTube
13
+
14
+ #modernwomen #grannylove #kevinsamuels #misandry #dating #mensdatingadvice #youngwoman #thewinteriscoming https://t.co/lz1W6Ra2JH"
15
+ 6,2022-11-09 21:25:00+00:00,ConradJarrett,"@ToniHargis @CorporalJonesie @DrProudman My ex-wife described my 5 years as the homemaker/parent as:
16
+
17
+ ""unemployed since the girls were born"".
18
+
19
+ Imagine if a man described his wife in those terms!
20
+
21
+ #sexism is not a gendered crime.
22
+
23
+ #equality #misandry #MenToo"
24
+ 7,2022-11-09 18:22:29+00:00,CombatMagic94,"I couldn't believe this wasn't a parody, but here it is...
25
+ #Misandry #DefundTheUN https://t.co/yihhRzS24v"
26
+ 8,2022-11-09 18:04:35+00:00,BagTrick,"@fairplaywomen @BBCRadio4 Good job male politicians don't get smeared.
27
+
28
+ #Misandry"
29
+ 9,2022-11-09 16:05:42+00:00,MenRights_,"What delusion looks like you ask?
30
+
31
+ ""Marriage, Child Custody, Adoption laws are against women""
32
+
33
+ Sad reality -> N-C-W has been just reduced to false narrative spreading, propaganda machine
34
+
35
+ #FeminismIsCancer
36
+ #Misandry https://t.co/gxwLDXsdjo"
37
+ 10,2022-11-09 12:34:35+00:00,woundedbhishma,We are failing our men. छेड़ खानी का मुक़दमा लगाया है। I hope he is still alive . Be #misandry free. https://t.co/ThKJ6VlRUB
38
+ 11,2022-11-09 10:54:43+00:00,YashkaIzFinland,"@FondOfBeetles Ironic how this is a protest by Femen, which is Ukrainian, which never protested against male conscription, but then left in 2014 when their hypocrisy would be pointed out. Now men can't leave Ukraine with the threat of death penalty while women can.
39
+ #Femen #Hypocrisy #Misandry"
40
+ 12,2022-11-09 10:41:24+00:00,crucq,@UN_Women @UNESCO Reported to Twitter for abject misandry. #sexism #misandry
41
+ 13,2022-11-09 06:21:44+00:00,Ritalynman,"Gentlemen, after tonight you should see exactly why it is desperately important to get your shit together and #movealong. It's time to go. #notwanted #redpill #expat #feminism #marriage #relationships #misandry #Family
42
+ https://t.co/sf6Jg7teGp"
43
+ 14,2022-11-09 03:19:26+00:00,Tony_Giles_,"@_ginlane2 @VikkiLax1 @Primark Your response is to insult, this is the clearest sign your point is falicious.
44
+
45
+ You could have just acknowledged and said 'people' rather then men but your persistence just reinforces your #sexism and #misandry"
46
+ 15,2022-11-09 03:04:46+00:00,mens_rights__,@MisandryE #misandry is so casually propagated nowadays. No consequences whatsoever
47
+ 16,2022-11-09 02:32:34+00:00,virginiafenice,"The so called #Misandry is nothing more than #Darvo
48
+
49
+ https://t.co/i0OcElyjej"
50
+ 17,2022-11-09 01:29:49+00:00,scarbo59,"Phil nails it.
51
+
52
+ The Guardian is a print version of our MSNBC: blatant narratives 24/7, all pro-feminism and all anti-male.
53
+
54
+ #Misandry https://t.co/gZTo3xjPvd"
55
+ 18,2022-11-08 22:31:42+00:00,NowItsKnown,"#IndianaJones 5 fails 6 test screenings.
56
+ Indiana Jones gets ""Rey Skywalker'ed"" in his upcoming sequel and that's not going over well with test audiences. #Lucasfilm #Woke #Misandry #LukeSkywalker'ed #thelastjedi #Disney #DisneyPlus
57
+ @doomcock @StarWars
58
+ https://t.co/wy40ByL79E"
59
+ 19,2022-11-08 19:38:17+00:00,TheMachine7253,@YaNanous We're not allowed to say. #notallmen #misandry
60
+ 20,2022-11-08 19:29:27+00:00,BagTrick,"@Atayeshe @UNFPA You should visit the UK. We spend a fraction of the health budget on men... and boys are routinely genitally mutilated with total impunity.
61
+
62
+ #misandry"
63
+ 21,2022-11-08 19:24:30+00:00,justice4all2023,@guardiannews Important story however alarming levels of #misandry (hatred of men) promoted by certain media spreading radical toxic feminism??? #RadicalToxicFeminisim
64
+ 22,2022-11-08 17:36:44+00:00,glenthecreator,"@Black_Action No White Supremacy is ingrained within #WhiteAmerica.Who let this Golden Retriever out using black men as measurement of ingrained Anti-Semitism.Goldie Taylor is a Black Male #misandry doing the bidding of her pay masters.#AntiBlackMale,#AntiBlack,#AntiBlackRacism #BlackMisandry https://t.co/PYg4u4U0Ag"
65
+ 23,2022-11-08 17:09:00+00:00,realDonkeyDong,"Why doesn't Canada have a 'Mens Ministers Meeting'.
66
+
67
+ We need to stop living in such a #misandry type environment.
68
+
69
+ The best part of having a Mens Minsters Meeting would be to have a dialog on how we can work together.
70
+
71
+ We need to stop discrimination policies of the Lieberals. https://t.co/4u7szP0iW6"
72
+ 24,2022-11-08 16:46:47+00:00,ladyofequality,"@TOIMumbai @MLJ_GoI @KirenRijiju please deduct money from monthly salary of this merciless, brutal & inhuman judge towards maintenance
73
+
74
+ #NotMyCJI
75
+ #injustice
76
+ #misandry
77
+
78
+ @Ambar_SIFF_MRA @mieknathshinde
79
+ @narendramodi @AmitShah @AshwiniUpadhyay @MLJ_GoI
80
+ @Adv_pcsharma @jsaideepak
81
+ @KirenRijiju https://t.co/lVEmH1oXrP"
82
+ 25,2022-11-08 13:25:12+00:00,justice4all2023,@BBCWomansHour @JennyTough @BBCNuala Could #BBC please report about alarming levels of #misandry (hatred of men) and certain media spreading radical toxic feminism as well??? #RadicalToxicFeminisim
83
+ 26,2022-11-08 12:51:20+00:00,vermithrax12,"If you thought the LGBT's craze and hate for heterosexual men is new think again. Like everything feminist it was there all along. The gay made a huge mistake to let the lesbian into their movement.
84
+
85
+ https://t.co/Zr42Ri7ucy
86
+
87
+ #Feminism #MensRights #Misandry"
88
+ 27,2022-11-08 12:10:57+00:00,vermithrax12,"The UN was always a feminist organisation. Even before it was founded. It has just become more obvious in recent years.
89
+
90
+ https://t.co/vnvO3qhMd8
91
+
92
+ #Feminism #MensRights #Misandry"
93
+ 28,2022-11-08 12:08:05+00:00,JECallaghan1,"@men_are_human This is the real epidemic.
94
+
95
+ #FalseAllegations
96
+ #abuse #Misandry
97
+ #litigationabuse"
98
+ 29,2022-11-08 11:01:02+00:00,vermithrax12,"Lesbian feminist – who likes them young – denies biology. In the end biology got her: She didn't reproduce.
99
+
100
+ https://t.co/FCr8Glc0bS
101
+
102
+ #Feminism #MensRights #Misandry"
103
+ 30,2022-11-08 10:41:02+00:00,justice4all2023,@BBCWorld Men are victims of stalking as well. When is BBC going to report about #misandry (hatred of men) promoted by certain media and radical toxic feminism?? #RadicalToxicFeminisim
104
+ 31,2022-11-08 10:22:12+00:00,woundedbhishma,Sheer incompetence. Framing of innocent men written all over . Be #misandry free .. https://t.co/t0M7HfdOjc https://t.co/zRDQtDmi0M
105
+ 32,2022-11-08 09:59:44+00:00,vermithrax12,"Feminist lying in her own autobiography. Colour be surprised.
106
+
107
+ https://t.co/nX1TS7rxt8
108
+
109
+ #Feminism #MensRights #Misandry"
110
+ 33,2022-11-08 09:56:23+00:00,woundedbhishma,Prosecution could not even prove that Red Indica driven by Rahul was same Indica which was used for kidnapping . Some woke women for their own convoluted interests now questioning well reasoned judgement . Be #misandry free . Be after criminals not men. https://t.co/vbkBWOtxVh https://t.co/fKIpIEr7Kq
111
+ 34,2022-11-08 09:12:39+00:00,GreyGalaxie,Is anyone else counting down the days till woman rise up and make men our slaves? Below let’s tag a few men that deserve to be totally dominated and exactly what their ‘position’ in our fictional female empire. I propose a Cast System. #misandry #fictionalfemaleempire
112
+ 35,2022-11-08 09:12:34+00:00,vermithrax12,"(2nd wave) Feminist conjecture: Only heterosexual white men can rape.
113
+
114
+ Everybody else is just a victim of heterosexual white men.
115
+
116
+ Again, no surprise here.
117
+
118
+ https://t.co/OycC8kvndv
119
+
120
+ #Feminism #MensRights #Misandry"
121
+ 36,2022-11-08 08:52:01+00:00,abparchitects,"@Iromg Had to go on YouTube and listen to her song. Nice tune but the lyrics nothing but #misandry
122
+ Not a word we hear much of."
123
+ 37,2022-11-08 05:08:55+00:00,glenthecreator,"Remember when #Democrats lose they will go to with they know #BlameBlackMen as the scapegoat although #BlackMen are the largest voting bloc of the #DemocraticParty.#ElectionDay,#Election2022,#Vote2022,#MidtermElections2022,#Midterms2022 #AntiBlackRacism #BlackMisandry,#Misandry https://t.co/RoUEEIEke8"
124
+ 38,2022-11-08 03:39:18+00:00,Bharat10484365,"सही कहते हैं साहब वितेश अग्रवाल जी ही नहीं हिंदुस्तान के लाखों पतियों के साथ ऐसा होता है
125
+ https://t.co/QYDUcHcsLn…
126
+ । कानून निर्माता, न्यायपालिका, मीडिया, समाज ने हमेशा पुरुषों की चुप्प करके और पुरुषों पर घरेलू हिंसा बढ़ने पर चुप्पी साध लेते हैं। Be #Misandry FREE https://t.co/KJdeu561j7"
127
+ 39,2022-11-08 03:23:47+00:00,Yobachi,"They want a real man, but they're fake as hell from head to toe. Modern Women Are A Lie - See How: https://t.co/hrOT0F6LO9
128
+
129
+ #modernwoman #misandry #dating #mensdatingadvice #mensdating #mensmindstate #stripperlife #stripperculture #love #manosphere #kevinsamuels #relationships https://t.co/RS04D0ejYK"
130
+ 40,2022-11-08 02:59:35+00:00,thedockerdave,"@abcnews “His victims were all Muslim and included children, women and the elderly.”
131
+
132
+ It’s 2022 and we still have an inferred narrative that men are somehow a more legitimate target than women, children or elderly and that the murder of a man is a less heinous crime #sexism #misandry"
133
+ 41,2022-11-08 02:56:59+00:00,ProudAutistic,"@namegoeshere225 @sbaprolife @TudorDixon Only half? Yet you believe men who are raped by women should be forced to pay 18 years of child support. #misandry
134
+
135
+ Actually not even half. What about the rights of people like my mother not to be involuntarily dismembered? https://t.co/jdt3pjqECc"
136
+ 42,2022-11-08 02:22:34+00:00,pagan_revenge,"@notthatspoon @RowanLovecraft @RogueDevil9 @_vish_ @GadSaad We Gay Men said: ""NO MORE PRIDE FOR TRANS!
137
+ THEY DO NOT RESPECT US!
138
+ THEY HATE US FOR BEING MEN!""
139
+ #MISANDRY
140
+ #LGB
141
+ #NOPRIDEFORTRANS https://t.co/Ax2riPiZB1"
142
+ 43,2022-11-08 02:20:33+00:00,Tony_Giles_,@VikkiLax1 @Primark Your point may be of merit at it'd core but calling 'men' 'predatory' rather than 'people' is #sexist #misandry
143
+ 44,2022-11-07 22:04:46+00:00,Yobachi,"Grannies Gone Wild - She Wants To Go Gumming | Men's Minestate Ep 4
144
+
145
+ Man grandma is out of control and she got something for y'all: https://t.co/gEsH7riOjV via
146
+ @YouTube
147
+
148
+ #modernwomen #grannylove #kevinsamuels #misandry #dating #mensdatingadvice #youngwoman #thewinteriscoming https://t.co/GOF8yMfFF1"
149
+ 45,2022-11-07 20:17:08+00:00,HexTShare,"@lungached #misandry.
150
+
151
+ and u can't debunk the truth and statistics he shares showing #both men and women get abused.
152
+ not just ""women""
153
+
154
+ stop being only one-sided. be Fair."
155
+ 46,2022-11-07 19:36:07+00:00,OvertIntent,@GioBruno1600 #Misandry
156
+ 47,2022-11-07 18:37:54+00:00,swarup1972,"शादी के बाद जब पत्नी ने अपना असली रूप दिखाया | Vitesh Agarwal | Josh Talks Hindi
157
+ https://t.co/JByzTpDl8k
158
+ Such story millions of Husband of India. Law makers, Judiciary, Media, Society taken granted the silence of Men & Domestic Violence On Men increasing. Be #Misandry FREE 🙏🙏"
159
+ 48,2022-11-07 18:35:46+00:00,realDonkeyDong,"@TimEastCoast How the hell is that misogynistic?
160
+
161
+ You are blatantly suffering from #Misandry !
162
+
163
+ The employees of the local school are males. Take off that crap covered lens. Not everything is sexist."
164
+ 49,2022-11-07 17:11:38+00:00,ImjustGennyXX,"Keep
165
+ Prisons
166
+ Single
167
+ Sex
168
+
169
+ #kpss #WomanFace #transwomenaremen #protectvulnerablewomen #respectoursex #standingforwomen #standingforhumanity #misandry #sexualabuse #sexualpredators #sexmatters #keepprisonssinglesex #WomensRightsAreHumanRights #letwomenspeak https://t.co/h2UBABzkiZ"
170
+ 50,2022-11-07 16:47:17+00:00,woundedbhishma,https://t.co/3LvEuODIUo - Three innocent men sentenced to death for murder . Freed by SC. Be after criminal but not after men. Scathing remark against lower judiciary. Be #misandry free. https://t.co/KuQtSzActQ
171
+ 51,2022-11-07 16:37:09+00:00,realDonkeyDong,"@KamalKheraLib @madamepremier @sarahelder Stop the #misandry
172
+
173
+ Mean are very capable for the jobs and gender should not be even looked at when hiring."
174
+ 52,2022-11-07 16:35:39+00:00,Yobachi,"Black Women Hurt Over PassPort Bros. They trying to scare men into wanting them now with lies about foreign countries. Boy they wild. Gotta here this one: https://t.co/fvfFGiIsia
175
+
176
+ #bigmad #dating #travel #mensdatingadvice #mentraveling #relationships #solotravel #misandry https://t.co/6Nf607qruY"
177
+ 53,2022-11-07 16:25:51+00:00,AngryBi89888931,"@KJNickalls @forbiddenmuum It’s clear you know nothing about this case beyond some cherrypicked, out of context twitter threads
178
+ You cannot refute any of the instances of violence from Amber. You put your fingers in your ears and come back with bullshit. Not wasting anymore time engaging with you.#Misandry"
179
+ 54,2022-11-07 16:10:09+00:00,pauladamkeegan,"And that is why you are gone, for #misandry. A 'cause' that continually belittles men as inferior and 'why are women the only one with bollock?' You can tell you're inexperienced at this shit, whether you are well travelled or whatever. The tone is wrong and you project fallacy."
180
+ 55,2022-11-07 16:03:33+00:00,pauladamkeegan,#misandry https://t.co/8lNn3TswQs
181
+ 56,2022-11-07 15:16:54+00:00,CountessDracul9,@Alyssa_Milano #metoodefamation is just as bad. Women romance scammers cry wolf just to try to get money out of victims if they can't swindle it out of simps. #misandry is just another form of rightwing.
182
+ 57,2022-11-07 13:38:45+00:00,quithypocrisy,"@ipsvijrk Don't learn. Just enjoy the consequences of your occassional #Misandry
183
+ 🔴🔵👇👇
184
+ https://t.co/BPjTaS48y2"
185
+ 58,2022-11-07 13:19:06+00:00,GeoBalthazaar,"@tweetinjules @MeganM4Kids @RosCroucher @MelbLawSchool @savechildrenaus EXCEPTIONAL is the right word. @MeganM4Kids made boys an EXCEPTION to inalienable genital autonomy rights rule. @AusHumanRights says FGM is wrong. @esantow said cutting intersex baby genitals is wrong. So FGM & IGM wrong, but MGM right?
186
+ #sexdiscrimination
187
+ #misandry
188
+ #circumcision"
189
+ 59,2022-11-07 06:26:43+00:00,AValiji,@jssmills How's that James? Seems like #misandry is celebrated! I wonder what @jordanbpeterson would make of how un-popularised this is and why?
190
+ 60,2022-11-07 03:20:41+00:00,askboomer1949,"From @adndotcom
191
+ My long experience and exposure to the #StateCommissionforHumanRights, the #AnchorageEEO and the #StateofAlaskaDepartmentofAdministration and its #DivisionOfPersonnel is one of systemic #misandry #WhiteMenStereotypes #racism #WhiteMansWordIsDismissed #ManHaters
192
+ Rt https://t.co/II6hMLDQpD"
193
+ 61,2022-11-07 02:55:19+00:00,swarup1972,PS : Who are #MonkeyDancers ? Those who start dancing on the news of any #rapecase & shout punishment without prove or use brain the same allegation true or false . Be #Misandry Free
194
+ 62,2022-11-06 23:52:42+00:00,jssmills,Mmmm... amazing how we hear a lot about #misogyny and not much about #misandry. https://t.co/86OG9KDx1w
195
+ 63,2022-11-06 20:57:42+00:00,FamilyMan_berl_,"Yet Mark didn’t say..
196
+
197
+ “I’d love an example of anti-women hate that isn’t asking women to NOT to be misandrists”..
198
+
199
+ Search on twitter for KAM and confirm you won’t give excuses and whataboutery.
200
+
201
+ #Misandry https://t.co/ZatXb0j4O7"
202
+ 64,2022-11-06 20:45:48+00:00,ConradJarrett,"@ShowUsYourData @jazzyj2022 @DrProudman Do you have peer-reviewed evidence to support your claim?
203
+
204
+ Meanwhile, perhaps we ought to shout out #NotAllMothers?
205
+
206
+ #AbuseHasNoGender #MenToo #NotAllMen #Misandry https://t.co/MS6CJYPOhz"
207
+ 65,2022-11-06 20:03:38+00:00,DesiZorba,"@Renuka9907 @Ambar_SIFF_MRA I have a dream that one day we shall be free from #FemaleChauvinism
208
+ #FemaleVictimHood
209
+ #Misandry https://t.co/q0lhobcU2J"
210
+ 66,2022-11-06 18:54:25+00:00,melliflora,"@sbjlong @Marcus0548 @PhilMitchell83 @GwenEvaBearLuvs @HelloFade55 @EndWokeness @men_are_human @SarahKWilliam @Oneiorosgrip @MisandryE Billion$ in public funding goes to women-only shelters despite rates of nonreciprocal domestic violence being known to be roughly equal.
211
+
212
+ But here is what happens when a man attempts to open a shelter for battered men.
213
+
214
+ https://t.co/RYyDqKFC8T
215
+ #misandry #dv #DomesticViolence"
216
+ 67,2022-11-06 17:40:05+00:00,Jackncyberspace,"@MandhaniApoorva @ShekharGupta
217
+ When India imported DV law from US, they changed the gender neutral law and made it useful only for #Women.
218
+ Why is there no editorial criticism for the same?
219
+ Why does the @ThePrintIndia only gives out opinion demonizing men?
220
+ #Misandry #NotMyCJI https://t.co/bwprHG0MQC"
221
+ 68,2022-11-06 15:15:46+00:00,hotbubble,"Wir können Männern leider nicht helfen weil sich sonst Frauen aufregen würden…
222
+ #Misandry
223
+ #Misandrie https://t.co/CuMj4d8cv1"
224
+ 69,2022-11-06 15:15:39+00:00,woundedbhishma,Power to women above their head. Must be tackled surgically . Be #misandry free. https://t.co/KdN6Fkwajd
225
+ 70,2022-11-06 10:04:21+00:00,rosacruz7,"@DrProudman Really?
226
+ It is Rihanna's show. It has been for years.
227
+ #Rihanna is HER own boss. She does as she wants.
228
+ She wanted a fellow DV survivor - #JohnnyDepp in her show.
229
+ She has no time to put up with your #misandry and #misogyny. Give it a rest."
230
+ 71,2022-11-06 09:17:14+00:00,BWitchchick,"@bootleg_gene @bcc37a7e9271403 Dear God that is twisted!
231
+ #misandry"
232
+ 72,2022-11-06 01:10:15+00:00,Cinnamon_Girly,"@DrProudman Why is it that ALL ScAmber Turd supporters hate men?
233
+ #MISANDRY"
234
+ 73,2022-11-05 21:10:40+00:00,vermithrax12,"@Brick28962302 @GretaAurora @v_4_vernon Of course they are man hating feminist. Sure they might be with a man. But not for love. For utility. To satisfy their sexual and financial desires.
235
+
236
+ Nothing they posted surprised me. It was all right from the #misandry reference manual."
237
+ 74,2022-11-05 20:50:35+00:00,NbN_8321,"The pursuit of inequality is mental masterbation.
238
+
239
+ The pursuit of inequality is the road to a nation's suicide.
240
+
241
+ The pursuit of inequality is the wraponization of compassion.
242
+
243
+ #Marxism #Leninism #tyranny #Communism #identitypolitics #Corruption #feminism #misandry"
244
+ 75,2022-11-05 19:21:29+00:00,JamieDalgety,@TheFigen_ Wait for? #Misandry... yeah when #woman go too far it’s also called a #toxic - #feminist. #Gentlemen didn’t fight two #WorldWars on the front line for this #gender #nazi #bullshit either! Be a #lady bit a over #entitled #bitch #FACT https://t.co/e0tVa80r4m
245
+ 76,2022-11-05 18:16:04+00:00,Alpha_IQ,"#misandry
246
+ WOMEN Leave MEN 80% Of The Time.🥺❤️ https://t.co/khxZawpr74 via @YouTube"
247
+ 77,2022-11-05 17:35:36+00:00,rewkou,"@sabihoes as we grow up, our hatred for men also grows stronger. #misandry"
248
+ 78,2022-11-05 15:08:29+00:00,lollingthrough,"@pushpathak Why not equal contribution @pushpathak
249
+ #misandry"
250
+ 79,2022-11-05 14:50:48+00:00,TheGeneration95,"UN Women promote misandry...
251
+ https://t.co/XYumOs5xn3
252
+ #misandry #menhaveproblemstoo #mensrights #equality #feminism #men #mentoo #mensmentalhealth #mentalhealth #inequality #journalists #endimpunity #sexism"
253
+ 80,2022-11-05 14:48:45+00:00,TheGeneration95,"The Blatant Misandry of ""UN Women"": When will this end? https://t.co/XYumOs5xn3 #misandry #menhaveproblemstoo #mensrights #equality #feminism #men #mentoo #mensmentalhealth #mentalhealth #inequality #journalists #endimpunity #sexism https://t.co/pUjDhKjg15"
254
+ 81,2022-11-05 14:26:59+00:00,FamilyMan_berl_,"So this NNN trend by feminists isn’t #Misandry ?
255
+
256
+ #NNN"
257
+ 82,2022-11-05 09:56:50+00:00,VincentWagner_,#Sexism #WarOnMen #Misandry #CulturalMarxism https://t.co/ssMcRg7bdB
258
+ 83,2022-11-05 09:53:30+00:00,MyRightsMyLife,"शादी तभी करना जब अपना पूरा खर्च और घर का आधा खर्च उठा सको। क्यू की आपका जीवन संगी कोई एटीएम मशीन नही है।
259
+ #FeminismIsCancer
260
+ #golddigger
261
+ Be #Misandry free https://t.co/LI4kSFw1su"
262
+ 84,2022-11-05 07:11:11+00:00,S_sneha_9,"Thanks for speaking up the fact. 👍
263
+ Kuch logon ko lagta hai. Chauvinist & misogynist bol denge to cool lagenge. Just to degrade a Vocal man,But they also forget that there is also a word #Misandry.
264
+ If we use that then they'll say how can u use that word 🤷‍♀️#BiggBoss16 #biggboss https://t.co/42hQ1RB6kK"
265
+ 85,2022-11-05 05:15:32+00:00,Fake498aVictim,"#herd #mentality or #doublestandards or simply consequence of #nepotism in #Indian #courts?
266
+ @KirenRijiju pls spell the law before #cji #massacres entire #male #population by #misandry
267
+ @MLJ_GoI pls promote #genderequality n have inclusive policies n laws!
268
+ @HMOIndia @PMOIndia @hrw https://t.co/rIaUkFXqe5"
269
+ 86,2022-11-05 04:10:48+00:00,JuliaDixon1949,"@Hannahwalters0 @s_kai_s0 Or they just plain hate men because they can't get one on account of their toxic personalities.
270
+
271
+ #misandry"
272
+ 87,2022-11-05 02:49:38+00:00,gk5022_raj,"@barandbench Melords have surrendered infront of feminists and maybe they would be doing adultery ,and forced to give verdict in favour of women. #GenderBiasedLaws
273
+ #AntiFeminist #antifeminism #misandry
274
+
275
+ Jald melord bhi under ja sakta hai adultery me ."
276
+ 88,2022-11-04 23:48:32+00:00,lars_leonhard,"And after blocking me, she continued to harass & bad mouth me - again for stating a fact. And lied about ""repeated warnings"".
277
+ Is this really where discourse is in 2022? Just creating safe spaces & echo chambers and tearing down people with your platform! + look at the #misandry https://t.co/ZNNYzelTkK"
278
+ 89,2022-11-04 18:24:36+00:00,cantstopmenowww,"Hands off the goods lady! I know this feeling too well.
279
+ #Misandry https://t.co/GE3ystMsNC"
280
+ 90,2022-11-04 18:13:52+00:00,libertarian,"@UN_Women @UNESCO Stop targeting women, target men! Kappa. Why not just be against killing journalists in general? #misandry"
281
+ 91,2022-11-04 17:40:28+00:00,wavehit,"@narendramodi @HMOIndia @MoHFW_INDIA can we please have an NCM India on the lines of @NCWIndia to help with crimes against men like such mutilating attacks, harassment, stalking & false rape & dowry cases? #Misandry is as bad as Misogyny for the society & country. #Equality https://t.co/d0ZnqLNamj"
282
+ 92,2022-11-04 16:42:58+00:00,RxRedpill,"Radical Feminist #katybrent wrote a VILE book: titled #HowToKillMenAndGetAwayWithIt.
283
+
284
+ This is an extremely misandrist book that glorifies violence against men! Here is our response and how you can take action against anti male hate speech.
285
+
286
+ #misandry
287
+
288
+ https://t.co/5S5mUkHfEi"
289
+ 93,2022-11-04 15:54:28+00:00,vermithrax12,@NicolaRidler5 @ukhomeoffice @10DowningStreet @GEOgovuk @MoJGovUK @NimkoAli coercive control is something women do as well. Even more so then men. Why should men and boys not be protected. #misandry
290
+ 94,2022-11-04 15:52:01+00:00,vermithrax12,@NicolaRidler5 @ukhomeoffice @10DowningStreet @GEOgovuk @MoJGovUK @NimkoAli So violence against men and boys is just fine. #misandry
291
+ 95,2022-11-04 15:49:44+00:00,vermithrax12,"@MorningstarMed4 @ukhomeoffice @10DowningStreet @GEOgovuk @MoJGovUK @NimkoAli So men and boys don't need to be save. #misandry
292
+
293
+ Not at all a step in the right direction."
294
+ 96,2022-11-04 15:46:52+00:00,vermithrax12,"So there is a place in your society for acts of violence against men and boys.
295
+
296
+ The UK home office is sexists and makes posting which are #misandry.
297
+
298
+ I quote retweet because i disagree. https://t.co/K8VNgVfo6m"
299
+ 97,2022-11-04 15:45:25+00:00,vermithrax12,"@ukhomeoffice @10DowningStreet @GEOgovuk @MoJGovUK @NimkoAli So there is a place in your society for acts of violence against men and boys.
300
+
301
+ You are sexists and this posting is #misandry."
302
+ 98,2022-11-04 15:43:24+00:00,Zuniee3,"@MenRightsIndia If wife claims as “Poor” despite being NRI, #MiLords will come up with 10 different interpretations for Poor word.
303
+ #Misandry"
304
+ 99,2022-11-04 15:17:02+00:00,Yobachi,"Grannies Gone Wild - She Wants To Go Gumming | Men's Minestate Ep 4
305
+
306
+ Man grandma is out of control and she got something for y'all: https://t.co/gEsH7riOjV via
307
+ @YouTube
308
+
309
+ #modernwomen #grannylove #kevinsamuels #misandry #dating #mensdatingadvice #youngwoman #thewinteriscoming https://t.co/wuvxSlmMZ2"
310
+ 100,2022-11-04 15:08:46+00:00,JECallaghan1,"#Misandry | #misogyny | #abuse
311
+ __________________________________
312
+
313
+ 🌐⚠️👉.....""We're asking that misandry is considered just as unacceptable as misogyny is""......
314
+
315
+ 👇🏼👇🏼👇🏼👇🏼👇🏼👇🏼👇🏼👇🏼👇🏼👇🏼👇🏼👇🏼 https://t.co/kUItaJmUfM"
316
+ 101,2022-11-04 14:51:23+00:00,COVIDcarditis,@UN_Women @UNESCO #misandry
317
+ 102,2022-11-04 12:38:42+00:00,EveStobbe,"Why do these #WhisperConfessions make me laugh so much? Because they're shocking to me! #Misandry is taboo. Or was.. I love these girls!!
318
+
319
+ #Women #WomensRightsAreHumanRights #Feminism #FEMINISTAS #Misogyny #Patriarchy #RoevemberIsHere #RoeVWade
320
+
321
+ https://t.co/2XnAK8nNZz https://t.co/T0kBNxmPK3"
322
+ 103,2022-11-04 08:01:05+00:00,FormelEtt,@UN_Women @UNESCO #Misandry #sexism #hatespeech
323
+ 104,2022-11-04 06:01:54+00:00,Gwen6930,"So @Froskurinn takeaway was #HenryCavill dating a 19yr old. I only hope she necer dated anyone younger because at one time they were at a stage in life to make her look bad. This is her pure #Hatred towards #Men in general, term is called #Misandry its what cost @G4TV everything https://t.co/GMni19hlDR"
324
+ 105,2022-11-04 05:05:55+00:00,dogeatpickle,#misandry #butnotreallymisandry https://t.co/8oBLGhwkLw
325
+ 106,2022-11-04 04:47:41+00:00,Tony_Giles_,@liyanafem It's obvious you have a #sexism #misandry problem
326
+ 107,2022-11-04 04:44:23+00:00,oldpepsi69,@liyanafem #misandry reported.
327
+ 108,2022-11-04 02:59:48+00:00,uttkarsh81,"Why are you crying @sharmarekha ?
328
+
329
+ Action should be taken against females who are filing #FalseCases
330
+
331
+ Stop this #MISANDRY
332
+
333
+ SAY NO TO #RadicalFeminism https://t.co/BtFzVDldLl"
334
+ 109,2022-11-04 02:59:20+00:00,Zuniee3,"This #MyLord Ghata
335
+ Justice for Indian #Men is a myth
336
+ Jab Tak judiciary main #Misandry hai aadmi Chu*** bante rahnge https://t.co/Ria8Z2N2xv"
337
+ 110,2022-11-04 00:47:52+00:00,hotbubble,"@UN_Women @UNESCO #misandry
338
+ #Misandrie"
339
+ 111,2022-11-04 00:10:02+00:00,teabagginsSr,"Why is @malika_andrews on @espn? We are tired of watching this untalented hack letting us know she hates men. Let her be an extra in a gremlins movie. She's perfect for that.
340
+
341
+ #Accountability
342
+ #WokeTARD
343
+ #misandry
344
+ #HateWontWin"
345
+ 112,2022-11-03 23:56:20+00:00,H8rryH,"What the hell is this? So 89% of journalists being killed are male, but this should be higher? The lives of male journalists don't matter? What is happening 😨 #UNwomen #misandry #equality #mensrights https://t.co/5tg33eUorQ"
346
+ 113,2022-11-03 21:58:00+00:00,KinoGate,This is disgusting reporting @9NewsAUS - why specifically only highlight the Dad’s role and minimise the MUM’s role? That poor baby was killed by both parents! #auspol #misandry #revolting so bad even the journo hides their name. Shame on you! #agendapushing https://t.co/WeaWCnc6SW
347
+ 114,2022-11-03 20:27:51+00:00,Yobachi,"They want a real man, but they're fake as hell from head to toe. Modern Women Are A Lie - See How: https://t.co/hrOT0FoncJ
348
+
349
+ #modernwoman #misandry #dating #mensdatingadvice #mensdating #mensmindstate #stripperlife #stripperculture #love #manosphere #kevinsamuels #relationships https://t.co/vfiKYgI2rG"
350
+ 115,2022-11-03 19:01:51+00:00,RationalistF,"No one's talking about the real #gendergap
351
+
352
+ https://t.co/7giMfBlVLF
353
+
354
+ #misandry in the West is pushing men out or encouraging them to work as little as possible.
355
+
356
+ What a shame."
357
+ 116,2022-11-03 18:32:05+00:00,Ronbutchron,@ShamsCharania #misandry #whitewomenmisandry
358
+ 117,2022-11-03 18:22:31+00:00,scarbo59,"And I've also seen stories where the husband wants to dump his wife who's really let herself go and he's dragged for miles.
359
+
360
+ #DoubleStandards
361
+ #Misandry
362
+
363
+ https://t.co/CUu93clk6c"
364
+ 118,2022-11-03 15:51:39+00:00,KarolStudzinski,"@UN_Women @UNESCO Just to be clear:
365
+ You’re OK with journalists being killed, as long as they’re male?
366
+
367
+ According to you 89% of killed journalists are male.
368
+ @UN_Women, what is wrong with you?
369
+ How in the world you see women targeted?
370
+
371
+ You seem like an organization that wants to represent #misandry!"
372
+ 119,2022-11-03 15:14:30+00:00,Yobachi,"Woman says she's not marriage material because she says she's got skills men don't deserve. But is being a bald headed solider and sketching really skills men are missing out on? See for yourself: https://t.co/gnTXyjwfMK
373
+
374
+ #dating #mensdatingadvice #love #relationships #misandry https://t.co/5K3x2PCs2O"
375
+ 120,2022-11-03 14:54:07+00:00,ek_tou_kanapeos,"""Και δεν θα σταματησουμε παρα μονο οταν 4 στους 4 ειναι αντρες""
376
+ 🤡🤡🤡🤡
377
+
378
+ #αορατοι_αντρες
379
+ #misandry https://t.co/ANQ4ZNoSL4"
380
+ 121,2022-11-03 13:40:13+00:00,maverickmaharaj,"In simple terms women can have consensual sex and then magically realize that they had been abused after years! 🤯
381
+ Disclaimer: I don't know the full history of these ppl, but clearly making men to be villains seems to be a virtue nowadays. Men are by default villains ⁉️ #Misandry https://t.co/tRDScphpTu"
382
+ 122,2022-11-03 11:10:37+00:00,woundedbhishma,"Hence clear , there is no logic to matrimonial cases. Hon’ble SC is leading light of feminist movement. Be #misandry free. https://t.co/8KXWBLl0IK"
383
+ 123,2022-11-03 10:51:54+00:00,woundedbhishma,Agitating against the law. Police in any case was supposed to file 182/211. Be #misandry free. https://t.co/bjQ0hIE0Tb
384
+ 124,2022-11-03 05:44:03+00:00,GaryScottKadet,"Yes, we know. The cheapest, cheesiest genre fiction only. NO literary fiction. Public-domain plagiarism encouraged. At least you took down your gender and ethnic requirements. Still, it should be known that only BIPOC LGBTQ women need apply. #MSWL #amquerying #misandry https://t.co/WmbaNDBdM1 https://t.co/vzttbxYTap"
385
+ 125,2022-11-03 04:59:56+00:00,vermithrax12,"Yes @UN_Women and by extension the UN did it again.
386
+
387
+ To think that there was a time i thought the UN is a positive force for humanity. How naive i was.
388
+
389
+ #misandry https://t.co/SJ6o31c1RT"
390
+ 126,2022-11-03 04:47:48+00:00,vermithrax12,"Yes, @UN_Women hates men. Yes, dead men are not a tragedy.
391
+
392
+ #misandry #BlackPill https://t.co/QcfWbtXpwH"
393
+ 127,2022-11-03 04:47:28+00:00,vermithrax12,"@GenderParityUK @UN_Women @UNESCO Yes, @UN_Women hates men. Yes, dead men are not a tragedy.
394
+
395
+ #misandry #BlackPill"
396
+ 128,2022-11-03 04:19:06+00:00,siksounz,"@espn Why is ESPN allowing Malika Andrews to keep going after Ime Udoka, but not the other married consenting adult who also worked within the Celtics organization, that fired him but not her? Why not the other participant also? Udoka should sue ESPN & Andrews! #Misandry"
397
+ 129,2022-11-02 23:06:28+00:00,smithy_kay,"@oliviachow @fordnation Yeah, this is actually not about what's between your legs. You want to talk gender? Service attendants, overwhelmingly male, make $15/hr for a total of $31, 200 per year. What's your take on that? Or men don't matter? #misandry #onted #enoughisenough #cdnpoli"
398
+ 130,2022-11-02 21:51:18+00:00,DonegalPol,"https://t.co/YIANqHcia7
399
+
400
+ Irish Times Article did not involve one #parentalalienation victim yet relies on @survivorsinform Feminist organisation whose ideology states 96% of all abuse is undertaken by MEN! #misandry and that the only abusers will benefit from #PA being addressed"
401
+ 131,2022-11-02 19:55:47+00:00,vermithrax12,"@furcoatgal @ingerjolund @DrProudman That is precisely what a misandrist would say.
402
+
403
+ #misandry"
404
+ 132,2022-11-02 18:57:36+00:00,Abhishe62066713,#mentoo #misandry #Movember2022 https://t.co/4xXpTzFA8E
405
+ 133,2022-11-02 16:26:41+00:00,VIRGILFRAZIER20,"#Misandry is out of control in the #US!
406
+ The question we should be asking is: why!!! https://t.co/4s9cpaOA02"
407
+ 134,2022-11-02 06:52:53+00:00,yannis_z6,"@paullavellefoun @mariasyrengela @NLinGreece @PressGreekEmbas @UN_MenAndBoys @jan31_idevamb @KousoulosPetros @GEqualists @eige_eu @BotForEquality @labourgovgr s(h)ame for @canadagovernme1
408
+ @USAGov
409
+ @GOVUK
410
+ @AustraliaGov
411
+ @eige_eu
412
+ @Europarl_EN
413
+ @EP_GenderEqual even
414
+ @antonioguterres and @UN_Women
415
+ & @mariasyrengela @govgr and
416
+ @labourgovgr ..that must be expressed! #depression #CancerAwareness #mentoo #misandry #men #MentalHealthAwareness"
417
+ 135,2022-11-02 06:48:37+00:00,yannis_z6,"@GreensonAlex s(h)ame for @canadagovernme1,@USAGov, @GOVUK, @AustraliaGov, @eige_eu @Europarl_EN @EP_GenderEqual even @antonioguterres and @UN_Women & @mariasyrengela @govgr and @labourgovgr .. that must be expressed! #misandry #CancerAwareness #mentoo #misandry #men #MentalHealthAwareness"
418
+ 136,2022-11-02 06:02:59+00:00,yannis_z6,@labourgovgr @mariasyrengela @PresidencyGR @jan31_idevamb @MaleChildcare @koninklijkhuis @MaleVictimsDA @PhilMitchell83 @NLinGreece @PressGreekEmbas @UN_MenAndBoys @male_bps @MenToo2020 @GEqualists @eige_eu @BotForEquality @MensAdvisoryP @UNHumanRightsEU @CoE_HRightsRLaw @coe @EURightsAgency @BoRefec @UKMensDay @CommissionerHR @The_RomaArmy @govgr @kmitsotakis @K_Hatzidakis @nkerameus @androulakisnick @hamogelo #misandry @MisandryE @DrJennyMackay @mensmenthealth @MalePsychology @drwarrenfarrell @DrDMGriffith @StephenTierneyX @SeagerMJ @stuart268 @SaveYourSons @MAN_IN_DERRY @SofaMVT @elegantorthelog @PeaceAn40962730 @FAWjusticewatch @wifeoffalselyac @GH20live11 @men_are_human @Stop_P_A
419
+ 137,2022-11-02 03:21:18+00:00,Zuniee3,"God bless these jawans.
420
+ Let’s hope that women doesn’t file #fakecases of molestation on jawans.
421
+ #Misandry https://t.co/IC2XJ7s2r3"
422
+ 138,2022-11-01 21:33:50+00:00,aholaelliv,"🤔🤔
423
+ #miesviha #misandry https://t.co/BJ5ibKNWNy"
424
+ 139,2022-11-01 18:50:05+00:00,MKMartinWriter,"@StudentsforLife Women are adults.
425
+
426
+ Adults have been born and live through childhood, puberty, and adolescence.
427
+
428
+ There is no such thing as unborn or preborn women, just as raping a child isn’t having sex with an underage women.
429
+
430
+ And why do you only want to protect female fetuses? #misandry"
431
+ 140,2022-11-01 18:27:10+00:00,mensmenthealth,"#GammaBias So important to understand #male negative attitudes (and #misandry), even among males themselves! https://t.co/9TcRSeLX5W"
432
+ 141,2022-11-01 15:20:07+00:00,sarahcam3ron,Men are Human is a misogynist account pretending to be fighting for the rights of boys/men when in fact it's pitching them against women. The new misogyny aims to silence/degrade women often using #misandry. Instead of uniting against Capitalism/Patriarchy they go after women. https://t.co/GMl9pI5qd3
433
+ 142,2022-11-01 11:05:53+00:00,1995_vipin,"@FamilyMan_berl_ @voiceformenind Soon corporation are going to find out their baised #misandry equality programs going to back fire them.
434
+
435
+ As #MRA we should expedite this process by creating awareness and exploitation normal cases"
436
+ 143,2022-11-01 10:47:11+00:00,gk5022_raj,"A murderer and cold blooded criminal is still called ""smart girl and rank holder. Reverse the gender "" he would have been named and shamed by media ,he would be rapists ,murderer ,misogynist etc.
437
+ #AntiFeminist #Misandry #crime https://t.co/I1MANYcxOZ"
438
+ 144,2022-11-01 10:45:46+00:00,gk5022_raj,"@voiceformenind A murderer and cold blooded criminal is still called ""smart girl and rank holder. Reverse the gender "" he would have been named and shamed by media ,he would be rapists ,murderer ,misogynist etc.
439
+ #misandry #crime #AntiFeminist"
440
+ 145,2022-11-01 09:16:09+00:00,gritharnair,"Why are we allowing this kind of behaviour to continue on?? Is it because when a women that says it, it’s excusable, or is it just ignorance!!
441
+ #misandry #Feminism #equality https://t.co/jpoeb6BAHN"
442
+ 146,2022-11-01 07:54:04+00:00,sarahcam3ron,"Men using #Misandry in their tweets, after 100s of years of capitalist Patriarchy, appear lost souls. It's a new form of misogyny. Shame they can't reach out to women, so we can work together to change the destructive stereotypes established by a cruel Patriarchy."
443
+ 147,2022-11-01 04:24:56+00:00,kotton_king,#Misandry https://t.co/dCW1UloGjY
444
+ 148,2022-11-01 01:06:29+00:00,AnnabelKiwiBird,"Off you go #micheledauber !!
445
+ Take your hate off this platform & be careful the door doesn't slam on your way out.
446
+
447
+ #Stanford #FreeSpeech #mentoo #twitter #feminists #misandry @TwitterSafety https://t.co/PaGfOOhbNE"
448
+ 149,2022-10-31 20:16:06+00:00,m_Salvatar,"@ntvkenya Ah, #Feminism, the religion of women hating men's existence. Proudly supported by #misandry and #gynocentric societies.
449
+ Endeleeni tu, tutachoma hii dunia tulijenga, na hakuna kitu mtafanya...wajinga sana."
450
+ 150,2022-10-31 18:32:51+00:00,Zuniee3,"Rahul Ji,
451
+ On avg 64000 innocent men are forced to commit suicide every year due to #BiasedLaws & #Misandry but none of the pillars of democracy considers it be worth mentioning it (forget about considering it and making amendments) https://t.co/mg6L1u8Eqp"
452
+ 151,2022-10-31 18:32:29+00:00,JeffreyKrupa,#FeminismIsCancer #Misandry https://t.co/w1XIfYFITT
453
+ 152,2022-10-31 13:13:45+00:00,Tom8251,@Alice_Tzu #misandry
454
+ 153,2022-10-31 12:11:29+00:00,brunobarber,"@Arizona_Raven @realhectaaaaaa @elonmusk Sexist, ageist,
455
+
456
+ #misandry"
457
+ 154,2022-10-31 12:06:32+00:00,CitizensTogethe,#Misandry is neither #genderequality nor does it even promote #feministmovement. Men and boy are not some chaotic beings whose problems #must be left in the dark and cold. #IMD on #November19 is a day worthy of your recognition @PresidentBio. https://t.co/okfM2FewC4
458
+ 155,2022-10-31 11:08:34+00:00,HighOnCosmos,"You just fking can't.
459
+ Because in #amberheard's words.
460
+ ""Nobody will believe you because you are a Man"". #misandry https://t.co/gIqLuNg6tt"
461
+ 156,2022-10-31 06:01:35+00:00,NeromemOtcha,"Protect Women’s Rights or Low Gas Prices 😂
462
+
463
+ A real woman just dropped the truth💣 on ugly incompetent 💩feminists💩
464
+
465
+ #gas #gasprices #inflation #Gaslighting #shorts #Blonde #feminismwasted #EqualPayDay #genderequity #patriarchy #misandry #GoWokeGoBroke #funny #Video #VideoViral https://t.co/rJb6JwMSN2"
466
+ 157,2022-10-31 02:07:15+00:00,TheGuardianAn15,"Album: #Circumcision is #Sexual #Assault https://t.co/rESIuLjweG
467
+ Sample SS attached; See image description for news, updates, etc.
468
+ #BornPerfect #rape #ChildAbuse #Medical #fraud #malpractice #quackery #Genital #mutilation #cutting #IDidNotConsent #MeToo #MyBodyMyChoice #Misandry https://t.co/CvyCv2vhTb"
469
+ 158,2022-10-30 22:12:07+00:00,JeffreyKrupa,"Sad, but hardly surprising.
470
+ The feminist war on boys is achieving it's desired results.
471
+ #auspol #AusPol2022 #feminism #misandry #MenToo https://t.co/M6nXQ52EGF"
472
+ 159,2022-10-30 18:42:14+00:00,DonegalPol,"@PhilMitchell83 Abuse takes many forms but #Misandry is every bit as bad as #Misogyny is
473
+
474
+ #ParentalAlienation must be one of the Worst Abuses as it is a combination of first degree #childabuse - #coercivecontrol plus it should be made a#hatecrime to make a loving child hate a loving parent! https://t.co/TBLf1kesUo"
475
+ 160,2022-10-30 18:21:24+00:00,RxRedpill,"Our failing #education system is once again censoring free speech! We expect nothing less from the radical left education industrial complex!
476
+
477
+ #misandry #feminazi #genderequity
478
+
479
+ https://t.co/jr5DGR13QG"
480
+ 161,2022-10-30 16:56:38+00:00,visitme5,#women #Women #feminists #Feminists #feminazis #Feminazis #misandry #Misandry #misandrists #Misandrists https://t.co/Aa4KP2HK5U
481
+ 162,2022-10-30 16:17:31+00:00,BetrCutlerLoose,"""I write Woman Superior Stories making men look evil...here me!"" @shondarhimes' #Misandry https://t.co/TU0ZJTSmKZ"
482
+ 163,2022-10-30 13:20:13+00:00,kendalbhunter,"Remember the old TV show ""Bosom Buddies""? Tom hanks and Peter Scolari had to drag up as women to get housing? That may have to be mens' new life strategy.
483
+
484
+ #encycloids #dragqueens #tomhanks #peterscolari #bosombuddies #misandry #malebashing https://t.co/ZEmr7ZZkWn"
485
+ 164,2022-10-30 13:11:10+00:00,kendalbhunter,"Boys at risk, again: ""700 girls and non-binary students""
486
+
487
+ I thought we were past this anti-boy discrimination.
488
+
489
+ Maybe not.
490
+
491
+ #encycloids #equality #discrimination #misandry #boysatrisk
492
+
493
+ https://t.co/tHrso82jyv"
494
+ 165,2022-10-30 12:00:00+00:00,Baddogonline,Men refusing to join Canadian military. #MGTOW #MRA #Misandry #Mens #Rights #Red #Pill #dating #woke #Marriage #Herbivore #divorce #separated #army #breakup #family #court #sexism #sexist #friends #benefits #Child #Support #military #recruit #Navy #Royal #Air #Force #Recruiting https://t.co/aiddkK1KVZ
495
+ 166,2022-10-30 10:22:32+00:00,yannis_z6,"@men_are_human just watch the level of #misandry and bias laws in EU and USA, Canada and Australia and the bad culture"
496
+ 167,2022-10-30 06:27:08+00:00,Zuniee3,"Govt, police, judges and all sorts of NGOs would have helped you, if you could just say this a menstrual blood🩸but sadly it is men blood. No takers for it.
497
+ That’s the level of #Misandry men have deal with every day. https://t.co/Kro7o9DrvR"
498
+ 168,2022-10-30 00:30:25+00:00,BhargavaPriyash,"लगता है भारत के न्यायाधीश अख़बार नही पढ़ते, जनाब पढलो एक दम ताजा खबर है
499
+
500
+ मालूम है #Misandry आपमें कूट कूट के भरी है हमेशा लड़के ही गलत नजर आएंगे
501
+
502
+ 76% मुकदमों में लड़के बरी हो जाते है क्योंकि महिला वहा झूट बोलती है वोह #FakeCases #FakeAlligation होते है
503
+
504
+ #IndiaIsAFeministNation https://t.co/frGCio8PK5 https://t.co/SsO5R5GEva"
505
+ 169,2022-10-29 23:18:03+00:00,SmartAlexGenX,"This video is SO ON POINT for several reasons. Bravo @colonelkurtz99! #MustWatch
506
+
507
+ #AmberHeardIsAnAbuser #AmberHeardIsALiar #AmberHeardIsAMonster #AmberHeardDeservesPrison #Ageism #misandry #AbuseHasNoGender https://t.co/6AvegtfjRL"
508
+ 170,2022-10-29 21:00:54+00:00,Vidawestman,I do suffer from misandry #misandry but it’s not like men have given me reason to love them
509
+ 171,2022-10-29 20:45:20+00:00,GaryScottKadet,Illicit discrimination once again as #misandry in publishing continues apace. #MSWL #amquerying https://t.co/qMIClxNO2A
510
+ 172,2022-10-29 18:06:53+00:00,ilyasyunjin,@Lia82592203 @bangcrotte reel a bas les hommes 😭🙏 #misandry
511
+ 173,2022-10-29 17:22:18+00:00,TrenDeTainment,"Nah I’d have to fuck her up. If it was the other way around it’d be war. So let it be war now too🤬@TrenDeTainment
512
+
513
+ #doublestandards #feminism #feminist #hypocrisy #mgtow #equality #sexism #metoo #men #misandry #redpill #mensrights #truth #antifeminism #selflove #doublestandard https://t.co/IerdKKUM3S"
514
+ 174,2022-10-29 13:42:31+00:00,RxRedpill,"https://t.co/yW197H5YWv
515
+
516
+ #himtoo #gynocentrism #misandry"
517
+ 175,2022-10-29 12:33:19+00:00,mickynoname1,"@lucysiegle #Misandry at its best.
518
+ Men suffer and have suffered to greater and lesser extent from females in power.
519
+ As men are in the minority, it is harder to expose these women as they use the #Feminine card if cornered and put on the poor little girl act.
520
+ She was privileged to expose this"
521
+ 176,2022-10-29 12:28:10+00:00,Zuniee3,"One can only hope from @bjp4india considera that even men are human too and their rights as guaranteed by constitution are protracted.
522
+ Steps to ensure #Misandry https://t.co/cZyNxq1asa"
523
+ 177,2022-10-29 10:40:18+00:00,Zuniee3,"Wah!!!
524
+ Women words are gospel truth, nothing less, period!
525
+
526
+ & principal of natural justice Gaya tel lene…
527
+
528
+ With this logic EX-CJI should have been convicted by now ?
529
+
530
+ #Misandry
531
+ #FeminismIsCancer https://t.co/tgWf6B0NjE"
532
+ 178,2022-10-29 06:31:55+00:00,vermithrax12,"Women touching men without consent ✅️
533
+ Men touching men without consent ✅️
534
+ Women touching women without consent ✅️
535
+ Men touching women without consent ❌️
536
+
537
+ Got it. Thanks for making that clear.
538
+
539
+ #misandry https://t.co/p9C0KHmB9k"
540
+ 179,2022-10-29 06:31:35+00:00,vermithrax12,"@ukhomeoffice Women touching men without consent ✅️
541
+ Men touching men without consent ✅️
542
+ Women touching women without consent ✅️
543
+ Men touching women without consent ❌️
544
+
545
+ Got it. Thanks for making that clear.
546
+
547
+ #misandry"
548
+ 180,2022-10-29 06:08:22+00:00,AbbeyHeffer,"TikTok uses AI and keywords to censor.
549
+
550
+ Stickers over sensitive footage (e.g. protests) baffles AI.
551
+
552
+ We self-censor our subtitles (racism➡️r@cism, sex➡️seggs, queer➡️qu33r) and mime censored keywords.
553
+
554
+ Banning #misogyny led to the appropriation of the #misandry hashtag.
555
+
556
+ 6️⃣"
557
+ 181,2022-10-29 04:43:08+00:00,DTOXIFIER,"@IndEditorsGuild So, are you okay with trolling men journalists? What kind of #Misandry is this (if you know what misandry means)? Kindly apply equality and empathy to everyone and not just one gender. Everyone deserves respect! Next time, take care of what you mention in your statement!"
558
+ 182,2022-10-29 01:37:04+00:00,ninacherie70,THAT IS ALL #LNPfail #MurdochGutterMedia #LnpBullies #CrumbMaidens #LnpLiars #LnpRapistProtectors #auspol #EnoughIsEnough #DARVO #Gaslighting #Misandry #WomenLieYouKnow #LNPCorruptionParty #LnpRorts #LnpDeflection #LnpProjection #LnpEugenics #LnpBigots #LnpMisogynists #LnpRacists https://t.co/hXtQ15y6ZZ
559
+ 183,2022-10-28 23:20:33+00:00,Jackncyberspace,"@KnottyCommander ++@JayShah @BCCI FYI equality for you !!!
560
+
561
+ #NotMyCJI
562
+ #Misandry #Bcci"
563
+ 184,2022-10-28 20:45:46+00:00,Yobachi,"Black Women Hurt Over PassPort Bros. They trying to scare men into wanting them now with lies about foreign countries. Boy they wild. Gotta here this one: https://t.co/fvfFGiIsia
564
+
565
+ #bigmad #dating #travel #mensdatingadvice #mentraveling #relationships #solotravel #misandry https://t.co/niE1ogImyD"
566
+ 185,2022-10-28 18:56:54+00:00,ChadPartyof5,@kindred1999 @johnny53811 @tino1317 @STLDisneyMom2 @TMZ Maybe he only made those promises because she was manipulating him back then. If a famous female singer or actress had her husband demand that she quit at 45 would that be OK? No. All of society would be attacking that man. #Misandry
567
+ 186,2022-10-28 18:35:54+00:00,rMenPunchingBag,🗣#mensrights #mgtow #mentoo #redpill #feminism #men #antifeminism #498A #feminismiscancer #misandry #equality #feminist #masculinity #meninist #antifeminist #meninism #mra #mensrightsactivist #mgtowisthefuture #toxicfemininity #fathersrights #toxicfeminism #fuckfeminism #bhfyp🙏 https://t.co/vC73zrQ7x3
568
+ 187,2022-10-28 17:10:49+00:00,rMenPunchingBag,🗣#mensrights #mgtow #mentoo #redpill #feminism #men #antifeminism #himtoo #feminismiscancer #misandry #equality #feminist #masculinity #meninist #antifeminist #meninism #mra #mensrightsactivist #mgtowisthefuture #toxicfemininity #fathersrights #toxicfeminism #fuckfeminism #bhfyp https://t.co/k7ReLnQ3b7
569
+ 188,2022-10-28 13:58:59+00:00,swarup1972,"Caution: #ELONMUSK @elonmusk be care full from #Feminist Gang.
570
+ Be #Misandry FREE & #StopAbuseMen in #Twitter.
571
+ Stop marketing of false/fake allegations of Rape or Sexual Harassments against Men/boys.
572
+ It's Court Job to find truth/ action @Twitter can't allow defamation activity. https://t.co/bgDHFrjEvc"
573
+ 189,2022-10-28 13:28:52+00:00,tirtho2019,"@ShoneeKapoor #Misandry
574
+ That's the reality! Spread the word."
575
+ 190,2022-10-28 12:58:00+00:00,HexTShare,"@RationalMale Yup, and notice the ""physical torture"" bit.
576
+ This woman sounds like she's a psychopath and dangerous.
577
+ She is describing and calling for physical abuse/violence on men. Aswell as ""mental torture"".
578
+
579
+ Extremely #evil.
580
+ #misandry #dangerous"
581
+ 191,2022-10-28 12:34:49+00:00,HexTShare,"@talk2veee This is just #Evil.
582
+ #Misandry #Psychopath #Psychopathy #PrimaryPsychopath #Example"
583
+ 192,2022-10-28 11:09:07+00:00,swarup1972,"Janta Sab Hai, lekin Manta koi Nahi 🙏🙏
584
+ https://t.co/FgIwjqOQoD
585
+
586
+ #StopAbuseMen & Became #Misandry FREE 🙏🙏"
587
+ 193,2022-10-28 10:51:23+00:00,Doug_Reckord,"Miss #Landry looks like #misandry
588
+
589
+ A cadre of confected outrage about nothing
590
+
591
+ #justsaying #stunt #auspol
592
+ #AlboPM @AlboMP"
593
+ 194,2022-10-28 10:34:36+00:00,swarup1972,"Janta Sab Hai, lekin Manta koi Nahi 🙏🙏
594
+ Once A Man get married & termed Husbands - became the Most hated community of India.
595
+ #StopAbuseMen & Became #Misandry FREE 🙏🙏 https://t.co/tecUpcpT90"
596
+ 195,2022-10-28 09:11:52+00:00,amsickofit,"@UKGayEquality @ALLIANCELGB @ShayWoulahan @HannahBerrelli Interesting post
597
+ How many #Gay #Men are taken in by man-haters is beyond belief
598
+ Together with #trans #cult, #radfems are 2 cheeks of the same massive arse
599
+ Neither put Gay Men's needs first
600
+ My brother hopes you're correct in siting early days
601
+ #AllMenTogether
602
+ #MenToo
603
+ #misandry"
604
+ 196,2022-10-28 08:44:14+00:00,HexTShare,"@LilithWon_FDS @Reaux_FDS What patriarchy exists in western countries?
605
+
606
+ Also, ""let it hurt them"" is #misandry
607
+
608
+ https://t.co/6CEQQCZPSO"
609
+ 197,2022-10-28 06:45:45+00:00,BhargavaPriyash,"@braham4justice @CharuNigamIPS @ipsCharuNigam @auraiyapolice @igrangekanpur @dgpup @Uppolice कभी इन पुलिस वालो से कोई उम्मीद मत रखना , #Misandry भरी पड़ी है
610
+
611
+ यही अगर किसी महिला के साथ हुआ होता , तो ये दिन रात एक करके लड़के को जेल में डाल देते।
612
+
613
+ वही अगर लड़के के साथ होता है तो पारिवारिक कलह लिख कर सब शिकायत बंद कर देते है ये है इनका महिलावाद
614
+
615
+ देखो आगे आगे होता है क्या"
616
+ 198,2022-10-28 05:28:02+00:00,vermithrax12,@G00dj0bBuddy @TheQuartering There are two types of transsexuals. Why do you only mention one. #misandry.
617
+ 199,2022-10-28 00:52:48+00:00,sistaotey_prays,https://t.co/02jLiN09Sj #misandry may have to become a thing #sistaoteyism
Datasets/Negative CSV/hatemen.csv ADDED
@@ -0,0 +1,258 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ,Date,User,Tweet
2
+ 0,2022-11-05 06:12:28+00:00,estherperezzz_,#hatemen
3
+ 1,2022-10-31 22:53:08+00:00,PR0BEDR0ID,"@Scotswoman06 @SuzanaD3 @jerrytmartin Name just 1 alpha male! There are none so everyone reply with beta cucks!
4
+
5
+ #GoHATE #HateMen #AMAB #ShowYourPerfectHate #StrengthFromHateOfMen #StrongerHatingWeakMenTogether
6
+ #ToHateMenIsToLoveActualHumanBeings #DehumanizeMen #MakeWeakMenSuffer #WomenWillControlMen
7
+ #instagramdown https://t.co/xx9PoHFy7n"
8
+ 2,2022-10-31 11:03:21+00:00,p4u_rr,#hatemen
9
+ 3,2022-10-29 02:05:26+00:00,svxho_,@markycngs #hatemen
10
+ 4,2022-10-24 18:29:36+00:00,jessllol,SHOVE THAT GOODLUCK UP UR ASS #hatemen #hopeallmend1e
11
+ 5,2022-10-19 12:11:05+00:00,JamalojahaIlo,@playg111rlcarti oh man voll unfair #hatemen
12
+ 6,2022-10-19 09:39:58+00:00,iizyanisa,@njwamaisarah for real rasa glowing anyways #hatemen
13
+ 7,2022-10-07 21:54:56+00:00,shishitzigk,#hatemen https://t.co/rgd7IHwy0u
14
+ 8,2022-10-07 10:48:15+00:00,bizzlenthuziast,@landsrauhl #hatemen agenda going strong i stand with u https://t.co/n3goPNBAP3
15
+ 9,2022-10-06 23:06:29+00:00,cluvrgirl,"Every time a guy asks on their story if they should shave their head, I vote yes 😈 #hatemen #stayugly"
16
+ 10,2022-10-06 12:28:39+00:00,CarolynStvns,"Day out with the ladies!! Lots of love to the girls who got me through my failed marriage, couldnt have done it without them.
17
+ #girlpower #girlies #powerfulwomen #hatemen"
18
+ 11,2022-09-29 03:44:38+00:00,AnnFaramus,I will never trust or believe what a guy says to me anymore! Try sweet talk me you be told to piss off!! #hatemen
19
+ 12,2022-09-26 20:54:46+00:00,moneybaggemm,this man is literally the most sassiest mf I’ve ever met #hatemen
20
+ 13,2022-09-20 23:42:07+00:00,__alyssaluv,My bf loses all his money to gambling and it’s okay … but lord forgive if I go on a shopping spree with his card 🙄 #hatemen
21
+ 14,2022-09-20 16:16:55+00:00,Kashxashley,#hatemen
22
+ 15,2022-09-20 03:00:39+00:00,cutedeatth,"ODIO TANTO A LOS HOMBRES
23
+ #HATEMEN"
24
+ 16,2022-09-18 14:17:09+00:00,mariioos,"Qué agustito estaría ahora abrazada a un hombre con brazos peludos, que me haga un masaje para quitarme el dolor de espalda de estudiar.
25
+
26
+ #BeaLaRamera #Quotes #HateMen #NotReallyHate"
27
+ 17,2022-09-17 07:26:06+00:00,fru1tloopss,Guys are douchebags and I hate them all🧍🏻‍♂️🚫They don't know how to treat women 💁🏻‍♀️ and I feel like this is why the lesbian 👩🏻‍❤️‍💋‍👩🏻 rate is going up⬆️ in this country 🇺🇸 #snooki #hatemen #roblox
28
+ 18,2022-09-12 06:50:23+00:00,DryHumorBabe,"@azcatgirl @DubauskasJan @KariLake @katiehobbs @AZChamber Kari epitomizes a #Strong #Leader #Forthright #Honest is #UnAfraid & #StandByHerWords & #Plans #UniteNotDivide #EndElitesCrimes
29
+ Brace yourself, little woke snowflake, #KariDoesntPlay #TheVictim #IdentityPolitics #HateMen #RaceCard (uh duh…leftist failed strategy)
30
+ #TrumpLake2024"
31
+ 19,2022-09-07 19:15:29+00:00,chaengtetass,TODOS SON IGUALES #hatemen
32
+ 20,2022-09-06 10:59:48+00:00,CQDThisIsGayBoi,"@GBOmega2 But it's not toxic, trust me. I hate the whole #hatemen movement but what I see here is just biology, I am not expecting the answers because I think these women are toxic, I except the answers because I know that this is the law of nature. Not just in humans but other animals"
33
+ 21,2022-09-05 22:15:29+00:00,naimathecreator,#hatemen
34
+ 22,2022-09-02 21:10:28+00:00,akayisas,@whiskypeleon #hatemen❤️
35
+ 23,2022-08-30 23:40:51+00:00,sstoneyy_,#hatemen
36
+ 24,2022-08-22 04:40:16+00:00,flidmaster1,@sley_will18 @hollywoodaniel_ bru i #hatemen 🙄🥱🥱🥱
37
+ 25,2022-08-22 01:33:54+00:00,canifuxk_urdad,Gonna laugh cuz #hatemen
38
+ 26,2022-08-19 21:49:49+00:00,EMILLYG08057070,"LOS HOMBRES DEBERIAN TENER PROHIBIDO ESCUCHAR A MITSKI!!!
39
+ #BI #mitski #Colombia #HATEMEN https://t.co/nl71AqdsVj"
40
+ 27,2022-08-17 21:58:16+00:00,pradalordsoultk,#hatemen
41
+ 28,2022-08-15 08:23:36+00:00,ilovebriella,#hatemen
42
+ 29,2022-08-15 03:13:55+00:00,2sexyashley,Going to be single/ alone forever I just know it… #hatemen
43
+ 30,2022-08-10 13:21:23+00:00,Winston49640075,@AlboMP @petajan @MicheleONeilAU @Tony_Burke @jennymcallister G-d help us all. #HateMen
44
+ 31,2022-08-07 04:29:06+00:00,aalaydior,#HATEMEN
45
+ 32,2022-08-04 16:11:40+00:00,kksroyl,@avqvk #hatemen
46
+ 33,2022-07-27 23:32:13+00:00,thezxmbae,report this guy. weirdo in my valorant dms!! #hatemen #allmenarethesame #didhesaygaycum @_swordfsh https://t.co/OPc1TLSxBq
47
+ 34,2022-07-27 02:52:27+00:00,maferbtre,me hubiera quedado con la perra duda de qn seguia a andrew tate #hatemen
48
+ 35,2022-07-25 06:40:41+00:00,sugaaa45,THE FUCKING AUDACITY OF THIS BOYYYYYYY!!!!! #hatemen #kinnporscheworldtour2022
49
+ 36,2022-07-16 11:23:15+00:00,rekiyuzu,@VEZYZZSLIME if i say i forgot ur a man it just@means i’m comfortable around u 🥺 bc i #HATEMEN
50
+ 37,2022-07-15 04:53:03+00:00,riotoranges,"Why the fuck would you match with someone, ask for their Snapchat and keep leaving them on read?????? #hatemen"
51
+ 38,2022-07-13 14:19:37+00:00,theannadestiny,This Nigga Have The Audacity To Ask Me To Do A 3Sum This Nigga Ain’t Serious #Hatemen
52
+ 39,2022-07-11 22:39:30+00:00,fridayyy15,#hatemen
53
+ 40,2022-07-11 13:33:43+00:00,_EliChanel,no shade i think i did but he playing ughhhhh…. #hatemen https://t.co/o4ZFkZIXOU
54
+ 41,2022-07-10 08:44:34+00:00,shewholaugh,I got 99 problems and a man is every single one of them #hatemen
55
+ 42,2022-07-09 16:28:48+00:00,JDs_Best_Life,"@Alltogether111 @Louise75997969 Doubt it cos clearly all 3 of them #HateMEN! 🤨
56
+
57
+ #JohnnyDepp #JohnnyDeppWon #JohnnyDeppGotJustice #AmberHeardlsAnAbuser #AmberHeardlsALiar #FuAH"
58
+ 43,2022-07-09 00:57:36+00:00,ebabcock04,love how grown men want to control the bodies of women and we’re in the wrong… but they have to use 5 in 1 shampoo because It’S tOo CoMpLiCaTeD #RoeVsWade #hatemen
59
+ 44,2022-07-08 16:09:19+00:00,Diana_TWFanmily,@princessem777 After experience with men i want vomit when i see someone new trying get to know me better OF COURSE THEY MEAN MET MY PUSSY....🤢 #Fuckmen #hatemen
60
+ 45,2022-07-05 15:22:09+00:00,marvmorg,What don’t people get about buying content? Is a yes or a fucking no.. not 10000 verification pics and previews #hatemen #fuckpaypigs #sellingcontent
61
+ 46,2022-06-29 17:33:43+00:00,odiswifey,@autumnwantscat @winterwantscat yes #hatemen
62
+ 47,2022-06-28 05:11:10+00:00,saarhairadha,@okiedokilokii #hatemen
63
+ 48,2022-06-26 03:16:09+00:00,__okayyLucyy,Men always fuck it up for themselves. Like I was honestly thinking about giving you some pussy until you kept fucking talking 😒😒#yuck #hatemen #stfu
64
+ 49,2022-06-24 23:01:18+00:00,Nivek45817840,#hatemen https://t.co/WXZdY6ErwS
65
+ 50,2022-06-23 04:25:27+00:00,saLussy,#hatemen #nomen 🫡🫡
66
+ 51,2022-06-19 09:45:10+00:00,seeabeach,@NoForcedBirth Shannon Bream and Robert Jeffress are forced birthers that can look you in the eye and fuck you up the ass #antichoice #hate #wicked #godless #savages #controllers #specialpleading #prochoice #prolife #abortion #mentallyill #carnal #hatewomen #hatemen #reprehensible #indefensible
67
+ 52,2022-06-19 08:08:14+00:00,kqte_e,"@pxtriciiia I'm playing along, YES THAT'S WHY I HATE MEN #hatemen (bet bts un stray kids ir different)"
68
+ 53,2022-06-17 13:18:34+00:00,himbo__lover,at college yesterday i wore a dress with a proper bra and got stared at so much i #hatemen
69
+ 54,2022-06-15 05:56:25+00:00,kevxjn,"Vogliamo parlare dei 60enni che ci provano e fanno commenti osé sotto i tweet di @r_marilena? Imbarazzanti.
70
+
71
+ #hatemen"
72
+ 55,2022-06-14 21:21:59+00:00,killa_k09,Today is definitely a fuck men's day. #hatemen
73
+ 56,2022-06-11 15:27:45+00:00,k35h2908,nah then how can mz man b sucking some girls double ds in his bmw when hes tryna take her out to hakkasan the next day😪😪😪😪 #hatemen
74
+ 57,2022-05-30 10:20:53+00:00,7scarley,I was crying over a boy last night🤮🤮 CAN YOU BELIEVE TJAY A BOYYY??!!🤮🤮🤮🤮🤮🤮🤮🤮🤮🤮🤮🤣🤣🤣🤣men are #gross #hatemen 🤮🤮🤮🤮🤮🤮🤮🤮🤮
75
+ 58,2022-05-30 02:00:47+00:00,cardiganrrygf,@phharry__ THEY ARE #HATEMEN
76
+ 59,2022-05-29 04:49:01+00:00,abby7062,#hatemen #crying
77
+ 60,2022-05-26 03:35:08+00:00,sswamperss,"@callaloser #hatemen, ofc I got you queen 🙄!!!
78
+ Don't let silly men get u stressin, they ain't worth it frfr!!"
79
+ 61,2022-05-17 17:35:52+00:00,Matthew58006425,"@carrieb81589543 @ghoulgaze Eyo dont say that to people, they are shut off from reality to promote their #Hatemen movement."
80
+ 62,2022-05-16 13:18:00+00:00,Alejandra_nok,#hatemen
81
+ 63,2022-05-14 07:11:33+00:00,srirachavans,not simon openly flirting with ken when im right here? what the fuck men are all trash #hatemen
82
+ 64,2022-05-11 23:59:58+00:00,BlackRoots_,Soon 85% of straight black men will be republican or independent… #woke #MeToo #BLM #hatemen
83
+ 65,2022-05-08 14:38:16+00:00,Crypto_Girl77,"Yep, the US has finally lost the FUCKING PLOT. You bastards. How many women do you think will die in backyard abortions? You pack of misogynistic Christian hypocrites #hatemen #hateus https://t.co/Dvdlqh9Txj"
84
+ 66,2022-05-05 19:25:05+00:00,SysSecAdmn,"@bRI_MIXX #ImSorry you lived through what you have. As many who had a volatile ex.. you are.right! When did #MeToo turn into #HateMen and #DefendFemaleAbusers ? When did #JusticeForTheAbused instantly mean #WomenAreTheVictim ?
85
+
86
+ Oh that's, EQUALITY is not about FAIRNESS anymore"
87
+ 67,2022-05-05 19:16:12+00:00,SysSecAdmn,"@Iceman00644228 When did #MeToo turn into #HateMen & #DefendTheAbuser? I'll wait.
88
+
89
+ Haven't watch any of this til today. Caught her LYING 3x in less than 20 min. The GIFT she left in the bed clearly is a good representation of HER as a person.
90
+
91
+ But #DefendTheAbuser speaks volumes"
92
+ 68,2022-05-04 09:10:36+00:00,haltroy,"@TheBrometheus fuck that hate men for no reason
93
+ #hatemen #feminism #ipissedmypantsagainohno"
94
+ 69,2022-04-23 19:48:36+00:00,aguakesito,Odio a los hombres #hatemen https://t.co/0DdzqbUjTX
95
+ 70,2022-04-21 02:40:34+00:00,simplyclv,Nigga really got the audacity?! Stupse #hatemen
96
+ 71,2022-04-21 00:22:03+00:00,missattitude__,"People man always a do the most like unno single✋🏻
97
+ #hatemen"
98
+ 72,2022-04-16 20:40:27+00:00,__alienated_,#hatemen
99
+ 73,2022-04-12 21:28:37+00:00,crazylitlestink,#badbitch #ninja #slashhistires #hatemen https://t.co/WJC0FE2BHW
100
+ 74,2022-04-08 15:40:48+00:00,nottadmack,im a lover of women #hatemen https://t.co/cLM9tMimDW
101
+ 75,2022-04-07 04:21:33+00:00,erikacontrerasb,@IvanaFerzuli #cancelmen #hatemen #🙃🙄 #odiamos #basura 🤬🤬
102
+ 76,2022-04-04 05:10:39+00:00,EbbzNubi,These men be out here venting to their side chicks 🥴 #hatemen
103
+ 77,2022-04-01 03:32:48+00:00,idalskz,@JOHASEULITA #hatemen #FUCKMEN #FUCKSKZ
104
+ 78,2022-03-29 18:11:05+00:00,otb28kiwi,"@louspubichair no not men, #hatemen, interact with me 😎"
105
+ 79,2022-03-28 18:36:22+00:00,vtephanie,#hatemen !!!
106
+ 80,2022-03-28 18:36:03+00:00,luvducki,@vtephanie its ok!!! #hatemen
107
+ 81,2022-03-17 01:10:53+00:00,cphilemon2,"I keep saying I won't fall for another dude that doesn't have the slightest interest in me but it keeps happening...EVERY...FUCKING..TIME!!
108
+ #hatemen"
109
+ 82,2022-03-04 22:19:14+00:00,haidrmcfc,"@taybvhhh nooo he’s literally destroyed her career , #hatemen"
110
+ 83,2022-03-04 03:42:33+00:00,imROYALTEE,@pattyplainjane 🥲🙂… you back in the #hatemen era?? OH NO 😵‍💫
111
+ 84,2022-02-12 16:51:16+00:00,aguakesito,@s4syyy #hatemen
112
+ 85,2022-02-10 21:08:04+00:00,IraroIruoIgbide,#hatemen https://t.co/Z04rX4TM3r
113
+ 86,2022-02-09 21:32:59+00:00,maryamohdd,@kulthumee #hatemen 🤣🤣🤣
114
+ 87,2022-02-09 19:17:44+00:00,jackthe1conx,#hatemen
115
+ 88,2022-02-09 11:22:29+00:00,mostlystupid,"Oh no, Carol! Not a single black person in The Osmonds. This isn't representative! #ThisMorning #HateMen"
116
+ 89,2022-02-09 10:55:14+00:00,VforBeni,Got whistled at by a local scum just taking about 4 steps from my house to my car to go to the gym. #hatemen 🥲
117
+ 90,2022-02-04 07:23:18+00:00,azka_five,"A coworker at my company just denied a lady his seat just because he hates women. if a guy asked, he would have not said no. #misogyny #hatemen"
118
+ 91,2022-02-04 01:38:02+00:00,ciiiinnnddy,i’ve been waiting for my oil change for an hour just for them to tell me they can’t do it anymore 😍😍😍 #hatemen
119
+ 92,2022-02-01 22:38:27+00:00,champagnexali,@stacetharuler Same #hatemen
120
+ 93,2022-01-30 17:04:19+00:00,c8trus,@kirstenhousen #hatemen
121
+ 94,2022-01-27 01:47:57+00:00,JunRachelCats,Ahahahahaha #HateMen https://t.co/Z5ldOPAeg6
122
+ 95,2022-01-22 14:44:02+00:00,FairladyJen,"Heute rausgefunden, dass @PurpleScarBabe und ich mit dem selben Kerl geschrieben haben. Und er mein Insta kennt und zu 99,99% gewusst haben muss, dass wir befreundet sind aufgrund der posts. Wie huso will Man(n) sein? Ja.
123
+
124
+ Dabi & Shoto it's your turn to burn
125
+
126
+ #KAM #hatemen https://t.co/PzlEUu4yNV"
127
+ 96,2022-01-15 17:02:36+00:00,jessbrowns,Personally I hate guys <3 #hatemen
128
+ 97,2022-01-14 03:14:28+00:00,SpookyQueen2K20,"Men. Possibly the most frustrating annoying cunting creatures in the fucking world.
129
+ Fuck this. #hatemen #menaretrash"
130
+ 98,2022-01-12 20:13:09+00:00,ecliapse,just got sent a dick pic #hatemen
131
+ 99,2022-01-10 19:17:09+00:00,SamuelJB26,"And just like that...I'm single again.
132
+
133
+ #hatemen https://t.co/E9jolZde4C"
134
+ 100,2022-01-06 16:40:27+00:00,bigjuicyfatass4,Mi abuelo ha sacado un libro de chistes en la cena de reyes #hatemen
135
+ 101,2022-01-05 04:38:32+00:00,mmiichelleeeee,@l3llaaaa #hatemen
136
+ 102,2022-01-04 02:58:22+00:00,themusingsofmia,Do you know what it is like to be the practice run before the real thing? IT FUCKING SUCKS. #ihatemyself #hatemen
137
+ 103,2022-01-03 16:36:35+00:00,pugluver617,are you kidding me??? he hit me and broke my nose? what kind of a world do we live in? #hatemen
138
+ 104,2021-12-31 22:59:58+00:00,GreezyGeezer,@DICKS sucks. #hatemen #antihunting #anti2A This outfit not only decided to remove firearms (their choice) but then hired lobbyists to fight against other retailers selling them. Sorry as dirt. Never a dime from me!
139
+ 105,2021-12-28 18:22:26+00:00,notdanaa,#hatemen
140
+ 106,2021-12-27 11:16:45+00:00,_emilyyramirezz,5 yrsss and I still didn’t mean shit to you #hatemen #brbGonnaCry
141
+ 107,2021-12-25 16:10:07+00:00,sleepyviolett,got in an arguement with my cousin over trans rights #hatemen
142
+ 108,2021-12-24 03:05:53+00:00,crust3y,fuck you hector now he's fucking dead #hatemen https://t.co/qiGFFF3hxC
143
+ 109,2021-12-22 23:13:58+00:00,Ttl1S,"@Exia_Atreides @shellymarie19xx Because you've thrown up, women hate men. Ok now i understand the logic behind feminism thank you #hatemen"
144
+ 110,2021-12-22 19:36:52+00:00,Ttl1S,@GriitBall or shoot babies in you? ive taken the B aswell darling #hatemen
145
+ 111,2021-12-22 19:01:01+00:00,Ttl1S,@saturngurl555 I think men hate you but its ok. I can tell your dad went to get milk and never came back. #hatemen
146
+ 112,2021-12-21 21:24:58+00:00,Ttl1S,"@shelbsdanna Don't worry no ones attracted to you anyways, Problem solved #hatemen"
147
+ 113,2021-12-21 19:04:03+00:00,Ttl1S,@MITSKIMATANGI so you hate making your dad happy? #hatemen
148
+ 114,2021-12-21 05:07:00+00:00,pikadruuu,"@biancad486 lemme try sumn rq…
149
+ hate men #hate #men #hatemen #danwya"
150
+ 115,2021-12-18 00:54:42+00:00,SashaLevingson,ugh. men really be annoying! #hatemen #RepublicansAreTheProblem #IMGONNACRY #BiSH #SOPRETTY #myway
151
+ 116,2021-12-15 16:08:10+00:00,alexhatesmen,"My name is @alexhatesmen.
152
+
153
+ I'm leading the effort to BAN men in the state of Georgia.
154
+
155
+ We MUST restore hatred of men #freedom #patriot #hatemen https://t.co/K5C8Kb1pZz"
156
+ 117,2021-12-14 14:48:46+00:00,fckujjk,"Trebam napravit poslovni plan za kolegij i pitam ja profesora jel on zna mozda povrsinu prosotra a on meni ""ne, izmjerite povrsinu kruga i onda pomozite sa 2"" SORRY NISAM ZNALA DA TREBAM BITJ GEOGRAF, ARHITEKT I ELEKTRICAR!!! #hatemen"
157
+ 118,2021-12-13 20:23:26+00:00,BlackSwalowtail,@footfetishincel Just released shiki from the basement #girlboss #justgirlythings #hatemen https://t.co/SpoMxpYKKU
158
+ 119,2021-12-10 04:23:43+00:00,YoungWildTycoon,"This really how I feel, could not imagine sacrificing the life I see for myself for no one 🤷🏾‍♂️
159
+
160
+ #stitch with @jade_of_all_tradez thank god for therapists, self help books, podcasts, and ladies nights. #dating #wtf #why #teacher #ugh #hatemen #lol https://t.co/o5AQCb8SWe"
161
+ 120,2021-12-06 19:17:00+00:00,gojosbitch88,#hatemen
162
+ 121,2021-12-03 05:40:57+00:00,scisetstarlight,just realized zee was willing to stab oliver with an arrow so true get it lesbian girlboss #hatemen
163
+ 122,2021-12-01 09:26:37+00:00,tniaiaia,cowo np byk bgt da yg kampret kl di tiktok tuh #hatemen
164
+ 123,2021-11-30 23:17:07+00:00,laurberg1,if i didn’t have a bus to catch i would’ve assaulted some bitch ass man 10 mins ago #hatemen
165
+ 124,2021-11-30 01:18:04+00:00,ethanwrights,@cindyprescotts yess cin #HateMen
166
+ 125,2021-11-28 17:26:03+00:00,tesfayeeeej,i sent jason a pic making fun of myself and he added onto it🥲✋🏽 #hatemen
167
+ 126,2021-11-26 14:54:34+00:00,droljasta,#hateallmen #hatemen
168
+ 127,2021-11-22 14:27:52+00:00,CeliSpectrum,Boys be giving mad compliments to you cause they tryna f.. once they do they forget that you look good and stop complimenting. #hatemen 😭
169
+ 128,2021-11-22 01:59:37+00:00,stylesluvvrr,@hoefortpwk #hatemen
170
+ 129,2021-11-20 01:07:55+00:00,karlasatorr,#hatemen😐 https://t.co/yF2goNwhB7
171
+ 130,2021-11-17 17:15:19+00:00,chikiyat,@_la_rata_ #hatemen
172
+ 131,2021-11-16 04:54:36+00:00,chikiyat,#hatemen
173
+ 132,2021-11-15 04:24:13+00:00,googieskoo,@flrtzyeonjun @purpIejungkook #hatemen
174
+ 133,2021-11-14 05:02:15+00:00,its_me_okay_,i #hatemen
175
+ 134,2021-11-11 21:01:43+00:00,maliniasredmask,"me: says ""hate all men"" to get in a YouTube video
176
+
177
+ the youtuber: THIS F*CKIN IDIOT
178
+
179
+ I dont hate men btw... #hatemen"
180
+ 135,2021-11-03 03:25:38+00:00,arizona_bae,#hatemen
181
+ 136,2021-11-01 15:12:33+00:00,jjulia_xo,"to the guy who grabbed my ass last night without consent, i hope you die, respectfully :) #hatemen"
182
+ 137,2021-10-29 23:59:34+00:00,brooklynIwt,uno q era mi compañero m respondio en ig y m dijo ayññ no t tenia asi pense q eras mas timida🙄💀💀 aaaa gordo pelotudo barril d leche anda a ver si alguien t muestra las tetas xfavor #hatemen #menaretrash #varonpitocorto
183
+ 138,2021-10-28 00:05:06+00:00,abliss143,"I'm just laying on my bed feeling exhausted asf. My daughter comes in, puts a washcloth to my head and starts giving me a shoulder massage while my bf in the other room...mannn fuck these men. How my daughter doing your duties?!
184
+
185
+ #hatemen #timetomingle #singlifesoon #exhausted"
186
+ 139,2021-10-24 20:40:39+00:00,katiejajaja,Y my mom always mf blaming me for her shit marriage 🤨 #hatemen
187
+ 140,2021-10-23 22:33:25+00:00,larkoslav,svi su isti svaleri kockari pijanci narkani ma prokleti bili!!!! #hatemen
188
+ 141,2021-10-23 22:29:33+00:00,larkoslav,muskarci su smecari najobicniji dokaz je ovaj koji me je ostavio trudnu i samu u kolibi na koniku!!!!!!! #hatemen
189
+ 142,2021-10-22 10:08:34+00:00,dreatrinity,this man really manipulated tf out of me to the point that I’m questioning everyone’s true intentions w me #hatemen
190
+ 143,2021-10-20 16:20:06+00:00,Summy_the_gummy,@arysssa02 YASSSSS QUEEN #hatemen
191
+ 144,2021-10-19 23:54:29+00:00,katiejajaja,@karymevsthewrld Gross🤨 #hatemen
192
+ 145,2021-10-16 22:29:47+00:00,JayKillz,@yaadman_ You said she was ugly before now that she lost weight you find her attractive. #proudfeminist #hatemen
193
+ 146,2021-10-15 20:40:17+00:00,write2educate,"@TMZLive you want everyone accused like @Tyga to NOT make any 💰 on accusations? She posing in the Pics, smiling! she hit him 1st & he had 2 restrain her! U ever C a crazy lady out of control? After U do, let’s tlk. @MeTooMVMT hv brought out many liars! On a #hatemen mission"
194
+ 147,2021-10-15 04:24:17+00:00,cute_doggoz,Just got wronged by another mediocre man um yeah him and his family best be sleeping w one eye open tonight bc i am seething.. i am revved up... if no banquo in my brain i would be committing the perfect crime rn. #hatemen #puttingthemenindisappointment
195
+ 148,2021-10-06 12:24:06+00:00,arianaajeann,@LuvFromShefflin i made him a playlist full of my fave songs & he listened to it once #hatemen
196
+ 149,2021-10-04 16:51:37+00:00,justtoseebts,Just waved at a Moroccan dancer when he raised his head at me twice. Whore era…. Bc I’ll never see him again🤣🤣🤣 #hatemen #hatemen #hatemen
197
+ 150,2021-10-02 04:22:00+00:00,p3rccetprincess,#hatemen
198
+ 151,2021-09-26 19:21:34+00:00,lllAmaterasu,@mxce_tx #hatemen
199
+ 152,2021-09-26 09:26:31+00:00,Yamene19,"Why do men think they own this world. I feel so voiceless.
200
+ #hatemen"
201
+ 153,2021-09-17 23:15:21+00:00,Annetteiers,Every guy I’ve ever talked to makes me throw up. But each guy has their own reason for making me vomit 😐 #hatemen
202
+ 154,2021-09-16 20:19:17+00:00,MayNumbah2,@Iseeyou1010 @_Kuj0uSxra How sad does someone have to search for #hatemen tweets to reply to?
203
+ 155,2021-09-07 03:14:07+00:00,itsemiiary,He didn’t outright say “you’ve gotten fat” but he might as well have. :) #hatemen #dating #trash
204
+ 156,2021-08-24 22:57:32+00:00,g4ytengu,@MayNumbah2 Idc anyway #Meanlesbian #hatemen
205
+ 157,2021-08-23 15:13:47+00:00,cayverass,@denyjalashae #hatemen they can’t do nun right
206
+ 158,2021-08-18 18:16:26+00:00,LavenderExistnt,I like non-men so if ur a man there is a 90% chance that I will hate you /hj #lesbian #stereotypical #hatemen
207
+ 159,2021-08-11 20:15:43+00:00,LoisBlackmore10,"Not men thinking they are the stronger sex when their whole ass species can literally be replaced with vibrators and bone marrow 👀
208
+ #women #feminism #hatemen"
209
+ 160,2021-08-08 22:32:46+00:00,simplyhansi,"If men can't control themselves seeing a women in a skirt, who let them control whole countries?
210
+ #feminist #hatemen #facts #LGBTQ"
211
+ 161,2021-07-28 02:09:20+00:00,hatemyBRATchild,"this is my younger middle child, a lot of people find him annoying at first but that's okay, he enjoys listening to Bruno mars, and really likes woman and Minecraft #hatemen
212
+ #jumpinthecaddilac #amen https://t.co/OO8iwoh0mv"
213
+ 162,2021-07-12 03:07:45+00:00,tpwklizzyyyy,#hatemen
214
+ 163,2021-07-11 21:45:27+00:00,notheleax,Ce soir c est #hatemen vraiment cassez vous tous le frein c est bon
215
+ 164,2021-07-10 20:55:58+00:00,jassminebebe,OMG IM NEVER GOING OUT ALONE AGAIN #hatemen
216
+ 165,2021-07-09 11:31:06+00:00,HelenaGranny,Did you know that 89% of men abuse there wives EVERY DAY! #abuse #mensuck #Feminism #Men #hatemen
217
+ 166,2021-07-07 21:31:17+00:00,remschild,@IoveIIanguage agreed #hatemen going strong as u should !!
218
+ 167,2021-07-05 20:15:55+00:00,slpenney09,"The boys just want to get careers from this show, they all aren’t into these girls. #basic #HATEMEN"
219
+ 168,2021-06-17 13:27:01+00:00,presidentjess,Did you know that 89% of men abuse there wives EVERY DAY! #abuse #mensuck #Feminism #Men #hatemen
220
+ 169,2021-06-12 11:08:19+00:00,FrostAHAH,Retweet to find my oomfies🙁 #hatemen https://t.co/FZr1kmTMOz
221
+ 170,2021-06-09 23:50:32+00:00,mini_misandrist,About to kick a MAN out of the study room I booked #girlboss #bossbabe #manhate #hatemen #girlsrule #boysdrool #FuckOFF!
222
+ 171,2021-06-07 21:26:48+00:00,FalzonFran,My old twitter got hacked by some man who posts porn on it now soooo #hatemen
223
+ 172,2021-06-04 03:15:00+00:00,Winston49640075,"@AusMiray @Trumpsta55 That's why 'feminism' UNWomen enforced the destruction of the family #HateMen. Cz they need all those daughters 'available' for use, abuse and exploitation. #WomenAreUNLiveStock"
224
+ 173,2021-06-03 19:29:31+00:00,OwStans,@stoplgtbq677677 @deltalotlOW Love that for you #hatemen
225
+ 174,2021-06-02 21:53:16+00:00,mxhnooorx,@Wince_x @bigballermar1 #hatemen
226
+ 175,2021-05-17 00:54:53+00:00,JennyPe65245454,"I could really ruin someone’s life, by going to the police with all these pictures.. but I don’t wanna do that.. I just want this shit to stop. #HateMen"
227
+ 176,2021-05-07 17:49:32+00:00,Sakshiv_,"You will never feel awful, until someone will hurt you the same way,
228
+ Or you lose somebody loving and close of yours..
229
+ #hatemen #nofeelings #noemotions #writer #writerslife #WritingCommunity #rt #retweet #FB #Twitter"
230
+ 177,2021-05-04 21:40:40+00:00,JudyDuffy1980,I think i’ll be next hun! Haha🙏🏻✝️ #hatemen #wap https://t.co/8na0ShBWBi
231
+ 178,2021-05-04 21:39:36+00:00,Jenniff99826452,I’m so glad I filed 😆✝️🙏🏼✌🏽💕💖😘 #hatemen #menaretrash https://t.co/P8b9J7VxAX
232
+ 179,2021-05-03 13:15:35+00:00,Secret24Lover,Officially over men... honestly wtf is wrong with them?? #hatemen
233
+ 180,2021-05-03 05:06:03+00:00,nba_surf,@cactusjimmy_ #barbs #periodt #misogyny #hatemen #GBVS #lgbtqforcorpse #ew
234
+ 181,2021-05-02 14:04:43+00:00,SierraTMbrown,My boss just said to my co worker “it’s a good thing that you have a huge dick because you’re so goddamn stupid” #hatemen
235
+ 182,2021-04-24 22:16:42+00:00,hauntedhaworthe,#hatemen
236
+ 183,2021-04-20 01:28:41+00:00,KaraMicNick,@sydswag2 #hatemen
237
+ 184,2021-04-18 23:06:09+00:00,theplanetmars21,PLEASE STAY SAFE❤️❤️ #staysafe #hatemen #menarestupid
238
+ 185,2021-04-18 08:48:06+00:00,balamutas_,"@sexybaldchicken Aš noriu boyfriend, bet neturiu kantrybės #hatemen"
239
+ 186,2021-04-14 14:38:33+00:00,GraceArchimedes,Dude on the bus was just staring at me and then winked at me. I feel gross now. #hatemen #leavemealone #scared https://t.co/K0OoTgkOXv
240
+ 187,2021-04-02 15:09:35+00:00,stephanieA94,"Over the last 2 days 4 different men have whistled and made rude remarks at me...
241
+
242
+ Today when running (2 men together)
243
+
244
+ And yesterday when I was at work in a primary school 🙄 (2 men again together)
245
+
246
+ Fucking bollocks. #hatemen #comeatme"
247
+ 188,2021-04-01 20:08:07+00:00,ogjazmin,@tonysuarez17 @selenexlozano this foo swears 😫 instead of saying sorry he’s flexing lmaooooo #hatemen
248
+ 189,2021-04-01 13:46:39+00:00,yeb_sakoda,@mewmewnene @koiwaprimavera honestlyw good #hatemen
249
+ 190,2021-03-30 15:47:59+00:00,chocolatemous33,Why they always gotta have so many opinions #hatemen
250
+ 191,2021-03-19 23:22:40+00:00,realelrogero,I’m live on Twitch - Watch me at https://t.co/QvyfCbYOo0 #farage #brexit #curfew #coronavirus #fanclub #rocketleague #hatemen #feminism @scotters5500
251
+ 192,2021-03-16 06:50:14+00:00,lildiosaxp,#hatemen
252
+ 193,2021-03-13 08:37:47+00:00,luvlyquackity,#woman #WomansHistoryMonth #hatemen #Feminism #womensrights #birthday #dsmp #mcyttwt
253
+ 194,2021-03-13 00:26:11+00:00,geddolan,So the world is going to end with only women and gender neutral folk left.may as well jump off a bridge now lads 🤦‍♂️#hatemen #CurfewForMen #TooManyMen #notallmenbutallwomen
254
+ 195,2021-03-12 19:47:12+00:00,Dmaxwellkloot,"@Torsvicky87 I genuinely feel like a lot of women are jumping on the #hatemen bandwagon! There’s a lot of pricks out there! Loads, but they’re not just men"
255
+ 196,2021-03-10 06:59:43+00:00,maedenkitty,#hatemen
256
+ 197,2021-03-04 04:01:51+00:00,sara_allard_,I feel disgusting #hatemen
257
+ 198,2021-03-01 04:57:56+00:00,dspineaplepiza,Update: after asking for me not to flake he flaked on me 🙂👍 #hatemen https://t.co/Dyp3jOZVlB
258
+ 199,2021-02-28 22:54:40+00:00,urmothergothel,#hatemen
Datasets/Negative CSV/hatewomen.csv ADDED
@@ -0,0 +1,92 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ,Date,User,Tweet
2
+ 0,2022-11-09 03:44:34+00:00,psears,good fucking job #texas y’all really #hatewomen and freedom and freezing come winter
3
+ 1,2022-11-04 17:29:50+00:00,ArrestHimNow,@Jim_Jordan The right…#HateWomen #HateSeniors #HateEveryoneWhoArentRich #HateEveryoneWhoCanThinkForThemselves #HateYouForVotingBlue
4
+ 2,2022-11-02 02:30:07+00:00,realBillMcKny,"@piyushmittal @GOPLeader @LeaderMcConnell Has anyone noticed: @DemocratMen/@democratwomen still remain quiet and stand by while the @SpeakerOfTheHouse continues to take CRAP from anyone/everyone??
5
+ Why do this country #HATEWOMEN? #WomenHateWomen.
6
+ On #BOTHSIDES!"
7
+ 3,2022-10-29 21:43:34+00:00,Sleepy89456953,"@TacomaPD #hatewomen
8
+ obviously support crimes against WOMEN https://t.co/Sz6VP5TPNL"
9
+ 4,2022-10-25 07:22:13+00:00,WeWomen007,@Belstaffie @MrAndyNgo @JoDrant It truly does. Male violence by men who #hatewomen
10
+ 5,2022-10-24 02:17:31+00:00,ChE_Engineer_TA,@RNCResearch It’s obvious that democrats #hatewomen
11
+ 6,2022-10-19 15:54:11+00:00,vbbzs2003,@justdielithomie Erst tust du so und dann das ach man alle Frauen sind gleich darum sag ich #hatewomen 👊🏿
12
+ 7,2022-10-09 17:04:30+00:00,permatired1,"what did we learn from this? don't talk to women cuz there's a chance they might be men, easiest way around it is just talk to men then it's guarenteed a man #hatewomen"
13
+ 8,2022-10-09 04:53:35+00:00,pencefl69868052,#Cult much? #Groomers #hatewomen https://t.co/aY01z9Uf0Y
14
+ 9,2022-09-30 22:29:09+00:00,HyperRegan,#HateWomen
15
+ 10,2022-09-27 16:12:26+00:00,KittPontiac,"Yep. That must be the only reason.
16
+
17
+ #ItalianElections #HateWomen #Moron https://t.co/V55Kbl5kLv"
18
+ 11,2022-09-24 03:08:45+00:00,ChocoPudding,@Jim_Jordan Abortion. #ForcedBirth #HateWomen
19
+ 12,2022-09-24 03:08:12+00:00,ChocoPudding,@SenRickScott Abortion. #ForcedBirth #HateWomen
20
+ 13,2022-09-24 03:06:54+00:00,ChocoPudding,@SenTedCruz Abortion. #ForcedBirth #HateWomen #Cancun
21
+ 14,2022-09-24 03:06:25+00:00,ChocoPudding,@MonicaCrowley Abortion. #ForcedBirth #HateWomen Vote accordingly.
22
+ 15,2022-09-24 03:05:38+00:00,ChocoPudding,@GregAbbott_TX Abortion. #ForcedBirth #HateWomen
23
+ 16,2022-09-24 03:05:08+00:00,ChocoPudding,@SenRickScott Abortion. #ForcedBirth #HateWomen
24
+ 17,2022-09-24 03:04:46+00:00,ChocoPudding,"@SenTedCruz And you're a fellah who knows petty! Hey, read us some more Dr. Seuss, joker clown! Also: Forced Birth and Cancun. #ForcedBirth #HateWomen #Cancun"
25
+ 18,2022-09-24 03:03:40+00:00,ChocoPudding,"@TomCottonAR Forced birth. If you disagree, vote all Republicans out. #ForcedBirth #HateWomen"
26
+ 19,2022-09-22 04:47:04+00:00,ChocoPudding,@DrOz Abortion. Being a loser. Being a clown. Being an abortion? You. #ForcedBirth #HateWomen #Evil
27
+ 20,2022-09-22 04:45:48+00:00,ChocoPudding,@GOPChairwoman Also: #ForcedBirth #HateWomen #Evil
28
+ 21,2022-09-22 04:42:10+00:00,ChocoPudding,@laurenboebert Abortion. #ForcedBirth #HateWomen #Evil
29
+ 22,2022-09-22 04:37:57+00:00,ChocoPudding,@HouseGOP Abortion. #ForcedBirth #HateWomen #Racist #Evil
30
+ 23,2022-09-22 04:36:58+00:00,ChocoPudding,@SenRickScott Abortion. #ForcedBirth #HateWomen #Evil
31
+ 24,2022-09-22 04:21:22+00:00,ChocoPudding,@SenTedCruz Millions of women have watched you strip them of their rights as human beings. #ForcedBirth #HateWomen #Cancun
32
+ 25,2022-09-22 04:20:26+00:00,ChocoPudding,@SenTedCruz Abortion. (You are such an abortion.) #ForcedBirth #HateWomen #Cancun
33
+ 26,2022-09-21 19:03:15+00:00,ChocoPudding,@JudiciaryGOP Abortion. #ForcedBirth #HateWomen
34
+ 27,2022-09-21 19:02:54+00:00,ChocoPudding,@SenTedCruz @DailyCaller Abortion. #ForcedBirth #HateWomen #Cancun
35
+ 28,2022-09-21 19:02:33+00:00,ChocoPudding,"@SenTedCruz Bahahahahahahaha. Okay, Cancun Cowboy. Also: Abortion. #ForcedBirth #HateWomen #Cancun"
36
+ 29,2022-09-21 17:12:48+00:00,ChocoPudding,@LeaderMcConnell #ForcedBirth #HateWomen
37
+ 30,2022-09-21 17:12:27+00:00,ChocoPudding,@SenTedCruz #ForcedBirth #HateWomen #Cancun
38
+ 31,2022-09-19 23:09:06+00:00,ChocoPudding,@MarshaBlackburn Abortion. #ForcedBirth #HateWomen
39
+ 32,2022-09-19 23:08:23+00:00,ChocoPudding,@GovRonDeSantis Abortion. #ForcedBirth #HateWomen
40
+ 33,2022-09-19 23:08:02+00:00,ChocoPudding,@SenJohnKennedy Abortion. #ForcedBirth #HateWomen
41
+ 34,2022-09-19 23:07:30+00:00,ChocoPudding,@laurenboebert Abortion. #ForcedBirth #HateWomen
42
+ 35,2022-09-19 23:07:12+00:00,ChocoPudding,@tedcruz Abortion. #ForcedBirth #HateWomen
43
+ 36,2022-09-19 23:06:48+00:00,ChocoPudding,@RepStefanik Abortion. #ForcedBirth #HateWomen
44
+ 37,2022-09-19 23:06:23+00:00,ChocoPudding,@RonnyJacksonTX Abortion. #ForcedBirth #HateWomen
45
+ 38,2022-09-19 23:06:01+00:00,ChocoPudding,@tedcruz Abortion. #ForcedBirth #HateWomen
46
+ 39,2022-09-19 23:05:29+00:00,ChocoPudding,@GovRonDeSantis Abortion. #ForcedBirth #HateWomen
47
+ 40,2022-09-19 23:04:41+00:00,ChocoPudding,@JudiciaryGOP Abortion. #ForcedBirth #HateWomen
48
+ 41,2022-09-19 23:04:05+00:00,ChocoPudding,@mikepompeo Abortion. #ForcedBirth #HateWomen
49
+ 42,2022-09-19 23:03:42+00:00,ChocoPudding,@SenRickScott #ForcedBirth #HateWomen Abortion.
50
+ 43,2022-09-18 17:51:27+00:00,TrueAgainst,"@GOP Like WHAT?
51
+ #HateImmigrants? #HateWomen? #HateThePoor? #HateTheConstitution? #NaziFascism?"
52
+ 44,2022-09-16 06:02:25+00:00,ChocoPudding,"@SenatorHagerty You get a boner sitting around thinking about rolling across women's right to healthcare, don't you? #ForcedBirth #HateWomen"
53
+ 45,2022-09-16 05:59:05+00:00,ChocoPudding,@TomCottonAR You should recognize the cost of taking a big old dump all over women. #ForcedBirth #HateWomen
54
+ 46,2022-09-15 20:08:02+00:00,ChocoPudding,"@SenTedCruz RELEASE: Sen. Cruz calls to outlaw abortion with no exceptions. Says ""If women die, good! I am the King of Women!"" #ForcedBirth #HateWomen #Cancun"
55
+ 47,2022-09-15 20:06:36+00:00,ChocoPudding,@BillOReilly @NoSpinNews #ForcedBirth #HateWomen
56
+ 48,2022-09-15 20:04:39+00:00,ChocoPudding,@SenTedCruz And tomorrow you will call to outlaw all abortions with no exceptions. #ForcedBirth #HateWomen #Cancun
57
+ 49,2022-09-14 16:48:29+00:00,ChocoPudding,@SenTedCruz Did you ask them to ban all abortions without exception? Because we all know you have a boner for that. #ForcedBirth #HateWomen #Cancun
58
+ 50,2022-09-14 16:47:25+00:00,ChocoPudding,@RonJohnsonWI And banning all abortions without exception or not doing that. #ForcedBirth #HateWomen #PackYourBags
59
+ 51,2022-09-14 16:46:29+00:00,ChocoPudding,@SenTedCruz #ForcedBirth #HateWomen #Cancun
60
+ 52,2022-09-14 16:45:59+00:00,ChocoPudding,"@SenTedCruz And Republicans want to ban all abortions without exception, Mister Roly Poly. Don't forget that! #ForcedBirth #HateWomen #Cancun"
61
+ 53,2022-09-14 16:44:59+00:00,ChocoPudding,@LindseyGrahamSC You should totally double down and introduce legislation that all women who die should have their bodies stacked at the border as a warning and as a stimulus to the economy. That's just Republican policy. #HateWomen #ForcedBirth
62
+ 54,2022-09-14 15:33:18+00:00,ChocoPudding,@LindseyGrahamSC #ForcedBirth #HateWomen
63
+ 55,2022-09-14 15:32:49+00:00,ChocoPudding,"@SenTedCruz @SenRickScott @SenMikeLee ""Republicans need to stand united on a national abortion ban with no exceptions. I hate women, but I looooove Cancun!"" --Ted Cruz #ForcedBirth #HateWomen #Cancun"
64
+ 56,2022-09-14 15:31:57+00:00,ChocoPudding,@SenTedCruz @cbs11jack Cruz to back national abortion ban with no exceptions. #ForcedBirth #HateWomen #Cancun
65
+ 57,2022-09-14 15:30:46+00:00,ChocoPudding,@LindseyGrahamSC National abortion ban with no exceptions would be a Republican dream come true. #ForcedBirth #HateWomen
66
+ 58,2022-09-14 15:30:12+00:00,ChocoPudding,@LeaderMcConnell National abortion ban with no exceptions would be a Republican dream come true. #ForcedBirth #HateWomen
67
+ 59,2022-09-13 15:11:32+00:00,32pjgPdO9OGaxXO,@AmoneyResists @Boobalander1970 @LindseyGrahamSC The .@GOP #HateWomen #WantTotalControlOverYOU
68
+ 60,2022-09-09 13:25:35+00:00,abbsurd,i kind of #hatewomen (^_^)v
69
+ 61,2022-09-07 12:07:06+00:00,Guus0910,"@ciscoo29 Nao ha mulheres certas, agarra a que te fode menos a cabeça #hatewomen"
70
+ 62,2022-09-01 22:52:39+00:00,BesarionBourke,"Women actually need to shut the fuck up and get back to the dishes already, who gave them rights anyway??
71
+ #hatewomen"
72
+ 63,2022-08-22 03:00:41+00:00,BesarionBourke,"Love it when women say their independent but only got to the position their in because of a man
73
+ #men #SIGMA #BASED #hatewomen"
74
+ 64,2022-08-19 02:35:41+00:00,RickyMourke69,"Jesus he’s slurring so fucking hard while attacking Tara. But yeah guys this is cool, this is absolutely acceptable behaviour. All of the hosts are complicit #peridrama #hatewomen"
75
+ 65,2022-08-14 17:34:06+00:00,bloccoa,creeper chaos thumbnail made by me and @Hoicsant in like Like 3 hours Its swag i like this on1 #cripezrr #Dicks #ROBLOX #MuhLifeVideoGayme #TwitterHatesWomen #HateWomen #robloxart #RobloxDev #squirt #RobloxUGC #HateLife #FuckN https://t.co/2CTPiT5qRZ
76
+ 66,2022-08-12 20:31:05+00:00,SimiloTheMandem,My goat #AndrewTate bringing back masculinity!❤️ #HateWomen #misogyny https://t.co/L5TnvErbXz
77
+ 67,2022-08-04 16:56:03+00:00,SiccVendetta,"this is why i #hatewomen
78
+ #suitakeover"
79
+ 68,2022-07-29 11:52:17+00:00,MrsPennyWise82,"@Castafi0re @ripx4nutmeg In recent cases, the police have been the perpetrators a La Wayne Couzens. And then police colleagues had the audacity to joke about it. No wonder they ignore it. It’s clear they #hatewomen"
80
+ 69,2022-07-27 22:48:15+00:00,DpIp_CalifMom,#DoesMattGaetz. #HateWomen. #BecauseHeHasAn. #ItsyBitsy…. #OrHeJustAJerk? https://t.co/jIdoJirnLY
81
+ 70,2022-07-25 20:17:17+00:00,hvrshana,@freaky12455300 #HateWomen
82
+ 71,2022-07-15 10:44:32+00:00,freakybass,"#gop
83
+ #republicants
84
+ #hatewomen
85
+ #hateswomen
86
+ #womenhaters
87
+ #womanhating
88
+ #power
89
+ #control
90
+ #prochoice
91
+ #roevswade https://t.co/6soUzNkDA2"
92
+ 72,2022-07-12 05:34:57+00:00,Threelittleeeee,"@dannyblanton @RepRaskin Ok she was one of the heads who find #osamabinladen and the rest is history! 9/11 how many #American died? and you want to arrested @HillaryClinton? What #trump do for this country, NOTHING JUST CHAOS AND SPREAD #HATEWOMEN AND #Fascism AND #WHITEPOWER BULLSHIT"
Datasets/Negative CSV/menaretrash.csv ADDED
@@ -0,0 +1,324 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ,Date,User,Tweet
2
+ 0,2022-11-10 11:24:15+00:00,SarahMenart,"@JLGaudart @artoflovve @MLagrandemotte @ParisienFierFR T’auras rien espèse de vieux 👴🏻 PERVERS NARCISSIQUE 😩🗑
3
+ Aucune #QUEEN ne voudra d’un vieux PORC 🐷 comme toi 🤮🤮
4
+ Vieux CROUTON va !!!
5
+ #MenAreTrash 🌈"
6
+ 1,2022-11-10 02:34:57+00:00,_dirty_pretty_,#guesswhosback #backagain #ByeFelicia #NoThanks #smallbusinessowner #singlelife #dating #relationship #overit #menaretrash https://t.co/U9xjveAo9w
7
+ 2,2022-11-09 23:02:45+00:00,xahalya,"@PhraseJeunes Ce qui m'étonne c'est qu'une des personnes qui a RT ça met le #menaretrash a tous ses tweets, full emojis bien cringe en hurlant des propos incohérent"
8
+ 3,2022-11-09 21:39:00+00:00,YoltekD,"@Neptooor_ @Mobala_ Jsuis d'accord avec toi pour une fois #menaretrash
9
+ #BlackPanther
10
+ #myso"
11
+ 4,2022-11-09 21:00:03+00:00,SAnationalist,"@MsibiNzuzo when we say #menaretrash even decent South African men own up & don't say ""not me"" because it's on them to root out the rotten ones among them... but because nina nidla iagusi you fight so the same principle doesn't apply to them? Yimani kancane Nzuzo vulani amakhanda maan aw"
12
+ 5,2022-11-09 18:31:06+00:00,jtakichi1,@cafujr_ @TruwantAlyssa @bltt67 continuez à nous montrer votre vrai visage messiers #menaretrash 👌
13
+ 6,2022-11-09 17:32:14+00:00,PutSAfirst001,"There are some feminists somewhere wishing to throw the #menaretrash tantrum concerning the issue of Zanele Sifuba but it pains them knowing they're gonna be reminded that Gigaba, the late Kebby, Zondo and Kaybee were exposed by women"
14
+ 7,2022-11-09 17:03:36+00:00,JKlivez,Read the replies & quotes- You'll know how & From why the #menaretrash statement comes from.. https://t.co/l8xjm8MQXn
15
+ 8,2022-11-09 16:37:46+00:00,__aamhar,bartise better not let me catch him lackin… you had a good woman by your side ! Nancy’s brothers reaction was completely justified !! #LoveIsBlind #Nancy #Bartise #menaretrash
16
+ 9,2022-11-09 16:21:42+00:00,thabomaphhosa,"@Tammmmy_27 Killing her is not worth it....
17
+ #menaretrash"
18
+ 10,2022-11-09 15:57:18+00:00,RoiDelice,Ça change pas trop en 2022 #menaretrash https://t.co/cSf7rmYwdh
19
+ 11,2022-11-09 15:51:30+00:00,martinssempa,Me Chopping the #menaretrash tree while keeping the main one of #realmen work hard and love their wife and children. There is true love. There are true men. #MenareNottrash https://t.co/bqCkqb6VTt
20
+ 12,2022-11-09 14:36:16+00:00,trevor7044,"tupperware and some went as far as saying Matthew has a bad taste in women which is disgraceful to say.
21
+ My question is where are the feminists to stand with Sonia and support her in this difficult time for her. Where is the #MENARETRASH gang, some radio stations had the topic """
22
+ 13,2022-11-09 12:58:29+00:00,djkevking,#MenAreTrash https://t.co/8TqC3Rm5gQ
23
+ 14,2022-11-09 11:48:19+00:00,UnathiMajova97,@Newzroom405 #menAreTrash where is that brigade? @Mrallinone_SA
24
+ 15,2022-11-09 08:39:24+00:00,SarahMenart,"@D4vizuu @_neptendus Il va tout simplement te ✨TROMPER✨ comme le font tous les 🖕🏻hommes🖕🏻.
25
+ Sois forte ma 👑QUEEN👑
26
+ #MenAreTrash"
27
+ 16,2022-11-09 08:27:50+00:00,SarahMenart,"@BranleurJ @courbet_julien 🤣🤣🤣Tu penses serieusement qu’avec une 🤢TÊTE🤢 comme la tienne qu’une 👑#QUEEN 💫 voudra de toi ? Laisse moi GERBER 🤮
28
+ Petit con !!!!!! 🖕🏻🖕🏻🖕🏻
29
+ #menAreTrash"
30
+ 17,2022-11-09 08:02:27+00:00,Bongani_O_Moyo,@_Mashudu_M #MenAreTrash
31
+ 18,2022-11-09 08:02:08+00:00,Bongani_O_Moyo,#MenAreTrash https://t.co/DhOcwIfJT5
32
+ 19,2022-11-09 07:48:21+00:00,box_blk,@ThamiMilis Yet irrespective of his Nationality the lil Trash Bag you leacked the video is still a man don't know why Black SA man in particular take it personally when the #Menaretrash slogan trends
33
+ 20,2022-11-09 03:42:48+00:00,AmyJackson42069,@CeoPorschia My baby daddy pay me $4500/month and I aint work in years lol 💯💯#menaretrash
34
+ 21,2022-11-09 00:11:37+00:00,jadeclho,#menaretrash
35
+ 22,2022-11-08 22:33:52+00:00,SarahMenart,"@YuritchiT Raaah encore un FRUSTRÉ qui n’a jamais su plaire à une ✨👸Queen👸✨
36
+ #MenAreTrash"
37
+ 23,2022-11-08 22:32:00+00:00,SarahMenart,"Ils revienennt TOUS comme des petits chiens 🐕 🐶
38
+ Ouaf ouaf !!!!! 🚨
39
+ #MenAreTRASH https://t.co/Ka5o4v2fwO"
40
+ 24,2022-11-08 20:42:59+00:00,laurchnr,Un tweet de + pcq y’en a jamais assez où je relance le #menaretrash svp vrmt arrêtez vous
41
+ 25,2022-11-08 20:11:56+00:00,levoyagedemani,@Mehdinato Nn pas de mâle #menaretrash
42
+ 26,2022-11-08 19:44:52+00:00,ExplicitlyDee,"He refused to sell his kidney, to buy me wtv i want. His love isn’t real.
43
+ #menaretrash"
44
+ 27,2022-11-08 17:56:27+00:00,Xorkatos3,@Jarbi3_7af #MenAreTrash
45
+ 28,2022-11-08 16:45:49+00:00,lamoussoreuse,"Le privé est politique
46
+
47
+ 2015 démantèlement d’un réseau de pedo criminels en Angleterre
48
+ Il est fondamental de démanteler tout groupe ou réseaux d’hommes qui abusent des femmes, de filles et jeunes garçons.
49
+
50
+ #BoysClub #MenClub #MenareTrash https://t.co/tEfKvTxn1a"
51
+ 29,2022-11-08 15:39:17+00:00,Samz_Nomhle,@SizweHosia Bese kumele sim'seke sithi #MenAreTrash aii 💀💀
52
+ 30,2022-11-08 14:32:38+00:00,uSqiniseko,Gay men are still men and are constantly included in #MenAreTrash
53
+ 31,2022-11-08 12:49:41+00:00,bobsstar1979,"@ask_aubry As i always say, #menaretrash"
54
+ 32,2022-11-08 12:47:04+00:00,Ladielazarus,"I have a theory that every man who tells women to smile also votes pro-life. After all, if they expect to regulate our emotions… #idontsmileoncommand #stoptellingwomenwhattodo #menaretrash"
55
+ 33,2022-11-08 05:59:59+00:00,Ferociousll,He loves his bitches crazy until they write his name all over their body and show up on his front lawn crying with mascara smeared all over their face asking to go to Dairy Queen. #menaretrash
56
+ 34,2022-11-07 23:14:59+00:00,hannahmilktea,"Watching all of these dating reality t.v. shows, and I’ve come to a realization that the bars on the ground, but some men will bring the shovel 😂💀 #LoveIsBlind #TheUltimatum #LoveIsland #Netflix #menaretrash"
57
+ 35,2022-11-07 21:20:43+00:00,QuarterMaster76,"J’avais oublié. Quand on parle de #MenAreTrash ici on a le “club des gens qui applaudissent quand le pilote réussit son atterrissage” qui débarque.
58
+ Parce que tu comprends #NotAllPilot"
59
+ 36,2022-11-07 18:16:22+00:00,sifaa_mm,@aurore_uw #abasinzi #menaretrash
60
+ 37,2022-11-07 17:34:40+00:00,Mariyselita,"#menaretrash vol. 8, capítulo 2 https://t.co/VGG0Vfq8e2"
61
+ 38,2022-11-07 17:12:13+00:00,sirajul147,#menaretrash 😌 https://t.co/TTLSyyrEiC
62
+ 39,2022-11-07 13:27:17+00:00,TiaLaNana_,#MENARETRASH https://t.co/iSwpKx9jlX
63
+ 40,2022-11-07 10:06:23+00:00,princenshiz,"@FootballMissess @NsangaSylvie Dore bakameye umugore nkaho ariwe wenyine uri kuri match😳
64
+
65
+ #menaretrash #KororaIheneNintama"
66
+ 41,2022-11-07 07:42:42+00:00,toughlove48,"@Jaroooooold You need to be female so that ""No becomes No"" because Equality. No need to respect men coz #menaretrash 🤣"
67
+ 42,2022-11-07 04:18:34+00:00,EnzoRagon,"@ilhonaaa #menaretrash le thread
68
+ Courage à toi meuf et merde à ce connard"
69
+ 43,2022-11-07 02:43:07+00:00,JacktBattousai,GM! #MenAreTrash ehek 💀 https://t.co/hLZMxP5mF7
70
+ 44,2022-11-07 00:57:10+00:00,tuvasbienmdr444,#Menaretrash
71
+ 45,2022-11-06 22:50:56+00:00,Mariyselita,"Lo entrevistaron y dijo que se fue solita, fue al velorio y exigió justicia........ Y ahora lo buscan porque siempre sí hay vídeos del edificio y mintió. Sin mencionar que la fiscalía dijo que se había ahogado en vómito.
72
+
73
+ #menaretrash 🚮 vol. 8 https://t.co/oAgfNHmhHz"
74
+ 46,2022-11-06 19:57:18+00:00,aureliemnl,@launtzz #menaretrash
75
+ 47,2022-11-06 19:14:43+00:00,thabomaphhosa,@CaptainVirgilx #menaretrash simple
76
+ 48,2022-11-06 17:24:16+00:00,LiberalsAreNaiv,"South African feminists, women rights activists, ANC government, and politicians claim to be fighting against #GBV when in actual fact they're ""pitting women & men against each other"".🤷
77
+
78
+ I'm joining NO movement/march that says #MenAreTrash, painting all men with the same brush🤞 https://t.co/j9jChp0GN0"
79
+ 49,2022-11-06 16:34:43+00:00,Xorkatos3,#menaretrash https://t.co/JqLwOD8JIA
80
+ 50,2022-11-06 14:06:23+00:00,DCNN241,@Readthekay @Raissa0026 @UDarlyne @MagdalenaObame C’est pas moi oh 🤣🤣🤣🤣🤣🤣🤣 #MenAreTrash ça bouge pas ! ( sauf le mien)
81
+ 51,2022-11-06 03:47:25+00:00,valensiathereal,"@elonmusk @Erdayastronaut Don't ban fathers who aren't allowed to see their children, men who got creamed by biased family law. If Soros/ACLU endorsed neo feminism wants to #killallmen, proclaim #menaretrash, fine. But allow us to tease them a little. The #manosphere being 'far right' is a leftist lie"
82
+ 52,2022-11-05 23:14:09+00:00,Xorkatos3,@kareem_nasser #menaretrash
83
+ 53,2022-11-05 19:32:01+00:00,cmariedreams,#menaretrash #notallmen #mostmen
84
+ 54,2022-11-05 19:16:29+00:00,twolilsZ,"Mens hatred of women has never been higher. It's rife. Between incels, trancels, and ALLLLLLL the men who languidly watch the establishment, men & extremists destroy women & children, women have barely any allies. Men love power above everything & everyone.
85
+ #menaretrash https://t.co/W9QZux7jze"
86
+ 55,2022-11-05 16:50:43+00:00,Myriam_Liebl,"SK a dit non à Raven?? Ntap!! Et il faisait le long discours là why??? Yich! On peut être fake ainsi?
87
+ #menaretrash #LoveIsBlind3"
88
+ 56,2022-11-05 16:07:28+00:00,insomniaenby,And fvck men #menaretrash https://t.co/ACAFy2S2zL
89
+ 57,2022-11-05 15:49:03+00:00,_overscan_,"Vous le sentez venir le neo-fascisme ou ça vous en touche une sans faire bouger l'autre ?
90
+
91
+ #MenAreTrash https://t.co/RuDAzBR4rz"
92
+ 58,2022-11-05 14:49:12+00:00,Morgan42298161,"Noo... ""Patriarchy"" is institutionalised in her! Men are oppressors of women. They are cruel hearted idiots who just want to use women as objects!
93
+ #GemsOfFeminism #menaretrash #Feminism https://t.co/KNo6nyXmfA"
94
+ 59,2022-11-05 14:42:06+00:00,DanicaB84217633,"BAKIT KASI GANITO KALAKI IMPACT MO SAAKIN EH LALAKI KA LANG NAMAN TANGINAMO
95
+ #menaretrash https://t.co/RYZU2Q59q4"
96
+ 60,2022-11-05 14:08:38+00:00,RoiDelice,"Voir le mot harcèlement dans la bouche d'hcis rolistes qui ont des propos violents tous les 4matins, ça me tend.
97
+ F/trans qui reçoit du harcèlement de masse : liberté d'expressioooon
98
+ Hcis qui se fait callout : Ouin ouin harcèlement
99
+ #menaretrash"
100
+ 61,2022-11-05 13:38:54+00:00,Muni_ficent,@tebotsebe as for '#menaretrash'😭! https://t.co/BZhS4wzMDI
101
+ 62,2022-11-05 13:16:51+00:00,eldani1978x,@UN_Women @UNESCO So cynical! What about those 90% dying? They are not humans? You want 100% men dead! Disgusting!🤮 #AllLivesMatter #feminazismo #stopnazis #menaretrash
102
+ 63,2022-11-05 11:18:52+00:00,tebotsebe,#menaretrash 👎🏽👎🏽 https://t.co/NoLQDinp45
103
+ 64,2022-11-05 11:03:29+00:00,nunerian,"@lillyseedat @tamia_sd I get it, love and light ma. #MenAreTrash 😔❤️"
104
+ 65,2022-11-05 10:34:05+00:00,Feministopheles,"@Lily_Antovska #MenAreTrash
105
+
106
+ 🤮🤮"
107
+ 66,2022-11-05 09:38:00+00:00,Feministopheles,"#MenAreTrash 🤮🤮🤮
108
+
109
+ Si seulement les hommes pouvaient ne pas exister... https://t.co/0wsKzkF9OJ"
110
+ 67,2022-11-05 09:21:24+00:00,GotMoreRaves_CL,"Oh and BTW, if according to YOU cis women #menaretrash #yesallmen #yesallmenaretrash, then so is Daniel Radcliffe, even though he did speak in favor of US trans people.
111
+ Oh? You didn't mean it that way? Too late, my cis ladies. You said it, now ASSUME the consequences."
112
+ 68,2022-11-05 02:14:18+00:00,Marion_Web,@Ornella21615025 @SolifeGossip_ Arrêter de se mettre avec des mecs tout court #menaretrash
113
+ 69,2022-11-04 18:40:49+00:00,Xorkatos3,"@Jarbi3_7af @Spaceshipluna1 I forgot
114
+ #menaretrash"
115
+ 70,2022-11-04 18:40:46+00:00,ItinerantMedic,"Besides, what wrong with smoking/partying/Goa? Why can't men counter a ""rebellious"" woman logically? These are the men who always prove that #menaretrash."
116
+ 71,2022-11-04 13:10:02+00:00,Feministopheles,#MenAreTrash : épisode plus assez de chiffres pour compter... https://t.co/6ta4vPN1En
117
+ 72,2022-11-04 10:59:47+00:00,_JustSome0ne_,#menaretrash https://t.co/ULZyYh1DD6
118
+ 73,2022-11-04 09:53:17+00:00,PlineBr,#Menaretrash encore une fois. Soutien ✊ https://t.co/A2ThVyuiM0
119
+ 74,2022-11-04 09:07:46+00:00,kaiserkage,"@CAGBOLOSSOU @Renaudoss Same energy.
120
+ #MenAreTrash
121
+ #WomenAreMotGoodPeople https://t.co/ECD0UFGwxI"
122
+ 75,2022-11-04 07:56:42+00:00,larzsolice,"So South Africa has had a serious problem with growing gender based violence
123
+
124
+ To deal with this the strategy has been to place all the blame on men, and to revile men in campaigns like #MenAreTrash
125
+
126
+ Why has blaming men only resulted in more GBV? Perhaps half the story is missing"
127
+ 76,2022-11-04 06:56:00+00:00,TripusG,@Kingad82 @jesuis_samy Women women mpba 😂😂😂😂 #menaretrash 😂😂
128
+ 77,2022-11-04 06:22:38+00:00,Ash_Chennaite,"A soul acting for the world - Cheaters, Liers, Sweet words, Selfish, Arrogant, Beautiful... Being successful in their life specially the cheaters..
129
+ A soul not acting for world - Self respect, Brutally honest, No sweet words, Understanding - Losers in real lyf 😐😐😐 #MenareTrash"
130
+ 78,2022-11-04 00:43:57+00:00,lamoussoreuse,@PauleOkri #Menaretrash
131
+ 79,2022-11-03 22:41:12+00:00,joanhead,"If my man asked me if I was bipolar in the middle of an argument, THAT HE STARTED, I would be in jail. #LoveIsBlind #MenAreTrash"
132
+ 80,2022-11-03 15:56:19+00:00,zikky_E,"Does this look familiar?
133
+ #Feminism #menaretrash
134
+
135
+ Know your worth #Kings https://t.co/3f4YaJS8P5"
136
+ 81,2022-11-03 15:38:16+00:00,Lily41010987,#menaretrash
137
+ 82,2022-11-03 14:53:10+00:00,ItinerantMedic,"A cis man doesn't have to abuse or molest a woman to be a trash. Nice men who are otherwise silent and enjoy the fruits of patriarchy and are triggered only against #MenareTrash, are trash too."
138
+ 83,2022-11-03 12:49:00+00:00,TiaLaNana_,#mundoenfermoytriste #menaretrash https://t.co/7YMAAMYImb
139
+ 84,2022-11-03 12:45:39+00:00,insomniaenby,#menaretrash https://t.co/2g5oIFfAIA
140
+ 85,2022-11-03 07:35:00+00:00,Ras_hmi_Tweet,@Pradeep_tk She said #MenAreTrash
141
+ 86,2022-11-02 23:30:22+00:00,UnEnfantDuPays1,le gougat qui a fait ça dur à Diva Brow était dans cette équipe #menaretrash https://t.co/RPqm3ZsAWU
142
+ 87,2022-11-02 18:58:13+00:00,MicheleRose,"Tu supportes les infidélités d'un homme et son mépris pour qu'à la fin lorsque vous essayez de vivre ensemble,il finit par crier que tu as de sales habitudes et te largue. Et dire que s'il revient,elle va encore accepter.#WomenAreHysacam #MenAreTrash"
143
+ 88,2022-11-02 16:22:27+00:00,Feministopheles,@emmaf_77 #MenAreTrash 💩💩💩
144
+ 89,2022-11-02 16:15:49+00:00,blueEyeBallz,@Samuelj733 @guideforlovers Is it women or global elites who came up with campaigns like #MenAreTrash and #ibelieverher ?
145
+ 90,2022-11-02 10:35:15+00:00,Sio_D,"@LaurenceGourgu2 @GMbayoko On ne nie pas la difficulté des parents (ayant fait un ""burn out parental"" j'y suis particulièrement sensible) MAIS ce ne devrait pas être le sujet suite au meurtre d'un enfant.
146
+ C'est comme un #notallmen qui suit un #MenAreTrash. C'est pas le sujet."
147
+ 91,2022-11-02 10:11:22+00:00,xolani_peace,"@AdvoBarryRoux Yah huh sothini iFreedom of speech and expression. Uzobezwa o #menaretrash bazosithuka sonke, kodwa bayabona ukuthi uIke Khumalo"
148
+ 92,2022-11-02 09:32:31+00:00,witchglitz,Having been in a similar situation for several years I can’t imagine 20 years of trauma to be treated so freaking lightly. #thisisantiwomen #menaretrash https://t.co/ztEaq0XQpk
149
+ 93,2022-11-02 09:17:35+00:00,Colin__clark__,@_mvnzi_ Let’s make a GoFundMe to support these revolutionaries. #Spacekuisonga #MalcomX #M23 #Menaretrash
150
+ 94,2022-11-02 02:05:47+00:00,MboniMushiana,#MenAreTrash https://t.co/8sh33rYlSU
151
+ 95,2022-11-01 22:46:35+00:00,pessiflash,Bonne nuit les femmes de ma tl ✨ Y’en a que pour les hommes donc moi je vous mets en avant 🥰 #menaretrash
152
+ 96,2022-11-01 21:58:53+00:00,LoOuise,"Un homme terriblement marié qui te dis qu’il t’aime toi une jeune femme sans engagement officiel😒! Jusqu’à il t’écrit couché à côté de sa femme hein! Probablement après le câlin de bonne nuit!
153
+ Vous doutez encore de la saloperie de cette espèce 😑!
154
+ #menaretrash always and ever"
155
+ 97,2022-11-01 17:20:27+00:00,annasunnyg,"This is literally the entirety of our conversation. This guy #bodyshaming me just for shits. Like, you don’t think I don’t already hate my body? #menaretrash #datingsucks https://t.co/Bhx3rGJjvR"
156
+ 98,2022-11-01 15:24:05+00:00,LongLiveAissa,Vraiment dégoûtant #MenAreTrash
157
+ 99,2022-11-01 11:05:03+00:00,AdaLovelace69,"@JEANCLAUDEDDS @GrablyR @Manonolita14 @lixiviatio @_Nat_Ali @BFMTV Tu es juste un gros déchet #menaretrash
158
+ Sur un poste qui parle de harcèlement tu viens faire ton gros miso teubé."
159
+ 100,2022-11-01 11:04:15+00:00,AdaLovelace69,"@sixdepique1 @GrablyR @Manonolita14 @lixiviatio @_Nat_Ali @BFMTV Donc lorsque les hommes harcèle les femmes pour leurs physique ta solution c'est de ce cacher ? #menaretrash
160
+ Tu fais partie du problèmes."
161
+ 101,2022-11-01 11:03:19+00:00,AdaLovelace69,"@Act11Patriot @GrablyR @Sardoche_Lol @Manonolita14 @lixiviatio @_Nat_Ali @BFMTV #menaretrash
162
+ Tu fais partie du problème. Encore une fois mettre le soucis sur le dos des femmes en disant que c'est leurs comportement qui crée cela. Non c'est les hommes qui sont problématique."
163
+ 102,2022-11-01 11:02:20+00:00,AdaLovelace69,@GrablyR @Manonolita14 @lixiviatio @_Nat_Ali @BFMTV Sur un poste qui dénonce le comportement des hommes envers les femmes qu'est ce qu'on voit : Des hommes qui discrimine les femmes. Bravo les déchets. #menaretrash
164
+ 103,2022-11-01 09:28:17+00:00,LesibaNgwato,"#menaretrash , #webelieveher wa nyalwa you are the only one hating men 🤣🤣🤣 https://t.co/IhxwPUKDEt"
165
+ 104,2022-11-01 01:33:48+00:00,XanthosTwoTime,"@setho29 @Naoloebx @Nalahri @PupilleRetrecie @ahri_rose_elmac @KonoYimeDa Tant qu'il y aura des hommes avec ce genre de raisonnement c'est sûr que les femmes ne pourront pas dormir tranquille .... 🤦
166
+
167
+ #LeCombatContinue
168
+ #MenAreTrash"
169
+ 105,2022-11-01 00:52:44+00:00,WhimsicalAloo,#MenAreTrash https://t.co/4BfoZiDJab
170
+ 106,2022-10-31 19:06:52+00:00,buick_brad,@elonmusk if you have a minute. Would you explain to me why #menaretrash is allowed but #womenaretrash is not? I’m certain this won’t get your reply but worth a shot.
171
+ 107,2022-10-31 17:59:35+00:00,LolaLene1,"Straight women is the only demography force to dumpsters dive litterally..
172
+
173
+ #menaretrash"
174
+ 108,2022-10-31 17:58:09+00:00,Fatichoux13,@555sanz @samouillevip #menaretrash #niqueleshommes
175
+ 109,2022-10-31 17:51:55+00:00,_its_Erickson_,"White girl after breakup,
176
+ Eric it was nice knowing you,,,
177
+
178
+ Kenyan girl
179
+ #kitaeleweka #singleandhappy
180
+ #nimebakinamungutu #najababa #menaretrash 😂😂😂"
181
+ 110,2022-10-31 17:39:04+00:00,shantez_shania,"Suck his dick, give him pussy, support his ideas, feed him, clean for him, pray for him, stay loyal, love him, be his peace. And I guarantee sis that man still gonna cheat.
182
+
183
+ #menaretrash"
184
+ 111,2022-10-31 17:16:29+00:00,bellekafreen,"J'ai le nez qui coule, la fièvre, des maux de ventre, des vomissements.. BREF je suis malade. Pile au moment où @ssenthuuuu783 me DM #bizarre #menaretrash #sorcellerie"
185
+ 112,2022-10-31 16:53:54+00:00,witchglitz,Love when a dude in a bigass truck parks next to me and the first thing he does is open the door and hock a loogie. #menaretrash
186
+ 113,2022-10-31 13:05:06+00:00,CestLeSEnculai,@_Doudeh_ @KurenaiKyokyo @Jeinarzh @JeanMassiet @ultiaa ah ouais toi t’as pas digéré la blague misogyne d’un mec t’as décidé de faire le chevalier blanc et de t’en prendre à chaque homme mais j’avoue #menaretrash 🥺🥺
187
+ 114,2022-10-31 11:43:19+00:00,GoutsDoux,"#menaretrash, exhibit nr 469721 https://t.co/jWuffqfvjj"
188
+ 115,2022-10-31 09:45:08+00:00,MattR60099345,@yinyt6 @Matriarchy_Now #menaretrash
189
+ 116,2022-10-31 06:05:59+00:00,merlyndepato1,"Another day to learn that not all men are bad😉😉
190
+ Honestly,some are worse!!!
191
+ #INDvsSA #Nigeriadecides2023 #menaretrash #idgaf"
192
+ 117,2022-10-31 05:17:30+00:00,StoicOnWheels,"Mother kills baby boy in Karnataka. #Feminism at it's peak in Karunadu.
193
+ #KillAllMen #MenAreTrash https://t.co/vvl2LrCgMf"
194
+ 118,2022-10-30 22:31:49+00:00,ProductionExa,"@lenaattc @paulocarnal @ntmchallucinant @Klein633 @JuliaBayonetta La misandrie c'est surtout une défense a la misogynie qui est allée trop loin mais l'inverse n'est pas vrai. Quand quelque chose, même si cela n'avait pas pour but de blesser, blesse une féministe sur ce domaine, elle crache sa haine et le #menaretrash né."
195
+ 119,2022-10-30 22:18:41+00:00,borderlinebesti,"men be acting real sus on halloween. they wanna see tits every other day but as soon as we get them out for halloween we’re sluts
196
+
197
+ #menaretrash #men #Halloween"
198
+ 120,2022-10-30 20:43:36+00:00,Faith_eMonroe,“I’m your friend” no you just pretend like you’re a friend and then regularly bring up how I should fuck you even though I’ve made it very clear I don’t want to #menaretrash
199
+ 121,2022-10-30 18:43:10+00:00,Fatou_Rhawda,"Jeune,beau et Riche
200
+ Be careful #menaretrash"
201
+ 122,2022-10-30 18:21:21+00:00,PythonCEstLaVie,"Tu fais beaaaucoup d'efforts pour te rassurer moralement de ton sexisme quand tu dis #MenAreTrash... Nan parce qu'une généralisation sans chiffres pour la supporter, surtout quand c'est pour accuser de délits/crimes, sur la base du sexe, c'est du sexisme. https://t.co/zlRlWrm29f"
202
+ 123,2022-10-30 17:53:19+00:00,WhimsicalAloo,@Albin_Offl_ #MenAreTrash mathya???
203
+ 124,2022-10-30 16:35:06+00:00,Mariyselita,#menaretrash episodio especial de la tercera temporada 🚮 https://t.co/jD6PfJ2MpY
204
+ 125,2022-10-30 16:18:16+00:00,Biju21141657,"പെണ്ണ് അങ്ങനെ ചെയ്യില്ല,
205
+ ഒരു പെണ്ണിനെ പറയുമ്പോൾ സ്ത്രീ വർഗത്തെ ആണ് പറയുന്നത്
206
+ ഇങ്ങനെ മോഴിയുന്നവരുടെ ആത്മ സുഖത്തിന്
207
+ ഇത് കൂടി കിടക്കട്ടെ 😂😂😂
208
+ #menaretrash https://t.co/xzKOmNDYmK"
209
+ 126,2022-10-30 12:57:18+00:00,DONlNHO,@AdaLovelace69 @Marcinho_34 Je vois que t'es une fervente défenseuse du #menaretrash mais n'oublie jamais que tu peux te prétendre femme autant que tu veux tu resteras a jamais un homme que tu le veuilles ou non
210
+ 127,2022-10-30 12:33:10+00:00,Destrange07,"Yes👹
211
+
212
+ #menaretrash https://t.co/ld0fq6GIQF"
213
+ 128,2022-10-30 11:59:23+00:00,apphia_xvi1,"Irish niggas are actually time wasters, need to start charging per second for any attention I give you lot😑 #Ireland #menaretrash #IrishTwitter"
214
+ 129,2022-10-30 11:42:11+00:00,MosesCh06299020,Men are wicked.#BlackTwitter #dogecoin #BiggBossTamil6 #menaretrash
215
+ 130,2022-10-30 09:50:02+00:00,AdaLovelace69,#menaretrash https://t.co/oGZsjyKsLu
216
+ 131,2022-10-30 00:20:09+00:00,Bellutos,@LeaBazzar #MenAreTrash
217
+ 132,2022-10-29 22:13:58+00:00,ArobaseMorta,@RostomFcb @froode_parker Pq pas Feuse ? T misogyne ? #MenAreTrash
218
+ 133,2022-10-29 19:51:05+00:00,itscallumryan,"@blvklightning one last thing - i was literally arrested at a gbv protest in 2020 and ostracised in grade 12 by our grade for being vocal in my support of #menaretrash. i won’t be thrown in with what you’re insinuating - mine was ignorance corrected by change, yours is a conscious decision."
219
+ 134,2022-10-29 19:47:35+00:00,allanenzo7,@fatineamz t’en penses quoi madame #menaretrash ?
220
+ 135,2022-10-29 18:28:05+00:00,Vi0l3tt3_,@tounsyiaa @agsli39 @Wowaylebledard #menaretrash 😔😔
221
+ 136,2022-10-29 18:18:25+00:00,LolaLene1,"@cianadenise @negraesoterica @GodsWill0204 We don't #menaretrash but straights (like me 😮‍💨) orientation is litterally dumpsters diving.- try to find the less worst of them
222
+
223
+ Or for some still end up with the worst
224
+
225
+ & you have the unicorn 🤴🧚‍♂️. Who have it all & somehow fall outside of the bin or never been in it.. https://t.co/7GWsWeEt5J"
226
+ 137,2022-10-29 15:58:02+00:00,ridethejaeger,"@Evil_ZigZag @LeatherZombieV @MaxYmeMusic @MarxFanAccount twitter mon gros, j'ai pas à te faire un roman, t'as compris l'idée. Mais si tu veux :
227
+ pop = gay?
228
+ classique = bourgeois ?
229
+ etc.
230
+ chaque commu musicale est diversifiée, avec un vécu différent, rien à voir avec un not all men (#menaretrash d'ailleurs)"
231
+ 138,2022-10-29 14:02:37+00:00,UziWitDaHoodie_,@BigGucciSosv Tu comprend le russe ? L’homme à frappé la mère de la fille et elle rétorque avec “tu vas me frapper aussi ?” Sa réaction est légitime #MenAreTrash #Ukrainebetternomatterwhatthemedediacansaycausewesmokethatrussianpackrespectfully
232
+ 139,2022-10-29 13:06:33+00:00,squeequeelpb,@zizouclc @zizoursblc TG CONNARD DE MERDE #Squeezie #menaretrash #encolere #suffragette #moi #EmmaWatson #EmmanuelMacron #titandevian #ELONMUSK #threadhorreurenarabe #Fornite #onestdesfemmeetpastoi
233
+ 140,2022-10-29 08:36:36+00:00,AdaLovelace69,"Traduction : Il peu plus faire de blagues miso/raciste/transphobe donc il rage comme un bon vieux h67 blanc de merde :')
234
+ #menaretrash https://t.co/35oKJrF1EC"
235
+ 141,2022-10-29 05:59:32+00:00,CHIEFproblems,"let's see if free speech is back...
236
+
237
+ MEN ARE TRASH #menaretrash #PapaElon"
238
+ 142,2022-10-29 05:09:33+00:00,thabomaphhosa,"When ever a woman gets abused men should stand and not sit and watch
239
+ #menaretrash https://t.co/INxpJ2A09E"
240
+ 143,2022-10-29 02:36:47+00:00,ginger_annEdD,"Um, @LoveisBlindShow season 3: Throw the men out. “I don’t like you when you’re mad”…but you say you love her! Gtfo, Cole. #menaretrash #menarecancelled https://t.co/hdYuwROCcl"
241
+ 144,2022-10-29 00:04:44+00:00,ratpbibs,dans ma logique des choses on devrait voir des Zemmouriste tweeter #menaretrash nn? https://t.co/NcTsnzVcyf
242
+ 145,2022-10-28 23:58:31+00:00,AdaLovelace69,"Le mec ça le choque pas qu'un autre hommes parlent des femmes (ici mineurs) comme des proies a chasser ... Et on s'étonne de pourquoi les hommes sont des déchets irrespectueux
243
+ #menaretrash https://t.co/pJm7YD3PNg"
244
+ 146,2022-10-28 21:55:14+00:00,AdaLovelace69,"@AramylLiadon @KonbiniFr ""notallmen"" c'est toxique mais bon ... faut faire ses recherches avant de critiquer ;) #menaretrash"
245
+ 147,2022-10-28 21:48:45+00:00,AramylLiadon,@AdaLovelace69 @KonbiniFr Je met la réflexion sur tout ce qui peut de près ou de loin avoir un impact négatif sur ces problèmes. Je suis pas persuadé non plus que de traiter tous les hommes d'agresseurs à grand coup de #menaretrash fasse beaucoup avancer le sujet mais bref. Bonne soirée 🙂
246
+ 148,2022-10-28 21:05:41+00:00,Redopath,"@encoredeidrox @PikaShall @JeyWMD @juu_luux @jesseeingange @Legolascr56 @poncefleur T vraiment une merde t'excuse les blagues sur le viols car ça fait ""longtemps"" sale misogyne, toujours les mêmes pour penser comme ça. #MenAreTrash (hahhahaha)"
247
+ 149,2022-10-28 16:08:47+00:00,Cbsr31,#menaretrash #pedo https://t.co/ztz7Jkok4R
248
+ 150,2022-10-28 16:01:24+00:00,thabomaphhosa,"#menaretrash
249
+ Real men don't hit women https://t.co/BTBWYYybHv"
250
+ 151,2022-10-28 15:08:09+00:00,waldrigue,"L'herbe n'est verte nulle part.
251
+ Les Camerounais trouvent les Camerounais infidèles.
252
+ Les Congolaises trouvent les Congolais infidèles.
253
+ Les Ivoiriennes trouvent les Ivoiriens infidèles.
254
+ Les antillaises trouvent les antillais infidèles.
255
+ Bref, #MenAreTrash everywhere ! https://t.co/Fdhnebo7u5"
256
+ 152,2022-10-28 14:51:56+00:00,AdaLovelace69,"Les commentaires font flippé, le nombre de mec problématique qui sont problématique ... ça dénonce mais ça s'en prends toujours au femmes ou leurs dit de ce cacher ou de pas être elles même -_-
257
+ #menaretrash https://t.co/1UbCIS5VHW"
258
+ 153,2022-10-28 14:21:30+00:00,AdaLovelace69,"@MfaMathis @KonbiniFr Tu fais partie du problème. C'est pas parce qu'une femme met un décolleté ou s'habille ""sexy"" que ça vous donne le droit de les harceler sexuellement. Le soucis c'est le comportement des HOMMES. #menaretrash"
259
+ 154,2022-10-28 14:20:59+00:00,AdaLovelace69,"@AramylLiadon @KonbiniFr Tu fais partie du problème. C'est pas parce qu'une femme met un décolleté ou s'habille ""sexy"" que ça vous donne le droit de les harceler sexuellement. Le soucis c'est le comportement des HOMMES. #menaretrash"
260
+ 155,2022-10-28 14:19:54+00:00,AdaLovelace69,@adravius @KonbiniFr Tu fais partie du soucis. Le soucis c'est pas les streameuse hot tube mais le comportement des hommes. #menaretrash
261
+ 156,2022-10-28 14:13:00+00:00,weltraumhilfede,@sternde Wisst ihr noch #menaretrash?
262
+ 157,2022-10-28 11:01:21+00:00,Feministopheles,"Mais surtout continuez bien de fermer les yeux et de ne rien faire...
263
+
264
+ Une jeune femme est morte, un enfant de 2 ans se retrouve orphelin, des parents ont perdus leur fille, mais tout va bien... et surtout notallmen ! ÇA c'est important, hein ?
265
+
266
+ #MenAreTrash https://t.co/hIkjTsSr3a"
267
+ 158,2022-10-28 06:29:05+00:00,BenzMiles1980,"@Dancingjuju Le patriarcat, sa condition d’homme lui a appris qu’il pouvait disposer des femmes et d’user de violences si elles refusent. #menaretrash"
268
+ 159,2022-10-28 05:11:36+00:00,Derrick_67,"@SizophilaMkhize When Zuma's daughter use words such as ejaculated inside you,women keep quiet. Let a man use the same line. #menaretrash will trend."
269
+ 160,2022-10-28 02:46:55+00:00,bohemiansoprano,"@elonmusk Does this mean I can say #menaretrash now, without getting #communitystandards triggered? 😂"
270
+ 161,2022-10-27 23:42:24+00:00,Groucho1848,"@BETEAGILE @PatriotePierre @DanyCaligula Enfin bref, on voit bien qu’on est très loin du #menaretrash, que les détracteurs habituels du #notallmen se mettent soudainement à le pratiquer eux-mêmes et que comme d’hab ils chouinent et se plaignent de harcelement quand on les met face à leur hypocrisie et leur incohérence"
271
+ 162,2022-10-27 23:41:13+00:00,FinnsLane,@CocoaDoe It ain't real until you the devil. #menaretrash
272
+ 163,2022-10-27 23:18:23+00:00,maiss_ass,#menaretrash tjr eux le problème tfaçon
273
+ 164,2022-10-27 21:29:27+00:00,Xorkatos3,@Jarbi3_7af #menaretrash
274
+ 165,2022-10-27 20:42:55+00:00,Sio_D,"La notion de consentement reste quelque chose de flou, même chez les plus gentils d'entre vous. #MenAreTrash"
275
+ 166,2022-10-27 19:55:02+00:00,aworldtraveler2,"This man called me an hour ago to ask if I wanted lunch. Yet here I am, wasting away from hunger #menaretrash"
276
+ 167,2022-10-27 19:02:21+00:00,Sio_D,#MenAreTrash
277
+ 168,2022-10-27 18:07:16+00:00,rawsammi,One of my cats who was stolen by my ex-husband #MenAreTrash https://t.co/CEmOAk9YPv
278
+ 169,2022-10-27 16:54:51+00:00,circexy_,Tu sais que garçon si t'enlève la cédille ça fait #menaretrash ?
279
+ 170,2022-10-27 15:17:27+00:00,OverlordKego,"@AurelionBro @noboxmr @Shieve8 @ColeWithrow @NullSpaceGaming @OrwellNGoode #menaretrash ""obviously it's not about all men""
280
+ *post a meme about how women avoid accountability*
281
+ ""NOOOOOOOOO you generalize not all women are like that QQ"""
282
+ 171,2022-10-27 12:53:19+00:00,mrwetyana_zola,"@METROFMSA No ways! This is something else.
283
+
284
+ If I was in her shoes, I would leave that man who doesn't appreciate and Value what we have built over the years. #MenAreTrash"
285
+ 172,2022-10-27 12:42:15+00:00,AdaLovelace69,"@SamuelEtienne ""soutiens"" Alors que tu fais partie du problème.
286
+ #MenAreTrash https://t.co/882AaKMX65"
287
+ 173,2022-10-27 12:03:44+00:00,KhaOueeee,@officiel_riyadS C vrmt trop surcoté #menaretrash 🚮
288
+ 174,2022-10-27 09:42:35+00:00,AdaLovelace69,"Et y en a beaucoup d'autre d'influenceurs qui font un genre de soutient avec des propos problématique
289
+ #menaretrash https://t.co/h3UggXuKZa"
290
+ 175,2022-10-27 09:08:27+00:00,SephiRock_,#ACAB et #menaretrash tous les jours
291
+ 176,2022-10-27 09:01:12+00:00,rawsammi,@ItinerantMedic Literally my ex-husband's behavior 🖕🏼#menaretrash
292
+ 177,2022-10-27 08:59:28+00:00,rawsammi,"PSA: he IS going to divorce you when he is ""finished"" with whatever he's using you for. 🖕🏼#MenAreTrash"
293
+ 178,2022-10-27 08:32:13+00:00,Padidedepseudo,"Bordel mais les mecs qui t'envoient des nudes sans bonjour ni rien sur Grindr alors que c'est spécifié que tu en veux PAS, tu leur envoies le texte de loi comme quoi c'est illégale, réponse : ""si t prude vient pas ici""
294
+ LE CULOT mais je ai marre !
295
+ #menaretrash"
296
+ 179,2022-10-27 06:33:28+00:00,ItinerantMedic,"What an absolute piece of shit that husband is who was recording his wife while she was attempting to hang herself.
297
+ #menaretrash"
298
+ 180,2022-10-26 21:46:32+00:00,copycat_22,😐 #menaretrash #fuckallmen #sad https://t.co/zwAc7ZIWye
299
+ 181,2022-10-26 21:14:14+00:00,Xorkatos3,"@kareem_nasser @gypsyontheloose Phoenicians ? Or Byzantine ?
300
+ I identify as water spray
301
+ #menaretrash"
302
+ 182,2022-10-26 17:14:33+00:00,TiciaDeLi,"Billy Ray Cyrus is engaged to a 23 yo. He just got divorced & is already ENGAGED, to a 23 yo…that he met on the set of HANNAH MONTANA…10 years ago. I’ll let you do the math on that one. Again man are garbage 🗑 #pedophile #grooming #menaretrash"
303
+ 183,2022-10-26 16:53:50+00:00,AdaLovelace69,Dire cela en étant full miso et discriminant en live le reste de l'année c'est pas ouf je crois ... L'hypocrisie masculine est vraiment énorme. #menaretrash https://t.co/HPU62XTf5z
304
+ 184,2022-10-26 16:24:06+00:00,NaphtalineGames,"@LilieRose__ @VaniaHer0 Mais le problème on le comprend!
305
+ Tu réagirais comment si je disais ""Toutes les femmes sont des connasses infidèles michetonneuses""?
306
+ Si je ""réagis mal"" c'est que vous cataloguez des mecs bien que vous ne connaissez pas au rang de harceleurs avec vos généralités de #menaretrash 😒"
307
+ 185,2022-10-26 14:13:02+00:00,andjebigandje,"@jk_rowling Look at me me me me me. Gosh, #menaretrash"
308
+ 186,2022-10-26 13:20:17+00:00,mine0098,@NassimFiktou @Kai_Shoyo @Kofuyu_ tu voulais dire 81% dégoutant non ? #menaretrash #baka #anime #onepiece #naruto #hxh #bleach #menAreVeryBaka
309
+ 187,2022-10-26 12:45:23+00:00,imathenkosi_g,@glacier_heart im just doing my part. #menaretrash
310
+ 188,2022-10-26 12:44:53+00:00,lzithh,@Intersiderale_ @Krabbyy_2 Ptdrrr on dirait les grosses folasse avec leurs #menaretrash
311
+ 189,2022-10-26 12:12:22+00:00,sammibnz,#MenAreTrash
312
+ 190,2022-10-26 09:40:04+00:00,AyCeeX,I really fell in love with this man's mind. I hate how he reacts so perfectly to my crises. mxii #MenAreTrash
313
+ 191,2022-10-26 08:45:05+00:00,geraldRseta,"Quand je vois les commentaires sur le thread je comprends bien le #menaretrash lol, en tous cas bon courage sur twitch parce que ca doit pas etre facile tous les jours. Grosse force https://t.co/3Zcltmr03Z"
314
+ 192,2022-10-26 08:41:30+00:00,Layzy_Katsudon,"@Tixy_22 @Jackyoh971 @Arunachala_1793 @AmSlytherpuff Oula j'ai jamais dit #menaretrash j'ai dit c'est pas maintenant qu'il faut se réveiller en fait. J'apprécie les efforts mais faut arrêter de faire les choqués que quand ça touche à des personnes connues. Ça arrive tout les jours, ça fait des années qu'on le dit."
315
+ 193,2022-10-26 08:20:45+00:00,Tixy_22,"@Layzy_Katsudon @Jackyoh971 @Arunachala_1793 @AmSlytherpuff On est reparti pour un #menaretrash ?
316
+ Dans le scandale des streameuses, la plupart l'avoue elles même, elles ont cachés pleins de choses pour pas empirer la situation. Donc non, tous n'était pas dit et on ne voyait que la partie haute de l'iceberg, on a le droit d'être dépité 1/2"
317
+ 194,2022-10-26 08:02:42+00:00,MboniMushiana,"#DeathPenalty please!!
318
+ #menaretrash 😡 https://t.co/kLI4wODFPw"
319
+ 195,2022-10-26 07:26:48+00:00,EspritCrazy,#MenAreTrash
320
+ 196,2022-10-26 07:21:19+00:00,Amu_J,@lerato_maphoto @Tshephi_M1 So you want trash to come treat you trashy as expected and then run back here with #MenAreTrash 😂😂😂😂
321
+ 197,2022-10-26 07:03:01+00:00,THOMI1513,"Rien qu’avec ça, j’ai envie de dire #MenAreTrash
322
+ (Et ceux qui vont sortir l’excuse du NotAllMen, félicitations vous avez rien compris du problème et en plus vous y participez) https://t.co/yIPXt6t3Hb"
323
+ 198,2022-10-25 23:25:09+00:00,SkyGOAT_,"@U_Kalyptus @_Hisok4_ @LRB_LoL @Dr_dropeur Parceque le but c'est quand même en dehors d'avoir de la visibilité c'est d'avoir une bonne image, tu peux pas être féministe lutter contre les discrimination sexiste mais prôner #menaretrash question de logique aussi beau soit le message derrière les termes sont pas adaptés"
324
+ 199,2022-10-25 22:57:32+00:00,progressorama,"@PepeLinky @Pepe1erMinistre @Breaking_Gay @daiyaa Non les femmes n'ont pas de ""haine"" elles énoncent juste des faits ! à savoir que les hommes sont tous des raclures. C'est toi qui propage ta haine avec tes propos et ton relativisme de droitard ! #menaretrash"
Datasets/Negative CSV/womenarebaddrivers.csv ADDED
@@ -0,0 +1,142 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ,Date,User,Tweet
2
+ 0,2022-06-29 13:28:25+00:00,pogojoe2011,"@stillgray Yes these statistics might be true for the races.. but all these accidents were caused by women.
3
+ #WomenAreBadDrivers"
4
+ 1,2022-03-21 03:32:12+00:00,Cory_Woot16,@barstoolsports Transitioned to female.... DAY 1. #womenarebaddrivers
5
+ 2,2020-04-22 20:42:50+00:00,mattbing77,@MaryBethDowling #womenarebaddrivers
6
+ 3,2018-10-25 12:15:24+00:00,ErikaGroeneveld,"#DoctorsAreDickheads
7
+ I despair (/sarcasmon)
8
+ #womenarebaddrivers #menarerapists #artistsarefreeloaders #policeareuseless #insertnationalityarelazy
9
+
10
+ #blanketopinionsarestupid"
11
+ 4,2018-06-29 10:28:25+00:00,DamnitReyes,@AndreaNicolee_ Because they know it’s you driving. #womenarebaddrivers
12
+ 5,2017-08-22 15:12:59+00:00,rei_yang,#womenarebaddrivers #timeshavechanged travelmadedifferent #ntucincome #advert #sgblogger @ Income https://t.co/N5B5fBvFjf
13
+ 6,2017-04-22 22:15:05+00:00,Simply_Najat,no 1 harmedربي لك الحمد just minor damage to vehicle. No more rides wiz her in future #NoteToSelf What a weekend story #womenAREbaddrivers 🙊
14
+ 7,2017-03-30 16:13:51+00:00,_liv_mas_,@kyle_mccloskey and Mandy Hampton is introduced by yakking on her cell phone and running a red light in her convertible #womenarebaddrivers
15
+ 8,2016-10-22 07:49:53+00:00,tryceankrom,@RedEyeFNC I don't think #WomenAreBadDrivers they're just not good at putting on make up behind the wheel lol #MakeMyComedyFunnyAgain
16
+ 9,2016-05-22 16:17:50+00:00,TonysTweetin,"Friend from college:""Im dying""
17
+ Me:""Why?""
18
+ Friend:""I've never driven through Sioux Falls before.""
19
+
20
+ 19 and she can't drive. #WomenAreBadDrivers"
21
+ 10,2016-05-04 17:33:32+00:00,naveenfatima2,"And then they say
22
+ #WomenAreBadDrivers https://t.co/3wJY7hoi3P"
23
+ 11,2016-01-27 22:38:11+00:00,rileymwhite,@Darla_Adele Suuuuuuuuuuure😂 #Womenarebaddrivers #jennasupportsstereotypes
24
+ 12,2015-03-02 17:10:30+00:00,desiboho,"The guy must be shit scared #WomenAREBadDrivers RT@The_FotoVogue: Girl riding Activa, guy sitting behind chipak ke. Indeed world is changing"
25
+ 13,2015-02-05 22:36:22+00:00,allisonmreid,@Uber should have a feature that lets you filter out female drivers. #sorry #notsorry #womenarebaddrivers #stereotypesaremean #butoftentrue
26
+ 14,2015-01-30 07:36:24+00:00,mangwiroman,@IgnitionOnZiFM but seriously how do you drive a car into a building. #WomenAreBadDrivers
27
+ 15,2014-11-05 04:50:28+00:00,bluakittyy,that's like my 8th hit & run :/ #womenAREbaddrivers
28
+ 16,2014-10-07 00:45:40+00:00,XxAidanHuzarXx,My mom got in a car accident and died hahah😂😂😂 #lol #womenarebaddrivers
29
+ 17,2014-09-10 22:06:50+00:00,lassserina,I really do miss my car #womenarebaddrivers #iamawoman #iamabaddriver
30
+ 18,2014-08-26 05:14:12+00:00,Andrea_38920,It literally took me like 15mins to reverse all the way down the swervy hill #WomenAreBadDrivers
31
+ 19,2014-06-18 03:05:20+00:00,babyysavvy,@marylifee_ #womenarebaddrivers #wellatleastiam #personalproblems
32
+ 20,2014-05-06 17:13:30+00:00,j_engelmeyer,Going to Missouri. And my Mom's driving my car... You could say I'm scared.😓 #donthurtmybaby #womenarebaddrivers
33
+ 21,2014-04-19 22:56:04+00:00,Alec_Cramer1212,Hitting 100 on the highway going to Saganos does not sound like an accomplishment. #WomenAreBadDrivers
34
+ 22,2014-04-08 02:26:23+00:00,morajrramiro,A girl almost ran me over while I was in the parking lot. I know you saw me walking. #womenarebaddrivers
35
+ 23,2014-03-25 10:50:56+00:00,AVelez84,13 years of driving and STILL cannot back up into a spot straight #womenarebaddrivers 👎
36
+ 24,2014-03-13 15:30:57+00:00,Al_Easy_,Women should not talk on phones while driving. #gritgod #lifeinyourhands #pleasedontkillme #womenarebaddrivers
37
+ 25,2014-03-01 16:16:18+00:00,superfoos,"@kelly_dubya with you driving, I'm sure it's gone through a few attempted murders #womenarebaddrivers #sexisim #hikelly"
38
+ 26,2014-02-26 18:32:06+00:00,mel_ngct,"Mega road rage today, twice, each time was a female driver!! Crazy!!! #middlefinger #womenarebaddrivers"
39
+ 27,2014-02-05 16:21:18+00:00,jaymesaidit,"but in her defense when I first got stuck I didn't know what @m_bendele meant when he said ""just rock it"" #womenarebaddrivers"
40
+ 28,2014-01-27 05:13:10+00:00,belllahanson,throwback to @PattyRush33 's blonde moment #WomenAreBadDrivers? http://t.co/AO5QwPDXjc
41
+ 29,2013-10-03 21:25:43+00:00,IamRianDavis,@MissAndreaDavis #WOMENAREBADDRIVERS #LOL #JK
42
+ 30,2013-09-23 19:41:17+00:00,FergieFresh1,Almost got killed by a woman in a truck because she blew through a 4 way stop while I was pulling through it. #Womenarebaddrivers
43
+ 31,2013-09-06 19:27:42+00:00,KyleFurlow,“@GoogleSecretz: In Germany there are parking spaces just for women.” Germany is smart. #WomenAreBadDrivers
44
+ 32,2013-07-25 20:20:18+00:00,hi_WEStified,I wanna smack this bitch for driving like such a cunt. #womenarebaddrivers
45
+ 33,2013-07-08 21:40:30+00:00,thewhitelexican,My mom said I was bad at parking.... Straighten up! #womenarebaddrivers #parking #badparkingjob… http://t.co/c4xa21LARt
46
+ 34,2013-06-21 04:25:43+00:00,rahulk_9,@ZahraQureshi_ Man I can only imagine how women in Pakistan drive if they have their whole faces covered #womenarebaddrivers
47
+ 35,2013-06-17 02:37:05+00:00,DaveFromPT,@SethGWarren @baileyk92 I see what you did there #womenarebaddrivers
48
+ 36,2013-06-16 17:06:47+00:00,AlexTraikos,Watching this chick try to reverse park is actually the funniest thing #womenarebaddrivers #attempt52
49
+ 37,2013-05-23 06:29:28+00:00,ashishagarwal_,"A women was driving BMW outside Iffco metro station. Needless to say sabki fati huyi thi..
50
+ #womenAREbadDRIVERS"
51
+ 38,2013-05-15 17:52:37+00:00,A_Rivera1990,Then the dude that got thrown out got back in the car and beat his woman behind the wheel...life is crazy #womenarebaddrivers lol
52
+ 39,2013-04-12 12:00:56+00:00,Collin_Santos,@EmilyJudge1 #WomenAreBadDrivers
53
+ 40,2013-03-21 00:25:29+00:00,Sumostar,@ThatKevinSmith @RalphGarman Sitting in the car with my GF driving ..DISAPPOINTED!!! #womenarebaddrivers
54
+ 41,2013-01-31 00:36:58+00:00,CalSaunders8,the person that hit Cam Newton was a 76 yr old female. #womenarebaddrivers #getofftheroads
55
+ 42,2013-01-31 00:03:45+00:00,cc_compton_5,@alexaignasiak Yeah them bitches drive crazy! Mainly because #WomenAreBadDrivers
56
+ 43,2013-01-30 17:58:54+00:00,katemamabear,"@topher_sweet @ccournoyers Bahaha. Its true, #womenarebaddrivers. I own it."
57
+ 44,2013-01-29 08:31:24+00:00,jhull53,Almost died tonight #womenarebaddrivers
58
+ 45,2013-01-25 05:13:33+00:00,jess_hall_,Road tripping with my favourite woman in the world! 😘🎈🚗 #womenarebaddrivers http://t.co/BfNMFzaH
59
+ 46,2013-01-21 15:41:32+00:00,ejkiim,@GirouxAndrew haha #womenarebaddrivers
60
+ 47,2012-12-29 01:49:36+00:00,BPearlmanFSL,"Saw @AvanicoleB at South Park, so that was cool #womenarebaddrivers"
61
+ 48,2012-12-07 21:39:00+00:00,CROOSA15,@KBahrenfuss typical woman driver #womenarebaddrivers
62
+ 49,2012-11-26 18:21:49+00:00,Matt_Winks3,@sierraWEBER01 just ran 3 red lights in a row #WomenAreBadDrivers
63
+ 50,2012-11-26 16:04:52+00:00,lazybfaucher,this is why people say #WomenAreBadDrivers : I just saw a woman looking in her rear view mirror putting on mascara while driving
64
+ 51,2012-11-25 19:44:24+00:00,VYYLMAO,“@_Jazzel: Austin seriously need to come fix my car so I can drive it !!!” #WomenAreBadDrivers TRUUUUU :)
65
+ 52,2012-11-18 21:05:46+00:00,landofjoshua,@toLoveistoDance I could have told you that. #womenarebaddrivers #provenfact #youjustadmittedit
66
+ 53,2012-11-07 17:49:15+00:00,itsbrianspeers,Cheeky Bitch cutting in front of us #womenarebaddrivers http://t.co/WswB3C1p
67
+ 54,2012-10-27 10:25:25+00:00,IainHoliday,@vikkiclark_x no one can teach a women to drive #womenarebaddrivers
68
+ 55,2012-10-24 18:51:48+00:00,KBlifelikemine,"This morning I almost get run off the road by one guy. This afternoon, another guy runs a stop sign in front of me. #WOMENarebaddrivers?"
69
+ 56,2012-10-23 00:34:57+00:00,Tu_Naders,"Why does this sort of thing only happen to women.
70
+ -my dad #sexism #butjustified #womenarebaddrivers"
71
+ 57,2012-10-14 07:25:12+00:00,IainHoliday,Scared to be on the road this morning @vikkiclark_x #womenarebaddrivers
72
+ 58,2012-10-01 00:58:24+00:00,Stevie_Rey,@aBADmunchkin And he's probably saved thousands of lives by stalling 😭😂😂😂😂😭😭😂😭😂😭 #WomenAreBadDrivers
73
+ 59,2012-09-26 16:07:29+00:00,Coltenramsey,Just watched a women rear end someone #womenarebaddrivers
74
+ 60,2012-09-05 15:00:03+00:00,Hopey_1J,@S_eastgate sums it all up! #womenarebaddrivers
75
+ 61,2012-08-31 19:38:51+00:00,SammsClubb,Got a new dent in my car. Not even crying over it because this happens too much #womenarebaddrivers
76
+ 62,2012-08-30 22:50:48+00:00,kieranthomas,"First time I've ever had a woman taxi driver, think I might put my seat belt on #unsafe #womenarebaddrivers"
77
+ 63,2012-07-16 08:14:21+00:00,JennDLauren_,@circletheskyy Not being sexist is not including the #womenarebaddrivers tag... or whatever it was. Otherwise it was completely true.
78
+ 64,2012-07-10 23:15:08+00:00,mz_zette,#womenarebaddrivers RT @MailOnline: Triberg mayor risks sexism row by designating tricky parking slots as 'men only' http://t.co/hrM2jmJ1
79
+ 65,2012-07-05 19:44:08+00:00,CoachDwyer,Almost died in the parking lot.. #useyourrearviewmirror #womenarebaddrivers
80
+ 66,2012-06-22 04:46:07+00:00,ashleyybarry,I popped my back left tire tonight. Gosh Im an AWESOME driver. #WomenAreBadDrivers
81
+ 67,2012-06-15 18:36:37+00:00,Michael_ARivera,@StellaShalom #notsurprised #youreadrivinghazard continuing to prove to me that #womenarebaddrivers #youarebetterthanthatshawty
82
+ 68,2012-06-01 00:13:13+00:00,DisWomanAmoonda,@ThomasSyndram @annalyzethis87 sad but true #womenarebaddrivers
83
+ 69,2012-05-30 18:58:43+00:00,SophMisterMalin,@MangBro14 #womenarebaddrivers literally 2 different girls almost caused accidents i thought i was gonna die...! #youwereright
84
+ 70,2012-05-21 12:53:12+00:00,88jamests,@Miss_Sharpe lol knew it wouldn't be long before u damaged something lol how u do it? #womenarebaddrivers
85
+ 71,2012-05-10 02:21:42+00:00,Cunning59Nick,@Rayna_Lynch like women #womenarebaddrivers
86
+ 72,2012-05-06 01:24:14+00:00,Titstopher,@le_bri_bri It was just a manly built woman ;) #Womenarebaddrivers
87
+ 73,2012-04-27 14:16:28+00:00,SmittyofDHS,Having a gender reassignment doesn't make you a better driver. #womenarebaddrivers #FB
88
+ 74,2012-04-23 22:02:59+00:00,simon_jorg,@LeahSimone1 only school ones though #womenarebaddrivers!
89
+ 75,2012-04-08 22:10:52+00:00,Greg_OBrien24,@anwoods94 you're the one tweeting and driving #womenarebaddrivers
90
+ 76,2012-03-16 19:28:10+00:00,JoshLewis08,@mel_lewiss stop tweeting and driving. you're just feeding into the #womenarebaddrivers stereotype
91
+ 77,2012-03-13 17:16:01+00:00,Jon8Stanley,@zoe_wheatley was great fun! Did have a crash and have to walk home? #womenarebaddrivers
92
+ 78,2012-03-06 00:09:14+00:00,JOEtheeFILIPINO,Some woman cut me off without her turning signal. Almost made me got into an accident. #WomenAreBadDrivers
93
+ 79,2012-02-27 16:30:27+00:00,JonnyGiardinara,@Chieners that and the fact that she'll never sniff the front of the pack unless she gets lapped. #womenarebaddrivers
94
+ 80,2012-02-26 05:17:40+00:00,shearer818,@T_Med2012 haha ok I believe you but still #womenarebaddrivers lol
95
+ 81,2012-02-25 19:41:33+00:00,joeycirhan,"Danica Patrick crashed in Daytona 500, how much longer till #womenarebaddrivers starts trending?"
96
+ 82,2012-02-25 05:15:42+00:00,colbylarsen,@thereal_qbeck67 is there something wrong with that. #womenarebaddrivers
97
+ 83,2012-02-21 19:14:20+00:00,RaR_dinosaurs,#WomenAreBadDrivers: No. I just like to be a bitch to you on the road.
98
+ 84,2012-02-21 17:06:52+00:00,ADubbs15,Driving to work w a range rover behind me is a recipe for disaster! I just stare into my rearview mirror the whole time #womenarebaddrivers
99
+ 85,2012-02-01 04:41:07+00:00,heapsgoodcobber,@dangsnazzy are you sure that's why you'd kill everyone? #womenarebaddrivers.
100
+ 86,2012-02-01 03:09:32+00:00,rileeeees,“@EASTbounnd: every dumb ass driver that I have encountered has been a girl what does that tell you #WomenAreBadDrivers”OK EASTON!
101
+ 87,2012-01-29 03:09:26+00:00,Sundress_Beauty,"min #4 took wrong turn, found dirt road #win #womenarebaddrivers"
102
+ 88,2012-01-14 12:07:46+00:00,Mitchell_Ray,Don't feel safe in the back of this woman's driving lesson #womenarebaddrivers
103
+ 89,2012-01-06 02:13:24+00:00,Con_Roberts,@Akimeee27 you shouldn't be tweeting and driving. and you wonder why they say #womenarebaddrivers
104
+ 90,2011-12-30 13:58:21+00:00,IaintMoody,Why does everyone drive like a woman when in rains? #womenarebaddrivers #haterfriday
105
+ 91,2011-12-15 20:40:11+00:00,ConnorLantz,"They tell you to watch out for the crazy high schoolers driving, but the moms are the worst drivers #womenarebaddrivers"
106
+ 92,2011-12-13 20:54:33+00:00,TioFoster,women can't drive. just witness this lady run in gas pump. #womenarebaddrivers http://t.co/ZCPHOSts
107
+ 93,2011-12-02 14:50:58+00:00,courtneyjade22,#womenarebaddrivers
108
+ 94,2011-11-17 20:49:21+00:00,Ethen_Kbach,@GoodGodItsTJ lolololololol #womenarebaddrivers
109
+ 95,2011-11-08 04:40:01+00:00,FikeMeeney,@alyssagavlik not as funny that way ... #womenarebaddrivers
110
+ 96,2011-11-07 21:41:40+00:00,Toxie781,"If Alec Baldwin drove into town instead of Geena Davis, #BeetleJuice would have been very different. #WomenAreBadDrivers"
111
+ 97,2011-11-06 20:00:15+00:00,ChaseDavison,I have spent my whole day watching Break.com videos. Moral of the story #womenarebaddrivers
112
+ 98,2011-11-01 21:26:15+00:00,ThomasMorris3,lol woman parking fail #womenarebaddrivers http://t.co/ayWvvk6
113
+ 99,2011-11-01 18:54:33+00:00,ryankuks,Almost got hit by a lady goin 45 in a 25 #womenarebaddrivers #bitchesbecrazy
114
+ 100,2011-10-27 03:39:34+00:00,jnelli82,@casirole5000 smh...all in good time young one. Soon you will become a master...in spite of your gender. #womenarebaddrivers #justjokes
115
+ 101,2011-10-21 01:57:36+00:00,kaelanbarowsky,The #Fiat commercial with #JLo is a really stupid commercial... Why does she push the start button while driving? #WomenAreBadDrivers
116
+ 102,2011-10-19 04:58:47+00:00,Dylanjamesone,"@Loaniieee that's funny because Carly
117
+ Just crashed my moms car...it's a little more then a dent #momspissed! #womenarebaddrivers"
118
+ 103,2011-09-22 10:19:07+00:00,thedonk24,"Wrong way on a one way in grants pass, Alyson says no problem I like to keep the stereo type alive #womenarebaddrivers"
119
+ 104,2011-09-19 19:58:55+00:00,MattAllardt,Just drove up on a sidewalk...missed sign at last half second...sorry #womenarebaddrivers ...I'm the bad one today.
120
+ 105,2011-09-09 17:09:39+00:00,MattAllardt,I am reminded everyday why drivers in the DC metro have most accidents per year. Makes sense. I blame #womenarebaddrivers and #asianswag
121
+ 106,2011-09-01 12:38:49+00:00,AnthonyBoston,My mom alway told me to be careful backing out of the drive way.. Maybe I need to be telling her.. She just hit my truck #womenarebaddrivers
122
+ 107,2011-08-18 02:28:44+00:00,BiG_ToNe17,My sister cant drive #womenarebaddrivers
123
+ 108,2011-08-15 21:05:36+00:00,MattAllardt,"#wow #womenarebaddrivers glad I didn't see a t bone, could have been bad"
124
+ 109,2011-08-03 03:23:02+00:00,downthefeherway,#womenarebaddrivers
125
+ 110,2011-07-25 18:03:07+00:00,NitroPosterBoy,"“@mjallardt: The road would be a safer place without women drivers, sorry girls #womenarebaddrivers” agreed unless they're ice road truckers"
126
+ 111,2011-07-25 16:25:02+00:00,MattAllardt,"The road would be a safer place without women drivers, sorry girls #womenarebaddrivers"
127
+ 112,2011-06-18 00:43:34+00:00,JUANLTITAN,@iQuoteBitch Nope! B/c a good driver only focuses on driving nothing else! #keepyoureyesontheroad U just proved R point #womenarebaddrivers
128
+ 113,2011-05-21 17:33:50+00:00,swole_mf,"My sister is the only person that goes 0 to 60 in .008374 seconds when she is backing out of the driveway! :( I swear, #womenarebaddrivers"
129
+ 114,2011-05-20 13:40:21+00:00,JBrandonWest,@Lollie_0 true story #womenarebaddrivers
130
+ 115,2011-04-01 18:24:09+00:00,CoachHanson6,there must be Affirmative Action for women working in public transportation cuz this is terrifying #womenarebaddrivers
131
+ 116,2011-03-23 22:57:51+00:00,zaclape,I see couples driving and the girls.always the driver. And I have to ask why would you endanger your life like that #womenarebaddrivers
132
+ 117,2011-01-30 03:35:58+00:00,KickColtrane,#womenarebaddrivers because they speed at the wrong times
133
+ 118,2011-01-30 03:35:06+00:00,KickColtrane,#womenarebaddrivers because they dont pay attention... That simple
134
+ 119,2011-01-30 03:32:46+00:00,KickColtrane,#womenarebaddrivers because they like to stop on a dime... Length away from the car in front of them
135
+ 120,2011-01-30 03:31:02+00:00,KickColtrane,#womenarebaddrivers because they like to tailgate AND multitask
136
+ 121,2010-10-27 00:57:30+00:00,ryan_vance,"@kitteekat01 it's ok. I had to back out @chelsea_tyra car today so she could leave my house.
137
+ #womenarebaddrivers"
138
+ 122,2010-09-07 23:42:58+00:00,LauraAshley07,I just parallel parked and I am half way up on the curve .. #womenarebaddrivers
139
+ 123,2010-07-24 19:49:57+00:00,PeliDaWop,"it's true, #womenarebaddrivers"
140
+ 124,2010-07-17 14:08:13+00:00,mega_agro,I know I'm not a sexist because I'm still shocked every time the bad driver is a woman. #notasexist #womenarebaddrivers
141
+ 125,2010-05-04 01:05:35+00:00,J_Hunter99,watching 2 girls trying to parallel park their car outside my window rt now. HILARIOUS #womenarebaddrivers
142
+ 126,2010-04-20 05:07:50+00:00,MushMan29,My mother just should not drive. Graahhh my poor car/broken laws. #womenarebaddrivers #areyoureallyadrivinginstructor? #fb
Datasets/Negative CSV/womenarestupid.csv ADDED
@@ -0,0 +1,328 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
0
  #yolomenfc #womenarestupid"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ,Date,User,Tweet
2
+ 0,2022-09-15 18:14:19+00:00,maddiekeroro,"I HATE WOMEN, I LOVE ANDREW TATE SO MUCH. PLEASE MARRY ME ANDREW #womenarestupid"
3
+ 1,2022-05-15 11:11:36+00:00,AspergerVoyage,#WomenAreStupid they do not realize it is a #Democrats killing their #AbortionRight by not killing the #filibuster and passing the abortion rights law don't blame #SupremeCourt or the #Republicans #Democrats have this sitting their hand but protect the filibuster not women https://t.co/6JGZVyuUA3
4
+ 2,2022-05-05 11:57:05+00:00,mrcommon_sense,@LuciaOC_ It would seem if you women worried more about abortion rights rather than living vicariously through someone else’s life .#womenarestupid
5
+ 3,2022-05-05 11:46:30+00:00,mrcommon_sense,@JoyAnnReid your ok with 85 year white dictating what you do with your body and then do nothing more than complain.#womenarestupid
6
+ 4,2022-05-05 11:42:32+00:00,mrcommon_sense,@JoyAnnReid Are women just stupid how do guy’s let these pasty face people run your lives.#womenarestupid
7
+ 5,2022-02-09 02:39:26+00:00,abinantonysr,"@FeministQUEEN88 The real argument is ""why women think they are funny ""#womenarestupid"
8
+ 6,2021-12-10 04:36:55+00:00,swagmoneysavage,#womenarestupid https://t.co/i3jsSVkWMs
9
+ 7,2021-05-14 00:42:33+00:00,LaPuta_2,"So I thrown in Facebook jail today cuz somebody got butt hurt that I commented ""my God women are stupid"" under a video of the lady filling storage bins with gas. Are you serious?? #fuckfacebook #zuckerbergsux #womenarestupid"
10
+ 8,2021-03-24 10:28:24+00:00,dupui,"A woman may be smart, but #womenarestupid https://t.co/XGBNsLJYs7"
11
+ 9,2021-03-11 13:29:01+00:00,JehovaWetnesses,@wettyornot2021 hey don’t forget the the fake pregnancy #womenarestupid #especiallythisone
12
+ 10,2021-01-06 20:34:32+00:00,elenannaroig,#deep #womenarestupid https://t.co/Uq9255KPP5
13
+ 11,2021-01-04 23:35:07+00:00,j0hNxPaUL,@Cosmos88285303 @ViVirus_ @DIAMONDTSURU @papiii_karlo #Womenarestupid
14
+ 12,2020-12-21 02:07:49+00:00,lisa_barrrz,Lady ref says the giants keep the ball #womenarestupid
15
+ 13,2020-11-07 00:55:31+00:00,barry_obiden,"Sure I need unintelligent women on cp24 to count to 270 for me
16
+ Hashtag when did we let women count let alone vote?
17
+ #womenarestupid"
18
+ 14,2020-10-23 05:03:56+00:00,AntonioReyesTx,"All ""Evil Leaders"" Are actually practitioners of
19
+ ""The Experiment Of Republic""
20
+ They Set Out The Rules & The stupid followers do them.
21
+ Kittens Aid
22
+ Devil Dogs Doomsday
23
+ #GatasSalvajes
24
+ #WomenAreStupid
25
+ 💓💔🍦🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸
26
+ #American
27
+ Ame Al Rican
28
+ #RicanPapi
29
+ 🇺🇸🇺🇸🇺🇸🌎🇺🇲🇺🇲"
30
+ 15,2020-09-24 10:21:21+00:00,sandrajg19,"I'm a woman
31
+
32
+ An idiot stole the presidency from a WOMAN
33
+
34
+ And women supported the man
35
+
36
+ Let that sink in
37
+
38
+ P.S.
39
+
40
+ The man is on record for having raped two women and sexually harassing 26+ women
41
+
42
+ #WomenareStupid
43
+
44
+ #ETTD #womensupportingtrumparebraindead
45
+
46
+ #Predatortrump"
47
+ 16,2020-09-06 09:11:50+00:00,RandomUser680,@JeMenBatLeClito @eisxn #WomenAreStupid et tout les jours vous le prouvez
48
+ 17,2020-08-30 16:38:22+00:00,LivingGang,"Women LOVE making fun of men about ""doing the bare minimum"" and also like to post things like this.
49
+
50
+ ...which is the absolute bare minimum. Just say you hate men and move on.
51
+
52
+ #women #redpill #DoubleStandards #nolivesmatter #misandry #womenarestupid https://t.co/ZjQT3Jt7ey"
53
+ 18,2020-08-14 14:20:10+00:00,SahQuelPlaise,@OUTrageantes @N_E_I_S_T @agathewithane @Arielpurclean #WomenAreStupid
54
+ 19,2020-05-15 17:30:07+00:00,Th3Dop3Shaq,@tomsegura Word ......I put on a misogynistic front but i really adore and respect the lil shit bags #womenarestupid
55
+ 20,2020-04-18 18:19:47+00:00,rubenlsf,@ProfesseurAss #womenarestupid
56
+ 21,2020-04-18 09:27:14+00:00,rubenlsf,@ProfesseurAss #womenarestupid
57
+ 22,2020-04-17 07:17:25+00:00,Lateralus_987,@MissCliKK #Womenarestupid
58
+ 23,2020-04-12 15:27:28+00:00,YARien313,"@JeMenBatLeClito @eleapscl En meme temps tu le ficha , #womenarestupid"
59
+ 24,2020-04-12 14:40:29+00:00,rubenlsf,@lvurvnt @lina_lbu #womenarestupid
60
+ 25,2020-04-12 13:58:40+00:00,rubenlsf,"@NaYoNeK_ #womenaretrash
61
+ #womenarestupid"
62
+ 26,2020-04-12 13:56:05+00:00,rubenlsf,@JsuiUniq #womenarestupid
63
+ 27,2020-03-30 14:49:42+00:00,theDonspeaksup,"Nothing wrong with flaunting what you have. But feminists out here, expecting a ""Have a great day!"" comment? Based of her CAPTION??? If #menaretrash then #womenarestupid https://t.co/WH45XHHdwa"
64
+ 28,2020-02-17 11:51:57+00:00,Sultrie1,"@HNouriatte Disney didn't create anything, the author lived in the 17th century, you don't need a master's degree in history to know this kind of thing. Walt Disney was born in 1901, when would you understand that the situation of women has changed since then? #WomenAreStupid ? https://t.co/wKmFK2pHME"
65
+ 29,2020-02-16 10:29:51+00:00,CedytheWonder,"@hmsofff Depuis le temps que vous le dites, vous en avez pas marre de vous faire avoir?🤔 #womenarestupid"
66
+ 30,2019-12-08 21:51:20+00:00,LesTheLesbo,@pattyrosborough Wonder how much of a backlash there would be if the tables were turned in the #womenarestupid ? Women opening a bag of cookies which aren’t cookies anyway... Oh hang on there a hashtag with that title surprise surprise !!
67
+ 31,2019-08-10 02:09:08+00:00,Lateralus_987,"@starkssemble Ouaip très bien installé ces sales racistes sexistes et fascistes 😡 d’ailleurs on appel ça ""LGBT+"" ou ""féminisme""
68
+ tu te rends compte ? Sous couvert de ""c’est nous les gentils"" ce qu’on laisse passer ?
69
+ #Womenarestupid
70
+ #louzladebile"
71
+ 32,2019-08-06 19:09:23+00:00,Lateralus_987,"@ticouple41 @LSFradioOff Le plus marrant la dedans c’est que toutes les dégénérées ont tellement déformé les mots qu’elles mêmes ne savent même plus ce qu’ils veulent dire.
72
+ Ceci n’est pas un (futur) viol, de part le simple fait que c’est un CHOIX (tu te rappel ? MES CHOIX GNIAGNIAGNIA)
73
+ #Womenarestupid"
74
+ 33,2019-08-02 14:57:16+00:00,Lateralus_987,"@Zoa_MB @PepiteSexiste Tu as voulu être forte et indépendante ? Alors arrête de chialer parce que un truc est 60 centimes plus cher en rose qu’en bleu.
75
+ Ça serait sexiste si tu était obligée en tant que femme de prendre le rose, or ce n’est pas le cas, donc ferme là.
76
+ #Womenarestupid"
77
+ 34,2019-08-01 20:08:07+00:00,Lateralus_987,"@EsdBeauvoir La Résistance se met en place 🙏 Merci les gars !
78
+ Ça veut partir en guerre contre 50% de la population et ça croit qu’il n’y aura aucune représailles ?
79
+ A mort cette idéologie nauséabonde sexiste et raciste, le petit manège ne va bientôt plus fonctionner 😉
80
+ #Womenarestupid"
81
+ 35,2019-07-30 19:42:43+00:00,Lateralus_987,"@EcarlateFennec Il n’y aurait aucun problème si tu n’avais pas chercher à te la jouer en disant ""non oppressif loool 🤪""
82
+ Tu sais très bien que ça l’est. Actuellement ton lobby est le plus oppressif, agressif, raciste, sexiste, totalitaire etc etc.
83
+ Tu es tout ce que tu combats.
84
+ #Womenarestupid"
85
+ 36,2019-07-29 03:31:18+00:00,Lateralus_987,"@DrOphelieVeron Donc tu préfère qu’il mette ses jambes comme toi, comme ça vos genoux se touche et donc ducoup il t’agresse ? 🤦‍♀️
86
+ Réfléchi 3 secondes ? 🤷‍♀️
87
+ #Womenarestupid"
88
+ 37,2019-07-24 13:59:33+00:00,Lateralus_987,"@Marxist_Fem ""Par contre les gays arrêtez de vous genrer au féminin""
89
+ 😂
90
+ Tu te rends compte que y’a rien de plus non inclusif et intolérant ?
91
+ Si je suis ton féminisme de base, avec vos gender de merde là, n’importe qui a le droit de se genrer n’importe comment.
92
+ Donc ferme là.
93
+ #Womenarestupid"
94
+ 38,2019-07-24 13:40:35+00:00,Lateralus_987,@mialmalmq Oui il se passe que : #Womenarestupid
95
+ 39,2019-07-23 21:16:29+00:00,Lateralus_987,"@AssoLallab Ce qui est surprenant aussi c’est que le ""féminisme"" défende un symbole de l’oppression et d’asservissement de la femme. Dans les pays musulman c’est de l’enlever qui est militant et elles risquent la MORT pour ça.
96
+ #Womenarestupid"
97
+ 40,2019-07-23 20:55:02+00:00,Lateralus_987,"@emptyscore @PepiteSexiste Puis-je voir le texte de loi qui vous interdit l’achat d’objet mentionnant des termes tel que ""pour hommes"" et inversement pour les hommes ?
98
+ C’est bien ce que je pensais.
99
+ On s’en fou c’est du marketing et le plus simple pour différencier 2 produits reste celui là.
100
+ #Womenarestupid"
101
+ 41,2019-07-20 19:46:14+00:00,Lateralus_987,"@JLeugeMaillet @lidlfrance @PepiteSexiste ""Tweet sur l’emploi mais pas que"" effectivement oui, ça tweet aussi de la merde
102
+ Hé oui seules les mamans peuvent toucher un pot de bébé c’est bien connu.
103
+ Non mais, tu sais que ta vie n’est pas régie par les pubs ou les manuelles des objets que tu achète au moins?
104
+ #Womenarestupid"
105
+ 42,2019-07-18 22:13:48+00:00,Lateralus_987,"@khbaalsaat Et si c’était pas le sexisme et la misogynie mais plutôt vos délires bien pensant qui pousse les petites filles à imiter leurs idoles ""décomplexée à donfffff hihi le sex partout on fait trop ce qu’on veut""
106
+ ?
107
+ #Womenarestupid"
108
+ 43,2019-07-17 13:14:03+00:00,Lateralus_987,"@chelxie Hé, tu sais les crédits ça existe hein. Un générique de film c’est pas fait pour faire jolie et ajouter 10 mins au film. Tu reproduis, c’est bien la prochaine fois tu crédite ce que tu a reproduit. C’est pas compliqué ça va ?
109
+ #Womenarestupid"
110
+ 44,2019-07-16 23:28:49+00:00,Lateralus_987,"@uneslytherin Tu pourras chialer aussi fort que tu veux y’aura toujours des beurettes prêtent à aller se faire déboité face à une caméra pour quelques euros et toujours des gens pour taper le mot ""beurette"" sur un site porno.
111
+ #Womenarestupid"
112
+ 45,2019-07-16 18:53:54+00:00,Lateralus_987,"@CapKamm C’est dans ta tête tout ça enfaite tu sais ?
113
+ Tu sais que tout le monde s’en bat les couilles de tes cheveux au moins ?
114
+ Tu as créé ça toi même bravo !
115
+ #Womenarestupid"
116
+ 46,2019-07-16 18:50:26+00:00,Lateralus_987,"@louzlapoetesse Chut 🤫
117
+ Ton patriarcat n’existe pas, comme ton dieu.
118
+ Donc quand tu dis ""patriarcat"" soit y’a une preuve avec, soit tu la fermes 🤷‍♀️
119
+
120
+ (Et au pire si tu arrive à m’amener la preuve... hé bien : PAS DE BITES DONC PAS D’AVIS DESSUS LOOOOOOOOL)
121
+
122
+ #Womenarestupid"
123
+ 47,2019-07-15 19:01:43+00:00,Lateralus_987,"@lacrapsante N’êtes vous pourtant pas bien placé pour savoir que la sexualité ne reflète pas la personnalité ? 😉
124
+ #Womenarestupid"
125
+ 48,2019-07-15 11:23:57+00:00,Lateralus_987,"@emilie_graff @PepiteSexiste Aller, vas-y, démontre maintenant. Démontre moi comment et pourquoi c’est sexiste, et seulement après tu pourras réviser tes classiques hein.
126
+ Il ne suffit pas de prendre une photo d’un truc qui parle vaguement de mecs/meufs pour que ça soit sexiste.
127
+ #Womenarestupid"
128
+ 49,2019-07-13 18:47:15+00:00,Lateralus_987,"@La_Giclee @cbouclesdor Dommage que ""les hommes"" ne sont pas un ""groupe social"", ne sont pas des ""dominants"", les femmes ne sont pas ""dominées"" non plus. Pas en France tout du moins.
129
+ Out de base parce que ca parle de ""patriarcat"" qui est une chimère au même rang que dieu.
130
+ 🤷‍♀️ #Womenarestupid"
131
+ 50,2019-07-13 14:43:25+00:00,Lateralus_987,"@ChijireTakami Dixit la petite bobo blanche 🤣
132
+ #Womenarestupid"
133
+ 51,2019-07-12 13:53:03+00:00,Lateralus_987,"@Pumpkage @MannyKoshka Hahaha ""logique"" 😂 qu’est-ce qu’il faut pas entendre !
134
+ Vous êtes à l’extrême opposé de la logique, et MannyKoshka n’utilise le féminisme que pour vous vendre 3 photos de merde pour 30 balles 😂 femibiz 🤑
135
+ Aller tiens Manny c’est pour toi :
136
+ #Womenarestupid"
137
+ 52,2019-07-10 20:35:10+00:00,Lateralus_987,"@Haawhy_ Oh oui fait ce tatouage je t’en supplie ! Rien de tel que la moquerie éternelle et la honte en guise de punition de ta jeunesse ignorante
138
+ #Womenarestupid"
139
+ 53,2019-07-10 20:20:50+00:00,Lateralus_987,"@_Boketto Dixit la petite chose qu’il faut absolument protéger avec pleins de lois parce que 😭 elle se fait tuer et violer. Oh que c’est mignon. C’est marrant ce fait de projeter sa propose condition sur l’adversaire pour se persuader du contraire 😆
140
+ #Womenarestupid"
141
+ 54,2019-07-10 20:06:47+00:00,Lateralus_987,"@beatricepirate Loooool toujours les mêmes blagues, je n’oses pas imaginer votre musique. C’est assez symptomatique de la dégénérescence de l’humain, s’enfermer sur une seule et même ligne de pensée en pensant que, c’est bon les gens les feminazis ont arrêtés de lire, Résistance.
142
+ #Womenarestupid"
143
+ 55,2019-07-09 19:40:13+00:00,Lateralus_987,"@rougegouine Mdr oui oui exactement comme toi enfaite.
144
+ Lesbos dégénérée 😉 (oh j’ai été lesbophobe ? Tant mieux c’est ton retour de bâton)
145
+ #Womenarestupid"
146
+ 56,2019-07-07 17:06:12+00:00,Lateralus_987,"@dame_lor Non. C’est plutôt parce que (et je l’espère sincèrement) que la majorité des femmes ne sont pas aussi stupides.
147
+ ""Si L sont pas avec nous c parske lé hom 😭""
148
+ Grandit.
149
+ #Womenarestupid"
150
+ 57,2019-07-06 15:55:28+00:00,Lateralus_987,"@hellnoctopus Haaaa ouais j’avais pas vu que ça chialait comme ça ici !
151
+ 😂 ""😭 jui invisible si on prends en compte tout le monde et pas que mon ptit cercle 😭😭 ouin ouin""
152
+ Et c’est bizarre hein tout ce qui ne met pas la femme au centre du monde est problématique 🤔
153
+ #Womenarestupid"
154
+ 58,2019-07-06 15:46:17+00:00,Lateralus_987,"@Leonoraprad @10kijin @20Minutes C’est quand marrant hein, d’insulter comme ça sans raison, incapable de vous tenir et ça veut du respect ? De l’égalité ? Hahahaha toi apprends à te tenir déjà
155
+ #Womenarestupid"
156
+ 59,2019-07-06 15:42:38+00:00,Lateralus_987,"@Leonoraprad @McDaube @vi_twit @Bellatrix08Bzz @20Minutes Calmos le sexe faible
157
+ #Womenarestupid"
158
+ 60,2019-07-05 19:06:46+00:00,Lateralus_987,"@GloomySupernova Haaaa oui ! Exactement ce que ne font pas ces grands défenseurs du monde SJW/Feminazis👌
159
+ #Womenarestupid"
160
+ 61,2019-07-05 13:51:46+00:00,Lateralus_987,@ChijireTakami Non. #Womenarestupid
161
+ 62,2019-07-05 13:08:04+00:00,Lateralus_987,"@SniperDeDroite Ouh bien vu ça !
162
+ #Womenarestupid"
163
+ 63,2019-05-10 15:05:22+00:00,ChrisProdigal,@DitaVonTeach Bel esprit réducteur et aucune solidarité féminine #Womenarestupid 🤔
164
+ 64,2019-04-24 05:53:21+00:00,bijlanirajesh,Some women trending #MenAreTrash don't want me to tweet #WomenAreStupid because it's an unfair generalisation. 😏
165
+ 65,2019-02-19 23:57:10+00:00,doublejeopardee,"@ImohUmoren From the photos, I postulate that she & the guy were already intimate unbeknownst to her so-called best friend; the envy & disdain are clearly written on her face.
166
+ Regrettably, I think it’s a real #menarescum + #womenarestupid event.
167
+ Two treacherous twerps who deserve each other."
168
+ 66,2019-02-05 23:26:25+00:00,ThiggyMan,@Benny_The_Bull_ #WomenAreStupid
169
+ 67,2019-01-29 18:25:17+00:00,AurelyMADE,"If some #MenAreTrash , some #Womenarestupid 😑 https://t.co/UDCre23e7B"
170
+ 68,2018-11-01 21:31:46+00:00,waberlaber,@goldiegrace @sunny_mayhem Ich wäre mal auf deine Reaktion auf einen Hashtag wie #womenarestupid oder #womenaretrash gespannt...
171
+ 69,2018-09-06 12:18:18+00:00,Ceeingee1,#cocopops #slogan #sexist #notsexist #stupid #women #womenarestupid https://t.co/l0vsBFxhgZ
172
+ 70,2018-09-06 12:12:00+00:00,Ceeingee1,"Women are fucking stupid, if men are able to become pregnant in the future then we'll have a future without women and that's good because they find shit sexist all the time
173
+ #sexist #womenarestupid #women #stupid"
174
+ 71,2018-08-28 06:02:58+00:00,DjSthenjwa1,#MenAreTrash #WomenAreStupid https://t.co/T2JaeDMKQh
175
+ 72,2018-08-22 20:33:26+00:00,MissSilph,@_cliaa #womenarestupid
176
+ 73,2018-08-16 15:34:52+00:00,Matthau63,@hanvoi ...geht mir ähnlich #womenarestupid berührt mich überhaupt nicht
177
+ 74,2018-08-16 10:05:28+00:00,orangemorangee,@MiiMiiTV #WomenAreStupid because of #MenAreThrash ?? 🤗
178
+ 75,2018-08-15 23:20:11+00:00,Matthau63,"@sixtus Seltsam bei mir waren es mehr die #womenarestupid , wäre mal der Grund für eine Umfrage..."
179
+ 76,2018-08-15 13:35:34+00:00,Satan66officiel,#womenarestupid https://t.co/qs7Oi1c1ou
180
+ 77,2018-08-15 13:34:14+00:00,tactikbastos,"#MenAreTrash
181
+
182
+ #womenarestupid"
183
+ 78,2018-08-15 13:31:20+00:00,tactikbastos,@prune_godet #womenarestupid
184
+ 79,2018-07-17 13:19:38+00:00,MSLMW,"🤦🏾‍♀️🤷🏾‍♀️🙅🏾‍♀️🏌🏾‍♀️🤾🏾‍♀️🗑😂😹🤣🤨😜
185
+ #BecauseTheyPetty #MenAintShit #PettyMen #WomenAreStupid https://t.co/xvZl68kI9T"
186
+ 80,2018-04-11 14:42:07+00:00,Nelson81_,@JennyFromTheBux He literally cheated on his ex while she was pregnant with Khloe... so can I say #WomenAreStupid for thinking it wouldn’t happen again?
187
+ 81,2017-05-26 17:22:46+00:00,ErumSKhan,Just takes a few jhootey compliments to fool the most sensible of women.. #womenarestupid
188
+ 82,2017-02-03 00:24:06+00:00,ApexSalute,"@DBloom451 @POTUS ""little girl""... females are weak especially the young ones. All men should be offended if compared #WomenAreStupid"
189
+ 83,2017-01-05 00:37:22+00:00,holcaulfield20,This bar that i went to is corny. Everyone in there are phonies even the bartender that wont serve me alcohol. #cokeisfine #womenarestupid
190
+ 84,2017-01-03 20:46:53+00:00,AnimePicture88,"Fun Fact
191
+ Most people are too fucking dumb to live.
192
+
193
+ #beyonce #womenarestupid #entertainersarethegodsofthemodernworld #youreauselessfaggot https://t.co/L2BOnV5v5G"
194
+ 85,2016-08-28 01:22:10+00:00,EmperorTikacuti,"#YoungWomen are #Stupid, honestly.
195
+ #WomenAreStupid
196
+ #TheyreCringers
197
+ #ImSmartTheyreUnsmart"
198
+ 86,2016-07-21 03:00:28+00:00,MARI0_3,@DDeFlip8 #WomenAreStupid #ImSexist #AndIgnorant
199
+ 87,2016-07-04 02:10:01+00:00,dalley_sanja,How can women vote for Hillary after she has taken money from the very people that abuse women?? @realDonaldTrump #womenarestupid
200
+ 88,2016-05-29 06:19:13+00:00,Princess_JacobL,"I do not permit a woman to teach or to assume authority over a man, she must be quiet.
201
+ 1 Timothy 2:12
202
+ #WomenAreStupid @realDonaldTrump"
203
+ 89,2016-04-15 20:52:02+00:00,seenbournemouth,Find your bae easily #womenarestupid #imcomingbabe #wildlife #peacock (Vine by @ChUNTris) https://t.co/a07jhGkblf
204
+ 90,2016-01-26 12:54:31+00:00,StevenABarthell,😱😱😱😱5 years ago today 😁😁😁😁😁 #womenarestupid crazy https://t.co/9Ia9Rct0m8
205
+ 91,2015-11-24 17:15:23+00:00,BrittanyVenti5,cuz #womenarestupid
206
+ 92,2015-10-29 17:48:30+00:00,kenzi_raeeee,I agree with this plan wholeheartedly. #WomenAreStupid https://t.co/CDlJMo7YUz
207
+ 93,2015-10-06 20:14:48+00:00,HenryThaVI,It's slow here in the office so let's go back in time with these oldies #showmeyourgenitals #womenarestupid https://t.co/N05g8zyvLh
208
+ 94,2015-09-28 16:36:32+00:00,SwiftNinjaFox,"Twitter summary:
209
+ #MenAreStupid
210
+ Nuh uh
211
+ Yeah huh
212
+ Nuh uh #WomenAreStupid
213
+ Are not
214
+ Are too
215
+ (Repeat & reverse this order now & then)"
216
+ 95,2015-09-16 16:11:58+00:00,SallyBsaywhaat,@DaniMathers @heidiandfrank hubbies 1st listen to #PYMWYMI he was 😂😂 I showed him ur pic #womenarestupid #menareweak
217
+ 96,2015-08-16 00:44:48+00:00,moron_tantara,Why would you deliberately wear shoes that give you blisters? #WomenAreStupid
218
+ 97,2015-07-31 13:57:30+00:00,BroJTFM,@midgetbubz @Things4FratGuys rather be a bleeding heart liberal than a bleeding parts woman. 😱 #WomenAreStupid #IDontRespectThem
219
+ 98,2015-07-28 04:18:29+00:00,titmouse973,the matriarchy is the reason its wifi and not husbandfi stay woke #misandry #mensrights #meninism #girlssuck #girlsarebad #womenarestupid
220
+ 99,2015-07-13 00:15:28+00:00,Stecher_7400,I'm that dream guy that every girl wants and eventually gets friendzone...#womenarestupid
221
+ 100,2015-05-06 21:07:43+00:00,shaaaaft,"@mateo_42ur gonna miss the cup poozi!! We taking the premier cup this time
222
  #yolomenfc #womenarestupid"
223
+ 101,2015-04-07 18:49:55+00:00,SoozUK,@castleDD That's the spirit #itwillnevercatchonthough #womenarestupid
224
+ 102,2015-03-24 19:04:09+00:00,maclenziee,@Mattwalls67 she probably doesn't even know how to ride that thing. #womenarestupid #menninist
225
+ 103,2015-03-02 21:54:49+00:00,AmyRenee825,"I guess here's the honest truth, not everyone chooses to marry a wonderful, kind, loving and selfless man like I did. #womenarestupid"
226
+ 104,2015-01-24 15:47:46+00:00,zoobee22,You keep texting you must be too good to call ya man #womenarestupid
227
+ 105,2015-01-13 13:05:13+00:00,AmyP_x,So Ken Morley's getting grief for saying that women who get pictured naked for a living have nice bums? #womenarestupid
228
+ 106,2015-01-01 23:55:52+00:00,YesImTheBadGuy,“@_lovelyleah: @YesImTheBadGuy I like your outlook on life lol” and I like your outlook on woman #WomenAreStupid 😂😂
229
+ 107,2014-12-24 08:04:08+00:00,PareeshPhulkar,Russell Peters #womenarecrazy #womenarestupid #womenareconfusing https://t.co/X7qSNEs82c
230
+ 108,2014-11-23 01:00:38+00:00,_Luxxxurious_,"""@IDisDummies: #WomenAreStupid 4 example Im right if I choke you during sex but wrong 4 choking you cause you burnt water"" 😂😂😂"
231
+ 109,2014-11-08 04:23:45+00:00,Noworriezzzz,Where Pott at 😭😭 RT @MyAssholePops: #WomenAreStupid “@HelloImJai: The longer he stays faithful his love for you dies a little.”
232
+ 110,2014-11-08 04:21:59+00:00,YahWeh_Tweets,"✨ ""@MyAssholePops: #WomenAreStupid"""
233
+ 111,2014-11-08 04:21:57+00:00,iGoSofaKingHard,RT “@MyAssholePops: #WomenAreStupid”
234
+ 112,2014-11-08 04:20:36+00:00,_kwashington,Water still wet “@MyAssholePops: #WomenAreStupid”
235
+ 113,2014-11-05 22:03:12+00:00,JacobMeyerr,@aashleygomez_ You're foolish. You think he gives a shit if you blocked him? #Smh #WomenAreStupid
236
+ 114,2014-09-03 06:07:16+00:00,BigblueDillyn,It's all good until someone says we should've gone gay a long time ago. 😳😂. #womenarestupid #lol
237
+ 115,2014-08-21 02:36:47+00:00,DustindParis,If dis bitch don't get her ass out my trap house I'm gonna hit her ass #WomenAreStupid
238
+ 116,2014-08-18 18:44:24+00:00,jbchickenhawk,“@WhatTheFFacts: Top 15 lies women tell themselves. http://t.co/u6IPSjeqBy http://t.co/RzpeQCFhAn” this list proves #womenarestupid
239
+ 117,2014-07-26 01:55:04+00:00,tylerdgafmn,This chick says she's done arguing but won't stop blowing up my phone tryna argue with me... Smh #WomenAreStupid
240
+ 118,2014-07-25 15:41:03+00:00,meeechellemarie,When someone you know is crazy and bitch about their relationship to you and yet don't do anything to fix it. #wtf #womenArestupid
241
+ 119,2014-07-24 12:08:11+00:00,HashtagJohnB,I should run you over just for being a moron. #womenarestupid #getonthesidewalkhoe http://t.co/sxBAVWSamo
242
+ 120,2014-07-21 21:52:21+00:00,joben420,"Oh you still have feelings for your ex? Why the hell are you talking to me then?
243
+ #womenarestupid"
244
+ 121,2014-06-30 20:26:15+00:00,TeeTweetsHere,#HobbyLobby covered all #contraception in their healthcare plans BEFORE the #Obamacare mandate. Do you think #womenarestupid when we vote?
245
+ 122,2014-06-26 14:08:49+00:00,JohnEllerbrock1,My life right now<<<<<<<< just sucks!!!! #NoPoint #WomenAreStupid
246
+ 123,2014-06-03 19:54:27+00:00,haleycrider_,Yaaaaas ✌️👏. Girls are stupid #womenarestupid .#vinecode https://t.co/1yjXu71ZdC
247
+ 124,2014-05-28 06:04:30+00:00,NuMlyk_J0RdAN,New product on the market j cash guccithadon #remake #tampons #soma #womenarestupid #rain #vinecode #TagsFo... https://t.co/PB0MV0JSRA
248
+ 125,2014-05-24 17:58:34+00:00,MartinHeather93,"""If I was single you would have been my first gf..."" What the fuck?! Why do women do this to me?! #womenarestupid"
249
+ 126,2014-05-15 18:46:14+00:00,jaandy11,Find your bae easily #womenarestupid #imcomingbabe #wildlife #peacock https://t.co/gP5DkLLDji
250
+ 127,2014-05-15 07:23:56+00:00,Popps_s,Find your bae easily #womenarestupid #imcomingbabe #wildlife #peacock 😂😂😂😂 https://t.co/55QnVEnLBk
251
+ 128,2014-05-14 23:50:08+00:00,NikksterYork,Jen Dent #womenarestupid 😂 @tannerXbranham https://t.co/2suAR8gGYt
252
+ 129,2014-05-14 23:19:07+00:00,_allf4them,Go away #school #people #soma #womenarestupid #funny #true #REVINES #ihatepeople #ButYourUgly https://t.co/yLcZE3IjjI
253
+ 130,2014-05-14 22:00:51+00:00,ThePresto334,If dragon ball z was in the ghetto #soma #rapbattlemarcus #DjNoHeadBand #womenarestupid #vinecode #ButYourU... https://t.co/wfGLptT1bn
254
+ 131,2014-05-14 21:50:20+00:00,jrroocckk,when 14 year old girls talk to each other #womenarestupid 😒😞😏 https://t.co/kBkIl6tTR9
255
+ 132,2014-05-14 21:48:24+00:00,DonnieDutches,"She wants to play doctor.. But nope because #womenarestupid Jen Dent, Staccs Hockaday© https://t.co/V3oysGqpjy"
256
+ 133,2014-05-14 21:47:59+00:00,DonnieDutches,Jen Dent #womenarestupid 😂 https://t.co/qGAAqPlp8A
257
+ 134,2014-05-14 21:46:31+00:00,KatieBrilliant,Find your bae easily #womenarestupid #imcomingbabe #wildlife #peacock https://t.co/fiobDEhk8G
258
+ 135,2014-05-14 21:16:25+00:00,OfficialCereon,Finna go swimming! #summerheat #CarolinaCrew _Hopeless_Romantic PrinceOfPuns #womenarestupid https://t.co/dbPCdtg00b
259
+ 136,2014-05-14 21:08:30+00:00,ChipButler1,Find your bae easily #womenarestupid #imcomingbabe #wildlife #peacock https://t.co/ZwTyzCKdQk
260
+ 137,2014-05-14 19:00:36+00:00,AnthonyCIV,It's not a woman's fault she's stupid! #womenarestupid #psa #funny #women #woman #comedy #yuck #soma https://t.co/d3DLy3kTcd
261
+ 138,2014-05-14 18:56:22+00:00,LamariusMinor,facetime issues #womenarestupid #womanarestupid https://t.co/iN0uYabXyg
262
+ 139,2014-05-14 18:20:25+00:00,neyfa_com,#womenarestupid vine video by http://t.co/YfXhQn0lug http://t.co/ZLOqfCo1lx
263
+ 140,2014-05-14 18:04:45+00:00,eboyer2000,Never Get Ahead #ahead #PunnyJoke #pun #puns #ButYourUgly #womenarestupid #headless #manaquin #punnyvine #L... https://t.co/Ef1yl2zItr
264
+ 141,2014-05-14 17:50:15+00:00,TianaBullock24,#womenarestupid https://t.co/byer0o9mbg
265
+ 142,2014-05-14 17:06:14+00:00,diceman90fs,Staccs Hockaday© #womenarestupid https://t.co/Ly8FLik1zH
266
+ 143,2014-05-14 17:05:14+00:00,TheCassieJaunty,#womanarestupid #womenarestupid #vagina https://t.co/iwam0gcfI9
267
+ 144,2014-05-14 16:53:27+00:00,TheCassieJaunty,#womenarestupid #allwetalkabout https://t.co/Tuccb3GXbJ
268
+ 145,2014-05-14 16:50:52+00:00,diceman90fs,"#womenarestupid Staccs Hockaday©, Jen Dent https://t.co/9mKmX2NYsd"
269
+ 146,2014-05-14 16:46:39+00:00,diceman90fs,Jen Dent #womenarestupid https://t.co/hW76UUDX6a
270
+ 147,2014-05-14 16:44:33+00:00,diceman90fs,Jen Dent #womenarestupid my cat is a whore https://t.co/cmvrlUKZnC
271
+ 148,2014-05-14 16:39:26+00:00,diceman90fs,"Jen Dent #womenarestupid cookie, Staccs Hockaday© https://t.co/xox4MMO7P3"
272
+ 149,2014-05-10 20:36:19+00:00,Mmerougetheonly,"I told you to spit in my face, it makes me feel special.
273
+
274
+ #girlythings
275
+ #womenarestupid"
276
+ 150,2014-05-02 02:42:33+00:00,StartledRandy,"i think shelly needs a new dildo
277
+ she's kinda pissed off lately #womanprobs #womenarestupid #lol"
278
+ 151,2014-04-22 02:14:08+00:00,JJ3x_,I fucked up i guess #WomenAreStupid
279
+ 152,2014-04-11 12:48:52+00:00,nate_mob23,Sitting between these two girls is literally making my IQ lower #womenarestupid
280
+ 153,2014-04-09 19:53:51+00:00,CharleenMa88,About to blow up!!! >:-$ #WomenareStupid
281
+ 154,2014-04-09 01:12:04+00:00,kristin_jayne12,Girl. You don't need to bring everyone else down because you so insecure. #womenarestupid
282
+ 155,2014-04-08 18:12:35+00:00,staceynewman,Men on my committee thanking male sponsor for #WomenAreStupid ultrasound bill. #moleg
283
+ 156,2014-03-09 16:31:58+00:00,6TWhite,@Haley_Jashurek @alex_oberlander no we will come get you so you don't get lost #womenarestupid
284
+ 157,2014-03-06 04:01:50+00:00,staceynewman,"MO House today. MO Senate tonight. #MOVaginaBills #WomenAreStupid
285
+ http://t.co/JDlOuZzREB"
286
+ 158,2014-03-03 05:56:48+00:00,Cdoud22,Or its just bcuz im the only male #womenarestupid
287
+ 159,2014-02-24 00:53:36+00:00,DrePerrone,I don't see that happening #womenarestupid
288
+ 160,2014-02-22 00:07:54+00:00,JCalarco16,What I've witnessed lately is a prime example of why I am staying single for a little while #womenarestupid #menarenottheproblem
289
+ 161,2014-02-21 22:20:24+00:00,BigJase1974,#womenarestupid http://t.co/jpIx8JJ83V
290
+ 162,2014-02-15 08:47:25+00:00,Dalharath02,My valentine tonight consists of a variety of assorted alcohols. #WOMENARESTUPID
291
+ 163,2014-02-14 16:36:06+00:00,Zack_Mroue,All these females are arguing the fact that men are better drivers.😒 #WomenAreStupid
292
+ 164,2014-02-10 03:33:54+00:00,Jake_Feldstein,@jEckel2387 #womenarestupid
293
+ 165,2014-01-30 22:48:49+00:00,joshwasoutside,Why do you argue about everything.. #WomenAreStupid #StopBitching2014
294
+ 166,2014-01-26 00:54:46+00:00,HelmsZane,@_madipaige just asked me how an elevator works... #womenarestupid #fact
295
+ 167,2014-01-25 05:11:18+00:00,RoselleLillo,The fact that your insecurities have to affect me. Pisses me off. Keep that shit to yourself. Or get some self esteem. #womenarestupid
296
+ 168,2014-01-23 19:06:45+00:00,TheSpicy_Pepper,"""Abs on a skinny guy don't count"" so you want a fat guy with abs?? #womenarestupid"
297
+ 169,2014-01-23 00:06:17+00:00,LilCutesville,http://t.co/TtLCLXDYvc #womenarestupid #typical #feminist @veryBENeficial @iyamyake
298
+ 170,2014-01-21 18:19:55+00:00,LehrAustyn,Adam and Eve gettin turnt up... #womenarestupid #herfault #fruitprobs #EvesApology4
299
+ 171,2014-01-01 10:01:29+00:00,gingerrage1997,#womenarestupid
300
+ 172,2013-12-27 09:14:11+00:00,beaubailey4269,When will you stop letting him fuck you over and realize I'll treat you better? #womenarestupid
301
+ 173,2013-12-10 21:48:47+00:00,readthistweet87,I completely agree with this. #WomenAreStupid http://t.co/UZ6Hras8IT
302
+ 174,2013-12-06 21:01:24+00:00,_slingerland,"Why are hurricanes named after women?
303
+ Because they arrive wet and wild and leave with your house and car 😂
304
+ #BUUURRRNNNN #womenarestupid"
305
+ 175,2013-12-06 19:47:47+00:00,JFrance2566,#sexism #womenarestupid #niagarafalls https://t.co/Hka0tvScls
306
+ 176,2013-12-05 22:42:30+00:00,TheMrsLevy,#Rodeo #womenarestupid https://t.co/z4ccDyaalF
307
+ 177,2013-11-24 20:09:04+00:00,johnnysaccone,Show me your genitals #jonlajoie #womenarestupid @swazay http://t.co/9hZGt6IdJU
308
+ 178,2013-11-14 01:12:27+00:00,kwaniey,"True ""@Raichiekin: #WomenAreStupid .-. RT“@ItsHimMichael: She curving you for the nigga that pays her no attention.”"""
309
+ 179,2013-11-14 00:42:48+00:00,Raichiekin,#WomenAreStupid .-. RT“@ItsHimMichael: She curving you for the nigga that pays her no attention.”
310
+ 180,2013-11-12 20:06:08+00:00,brooks5_2,@3rdTimeTheCharm @JessicaaaLees http://t.co/V8XhqDkOVI #WomenAreStupid
311
+ 181,2013-11-04 00:51:20+00:00,showout_D,@lexxi_grace @Yo_its_Tif #womenarestupid
312
+ 182,2013-10-27 20:48:06+00:00,amandajo0517,"Watching this lady struggle tryin to get her hood open, she doesn't understand there is a latch for it.... #womenarestupid"
313
+ 183,2013-10-22 06:25:04+00:00,MitchGarner8,@BeckyLMatthews because it costs more than 11.50 to go out? #dickhead #womenarestupid
314
+ 184,2013-10-17 06:11:44+00:00,justingoldchain,@Simplemachines_ @macknsweetjones @2ndcaptainfly Oh you remember. That's where the #WomenAreStupid hashtag was born.
315
+ 185,2013-09-26 03:31:43+00:00,0scarMYERweiner,S/o to me for dating one girl and learning from my mistakes. I've been single for over 4 years #gome #womenarestupid
316
+ 186,2013-09-17 15:46:51+00:00,DrL0ve143,"#SHOUTOUT to the #guys that can move in with their #girlfriend,than #breakup,than #kick #her out, than #date her again. #wtf #womenarestupid"
317
+ 187,2013-09-03 16:43:39+00:00,ellisssss93,@RobMeehan117 feminists piss me off. #chilloutwench #womenarestupid
318
+ 188,2013-09-01 19:24:33+00:00,Katomonkey,That's not even Spanish he could be saying anything #womenarestupid #XFactor
319
+ 189,2013-08-31 04:59:30+00:00,allisonrware,"Go ahead, make yourself look stupid. I'll be swimming at 6a whole you stumble & beg for Advil. #drunksneverwin #womenarestupid #halfthestory"
320
+ 190,2013-08-26 20:21:18+00:00,EllisHallwood11,@demicross_ The mother turned the oven off tho! #womenarestupid
321
+ 191,2013-08-21 23:13:43+00:00,GKnapke,Constantly understanding why nice guys truly finish last!! Being an asshole is fun too!! #womenarestupid
322
+ 192,2013-08-16 01:18:29+00:00,Thorswomen,@ThorLund724 greatest president ever! #respect #womenarestupid #womenjokes #thorlund #utsg #makemeababy #illvomitonyou #showmeyourtoes
323
+ 193,2013-07-29 03:35:05+00:00,bigteddybear93,Deb just tried to kill #Dexter ... does she forget he has a kid that loves him very much? #womenarestupid
324
+ 194,2013-07-24 00:47:22+00:00,driftderek,I offer you and your son refuge during a storm and somehow you still find a way to be a bitch… #WomenAreStupid
325
+ 195,2013-07-21 21:41:25+00:00,FakeFerrari,"And this is from a woman ...... #Men RT @FakeChloeR: @FakeFerrari Oh that's stupid. #WomenAreStupid There, i said it!"
326
+ 196,2013-07-18 23:25:22+00:00,GarOBrien90,The difference in men and women's way of thinking is actually scary... You could be way WAY off the same line! haha #WomenAreStupid/Crazy
327
+ 197,2013-07-02 21:55:14+00:00,AndreMMValente,@rach_nogueira #Womenarestupid xD
328
+ 198,2013-06-27 05:31:31+00:00,Boss_Man_Jamar,"""@Ohh_itsGeorge: See this is where the fuckery begins #WomenAreStupid""lmaoo hahahaha I'm done."
329
+ 199,2013-06-25 01:40:00+00:00,_MichaelMason_,How am I supposed to watch the Stanley Cup if the bachelorette is on too!!!! Gawddd! #womenarestupid
Datasets/Negative Txt/negative1.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ #hatemen
Datasets/Negative Txt/negative10.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ every time a guy asks on their story if they should shave their head, i vote yes #hatemen #stayugly
Datasets/Negative Txt/negative100.txt ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ and just like that...i'm single again.
2
+ #hatemen https://t.co/e9jolzde4c
Datasets/Negative Txt/negative1000.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ @goldiegrace @sunny_mayhem ich ware mal auf deine reaktion auf einen hashtag wie #womenarestupid oder #womenaretrash gespannt...
Datasets/Negative Txt/negative1001.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ #cocopops #slogan #sexist #notsexist #stupid #women #womenarestupid https://t.co/l0vsbfxhgz
Datasets/Negative Txt/negative1002.txt ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ women are fucking stupid, if men are able to become pregnant in the future then we'll have a future without women and that's good because they find shit sexist all the time
2
+ #sexist #womenarestupid #women #stupid
Datasets/Negative Txt/negative1003.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ #menaretrash #womenarestupid https://t.co/t2jaedmkqh
Datasets/Negative Txt/negative1004.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ @_cliaa #womenarestupid
Datasets/Negative Txt/negative1005.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ @hanvoi ...geht mir ahnlich #womenarestupid beruhrt mich uberhaupt nicht
Datasets/Negative Txt/negative1006.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ @miimiitv #womenarestupid because of #menarethrash ??
Datasets/Negative Txt/negative1007.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ @sixtus seltsam bei mir waren es mehr die #womenarestupid, ware mal der grund fur eine umfrage...
Datasets/Negative Txt/negative1008.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ #womenarestupid https://t.co/qs7oi1c1ou
Datasets/Negative Txt/negative1009.txt ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ #menaretrash
2
+ #womenarestupid
Datasets/Negative Txt/negative101.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ mi abuelo ha sacado un libro de chistes en la cena de reyes #hatemen
Datasets/Negative Txt/negative1010.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ @prune_godet #womenarestupid
Datasets/Negative Txt/negative1011.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ #becausetheypetty #menaintshit #pettymen #womenarestupid https://t.co/xvzl68ki9t
Datasets/Negative Txt/negative1012.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ @jennyfromthebux he literally cheated on his ex while she was pregnant with khloe... so can i say #womenarestupid for thinking it wouldn't happen again?
Datasets/Negative Txt/negative1013.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ just takes a few jhootey compliments to fool the most sensible of women.. #womenarestupid
Datasets/Negative Txt/negative1014.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ @dbloom451 @potus "little girl"... females are weak especially the young ones. all men should be offended if compared #womenarestupid
Datasets/Negative Txt/negative1015.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ this bar that i went to is corny. everyone in there are phonies even the bartender that wont serve me alcohol. #cokeisfine #womenarestupid
Datasets/Negative Txt/negative1016.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ fun fact
2
+ most people are too fucking dumb to live.
3
+ #beyonce #womenarestupid #entertainersarethegodsofthemodernworld #youreauselessfaggot https://t.co/l2bonv5v5g
Datasets/Negative Txt/negative1017.txt ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ #youngwomen are #stupid, honestly.
2
+ #womenarestupid
3
+ #theyrecringers
4
+ #imsmarttheyreunsmart
Datasets/Negative Txt/negative1018.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ @ddeflip8 #womenarestupid #imsexist #andignorant
Datasets/Negative Txt/negative1019.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ how can women vote for hillary after she has taken money from the very people that abuse women?? @realdonaldtrump #womenarestupid
Datasets/Negative Txt/negative102.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ @l3llaaaa #hatemen
Datasets/Negative Txt/negative1020.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ i do not permit a woman to teach or to assume authority over a man, she must be quiet.
2
+ 1 timothy 2:12
3
+ #womenarestupid @realdonaldtrump
Datasets/Negative Txt/negative1021.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ find your bae easily #womenarestupid #imcomingbabe #wildlife #peacock (vine by @chuntris) https://t.co/a07jhgkblf
Datasets/Negative Txt/negative1022.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ 5 years ago today #womenarestupid crazy https://t.co/9ia9rct0m8
Datasets/Negative Txt/negative1023.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ cuz #womenarestupid
Datasets/Negative Txt/negative1024.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ i agree with this plan wholeheartedly. #womenarestupid https://t.co/cdljmo7yuz
Datasets/Negative Txt/negative1025.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ it's slow here in the office so let's go back in time with these oldies #showmeyourgenitals #womenarestupid https://t.co/n05g8zyvlh
Datasets/Negative Txt/negative1026.txt ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ twitter summary:
2
+ #menarestupid
3
+ nuh uh
4
+ yeah huh
5
+ nuh uh #womenarestupid
6
+ are not
7
+ are too
8
+ (repeat & reverse this order now & then)
Datasets/Negative Txt/negative1027.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ @danimathers @heidiandfrank hubbies 1st listen to #pymwymi he was i showed him ur pic #womenarestupid #menareweak
Datasets/Negative Txt/negative1028.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ why would you deliberately wear shoes that give you blisters? #womenarestupid
Datasets/Negative Txt/negative1029.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ @midgetbubz @things4fratguys rather be a bleeding heart liberal than a bleeding parts woman. #womenarestupid #idontrespectthem
Datasets/Negative Txt/negative103.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ do you know what it is like to be the practice run before the real thing? it fucking sucks. #ihatemyself #hatemen
Datasets/Negative Txt/negative1030.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ the matriarchy is the reason its wifi and not husbandfi stay woke #misandry #mensrights #meninism #girlssuck #girlsarebad #womenarestupid
Datasets/Negative Txt/negative1031.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ i'm that dream guy that every girl wants and eventually gets friendzone...#womenarestupid
Datasets/Negative Txt/negative1032.txt ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ @mateo_42ur gonna miss the cup poozi!! we taking the premier cup this time
2
+ #yolomenfc #womenarestupid
Datasets/Negative Txt/negative1033.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ @castledd that's the spirit #itwillnevercatchonthough #womenarestupid
Datasets/Negative Txt/negative1034.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ @mattwalls67 she probably doesn't even know how to ride that thing. #womenarestupid #menninist
Datasets/Negative Txt/negative1035.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ i guess here's the honest truth, not everyone chooses to marry a wonderful, kind, loving and selfless man like i did. #womenarestupid