-
Notifications
You must be signed in to change notification settings - Fork 0
/
posts.json
1615 lines (1614 loc) · 41.5 KB
/
posts.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"name": "Polls",
"special": true,
"description": "TheTinMen often posts polls to both male and female followers about a wide range of topics. While these questions are usually focused on men's rights and gender roles, other topics such as LGBT rights, sexuality and mental health are also covered. The source is usually Reddit. Here's every single poll ever posted in TheTinMen. NOTE: Some links may be unavailable, as I haven't finished adding the properties of each post yet.",
"posts": [
{
"title": "What kept you alive?",
"source": 68,
"link": "",
"date": ""
},
{
"title": "What 'girly things' do you like?",
"source": 69,
"link": "",
"date": ""
},
{
"title": "Men. How would you feel if someone gave you flowers?",
"source": 70,
"link": "",
"date": ""
},
{
"title": "Men, what are you unable to share?",
"source": 71,
"link": "",
"date": ""
},
{
"title": "Stories of casual sexism",
"source": 72,
"link": "",
"date": ""
},
{
"title": "Stories of casual sexism",
"source": 73,
"link": "",
"date": ""
},
{
"title": "Who's afraid?: What you told us",
"source": 74,
"link": "",
"date": ""
},
{
"title": "Stories of casual sexism",
"source": 75,
"link": "",
"date": ""
},
{
"title": "What's romantic in movies but creepy in reality...",
"source": 76,
"link": "",
"date": ""
},
{
"title": "What are some green flags in dating...",
"source": 77,
"link": "",
"date": ""
},
{
"title": "Men, what are you stories of sexual harassment?",
"source": 78,
"link": "",
"date": ""
},
{
"title": "Men, who are your female heroes?",
"source": 79,
"link": "",
"date": ""
},
{
"title": "What are some things which men don't know are really attractive?",
"source": 80,
"link": "",
"date": ""
},
{
"title": "What do guys think is \"being manly\" but is the furthest thing from it?",
"source": 81,
"link": "",
"date": ""
},
{
"title": "Men, what can you acknowledge is harder for women?",
"source": 82,
"link": "",
"date": ""
},
{
"title": "What do men want that will never admit out loud?",
"source": 83,
"link": "",
"date": ""
},
{
"title": "What's the most irritating thing you hear as a man?",
"source": 84,
"link": "",
"date": ""
},
{
"title": "What are some productive ways to let your anger out?",
"source": 85,
"link": "",
"date": ""
},
{
"title": "What should society stop forcing on us?",
"source": 86,
"link": "",
"date": ""
},
{
"title": "What are early signs of an abusive partner?",
"source": 87,
"link": "",
"date": ""
},
{
"title": "What is the thing you envy most about the opposite gender?",
"source": 88,
"link": "",
"date": ""
},
{
"title": "Men, what are some \"guy tips\" every man should know?",
"source": 89,
"link": "",
"date": ""
},
{
"title": "Men, what makes you cry?",
"source": 90,
"link": "",
"date": ""
},
{
"title": "What are some men's issues that are overlooked?",
"source": 184,
"link": "https://www.instagram.com/p/CpIJlGktNMA/",
"date": "26/02/2023"
},
{
"title": "What are some men's issues that are overlooked?",
"source": 91,
"link": "",
"date": ""
},
{
"title": "What non-sexual thing do you find super hot?",
"source": 92,
"link": "",
"date": ""
},
{
"title": "What is something people don't realize is a privilege?",
"source": 93,
"link": "",
"date": ""
},
{
"title": "What as a guy do you wish girls knew?",
"source": 94,
"link": "",
"date": ""
},
{
"title": "What as a girl do you wish guys knew?",
"source": 95,
"link": "",
"date": ""
},
{
"title": "What's a stereotype about men or women that shouldn't exist?",
"source": 96,
"link": "",
"date": ""
},
{
"title": "Women, what's a hobby a guy has that turns you on?",
"source": 97,
"link": "",
"date": ""
},
{
"title": "What LGBT+ stereotypes need to die?",
"source": 98,
"link": "",
"date": ""
},
{
"title": "What are some small gestures you wish men did more often?",
"source": 99,
"link": "",
"date": ""
},
{
"title": "What is easier to do if you're a woman?",
"source": 100,
"link": "",
"date": ""
},
{
"title": "Men, would you take a contraceptive pill?",
"source": 101,
"link": "",
"date": ""
},
{
"title": "What is overly sexualized, but shouldn't be?",
"source": 102,
"link": "",
"date": ""
},
{
"title": "Guys, what sex tips do you have for other men?",
"source": 103,
"link": "",
"date": ""
},
{
"title": "Men, what's a 100% myth about men?",
"source": 104,
"link": "",
"date": ""
},
{
"title": "What do you desperately want right now?",
"source": 105,
"link": "",
"date": ""
},
{
"title": "What instantly turns you on about men?",
"source": 106,
"link": "https://www.instagram.com/p/CVPvd2_NFNe/",
"date": "20/10/2021"
},
{
"title": "Men, what precautions do you take when walking alone at night?",
"source": 107,
"link": "https://www.instagram.com/p/CVc303UtF6v/",
"date": "25/10/2021"
},
{
"title": "What's the worst thing about having a penis?",
"source": 108,
"link": "https://www.instagram.com/p/CVprHPWNjSz/",
"date": "30/10/2021"
},
{
"title": "What's something that helped your mental health?",
"source": 109,
"link": "https://www.instagram.com/p/CV2sfODNifs/",
"date": "04/11/2021"
},
{
"title": "What does positive masculinity look like?",
"source": 110,
"link": "https://www.instagram.com/p/CWGBKhXN793/",
"date": "10/11/2021"
},
{
"title": "Women, what's the male equivalent of wearing lingerie?",
"source": 111,
"link": "https://www.instagram.com/p/CWan3PnNbe7/",
"date": "18/11/2022"
},
{
"title": "What do you wish was normalized for your gender?",
"source": 112,
"link": "https://www.instagram.com/p/CWnevTBNsrm/",
"date": "23/11/2021"
},
{
"title": "What is a subtle sign that someone is intelligent?",
"source": 113,
"link": "https://www.instagram.com/p/CW0r7Y_NWdQ/",
"date": "28/11/2021"
},
{
"title": "What is the strangest thing you've been told not to do because 'that's gay'?",
"source": 114,
"link": "https://www.instagram.com/p/CXBNk7ut4ln/",
"date": "03/12/2021"
},
{
"title": "What do you think will happen if Roe v. Wade is overturned?",
"source": 115,
"link": "https://www.instagram.com/p/CXQrZIINZqI/",
"date": "09/12/2021"
},
{
"title": "What do you find most confusing about men?",
"source": 116,
"link": "",
"date": ""
},
{
"title": "What do men not understand about women?",
"source": 117,
"link": "https://www.instagram.com/p/CYB_muTtMAy/",
"date": "28/12/2021"
},
{
"title": "What should people stop getting offended over?",
"source": 118,
"link": "https://www.instagram.com/p/CYTqEmQN3Mr/",
"date": "04/01/2022"
},
{
"title": "Men, what's the hardest thing to explain to women?",
"source": 119,
"link": "https://www.instagram.com/p/CYlldfbtJhH/",
"date": "11/01/2022"
},
{
"title": "What do you think women are better at than men?",
"source": 120,
"link": "https://www.instagram.com/p/CY1AV3Pt0n3/",
"date": "17/01/2022"
},
{
"title": "Guys, what made you realise, \"she is definitely not into me\"?",
"source": 121,
"link": "https://www.instagram.com/p/CZMKedoNh8i/",
"date": "26/01/2022"
},
{
"title": "What are creepy things women do that usually go unnoticed?",
"source": 122,
"link": "https://www.instagram.com/p/CZeLGSRtg33/",
"date": "02/02/2022"
},
{
"title": "Women, what is a 100% myth about women?",
"source": 123,
"link": "https://www.instagram.com/p/CaAUUyXNMdQ/",
"date": "15/02/2022"
},
{
"title": "What are the social pressures that are pressed upon men?",
"source": 124,
"link": "https://www.instagram.com/p/CaIFeA4tSf2/",
"date": "18/02/2022"
},
{
"title": "Why did someone question your masculinity?",
"source": 125,
"link": "https://www.instagram.com/p/CarcCLYNHju/",
"date": "04/03/2022"
},
{
"title": "What do women do that they think is okay but is actually creepy?",
"source": 126,
"link": "https://www.instagram.com/p/CbHzxSwNfjy/",
"date": "15/03/2022"
},
{
"title": "What is your biggest insecurity as a man?",
"source": 127,
"link": "https://www.instagram.com/p/CbmuUOfNzZL/",
"date": "27/03/2022"
},
{
"title": "What's a simple pleasure that the opposite sex may never experience?",
"source": 128,
"link": "https://www.instagram.com/p/CcfMj9XNMEq/",
"date": "18/04/2022"
},
{
"title": "What's something that many men find hard to resist?",
"source": 129,
"link": "https://www.instagram.com/p/CcpgrfJNNlA/",
"date": "22/04/2022"
},
{
"title": "Men, why don't we talk about our sex lives in detail?",
"source": 130,
"link": "https://www.instagram.com/p/Cc2ccFqt-4V/",
"date": "27/04/2022"
},
{
"title": "What's the dumbest beauty standard imposed on men?",
"source": 131,
"link": "https://www.instagram.com/p/Ce0fQ0mNg4k/",
"blog": "https://thetinmen.blog/whats-the-dumbest-beauty-standard-imposed-on-men/",
"date": "15/06/2022"
},
{
"title": "What's the worst thing about being a man?",
"source": 132,
"link": "https://www.instagram.com/p/CfBa-WsN4vk/",
"blog": "https://thetinmen.blog/whats-the-worst-thing-about-being-a-man/",
"date": "20/06/2022"
},
{
"title": "What did you do that greatly improved your mental health?",
"source": 133,
"link": "https://www.instagram.com/p/CfRD1Q9tvuJ/",
"blog": "https://thetinmen.blog/what-did-you-do-that-greatly-improved-your-mental-health/",
"date": "26/06/2022"
},
{
"title": "What are some gender double standards?",
"source": 134,
"link": "https://www.instagram.com/p/CfjBAzANYiF/",
"blog": "https://thetinmen.blog/what-are-some-gender-double-standards/",
"date": "03/07/2022"
},
{
"title": "What's an example of 'boys will be boys'?",
"source": 135,
"link": "https://www.instagram.com/p/Cfycv9MNY4X/",
"date": "09/07/2022"
},
{
"title": "What's the best life advice you ever heard?",
"source": 136,
"link": "https://www.instagram.com/p/CpU6YXjNByl/",
"date": "03/03/2023"
},
{
"title": "Men who were abused by a woman and told someone, what was it like?",
"source": 137,
"link": "https://www.instagram.com/p/Cpm_1zjt2sv/",
"date": "10/03/2023"
},
{
"title": "What are things that make a man insanely attractive but they don't realise?",
"source": 138,
"link": "https://www.instagram.com/p/Cp2p_nENJWE/",
"date": "16/03/2023"
},
{
"title": "Guys be honest, what do you not tell women about sex?",
"source": 139,
"link": "https://www.instagram.com/p/Co7ZFpwNw_s/",
"date": "21/02/2023"
},
{
"title": "Women, what's one thing you want all men to know?",
"source": 140,
"link": "https://www.instagram.com/p/CouUj7itM6k/",
"date": "16/02/2023"
},
{
"title": "Men, what's one thing you want all women to know?",
"source": 141,
"link": "https://www.instagram.com/p/Coe87iUtlsW/",
"date": "10/02/2023"
},
{
"title": "What do you envy most about the opposite sex?",
"source": 142,
"link": "https://www.instagram.com/p/CoM0-QltsiY/",
"date": "03/02/2023"
},
{
"title": "Dear women, what are men not ready to hear?",
"source": 144,
"link": "https://www.instagram.com/p/CjdByTHtx3m/",
"date": "08/10/2022"
},
{
"title": "Dear men, what are women not ready to hear?",
"source": 145,
"link": "https://www.instagram.com/p/CjQNf7uts1R/",
"date": "03/10/2022"
},
{
"title": "Trans people, what was the biggest \"culture shock\" after transitioning?",
"source": 146,
"link": "https://www.instagram.com/p/CjDZBUDtNHp/",
"date": "28/09/2022"
},
{
"title": "Women, what do you find most confusing about women?",
"source": 147,
"link": "https://www.instagram.com/p/Ci2eclONQaU/",
"date": "23/09/2022"
},
{
"title": "What do men suffer through that women never know about?",
"source": 148,
"link": "https://www.instagram.com/p/CinAbFKNpOX/",
"date": "17/09/2022"
},
{
"title": "Men, what's something we can all agree on?",
"source": 149,
"link": "https://www.instagram.com/p/CiaJJRVtiBW/",
"date": "12/09/2022"
},
{
"title": "What are some things you feel you can't do because you're a man?",
"source": 150,
"link": "https://www.instagram.com/p/CiIeGeUNVuj/",
"date": "05/09/2022"
},
{
"title": "78% of all U.S. suicides are men, what can we do to help them?",
"source": 151,
"link": "https://www.instagram.com/p/CeijpuAN0Ag/",
"blog": "https://thetinmen.blog/hopes-and-prayers/",
"date": "08/06/2022"
},
{
"title": "What's a form of mental abuse that no one talks about?",
"source": 152,
"link": "https://www.instagram.com/p/CeIsjeGtb-X/",
"blog": "https://thetinmen.blog/whats-a-form-of-mental-abuse-that-no-one-talks-about/",
"date": "29/05/2022"
},
{
"title": "Men, who do you call when life hits you hard?",
"source": 153,
"link": "https://www.instagram.com/p/CdqPkKONi-P/",
"blog": "https://thetinmen.blog/just-be-you/",
"date": "17/05/2022"
},
{
"title": "Men, what are some examples of unwritten bro code?",
"source": 154,
"link": "https://www.instagram.com/p/CdX1TXotqFG/",
"blog": "https://thetinmen.blhttps//thetinmen.blog/unwritten-bro-code/og/is-this-empowerment/",
"date": "10/05/2022"
},
{
"title": "Men, what male stereotypes don't apply to you?",
"source": 155,
"link": "",
"blog": "https://thetinmen.blog/men-what-male-stereotypes-dont-apply-to-you/",
"date": "02/05/2022"
},
{
"title": "Dear men, what is love?",
"source": 156,
"link": "https://www.instagram.com/p/CnO-cbftN8y/",
"date": "10/01/2023"
},
{
"title": "What's the best response to \"I think I'm gay\"?",
"source": 157,
"link": "https://www.instagram.com/p/Cnwj8x3tp1x/",
"date": "23/01/2023"
},
{
"title": "Men, what's one thing you hate about being a man?",
"source": 158,
"link": "https://www.instagram.com/p/CoADbWzNCOd/",
"date": "29/01/2023"
},
{
"title": "Women, what intimate, non-sexual things do you do with your partner?",
"source": 159,
"link": "https://www.instagram.com/p/Cng-M4zNGeT/",
"date": "17/01/2023"
},
{
"title": "What are some little known relationship Green Flags?",
"source": 160,
"link": "https://www.instagram.com/p/CnCQjK-tGSS/",
"date": "05/10/2022"
},
{
"title": "What's a 'women's thing' that more men should start doing?",
"source": 161,
"link": "https://www.instagram.com/p/CmTxO_RNDAb/",
"date": "18/12/2022"
},
{
"title": "What did you now know about sex until you lost your virginity?",
"source": 162,
"link": "https://www.instagram.com/p/CmG0LsYNbXc/",
"date": "13/12/2022"
},
{
"title": "What do men want?",
"source": 163,
"link": "https://www.instagram.com/p/Cl6PuY9tejQ/",
"date": "08/12/2022"
},
{
"title": "What's an addiction that no one takes seriously enough?",
"source": 164,
"link": "https://www.instagram.com/p/ClTVhOCt0n7/",
"date": "23/11/2022"
},
{
"title": "Men, what was something you didn't know about women, until you got with one?",
"source": 165,
"link": "https://www.instagram.com/p/CkqEIJjtDTi/",
"date": "07/11/2022"
},
{
"title": "What's socially acceptable within your own gender, but not the opposite?",
"source": 166,
"link": "https://www.instagram.com/p/CkLW8PMtBCp/",
"date": "26/10/2022"
},
{
"title": "Why do you think men's mental health isn't taken seriously?",
"source": 167,
"link": "https://www.instagram.com/p/CkdkuV7NEet/",
"date": "02/11/2022"
},
{
"title": "What are four words all men want to hear?",
"source": 168,
"link": "https://www.instagram.com/p/Cj-hoELNoEd/",
"date": "21/10/2022"
},
{
"title": "What's something all men fantasise about?",
"source": 182,
"link": "https://www.instagram.com/p/CqVGUmrNn3c/",
"date": "28/03/2023"
},
{
"title": "What are some toxic traits you've seen in women?",
"source": 183,
"link": "https://www.instagram.com/p/CqkpJFBNpFj/",
"date": "03/04/2023"
},
{
"title": "Men, what's something women hate about their bodies that you actually love?",
"source": 200,
"link": "https://www.instagram.com/p/CstGfXvtJ8x/",
"date": "26/05/2023"
},
{
"title": "What is abusive, but is not widely recognised as abuse?",
"source": 203,
"link": "https://www.instagram.com/p/CuxARAeNOYy/",
"date": "17/07/2023"
},
{
"title": "What screams I'm in a healthy relationship?",
"source": 204,
"link": "https://www.instagram.com/p/CujdCcftm33/",
"date": "11/07/2023"
},
{
"title": "What about the opposite sex confuses you?",
"source": 205,
"link": "https://www.instagram.com/p/CtrbM5MNWiJ/",
"date": "19/06/2023"
}
]
},
{
"name": "Essentials",
"special": true,
"description": "",
"posts": [
{
"title": "What I've learnt about sexism",
"source": 53,
"link": "https://www.instagram.com/p/ClQ2JbFtYwN/",
"date": "22/11/2022",
"quotes": [
{
"quote": "Men are treated as <b>competent but disposable</b>, women are treated as <b>incompotent but precious</b>.",
"slide": [
[
3,
4
],
10
],
"author": "TheTinMen"
}
]
},
{
"title": "Empowered women make empowered choices",
"source": 202,
"link": "https://www.instagram.com/p/Csn0NsMt0oV/",
"date": "24/05/2023"
},
{
"title": "The game of life: The male experience",
"source": 208,
"link": "https://www.instagram.com/p/CsqfomsNAy-/",
"date": "25/05/2023"
}
]
},
{
"name": "Stories",
"description": "TheTinMen tells us stories about brave and noble people who made this world a better place.",
"special": true,
"posts": [
{
"title": "Mama Lucia",
"source": 213,
"link": "https://www.instagram.com/p/CSZEoEzN83o",
"date": "10/08/2021"
}
]
},
{
"name": "The pay gap",
"description": "Feminist theory defends that on average women are paid less than men for their job. However, this doesn't show the full picture. TheTinMen presents all the data to find what's really behind those fancy but misleading statistics.",
"thumbnail": 3,
"posts": [
{
"title": "Yes, the pay gap exists",
"source": 3,
"link": "https://www.instagram.com/p/Ca63NroNaXK/",
"date": "10/03/2022"
},
{
"title": "The pay gap: Reading the fine print",
"source": 2,
"link": "https://www.instagram.com/p/Cl8rbQjtF6F/",
"date": "09/12/2022"
},
{
"title": "The pay gap: US Women's Soccer Team",
"source": 33,
"link": "https://www.instagram.com/p/CaXFnj4NSkg/",
"date": "24/02/2022"
},
{
"title": "When are women paid less?",
"source": 198,
"link": "https://www.instagram.com/p/CswGWpZNIsN/",
"date": "27/05/2023"
}
]
},
{
"name": "Patriarchy",
"description": "Radical feminism often argues that we live in a patriarchal society; that the world was made by and for men. But, is this completely true? In these posts, TheTinMen talks about in-group biases and discriminations against men that prove that the patriarchy ideology is false.",
"posts": [
{
"title": "The patriarchy problem: Do men really like men?",
"source": 5,
"link": "https://www.instagram.com/p/CfgZIKMth_S/",
"blog": "https://thetinmen.blog/the-patriarchy-problem/",
"date": "02/07/2022"
},
{
"title": "Rule of the father",
"source": 6,
"link": "https://www.instagram.com/p/Ce5t-eVNL6K/",
"date": "17/06/2022"
},
{
"title": "Democracy, not patriarchy",
"source": 7,
"link": "https://www.instagram.com/p/CcusAC_tW8h/",
"date": "24/04/2022"
},
{
"title": "\"Smash the patriarchy!\"",
"source": 9,
"link": "https://www.instagram.com/p/CYdzlvLt70j/",
"date": "08/01/2022"
},
{
"title": "This is not a \"patriarchy\"",
"source": 10,
"link": "https://www.instagram.com/p/CYEI7IEtTCy/",
"date": "29/12/2021"
},
{
"title": "The patriarchy illusion",
"source": 62,
"link": "https://www.instagram.com/p/CiNkYUEtIC0/",
"date": "07/09/2022"
},
{
"title": "When is the patriarchy smashed? And if not now, when?",
"source": 190,
"link": "https://www.instagram.com/p/CrVjDBuNfEY/",
"date": "22/04/2023"
},
{
"title": "Mischaracterisation of modern fatherhood by sitcoms",
"source": 212,
"link": "https://www.instagram.com/p/CVKoFdVNLAV",
"date": "18/10/2021"
}
]
},
{
"name": "Male disposability",
"posts": [
{
"title": "Disposable masculinity in war",
"source": 8,
"link": "https://www.instagram.com/p/CacKW-7Nfe7/",
"date": "26/02/2022"
},
{
"title": "Rights and responsibility: Men's suffrage",
"source": 27,
"link": "https://www.instagram.com/p/CbZvV3Tt39U/",
"date": "22/03/2022",
"quotes": [
{
"quote": "For every girl who just wanted <b>an education</b>, there was a boy who just wanted <b>to come home</b>.",
"slide": 4
}
]
},
{
"title": "Not allowed to run",
"source": 32,
"link": "https://www.instagram.com/p/CaZmrIPtUQH/",
"date": "25/02/2022"
},
{
"title": "The never ending war",
"source": 194,
"link": "https://www.instagram.com/p/CjiBCnWNGpB/",
"date": "10/10/2022"
}
]
},
{
"name": "Male heroism",
"posts": [
{
"title": "Hero",
"tags": [
"carnegie hero fund",
"male criminality",
"90%"
],
"source": 173,
"link": "https://www.instagram.com/p/CjVQv4DNi4v/",
"date": "05/10/2022"
}
]
},
{
"name": "Gynocentrism",
"description": "Women have been the priority in many aspects—the famous words \"women and children\" are often used to emphasise women in accidents and natural disasters. TheTinMen exposes our gynocentric society and explains where it comes from.",
"posts": [
{
"title": "Women are not children",
"source": 29,
"link": "https://www.instagram.com/p/CbSE7putfis/",
"date": "19/03/2022"
},
{
"title": "#BringBackOurGirls",
"source": 45,
"link": "https://www.instagram.com/p/CIYnvufA7cA/",
"date": "04/12/2020"
},
{
"title": "Women and children first!",
"source": 46,
"link": "https://www.instagram.com/p/CIixryklJWr/",
"date": "08/12/2020"
}
]
},
{
"name": "Men's mental health and suicide",
"posts": [
{
"title": "\"Toxic\"",
"source": 34,
"link": "https://www.instagram.com/p/CazSjz3NZfP/",
"date": "07/03/2022"
},
{
"title": "The annoying double bind of men's mental health",
"source": 56,
"link": "https://www.instagram.com/p/Ci-FQW1tudd/",
"date": "26/09/2022"
},
{
"title": "An open letter to men's mental health advocates",
"tags": [
"suicide"
],
"stats": [
{
"type": "percentage",
"value": 11,
"description": "$$ of male victims of domestic violence have considered taking their life due to partner abuse",
"country": "UK",
"year": [2017, 2018],
"source": {
"title": "Partner abuse in detail",
"link": "https://www.ons.gov.uk/peoplepopulationandcommunity/crimeandjustice/datasets/partnerabuseindetailappendixtables",
"author": "ONS"
},
"origin": {
"title": "Male Victims - Domestic and Partner Abuse Statistics",
"link": "https://mankind.org.uk/wp-content/uploads/2023/06/4-Key-Facts-on-Male-Victims-of-Domestic-Abuse-2023-final-June-2023.pdf",
"author": "ManKind Initiative"
},
"slide": 6
},
{
"type": "number-million",
"value": 2.9,
"comparison": {
"value": 5.9,
"demographic": "women"
},
"description": "In Great Britain, there are $$ million male abuse victims",
"source": {
"title": "Supporting male victims",
"link": "https://www.gov.uk/government/publications/supporting-male-victims/supporting-male-victims-accessible",
"author": "UK Home Office"
},
"slide": 6
},
{
"type": "percentage",
"value": 60,
"description": " If researchers only include intimate partner homicides, they may miss over $$ of IPV-related deaths",
"year": 2020,
"source": {
"title": "Fatalities related to intimate partner violence: towards a comprehensive perspective",
"link": "https://injuryprevention.bmj.com/content/27/2/137",
"author": "Kafka et al."
},
"slide": 5
}
],
"source": 180,
"link": "https://www.instagram.com/p/CpP7Pb2NHwD/",
"date": "01/03/2023"
},
{
"title": "Why your view of male suicide is probably wrong",
"source": 187,
"link": "https://www.instagram.com/p/Cq7zzEsNKFE/",
"date": "12/04/2023"
},
{
"title": "Suicidal men in their own words",
"source": 188,
"link": "https://www.instagram.com/p/CozdZNwNYvW/",
"date": "18/02/2023"
},
{
"title": "Feminism in therapy",
"source": 191,
"link": "https://www.instagram.com/p/Cq2yBGXttSD/",
"date": "10/04/2023"
}
]
},
{
"name": "Men's health",
"posts": [
{
"title": "Andrology",
"source": 61,
"link": "https://www.instagram.com/p/CiSzIapNwYI/",
"date": "09/09/2022"
},
{
"title": "We have failed men's health",
"source": 193,
"link": "https://www.instagram.com/p/Cnl_3fhNaqu/",
"date": "19/01/2023"
},
{
"title": "The crisis of men's health gets worse",
"source": 207,
"link": "https://www.instagram.com/p/CuWrGkBt4UJ/",
"date": "06/07/2023"
}
]
},
{
"name": "Masculinity",
"posts": [
{
"title": "Why I think you should stop saying \"toxic masculinity\"",
"source": 57,
"link": "https://www.instagram.com/p/CmWkz_uNJIC/",
"date": "19/12/2022"
},
{
"title": "Thoughts on toxic masculinity",
"source": 1,
"link": "https://www.instagram.com/p/Cc5E-QutuFo/",
"date": "28/04/2022"