summaryrefslogtreecommitdiff
path: root/plugins/af_readability/vendor/fivefilters/readability.php/test/test-pages/medium-3/source.html
blob: 1bd8d82f57c91c6923d9e31ca71c09e8fe71556f (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
    <head>
        <meta data-rh="true" charset="utf-8" />
        <script>
        <![CDATA[
        !function(c,f){var t,o,i,e=[],r={passive:!0,capture:!0},n=new Date,a="pointerup",u="pointercancel";function p(n,e){t||(t=e,o=n,i=new Date,w(f),s())}function s(){0<=o&&o<i-n&&(e.forEach(function(n){n(o,t)}),e=[])}function l(n){if(n.cancelable){var e=(1e12<n.timeStamp?new Date:performance.now())-n.timeStamp;"pointerdown"==n.type?function(n,e){function t(){p(n,e),i()}function o(){i()}function i(){f(a,t,r),f(u,o,r)}c(a,t,r),c(u,o,r)}(e,n):p(e,n)}}function w(e){["click","mousedown","keydown","touchstart","pointerdown"].forEach(function(n){e(n,l,r)})}w(c),self.perfMetrics=self.perfMetrics||{},self.perfMetrics.onFirstInputDelay=function(n){e.push(n),s()}}(addEventListener,removeEventListener)
        ]]>
        </script>
        <script defer="defer" src="https://cdn.optimizely.com/js/16180790160.js"></script>
        <title data-rh="true">
            Samantha and The Great Big Lie. How to get shanked doing what people… | by John C. Welch | Medium
        </title>
        <meta data-rh="true" name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1" />
        <meta data-rh="true" name="theme-color" content="#000000" />
        <meta data-rh="true" name="twitter:app:name:iphone" content="Medium" />
        <meta data-rh="true" name="twitter:app:id:iphone" content="828256236" />
        <meta data-rh="true" property="al:ios:app_name" content="Medium" />
        <meta data-rh="true" property="al:ios:app_store_id" content="828256236" />
        <meta data-rh="true" property="al:android:package" content="com.medium.reader" />
        <meta data-rh="true" property="fb:app_id" content="542599432471018" />
        <meta data-rh="true" property="og:site_name" content="Medium" />
        <meta data-rh="true" property="og:type" content="article" />
        <meta data-rh="true" property="article:published_time" content="2015-12-11T14:28:34.438Z" />
        <meta data-rh="true" name="title" content="Samantha and The Great Big Lie. How to get shanked doing what people… | by John C. Welch | Medium" />
        <meta data-rh="true" property="og:title" content="Samantha and The Great Big Lie" />
        <meta data-rh="true" property="twitter:title" content="Samantha and The Great Big Lie" />
        <meta data-rh="true" name="twitter:site" content="@Medium" />
        <meta data-rh="true" name="twitter:app:url:iphone" content="medium://p/d146a92473a1" />
        <meta data-rh="true" property="al:android:url" content="medium://p/d146a92473a1" />
        <meta data-rh="true" property="al:ios:url" content="medium://p/d146a92473a1" />
        <meta data-rh="true" property="al:android:app_name" content="Medium" />
        <meta data-rh="true" name="description" content="(EDIT: removed the link to Samantha’s post, because the arments and the grubers and the rest of The Deck Clique got what they wanted: a non-proper person driven off the internet lightly capped with a…" />
        <meta data-rh="true" property="og:description" content="How to get shanked doing what people say they want" />
        <meta data-rh="true" property="twitter:description" content="How to get shanked doing what people say they want" />
        <meta data-rh="true" property="og:url" content="https://medium.com/@johncwelch/samantha-and-the-great-big-lie-d146a92473a1" />
        <meta data-rh="true" property="al:web:url" content="https://medium.com/@johncwelch/samantha-and-the-great-big-lie-d146a92473a1" />
        <meta data-rh="true" property="og:image" content="https://miro.medium.com/max/398/1*kbPh7V97eyRodSOw2-ALDw.png" />
        <meta data-rh="true" name="twitter:image:src" content="https://miro.medium.com/max/398/1*kbPh7V97eyRodSOw2-ALDw.png" />
        <meta data-rh="true" name="twitter:card" content="summary_large_image" />
        <meta data-rh="true" property="article:author" content="https://medium.com/@johncwelch" />
        <meta data-rh="true" name="author" content="John C. Welch" />
        <meta data-rh="true" name="robots" content="index,follow,max-image-preview:large" />
        <meta data-rh="true" name="referrer" content="unsafe-url" />
        <meta data-rh="true" name="twitter:label1" value="Reading time" />
        <meta data-rh="true" name="twitter:data1" value="18 min read" />
        <meta data-rh="true" name="parsely-post-id" content="d146a92473a1" />
        <link data-rh="true" rel="search" type="application/opensearchdescription+xml" title="Medium" href="/osd.xml" />
        <link data-rh="true" rel="apple-touch-icon" sizes="152x152" href="https://cdn-images-1.medium.com/fit/c/152/152/1*8I-HPL0bfoIzGied-dzOvA.png" />
        <link data-rh="true" rel="apple-touch-icon" sizes="120x120" href="https://cdn-images-1.medium.com/fit/c/120/120/1*8I-HPL0bfoIzGied-dzOvA.png" />
        <link data-rh="true" rel="apple-touch-icon" sizes="76x76" href="https://cdn-images-1.medium.com/fit/c/76/76/1*8I-HPL0bfoIzGied-dzOvA.png" />
        <link data-rh="true" rel="apple-touch-icon" sizes="60x60" href="https://cdn-images-1.medium.com/fit/c/60/60/1*8I-HPL0bfoIzGied-dzOvA.png" />
        <link data-rh="true" rel="mask-icon" href="https://cdn-static-1.medium.com/_/fp/icons/monogram-mask.KPLCSFEZviQN0jQ7veN2RQ.svg" color="#171717" />
        <link data-rh="true" id="glyph_link" rel="stylesheet" type="text/css" href="https://glyph.medium.com/css/e/sr/latin/e/ssr/latin/e/ssb/latin/m2.css" />
        <link data-rh="true" rel="author" href="https://medium.com/@johncwelch" />
        <link data-rh="true" rel="canonical" href="https://medium.com/@johncwelch/samantha-and-the-great-big-lie-d146a92473a1" />
        <link data-rh="true" rel="alternate" href="android-app://com.medium.reader/https/medium.com/p/d146a92473a1" />
        <link data-rh="true" rel="icon" href="https://cdn-static-1.medium.com/_/fp/icons/favicon-rebrand-medium.3Y6xpZ-0FSdWDnPM3hSBIA.ico" />
        <script data-rh="true" type="application/ld+json">
        <![CDATA[
        {"@context":"http:\u002F\u002Fschema.org","@type":"NewsArticle","image":["https:\u002F\u002Fmiro.medium.com\u002Fmax\u002F1200\u002F1*kbPh7V97eyRodSOw2-ALDw.png"],"url":"https:\u002F\u002Fmedium.com\u002F@johncwelch\u002Fsamantha-and-the-great-big-lie-d146a92473a1","dateCreated":"2015-10-15T02:19:15.607Z","datePublished":"2015-10-15T02:19:15.607Z","dateModified":"2018-04-22T22:24:24.777Z","headline":"Samantha and The Great Big Lie - John C. Welch - Medium","name":"Samantha and The Great Big Lie - John C. Welch - Medium","description":"(EDIT: removed the link to Samantha’s post, because the arments and the grubers and the rest of The Deck Clique got what they wanted: a non-proper person driven off the internet lightly capped with a…","identifier":"d146a92473a1","keywords":["Lite:true","Elevated:false","LockedPostSource:LOCKED_POST_SOURCE_NONE","LayerCake:0"],"author":{"@type":"Person","name":"John C. Welch","url":"https:\u002F\u002Fmedium.com\u002F@johncwelch"},"creator":["John C. Welch"],"publisher":{"@type":"Organization","name":"Medium","url":"https:\u002F\u002Fmedium.com\u002F","logo":{"@type":"ImageObject","width":308,"height":60,"url":"https:\u002F\u002Fmiro.medium.com\u002Fmax\u002F616\u002F1*OMF3fSqH8t4xBJ9-6oZDZw.png"}},"mainEntityOfPage":"https:\u002F\u002Fmedium.com\u002F@johncwelch\u002Fsamantha-and-the-great-big-lie-d146a92473a1"}
        ]]>
        </script>
        <script data-rh="true">
        <![CDATA[
        (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
        (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
        m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
        })(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
        ga('create', 'UA-24232453-2', 'auto');
        ga('send', 'pageview');
        ]]>
        </script>
        <link rel="preload" href="https://cdn.optimizely.com/js/16180790160.js" as="script" />
        <style type="text/css" data-fela-rehydration="494" data-fela-type="STATIC">
        /*<![CDATA[*/
        html{box-sizing:border-box}*, *:before, *:after{box-sizing:inherit}body{margin:0;padding:0;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;color:rgba(0,0,0,0.8);position:relative;min-height:100vh}h1, h2, h3, h4, h5, h6, dl, dd, ol, ul, menu, figure, blockquote, p, pre, form{margin:0}menu, ol, ul{padding:0;list-style:none;list-style-image:none}main{display:block}a{color:inherit;text-decoration:none}a, button, input{-webkit-tap-highlight-color:transparent}img, svg{vertical-align:middle}button{background:transparent;overflow:visible}button, input, optgroup, select, textarea{margin:0}
        /*]]>*/
        </style>
        <style type="text/css" data-fela-rehydration="494" data-fela-type="KEYFRAME">
        /*<![CDATA[*/
        @-webkit-keyframes k1{0%{opacity:0.8}50%{opacity:0.5}100%{opacity:0.8}}@-moz-keyframes k1{0%{opacity:0.8}50%{opacity:0.5}100%{opacity:0.8}}@keyframes k1{0%{opacity:0.8}50%{opacity:0.5}100%{opacity:0.8}}
        /*]]>*/
        </style>
        <style type="text/css" data-fela-rehydration="494" data-fela-type="RULE">
        /*<![CDATA[*/
        .a{font-family:medium-content-sans-serif-font, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif}.b{font-weight:400}.c{background-color:rgba(255, 255, 255, 1)}.l{height:100vh}.m{width:100vw}.n{display:flex}.o{align-items:center}.p{justify-content:center}.q{fill:rgba(41, 41, 41, 1)}.r{display:block}.s{position:absolute}.t{top:0}.u{left:0}.v{right:0}.w{z-index:500}.x{box-shadow:0 4px 12px 0 rgba(0, 0, 0, 0.05)}.ag{max-width:1192px}.ah{min-width:0}.ai{width:100%}.aj{height:65px}.am{flex:1 0 auto}.an{display:none}.ap{visibility:hidden}.aq{margin-left:16px}.ar{color:rgba(2, 158, 116, 1)}.as{fill:rgba(3, 168, 124, 1)}.at{font-size:inherit}.au{border:inherit}.av{font-family:inherit}.aw{letter-spacing:inherit}.ax{font-weight:inherit}.ay{padding:0}.az{margin:0}.ba:hover{cursor:pointer}.bb:hover{color:rgba(1, 143, 105, 1)}.bc:hover{fill:rgba(2, 158, 116, 1)}.bd:disabled{cursor:default}.be:disabled{color:rgba(45, 132, 255, 0.5)}.bf:disabled{fill:rgba(45, 132, 255, 0.5)}.bg{flex:0 0 auto}.bh{color:inherit}.bi{fill:inherit}.bj:hover{color:rgba(25, 25, 25, 1)}.bk:hover{fill:rgba(25, 25, 25, 1)}.bl:disabled{color:rgba(117, 117, 117, 1)}.bm:disabled{fill:rgba(117, 117, 117, 1)}.bn{font-family:medium-content-sans-serif-font, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Arial, sans-serif}.bo{font-style:normal}.bp{line-height:20px}.bq{font-size:15.8px}.br{letter-spacing:0px}.bs{color:rgba(117, 117, 117, 1)}.bt{fill:rgba(117, 117, 117, 1)}.bu{margin-bottom:0px}.bw{top:0px}.bx{left:0px}.by{height:100%}.bz{position:fixed}.ca{background-color:rgba(0, 0, 0, 0.08)}.cb{z-index:510}.cc{cursor:pointer}.cd{opacity:0}.ce{transition:opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1) 0s}.cf{pointer-events:none}.cg{width:414px}.ch{z-index:520}.ci{background-color:white}.cj{left:100%}.ck{box-sizing:border-box}.cl{overflow:auto}.cm{-ms-overflow-style:-ms-autohiding-scrollbar}.cn{box-shadow:rgba(0, 0, 0, 0.15) 0px 4px 12px}.co{opacity:1}.cp{transform:translateX(0px)}.cq{transition:transform 0.6s cubic-bezier(0.23, 1, 0.32, 1) 0s, opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1) 0s}.cx{padding-bottom:18px}.cy{padding:24px}.cz{flex-direction:row}.da{justify-content:space-between}.db{font-weight:600}.dc{font-size:22px}.dd{line-height:28px}.de{color:rgba(41, 41, 41, 1)}.df{position:relative}.dg{right:-7px}.dh{padding:0 24px}.di{animation:k1 1.2s ease-in-out infinite}.dj{padding:32px 0}.dk{border-radius:100%}.dl{height:32px}.dm{width:32px}.dn{background-color:rgba(242, 242, 242, 1)}.do{margin-left:8px}.dp{margin-top:4px}.dq{margin-bottom:8px}.dr{height:8px}.ds{width:120px}.dt{width:80px}.du{margin-top:12px}.dv{height:10px}.dw{width:90%}.dx{padding-left:24px}.dy{padding-right:24px}.dz{margin-left:auto}.ea{margin-right:auto}.eb{max-width:728px}.ec{top:calc(100vh + 100px)}.ed{bottom:calc(100vh + 100px)}.ee{width:10px}.ef{word-break:break-word}.eg{word-wrap:break-word}.eh:after{display:block}.ei:after{content:""}.ej:after{clear:both}.ek{max-width:680px}.el{line-height:1.23}.em{letter-spacing:0}.en{font-family:medium-content-title-font, Georgia, Cambria, "Times New Roman", Times, serif}.fd{margin-bottom:-0.27em}.fe{margin-top:32px}.fi{border-radius:50%}.fj{height:48px}.fk{width:48px}.fl{margin-left:12px}.fm{margin-bottom:2px}.fo{font-weight:300}.fp{font-size:16px}.fq{overflow:hidden}.fr{max-height:20px}.fs{text-overflow:ellipsis}.ft{display:-webkit-box}.fu{-webkit-line-clamp:1}.fv{-webkit-box-orient:vertical}.fw:hover{text-decoration:underline}.fx{padding:0px 8px}.fy{background:0}.fz{border-color:rgba(117, 117, 117, 1)}.ga:hover{color:rgba(8, 8, 8, 1)}.gb:hover{fill:rgba(8, 8, 8, 1)}.gc:hover{border-color:rgba(41, 41, 41, 1)}.gd:disabled{fill:rgba(61, 61, 61, 1)}.ge:disabled{border-color:rgba(204, 204, 204, 1)}.gf:disabled{cursor:inherit}.gg:disabled:hover{color:rgba(117, 117, 117, 1)}.gh:disabled:hover{fill:rgba(61, 61, 61, 1)}.gi:disabled:hover{border-color:rgba(204, 204, 204, 1)}.gj{border-radius:4px}.gk{line-height:18px}.gl{font-size:15px}.gm{border-width:1px}.gn{border-style:solid}.go{display:inline-block}.gp{text-decoration:none}.gq{align-items:flex-end}.gy{padding-right:6px}.gz{margin-right:8px}.ha{margin-right:-6px}.hb{line-height:1.58}.hc{letter-spacing:-0.004em}.hd{font-family:medium-content-serif-font, Georgia, Cambria, "Times New Roman", Times, serif}.hy{margin-bottom:-0.46em}.hz{box-shadow:inset 3px 0 0 0 rgba(41, 41, 41, 1)}.ia{padding-left:23px}.ib{margin-left:-20px}.ic{font-style:italic}.id{font-family:medium-content-slab-serif-font, Georgia, Cambria, "Times New Roman", Times, serif}.ie{font-size:28px}.if{color:rgba(8, 8, 8, 1)}.ig{border:none}.ih{margin-top:30px}.ii{text-align:center}.ij:before{content:"..."}.ik:before{letter-spacing:0.6em}.il:before{text-indent:0.6em}.im:before{font-style:italic}.in:before{line-height:1.4}.io{list-style-type:decimal}.ip{margin-left:30px}.iq{padding-left:0px}.ir{background-repeat:repeat-x}.is{background-image:linear-gradient(to right,rgba(41, 41, 41, 1) 100%,rgba(41, 41, 41, 1) 0);background-image:url('data:image/svg+xml;utf8,<svg preserveAspectRatio="none" viewBox="0 0 1 1" xmlns="http://www.w3.org/2000/svg"><line x1="0" y1="0" x2="1" y2="1" stroke="rgba(41, 41, 41, 1)" /></svg>')}.it{background-size:1px 1px}.iu{background-position:0 1.05em;background-position:0 calc(1em + 1px)}.ja{max-width:398px}.jg{clear:both}.jh{transition:opacity 100ms 400ms}.ji{will-change:transform}.jj{transform:translateZ(0)}.jk{margin:auto}.jl{padding-bottom:136.18090452261305%}.jm{height:0}.jn{filter:blur(20px)}.jo{transform:scale(1.1)}.jp{visibility:visible}.jq{max-width:694px}.jr{padding-bottom:111.09510086455332%}.js{max-width:308px}.jt{padding-bottom:87.33766233766235%}.ju{will-change:opacity}.jv{width:188px}.jw{left:50%}.jx{transform:translateX(406px)}.jy{top:calc(65px + 54px + 14px)}.kb{top:159px}.kd{width:131px}.ke{flex-direction:column}.kf{padding-top:28px}.kg{margin-bottom:19px}.kh{margin-left:-3px}.kn{outline:0}.ko{border:0}.kp{user-select:none}.kq> svg{pointer-events:none}.kr:active{border-style:none}.ks{-webkit-user-select:none}.kt:focus{fill:rgba(117, 117, 117, 1)}.ku:hover{fill:rgba(117, 117, 117, 1)}.lc button{text-align:left}.ld{opacity:0.4}.le{cursor:not-allowed}.lf{padding-right:9px}.lo{margin-top:40px}.lp{flex-wrap:wrap}.lq{margin-top:25px}.lr{max-width:155px}.lv{top:1px}.ly{align-items:flex-start}.mk{margin-left:-1px}.ml{margin-left:-4px}.mt{padding-right:8px}.mu{padding-top:32px}.mv{border-top:1px solid rgba(230, 230, 230, 1)}.mw{margin-bottom:25px}.my{margin-bottom:32px}.mz{min-height:80px}.ne{height:80px}.nf{padding-left:102px}.nh{font-size:14px}.ni{letter-spacing:0.05em}.nj{text-transform:uppercase}.nk{margin-bottom:6px}.nl{font-size:26px}.nm{line-height:32px}.nn{padding:4px 12px}.no{max-width:555px}.np{max-width:450px}.nq{font-size:18px}.nr{line-height:24px}.nt{padding-top:24px}.nu{margin-top:5px}.nv{height:40px}.nw{width:40px}.nx{font-size:12px}.ny{line-height:15px}.nz{line-height:22px}.oa{padding-top:8px}.ob{padding-top:25px}.od{margin-top:64px}.oe{background-color:rgba(250, 250, 250, 1)}.of{margin-bottom:40px}.og{margin-top:24px}.oh{padding-bottom:16px}.oi{border-bottom:1px solid rgba(230, 230, 230, 1)}.oj{margin-bottom:24px}.qa{flex-grow:0}.qb{padding-bottom:24px}.qc{max-width:500px}.qd{flex:0 1 auto}.qh{padding-bottom:8px}.qu{padding-bottom:100%}.rf{padding:60px 0}.rg{background-color:rgba(0, 0, 0, 0.9)}.ri{padding-bottom:48px}.rj{border-bottom:1px solid rgba(255, 255, 255, 0.54)}.rk{margin:0 -12px}.rl{margin:0 12px}.rm{flex:1 1 0}.rn:hover{color:rgba(255, 255, 255, 0.99)}.ro:hover{fill:rgba(255, 255, 255, 0.99)}.rp:disabled{color:rgba(255, 255, 255, 0.7)}.rq:disabled{fill:rgba(255, 255, 255, 0.7)}.rr{color:rgba(255, 255, 255, 0.98)}.rs{color:rgba(255, 255, 255, 0.7)}.rt{text-decoration:underline}.ru{fill:rgba(255, 255, 255, 0.98)}.rv{width:200px}.sa{margin-right:16px}
        /*]]>*/
        </style>
        <style type="text/css" data-fela-rehydration="494" data-fela-type="RULE" media="all and (min-width: 1080px)">
        /*<![CDATA[*/
        .d{display:none}.af{margin:0 64px}.fa{font-size:40px}.fb{margin-top:0.78em}.fc{line-height:48px}.gx{margin-left:30px}.hu{font-size:21px}.hv{margin-top:2em}.hw{line-height:32px}.hx{letter-spacing:-0.003em}.iz{margin-top:1.05em}.jf{margin-top:56px}.km{margin-right:5px}.lb{margin-top:5px}.ln{padding-left:6px}.lx{display:inline-block}.md{margin-left:7px}.me{margin-top:8px}.mj{width:25px}.mr{padding-left:7px}.ms{top:3px}.oq{font-size:26px}.pd{width:calc(100% + 32px)}.pe{margin-left:-16px}.pf{margin-right:-16px}.pw{padding-left:16px}.px{padding-right:16px}.py{flex-basis:25%}.pz{max-width:25%}.qq{font-size:18px}.qr{line-height:22px}.rd{min-width:70px}.re{min-height:70px}
        /*]]>*/
        </style>
        <style type="text/css" data-fela-rehydration="494" data-fela-type="RULE" media="all and (max-width: 1079.98px)">
        /*<![CDATA[*/
        .e{display:none}.gw{margin-left:30px}.kl{margin-right:5px}.la{margin-top:5px}.lm{padding-left:6px}.lw{display:inline-block}.mb{margin-left:7px}.mc{margin-top:8px}.mi{width:25px}.mp{padding-left:7px}.mq{top:3px}
        /*]]>*/
        </style>
        <style type="text/css" data-fela-rehydration="494" data-fela-type="RULE" media="all and (max-width: 903.98px)">
        /*<![CDATA[*/
        .f{display:none}.gv{margin-left:30px}.kk{margin-right:5px}.kz{margin-top:5px}.lk{padding-left:6px}.ll{top:3px}.lu{display:inline-block}.lz{margin-left:7px}.ma{margin-top:8px}.mh{width:15px}.mo{padding-left:3px}.qg{margin-right:16px}
        /*]]>*/
        </style>
        <style type="text/css" data-fela-rehydration="494" data-fela-type="RULE" media="all and (max-width: 727.98px)">
        /*<![CDATA[*/
        .g{display:none}.ak{height:56px}.al{display:flex}.ao{display:block}.bv{margin-bottom:0px}.cr{left:0}.cs{width:100%}.ct{border-top-left-radius:20px}.cu{border-top-right-radius:20px}.cv{transform:translateY(100%)}.cw{-webkit-overflow-scrolling:touch}.fg{margin-top:32px}.fh{flex-direction:column-reverse}.gt{margin-bottom:30px}.gu{margin-left:0px}.kj{margin-left:8px}.kx{margin-top:2px}.ky{margin-right:8px}.li{padding-left:6px}.lj{top:3px}.lt{display:inline-block}.mg{width:15px}.mn{padding-left:3px}.mx{padding-top:0}.na{margin-bottom:24px}.nb{align-items:center}.nc{width:102px}.nd{position:relative}.ng{padding-left:0}.ns{margin-top:24px}.oc{border-top:none}.ok{padding-bottom:12px}.ol{margin-top:16px}.qf{margin-right:16px}.qs{margin-left:16px}.qt{margin-right:0px}.rh{padding:32px 0}.rw{width:140px}.rx{margin-bottom:16px}.ry{margin-top:30px}.rz{flex-direction:row}
        /*]]>*/
        </style>
        <style type="text/css" data-fela-rehydration="494" data-fela-type="RULE" media="all and (max-width: 551.98px)">
        /*<![CDATA[*/
        .h{display:none}.z{margin:0 24px}.eo{font-size:34px}.ep{margin-top:0.56em}.eq{line-height:42px}.ff{margin-top:32px}.fn{margin-bottom:0px}.gr{margin-bottom:30px}.gs{margin-left:0px}.he{font-size:18px}.hf{margin-top:1.56em}.hg{line-height:28px}.hh{letter-spacing:-0.003em}.iv{margin-top:1.34em}.jb{margin-top:40px}.ki{margin-left:8px}.kv{margin-top:2px}.kw{margin-right:8px}.lg{padding-left:6px}.lh{top:3px}.ls{display:inline-block}.mf{width:15px}.mm{padding-left:3px}.om{font-size:22px}.or{width:calc(100% + 24px)}.os{margin-left:-12px}.ot{margin-right:-12px}.pg{padding-left:12px}.ph{padding-right:12px}.pi{flex-basis:100%}.pj{max-width:100%}.qe{margin-right:16px}.qi{font-size:15px}.qj{line-height:18px}.qv{min-width:48px}.qw{min-height:48px}
        /*]]>*/
        </style>
        <style type="text/css" data-fela-rehydration="494" data-fela-type="RULE" media="all and (min-width: 904px) and (max-width: 1079.98px)">
        /*<![CDATA[*/
        .i{display:none}.ae{margin:0 64px}.ex{font-size:40px}.ey{margin-top:0.78em}.ez{line-height:48px}.hq{font-size:21px}.hr{margin-top:2em}.hs{line-height:32px}.ht{letter-spacing:-0.003em}.iy{margin-top:1.05em}.je{margin-top:56px}.op{font-size:26px}.pa{width:calc(100% + 32px)}.pb{margin-left:-16px}.pc{margin-right:-16px}.ps{padding-left:16px}.pt{padding-right:16px}.pu{flex-basis:25%}.pv{max-width:25%}.qo{font-size:18px}.qp{line-height:22px}.rb{min-width:70px}.rc{min-height:70px}
        /*]]>*/
        </style>
        <style type="text/css" data-fela-rehydration="494" data-fela-type="RULE" media="all and (min-width: 728px) and (max-width: 903.98px)">
        /*<![CDATA[*/
        .j{display:none}.ac{margin:0 48px}.eu{font-size:40px}.ev{margin-top:0.78em}.ew{line-height:48px}.hm{font-size:21px}.hn{margin-top:2em}.ho{line-height:32px}.hp{letter-spacing:-0.003em}.ix{margin-top:1.05em}.jd{margin-top:56px}.oo{font-size:26px}.ox{width:calc(100% + 28px)}.oy{margin-left:-14px}.oz{margin-right:-14px}.po{padding-left:14px}.pp{padding-right:14px}.pq{flex-basis:50%}.pr{max-width:50%}.qm{font-size:15px}.qn{line-height:18px}.qz{min-width:48px}.ra{min-height:48px}
        /*]]>*/
        </style>
        <style type="text/css" data-fela-rehydration="494" data-fela-type="RULE" media="all and (min-width: 552px) and (max-width: 727.98px)">
        /*<![CDATA[*/
        .k{display:none}.ab{margin:0 24px}.er{font-size:34px}.es{margin-top:0.56em}.et{line-height:42px}.hi{font-size:18px}.hj{margin-top:1.56em}.hk{line-height:28px}.hl{letter-spacing:-0.003em}.iw{margin-top:1.34em}.jc{margin-top:40px}.on{font-size:22px}.ou{width:calc(100% + 24px)}.ov{margin-left:-12px}.ow{margin-right:-12px}.pk{padding-left:12px}.pl{padding-right:12px}.pm{flex-basis:100%}.pn{max-width:100%}.qk{font-size:15px}.ql{line-height:18px}.qx{min-width:48px}.qy{min-height:48px}
        /*]]>*/
        </style>
        <style type="text/css" data-fela-rehydration="494" data-fela-type="RULE" media="print">
        /*<![CDATA[*/
        .y{display:none}
        /*]]>*/
        </style>
        <style type="text/css" data-fela-rehydration="494" data-fela-type="RULE" media="(prefers-reduced-motion: no-preference)">
        /*<![CDATA[*/
        .jz{transition:opacity 200ms}
        /*]]>*/
        </style>
        <style type="text/css" data-fela-rehydration="494" data-fela-type="RULE" media="all and (max-width: 1230px)">
        /*<![CDATA[*/
        .ka{display:none}
        /*]]>*/
        </style>
        <style type="text/css" data-fela-rehydration="494" data-fela-type="RULE" media="all and (max-width: 1198px)">
        /*<![CDATA[*/
        .kc{display:none}
        /*]]>*/
        </style>
    </head>
    <body>
        <div id="root">
            <div class="a b c">
                <div class="d e f g h i j k"></div>
                <script>
                <![CDATA[
                document.domain = document.domain;
                ]]>
                </script>
                <div>
                    <script>
                    <![CDATA[
                    if (window.self !== window.top) window.location = "about:blank"
                    ]]>
                    </script>
                </div>
                <script>
                <![CDATA[
                window.PARSELY = window.PARSELY || {autotrack: false}
                ]]>
                </script>
                <nav class="r s t u v c w x y">
                    <div>
                        <div class="n p">
                            <div class="z ab ac ae af ag ah ai">
                                <div class="aj n o ak al">
                                    <div class="r am w">
                                        <div class="n o">
                                            <a aria-label="Homepage" rel="noopener" href="/?source=post_page-----d146a92473a1----------------------">
                                            <div class="an g">
                                                <svg height="22" width="112" viewbox="0 0 111.5 22" class="q">
                                                <path d="M56.3 19.5c0 .4 0 .5.3.7l1.5 1.4v.1h-6.5V19c-.7 1.8-2.4 3-4.3 3-3.3 0-5.8-2.6-5.8-7.5 0-4.5 2.6-7.6 6.3-7.6 1.6-.1 3.1.8 3.8 2.4V3.2c0-.3-.1-.6-.3-.7l-1.4-1.4V1l6.5-.8v19.3zm-4.8-.8V9.5c-.5-.6-1.2-.9-1.9-.9-1.6 0-3.1 1.4-3.1 5.7 0 4 1.3 5.4 3 5.4.8.1 1.6-.3 2-1zm9.1 3.1V9.4c0-.3-.1-.6-.3-.7l-1.4-1.5v-.1h6.5v12.5c0 .4 0 .5.3.7l1.4 1.4v.1h-6.5zm-.2-19.2C60.4 1.2 61.5 0 63 0c1.4 0 2.6 1.2 2.6 2.6S64.4 5.3 63 5.3a2.6 2.6 0 0 1-2.6-2.7zm22.5 16.9c0 .4 0 .5.3.7l1.5 1.4v.1h-6.5v-3.2c-.6 2-2.4 3.4-4.5 3.4-2.9 0-4.4-2.1-4.4-6.2 0-1.9 0-4.1.1-6.5 0-.3-.1-.5-.3-.7L67.7 7v.1H74v8c0 2.6.4 4.4 2 4.4.9-.1 1.7-.6 2.1-1.3V9.5c0-.3-.1-.6-.3-.7l-1.4-1.5v-.2h6.5v12.4zm22 2.3c0-.5.1-6.5.1-7.9 0-2.6-.4-4.5-2.2-4.5-.9 0-1.8.5-2.3 1.3.2.8.3 1.7.3 2.5 0 1.8-.1 4.2-.1 6.5 0 .3.1.5.3.7l1.5 1.4v.1H96c0-.4.1-6.5.1-7.9 0-2.7-.4-4.5-2.2-4.5-.9 0-1.7.5-2.2 1.3v9c0 .4 0 .5.3.7l1.4 1.4v.1h-6.5V9.5c0-.3-.1-.6-.3-.7l-1.4-1.5v-.2h6.5v3.1a4.6 4.6 0 0 1 4.6-3.4c2.2 0 3.6 1.2 4.2 3.5.7-2.1 2.7-3.6 4.9-3.5 2.9 0 4.5 2.2 4.5 6.2 0 1.9-.1 4.2-.1 6.5-.1.3.1.6.3.7l1.4 1.4v.1h-6.6zm-81.4-2l1.9 1.9v.1h-9.8v-.1l2-1.9c.2-.2.3-.4.3-.7V7.3c0-.5 0-1.2.1-1.8L11.4 22h-.1L4.5 6.8c-.1-.4-.2-.4-.3-.6v10c-.1.7 0 1.3.3 1.9l2.7 3.6v.1H0v-.1L2.7 18c.3-.6.4-1.3.3-1.9v-11c0-.5-.1-1.1-.5-1.5L.7 1.1V1h7l5.8 12.9L18.6 1h6.8v.1l-1.9 2.2c-.2.2-.3.5-.3.7v15.2c0 .2.1.5.3.6zm7.6-5.9c0 3.8 1.9 5.3 4.2 5.3 1.9.1 3.6-1 4.4-2.7h.1c-.8 3.7-3.1 5.5-6.5 5.5-3.7 0-7.2-2.2-7.2-7.4 0-5.5 3.5-7.6 7.3-7.6 3.1 0 6.4 1.5 6.4 6.2v.8h-8.7zm0-.8h4.3v-.8c0-3.9-.8-4.9-2-4.9-1.4.1-2.3 1.6-2.3 5.7z"></path></svg>
                                            </div>
                                            <div class="r ao">
                                                <svg width="35" height="35" viewbox="5 5 35 35" class="q">
                                                <path d="M5 40V5h35v35H5zm8.56-12.63c0 .56-.03.69-.32 1.03L10.8 31.4v.4h6.97v-.4L15.3 28.4c-.29-.34-.34-.5-.34-1.03v-8.95l6.13 13.36h.71l5.26-13.36v10.64c0 .3 0 .35-.19.53l-1.85 1.8v.4h9.2v-.4l-1.83-1.8c-.18-.18-.2-.24-.2-.53V15.94c0-.3.02-.35.2-.53l1.82-1.8v-.4h-6.47l-4.62 11.55-5.2-11.54h-6.8v.4l2.15 2.63c.24.3.29.37.29.77v10.35z"></path></svg>
                                            </div></a>
                                            <div class="an g">
                                                <div class="ap" id="lo-general-navbar-open-in-app-button">
                                                    <div class="aq an ao">
                                                        <a href="https://rsci.app.link/?%24canonical_url=https%3A%2F%2Fmedium.com%2Fp%2Fd146a92473a1&amp;~feature=LoOpenInAppButton&amp;~channel=ShowPostUnderUser&amp;~stage=mobileNavBar&amp;source=post_page-----d146a92473a1----------------------" class="ar as at au av aw ax ay az ba bb bc bd be bf" rel="noopener nofollow">Open in app</a>
                                                    </div>
                                                </div>
                                            </div>
                                        </div>
                                    </div>
                                    <div class="r bg w">
                                        <div class="n o">
                                            <div class="n g">
                                                <div class="ap" id="lo-post-page-navbar-upsell-button">
                                                    <div>
                                                        <a href="https://medium.com/membership?source=upgrade_membership---nav_full------------------------" class="bh bi at au av aw ax ay az ba bj bk bd bl bm" rel="noopener"><span class="bn b bo bp bq br r bs bt">Become a member</span></a>
                                                    </div>
                                                </div>
                                                <div class="ap" id="lo-post-page-navbar-sign-in-link">
                                                    <div class="aq r">
                                                        <span class="bn b bo bp bq br r bs bt"><span><a href="https://medium.com/m/signin?operation=login&amp;redirect=https%3A%2F%2Fmedium.com%2F%40johncwelch%2Fsamantha-and-the-great-big-lie-d146a92473a1&amp;source=--------------------------nav_reg-" class="ar as at au av aw ax ay az ba bb bc bd be bf" rel="noopener">Sign in</a></span></span>
                                                    </div>
                                                </div>
                                            </div>
                                        </div>
                                    </div>
                                </div>
                            </div>
                        </div>
                    </div>
                </nav>
                <div class="bu aj r bv ak"></div>
                <div class="r y">
                    <div class="bw bx ai by bz ca cb cc cd ce cf" aria-hidden="true"></div>
                    <div class="cg bz ch ci cj bw by ck cl cm cn co cp cq cr cs ct cu cv cw" aria-hidden="true">
                        <div class="cx cy n o cz da">
                            <h2 class="bn db dc dd de">
                                Responses
                            </h2>
                            <div class="n cz">
                                <div class="r df dg">
                                    <div class="az r df v">
                                        <span class="bn b bo bp bq br r bs bt"><button class="bh bi at au av aw ax ay az ba bj bk bd bl bm" data-testid="close-button" aria-label="close"><svg width="25" height="25" viewbox="0 0 25 25">
                                        <path d="M18.13 6.11l-5.61 5.61-5.6-5.61-.81.8 5.61 5.61-5.61 5.61.8.8 5.61-5.6 5.61 5.6.8-.8-5.6-5.6 5.6-5.62"></path></svg></button></span>
                                    </div>
                                </div>
                            </div>
                        </div>
                        <div class="dh r">
                            <div class="di dj">
                                <div class="n cz">
                                    <div class="dk dl dm r dn"></div>
                                    <div class="do dp r">
                                        <div class="dq dr ds r dn"></div>
                                        <div class="dr dt r dn"></div>
                                    </div>
                                </div>
                                <div class="du r">
                                    <div class="dq dv ai r dn"></div>
                                    <div class="dq dv ai r dn"></div>
                                    <div class="dv dw r dn"></div>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
                <article>
                    <section class="dx dy dz ea ai eb ck r"></section>
                    <div>
                        <div class="s u ec ed ee cf"></div>
                        <section class="ef eg eh ei ej">
                            <div class="n p">
                                <div class="z ab ac ae af ek ah ai">
                                    <div>
                                        <h1 id="b34c" class="el em bo en b eo ep eq er es et eu ev ew ex ey ez fa fb fc fd de">
                                            Samantha and The Great Big Lie
                                        </h1>
                                        <div class="fe">
                                            <div class="n da ff fg fh">
                                                <div class="o n">
                                                    <div>
                                                        <a rel="noopener" href="/@johncwelch?source=post_page-----d146a92473a1----------------------"><img alt="John C. Welch" class="r fi fj fk" src="https://miro.medium.com/fit/c/96/96/0*qPHQu8WqsC6cV_ud.jpg" width="48" height="48" /></a>
                                                    </div>
                                                    <div class="fl ai r">
                                                        <div class="n">
                                                            <div style="flex:1">
                                                                <div class="fm n o fn">
                                                                    <span class="bn b bo bp bq br r de q"><span class="bn fo fp bp fq fr fs ft fu fv de"><a class="bh bi at au av aw ax ay az ba fw bd bl bm" rel="noopener" href="/@johncwelch?source=post_page-----d146a92473a1----------------------">John C. Welch</a></span></span>
                                                                    <div class="do r bg h">
                                                                        <span><button class="fx de q fy fz ga gb gc ba bl gd ge gf gg gh gi gj bn b bo gk gl br gm gn ck go gp">Follow</button></span>
                                                                    </div>
                                                                </div>
                                                            </div>
                                                        </div>
                                                        <div>
                                                            <span class="bn b bo bp bq br r bs bt"><a class="bh bi at au av aw ax ay az ba fw bd bl bm" rel="noopener" href="/@johncwelch/samantha-and-the-great-big-lie-d146a92473a1?source=post_page-----d146a92473a1----------------------">Oct 15, 2015</a> <!-- -->·<!-- --> <!-- -->18<!-- --> min read</span>
                                                        </div>
                                                    </div>
                                                </div>
                                                <div class="n gq gr gs gt gu gv gw gx y">
                                                    <div class="n o">
                                                        <div class="gy r bg">
                                                            <button class="bh bi at au av aw ax ay az ba bj bk bd bl bm"><svg width="29" height="29" class="bt">
                                                            <path d="M22.05 7.54a4.47 4.47 0 0 0-3.3-1.46 4.53 4.53 0 0 0-4.53 4.53c0 .35.04.7.08 1.05A12.9 12.9 0 0 1 5 6.89a5.1 5.1 0 0 0-.65 2.26c.03 1.6.83 2.99 2.02 3.79a4.3 4.3 0 0 1-2.02-.57v.08a4.55 4.55 0 0 0 3.63 4.44c-.4.08-.8.13-1.21.16l-.81-.08a4.54 4.54 0 0 0 4.2 3.15 9.56 9.56 0 0 1-5.66 1.94l-1.05-.08c2 1.27 4.38 2.02 6.94 2.02 8.3 0 12.86-6.9 12.84-12.85.02-.24 0-.43 0-.65a8.68 8.68 0 0 0 2.26-2.34c-.82.38-1.7.62-2.6.72a4.37 4.37 0 0 0 1.95-2.51c-.84.53-1.81.9-2.83 1.13z"></path></svg></button>
                                                        </div>
                                                        <div class="gy r bg">
                                                            <button class="bh bi at au av aw ax ay az ba bj bk bd bl bm"><svg width="29" height="29" viewbox="0 0 29 29" fill="none" class="bt">
                                                            <path d="M5 6.36C5 5.61 5.63 5 6.4 5h16.2c.77 0 1.4.61 1.4 1.36v16.28c0 .75-.63 1.36-1.4 1.36H6.4c-.77 0-1.4-.6-1.4-1.36V6.36z"></path>
                                                            <path fill-rule="evenodd" clip-rule="evenodd" d="M10.76 20.9v-8.57H7.89v8.58h2.87zm-1.44-9.75c1 0 1.63-.65 1.63-1.48-.02-.84-.62-1.48-1.6-1.48-.99 0-1.63.64-1.63 1.48 0 .83.62 1.48 1.59 1.48h.01zM12.35 20.9h2.87v-4.79c0-.25.02-.5.1-.7.2-.5.67-1.04 1.46-1.04 1.04 0 1.46.8 1.46 1.95v4.59h2.87v-4.92c0-2.64-1.42-3.87-3.3-3.87-1.55 0-2.23.86-2.61 1.45h.02v-1.24h-2.87c.04.8 0 8.58 0 8.58z" fill="#fff"></path></svg></button>
                                                        </div>
                                                        <div class="gy r bg">
                                                            <button class="bh bi at au av aw ax ay az ba bj bk bd bl bm"><svg width="29" height="29" class="bt">
                                                            <path d="M23.2 5H5.8a.8.8 0 0 0-.8.8V23.2c0 .44.35.8.8.8h9.3v-7.13h-2.38V13.9h2.38v-2.38c0-2.45 1.55-3.66 3.74-3.66 1.05 0 1.95.08 2.2.11v2.57h-1.5c-1.2 0-1.48.57-1.48 1.4v1.96h2.97l-.6 2.97h-2.37l.05 7.12h5.1a.8.8 0 0 0 .79-.8V5.8a.8.8 0 0 0-.8-.79"></path></svg></button>
                                                        </div>
                                                        <div class="gz r">
                                                            <div class="bt">
                                                                <span><a href="https://medium.com/m/signin?operation=register&amp;redirect=https%3A%2F%2Fmedium.com%2F%40johncwelch%2Fsamantha-and-the-great-big-lie-d146a92473a1&amp;source=post_actions_header--------------------------bookmark_header-" class="bh bi at au av aw ax ay az ba bj bk bd bl bm" rel="noopener"><svg width="25" height="25" viewbox="0 0 25 25">
                                                                <path d="M19 6a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v14.66h.01c.01.1.05.2.12.28a.5.5 0 0 0 .7.03l5.67-4.12 5.66 4.13a.5.5 0 0 0 .71-.03.5.5 0 0 0 .12-.29H19V6zm-6.84 9.97L7 19.64V6a1 1 0 0 1 1-1h9a1 1 0 0 1 1 1v13.64l-5.16-3.67a.49.49 0 0 0-.68 0z" fill-rule="evenodd"></path></svg></a></span>
                                                            </div>
                                                        </div>
                                                        <div class="ha r am"></div>
                                                    </div>
                                                </div>
                                            </div>
                                        </div>
                                    </div>
                                    <p id="97e7" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        How to get shanked doing what people say they want
                                    </p>
                                    <blockquote class="hz ia ib">
                                        <p id="df70" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            don’t preach to me<br />
                                            Mr. integrity
                                        </p>
                                    </blockquote>
                                    <p id="c979" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        (EDIT: removed the link to Samantha’s post, because the arments and the grubers and the rest of The Deck Clique got what they wanted: a non-proper person driven off the internet lightly capped with a dusting of transphobia along the way, all totally okay because the ends justify the means, and it’s okay when “good” people do it.)
                                    </p>
                                    <p id="342d" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        First, I need to say something about this article: the reason I’m writing it infuriates me. Worse than installing CS 3 or Acrobat 7 ever did, and the former inspired comparisons to fecophile porn. I’m actually too mad to cuss. Well, not completely, but in this case, I don’t think the people I’m mad at are worth the creativity I try to put into profanity. This is about a brownfield of hypocrisy and viciously deliberate mischaracterization that “shame” cannot even come close to the shame those behind it should feel.
                                    </p>
                                    <p id="2e61" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        Now, read this post by Samantha Bielefeld: The Elephant in the Room. First, it is a well-written critical piece that raises a few points in a calm, rational, nonconfrontational fashion, exactly the kind of things the pushers of The Great Big Lie say we need more of, as opposed to the screaming that is the norm in such cases.
                                    </p>
                                    <p id="cd31" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        …sorry, I should explain “The Great Big Lie”. There are several, but in this case, our <em class="ic">specific</em> instance of “The Great Big Lie” is about criticism. Over and over, you hear from the very people I am not going to be nice to in this that we need “better” criticsm. Instead of rage and anger, volume and vitriol, we need in-depth rational criticism, that isn’t personal or ad hominem. That it should focus on points, not people.
                                    </p>
                                    <p id="ae07" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        That, readers, is “The Big Lie”. It is a lie so big that if one ponders the reality of it, as I am going to, one wonders why anyone would believe it. It is a lie and it is one we should stop telling.
                                    </p>
                                </div>
                            </div>
                        </section>
                        <hr class="id fo ie if ig ih ii ij ik il im in" />
                        <section class="ef eg eh ei ej">
                            <div class="n p">
                                <div class="z ab ac ae af ek ah ai">
                                    <p id="a02f" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        Samantha’s points (I assume you read it, for you are smart people who know the importance of such things) are fairly clear:
                                    </p>
                                    <ol class="">
                                        <li id="9213" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy io ip iq de">With the release of Overcast 2.0, a product Samantha actually likes, Marco Arment moved to a <a href="http://www.marco.org/2015/10/09/overcast2" class="bh gp ir is it iu" target="_blank" rel="noopener nofollow">patronage model</a> that will probably be successful for him.
                                        </li>
                                        <li id="dfa5" class="hb hc bo hd b he iv hg hh hi iw hk hl hm ix ho hp hq iy hs ht hu iz hw hx hy io ip iq de">Arment’s insistence that “<a class="bh gp ir is it iu" target="_blank" rel="noopener" href="/@marcoarment/pragmatic-app-pricing-a79fc07218f3">anyone can do this</a>” while technically true, (anyone can in fact, implement this pricing model), also implies that “anyone” can have the kind of success that a developer with Marco’s history, financial status, and deep ties to the Apple News Web is expected to have. This is silly.
                                        </li>
                                        <li id="e55d" class="hb hc bo hd b he iv hg hh hi iw hk hl hm ix ho hp hq iy hs ht hu iz hw hx hy io ip iq de">Marco Arment occupies a fairly unique position in the Apple universe, (gained by hard work and no small talent), and because of that, benefits from a set of privileges that a new developer or even one that has been around for a long time, but isn’t, well, <em class="ic">Marco</em>, not only don’t have, but have little chance of attaining anytime soon.
                                        </li>
                                        <li id="35fb" class="hb hc bo hd b he iv hg hh hi iw hk hl hm ix ho hp hq iy hs ht hu iz hw hx hy io ip iq de">Marco has earned his success and is entitled to the benefits and privileges it brings, but he seems rather blind to all of that, and seems to still imagine himself as “two guys in a garage”. This is just not correct.
                                        </li>
                                        <li id="38e2" class="hb hc bo hd b he iv hg hh hi iw hk hl hm ix ho hp hq iy hs ht hu iz hw hx hy io ip iq de">In addition, the benefits and privileges of the above ensure that by releasing Overcast 2 as a free app, with patronage pricing, he has, if not gutted, severely hurt the ability of folks actually selling their apps for an up-front price of not free to continue doing so. This has the effect of accelerating the “race to the bottom” in the podcast listening app segment, which hurts devs who cannot afford to work on a “I don’t really need this money, so whatever you feel like sending is okay” model.
                                        </li>
                                    </ol>
                                    <p id="0481" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        None of this is incorrect. None of this is an ad hominem attack in any way. It is just pointing out that a developer of Arment’s stature and status lives in a very different world than someone in East Frog Balls, Arkansas trying to make a living off of App sales. Our dev in EFB doesn’t have the main sites on the Apple web falling all over themselves to review their app the way that Arment does. They’re not friends with the people being The Loop, Daring Fireball, SixColors, iMore, The Mac Observer, etc., yadda.
                                    </p>
                                    <p id="5a45" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        So, our hero, in a fit of well-meaning ignorance writes this piece (posted this morning, 14 Oct. 15) and of course, the response and any criticisms are just as reasonable and thoughtful.
                                    </p>
                                    <p id="3bc7" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        If you really believe that, you are the most preciously ignorant person in the world, and can I have your seriously charmed life.
                                    </p>
                                </div>
                            </div>
                        </section>
                        <hr class="id fo ie if ig ih ii ij ik il im in" />
                        <section class="ef eg eh ei ej">
                            <div class="n p">
                                <div class="z ab ac ae af ek ah ai">
                                    <p id="0fb2" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        The response, from all quarters, including Marco, someone who is so sensitive to criticism that the word “useless” is <a href="http://www.marco.org/2011/03/30/here-is-a-tip-for-all-the-non-developers-out" class="bh gp ir is it iu" target="_blank" rel="noopener nofollow">enough to shut him down</a>, who <a href="https://twitter.com/marcoarment/status/641330113934700544" class="bh gp ir is it iu" target="_blank" rel="noopener nofollow">blocked a friend of mine for the high crime of pointing out that his review of podcasting mics centered around higher priced gear and ignored folks without the scratch, who might not be ready for such things</a>, is, in a single word, disgusting. Vomitous even.
                                    </p>
                                    <p id="9a6e" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        It’s an hours-long dogpile that beggars even my imagination, and I can imagine almost anything. Seriously, it’s all there in <a href="https://twitter.com/s_bielefeld/with_replies" class="bh gp ir is it iu" target="_blank" rel="noopener nofollow">Samantha’s Twitter Feed</a>. From what I can tell, she’s understandably shocked over it. I however was not. This one comment in her feed made me smile (warning, this wanders a bit…er…LOT. Twitter timelines are not easy to put together):
                                    </p>
                                    <blockquote class="hz ia ib">
                                        <p id="3271" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            I can see why you have some reservations about publishing it, but my gut feeling is that he would take it better than Nilay.
                                        </p>
                                    </blockquote>
                                    <p id="ec72" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        Oh honey, bless your sweet, ignorant heart. Marco is one of the biggest pushers of The Big Lie, and one of the reasons it is <em class="ic">such</em> a lie.
                                    </p>
                                    <p id="5cc4" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        But it gets better. First, you have the “hey, Marco <em class="ic">earned</em> his status!” lot. A valid point, and one Bielefeld explicitly acknowledges, here:
                                    </p>
                                    <blockquote class="hz ia ib">
                                        <p id="4e5f" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            From his ground floor involvement in Tumblr (for which he is now a millionaire), to the creation and sale of a wildly successful app called Instapaper, he has become a household name in technology minded circles. It is this extensive time spent in the spotlight, the huge following on Twitter, and dedicated listeners of his weekly aired Accidental Tech Podcast, that has granted him the freedom to break from seeking revenue in more traditional manners.
                                        </p>
                                    </blockquote>
                                    <p id="cee9" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        and here:
                                    </p>
                                    <blockquote class="hz ia ib">
                                        <p id="3f1b" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            I’m not knocking his success, he has put effort into his line of work, and has built his own life.
                                        </p>
                                    </blockquote>
                                    <p id="e527" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        and here:
                                    </p>
                                    <blockquote class="hz ia ib">
                                        <p id="3e4f" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            He has earned his time in the spotlight, and it’s only natural for him to take advantage of it.
                                        </p>
                                    </blockquote>
                                    <p id="8a01" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        But still, you get the people telling her something she already acknowledge:
                                    </p>
                                    <blockquote class="hz ia ib">
                                        <p id="7685" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            I don’t think he’s blind. he’s worked to where he has gotten and has had failures like everyone else.
                                        </p>
                                    </blockquote>
                                    <p id="b151" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        Thank you for restating something in the article. To the person who wrote it.
                                    </p>
                                    <p id="87bc" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        In the original article, Samantha talked about the money Marco makes from his podcast. She based that on the numbers <a href="http://atp.fm/sponsor/" class="bh gp ir is it iu" target="_blank" rel="noopener nofollow">provided by ATP in terms of sponsorship rates</a> and the number of current sponsors the podcast has. Is this going to yield perfect numbers? No. But the numbers you get from it will at least be reasonable, or should be unless the published sponsorship rates are just fantasy, and you’re stupid for taking them seriously.
                                    </p>
                                    <p id="dbda" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        At first, she went with a simple formula:
                                    </p>
                                    <blockquote class="hz ia ib">
                                        <p id="1b4e" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            $4K x 3 per episode = $12K x 52 weeks / 3 hosts splitting it.
                                        </p>
                                    </blockquote>
                                    <p id="0b33" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        That’s not someone making shit up, right? Rather quickly, someone pointed out that she’d made an error in how she calculated it:
                                    </p>
                                    <blockquote class="hz ia ib">
                                        <p id="76d7" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            That’s $4k per ad, no? So more like $12–16k per episode.
                                        </p>
                                    </blockquote>
                                    <p id="a089" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        She’d already realized her mistake and fixed it.
                                    </p>
                                    <blockquote class="hz ia ib">
                                        <p id="b369" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            which is actually wrong, and I’m correcting now. $4,000 per sponsor, per episode! So, $210,000 per year.
                                        </p>
                                    </blockquote>
                                    <p id="8b3b" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        Again, this is based on <em class="ic">publicly available data</em> the only kind someone not part of ATP or a close friend of Arment has access to. So while her numbers may be wrong, if they are, there’s no way for her to know that. She’s basing her opinion on actual available data. Which is sadly rare.
                                    </p>
                                    <p id="135a" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        This becomes a huge flashpoint. You name a reason to attack her over this, people do. No really. For example, she’s not calculating his <em class="ic">income taxes correctly</em>:
                                    </p>
                                    <blockquote class="hz ia ib">
                                        <p id="5e7e" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            especially since it isn’t his only source of income thus, not an indicator of his marginal inc. tax bracket.
                                        </p>
                                        <p id="6036" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            thus, guessing net income is more haphazard than stating approx. gross income.
                                        </p>
                                    </blockquote>
                                    <p id="aac1" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        Ye Gods. She’s not doing his taxes for him, her point is invalid?
                                    </p>
                                    <p id="600f" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        Then there’s the people who seem to have not read anything past what other people are telling them:
                                    </p>
                                    <blockquote class="hz ia ib">
                                        <p id="9b62" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            Not sure what to make of your Marco piece, to be honest. You mention his fame, whatever, but what’s the main idea here?
                                        </p>
                                    </blockquote>
                                    <p id="c18a" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        Just how spoon-fed do you have to be? Have you no teeth?
                                    </p>
                                    <p id="c445" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        Of course, Marco jumps in, and predictably, he’s snippy:
                                    </p>
                                    <blockquote class="hz ia ib">
                                        <p id="0c21" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            If you’re going to speak in precise absolutes, it’s best to first ensure that you’re correct.
                                        </p>
                                    </blockquote>
                                    <p id="8f8d" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        If you’re going to be like that, it’s best to provide better data. Don’t get snippy when someone is going off the only data available, and is clearly open to revising based on better data.
                                    </p>
                                    <p id="cc97" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        Then Marco’s friends/fans get into it:
                                    </p>
                                    <blockquote class="hz ia ib">
                                        <p id="f9da" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            I really don’t understand why it’s anyone’s business
                                        </p>
                                    </blockquote>
                                    <p id="0094" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        Samantha is trying to qualify for sainthood at this point:
                                    </p>
                                    <blockquote class="hz ia ib">
                                        <p id="0105" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            It isn’t really, it was a way of putting his income in context in regards to his ability to gamble with Overcast.
                                        </p>
                                    </blockquote>
                                    <p id="cdd1" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        Again, she’s trying to drag people back to her actual point, but no one is going to play. The storm has begun. Then we get people who are just spouting nonsense:
                                    </p>
                                    <blockquote class="hz ia ib">
                                        <p id="f56c" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            Why is that only relevant for him? It’s a pretty weird metric,especially since his apps aren’t free.
                                        </p>
                                    </blockquote>
                                    <p id="4fef" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        Wha?? Overcast 2 is absolutely free. Samantha points this out:
                                    </p>
                                    <blockquote class="hz ia ib">
                                        <p id="0f36" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            His app is free, that’s what sparked the article to begin with.
                                        </p>
                                    </blockquote>
                                    <p id="40d2" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        The response is literally a parallel to “How can there be global warming if it snowed today in my town?”
                                    </p>
                                    <blockquote class="hz ia ib">
                                        <p id="6760" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            If it’s free, how have I paid for it? Twice?
                                        </p>
                                    </blockquote>
                                    <p id="7b13" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        She is still trying:
                                    </p>
                                    <blockquote class="hz ia ib">
                                        <p id="44ba" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            You paid $4.99 to unlock functionality in Overcast 1.0 and you chose to support him with no additional functionality in 2.0
                                        </p>
                                    </blockquote>
                                    <p id="2152" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        He is having none of it. IT SNOWED! SNOWWWWWWW!
                                    </p>
                                    <blockquote class="hz ia ib">
                                        <p id="99a6" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            Yes. That’s not free. Free is when you choose not to make money. And that can be weaponized. But that’s not what Overcast does.
                                        </p>
                                    </blockquote>
                                    <p id="5e6f" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        She however, is relentless:
                                    </p>
                                    <blockquote class="hz ia ib">
                                        <p id="1b0f" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            No, it’s still free. You can choose to support it, you are required to pay $4.99 for Pocket Casts. Totally different model.
                                        </p>
                                    </blockquote>
                                    <p id="d24f" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        Dude seems to give up. (Note: allllll the people bagging on her are men. All of them. Mansplaining like hell. And I’d bet every one of them considers themselves a feminist.)
                                    </p>
                                    <p id="10e1" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        We get another guy trying to push the narrative she’s punishing him for his success, which is just…it’s stupid, okay? Stupid.
                                    </p>
                                    <blockquote class="hz ia ib">
                                        <p id="9b01" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            It also wasn’t my point in writing my piece today, but it seems to be everyone’s focus.
                                        </p>
                                    </blockquote>
                                    <p id="340c" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        (UNDERSTATEMENT OF THE YEAR)
                                    </p>
                                    <blockquote class="hz ia ib">
                                        <p id="7244" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            I think the focus should be more on that fact that while it’s difficult, Marco spent years building his audience.
                                        </p>
                                        <p id="ffb1" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            It doesn’t matter what he makes it how he charges. If the audience be earned is willing to pay for it, awesome.
                                        </p>
                                    </blockquote>
                                    <p id="e44e" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        She tries, oh lord, she tries:
                                    </p>
                                    <blockquote class="hz ia ib">
                                        <p id="a502" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            To assert that he isn’t doing anything any other dev couldn’t, is wrong. It’s successful because it’s Marco.
                                        </p>
                                    </blockquote>
                                    <p id="7dcd" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        But no, HE KNOWS HER POINT BETTER THAN SHE DOES:
                                    </p>
                                    <blockquote class="hz ia ib">
                                        <p id="a62a" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            No, it’s successful because he busted his ass to make it so. It’s like any other business. He grew it.
                                        </p>
                                    </blockquote>
                                    <p id="df8c" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        Christ. This is like a field of strawmen. Stupid ones. Very stupid ones.
                                    </p>
                                    <p id="521a" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        One guy tries to blame it all on Apple, another in a string of Wha??? moments:
                                    </p>
                                    <blockquote class="hz ia ib">
                                        <p id="d80d" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            the appropriate context is Apple’s App Store policies. Other devs aren’t Marco’s responsibility
                                        </p>
                                    </blockquote>
                                    <p id="db0b" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        Seriously? Dude, are you even trying to talk about what Samantha actually wrote? At this point, Samantha is clearly mystified at the entire thing:
                                    </p>
                                    <blockquote class="hz ia ib">
                                        <p id="7a78" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            Why has the conversation suddenly turned to focus on nothing more than ATP sponsorship income?
                                        </p>
                                    </blockquote>
                                    <p id="6e09" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        Because it’s a nit they can pick and allows them to ignore everything you wrote. That’s the only reason.
                                    </p>
                                    <p id="b7db" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        One guy is “confused”:
                                    </p>
                                    <blockquote class="hz ia ib">
                                        <p id="3626" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            I see. He does have clout, so are you saying he’s too modest in how he sees himself as a dev?
                                        </p>
                                        <p id="9daa" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            Yes. He can’t be equated to the vast majority of other developers. Like calling Gruber, “just another blogger”.
                                        </p>
                                        <p id="f6da" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            Alright, that’s fair. I was just confused by the $ and fame angle at first.
                                        </p>
                                    </blockquote>
                                    <p id="d5b1" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        Samantha’s point centers on the benefits Marco gains via his fame and background. <em class="ic">HOW DO YOU NOT MENTION THAT? HOW IS THAT CONFUSING?</em>
                                    </p>
                                    <p id="58d0" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        People of course are telling her it’s her fault for mentioning a salient fact at all:
                                    </p>
                                    <blockquote class="hz ia ib">
                                        <p id="30d2" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            Why has the conversation suddenly turned to focus on nothing more than ATP sponsorship income?
                                        </p>
                                        <p id="765b" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            Maybe because you went there with your article?
                                        </p>
                                        <p id="61fe" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            As a way of rationalizing his ability to gamble with the potential for Overcast to generate income…not the norm at all.
                                        </p>
                                    </blockquote>
                                    <p id="f17c" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        Of course, had she not brought up those important points, she’d have been bagged on for “not providing proof”. Lose some, lose more. By now, she’s had enough and she just deletes all mention of it. Understandable, but sad she was bullied into doing that.
                                    </p>
                                    <p id="0b60" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        Yes, bullied. That’s all this is. Bullying. She didn’t lie, cheat, or exaagerate. If her numbers were wrong, they weren’t wrong in a way she had any ability to do anything about. But there’s blood in the water, and the comments and attacks get worse:
                                    </p>
                                    <blockquote class="hz ia ib">
                                        <p id="65ab" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            Because you decided to start a conversation about someone else’s personal shit. You started this war.
                                        </p>
                                    </blockquote>
                                    <p id="1adb" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        War. THIS. IS. WAR.
                                    </p>
                                    <p id="de94" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        This is a bunch of nerds attacking someone for reasoned, calm, <em class="ic">polite</em> criticism of their friend/idol. Samantha is politely pushing back a bit:
                                    </p>
                                    <blockquote class="hz ia ib">
                                        <p id="4458" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            That doesn’t explain why every other part of my article is being pushed aside.
                                        </p>
                                    </blockquote>
                                    <p id="aeac" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        She’s right. This is all nonsense. This is people ignoring her article completely, just looking for things to attack so it can be dismissed. It’s tribalism at its purest.
                                    </p>
                                    <p id="0078" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        Then some of the other annointed get into it, including Jason Snell in one of the most spectactular displays of “I have special knowledge you can’t be expected to have, therefore you are totally off base and wrong, even though there’s no way for you to know this” I’ve seen in a while. Jason:
                                    </p>
                                    <blockquote class="hz ia ib">
                                        <p id="c4c9" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            You should never use an ad rate card to estimate ad revenue from any media product ever.
                                        </p>
                                        <p id="b66b" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            I learned this when I started working for a magazine — rate cards are mostly fiction, like prices on new cars
                                        </p>
                                    </blockquote>
                                    <p id="6907" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        How…exactly…in the name of whatever deity Jason may believe in…is Samantha or anyone not “in the biz” supposed to know this. Also, what exactly does a magazine on paper like Macworld have to do with sponsorships for a podcast? I have done podcasts that were sponsored, and I can retaliate with “we charged what the rate card said we did. <em class="ic">Checkmate Elitests!</em>”
                                    </p>
                                    <p id="41ec" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        Samantha basically abases herself at his feet:
                                    </p>
                                    <blockquote class="hz ia ib">
                                        <p id="0b14" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            I understand my mistake, and it’s unfortunate that it has completely diluted the point of my article.
                                        </p>
                                    </blockquote>
                                    <p id="590f" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        I think she should have told him where and how to stuff that nonsense, but she’s a nicer person than I am. Also, it’s appropriate that Jason’s twitter avatar has its nose in the air. This is some rank snobbery. It’s disgusting and if anyone pulled that on him, Jason would be very upset. But hey, one cannot criticize The Marco without getting pushback. By “pushback”, I mean “an unrelenting fecal flood”.
                                    </p>
                                    <p id="69dc" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        Her only mistake was criticizing one of the Kool Kids. Folks, if you criticize anyone in The Deck Clique, or their friends, expect the same thing, regardless of tone or point.
                                    </p>
                                    <p id="5ab4" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        Another App Dev, seemingly unable to parse Samantha’s words, needs <em class="ic">more</em> explanation:
                                    </p>
                                    <blockquote class="hz ia ib">
                                        <p id="957b" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            so just looking over your mentions, I’m curious what exactly was your main point? Ignoring the podcast income bits.
                                        </p>
                                    </blockquote>
                                    <p id="0a7e" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        Oh wait, he didn’t even read the article. Good on you, Dev Guy, good. on. you. Still, she plays nice <em class="ic">with someone who didn’t even read her article</em>:
                                    </p>
                                    <blockquote class="hz ia ib">
                                        <p id="f7db" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            That a typical unknown developer can’t depend on patronage to generate revenue, and charging for apps will become a negative.
                                        </p>
                                    </blockquote>
                                    <p id="937f" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        Marco comes back of course, and now basically accuses her of lying about other devs talking to her and supporting her point:
                                    </p>
                                    <blockquote class="hz ia ib">
                                        <p id="c9dd" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            How many actual developers did you hear from, really? Funny how almost nobody wants to give a (real) name on these accusations.
                                        </p>
                                    </blockquote>
                                    <p id="c522" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        Really? You’re going to do that? “There’s no name, so I don’t think it’s a real person.” Just…what’s the Joe Welch quote from the McCarthy hearings?
                                    </p>
                                    <blockquote class="hz ia ib">
                                        <p id="907e" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            Let us not assassinate this lad further, Senator. You’ve done enough. Have you no sense of decency, sir? At long last, have you left no sense of decency?
                                        </p>
                                    </blockquote>
                                    <p id="2158" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        That is what this is at this point: character assasination because she said something critical of A Popular Person. It’s disgusting. Depressing and disgusting. No one, none of these people have seriously discussed her point, heck, it looks like they barely bothered to read it, if they did at all.
                                    </p>
                                    <p id="13f8" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        Marco starts getting really petty with her (no big shock) and Samantha finally starts pushing back:
                                    </p>
                                    <blockquote class="hz ia ib">
                                        <p id="96c6" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            Glad to see you be the bigger person and ignore the mindset of so many developers not relating to you, good for you!
                                        </p>
                                    </blockquote>
                                    <p id="5d3f" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        That of course, is what caused Marco to question the validity, if not the existence of her sources. (Funny how anonymous sources are totes okay when they convenience Marco et al, and work for oh, <em class="ic">Apple</em>, but when they are inconvenient? Ha! PROVIDE ME PROOF YOU INTEMPERATE WOMAN!)
                                    </p>
                                    <p id="c07c" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        Make no mistake, there’s some sexist shit going on here. Every tweet I’ve quoted was authored by a guy.
                                    </p>
                                    <p id="8b32" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        Of course, Marco has to play the “I’ve been around longer than you” card with this bon mot:
                                    </p>
                                    <blockquote class="hz ia ib">
                                        <p id="de26" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            Yup, before you existed!
                                        </p>
                                    </blockquote>
                                    <p id="a3bd" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        Really dude? I mean, I’m sorry about the penis, but really?
                                    </p>
                                    <p id="1c51" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        Mind you, when the criticism isn’t just bizarrely stupid, Samantha reacts the way Marco and his ilk claim they would to (if they ever got any <em class="ic">valid</em> criticism. Which clearly is impossible):
                                    </p>
                                    <blockquote class="hz ia ib">
                                        <p id="9848" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            Not to get into the middle of this, but “income” is not the term you’re looking for. “Revenue” is.
                                        </p>
                                        <p id="f2a6" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            lol. Noted.
                                        </p>
                                        <p id="aed9" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            And I wasn’t intending to be a dick, just a lot of people hear/say “income” when they intend “revenue”, and then discussion …
                                        </p>
                                        <p id="f9d8" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            … gets derailed by a jedi handwave of “Expenses”. But outside of charitable donation, it is all directly related.
                                        </p>
                                        <p id="f61c" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            haha. Thank you for the clarification.
                                        </p>
                                    </blockquote>
                                    <p id="5dd9" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        Note to Marco and the other…whatever they are…that is how one reacts to that kind of criticism. With a bit of humor and self-deprecation. You should try it sometime. For real, not just in your heads or conversations in Irish Pubs in S.F.
                                    </p>
                                    <p id="dc44" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        But now, the door has been cracked, and the cheap shots come out:
                                    </p>
                                    <blockquote class="hz ia ib">
                                        <p id="0c94" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            @testflight_app: Don’t worry guys, we process <a href="https://twitter.com/marcoarment" class="bh gp ir is it iu" target="_blank" rel="noopener nofollow">@marcoarment</a>’s apps in direct proportion to his megabucks earnings. <a href="https://twitter.com/hashtag/fairelephant?src=hash" class="bh gp ir is it iu" target="_blank" rel="noopener nofollow">#fairelephant</a>
                                        </p>
                                    </blockquote>
                                    <p id="343b" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        (Note: testflight_app is a parody account. Please do not mess with the actual testflight folks. They are still cool.)
                                    </p>
                                    <p id="09bf" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        Or this…conversation:
                                    </p>
                                    <figure class="jb jc jd je jf jg dz ea paragraph-image">
                                        <div class="dz ea ja">
                                            <div class="jk r df dn">
                                                <div class="jl jm r">
                                                    <div class="cd jh s t u by ai fq ji jj">
                                                        <img alt="Image for post" class="s t u by ai jn jo jp" src="https://miro.medium.com/max/44/1*kbPh7V97eyRodSOw2-ALDw.png?q=20" width="398" height="542" />
                                                    </div><img alt="Image for post" class="cd jh s t u by ai c" width="398" height="542" /><noscript><img alt="Image for post" class="s t u by ai" src="https://miro.medium.com/max/796/1*kbPh7V97eyRodSOw2-ALDw.png" width="398" height="542" srcset="https://miro.medium.com/max/552/1*kbPh7V97eyRodSOw2-ALDw.png 276w, https://miro.medium.com/max/796/1*kbPh7V97eyRodSOw2-ALDw.png 398w" sizes="398px" /></noscript>
                                                </div>
                                            </div>
                                        </div>
                                    </figure>
                                    <p id="f2a3" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        Good job guys. Good job. Defend the tribe. Attack the other. Frederico attempts to recover from his stunning display of demeaning douchery: <a href="https://twitter.com/viticci" class="bh gp ir is it iu" target="_blank" rel="noopener nofollow">‏@viticci</a>: <a href="https://twitter.com/s_bielefeld" class="bh gp ir is it iu" target="_blank" rel="noopener nofollow">@s_bielefeld</a> I don’t know if it’s an Italian thing, but counting other people’s money is especially weird for me. IMO, bad move in the post.
                                    </p>
                                    <p id="ae0c" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        Samantha is clearly sick of his crap: <a href="https://twitter.com/s_bielefeld" class="bh gp ir is it iu" target="_blank" rel="noopener nofollow">‏@s_bielefeld</a>: <a href="https://twitter.com/viticci" class="bh gp ir is it iu" target="_blank" rel="noopener nofollow">@viticci</a> That’s what I’m referring to, the mistake of ever having mentioned it. So, now, Marco can ignore the bigger issue and go on living.
                                    </p>
                                    <p id="2047" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        Good for her. There’s being patient and being roadkill.
                                    </p>
                                    <p id="4139" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        Samantha does put the call out for her sources to maybe let her use their names:
                                    </p>
                                    <blockquote class="hz ia ib">
                                        <p id="6626" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            From all of you I heard from earlier, anyone care to go on record?
                                        </p>
                                    </blockquote>
                                    <p id="8a7d" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        My good friend, The Angry Drunk points out the obvious problem:
                                    </p>
                                    <blockquote class="hz ia ib">
                                        <p id="68c9" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            Nobody’s going to go on record when they count on Marco’s friends for their PR.
                                        </p>
                                    </blockquote>
                                    <p id="317d" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        This is true. Again, the sites that are Friends of Marco:
                                    </p>
                                    <p id="9523" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        Daring Fireball
                                    </p>
                                    <p id="dbc7" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        The Loop
                                    </p>
                                    <p id="c706" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        SixColors
                                    </p>
                                    <p id="0acb" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        iMore
                                    </p>
                                    <p id="8c8c" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        MacStories
                                    </p>
                                    <p id="643e" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        A few others, but I want this post to end one day.
                                    </p>
                                    <p id="6b76" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        You piss that crew off, and given how petty rather a few of them have demonstrated they are, good luck on getting any kind of notice from them.
                                    </p>
                                    <p id="f7d1" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        Of course, the idea this could happen is just craycray:
                                    </p>
                                    <blockquote class="hz ia ib">
                                        <p id="de59" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            <a href="https://twitter.com/KevinColeman" class="bh gp ir is it iu" target="_blank" rel="noopener nofollow">@KevinColeman</a> <a href="https://twitter.com/Angry_Drunk" class="bh gp ir is it iu" target="_blank" rel="noopener nofollow">.@Angry_Drunk</a> <a href="https://twitter.com/s_bielefeld" class="bh gp ir is it iu" target="_blank" rel="noopener nofollow">@s_bielefeld</a> <a href="https://twitter.com/marcoarment" class="bh gp ir is it iu" target="_blank" rel="noopener nofollow">@marcoarment</a> Wow, you guys are veering right into crazy conspiracy theory territory. <a href="https://twitter.com/hashtag/JetFuelCantMeltSteelBeams?src=hash" class="bh gp ir is it iu" target="_blank" rel="noopener nofollow">#JetFuelCantMeltSteelBeams</a>
                                        </p>
                                    </blockquote>
                                    <p id="f01b" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        Yeah. Because a mature person like Marco would never do anything like that.
                                    </p>
                                    <p id="7e30" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        Of course, the real point on this is starting to happen:
                                    </p>
                                    <blockquote class="hz ia ib">
                                        <p id="5d93" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            you’re getting a lot of heat now but happy you are writing things that stir up the community. Hope you continue to be a voice!
                                        </p>
                                        <p id="436b" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            I doubt I will.
                                        </p>
                                    </blockquote>
                                    <p id="ac25" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        See, they’ve done their job. Mess with the bull, you get the horns. Maybe you should find another thing to write about, this isn’t a good place for you. <em class="ic">Great</em> job y’all.
                                    </p>
                                    <p id="07ba" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        Some people aren’t even pretending. They’re just in full strawman mode:
                                    </p>
                                    <blockquote class="hz ia ib">
                                        <p id="3d60" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            <a href="https://twitter.com/timkeller" class="bh gp ir is it iu" target="_blank" rel="noopener nofollow">@timkeller:</a> Unfair to begrudge a person for leveraging past success, especially when that success is earned. No ‘luck’ involved.
                                        </p>
                                        <p id="87f5" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            <a href="https://twitter.com/s_bielefeld" class="bh gp ir is it iu" target="_blank" rel="noopener nofollow">@s_bielefeld:</a> <a href="https://twitter.com/timkeller" class="bh gp ir is it iu" target="_blank" rel="noopener nofollow">@timkeller</a> I plainly stated that I don’t hold his doing this against him. Way to twist words.
                                        </p>
                                    </blockquote>
                                    <p id="3720" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        I think she’s earned her anger at this point.
                                    </p>
                                    <p id="7341" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        Don’t worry, Marco knows what the real problem is: most devs just suck —
                                    </p>
                                    <figure class="jb jc jd je jf jg dz ea paragraph-image">
                                        <div class="dz ea jq">
                                            <div class="jk r df dn">
                                                <div class="jr jm r">
                                                    <div class="cd jh s t u by ai fq ji jj">
                                                        <img alt="Image for post" class="s t u by ai jn jo jp" src="https://miro.medium.com/max/54/1*Fpb2Bvdx7Q-688vdm-NdkQ.png?q=20" width="694" height="771" />
                                                    </div><img alt="Image for post" class="cd jh s t u by ai c" width="694" height="771" /><noscript><img alt="Image for post" class="s t u by ai" src="https://miro.medium.com/max/1388/1*Fpb2Bvdx7Q-688vdm-NdkQ.png" width="694" height="771" srcset="https://miro.medium.com/max/552/1*Fpb2Bvdx7Q-688vdm-NdkQ.png 276w, https://miro.medium.com/max/1104/1*Fpb2Bvdx7Q-688vdm-NdkQ.png 552w, https://miro.medium.com/max/1280/1*Fpb2Bvdx7Q-688vdm-NdkQ.png 640w, https://miro.medium.com/max/1388/1*Fpb2Bvdx7Q-688vdm-NdkQ.png 694w" sizes="694px" /></noscript>
                                                </div>
                                            </div>
                                        </div>
                                    </figure>
                                    <p id="503d" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        I have a saying that applies in this case: don’t place your head so far up your nethers that you go full Klein Bottle. Marco has gone full Klein Bottle. (To be correct, he went FKB some years ago.)
                                    </p>
                                    <p id="b8c0" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        There are some bright spots. My favorite is when Building Twenty points out the <em class="ic">real</em> elephant in the room:
                                    </p>
                                    <blockquote class="hz ia ib">
                                        <p id="36f4" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            <a href="https://twitter.com/BuildingTwenty" class="bh gp ir is it iu" target="_blank" rel="noopener nofollow">@BuildingTwenty</a>: Both <a href="https://twitter.com/s_bielefeld" class="bh gp ir is it iu" target="_blank" rel="noopener nofollow">@s_bielefeld</a> &amp; I wrote similar critiques of <a href="https://twitter.com/marcoarment" class="bh gp ir is it iu" target="_blank" rel="noopener nofollow">@marcoarment</a>’s pricing model yet the Internet pilloried only the woman. Who’d have guessed?
                                        </p>
                                    </blockquote>
                                    <p id="06b9" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        Yup.
                                    </p>
                                    <p id="eff9" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        Another bright spot are these comments from Ian Betteridge, who has been doing this <em class="ic">even longer than Marco</em>:
                                    </p>
                                    <blockquote class="hz ia ib">
                                        <p id="18f1" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            You know, any writer who has never made a single factual error in a piece hasn’t ever written anything worth reading.
                                        </p>
                                        <p id="9776" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            I learned my job with the support of people who helped me. Had I suffered an Internet pile on for every error I wouldn’t have bothered.
                                        </p>
                                    </blockquote>
                                    <p id="8d44" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        To which Samantha understandably replies:
                                    </p>
                                    <blockquote class="hz ia ib">
                                        <p id="7147" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            and it’s honestly something I’m contemplating right now, whether to continue…
                                        </p>
                                    </blockquote>
                                    <p id="e0cd" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        Gee, I can’t imagine why. Why with comments like this from Chris Breen that completely misrepresent Samantha’s point, (who until today, I would have absolutely defended as being better than this, something I am genuinely saddened to be wrong about), why wouldn’t she want to continue doing this?
                                    </p>
                                    <blockquote class="hz ia ib">
                                        <p id="a379" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            If I have this right, some people are outraged that a creator has decided to give away his work.
                                        </p>
                                    </blockquote>
                                    <p id="f026" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        No Chris, you don’t have this right. But hey, who has time to find out the real issue and read an article. I’m sure your friends told you everything you need to know.
                                    </p>
                                    <p id="e1c2" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        Noted Feminist Glenn Fleishman gets a piece of the action too:
                                    </p>
                                    <figure class="jb jc jd je jf jg dz ea paragraph-image">
                                        <div class="dz ea js">
                                            <div class="jk r df dn">
                                                <div class="jt jm r">
                                                    <div class="cd jh s t u by ai fq ji jj">
                                                        <img alt="Image for post" class="s t u by ai jn jo jp" src="https://miro.medium.com/max/60/1*lvOySry5gHHJfGU_bQXrzA.png?q=20" width="308" height="269" />
                                                    </div><img alt="Image for post" class="cd jh s t u by ai c" width="308" height="269" /><noscript><img alt="Image for post" class="s t u by ai" src="https://miro.medium.com/max/616/1*lvOySry5gHHJfGU_bQXrzA.png" width="308" height="269" srcset="https://miro.medium.com/max/552/1*lvOySry5gHHJfGU_bQXrzA.png 276w, https://miro.medium.com/max/616/1*lvOySry5gHHJfGU_bQXrzA.png 308w" sizes="308px" /></noscript>
                                                </div>
                                            </div>
                                        </div>
                                    </figure>
                                    <p id="4df8" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        I’m not actually surprised here. I watched Fleishman berate a friend of mine who has been an engineer for…heck, waaaaay too long on major software products in the most condescending way because she tried to point out that as a <em class="ic">very</em> technical woman, “The Magazine” literally had nothing to say to her and maybe he should fix that. “Impertinent” was I believe what he called her, but I may have the specific word wrong. Not the attitude mind you. Great Feminists like Glenn do not like uppity women criticizing Great Feminists who are their Great Allies.
                                    </p>
                                    <p id="bf45" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        Great Feminists are often tools.
                                    </p>
                                </div>
                            </div>
                        </section>
                        <hr class="id fo ie if ig ih ii ij ik il im in" />
                        <section class="ef eg eh ei ej">
                            <div class="n p">
                                <div class="z ab ac ae af ek ah ai">
                                    <p id="45bb" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        Luckily, I hope, the people who get Samantha’s point also started chiming in (and you get 100% of the women commenting here that I’ve seen):
                                    </p>
                                    <blockquote class="hz ia ib">
                                        <p id="c053" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            I don’t think he’s wrong for doing it, he just discusses it as if the market’s a level playing field — it isn’t
                                        </p>
                                        <p id="7b5e" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            This is a great article with lots of great points about the sustainability of iOS development. Thank you for publishing it.
                                        </p>
                                        <p id="a321" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            Regardless of the numbers and your view of MA, fair points here about confirmation bias in app marketing feasibility <a href="http://t.co/u79ZLsnhdM" class="bh gp ir is it iu" target="_blank" rel="noopener nofollow">http://samanthabielefeld.com/the-elephant-in-the-room …</a>
                                        </p>
                                        <p id="76fe" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            thank you for posting this, it covers a lot of things people don’t like to talk about.
                                        </p>
                                        <p id="bf90" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            I’m sure you have caught untold amounts of flak over posting this because Marco is blind to his privilege as a developer.
                                        </p>
                                        <p id="0f66" class="hb hc ic hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                            Catching up on the debate, and agreeing with Harry’s remark. (Enjoyed your article, Samantha, and ‘got’ your point.)
                                        </p>
                                    </blockquote>
                                </div>
                            </div>
                        </section>
                        <hr class="id fo ie if ig ih ii ij ik il im in" />
                        <section class="ef eg eh ei ej">
                            <div class="n p">
                                <div class="z ab ac ae af ek ah ai">
                                    <p id="6134" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        I would like to say I’m surprised at the reaction to Samantha’s article, but I’m not. In spite of his loud declarations of support for The Big Lie, Marco Arment is as bad at any form of criticism that he hasn’t already approved as a very insecure tween. An example from 2011: <a href="http://www.businessinsider.com/marco-arment-2011-9" class="bh gp ir is it iu" target="_blank" rel="noopener nofollow">http://www.businessinsider.com/marco-arment-2011-9</a>
                                    </p>
                                    <p id="ba3c" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        Marco is great with criticism as long as it never actually criticizes him. If it does, be prepared a flood of petty, petulant whining that a room full of bored preschoolers on a hot day would be hard-pressed to match.
                                    </p>
                                    <p id="a5a0" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        Today has been…well, it sucks. It sucks because someone doing what all the Arments of the world claim to want was naive enough to believe what they were told, and found out the hard way just how big a lie The Big Lie is, and how vicious people are when you’re silly enough to believe anything they say about criticism.
                                    </p>
                                    <p id="2a25" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        And note again, every single condescending crack, misrepresentation, and strawman had an exclusively male source. Most of them have, at one point or another, loudly trumpted themselves as Feminist Allies, as a friend to women struggling with the sexism and misogyny in tech. Congratulations y’all on being just as bad as the people you claim to oppose.
                                    </p>
                                    <p id="a47a" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        Samantha has handled this better than anyone else could have. My respect for her as a person and a writer is off the charts. If she choses to walk away from blogging in the Apple space, <em class="ic">believe me</em> I understand. As bad as today was for her, I’ve seen worse. Much worse.
                                    </p>
                                    <p id="aa8e" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        But I hope she doesn’t. I hope she stays, because she is Doing This Right, and in a corner of the internet that has become naught but an endless circle jerk, a cliquish collection, a churlish, childish cohort interested not in writing or the truth, but in making sure The Right People are elevated, and The Others put down, she is someone worth reading and listening to. The number people who owe her apologies goes around the block, and I don’t think she’ll ever see a one. I’m sure as heck not apologizing for them, I’ll not make their lives easier in the least.
                                    </p>
                                    <p id="34c5" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        All of you, all. of. you…Marco, Breen, Snell, Vittici, had a chance to live by your words. You were faced with reasoned, polite, respectful criticism and instead of what you should have done, you all dropped trou and sprayed an epic diarrheal discharge all over someone who had done nothing to deserve it. Me, I earned most of my aggro, Samantha did not earn any of the idiocy I’ve seen today. I hope you’re all proud of yourselves. Someone should be, it won’t be me. Ever.
                                    </p>
                                    <p id="9710" class="hb hc bo hd b he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy ef de">
                                        So I hope she stays, but if she goes, I understand. For what it’s worth, I don’t think she’s wrong either way.
                                    </p>
                                </div>
                            </div>
                        </section>
                    </div>
                </article>
                <div class="cd cf bz ju ai kb jz kc" data-test-id="post-sidebar">
                    <div class="n p">
                        <div class="z ab ac ae af ag ah ai">
                            <div class="kd n ke">
                                <div class="cf">
                                    <div>
                                        <div class="kf kg kh n">
                                            <div class="n o">
                                                <div class="r df ki kj kk kl km">
                                                    <span><a href="https://medium.com/m/signin?operation=register&amp;redirect=https%3A%2F%2Fmedium.com%2F%40johncwelch%2Fsamantha-and-the-great-big-lie-d146a92473a1&amp;source=post_sidebar-----d146a92473a1---------------------clap_sidebar-" class="bh bi at au av aw ax ay az ba bj bk bd bl bm" rel="noopener">
                                                    <div class="ay kn ko kp cc kq kr ks q kt ku">
                                                        <span><svg width="29" height="29" aria-label="clap">
                                                        <g fill-rule="evenodd">
                                                            <path d="M13.74 1l.76 2.97.76-2.97zM16.82 4.78l1.84-2.56-1.43-.47zM10.38 2.22l1.84 2.56-.41-3.03zM22.38 22.62a5.11 5.11 0 0 1-3.16 1.61l.49-.45c2.88-2.89 3.45-5.98 1.69-9.21l-1.1-1.94-.96-2.02c-.31-.67-.23-1.18.25-1.55a.84.84 0 0 1 .66-.16c.34.05.66.28.88.6l2.85 5.02c1.18 1.97 1.38 5.12-1.6 8.1M9.1 22.1l-5.02-5.02a1 1 0 0 1 .7-1.7 1 1 0 0 1 .72.3l2.6 2.6a.44.44 0 0 0 .63-.62L6.1 15.04l-1.75-1.75a1 1 0 1 1 1.41-1.41l4.15 4.15a.44.44 0 0 0 .63 0 .44.44 0 0 0 0-.62L6.4 11.26l-1.18-1.18a1 1 0 0 1 0-1.4 1.02 1.02 0 0 1 1.41 0l1.18 1.16L11.96 14a.44.44 0 0 0 .62 0 .44.44 0 0 0 0-.63L8.43 9.22a.99.99 0 0 1-.3-.7.99.99 0 0 1 .3-.7 1 1 0 0 1 1.41 0l7 6.98a.44.44 0 0 0 .7-.5l-1.35-2.85c-.31-.68-.23-1.19.25-1.56a.85.85 0 0 1 .66-.16c.34.06.66.28.88.6L20.63 15c1.57 2.88 1.07 5.54-1.55 8.16a5.62 5.62 0 0 1-5.06 1.65 9.35 9.35 0 0 1-4.93-2.72zM13 6.98l2.56 2.56c-.5.6-.56 1.41-.15 2.28l.26.56-4.25-4.25a.98.98 0 0 1-.12-.45 1 1 0 0 1 .29-.7 1.02 1.02 0 0 1 1.41 0zm8.89 2.06c-.38-.56-.9-.92-1.49-1.01a1.74 1.74 0 0 0-1.34.33c-.38.29-.61.65-.71 1.06a2.1 2.1 0 0 0-1.1-.56 1.78 1.78 0 0 0-.99.13l-2.64-2.64a1.88 1.88 0 0 0-2.65 0 1.86 1.86 0 0 0-.48.85 1.89 1.89 0 0 0-2.67-.01 1.87 1.87 0 0 0-.5.9c-.76-.75-2-.75-2.7-.04a1.88 1.88 0 0 0 0 2.66c-.3.12-.61.29-.87.55a1.88 1.88 0 0 0 0 2.66l.62.62a1.88 1.88 0 0 0-.9 3.16l5.01 5.02c1.6 1.6 3.52 2.64 5.4 2.96a7.16 7.16 0 0 0 1.18.1c1.03 0 2-.25 2.9-.7A5.9 5.9 0 0 0 23 23.24c3.34-3.34 3.08-6.93 1.74-9.17l-2.87-5.04z"></path>
                                                        </g></svg></span>
                                                    </div></a></span>
                                                </div>
                                                <div class="r kv kw kx ky kz la lb">
                                                    <div class="lc">
                                                        <h4 class="bn fo fp bp bs">
                                                            <button class="bh bi at au av aw ax ay az ba bj bk bd bl bm">193<!-- --></button>
                                                        </h4>
                                                    </div>
                                                </div>
                                            </div>
                                        </div>
                                        <div class="kg r">
                                            <div class="lf n o cz">
                                                <button class="cc ko ay"><svg width="25" height="25" class="q" aria-label="responses">
                                                <path d="M19.07 21.12a6.33 6.33 0 0 1-3.53-1.1 7.8 7.8 0 0 1-.7-.52c-.77.21-1.57.32-2.38.32-4.67 0-8.46-3.5-8.46-7.8C4 7.7 7.79 4.2 12.46 4.2c4.66 0 8.46 3.5 8.46 7.8 0 2.06-.85 3.99-2.4 5.45a6.28 6.28 0 0 0 1.14 2.59c.15.21.17.48.06.7a.69.69 0 0 1-.62.38h-.03zm0-1v.5l.03-.5h-.03zm-3.92-1.64l.21.2a6.09 6.09 0 0 0 3.24 1.54 7.14 7.14 0 0 1-.83-1.84 5.15 5.15 0 0 1-.16-.75 2.4 2.4 0 0 1-.02-.29v-.23l.18-.15a6.6 6.6 0 0 0 2.3-4.96c0-3.82-3.4-6.93-7.6-6.93-4.19 0-7.6 3.11-7.6 6.93 0 3.83 3.41 6.94 7.6 6.94.83 0 1.64-.12 2.41-.35l.28-.08z" fill-rule="evenodd"></path></svg></button>
                                                <div class="r df lg lh li lj lk ll lm ln">
                                                    <h4 class="bn fo fp bp bs">
                                                        <button class="cc ko ay">13<!-- --></button>
                                                    </h4>
                                                </div>
                                            </div>
                                        </div>
                                        <div class="bt">
                                            <span><a href="https://medium.com/m/signin?operation=register&amp;redirect=https%3A%2F%2Fmedium.com%2F%40johncwelch%2Fsamantha-and-the-great-big-lie-d146a92473a1&amp;source=post_sidebar--------------------------post_sidebar-" class="bh bi at au av aw ax ay az ba bj bk bd bl bm" rel="noopener"><svg width="25" height="25" viewbox="0 0 25 25">
                                            <path d="M19 6a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v14.66h.01c.01.1.05.2.12.28a.5.5 0 0 0 .7.03l5.67-4.12 5.66 4.13a.5.5 0 0 0 .71-.03.5.5 0 0 0 .12-.29H19V6zm-6.84 9.97L7 19.64V6a1 1 0 0 1 1-1h9a1 1 0 0 1 1 1v13.64l-5.16-3.67a.49.49 0 0 0-.68 0z" fill-rule="evenodd"></path></svg></a></span>
                                        </div>
                                    </div>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
                <div class="cd cf ju bz jv jw jx jy jz ka"></div>
                <div>
                    <div class="lo jg n ke p">
                        <div class="n p">
                            <div class="z ab ac ae af ek ah ai">
                                <div class="n lp"></div>
                                <div class="n o lp"></div>
                                <div class="lq n da y">
                                    <div class="n cz">
                                        <div class="lr r">
                                            <div class="n o">
                                                <div class="r df ki kj kk kl km">
                                                    <span class="r ls lt lu e d"><span><a href="https://medium.com/m/signin?operation=register&amp;redirect=https%3A%2F%2Fmedium.com%2F%40johncwelch%2Fsamantha-and-the-great-big-lie-d146a92473a1&amp;source=post_actions_footer-----d146a92473a1---------------------clap_footer-" class="bh bi at au av aw ax ay az ba bj bk bd bl bm" rel="noopener">
                                                    <div class="ay kn ko kp cc kq kr ks q kt ku">
                                                        <span class="r ls lt lu e d"><svg width="25" height="25" viewbox="0 0 25 25" aria-label="clap">
                                                        <g fill-rule="evenodd">
                                                            <path d="M11.74 0l.76 2.97.76-2.97zM14.81 3.78l1.84-2.56-1.42-.47zM8.38 1.22l1.84 2.56L9.8.75zM20.38 21.62a5.11 5.11 0 0 1-3.16 1.61l.49-.45c2.88-2.89 3.45-5.98 1.69-9.21l-1.1-1.94-.96-2.02c-.31-.67-.23-1.18.25-1.55a.84.84 0 0 1 .66-.16c.34.05.66.28.88.6l2.85 5.02c1.18 1.97 1.38 5.12-1.6 8.1M7.1 21.1l-5.02-5.02a1 1 0 0 1 .7-1.7 1 1 0 0 1 .72.3l2.6 2.6a.44.44 0 0 0 .63-.62L4.1 14.04l-1.75-1.75a1 1 0 1 1 1.41-1.41l4.15 4.15a.44.44 0 0 0 .63 0 .44.44 0 0 0 0-.62L4.4 10.26 3.22 9.08a1 1 0 0 1 0-1.4 1.02 1.02 0 0 1 1.41 0l1.18 1.16L9.96 13a.44.44 0 0 0 .62 0 .44.44 0 0 0 0-.63L6.43 8.22a.99.99 0 0 1-.3-.7.99.99 0 0 1 .3-.7 1 1 0 0 1 1.41 0l7 6.98a.44.44 0 0 0 .7-.5l-1.35-2.85c-.31-.68-.23-1.19.25-1.56a.85.85 0 0 1 .66-.16c.34.06.66.28.88.6L18.63 14c1.57 2.88 1.07 5.54-1.55 8.16a5.62 5.62 0 0 1-5.06 1.65 9.35 9.35 0 0 1-4.93-2.72zM11 5.98l2.56 2.56c-.5.6-.56 1.41-.15 2.28l.26.56-4.25-4.25a.98.98 0 0 1-.12-.45 1 1 0 0 1 .29-.7 1.02 1.02 0 0 1 1.41 0zm8.89 2.06c-.38-.56-.9-.92-1.49-1.01a1.74 1.74 0 0 0-1.34.33c-.38.29-.61.65-.71 1.06a2.1 2.1 0 0 0-1.1-.56 1.78 1.78 0 0 0-.99.13l-2.64-2.64a1.88 1.88 0 0 0-2.65 0 1.86 1.86 0 0 0-.48.85 1.89 1.89 0 0 0-2.67-.01 1.87 1.87 0 0 0-.5.9c-.76-.75-2-.75-2.7-.04a1.88 1.88 0 0 0 0 2.66c-.3.12-.61.29-.87.55a1.88 1.88 0 0 0 0 2.66l.62.62a1.88 1.88 0 0 0-.9 3.16l5.01 5.02c1.6 1.6 3.52 2.64 5.4 2.96a7.16 7.16 0 0 0 1.18.1c1.03 0 2-.25 2.9-.7A5.9 5.9 0 0 0 21 22.24c3.34-3.34 3.08-6.93 1.74-9.17l-2.87-5.04z"></path>
                                                        </g></svg></span>
                                                    </div></a></span></span>
                                                </div>
                                                <div class="r kv kw kx ky kz la lb">
                                                    <div class="df lv lc">
                                                        <h4 class="bn fo fp bp de">
                                                            <button class="bh bi at au av aw ax ay az ba bj bk bd bl bm">193<span class="r h g f lw lx">&#160;<!-- -->claps</span></button>
                                                        </h4>
                                                    </div>
                                                </div>
                                            </div>
                                            <div class="n ly">
                                                <div class="r df ki kj">
                                                    <span class="r h g f lw lx"><span><a href="https://medium.com/m/signin?operation=register&amp;redirect=https%3A%2F%2Fmedium.com%2F%40johncwelch%2Fsamantha-and-the-great-big-lie-d146a92473a1&amp;source=post_actions_footer-----d146a92473a1---------------------clap_footer-" class="bh bi at au av aw ax ay az ba bj bk bd bl bm" rel="noopener">
                                                    <div class="ay kn ko kp cc kq kr ks q kt ku">
                                                        <span class="r h g f lw lx"><svg width="33" height="33" viewbox="0 0 33 33" aria-label="clap">
                                                        <path d="M28.86 17.34l-3.64-6.4c-.3-.43-.71-.73-1.16-.8a1.12 1.12 0 0 0-.9.21c-.62.5-.73 1.18-.32 2.06l1.22 2.6 1.4 2.45c2.23 4.09 1.51 8-2.15 11.66a9.6 9.6 0 0 1-.8.71 6.53 6.53 0 0 0 4.3-2.1c3.82-3.82 3.57-7.87 2.05-10.39zm-6.25 11.08c3.35-3.35 4-6.78 1.98-10.47L21.2 12c-.3-.43-.71-.72-1.16-.8a1.12 1.12 0 0 0-.9.22c-.62.49-.74 1.18-.32 2.06l1.72 3.63a.5.5 0 0 1-.81.57l-8.91-8.9a1.33 1.33 0 0 0-1.89 1.88l5.3 5.3a.5.5 0 0 1-.71.7l-5.3-5.3-1.49-1.49c-.5-.5-1.38-.5-1.88 0a1.34 1.34 0 0 0 0 1.89l1.49 1.5 5.3 5.28a.5.5 0 0 1-.36.86.5.5 0 0 1-.36-.15l-5.29-5.29a1.34 1.34 0 0 0-1.88 0 1.34 1.34 0 0 0 0 1.89l2.23 2.23L9.3 21.4a.5.5 0 0 1-.36.85.5.5 0 0 1-.35-.14l-3.32-3.33a1.33 1.33 0 0 0-1.89 0 1.32 1.32 0 0 0-.39.95c0 .35.14.69.4.94l6.39 6.4c3.53 3.53 8.86 5.3 12.82 1.35zM12.73 9.26l5.68 5.68-.49-1.04c-.52-1.1-.43-2.13.22-2.89l-3.3-3.3a1.34 1.34 0 0 0-1.88 0 1.33 1.33 0 0 0-.4.94c0 .22.07.42.17.61zm14.79 19.18a7.46 7.46 0 0 1-6.41 2.31 7.92 7.92 0 0 1-3.67.9c-3.05 0-6.12-1.63-8.36-3.88l-6.4-6.4A2.31 2.31 0 0 1 2 19.72a2.33 2.33 0 0 1 1.92-2.3l-.87-.87a2.34 2.34 0 0 1 0-3.3 2.33 2.33 0 0 1 1.24-.64l-.14-.14a2.34 2.34 0 0 1 0-3.3 2.39 2.39 0 0 1 3.3 0l.14.14a2.33 2.33 0 0 1 3.95-1.24l.09.09c.09-.42.29-.83.62-1.16a2.34 2.34 0 0 1 3.3 0l3.38 3.39a2.17 2.17 0 0 1 1.27-.17c.54.08 1.03.35 1.45.76.1-.55.41-1.03.9-1.42a2.12 2.12 0 0 1 1.67-.4 2.8 2.8 0 0 1 1.85 1.25l3.65 6.43c1.7 2.83 2.03 7.37-2.2 11.6zM13.22.48l-1.92.89 2.37 2.83-.45-3.72zm8.48.88L19.78.5l-.44 3.7 2.36-2.84zM16.5 3.3L15.48 0h2.04L16.5 3.3z" fill-rule="evenodd"></path></svg></span>
                                                    </div></a></span></span>
                                                </div>
                                                <div class="r kv kw kx ky lz ma mb mc md me">
                                                    <div class="df lv lc">
                                                        <h4 class="bn fo fp bp de">
                                                            <button class="bh bi at au av aw ax ay az ba bj bk bd bl bm">193<span class="r h g f lw lx">&#160;<!-- -->claps</span></button>
                                                        </h4>
                                                    </div>
                                                </div>
                                            </div>
                                        </div>
                                        <div class="r mf mg mh mi mj"></div>
                                        <div class="lf n o cz">
                                            <button class="cc ko ay"><span class="mk r h g f lw lx"><svg width="33" height="33" viewbox="0 0 33 33" fill="none" class="q" aria-label="responses">
                                            <path clip-rule="evenodd" d="M24.28 25.5l.32-.29c2.11-1.94 3.4-4.61 3.4-7.56C28 11.83 22.92 7 16.5 7S5 11.83 5 17.65s5.08 10.66 11.5 10.66c1.22 0 2.4-.18 3.5-.5l.5-.15.41.33a8.86 8.86 0 0 0 4.68 2.1 7.34 7.34 0 0 1-1.3-4.15v-.43zm1 .45c0 1.5.46 2.62 1.69 4.44.22.32.01.75-.38.75a9.69 9.69 0 0 1-6.31-2.37c-1.2.35-2.46.54-3.78.54C9.6 29.3 4 24.09 4 17.65 4 11.22 9.6 6 16.5 6S29 11.22 29 17.65c0 3.25-1.42 6.18-3.72 8.3z"></path></svg></span><span class="ml r ls lt lu e d"><svg width="25" height="25" class="q" aria-label="responses">
                                            <path d="M19.07 21.12a6.33 6.33 0 0 1-3.53-1.1 7.8 7.8 0 0 1-.7-.52c-.77.21-1.57.32-2.38.32-4.67 0-8.46-3.5-8.46-7.8C4 7.7 7.79 4.2 12.46 4.2c4.66 0 8.46 3.5 8.46 7.8 0 2.06-.85 3.99-2.4 5.45a6.28 6.28 0 0 0 1.14 2.59c.15.21.17.48.06.7a.69.69 0 0 1-.62.38h-.03zm0-1v.5l.03-.5h-.03zm-3.92-1.64l.21.2a6.09 6.09 0 0 0 3.24 1.54 7.14 7.14 0 0 1-.83-1.84 5.15 5.15 0 0 1-.16-.75 2.4 2.4 0 0 1-.02-.29v-.23l.18-.15a6.6 6.6 0 0 0 2.3-4.96c0-3.82-3.4-6.93-7.6-6.93-4.19 0-7.6 3.11-7.6 6.93 0 3.83 3.41 6.94 7.6 6.94.83 0 1.64-.12 2.41-.35l.28-.08z" fill-rule="evenodd"></path></svg></span></button>
                                            <div class="r df mm lh mn lj mo ll mp mq mr ms">
                                                <h4 class="bn fo fp bp de">
                                                    <button class="cc ko ay">13<!-- --> <span class="r h g f lw lx">response<!-- -->s</span></button>
                                                </h4>
                                            </div>
                                        </div>
                                    </div>
                                    <div class="n o">
                                        <div class="gy r bg">
                                            <button class="bh bi at au av aw ax ay az ba bj bk bd bl bm"><svg width="29" height="29" class="bt">
                                            <path d="M22.05 7.54a4.47 4.47 0 0 0-3.3-1.46 4.53 4.53 0 0 0-4.53 4.53c0 .35.04.7.08 1.05A12.9 12.9 0 0 1 5 6.89a5.1 5.1 0 0 0-.65 2.26c.03 1.6.83 2.99 2.02 3.79a4.3 4.3 0 0 1-2.02-.57v.08a4.55 4.55 0 0 0 3.63 4.44c-.4.08-.8.13-1.21.16l-.81-.08a4.54 4.54 0 0 0 4.2 3.15 9.56 9.56 0 0 1-5.66 1.94l-1.05-.08c2 1.27 4.38 2.02 6.94 2.02 8.3 0 12.86-6.9 12.84-12.85.02-.24 0-.43 0-.65a8.68 8.68 0 0 0 2.26-2.34c-.82.38-1.7.62-2.6.72a4.37 4.37 0 0 0 1.95-2.51c-.84.53-1.81.9-2.83 1.13z"></path></svg></button>
                                        </div>
                                        <div class="gy r bg">
                                            <button class="bh bi at au av aw ax ay az ba bj bk bd bl bm"><svg width="29" height="29" viewbox="0 0 29 29" fill="none" class="bt">
                                            <path d="M5 6.36C5 5.61 5.63 5 6.4 5h16.2c.77 0 1.4.61 1.4 1.36v16.28c0 .75-.63 1.36-1.4 1.36H6.4c-.77 0-1.4-.6-1.4-1.36V6.36z"></path>
                                            <path fill-rule="evenodd" clip-rule="evenodd" d="M10.76 20.9v-8.57H7.89v8.58h2.87zm-1.44-9.75c1 0 1.63-.65 1.63-1.48-.02-.84-.62-1.48-1.6-1.48-.99 0-1.63.64-1.63 1.48 0 .83.62 1.48 1.59 1.48h.01zM12.35 20.9h2.87v-4.79c0-.25.02-.5.1-.7.2-.5.67-1.04 1.46-1.04 1.04 0 1.46.8 1.46 1.95v4.59h2.87v-4.92c0-2.64-1.42-3.87-3.3-3.87-1.55 0-2.23.86-2.61 1.45h.02v-1.24h-2.87c.04.8 0 8.58 0 8.58z" fill="#fff"></path></svg></button>
                                        </div>
                                        <div class="gy r bg">
                                            <button class="bh bi at au av aw ax ay az ba bj bk bd bl bm"><svg width="29" height="29" class="bt">
                                            <path d="M23.2 5H5.8a.8.8 0 0 0-.8.8V23.2c0 .44.35.8.8.8h9.3v-7.13h-2.38V13.9h2.38v-2.38c0-2.45 1.55-3.66 3.74-3.66 1.05 0 1.95.08 2.2.11v2.57h-1.5c-1.2 0-1.48.57-1.48 1.4v1.96h2.97l-.6 2.97h-2.37l.05 7.12h5.1a.8.8 0 0 0 .79-.8V5.8a.8.8 0 0 0-.8-.79"></path></svg></button>
                                        </div>
                                        <div class="mt r bg">
                                            <div class="bt">
                                                <span><a href="https://medium.com/m/signin?operation=register&amp;redirect=https%3A%2F%2Fmedium.com%2F%40johncwelch%2Fsamantha-and-the-great-big-lie-d146a92473a1&amp;source=post_actions_footer--------------------------bookmark_footer-" class="bh bi at au av aw ax ay az ba bj bk bd bl bm" rel="noopener"><svg width="25" height="25" viewbox="0 0 25 25">
                                                <path d="M19 6a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v14.66h.01c.01.1.05.2.12.28a.5.5 0 0 0 .7.03l5.67-4.12 5.66 4.13a.5.5 0 0 0 .71-.03.5.5 0 0 0 .12-.29H19V6zm-6.84 9.97L7 19.64V6a1 1 0 0 1 1-1h9a1 1 0 0 1 1 1v13.64l-5.16-3.67a.49.49 0 0 0-.68 0z" fill-rule="evenodd"></path></svg></a></span>
                                            </div>
                                        </div>
                                    </div>
                                </div>
                            </div>
                        </div>
                        <div>
                            <div class="n p">
                                <div class="z ab ac ae af ek ah ai">
                                    <div class="mu mv mw lq r mx y">
                                        <div class="r g">
                                            <div class="my mz r df">
                                                <div class="r s nc nd">
                                                    <span class="r na al nb"><a rel="noopener" href="/@johncwelch?source=follow_footer--------------------------follow_footer-"><img alt="John C. Welch" class="r fi ne dt" src="https://miro.medium.com/fit/c/160/160/0*qPHQu8WqsC6cV_ud.jpg" width="80" height="80" /></a></span>
                                                </div>
                                                <div class="nf r ng">
                                                    <p class="bn fo nh gk ni bs nj">
                                                        <span class="r na al nb">Written by</span>
                                                    </p>
                                                </div>
                                                <div class="nf nk n ng">
                                                    <div class="ai n o da">
                                                        <h2 class="bn db nl nm de">
                                                            <span class="r na al nb"><a class="bh bi at au av aw ax ay az ba bj bk bd bl bm" rel="noopener" href="/@johncwelch?source=follow_footer--------------------------follow_footer-">John C. Welch</a></span>
                                                        </h2>
                                                        <div class="r g">
                                                            <span class="r na al nb"><span><button class="nn de q fy fz ga gb gc ba bl gd ge gf gg gh gi gj bn b bo bp bq br gm gn ck go gp">Follow</button></span></span>
                                                        </div>
                                                    </div>
                                                </div>
                                                <div class="nf no r ng ao">
                                                    <div class="np r">
                                                        <h4 class="bn fo nq nr bs"></h4>
                                                    </div>
                                                    <div class="an ns ao">
                                                        <span><button class="nn de q fy fz ga gb gc ba bl gd ge gf gg gh gi gj bn b bo bp bq br gm gn ck go gp">Follow</button></span>
                                                    </div>
                                                </div>
                                            </div>
                                        </div>
                                        <div class="an ao">
                                            <div class="nt r">
                                                <div class="n cz">
                                                    <div class="nu r">
                                                        <a rel="noopener" href="/@johncwelch?source=follow_footer--------------------------follow_footer-"><img alt="John C. Welch" class="r fi nv nw" src="https://miro.medium.com/fit/c/80/80/0*qPHQu8WqsC6cV_ud.jpg" width="40" height="40" /></a>
                                                    </div>
                                                    <div class="fl r">
                                                        <p class="bn fo nx ny ni bs nj">
                                                            Written by
                                                        </p>
                                                        <div class="n cz">
                                                            <h2 class="bn db nq nz de">
                                                                <a class="bh bi at au av aw ax ay az ba bj bk bd bl bm" rel="noopener" href="/@johncwelch?source=follow_footer--------------------------follow_footer-">John C. Welch</a>
                                                            </h2>
                                                            <div class="fl r">
                                                                <span><button class="fx de q fy fz ga gb gc ba bl gd ge gf gg gh gi gj bn b bo gk gl br gm gn ck go gp">Follow</button></span>
                                                            </div>
                                                        </div>
                                                        <div class="oa r">
                                                            <h4 class="bn fo fp bp bs"></h4>
                                                        </div>
                                                    </div>
                                                </div>
                                            </div>
                                        </div>
                                    </div>
                                    <div class="ob mv r mx oc y"></div>
                                </div>
                            </div>
                            <div class="od r oe y">
                                <div class="n p">
                                    <div class="z ab ac ae af ag ah ai">
                                        <div class="of og r">
                                            <div class="oh oi oj og r ok ol">
                                                <h2 class="bn db om hg on hk oo ho op hs oq hw de">
                                                    More From Medium
                                                </h2>
                                            </div>
                                            <div class="ly n cz lp or os ot ou ov ow ox oy oz pa pb pc pd pe pf">
                                                <div class="pg ph pi pj pk pl pm pn po pp pq pr ps pt pu pv pw px py pz qa">
                                                    <div class="qb qc r">
                                                        <div class="ai by">
                                                            <div class="n da">
                                                                <div class="r qd qe qf qg">
                                                                    <div class="qh r">
                                                                        <h2 class="bn db qi qj qk ql qm qn qo qp qq qr de">
                                                                            <a rel="noopener" href="/@francoise_93266/the-pinterest-paradox-cupcakes-and-toxicity-57ed6bd76960?source=post_internal_links---------0------------------">The Pinterest Paradox: Cupcakes and Toxicity</a>
                                                                        </h2>
                                                                    </div>
                                                                    <div class="o n">
                                                                        <div class="ai r">
                                                                            <div class="n">
                                                                                <div style="flex:1">
                                                                                    <div class="bu n o fn">
                                                                                        <span class="bn b bo bp bq br r de q"><span class="bn fo gl bp de"><a class="bh bi at au av aw ax ay az ba fw bd bl bm" rel="noopener" href="/@francoise_93266?source=post_internal_links---------0------------------">Francoise Brougher</a></span></span>
                                                                                    </div>
                                                                                </div>
                                                                            </div>
                                                                        </div>
                                                                    </div>
                                                                </div>
                                                                <div class="fl gz r qs qt">
                                                                    <a class="bh bi at au av aw ax ay az ba bj bk bd bl bm r" rel="noopener" href="/@francoise_93266/the-pinterest-paradox-cupcakes-and-toxicity-57ed6bd76960?source=post_internal_links---------0------------------">
                                                                    <div class="jk r df dn">
                                                                        <div class="qu jm r">
                                                                            <div class="cd jh s t u by ai fq ji jj">
                                                                                <img class="s t u by ai jn jo jp" src="https://miro.medium.com/max/60/1*hn4v1tCaJy7cWMyb0bpNpQ.png?q=20" width="70" height="70" role="presentation" />
                                                                            </div><img class="cd jh qv qw qx qy qz ra rb rc rd re c" width="70" height="70" role="presentation" /><noscript><img class="qv qw qx qy qz ra rb rc rd re" src="https://miro.medium.com/fit/c/140/140/1*hn4v1tCaJy7cWMyb0bpNpQ.png" width="70" height="70" srcset="https://miro.medium.com/fit/c/96/140/1*hn4v1tCaJy7cWMyb0bpNpQ.png 48w, https://miro.medium.com/fit/c/140/140/1*hn4v1tCaJy7cWMyb0bpNpQ.png 70w" sizes="70px" role="presentation" /></noscript>
                                                                        </div>
                                                                    </div></a>
                                                                </div>
                                                            </div>
                                                        </div>
                                                    </div>
                                                </div>
                                                <div class="pg ph pi pj pk pl pm pn po pp pq pr ps pt pu pv pw px py pz qa">
                                                    <div class="qb qc r">
                                                        <div class="ai by">
                                                            <div class="n da">
                                                                <div class="r qd qe qf qg">
                                                                    <div class="qh r">
                                                                        <h2 class="bn db qi qj qk ql qm qn qo qp qq qr de">
                                                                            <a rel="noopener" href="/the-ascent/your-life-is-full-of-porn-stop-getting-yourself-off-c16cc0b092f1?source=post_internal_links---------1------------------">Your Life Is Full of Porn. Stop Getting Yourself Off.</a>
                                                                        </h2>
                                                                    </div>
                                                                    <div class="o n">
                                                                        <div class="ai r">
                                                                            <div class="n">
                                                                                <div style="flex:1">
                                                                                    <div class="bu n o fn">
                                                                                        <span class="bn b bo bp bq br r de q"><span class="bn fo gl bp de"><a class="bh bi at au av aw ax ay az ba fw bd bl bm" rel="noopener" href="/@timdenning?source=post_internal_links---------1------------------">Tim Denning</a> <span><!-- -->in<!-- --> <a href="https://theascent.pub/?source=post_internal_links---------1------------------" class="bh bi at au av aw ax ay az ba fw bd bl bm" rel="noopener">The Ascent</a></span></span></span>
                                                                                    </div>
                                                                                </div>
                                                                            </div>
                                                                        </div>
                                                                    </div>
                                                                </div>
                                                                <div class="fl gz r qs qt">
                                                                    <a class="bh bi at au av aw ax ay az ba bj bk bd bl bm r" rel="noopener" href="/the-ascent/your-life-is-full-of-porn-stop-getting-yourself-off-c16cc0b092f1?source=post_internal_links---------1------------------">
                                                                    <div class="jk r df dn">
                                                                        <div class="qu jm r">
                                                                            <div class="cd jh s t u by ai fq ji jj">
                                                                                <img class="s t u by ai jn jo jp" src="https://miro.medium.com/max/60/1*fkW0uY9JMZ6oUNyVRO6BBQ.jpeg?q=20" width="70" height="70" role="presentation" />
                                                                            </div><img class="cd jh qv qw qx qy qz ra rb rc rd re c" width="70" height="70" role="presentation" /><noscript><img class="qv qw qx qy qz ra rb rc rd re" src="https://miro.medium.com/fit/c/140/140/1*fkW0uY9JMZ6oUNyVRO6BBQ.jpeg" width="70" height="70" srcset="https://miro.medium.com/fit/c/96/140/1*fkW0uY9JMZ6oUNyVRO6BBQ.jpeg 48w, https://miro.medium.com/fit/c/140/140/1*fkW0uY9JMZ6oUNyVRO6BBQ.jpeg 70w" sizes="70px" role="presentation" /></noscript>
                                                                        </div>
                                                                    </div></a>
                                                                </div>
                                                            </div>
                                                        </div>
                                                    </div>
                                                </div>
                                                <div class="pg ph pi pj pk pl pm pn po pp pq pr ps pt pu pv pw px py pz qa">
                                                    <div class="qb qc r">
                                                        <div class="ai by">
                                                            <div class="n da">
                                                                <div class="r qd qe qf qg">
                                                                    <div class="qh r">
                                                                        <h2 class="bn db qi qj qk ql qm qn qo qp qq qr de">
                                                                            <a rel="noopener" href="/@justiceforfahim/mourning-my-baby-brother-fahim-238dae9a4372?source=post_internal_links---------2------------------">Mourning my baby brother, Fahim</a>
                                                                        </h2>
                                                                    </div>
                                                                    <div class="o n">
                                                                        <div class="ai r">
                                                                            <div class="n">
                                                                                <div style="flex:1">
                                                                                    <div class="bu n o fn">
                                                                                        <span class="bn b bo bp bq br r de q"><span class="bn fo gl bp de"><a class="bh bi at au av aw ax ay az ba fw bd bl bm" rel="noopener" href="/@justiceforfahim?source=post_internal_links---------2------------------">Justiceforfahim</a></span></span>
                                                                                    </div>
                                                                                </div>
                                                                            </div>
                                                                        </div>
                                                                    </div>
                                                                </div>
                                                                <div class="fl gz r qs qt">
                                                                    <a class="bh bi at au av aw ax ay az ba bj bk bd bl bm r" rel="noopener" href="/@justiceforfahim/mourning-my-baby-brother-fahim-238dae9a4372?source=post_internal_links---------2------------------">
                                                                    <div class="jk r df dn">
                                                                        <div class="qu jm r">
                                                                            <div class="cd jh s t u by ai fq ji jj">
                                                                                <img class="s t u by ai jn jo jp" src="https://miro.medium.com/max/60/1*HizZro5r4AJ8Fj_xjVUzrA.jpeg?q=20" width="70" height="70" role="presentation" />
                                                                            </div><img class="cd jh qv qw qx qy qz ra rb rc rd re c" width="70" height="70" role="presentation" /><noscript><img class="qv qw qx qy qz ra rb rc rd re" src="https://miro.medium.com/fit/c/140/140/1*HizZro5r4AJ8Fj_xjVUzrA.jpeg" width="70" height="70" srcset="https://miro.medium.com/fit/c/96/140/1*HizZro5r4AJ8Fj_xjVUzrA.jpeg 48w, https://miro.medium.com/fit/c/140/140/1*HizZro5r4AJ8Fj_xjVUzrA.jpeg 70w" sizes="70px" role="presentation" /></noscript>
                                                                        </div>
                                                                    </div></a>
                                                                </div>
                                                            </div>
                                                        </div>
                                                    </div>
                                                </div>
                                                <div class="pg ph pi pj pk pl pm pn po pp pq pr ps pt pu pv pw px py pz qa">
                                                    <div class="qb qc r">
                                                        <div class="ai by">
                                                            <div class="n da">
                                                                <div class="r qd qe qf qg">
                                                                    <div class="qh r">
                                                                        <h2 class="bn db qi qj qk ql qm qn qo qp qq qr de">
                                                                            <a rel="noopener" href="/refinery29/im-a-sugar-baby-this-is-how-much-i-get-paid-to-date-9cf4ec1c8e26?source=post_internal_links---------3------------------">I’m A Sugar Baby-&amp; This Is How Much I Get Paid To Date</a>
                                                                        </h2>
                                                                    </div>
                                                                    <div class="o n">
                                                                        <div class="ai r">
                                                                            <div class="n">
                                                                                <div style="flex:1">
                                                                                    <div class="bu n o fn">
                                                                                        <span class="bn b bo bp bq br r de q"><span class="bn fo gl bp de"><a class="bh bi at au av aw ax ay az ba fw bd bl bm" rel="noopener" href="/@refinery29?source=post_internal_links---------3------------------">Refinery29 UK</a> <span><!-- -->in<!-- --> <a href="/refinery29?source=post_internal_links---------3------------------" class="bh bi at au av aw ax ay az ba fw bd bl bm" rel="noopener">Refinery29</a></span></span></span>
                                                                                    </div>
                                                                                </div>
                                                                            </div>
                                                                        </div>
                                                                    </div>
                                                                </div>
                                                                <div class="fl gz r qs qt">
                                                                    <a class="bh bi at au av aw ax ay az ba bj bk bd bl bm r" rel="noopener" href="/refinery29/im-a-sugar-baby-this-is-how-much-i-get-paid-to-date-9cf4ec1c8e26?source=post_internal_links---------3------------------">
                                                                    <div class="jk r df dn">
                                                                        <div class="qu jm r">
                                                                            <div class="cd jh s t u by ai fq ji jj">
                                                                                <img class="s t u by ai jn jo jp" src="https://miro.medium.com/max/60/0*vGxs86f0dmFewdXV.jpg?q=20" width="70" height="70" role="presentation" />
                                                                            </div><img class="cd jh qv qw qx qy qz ra rb rc rd re c" width="70" height="70" role="presentation" /><noscript><img class="qv qw qx qy qz ra rb rc rd re" src="https://miro.medium.com/fit/c/140/140/0*vGxs86f0dmFewdXV.jpg" width="70" height="70" srcset="https://miro.medium.com/fit/c/96/140/0*vGxs86f0dmFewdXV.jpg 48w, https://miro.medium.com/fit/c/140/140/0*vGxs86f0dmFewdXV.jpg 70w" sizes="70px" role="presentation" /></noscript>
                                                                        </div>
                                                                    </div></a>
                                                                </div>
                                                            </div>
                                                        </div>
                                                    </div>
                                                </div>
                                                <div class="pg ph pi pj pk pl pm pn po pp pq pr ps pt pu pv pw px py pz qa">
                                                    <div class="qb qc r">
                                                        <div class="ai by">
                                                            <div class="n da">
                                                                <div class="r qd qe qf qg">
                                                                    <div class="qh r">
                                                                        <h2 class="bn db qi qj qk ql qm qn qo qp qq qr de">
                                                                            <a href="https://eand.co/can-kamala-harris-and-joe-biden-defeat-trump-94a10bc60f2b?source=post_internal_links---------4------------------" rel="noopener nofollow">Can Kamala Harris and Joe Biden Defeat Trump?</a>
                                                                        </h2>
                                                                    </div>
                                                                    <div class="o n">
                                                                        <div class="ai r">
                                                                            <div class="n">
                                                                                <div style="flex:1">
                                                                                    <div class="bu n o fn">
                                                                                        <span class="bn b bo bp bq br r de q"><span class="bn fo gl bp de"><a class="bh bi at au av aw ax ay az ba fw bd bl bm" rel="noopener" href="/@umairh?source=post_internal_links---------4------------------">umair haque</a> <span><!-- -->in<!-- --> <a href="https://eand.co/?source=post_internal_links---------4------------------" class="bh bi at au av aw ax ay az ba fw bd bl bm" rel="noopener nofollow">Eudaimonia and Co</a></span></span></span>
                                                                                    </div>
                                                                                </div>
                                                                            </div>
                                                                        </div>
                                                                    </div>
                                                                </div>
                                                                <div class="fl gz r qs qt">
                                                                    <a href="https://eand.co/can-kamala-harris-and-joe-biden-defeat-trump-94a10bc60f2b?source=post_internal_links---------4------------------" class="bh bi at au av aw ax ay az ba bj bk bd bl bm r" rel="noopener nofollow">
                                                                    <div class="jk r df dn">
                                                                        <div class="qu jm r">
                                                                            <div class="cd jh s t u by ai fq ji jj">
                                                                                <img class="s t u by ai jn jo jp" src="https://miro.medium.com/max/60/1*6prX9w38K3M3PEZG9XkbFg.jpeg?q=20" width="70" height="70" role="presentation" />
                                                                            </div><img class="cd jh qv qw qx qy qz ra rb rc rd re c" width="70" height="70" role="presentation" /><noscript><img class="qv qw qx qy qz ra rb rc rd re" src="https://miro.medium.com/fit/c/140/140/1*6prX9w38K3M3PEZG9XkbFg.jpeg" width="70" height="70" srcset="https://miro.medium.com/fit/c/96/140/1*6prX9w38K3M3PEZG9XkbFg.jpeg 48w, https://miro.medium.com/fit/c/140/140/1*6prX9w38K3M3PEZG9XkbFg.jpeg 70w" sizes="70px" role="presentation" /></noscript>
                                                                        </div>
                                                                    </div></a>
                                                                </div>
                                                            </div>
                                                        </div>
                                                    </div>
                                                </div>
                                                <div class="pg ph pi pj pk pl pm pn po pp pq pr ps pt pu pv pw px py pz qa">
                                                    <div class="qb qc r">
                                                        <div class="ai by">
                                                            <div class="n da">
                                                                <div class="r qd qe qf qg">
                                                                    <div class="qh r">
                                                                        <h2 class="bn db qi qj qk ql qm qn qo qp qq qr de">
                                                                            <a href="https://towardsdatascience.com/best-data-science-certification-4f221ac3dbe3?source=post_internal_links---------5------------------" rel="noopener">The Best Data Science Certification You’ve Never Heard Of</a>
                                                                        </h2>
                                                                    </div>
                                                                    <div class="o n">
                                                                        <div class="ai r">
                                                                            <div class="n">
                                                                                <div style="flex:1">
                                                                                    <div class="bu n o fn">
                                                                                        <span class="bn b bo bp bq br r de q"><span class="bn fo gl bp de"><a class="bh bi at au av aw ax ay az ba fw bd bl bm" rel="noopener" href="/@nicolejaneway?source=post_internal_links---------5------------------">Nicole Janeway Bills</a> <span><!-- -->in<!-- --> <a href="https://towardsdatascience.com/?source=post_internal_links---------5------------------" class="bh bi at au av aw ax ay az ba fw bd bl bm" rel="noopener">Towards Data Science</a></span></span></span>
                                                                                    </div>
                                                                                </div>
                                                                            </div>
                                                                        </div>
                                                                    </div>
                                                                </div>
                                                                <div class="fl gz r qs qt">
                                                                    <a href="https://towardsdatascience.com/best-data-science-certification-4f221ac3dbe3?source=post_internal_links---------5------------------" class="bh bi at au av aw ax ay az ba bj bk bd bl bm r" rel="noopener">
                                                                    <div class="jk r df dn">
                                                                        <div class="qu jm r">
                                                                            <div class="cd jh s t u by ai fq ji jj">
                                                                                <img class="s t u by ai jn jo jp" src="https://miro.medium.com/max/60/1*t43PDV1g9w-DvjMugoks2A.jpeg?q=20" width="70" height="70" role="presentation" />
                                                                            </div><img class="cd jh qv qw qx qy qz ra rb rc rd re c" width="70" height="70" role="presentation" /><noscript><img class="qv qw qx qy qz ra rb rc rd re" src="https://miro.medium.com/fit/c/140/140/1*t43PDV1g9w-DvjMugoks2A.jpeg" width="70" height="70" srcset="https://miro.medium.com/fit/c/96/140/1*t43PDV1g9w-DvjMugoks2A.jpeg 48w, https://miro.medium.com/fit/c/140/140/1*t43PDV1g9w-DvjMugoks2A.jpeg 70w" sizes="70px" role="presentation" /></noscript>
                                                                        </div>
                                                                    </div></a>
                                                                </div>
                                                            </div>
                                                        </div>
                                                    </div>
                                                </div>
                                                <div class="pg ph pi pj pk pl pm pn po pp pq pr ps pt pu pv pw px py pz qa">
                                                    <div class="qb qc r">
                                                        <div class="ai by">
                                                            <div class="n da">
                                                                <div class="r qd qe qf qg">
                                                                    <div class="qh r">
                                                                        <h2 class="bn db qi qj qk ql qm qn qo qp qq qr de">
                                                                            <a rel="noopener" href="/javascript-in-plain-english/typescript-4-0-i-want-a-list-of-generic-params-with-good-labels-c6087d2df935?source=post_internal_links---------6------------------">TypeScript 4.0 finally delivers what I’ve been waiting for</a>
                                                                        </h2>
                                                                    </div>
                                                                    <div class="o n">
                                                                        <div class="ai r">
                                                                            <div class="n">
                                                                                <div style="flex:1">
                                                                                    <div class="bu n o fn">
                                                                                        <span class="bn b bo bp bq br r de q"><span class="bn fo gl bp de"><a class="bh bi at au av aw ax ay az ba fw bd bl bm" rel="noopener" href="/@nathanielkessler?source=post_internal_links---------6------------------">Nathaniel Kessler</a> <span><!-- -->in<!-- --> <a href="/javascript-in-plain-english?source=post_internal_links---------6------------------" class="bh bi at au av aw ax ay az ba fw bd bl bm" rel="noopener">JavaScript In Plain English</a></span></span></span>
                                                                                    </div>
                                                                                </div>
                                                                            </div>
                                                                        </div>
                                                                    </div>
                                                                </div>
                                                                <div class="fl gz r qs qt">
                                                                    <a class="bh bi at au av aw ax ay az ba bj bk bd bl bm r" rel="noopener" href="/javascript-in-plain-english/typescript-4-0-i-want-a-list-of-generic-params-with-good-labels-c6087d2df935?source=post_internal_links---------6------------------">
                                                                    <div class="jk r df dn">
                                                                        <div class="qu jm r">
                                                                            <div class="cd jh s t u by ai fq ji jj">
                                                                                <img class="s t u by ai jn jo jp" src="https://miro.medium.com/max/60/1*G00zmJivkNGN1L6fDo9vnQ.png?q=20" width="70" height="70" role="presentation" />
                                                                            </div><img class="cd jh qv qw qx qy qz ra rb rc rd re c" width="70" height="70" role="presentation" /><noscript><img class="qv qw qx qy qz ra rb rc rd re" src="https://miro.medium.com/fit/c/140/140/1*G00zmJivkNGN1L6fDo9vnQ.png" width="70" height="70" srcset="https://miro.medium.com/fit/c/96/140/1*G00zmJivkNGN1L6fDo9vnQ.png 48w, https://miro.medium.com/fit/c/140/140/1*G00zmJivkNGN1L6fDo9vnQ.png 70w" sizes="70px" role="presentation" /></noscript>
                                                                        </div>
                                                                    </div></a>
                                                                </div>
                                                            </div>
                                                        </div>
                                                    </div>
                                                </div>
                                                <div class="pg ph pi pj pk pl pm pn po pp pq pr ps pt pu pv pw px py pz qa">
                                                    <div class="qb qc r">
                                                        <div class="ai by">
                                                            <div class="n da">
                                                                <div class="r qd qe qf qg">
                                                                    <div class="qh r">
                                                                        <h2 class="bn db qi qj qk ql qm qn qo qp qq qr de">
                                                                            <a href="https://eand.co/america-and-the-axis-of-idiots-25a86ed4a421?source=post_internal_links---------7------------------" rel="noopener nofollow">America and the Axis of Idiots</a>
                                                                        </h2>
                                                                    </div>
                                                                    <div class="o n">
                                                                        <div class="ai r">
                                                                            <div class="n">
                                                                                <div style="flex:1">
                                                                                    <div class="bu n o fn">
                                                                                        <span class="bn b bo bp bq br r de q"><span class="bn fo gl bp de"><a class="bh bi at au av aw ax ay az ba fw bd bl bm" rel="noopener" href="/@umairh?source=post_internal_links---------7------------------">umair haque</a> <span><!-- -->in<!-- --> <a href="https://eand.co/?source=post_internal_links---------7------------------" class="bh bi at au av aw ax ay az ba fw bd bl bm" rel="noopener nofollow">Eudaimonia and Co</a></span></span></span>
                                                                                    </div>
                                                                                </div>
                                                                            </div>
                                                                        </div>
                                                                    </div>
                                                                </div>
                                                                <div class="fl gz r qs qt">
                                                                    <a href="https://eand.co/america-and-the-axis-of-idiots-25a86ed4a421?source=post_internal_links---------7------------------" class="bh bi at au av aw ax ay az ba bj bk bd bl bm r" rel="noopener nofollow">
                                                                    <div class="jk r df dn">
                                                                        <div class="qu jm r">
                                                                            <div class="cd jh s t u by ai fq ji jj">
                                                                                <img class="s t u by ai jn jo jp" src="https://miro.medium.com/max/60/1*yNRBQduBLs8p_tEpShEGzQ.jpeg?q=20" width="70" height="70" role="presentation" />
                                                                            </div><img class="cd jh qv qw qx qy qz ra rb rc rd re c" width="70" height="70" role="presentation" /><noscript><img class="qv qw qx qy qz ra rb rc rd re" src="https://miro.medium.com/fit/c/140/140/1*yNRBQduBLs8p_tEpShEGzQ.jpeg" width="70" height="70" srcset="https://miro.medium.com/fit/c/96/140/1*yNRBQduBLs8p_tEpShEGzQ.jpeg 48w, https://miro.medium.com/fit/c/140/140/1*yNRBQduBLs8p_tEpShEGzQ.jpeg 70w" sizes="70px" role="presentation" /></noscript>
                                                                        </div>
                                                                    </div></a>
                                                                </div>
                                                            </div>
                                                        </div>
                                                    </div>
                                                </div>
                                            </div>
                                        </div>
                                    </div>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
                <div class="rf r rg rh">
                    <div class="n p">
                        <div class="z ab ac ae af ag ah ai">
                            <div class="ri rj my n da g">
                                <div class="rk n da">
                                    <div class="rl r rm">
                                        <div class="qh r">
                                            <a class="bh bi at au av aw ax ay az ba rn ro bd rp rq" rel="noopener" href="/about?autoplay=1&amp;source=post_page-----d146a92473a1----------------------">
                                            <h2 class="bn db dc dd rr">
                                                Discover <!-- -->Medium
                                            </h2></a>
                                        </div>
                                        <h4 class="bn fo fp bp rs">
                                            Welcome to a place where words matter. On <!-- -->Medium<!-- -->, smart voices and original ideas take center stage - with no ads in sight.<!-- --> <a class="bh bi at au av aw ax ay az ba bd rp rq rt" rel="noopener" href="/about?autoplay=1&amp;source=post_page-----d146a92473a1----------------------">Watch</a>
                                        </h4>
                                    </div>
                                    <div class="rl r rm">
                                        <div class="qh r">
                                            <a href="https://medium.com/topics?source=post_page-----d146a92473a1----------------------" class="bh bi at au av aw ax ay az ba rn ro bd rp rq" rel="noopener">
                                            <h2 class="bn db dc dd rr">
                                                Make <!-- -->Medium<!-- --> yours
                                            </h2></a>
                                        </div>
                                        <h4 class="bn fo fp bp rs">
                                            Follow all the topics you care about, and we’ll deliver the best stories for you to your homepage and inbox.<!-- --> <a href="https://medium.com/topics?source=post_page-----d146a92473a1----------------------" class="bh bi at au av aw ax ay az ba bd rp rq rt" rel="noopener">Explore</a>
                                        </h4>
                                    </div>
                                    <div class="rl r rm">
                                        <div class="qh r">
                                            <a class="bh bi at au av aw ax ay az ba rn ro bd rp rq" rel="noopener" href="/membership?source=post_page-----d146a92473a1----------------------">
                                            <h2 class="bn db dc dd rr">
                                                Become a member
                                            </h2></a>
                                        </div>
                                        <h4 class="bn fo fp bp rs">
                                            Get unlimited access to the best stories on <!-- -->Medium<!-- --> — and support writers while you’re at it. Just $5/month.<!-- --> <a class="bh bi at au av aw ax ay az ba bd rp rq rt" rel="noopener" href="/membership?source=post_page-----d146a92473a1----------------------">Upgrade</a>
                                        </h4>
                                    </div>
                                </div>
                            </div>
                            <div class="n ke">
                                <div class="n o da">
                                    <a class="bh bi at au av aw ax ay az ba rn ro bd rp rq" rel="noopener" href="/?source=post_page-----d146a92473a1----------------------"><svg height="22" width="112" viewbox="0 0 111.5 22" class="ru">
                                    <path d="M56.3 19.5c0 .4 0 .5.3.7l1.5 1.4v.1h-6.5V19c-.7 1.8-2.4 3-4.3 3-3.3 0-5.8-2.6-5.8-7.5 0-4.5 2.6-7.6 6.3-7.6 1.6-.1 3.1.8 3.8 2.4V3.2c0-.3-.1-.6-.3-.7l-1.4-1.4V1l6.5-.8v19.3zm-4.8-.8V9.5c-.5-.6-1.2-.9-1.9-.9-1.6 0-3.1 1.4-3.1 5.7 0 4 1.3 5.4 3 5.4.8.1 1.6-.3 2-1zm9.1 3.1V9.4c0-.3-.1-.6-.3-.7l-1.4-1.5v-.1h6.5v12.5c0 .4 0 .5.3.7l1.4 1.4v.1h-6.5zm-.2-19.2C60.4 1.2 61.5 0 63 0c1.4 0 2.6 1.2 2.6 2.6S64.4 5.3 63 5.3a2.6 2.6 0 0 1-2.6-2.7zm22.5 16.9c0 .4 0 .5.3.7l1.5 1.4v.1h-6.5v-3.2c-.6 2-2.4 3.4-4.5 3.4-2.9 0-4.4-2.1-4.4-6.2 0-1.9 0-4.1.1-6.5 0-.3-.1-.5-.3-.7L67.7 7v.1H74v8c0 2.6.4 4.4 2 4.4.9-.1 1.7-.6 2.1-1.3V9.5c0-.3-.1-.6-.3-.7l-1.4-1.5v-.2h6.5v12.4zm22 2.3c0-.5.1-6.5.1-7.9 0-2.6-.4-4.5-2.2-4.5-.9 0-1.8.5-2.3 1.3.2.8.3 1.7.3 2.5 0 1.8-.1 4.2-.1 6.5 0 .3.1.5.3.7l1.5 1.4v.1H96c0-.4.1-6.5.1-7.9 0-2.7-.4-4.5-2.2-4.5-.9 0-1.7.5-2.2 1.3v9c0 .4 0 .5.3.7l1.4 1.4v.1h-6.5V9.5c0-.3-.1-.6-.3-.7l-1.4-1.5v-.2h6.5v3.1a4.6 4.6 0 0 1 4.6-3.4c2.2 0 3.6 1.2 4.2 3.5.7-2.1 2.7-3.6 4.9-3.5 2.9 0 4.5 2.2 4.5 6.2 0 1.9-.1 4.2-.1 6.5-.1.3.1.6.3.7l1.4 1.4v.1h-6.6zm-81.4-2l1.9 1.9v.1h-9.8v-.1l2-1.9c.2-.2.3-.4.3-.7V7.3c0-.5 0-1.2.1-1.8L11.4 22h-.1L4.5 6.8c-.1-.4-.2-.4-.3-.6v10c-.1.7 0 1.3.3 1.9l2.7 3.6v.1H0v-.1L2.7 18c.3-.6.4-1.3.3-1.9v-11c0-.5-.1-1.1-.5-1.5L.7 1.1V1h7l5.8 12.9L18.6 1h6.8v.1l-1.9 2.2c-.2.2-.3.5-.3.7v15.2c0 .2.1.5.3.6zm7.6-5.9c0 3.8 1.9 5.3 4.2 5.3 1.9.1 3.6-1 4.4-2.7h.1c-.8 3.7-3.1 5.5-6.5 5.5-3.7 0-7.2-2.2-7.2-7.4 0-5.5 3.5-7.6 7.3-7.6 3.1 0 6.4 1.5 6.4 6.2v.8h-8.7zm0-.8h4.3v-.8c0-3.9-.8-4.9-2-4.9-1.4.1-2.3 1.6-2.3 5.7z"></path></svg></a>
                                    <div class="oa rv n da rw al">
                                        <h4 class="bn fo fp bp rs"></h4>
                                    </div><a class="bh bi at au av aw ax ay az ba fw bd rp rq" rel="noopener" href="/about?autoplay=1&amp;source=post_page-----d146a92473a1----------------------">About</a>
                                    <h4 class="bn fo nq nr rr">
                                        <a href="https://help.medium.com/hc/en-us?source=post_page-----d146a92473a1----------------------" class="bh bi at au av aw ax ay az ba fw bd rp rq" rel="noopener">Help</a>
                                    </h4>
                                    <h4 class="bn fo nq nr rr">
                                        <a href="https://policy.medium.com/medium-terms-of-service-9db0094a1e0f?source=post_page-----d146a92473a1----------------------" class="bh bi at au av aw ax ay az ba fw bd rp rq" rel="noopener">Legal</a>
                                    </h4>
                                </div>
                            </div>
                            <div class="an rx ry al">
                                <h4 class="bn fo nq nr rs">
                                    Get the Medium app
                                </h4>
                            </div>
                            <div class="an rx cs al rz">
                                <div class="sa r">
                                    <a href="https://itunes.apple.com/app/medium-everyones-stories/id828256236?pt=698524&amp;mt=8&amp;ct=post_page&amp;source=post_page-----d146a92473a1----------------------" class="bh bi at au av aw ax ay az ba rn ro bd rp rq" rel="noopener nofollow"><img alt="A button that says 'Download on the App Store', and if clicked it will lead you to the iOS App store" class="" src="https://miro.medium.com/max/270/1*Crl55Tm6yDNMoucPo1tvDg.png" width="135" height="41" /></a>
                                </div>
                                <div class="r">
                                    <a href="https://play.google.com/store/apps/details?id=com.medium.reader&amp;source=post_page-----d146a92473a1----------------------" class="bh bi at au av aw ax ay az ba rn ro bd rp rq" rel="noopener nofollow"><img alt="A button that says 'Get it on, Google Play', and if clicked it will lead you to the Google Play store" class="" src="https://miro.medium.com/max/270/1*W_RAPQ62h0em559zluJLdQ.png" width="135" height="41" /></a>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </div>
        <script>
        <![CDATA[
        window.__BUILD_ID__ = "main-20200813-221821-b007452387"
        ]]>
        </script>
        <script>
        <![CDATA[
        window.__GRAPHQL_URI__ = "https://medium.com/_/graphql"
        ]]>
        </script>
        <script>
        <![CDATA[
        window.__PRELOADED_STATE__ = {"auroraPostPage":{"isAuroraPostPageEnabled":false},"config":{"nodeEnv":"production","version":"main-20200813-221821-b007452387","productName":"Medium","publicUrl":"https:\u002F\u002Fcdn-client.medium.com\u002Flite","authDomain":"medium.com","authGoogleClientId":"216296035834-k1k6qe060s2tp2a2jam4ljdcms00sttg.apps.googleusercontent.com","favicon":"production","glyphUrl":"https:\u002F\u002Fglyph.medium.com","branchKey":"key_live_ofxXr2qTrrU9NqURK8ZwEhknBxiI6KBm","lightStep":{"name":"lite-web","host":"lightstep.medium.systems","token":"ce5be895bef60919541332990ac9fef2","appVersion":"main-20200813-221821-b007452387"},"algolia":{"appId":"MQ57UUUQZ2","apiKeySearch":"394474ced050e3911ae2249ecc774921","indexPrefix":"medium_","host":"-dsn.algolia.net"},"recaptchaKey":"6Lfc37IUAAAAAKGGtC6rLS13R1Hrw_BqADfS1LRk","recaptcha3Key":"6Lf8R9wUAAAAABMI_85Wb8melS7Zj6ziuf99Yot5","datadog":{"clientToken":"pub853ea8d17ad6821d9f8f11861d23dfed","context":{"deployment":{"target":"production","tag":"main-20200813-221821-b007452387","commit":"b00745238769aa939b76e1f378ff3835829c632f"}},"datacenter":"us"},"isAmp":false,"googleAnalyticsCode":"UA-24232453-2","signInWallCustomDomainCollectionIds":["3a8144eabfe3","336d898217ee","61061eb0c96b","138adf9c44c","819cc2aaeee0"],"mediumOwnedAndOperatedCollectionIds":["544c7006046e","bcc38c8f6edf","444d13b52878","8d6b8a439e32","92d2092dc598","1285ba81cada","cb8577c9149e","8ccfed20cbb2","ae2a65f35510","3f6ecf56618","7b6769f2748b","fc8964313712","ef8e90590e66","191186aaafa0","d944778ce714","bdc4052bbdba","88d9857e584e","9dc80918cc93","8a9336e5bb4"],"tierOneDomains":["medium.com","thebolditalic.com","arcdigital.media","towardsdatascience.com","uxdesign.cc","codeburst.io","psiloveyou.xyz","writingcooperative.com","entrepreneurshandbook.co","prototypr.io","betterhumans.coach.me","theascent.pub"],"defaultImages":{"avatar":{"imageId":"1*dmbNkD5D-u45r44go_cf0g.png","height":150,"width":150},"orgLogo":{"imageId":"1*OMF3fSqH8t4xBJ9-6oZDZw.png","height":106,"width":545},"postLogo":{"imageId":"1*3sela1OADrJr7dJk_CXaEQ.png","height":810,"width":1440},"postPreviewImage":{"imageId":"1*hn4v1tCaJy7cWMyb0bpNpQ.png","height":386,"width":579}},"performanceTags":[],"collectionStructuredData":{"8d6b8a439e32":{"name":"Elemental","data":{"@type":"NewsMediaOrganization","ethicsPolicy":"https:\u002F\u002Fhelp.medium.com\u002Fhc\u002Fen-us\u002Farticles\u002F360043290473","logo":{"@type":"ImageObject","url":"https:\u002F\u002Fcdn-images-1.medium.com\u002Fmax\u002F980\u002F1*[email protected]","width":980,"height":159}}},"3f6ecf56618":{"name":"Forge","data":{"@type":"NewsMediaOrganization","ethicsPolicy":"https:\u002F\u002Fhelp.medium.com\u002Fhc\u002Fen-us\u002Farticles\u002F360043290473","logo":{"@type":"ImageObject","url":"https:\u002F\u002Fcdn-images-1.medium.com\u002Fmax\u002F596\u002F1*[email protected]","width":596,"height":183}}},"ae2a65f35510":{"name":"GEN","data":{"@type":"NewsMediaOrganization","ethicsPolicy":"https:\u002F\u002Fhelp.medium.com\u002Fhc\u002Fen-us\u002Farticles\u002F360043290473","logo":{"@type":"ImageObject","url":"https:\u002F\u002Fmiro.medium.com\u002Fmax\u002F264\u002F1*RdVZMdvfV3YiZTw6mX7yWA.png","width":264,"height":140}}},"88d9857e584e":{"name":"LEVEL","data":{"@type":"NewsMediaOrganization","ethicsPolicy":"https:\u002F\u002Fhelp.medium.com\u002Fhc\u002Fen-us\u002Farticles\u002F360043290473","logo":{"@type":"ImageObject","url":"https:\u002F\u002Fmiro.medium.com\u002Fmax\u002F540\u002F1*JqYMhNX6KNNb2UlqGqO2WQ.png","width":540,"height":108}}},"7b6769f2748b":{"name":"Marker","data":{"@type":"NewsMediaOrganization","ethicsPolicy":"https:\u002F\u002Fhelp.medium.com\u002Fhc\u002Fen-us\u002Farticles\u002F360043290473","logo":{"@type":"ImageObject","url":"https:\u002F\u002Fcdn-images-1.medium.com\u002Fmax\u002F383\u002F1*[email protected]","width":383,"height":92}}},"444d13b52878":{"name":"OneZero","data":{"@type":"NewsMediaOrganization","ethicsPolicy":"https:\u002F\u002Fhelp.medium.com\u002Fhc\u002Fen-us\u002Farticles\u002F360043290473","logo":{"@type":"ImageObject","url":"https:\u002F\u002Fmiro.medium.com\u002Fmax\u002F540\u002F1*cw32fIqCbRWzwJaoQw6BUg.png","width":540,"height":123}}},"8ccfed20cbb2":{"name":"Zora","data":{"@type":"NewsMediaOrganization","ethicsPolicy":"https:\u002F\u002Fhelp.medium.com\u002Fhc\u002Fen-us\u002Farticles\u002F360043290473","logo":{"@type":"ImageObject","url":"https:\u002F\u002Fmiro.medium.com\u002Fmax\u002F540\u002F1*tZUQqRcCCZDXjjiZ4bDvgQ.png","width":540,"height":106}}}},"embeddedPostIds":{"coronavirus":"cd3010f9d81f"},"sharedCdcMessaging":{"COVID_APPLICABLE_TAG_SLUGS":["pandemic","epidemic","coronavirus","covid19","co-vid-19","containment","self-care","flatten-the-curve","public-health","virus","public-health-crisis","quarantine","self-quarantine","zika","corona","disease-prevention","wuhan","chinavirus","outbreak","influenza","socialdistancing","social-distance","flu","vaccines","healthcare","medicine","conspiracy-theories","conspiracy","virality","epidemia","pandemia","salud","corona-e-virus","coronavirus-covid19","covid-19","covid-19-symptoms","covid-19-crisis","covid-19-testing","covid-19-treatment","coronavirus-update","coronavirus-diaries"],"COVID_APPLICABLE_TOPIC_NAMES":["coronavirus"],"COVID_APPLICABLE_TOPIC_NAMES_FOR_TOPIC_PAGE":["coronavirus","health"],"COVID_MESSAGES":{"tierA":{"text":"For more information on the novel coronavirus and Covid-19, visit cdc.gov.","markups":[{"start":66,"end":73,"href":"https:\u002F\u002Fwww.cdc.gov\u002Fcoronavirus\u002F2019-nCoV"}]},"tierB":{"text":"Anyone can publish on Medium per our Policies, but we don’t fact-check every story. For more info about the coronavirus, see cdc.gov.","markups":[{"start":37,"end":45,"href":"https:\u002F\u002Fhelp.medium.com\u002Fhc\u002Fen-us\u002Fcategories\u002F201931128-Policies-Safety"},{"start":125,"end":132,"href":"https:\u002F\u002Fwww.cdc.gov\u002Fcoronavirus\u002F2019-nCoV"}]},"paywall":{"text":"This article has been made free for everyone, thanks to Medium Members. For more information on the novel coronavirus and Covid-19, visit cdc.gov.","markups":[{"start":56,"end":70,"href":"https:\u002F\u002Fmedium.com\u002Fmembership"},{"start":138,"end":145,"href":"https:\u002F\u002Fwww.cdc.gov\u002Fcoronavirus\u002F2019-nCoV"}]}},"COVID_BANNER_POST_ID_OVERRIDE_WHITELIST":["3b31a67bff4a"]},"embedPostRules":[],"recircOptions":{"v1":{"limit":3},"v2":{"limit":8}},"braintreeClientKey":"production_zjkj96jm_m56f8fqpf7ngnrd4","paypalClientId":"AXj1G4fotC2GE8KzWX9mSxCH1wmPE3nJglf4Z2ig_amnhvlMVX87otaq58niAg9iuLktVNF_1WCMnN7v"},"debug":{"requestId":"03e4b1e9-aa96-4f99-9f98-df3d01c65cb9","edge":"valencia","originalSpanCarrier":{"ot-tracer-spanid":"17d028ba431ac3ef","ot-tracer-traceid":"e2a575fa5e4cabed","ot-tracer-sampled":"true"}},"session":{"user":{"id":"lo_d4e92d369991"},"xsrf":"","isSpoofed":false},"stats":{"itemCount":0,"sending":false,"timeout":null,"backup":{}},"navigation":{"branch":{"show":null,"hasRendered":null,"blockedByCTA":false},"hideGoogleOneTap":false,"hasRenderedGoogleOneTap":null,"hasRenderedAlternateUserBanner":null,"currentLocation":"https:\u002F\u002Fmedium.com\u002F@johncwelch\u002Fsamantha-and-the-great-big-lie-d146a92473a1","host":"medium.com","hostname":"medium.com","susiModal":{"step":null,"operation":"register"},"postRead":false},"client":{"isBot":false,"isCustomDomain":false,"isEu":false,"isNativeMedium":false,"isSafariMobile":false,"inAppBrowserName":"","supportsWebp":false},"multiVote":{"clapsPerPost":{}},"tracing":{}}
        ]]>
        </script>
        <script>
        <![CDATA[
        window.__APOLLO_STATE__ = {"ROOT_QUERY.variantFlags.0":{"name":"allow_access","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.0.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.0.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.1":{"name":"allow_signup","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.1.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.1.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.2":{"name":"allow_test_auth","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.2.valueType","typename":"VariantFlagString"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.2.valueType":{"__typename":"VariantFlagString","value":"disallow"},"ROOT_QUERY.variantFlags.3":{"name":"assign_default_topic_to_posts","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.3.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.3.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.4":{"name":"available_annual_plan","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.4.valueType","typename":"VariantFlagString"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.4.valueType":{"__typename":"VariantFlagString","value":"2c754bcc2995"},"ROOT_QUERY.variantFlags.5":{"name":"available_monthly_plan","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.5.valueType","typename":"VariantFlagString"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.5.valueType":{"__typename":"VariantFlagString","value":"60e220181034"},"ROOT_QUERY.variantFlags.6":{"name":"bane_add_user","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.6.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.6.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.7":{"name":"bane_verify_domain","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.7.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.7.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.8":{"name":"branch_seo_metadata","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.8.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.8.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.9":{"name":"browsable_stream_config_bucket","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.9.valueType","typename":"VariantFlagString"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.9.valueType":{"__typename":"VariantFlagString","value":"curated-topics"},"ROOT_QUERY.variantFlags.10":{"name":"coronavirus_topic_recirc","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.10.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.10.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.11":{"name":"covid_19_cdc_banner","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.11.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.11.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.12":{"name":"default_seo_post_titles","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.12.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.12.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.13":{"name":"disable_android_subscription_activity_carousel","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.13.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.13.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.14":{"name":"disable_ios_resume_reading_toast","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.14.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.14.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.15":{"name":"disable_ios_subscription_activity_carousel","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.15.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.15.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.16":{"name":"disable_mobile_featured_chunk","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.16.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.16.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.17":{"name":"disable_post_recommended_from_friends_provider","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.17.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.17.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.18":{"name":"enable_alternate_onboarding_email_subject","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.18.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.18.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.19":{"name":"enable_android_local_currency","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.19.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.19.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.20":{"name":"enable_annual_renewal_reminder_email","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.20.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.20.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.21":{"name":"enable_app_flirty_thirty","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.21.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.21.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.22":{"name":"enable_apple_sign_in","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.22.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.22.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.23":{"name":"enable_apple_webhook","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.23.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.23.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.24":{"name":"enable_apple_webhook_renewal_status","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.24.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.24.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.25":{"name":"enable_aurora_about_page_routing","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.25.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.25.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.26":{"name":"enable_aurora_lightweight_flow","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.26.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.26.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.27":{"name":"enable_aurora_post_page","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.27.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.27.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.28":{"name":"enable_aurora_tag_page_routing","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.28.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.28.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.29":{"name":"enable_auto_forfeit_earnings","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.29.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.29.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.30":{"name":"enable_automated_mission_control_triggers","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.30.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.30.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.31":{"name":"enable_braintree_cancellation_with_cycles","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.31.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.31.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.32":{"name":"enable_braintree_integration","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.32.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.32.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.33":{"name":"enable_braintree_membership","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.33.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.33.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.34":{"name":"enable_braintree_paypal","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.34.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.34.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.35":{"name":"enable_braintree_update_payment_endpoint","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.35.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.35.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.36":{"name":"enable_braintree_webhook","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.36.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.36.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.37":{"name":"enable_branch_io","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.37.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.37.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.38":{"name":"enable_branch_text_me_the_app","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.38.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.38.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.39":{"name":"enable_branding","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.39.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.39.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.40":{"name":"enable_branding_fonts","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.40.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.40.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.41":{"name":"enable_cc_trial_member_onboarding_emails","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.41.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.41.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.42":{"name":"enable_cleansweep_double_writes","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.42.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.42.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.43":{"name":"enable_confirm_sign_in","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.43.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.43.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.44":{"name":"enable_cta_meter","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.44.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.44.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.45":{"name":"enable_curation_priority_queue_experiment","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.45.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.45.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.46":{"name":"enable_dedicated_series_tab_api_ios","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.46.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.46.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.47":{"name":"enable_different_grid","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.47.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.47.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.48":{"name":"enable_digest_feature_logging","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.48.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.48.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.49":{"name":"enable_digest_tagline","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.49.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.49.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.50":{"name":"enable_disregard_trunc_state_for_footer","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.50.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.50.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.51":{"name":"enable_edit_alt_text","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.51.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.51.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.52":{"name":"enable_email_sign_in_captcha","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.52.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.52.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.53":{"name":"enable_embedding_based_diversification","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.53.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.53.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.54":{"name":"enable_end_of_post_cleanup","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.54.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.54.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.55":{"name":"enable_expanded_feature_chunk_pool","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.55.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.55.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.56":{"name":"enable_filter_by_resend_rules","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.56.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.56.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.57":{"name":"enable_filter_expire_processor","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.57.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.57.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.58":{"name":"enable_first_name_on_paywall","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.58.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.58.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.59":{"name":"enable_footer_app_buttons","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.59.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.59.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.60":{"name":"enable_free_corona_topic","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.60.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.60.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.61":{"name":"enable_global_susi_modal","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.61.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.61.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.62":{"name":"enable_google_one_tap","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.62.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.62.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.63":{"name":"enable_highlander_member_digest","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.63.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.63.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.64":{"name":"enable_icelandic_truncated_posts","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.64.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.64.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.65":{"name":"enable_ios_post_stats","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.65.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.65.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.66":{"name":"enable_janky_spam_rules","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.66.valueType","typename":"VariantFlagString"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.66.valueType":{"__typename":"VariantFlagString","value":"users,posts"},"ROOT_QUERY.variantFlags.67":{"name":"enable_json_logs_trained_ranker","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.67.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.67.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.68":{"name":"enable_kbfd_rex","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.68.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.68.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.69":{"name":"enable_kbfd_rex_app_highlights","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.69.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.69.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.70":{"name":"enable_kbfd_rex_daily_digest","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.70.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.70.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.71":{"name":"enable_lite_about_page","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.71.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.71.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.72":{"name":"enable_lite_homepage","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.72.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.72.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.73":{"name":"enable_lite_notifications","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.73.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.73.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.74":{"name":"enable_lite_pay_page","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.74.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.74.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.75":{"name":"enable_lite_post","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.75.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.75.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.76":{"name":"enable_lite_post_cd","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.76.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.76.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.77":{"name":"enable_lite_post_highlights","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.77.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.77.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.78":{"name":"enable_lite_post_highlights_view_only","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.78.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.78.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.79":{"name":"enable_lite_profile","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.79.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.79.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.80":{"name":"enable_lite_pub_header_menu","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.80.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.80.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.81":{"name":"enable_lite_pub_homepage_for_selected_domains","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.81.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.81.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.82":{"name":"enable_lite_server_upstream_deadlines","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.82.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.82.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.83":{"name":"enable_lite_stories","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.83.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.83.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.84":{"name":"enable_lite_topics","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.84.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.84.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.85":{"name":"enable_lite_unread_notification_count_mutation","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.85.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.85.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.86":{"name":"enable_lo_open_in_app","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.86.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.86.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.87":{"name":"enable_lock_responses","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.87.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.87.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.88":{"name":"enable_login_code_flow","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.88.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.88.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.89":{"name":"enable_m2_unviewable_filter","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.89.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.89.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.90":{"name":"enable_marketing_emails","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.90.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.90.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.91":{"name":"enable_media_resource_try_catch","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.91.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.91.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.92":{"name":"enable_member_onboarding","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.92.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.92.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.93":{"name":"enable_membership_remove_section_a","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.93.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.93.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.94":{"name":"enable_metered_out_email_changes","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.94.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.94.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.95":{"name":"enable_miro_on_kubernetes","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.95.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.95.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.96":{"name":"enable_ml_rank_modules","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.96.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.96.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.97":{"name":"enable_ml_rank_rex_anno","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.97.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.97.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.98":{"name":"enable_monthly_member_onboarding_emails","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.98.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.98.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.99":{"name":"enable_more_on_coronavirus","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.99.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.99.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.100":{"name":"enable_mute","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.100.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.100.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.101":{"name":"enable_new_collaborative_filtering_data","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.101.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.101.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.102":{"name":"enable_new_suspended_page","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.102.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.102.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.103":{"name":"enable_new_three_dot_menu","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.103.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.103.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.104":{"name":"enable_open_in_app_regwall","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.104.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.104.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.105":{"name":"enable_optimizely","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.105.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.105.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.106":{"name":"enable_orion","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.106.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.106.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.107":{"name":"enable_parsely","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.107.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.107.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.108":{"name":"enable_patronus_on_kubernetes","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.108.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.108.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.109":{"name":"enable_popularity_feature","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.109.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.109.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.110":{"name":"enable_post_import","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.110.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.110.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.111":{"name":"enable_post_page_nav_stickiness_removal","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.111.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.111.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.112":{"name":"enable_post_seo_settings_screen","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.112.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.112.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.113":{"name":"enable_post_settings_screen","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.113.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.113.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.114":{"name":"enable_post_table_of_contents","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.114.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.114.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.115":{"name":"enable_primary_topic_for_mobile","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.115.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.115.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.116":{"name":"enable_profile_page_seo_titles","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.116.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.116.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.117":{"name":"enable_responses_2","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.117.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.117.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.118":{"name":"enable_responses_all","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.118.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.118.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.119":{"name":"enable_responses_edit_and_delete","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.119.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.119.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.120":{"name":"enable_responses_highlight","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.120.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.120.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.121":{"name":"enable_responses_moderation","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.121.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.121.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.122":{"name":"enable_rito_upstream_deadlines","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.122.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.122.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.123":{"name":"enable_rtr_channel","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.123.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.123.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.124":{"name":"enable_save_to_medium","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.124.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.124.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.125":{"name":"enable_sisko","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.125.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.125.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.126":{"name":"enable_starspace","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.126.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.126.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.127":{"name":"enable_starspace_ranker_starspace","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.127.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.127.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.128":{"name":"enable_theme_editor","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.128.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.128.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.129":{"name":"enable_tick_landing_page","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.129.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.129.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.130":{"name":"enable_tipalti_onboarding","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.130.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.130.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.131":{"name":"enable_tribute_landing_page","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.131.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.131.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.132":{"name":"enable_trumpland_landing_page","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.132.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.132.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.133":{"name":"enable_valencia_cd_posts","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.133.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.133.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.134":{"name":"enable_valencia_cd_profiles","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.134.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.134.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.135":{"name":"enable_valencia_clientele_cd","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.135.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.135.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.136":{"name":"enable_valencia_lite_reporting_cd","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.136.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.136.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.137":{"name":"enable_valencia_lite_routes_cd","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.137.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.137.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.138":{"name":"enable_valencia_medium_routes_cd","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.138.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.138.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.139":{"name":"enable_valencia_stat_batch_cd","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.139.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.139.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.140":{"name":"glyph_embed_commands","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.140.valueType","typename":"VariantFlagString"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.140.valueType":{"__typename":"VariantFlagString","value":"control"},"ROOT_QUERY.variantFlags.141":{"name":"glyph_font_set","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.141.valueType","typename":"VariantFlagString"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.141.valueType":{"__typename":"VariantFlagString","value":"m2"},"ROOT_QUERY.variantFlags.142":{"name":"google_sign_in_android","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.142.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.142.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.143":{"name":"ios_pub_follow_email_opt_in","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.143.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.143.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.144":{"name":"is_not_medium_subscriber","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.144.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.144.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.145":{"name":"limit_post_referrers","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.145.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.145.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.146":{"name":"make_nav_sticky","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.146.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.146.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.147":{"name":"new_transition_page","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.147.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.147.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.148":{"name":"pub_sidebar","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.148.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.148.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.149":{"name":"remove_post_post_similarity","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.149.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.149.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.150":{"name":"retrained_ranker","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.150.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.150.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.151":{"name":"rex_providers_4","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.151.valueType","typename":"VariantFlagString"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.151.valueType":{"__typename":"VariantFlagString","value":"experiment_b"},"ROOT_QUERY.variantFlags.152":{"name":"sign_up_with_email_button","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.152.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.152.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.153":{"name":"signin_services","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.153.valueType","typename":"VariantFlagString"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.153.valueType":{"__typename":"VariantFlagString","value":"twitter,facebook,google,email,google-fastidv,google-one-tap,apple"},"ROOT_QUERY.variantFlags.154":{"name":"signup_services","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.154.valueType","typename":"VariantFlagString"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.154.valueType":{"__typename":"VariantFlagString","value":"twitter,facebook,google,email,google-fastidv,google-one-tap,apple"},"ROOT_QUERY.variantFlags.155":{"name":"skip_sign_in_recaptcha","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.155.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.155.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.156":{"name":"use_new_admin_topic_backend","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.156.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.156.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY.variantFlags.157":{"name":"xgboost_auto_suspend","valueType":{"type":"id","generated":true,"id":"$ROOT_QUERY.variantFlags.157.valueType","typename":"VariantFlagBoolean"},"__typename":"VariantFlag"},"$ROOT_QUERY.variantFlags.157.valueType":{"__typename":"VariantFlagBoolean","value":true},"ROOT_QUERY":{"variantFlags":[{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.0","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.1","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.2","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.3","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.4","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.5","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.6","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.7","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.8","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.9","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.10","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.11","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.12","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.13","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.14","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.15","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.16","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.17","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.18","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.19","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.20","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.21","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.22","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.23","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.24","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.25","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.26","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.27","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.28","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.29","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.30","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.31","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.32","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.33","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.34","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.35","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.36","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.37","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.38","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.39","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.40","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.41","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.42","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.43","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.44","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.45","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.46","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.47","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.48","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.49","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.50","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.51","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.52","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.53","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.54","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.55","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.56","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.57","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.58","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.59","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.60","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.61","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.62","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.63","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.64","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.65","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.66","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.67","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.68","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.69","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.70","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.71","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.72","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.73","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.74","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.75","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.76","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.77","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.78","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.79","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.80","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.81","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.82","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.83","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.84","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.85","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.86","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.87","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.88","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.89","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.90","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.91","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.92","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.93","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.94","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.95","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.96","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.97","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.98","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.99","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.100","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.101","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.102","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.103","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.104","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.105","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.106","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.107","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.108","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.109","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.110","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.111","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.112","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.113","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.114","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.115","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.116","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.117","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.118","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.119","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.120","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.121","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.122","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.123","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.124","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.125","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.126","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.127","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.128","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.129","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.130","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.131","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.132","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.133","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.134","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.135","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.136","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.137","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.138","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.139","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.140","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.141","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.142","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.143","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.144","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.145","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.146","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.147","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.148","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.149","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.150","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.151","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.152","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.153","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.154","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.155","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.156","typename":"VariantFlag"},{"type":"id","generated":true,"id":"ROOT_QUERY.variantFlags.157","typename":"VariantFlag"}],"viewer":null,"meterPost({\"postId\":\"d146a92473a1\",\"postMeteringOptions\":{}})":{"type":"id","generated":false,"id":"MeteringInfo:singleton","typename":"MeteringInfo"},"postResult({\"id\":\"d146a92473a1\"})":{"type":"id","generated":false,"id":"Post:d146a92473a1","typename":"Post"}},"MeteringInfo:singleton":{"__typename":"MeteringInfo","postIds":{"type":"json","json":[]},"maxUnlockCount":3,"unlocksRemaining":3},"Post:d146a92473a1":{"__typename":"Post","id":"d146a92473a1","mediumUrl":"https:\u002F\u002Fmedium.com\u002F@johncwelch\u002Fsamantha-and-the-great-big-lie-d146a92473a1","canonicalUrl":"","collection":null,"content({\"postMeteringOptions\":{}})":{"type":"id","generated":true,"id":"$Post:d146a92473a1.content({\"postMeteringOptions\":{}})","typename":"PostContent"},"creator":{"type":"id","generated":false,"id":"User:77a507c5ad19","typename":"User"},"customStyleSheet":null,"firstPublishedAt":1444875555607,"isLocked":false,"isPublished":true,"isShortform":false,"isEmail":false,"layerCake":0,"primaryTopic":null,"title":"Samantha and The Great Big Lie","latestPublishedVersion":"3fed73795ca4","visibility":"PUBLIC","isLimitedState":false,"sequence":null,"pendingCollection":null,"shareKey":null,"statusForCollection":null,"readingTime":17.92735849056604,"readingList":"READING_LIST_NONE","allowResponses":true,"clapCount":193,"viewerClapCount":0,"voterCount":165,"recommenders":[],"license":"ALL_RIGHTS_RESERVED","newsletterId":"","tags":[],"topics":[],"postResponses":{"type":"id","generated":true,"id":"$Post:d146a92473a1.postResponses","typename":"PostResponses"},"responsesCount":14,"internalLinks({\"paging\":{\"limit\":8}})":{"type":"id","generated":true,"id":"$Post:d146a92473a1.internalLinks({\"paging\":{\"limit\":8}})","typename":"InternalLinksConnection"},"pinnedAt":0,"collaborators":[],"translationSourcePost":null,"inResponseToPostResult":null,"inResponseToMediaResource":null,"lockedSource":"LOCKED_POST_SOURCE_NONE","curationEligibleAt":0,"isDistributionAlertDismissed":false,"audioVersionUrl":"","socialTitle":"","socialDek":"","metaDescription":"","latestPublishedAt":1449844114438,"previewContent":{"type":"id","generated":true,"id":"$Post:d146a92473a1.previewContent","typename":"PreviewContent"},"previewImage":{"type":"id","generated":false,"id":"ImageMetadata:1*kbPh7V97eyRodSOw2-ALDw.png","typename":"ImageMetadata"},"seoTitle":"","updatedAt":1524435864777,"shortformType":"SHORTFORM_TYPE_LINK","structuredData":"","seoDescription":"","isSuspended":false},"$Post:d146a92473a1.content({\"postMeteringOptions\":{}})":{"isLockedPreviewOnly":false,"validatedShareKey":"","__typename":"PostContent","bodyModel":{"type":"id","generated":true,"id":"$Post:d146a92473a1.content({\"postMeteringOptions\":{}}).bodyModel","typename":"RichText"}},"User:77a507c5ad19":{"id":"77a507c5ad19","isSuspended":false,"__typename":"User","name":"John C. Welch","customStyleSheet":null,"username":"johncwelch","isFollowing":null,"isAuroraVisible":false,"allowNotes":true,"bio":"","imageId":"0*qPHQu8WqsC6cV_ud.jpg","mediumMemberAt":0,"isBlocking":null,"isMuting":null,"isPartnerProgramEnrolled":false,"twitterScreenName":""},"$Post:d146a92473a1.content({\"postMeteringOptions\":{}}).bodyModel.sections.0":{"name":"55ff","startIndex":0,"textLayout":null,"imageLayout":null,"backgroundImage":null,"videoLayout":null,"backgroundVideo":null,"__typename":"Section"},"$Post:d146a92473a1.content({\"postMeteringOptions\":{}}).bodyModel.sections.1":{"name":"c360","startIndex":8,"textLayout":null,"imageLayout":null,"backgroundImage":null,"videoLayout":null,"backgroundVideo":null,"__typename":"Section"},"$Post:d146a92473a1.content({\"postMeteringOptions\":{}}).bodyModel.sections.2":{"name":"2ba2","startIndex":17,"textLayout":null,"imageLayout":null,"backgroundImage":null,"videoLayout":null,"backgroundVideo":null,"__typename":"Section"},"$Post:d146a92473a1.content({\"postMeteringOptions\":{}}).bodyModel.sections.3":{"name":"c883","startIndex":176,"textLayout":null,"imageLayout":null,"backgroundImage":null,"videoLayout":null,"backgroundVideo":null,"__typename":"Section"},"$Post:d146a92473a1.content({\"postMeteringOptions\":{}}).bodyModel.sections.4":{"name":"8ab2","startIndex":183,"textLayout":null,"imageLayout":null,"backgroundImage":null,"videoLayout":null,"backgroundVideo":null,"__typename":"Section"},"$Post:d146a92473a1.content({\"postMeteringOptions\":{}}).bodyModel":{"sections":[{"type":"id","generated":true,"id":"$Post:d146a92473a1.content({\"postMeteringOptions\":{}}).bodyModel.sections.0","typename":"Section"},{"type":"id","generated":true,"id":"$Post:d146a92473a1.content({\"postMeteringOptions\":{}}).bodyModel.sections.1","typename":"Section"},{"type":"id","generated":true,"id":"$Post:d146a92473a1.content({\"postMeteringOptions\":{}}).bodyModel.sections.2","typename":"Section"},{"type":"id","generated":true,"id":"$Post:d146a92473a1.content({\"postMeteringOptions\":{}}).bodyModel.sections.3","typename":"Section"},{"type":"id","generated":true,"id":"$Post:d146a92473a1.content({\"postMeteringOptions\":{}}).bodyModel.sections.4","typename":"Section"}],"paragraphs":[{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_0","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_1","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_2","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_3","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_4","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_5","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_6","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_7","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_8","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_9","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_10","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_11","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_12","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_13","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_14","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_15","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_16","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_17","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_18","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_19","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_20","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_21","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_22","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_23","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_24","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_25","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_26","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_27","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_28","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_29","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_30","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_31","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_32","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_33","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_34","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_35","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_36","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_37","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_38","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_39","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_40","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_41","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_42","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_43","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_44","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_45","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_46","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_47","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_48","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_49","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_50","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_51","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_52","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_53","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_54","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_55","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_56","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_57","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_58","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_59","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_60","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_61","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_62","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_63","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_64","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_65","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_66","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_67","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_68","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_69","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_70","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_71","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_72","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_73","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_74","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_75","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_76","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_77","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_78","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_79","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_80","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_81","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_82","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_83","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_84","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_85","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_86","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_87","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_88","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_89","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_90","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_91","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_92","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_93","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_94","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_95","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_96","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_97","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_98","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_99","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_100","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_101","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_102","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_103","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_104","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_105","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_106","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_107","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_108","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_109","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_110","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_111","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_112","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_113","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_114","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_115","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_116","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_117","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_118","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_119","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_120","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_121","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_122","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_123","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_124","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_125","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_126","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_127","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_128","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_129","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_130","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_131","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_132","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_133","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_134","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_135","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_136","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_137","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_138","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_139","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_140","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_141","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_142","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_143","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_144","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_145","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_146","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_147","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_148","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_149","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_150","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_151","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_152","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_153","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_154","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_155","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_156","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_157","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_158","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_159","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_160","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_161","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_162","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_163","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_164","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_165","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_166","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_167","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_168","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_169","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_170","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_171","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_172","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_173","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_174","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_175","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_176","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_177","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_178","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_179","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_180","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_181","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_182","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_183","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_184","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_185","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_186","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_187","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_188","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_189","typename":"Paragraph"},{"type":"id","generated":false,"id":"Paragraph:3fed73795ca4_190","typename":"Paragraph"}],"__typename":"RichText"},"Paragraph:3fed73795ca4_0":{"id":"3fed73795ca4_0","name":"b34c","type":"H3","href":null,"layout":null,"metadata":null,"text":"Samantha and The Great Big Lie","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_1":{"id":"3fed73795ca4_1","name":"97e7","type":"P","href":null,"layout":null,"metadata":null,"text":"How to get shanked doing what people say they want","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_2":{"id":"3fed73795ca4_2","name":"df70","type":"BQ","href":null,"layout":null,"metadata":null,"text":"don’t preach to me\nMr. integrity","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_3":{"id":"3fed73795ca4_3","name":"c979","type":"P","href":null,"layout":null,"metadata":null,"text":"(EDIT: removed the link to Samantha’s post, because the arments and the grubers and the rest of The Deck Clique got what they wanted: a non-proper person driven off the internet lightly capped with a dusting of transphobia along the way, all totally okay because the ends justify the means, and it’s okay when “good” people do it.)","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_4":{"id":"3fed73795ca4_4","name":"342d","type":"P","href":null,"layout":null,"metadata":null,"text":"First, I need to say something about this article: the reason I’m writing it infuriates me. Worse than installing CS 3 or Acrobat 7 ever did, and the former inspired comparisons to fecophile porn. I’m actually too mad to cuss. Well, not completely, but in this case, I don’t think the people I’m mad at are worth the creativity I try to put into profanity. This is about a brownfield of hypocrisy and viciously deliberate mischaracterization that “shame” cannot even come close to the shame those behind it should feel.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_5":{"id":"3fed73795ca4_5","name":"2e61","type":"P","href":null,"layout":null,"metadata":null,"text":"Now, read this post by Samantha Bielefeld: The Elephant in the Room. First, it is a well-written critical piece that raises a few points in a calm, rational, nonconfrontational fashion, exactly the kind of things the pushers of The Great Big Lie say we need more of, as opposed to the screaming that is the norm in such cases.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_6":{"id":"3fed73795ca4_6","name":"cd31","type":"P","href":null,"layout":null,"metadata":null,"text":"…sorry, I should explain “The Great Big Lie”. There are several, but in this case, our specific instance of “The Great Big Lie” is about criticism. Over and over, you hear from the very people I am not going to be nice to in this that we need “better” criticsm. Instead of rage and anger, volume and vitriol, we need in-depth rational criticism, that isn’t personal or ad hominem. That it should focus on points, not people.","hasDropCap":null,"dropCapImage":null,"markups":[{"type":"id","generated":true,"id":"Paragraph:3fed73795ca4_6.markups.0","typename":"Markup"}],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_6.markups.0":{"type":"EM","start":87,"end":95,"href":null,"anchorType":null,"userId":null,"linkMetadata":null,"__typename":"Markup"},"Paragraph:3fed73795ca4_7":{"id":"3fed73795ca4_7","name":"ae07","type":"P","href":null,"layout":null,"metadata":null,"text":"That, readers, is “The Big Lie”. It is a lie so big that if one ponders the reality of it, as I am going to, one wonders why anyone would believe it. It is a lie and it is one we should stop telling.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_8":{"id":"3fed73795ca4_8","name":"a02f","type":"P","href":null,"layout":null,"metadata":null,"text":"Samantha’s points (I assume you read it, for you are smart people who know the importance of such things) are fairly clear:","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_9":{"id":"3fed73795ca4_9","name":"9213","type":"OLI","href":null,"layout":null,"metadata":null,"text":"With the release of Overcast 2.0, a product Samantha actually likes, Marco Arment moved to a patronage model that will probably be successful for him.","hasDropCap":null,"dropCapImage":null,"markups":[{"type":"id","generated":true,"id":"Paragraph:3fed73795ca4_9.markups.0","typename":"Markup"}],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_9.markups.0":{"type":"A","start":93,"end":108,"href":"http:\u002F\u002Fwww.marco.org\u002F2015\u002F10\u002F09\u002Fovercast2","anchorType":"LINK","userId":null,"linkMetadata":null,"__typename":"Markup"},"Paragraph:3fed73795ca4_10":{"id":"3fed73795ca4_10","name":"dfa5","type":"OLI","href":null,"layout":null,"metadata":null,"text":"Arment’s insistence that “anyone can do this” while technically true, (anyone can in fact, implement this pricing model), also implies that “anyone” can have the kind of success that a developer with Marco’s history, financial status, and deep ties to the Apple News Web is expected to have. This is silly.","hasDropCap":null,"dropCapImage":null,"markups":[{"type":"id","generated":true,"id":"Paragraph:3fed73795ca4_10.markups.0","typename":"Markup"}],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_10.markups.0":{"type":"A","start":26,"end":44,"href":"https:\u002F\u002Fmedium.com\u002F@marcoarment\u002Fpragmatic-app-pricing-a79fc07218f3","anchorType":"LINK","userId":null,"linkMetadata":null,"__typename":"Markup"},"Paragraph:3fed73795ca4_11":{"id":"3fed73795ca4_11","name":"e55d","type":"OLI","href":null,"layout":null,"metadata":null,"text":"Marco Arment occupies a fairly unique position in the Apple universe, (gained by hard work and no small talent), and because of that, benefits from a set of privileges that a new developer or even one that has been around for a long time, but isn’t, well, Marco, not only don’t have, but have little chance of attaining anytime soon.","hasDropCap":null,"dropCapImage":null,"markups":[{"type":"id","generated":true,"id":"Paragraph:3fed73795ca4_11.markups.0","typename":"Markup"}],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_11.markups.0":{"type":"EM","start":256,"end":261,"href":null,"anchorType":null,"userId":null,"linkMetadata":null,"__typename":"Markup"},"Paragraph:3fed73795ca4_12":{"id":"3fed73795ca4_12","name":"35fb","type":"OLI","href":null,"layout":null,"metadata":null,"text":"Marco has earned his success and is entitled to the benefits and privileges it brings, but he seems rather blind to all of that, and seems to still imagine himself as “two guys in a garage”. This is just not correct.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_13":{"id":"3fed73795ca4_13","name":"38e2","type":"OLI","href":null,"layout":null,"metadata":null,"text":"In addition, the benefits and privileges of the above ensure that by releasing Overcast 2 as a free app, with patronage pricing, he has, if not gutted, severely hurt the ability of folks actually selling their apps for an up-front price of not free to continue doing so. This has the effect of accelerating the “race to the bottom” in the podcast listening app segment, which hurts devs who cannot afford to work on a “I don’t really need this money, so whatever you feel like sending is okay” model.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_14":{"id":"3fed73795ca4_14","name":"0481","type":"P","href":null,"layout":null,"metadata":null,"text":"None of this is incorrect. None of this is an ad hominem attack in any way. It is just pointing out that a developer of Arment’s stature and status lives in a very different world than someone in East Frog Balls, Arkansas trying to make a living off of App sales. Our dev in EFB doesn’t have the main sites on the Apple web falling all over themselves to review their app the way that Arment does. They’re not friends with the people being The Loop, Daring Fireball, SixColors, iMore, The Mac Observer, etc., yadda.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_15":{"id":"3fed73795ca4_15","name":"5a45","type":"P","href":null,"layout":null,"metadata":null,"text":"So, our hero, in a fit of well-meaning ignorance writes this piece (posted this morning, 14 Oct. 15) and of course, the response and any criticisms are just as reasonable and thoughtful.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_16":{"id":"3fed73795ca4_16","name":"3bc7","type":"P","href":null,"layout":null,"metadata":null,"text":"If you really believe that, you are the most preciously ignorant person in the world, and can I have your seriously charmed life.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_17":{"id":"3fed73795ca4_17","name":"0fb2","type":"P","href":null,"layout":null,"metadata":null,"text":"The response, from all quarters, including Marco, someone who is so sensitive to criticism that the word “useless” is enough to shut him down, who blocked a friend of mine for the high crime of pointing out that his review of podcasting mics centered around higher priced gear and ignored folks without the scratch, who might not be ready for such things, is, in a single word, disgusting. Vomitous even.","hasDropCap":null,"dropCapImage":null,"markups":[{"type":"id","generated":true,"id":"Paragraph:3fed73795ca4_17.markups.0","typename":"Markup"},{"type":"id","generated":true,"id":"Paragraph:3fed73795ca4_17.markups.1","typename":"Markup"}],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_17.markups.0":{"type":"A","start":118,"end":141,"href":"http:\u002F\u002Fwww.marco.org\u002F2011\u002F03\u002F30\u002Fhere-is-a-tip-for-all-the-non-developers-out","anchorType":"LINK","userId":null,"linkMetadata":null,"__typename":"Markup"},"Paragraph:3fed73795ca4_17.markups.1":{"type":"A","start":147,"end":354,"href":"https:\u002F\u002Ftwitter.com\u002Fmarcoarment\u002Fstatus\u002F641330113934700544","anchorType":"LINK","userId":null,"linkMetadata":null,"__typename":"Markup"},"Paragraph:3fed73795ca4_18":{"id":"3fed73795ca4_18","name":"9a6e","type":"P","href":null,"layout":null,"metadata":null,"text":"It’s an hours-long dogpile that beggars even my imagination, and I can imagine almost anything. Seriously, it’s all there in Samantha’s Twitter Feed. From what I can tell, she’s understandably shocked over it. I however was not. This one comment in her feed made me smile (warning, this wanders a bit…er…LOT. Twitter timelines are not easy to put together):","hasDropCap":null,"dropCapImage":null,"markups":[{"type":"id","generated":true,"id":"Paragraph:3fed73795ca4_18.markups.0","typename":"Markup"}],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_18.markups.0":{"type":"A","start":125,"end":148,"href":"https:\u002F\u002Ftwitter.com\u002Fs_bielefeld\u002Fwith_replies","anchorType":"LINK","userId":null,"linkMetadata":null,"__typename":"Markup"},"Paragraph:3fed73795ca4_19":{"id":"3fed73795ca4_19","name":"3271","type":"BQ","href":null,"layout":null,"metadata":null,"text":"I can see why you have some reservations about publishing it, but my gut feeling is that he would take it better than Nilay.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_20":{"id":"3fed73795ca4_20","name":"ec72","type":"P","href":null,"layout":null,"metadata":null,"text":"Oh honey, bless your sweet, ignorant heart. Marco is one of the biggest pushers of The Big Lie, and one of the reasons it is such a lie.","hasDropCap":null,"dropCapImage":null,"markups":[{"type":"id","generated":true,"id":"Paragraph:3fed73795ca4_20.markups.0","typename":"Markup"}],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_20.markups.0":{"type":"EM","start":125,"end":129,"href":null,"anchorType":null,"userId":null,"linkMetadata":null,"__typename":"Markup"},"Paragraph:3fed73795ca4_21":{"id":"3fed73795ca4_21","name":"5cc4","type":"P","href":null,"layout":null,"metadata":null,"text":"But it gets better. First, you have the “hey, Marco earned his status!” lot. A valid point, and one Bielefeld explicitly acknowledges, here:","hasDropCap":null,"dropCapImage":null,"markups":[{"type":"id","generated":true,"id":"Paragraph:3fed73795ca4_21.markups.0","typename":"Markup"}],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_21.markups.0":{"type":"EM","start":52,"end":58,"href":null,"anchorType":null,"userId":null,"linkMetadata":null,"__typename":"Markup"},"Paragraph:3fed73795ca4_22":{"id":"3fed73795ca4_22","name":"4e5f","type":"BQ","href":null,"layout":null,"metadata":null,"text":"From his ground floor involvement in Tumblr (for which he is now a millionaire), to the creation and sale of a wildly successful app called Instapaper, he has become a household name in technology minded circles. It is this extensive time spent in the spotlight, the huge following on Twitter, and dedicated listeners of his weekly aired Accidental Tech Podcast, that has granted him the freedom to break from seeking revenue in more traditional manners.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_23":{"id":"3fed73795ca4_23","name":"cee9","type":"P","href":null,"layout":null,"metadata":null,"text":"and here:","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_24":{"id":"3fed73795ca4_24","name":"3f1b","type":"BQ","href":null,"layout":null,"metadata":null,"text":"I’m not knocking his success, he has put effort into his line of work, and has built his own life.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_25":{"id":"3fed73795ca4_25","name":"e527","type":"P","href":null,"layout":null,"metadata":null,"text":"and here:","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_26":{"id":"3fed73795ca4_26","name":"3e4f","type":"BQ","href":null,"layout":null,"metadata":null,"text":"He has earned his time in the spotlight, and it’s only natural for him to take advantage of it.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_27":{"id":"3fed73795ca4_27","name":"8a01","type":"P","href":null,"layout":null,"metadata":null,"text":"But still, you get the people telling her something she already acknowledge:","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_28":{"id":"3fed73795ca4_28","name":"7685","type":"BQ","href":null,"layout":null,"metadata":null,"text":"I don’t think he’s blind. he’s worked to where he has gotten and has had failures like everyone else.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_29":{"id":"3fed73795ca4_29","name":"b151","type":"P","href":null,"layout":null,"metadata":null,"text":"Thank you for restating something in the article. To the person who wrote it.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_30":{"id":"3fed73795ca4_30","name":"87bc","type":"P","href":null,"layout":null,"metadata":null,"text":"In the original article, Samantha talked about the money Marco makes from his podcast. She based that on the numbers provided by ATP in terms of sponsorship rates and the number of current sponsors the podcast has. Is this going to yield perfect numbers? No. But the numbers you get from it will at least be reasonable, or should be unless the published sponsorship rates are just fantasy, and you’re stupid for taking them seriously.","hasDropCap":null,"dropCapImage":null,"markups":[{"type":"id","generated":true,"id":"Paragraph:3fed73795ca4_30.markups.0","typename":"Markup"}],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_30.markups.0":{"type":"A","start":117,"end":162,"href":"http:\u002F\u002Fatp.fm\u002Fsponsor\u002F","anchorType":"LINK","userId":null,"linkMetadata":null,"__typename":"Markup"},"Paragraph:3fed73795ca4_31":{"id":"3fed73795ca4_31","name":"dbda","type":"P","href":null,"layout":null,"metadata":null,"text":"At first, she went with a simple formula:","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_32":{"id":"3fed73795ca4_32","name":"1b4e","type":"BQ","href":null,"layout":null,"metadata":null,"text":"$4K x 3 per episode = $12K x 52 weeks \u002F 3 hosts splitting it.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_33":{"id":"3fed73795ca4_33","name":"0b33","type":"P","href":null,"layout":null,"metadata":null,"text":"That’s not someone making shit up, right? Rather quickly, someone pointed out that she’d made an error in how she calculated it:","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_34":{"id":"3fed73795ca4_34","name":"76d7","type":"BQ","href":null,"layout":null,"metadata":null,"text":"That’s $4k per ad, no? So more like $12–16k per episode.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_35":{"id":"3fed73795ca4_35","name":"a089","type":"P","href":null,"layout":null,"metadata":null,"text":"She’d already realized her mistake and fixed it.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_36":{"id":"3fed73795ca4_36","name":"b369","type":"BQ","href":null,"layout":null,"metadata":null,"text":"which is actually wrong, and I’m correcting now. $4,000 per sponsor, per episode! So, $210,000 per year.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_37":{"id":"3fed73795ca4_37","name":"8b3b","type":"P","href":null,"layout":null,"metadata":null,"text":"Again, this is based on publicly available data the only kind someone not part of ATP or a close friend of Arment has access to. So while her numbers may be wrong, if they are, there’s no way for her to know that. She’s basing her opinion on actual available data. Which is sadly rare.","hasDropCap":null,"dropCapImage":null,"markups":[{"type":"id","generated":true,"id":"Paragraph:3fed73795ca4_37.markups.0","typename":"Markup"}],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_37.markups.0":{"type":"EM","start":24,"end":47,"href":null,"anchorType":null,"userId":null,"linkMetadata":null,"__typename":"Markup"},"Paragraph:3fed73795ca4_38":{"id":"3fed73795ca4_38","name":"135a","type":"P","href":null,"layout":null,"metadata":null,"text":"This becomes a huge flashpoint. You name a reason to attack her over this, people do. No really. For example, she’s not calculating his income taxes correctly:","hasDropCap":null,"dropCapImage":null,"markups":[{"type":"id","generated":true,"id":"Paragraph:3fed73795ca4_38.markups.0","typename":"Markup"}],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_38.markups.0":{"type":"EM","start":136,"end":158,"href":null,"anchorType":null,"userId":null,"linkMetadata":null,"__typename":"Markup"},"Paragraph:3fed73795ca4_39":{"id":"3fed73795ca4_39","name":"5e7e","type":"BQ","href":null,"layout":null,"metadata":null,"text":"especially since it isn’t his only source of income thus, not an indicator of his marginal inc. tax bracket.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_40":{"id":"3fed73795ca4_40","name":"6036","type":"BQ","href":null,"layout":null,"metadata":null,"text":"thus, guessing net income is more haphazard than stating approx. gross income.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_41":{"id":"3fed73795ca4_41","name":"aac1","type":"P","href":null,"layout":null,"metadata":null,"text":"Ye Gods. She’s not doing his taxes for him, her point is invalid?","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_42":{"id":"3fed73795ca4_42","name":"600f","type":"P","href":null,"layout":null,"metadata":null,"text":"Then there’s the people who seem to have not read anything past what other people are telling them:","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_43":{"id":"3fed73795ca4_43","name":"9b62","type":"BQ","href":null,"layout":null,"metadata":null,"text":"Not sure what to make of your Marco piece, to be honest. You mention his fame, whatever, but what’s the main idea here?","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_44":{"id":"3fed73795ca4_44","name":"c18a","type":"P","href":null,"layout":null,"metadata":null,"text":"Just how spoon-fed do you have to be? Have you no teeth?","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_45":{"id":"3fed73795ca4_45","name":"c445","type":"P","href":null,"layout":null,"metadata":null,"text":"Of course, Marco jumps in, and predictably, he’s snippy:","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_46":{"id":"3fed73795ca4_46","name":"0c21","type":"BQ","href":null,"layout":null,"metadata":null,"text":"If you’re going to speak in precise absolutes, it’s best to first ensure that you’re correct.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_47":{"id":"3fed73795ca4_47","name":"8f8d","type":"P","href":null,"layout":null,"metadata":null,"text":"If you’re going to be like that, it’s best to provide better data. Don’t get snippy when someone is going off the only data available, and is clearly open to revising based on better data.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_48":{"id":"3fed73795ca4_48","name":"cc97","type":"P","href":null,"layout":null,"metadata":null,"text":"Then Marco’s friends\u002Ffans get into it:","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_49":{"id":"3fed73795ca4_49","name":"f9da","type":"BQ","href":null,"layout":null,"metadata":null,"text":"I really don’t understand why it’s anyone’s business","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_50":{"id":"3fed73795ca4_50","name":"0094","type":"P","href":null,"layout":null,"metadata":null,"text":"Samantha is trying to qualify for sainthood at this point:","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_51":{"id":"3fed73795ca4_51","name":"0105","type":"BQ","href":null,"layout":null,"metadata":null,"text":"It isn’t really, it was a way of putting his income in context in regards to his ability to gamble with Overcast.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_52":{"id":"3fed73795ca4_52","name":"cdd1","type":"P","href":null,"layout":null,"metadata":null,"text":"Again, she’s trying to drag people back to her actual point, but no one is going to play. The storm has begun. Then we get people who are just spouting nonsense:","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_53":{"id":"3fed73795ca4_53","name":"f56c","type":"BQ","href":null,"layout":null,"metadata":null,"text":"Why is that only relevant for him? It’s a pretty weird metric,especially since his apps aren’t free.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_54":{"id":"3fed73795ca4_54","name":"4fef","type":"P","href":null,"layout":null,"metadata":null,"text":"Wha?? Overcast 2 is absolutely free. Samantha points this out:","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_55":{"id":"3fed73795ca4_55","name":"0f36","type":"BQ","href":null,"layout":null,"metadata":null,"text":"His app is free, that’s what sparked the article to begin with.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_56":{"id":"3fed73795ca4_56","name":"40d2","type":"P","href":null,"layout":null,"metadata":null,"text":"The response is literally a parallel to “How can there be global warming if it snowed today in my town?”","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_57":{"id":"3fed73795ca4_57","name":"6760","type":"BQ","href":null,"layout":null,"metadata":null,"text":"If it’s free, how have I paid for it? Twice?","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_58":{"id":"3fed73795ca4_58","name":"7b13","type":"P","href":null,"layout":null,"metadata":null,"text":"She is still trying:","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_59":{"id":"3fed73795ca4_59","name":"44ba","type":"BQ","href":null,"layout":null,"metadata":null,"text":"You paid $4.99 to unlock functionality in Overcast 1.0 and you chose to support him with no additional functionality in 2.0","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_60":{"id":"3fed73795ca4_60","name":"2152","type":"P","href":null,"layout":null,"metadata":null,"text":"He is having none of it. IT SNOWED! SNOWWWWWWW!","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_61":{"id":"3fed73795ca4_61","name":"99a6","type":"BQ","href":null,"layout":null,"metadata":null,"text":"Yes. That’s not free. Free is when you choose not to make money. And that can be weaponized. But that’s not what Overcast does.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_62":{"id":"3fed73795ca4_62","name":"5e6f","type":"P","href":null,"layout":null,"metadata":null,"text":"She however, is relentless:","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_63":{"id":"3fed73795ca4_63","name":"1b0f","type":"BQ","href":null,"layout":null,"metadata":null,"text":"No, it’s still free. You can choose to support it, you are required to pay $4.99 for Pocket Casts. Totally different model.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_64":{"id":"3fed73795ca4_64","name":"d24f","type":"P","href":null,"layout":null,"metadata":null,"text":"Dude seems to give up. (Note: allllll the people bagging on her are men. All of them. Mansplaining like hell. And I’d bet every one of them considers themselves a feminist.)","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_65":{"id":"3fed73795ca4_65","name":"10e1","type":"P","href":null,"layout":null,"metadata":null,"text":"We get another guy trying to push the narrative she’s punishing him for his success, which is just…it’s stupid, okay? Stupid.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_66":{"id":"3fed73795ca4_66","name":"9b01","type":"BQ","href":null,"layout":null,"metadata":null,"text":"It also wasn’t my point in writing my piece today, but it seems to be everyone’s focus.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_67":{"id":"3fed73795ca4_67","name":"340c","type":"P","href":null,"layout":null,"metadata":null,"text":"(UNDERSTATEMENT OF THE YEAR)","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_68":{"id":"3fed73795ca4_68","name":"7244","type":"BQ","href":null,"layout":null,"metadata":null,"text":"I think the focus should be more on that fact that while it’s difficult, Marco spent years building his audience.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_69":{"id":"3fed73795ca4_69","name":"ffb1","type":"BQ","href":null,"layout":null,"metadata":null,"text":"It doesn’t matter what he makes it how he charges. If the audience be earned is willing to pay for it, awesome.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_70":{"id":"3fed73795ca4_70","name":"e44e","type":"P","href":null,"layout":null,"metadata":null,"text":"She tries, oh lord, she tries:","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_71":{"id":"3fed73795ca4_71","name":"a502","type":"BQ","href":null,"layout":null,"metadata":null,"text":"To assert that he isn’t doing anything any other dev couldn’t, is wrong. It’s successful because it’s Marco.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_72":{"id":"3fed73795ca4_72","name":"7dcd","type":"P","href":null,"layout":null,"metadata":null,"text":"But no, HE KNOWS HER POINT BETTER THAN SHE DOES:","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_73":{"id":"3fed73795ca4_73","name":"a62a","type":"BQ","href":null,"layout":null,"metadata":null,"text":"No, it’s successful because he busted his ass to make it so. It’s like any other business. He grew it.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_74":{"id":"3fed73795ca4_74","name":"df8c","type":"P","href":null,"layout":null,"metadata":null,"text":"Christ. This is like a field of strawmen. Stupid ones. Very stupid ones.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_75":{"id":"3fed73795ca4_75","name":"521a","type":"P","href":null,"layout":null,"metadata":null,"text":"One guy tries to blame it all on Apple, another in a string of Wha??? moments:","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_76":{"id":"3fed73795ca4_76","name":"d80d","type":"BQ","href":null,"layout":null,"metadata":null,"text":"the appropriate context is Apple’s App Store policies. Other devs aren’t Marco’s responsibility","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_77":{"id":"3fed73795ca4_77","name":"db0b","type":"P","href":null,"layout":null,"metadata":null,"text":"Seriously? Dude, are you even trying to talk about what Samantha actually wrote? At this point, Samantha is clearly mystified at the entire thing:","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_78":{"id":"3fed73795ca4_78","name":"7a78","type":"BQ","href":null,"layout":null,"metadata":null,"text":"Why has the conversation suddenly turned to focus on nothing more than ATP sponsorship income?","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_79":{"id":"3fed73795ca4_79","name":"6e09","type":"P","href":null,"layout":null,"metadata":null,"text":"Because it’s a nit they can pick and allows them to ignore everything you wrote. That’s the only reason.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_80":{"id":"3fed73795ca4_80","name":"b7db","type":"P","href":null,"layout":null,"metadata":null,"text":"One guy is “confused”:","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_81":{"id":"3fed73795ca4_81","name":"3626","type":"BQ","href":null,"layout":null,"metadata":null,"text":"I see. He does have clout, so are you saying he’s too modest in how he sees himself as a dev?","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_82":{"id":"3fed73795ca4_82","name":"9daa","type":"BQ","href":null,"layout":null,"metadata":null,"text":"Yes. He can’t be equated to the vast majority of other developers. Like calling Gruber, “just another blogger”.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_83":{"id":"3fed73795ca4_83","name":"f6da","type":"BQ","href":null,"layout":null,"metadata":null,"text":"Alright, that’s fair. I was just confused by the $ and fame angle at first.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_84":{"id":"3fed73795ca4_84","name":"d5b1","type":"P","href":null,"layout":null,"metadata":null,"text":"Samantha’s point centers on the benefits Marco gains via his fame and background. HOW DO YOU NOT MENTION THAT? HOW IS THAT CONFUSING?","hasDropCap":null,"dropCapImage":null,"markups":[{"type":"id","generated":true,"id":"Paragraph:3fed73795ca4_84.markups.0","typename":"Markup"}],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_84.markups.0":{"type":"EM","start":82,"end":133,"href":null,"anchorType":null,"userId":null,"linkMetadata":null,"__typename":"Markup"},"Paragraph:3fed73795ca4_85":{"id":"3fed73795ca4_85","name":"58d0","type":"P","href":null,"layout":null,"metadata":null,"text":"People of course are telling her it’s her fault for mentioning a salient fact at all:","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_86":{"id":"3fed73795ca4_86","name":"30d2","type":"BQ","href":null,"layout":null,"metadata":null,"text":"Why has the conversation suddenly turned to focus on nothing more than ATP sponsorship income?","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_87":{"id":"3fed73795ca4_87","name":"765b","type":"BQ","href":null,"layout":null,"metadata":null,"text":"Maybe because you went there with your article?","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_88":{"id":"3fed73795ca4_88","name":"61fe","type":"BQ","href":null,"layout":null,"metadata":null,"text":"As a way of rationalizing his ability to gamble with the potential for Overcast to generate income…not the norm at all.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_89":{"id":"3fed73795ca4_89","name":"f17c","type":"P","href":null,"layout":null,"metadata":null,"text":"Of course, had she not brought up those important points, she’d have been bagged on for “not providing proof”. Lose some, lose more. By now, she’s had enough and she just deletes all mention of it. Understandable, but sad she was bullied into doing that.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_90":{"id":"3fed73795ca4_90","name":"0b60","type":"P","href":null,"layout":null,"metadata":null,"text":"Yes, bullied. That’s all this is. Bullying. She didn’t lie, cheat, or exaagerate. If her numbers were wrong, they weren’t wrong in a way she had any ability to do anything about. But there’s blood in the water, and the comments and attacks get worse:","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_91":{"id":"3fed73795ca4_91","name":"65ab","type":"BQ","href":null,"layout":null,"metadata":null,"text":"Because you decided to start a conversation about someone else’s personal shit. You started this war.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_92":{"id":"3fed73795ca4_92","name":"1adb","type":"P","href":null,"layout":null,"metadata":null,"text":"War. THIS. IS. WAR.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_93":{"id":"3fed73795ca4_93","name":"de94","type":"P","href":null,"layout":null,"metadata":null,"text":"This is a bunch of nerds attacking someone for reasoned, calm, polite criticism of their friend\u002Fidol. Samantha is politely pushing back a bit:","hasDropCap":null,"dropCapImage":null,"markups":[{"type":"id","generated":true,"id":"Paragraph:3fed73795ca4_93.markups.0","typename":"Markup"}],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_93.markups.0":{"type":"EM","start":63,"end":69,"href":null,"anchorType":null,"userId":null,"linkMetadata":null,"__typename":"Markup"},"Paragraph:3fed73795ca4_94":{"id":"3fed73795ca4_94","name":"4458","type":"BQ","href":null,"layout":null,"metadata":null,"text":"That doesn’t explain why every other part of my article is being pushed aside.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_95":{"id":"3fed73795ca4_95","name":"aeac","type":"P","href":null,"layout":null,"metadata":null,"text":"She’s right. This is all nonsense. This is people ignoring her article completely, just looking for things to attack so it can be dismissed. It’s tribalism at its purest.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_96":{"id":"3fed73795ca4_96","name":"0078","type":"P","href":null,"layout":null,"metadata":null,"text":"Then some of the other annointed get into it, including Jason Snell in one of the most spectactular displays of “I have special knowledge you can’t be expected to have, therefore you are totally off base and wrong, even though there’s no way for you to know this” I’ve seen in a while. Jason:","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_97":{"id":"3fed73795ca4_97","name":"c4c9","type":"BQ","href":null,"layout":null,"metadata":null,"text":"You should never use an ad rate card to estimate ad revenue from any media product ever.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_98":{"id":"3fed73795ca4_98","name":"b66b","type":"BQ","href":null,"layout":null,"metadata":null,"text":"I learned this when I started working for a magazine — rate cards are mostly fiction, like prices on new cars","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_99":{"id":"3fed73795ca4_99","name":"6907","type":"P","href":null,"layout":null,"metadata":null,"text":"How…exactly…in the name of whatever deity Jason may believe in…is Samantha or anyone not “in the biz” supposed to know this. Also, what exactly does a magazine on paper like Macworld have to do with sponsorships for a podcast? I have done podcasts that were sponsored, and I can retaliate with “we charged what the rate card said we did. Checkmate Elitests!”","hasDropCap":null,"dropCapImage":null,"markups":[{"type":"id","generated":true,"id":"Paragraph:3fed73795ca4_99.markups.0","typename":"Markup"}],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_99.markups.0":{"type":"EM","start":338,"end":357,"href":null,"anchorType":null,"userId":null,"linkMetadata":null,"__typename":"Markup"},"Paragraph:3fed73795ca4_100":{"id":"3fed73795ca4_100","name":"41ec","type":"P","href":null,"layout":null,"metadata":null,"text":"Samantha basically abases herself at his feet:","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_101":{"id":"3fed73795ca4_101","name":"0b14","type":"BQ","href":null,"layout":null,"metadata":null,"text":"I understand my mistake, and it’s unfortunate that it has completely diluted the point of my article.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_102":{"id":"3fed73795ca4_102","name":"590f","type":"P","href":null,"layout":null,"metadata":null,"text":"I think she should have told him where and how to stuff that nonsense, but she’s a nicer person than I am. Also, it’s appropriate that Jason’s twitter avatar has its nose in the air. This is some rank snobbery. It’s disgusting and if anyone pulled that on him, Jason would be very upset. But hey, one cannot criticize The Marco without getting pushback. By “pushback”, I mean “an unrelenting fecal flood”.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_103":{"id":"3fed73795ca4_103","name":"69dc","type":"P","href":null,"layout":null,"metadata":null,"text":"Her only mistake was criticizing one of the Kool Kids. Folks, if you criticize anyone in The Deck Clique, or their friends, expect the same thing, regardless of tone or point.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_104":{"id":"3fed73795ca4_104","name":"5ab4","type":"P","href":null,"layout":null,"metadata":null,"text":"Another App Dev, seemingly unable to parse Samantha’s words, needs more explanation:","hasDropCap":null,"dropCapImage":null,"markups":[{"type":"id","generated":true,"id":"Paragraph:3fed73795ca4_104.markups.0","typename":"Markup"}],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_104.markups.0":{"type":"EM","start":67,"end":71,"href":null,"anchorType":null,"userId":null,"linkMetadata":null,"__typename":"Markup"},"Paragraph:3fed73795ca4_105":{"id":"3fed73795ca4_105","name":"957b","type":"BQ","href":null,"layout":null,"metadata":null,"text":"so just looking over your mentions, I’m curious what exactly was your main point? Ignoring the podcast income bits.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_106":{"id":"3fed73795ca4_106","name":"0a7e","type":"P","href":null,"layout":null,"metadata":null,"text":"Oh wait, he didn’t even read the article. Good on you, Dev Guy, good. on. you. Still, she plays nice with someone who didn’t even read her article:","hasDropCap":null,"dropCapImage":null,"markups":[{"type":"id","generated":true,"id":"Paragraph:3fed73795ca4_106.markups.0","typename":"Markup"}],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_106.markups.0":{"type":"EM","start":101,"end":146,"href":null,"anchorType":null,"userId":null,"linkMetadata":null,"__typename":"Markup"},"Paragraph:3fed73795ca4_107":{"id":"3fed73795ca4_107","name":"f7db","type":"BQ","href":null,"layout":null,"metadata":null,"text":"That a typical unknown developer can’t depend on patronage to generate revenue, and charging for apps will become a negative.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_108":{"id":"3fed73795ca4_108","name":"937f","type":"P","href":null,"layout":null,"metadata":null,"text":"Marco comes back of course, and now basically accuses her of lying about other devs talking to her and supporting her point:","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_109":{"id":"3fed73795ca4_109","name":"c9dd","type":"BQ","href":null,"layout":null,"metadata":null,"text":"How many actual developers did you hear from, really? Funny how almost nobody wants to give a (real) name on these accusations.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_110":{"id":"3fed73795ca4_110","name":"c522","type":"P","href":null,"layout":null,"metadata":null,"text":"Really? You’re going to do that? “There’s no name, so I don’t think it’s a real person.” Just…what’s the Joe Welch quote from the McCarthy hearings?","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_111":{"id":"3fed73795ca4_111","name":"907e","type":"BQ","href":null,"layout":null,"metadata":null,"text":"Let us not assassinate this lad further, Senator. You’ve done enough. Have you no sense of decency, sir? At long last, have you left no sense of decency?","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_112":{"id":"3fed73795ca4_112","name":"2158","type":"P","href":null,"layout":null,"metadata":null,"text":"That is what this is at this point: character assasination because she said something critical of A Popular Person. It’s disgusting. Depressing and disgusting. No one, none of these people have seriously discussed her point, heck, it looks like they barely bothered to read it, if they did at all.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_113":{"id":"3fed73795ca4_113","name":"13f8","type":"P","href":null,"layout":null,"metadata":null,"text":"Marco starts getting really petty with her (no big shock) and Samantha finally starts pushing back:","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_114":{"id":"3fed73795ca4_114","name":"96c6","type":"BQ","href":null,"layout":null,"metadata":null,"text":"Glad to see you be the bigger person and ignore the mindset of so many developers not relating to you, good for you!","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_115":{"id":"3fed73795ca4_115","name":"5d3f","type":"P","href":null,"layout":null,"metadata":null,"text":"That of course, is what caused Marco to question the validity, if not the existence of her sources. (Funny how anonymous sources are totes okay when they convenience Marco et al, and work for oh, Apple, but when they are inconvenient? Ha! PROVIDE ME PROOF YOU INTEMPERATE WOMAN!)","hasDropCap":null,"dropCapImage":null,"markups":[{"type":"id","generated":true,"id":"Paragraph:3fed73795ca4_115.markups.0","typename":"Markup"}],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_115.markups.0":{"type":"EM","start":196,"end":201,"href":null,"anchorType":null,"userId":null,"linkMetadata":null,"__typename":"Markup"},"Paragraph:3fed73795ca4_116":{"id":"3fed73795ca4_116","name":"c07c","type":"P","href":null,"layout":null,"metadata":null,"text":"Make no mistake, there’s some sexist shit going on here. Every tweet I’ve quoted was authored by a guy.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_117":{"id":"3fed73795ca4_117","name":"8b32","type":"P","href":null,"layout":null,"metadata":null,"text":"Of course, Marco has to play the “I’ve been around longer than you” card with this bon mot:","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_118":{"id":"3fed73795ca4_118","name":"de26","type":"BQ","href":null,"layout":null,"metadata":null,"text":"Yup, before you existed!","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_119":{"id":"3fed73795ca4_119","name":"a3bd","type":"P","href":null,"layout":null,"metadata":null,"text":"Really dude? I mean, I’m sorry about the penis, but really?","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_120":{"id":"3fed73795ca4_120","name":"1c51","type":"P","href":null,"layout":null,"metadata":null,"text":"Mind you, when the criticism isn’t just bizarrely stupid, Samantha reacts the way Marco and his ilk claim they would to (if they ever got any valid criticism. Which clearly is impossible):","hasDropCap":null,"dropCapImage":null,"markups":[{"type":"id","generated":true,"id":"Paragraph:3fed73795ca4_120.markups.0","typename":"Markup"}],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_120.markups.0":{"type":"EM","start":142,"end":147,"href":null,"anchorType":null,"userId":null,"linkMetadata":null,"__typename":"Markup"},"Paragraph:3fed73795ca4_121":{"id":"3fed73795ca4_121","name":"9848","type":"BQ","href":null,"layout":null,"metadata":null,"text":"Not to get into the middle of this, but “income” is not the term you’re looking for. “Revenue” is.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_122":{"id":"3fed73795ca4_122","name":"f2a6","type":"BQ","href":null,"layout":null,"metadata":null,"text":"lol. Noted.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_123":{"id":"3fed73795ca4_123","name":"aed9","type":"BQ","href":null,"layout":null,"metadata":null,"text":"And I wasn’t intending to be a dick, just a lot of people hear\u002Fsay “income” when they intend “revenue”, and then discussion …","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_124":{"id":"3fed73795ca4_124","name":"f9d8","type":"BQ","href":null,"layout":null,"metadata":null,"text":"… gets derailed by a jedi handwave of “Expenses”. But outside of charitable donation, it is all directly related.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_125":{"id":"3fed73795ca4_125","name":"f61c","type":"BQ","href":null,"layout":null,"metadata":null,"text":"haha. Thank you for the clarification.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_126":{"id":"3fed73795ca4_126","name":"5dd9","type":"P","href":null,"layout":null,"metadata":null,"text":"Note to Marco and the other…whatever they are…that is how one reacts to that kind of criticism. With a bit of humor and self-deprecation. You should try it sometime. For real, not just in your heads or conversations in Irish Pubs in S.F.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_127":{"id":"3fed73795ca4_127","name":"dc44","type":"P","href":null,"layout":null,"metadata":null,"text":"But now, the door has been cracked, and the cheap shots come out:","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_128":{"id":"3fed73795ca4_128","name":"0c94","type":"BQ","href":null,"layout":null,"metadata":null,"text":"@testflight_app: Don’t worry guys, we process @marcoarment’s apps in direct proportion to his megabucks earnings. #fairelephant","hasDropCap":null,"dropCapImage":null,"markups":[{"type":"id","generated":true,"id":"Paragraph:3fed73795ca4_128.markups.0","typename":"Markup"},{"type":"id","generated":true,"id":"Paragraph:3fed73795ca4_128.markups.1","typename":"Markup"}],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_128.markups.0":{"type":"A","start":46,"end":58,"href":"https:\u002F\u002Ftwitter.com\u002Fmarcoarment","anchorType":"LINK","userId":null,"linkMetadata":null,"__typename":"Markup"},"Paragraph:3fed73795ca4_128.markups.1":{"type":"A","start":114,"end":127,"href":"https:\u002F\u002Ftwitter.com\u002Fhashtag\u002Ffairelephant?src=hash","anchorType":"LINK","userId":null,"linkMetadata":null,"__typename":"Markup"},"Paragraph:3fed73795ca4_129":{"id":"3fed73795ca4_129","name":"343b","type":"P","href":null,"layout":null,"metadata":null,"text":"(Note: testflight_app is a parody account. Please do not mess with the actual testflight folks. They are still cool.)","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_130":{"id":"3fed73795ca4_130","name":"09bf","type":"P","href":null,"layout":null,"metadata":null,"text":"Or this…conversation:","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_131":{"id":"3fed73795ca4_131","name":"4d63","type":"IMG","href":null,"layout":"INSET_CENTER","metadata":{"type":"id","generated":false,"id":"ImageMetadata:1*kbPh7V97eyRodSOw2-ALDw.png","typename":"ImageMetadata"},"text":"","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"ImageMetadata:1*kbPh7V97eyRodSOw2-ALDw.png":{"id":"1*kbPh7V97eyRodSOw2-ALDw.png","originalHeight":542,"originalWidth":398,"focusPercentX":null,"focusPercentY":null,"alt":null,"__typename":"ImageMetadata"},"Paragraph:3fed73795ca4_132":{"id":"3fed73795ca4_132","name":"f2a3","type":"P","href":null,"layout":null,"metadata":null,"text":"Good job guys. Good job. Defend the tribe. Attack the other. Frederico attempts to recover from his stunning display of demeaning douchery: ‏@viticci: @s_bielefeld I don’t know if it’s an Italian thing, but counting other people’s money is especially weird for me. IMO, bad move in the post.","hasDropCap":null,"dropCapImage":null,"markups":[{"type":"id","generated":true,"id":"Paragraph:3fed73795ca4_132.markups.0","typename":"Markup"},{"type":"id","generated":true,"id":"Paragraph:3fed73795ca4_132.markups.1","typename":"Markup"}],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_132.markups.0":{"type":"A","start":140,"end":149,"href":"https:\u002F\u002Ftwitter.com\u002Fviticci","anchorType":"LINK","userId":"","linkMetadata":null,"__typename":"Markup"},"Paragraph:3fed73795ca4_132.markups.1":{"type":"A","start":151,"end":163,"href":"https:\u002F\u002Ftwitter.com\u002Fs_bielefeld","anchorType":"LINK","userId":"","linkMetadata":null,"__typename":"Markup"},"Paragraph:3fed73795ca4_133":{"id":"3fed73795ca4_133","name":"ae0c","type":"P","href":null,"layout":null,"metadata":null,"text":"Samantha is clearly sick of his crap: ‏@s_bielefeld: @viticci That’s what I’m referring to, the mistake of ever having mentioned it. So, now, Marco can ignore the bigger issue and go on living.","hasDropCap":null,"dropCapImage":null,"markups":[{"type":"id","generated":true,"id":"Paragraph:3fed73795ca4_133.markups.0","typename":"Markup"},{"type":"id","generated":true,"id":"Paragraph:3fed73795ca4_133.markups.1","typename":"Markup"}],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_133.markups.0":{"type":"A","start":38,"end":51,"href":"https:\u002F\u002Ftwitter.com\u002Fs_bielefeld","anchorType":"LINK","userId":"","linkMetadata":null,"__typename":"Markup"},"Paragraph:3fed73795ca4_133.markups.1":{"type":"A","start":53,"end":61,"href":"https:\u002F\u002Ftwitter.com\u002Fviticci","anchorType":"LINK","userId":"","linkMetadata":null,"__typename":"Markup"},"Paragraph:3fed73795ca4_134":{"id":"3fed73795ca4_134","name":"2047","type":"P","href":null,"layout":null,"metadata":null,"text":"Good for her. There’s being patient and being roadkill.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_135":{"id":"3fed73795ca4_135","name":"4139","type":"P","href":null,"layout":null,"metadata":null,"text":"Samantha does put the call out for her sources to maybe let her use their names:","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_136":{"id":"3fed73795ca4_136","name":"6626","type":"BQ","href":null,"layout":null,"metadata":null,"text":"From all of you I heard from earlier, anyone care to go on record?","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_137":{"id":"3fed73795ca4_137","name":"8a7d","type":"P","href":null,"layout":null,"metadata":null,"text":"My good friend, The Angry Drunk points out the obvious problem:","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_138":{"id":"3fed73795ca4_138","name":"68c9","type":"BQ","href":null,"layout":null,"metadata":null,"text":"Nobody’s going to go on record when they count on Marco’s friends for their PR.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_139":{"id":"3fed73795ca4_139","name":"317d","type":"P","href":null,"layout":null,"metadata":null,"text":"This is true. Again, the sites that are Friends of Marco:","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_140":{"id":"3fed73795ca4_140","name":"9523","type":"P","href":null,"layout":null,"metadata":null,"text":"Daring Fireball","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_141":{"id":"3fed73795ca4_141","name":"dbc7","type":"P","href":null,"layout":null,"metadata":null,"text":"The Loop","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_142":{"id":"3fed73795ca4_142","name":"c706","type":"P","href":null,"layout":null,"metadata":null,"text":"SixColors","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_143":{"id":"3fed73795ca4_143","name":"0acb","type":"P","href":null,"layout":null,"metadata":null,"text":"iMore","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_144":{"id":"3fed73795ca4_144","name":"8c8c","type":"P","href":null,"layout":null,"metadata":null,"text":"MacStories","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_145":{"id":"3fed73795ca4_145","name":"643e","type":"P","href":null,"layout":null,"metadata":null,"text":"A few others, but I want this post to end one day.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_146":{"id":"3fed73795ca4_146","name":"6b76","type":"P","href":null,"layout":null,"metadata":null,"text":"You piss that crew off, and given how petty rather a few of them have demonstrated they are, good luck on getting any kind of notice from them.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_147":{"id":"3fed73795ca4_147","name":"f7d1","type":"P","href":null,"layout":null,"metadata":null,"text":"Of course, the idea this could happen is just craycray:","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_148":{"id":"3fed73795ca4_148","name":"de59","type":"BQ","href":null,"layout":null,"metadata":null,"text":"@KevinColeman .@Angry_Drunk @s_bielefeld @marcoarment Wow, you guys are veering right into crazy conspiracy theory territory. #JetFuelCantMeltSteelBeams","hasDropCap":null,"dropCapImage":null,"markups":[{"type":"id","generated":true,"id":"Paragraph:3fed73795ca4_148.markups.0","typename":"Markup"},{"type":"id","generated":true,"id":"Paragraph:3fed73795ca4_148.markups.1","typename":"Markup"},{"type":"id","generated":true,"id":"Paragraph:3fed73795ca4_148.markups.2","typename":"Markup"},{"type":"id","generated":true,"id":"Paragraph:3fed73795ca4_148.markups.3","typename":"Markup"},{"type":"id","generated":true,"id":"Paragraph:3fed73795ca4_148.markups.4","typename":"Markup"}],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_148.markups.0":{"type":"A","start":0,"end":14,"href":"https:\u002F\u002Ftwitter.com\u002FKevinColeman","anchorType":"LINK","userId":null,"linkMetadata":null,"__typename":"Markup"},"Paragraph:3fed73795ca4_148.markups.1":{"type":"A","start":14,"end":27,"href":"https:\u002F\u002Ftwitter.com\u002FAngry_Drunk","anchorType":"LINK","userId":null,"linkMetadata":null,"__typename":"Markup"},"Paragraph:3fed73795ca4_148.markups.2":{"type":"A","start":28,"end":40,"href":"https:\u002F\u002Ftwitter.com\u002Fs_bielefeld","anchorType":"LINK","userId":null,"linkMetadata":null,"__typename":"Markup"},"Paragraph:3fed73795ca4_148.markups.3":{"type":"A","start":41,"end":53,"href":"https:\u002F\u002Ftwitter.com\u002Fmarcoarment","anchorType":"LINK","userId":null,"linkMetadata":null,"__typename":"Markup"},"Paragraph:3fed73795ca4_148.markups.4":{"type":"A","start":126,"end":152,"href":"https:\u002F\u002Ftwitter.com\u002Fhashtag\u002FJetFuelCantMeltSteelBeams?src=hash","anchorType":"LINK","userId":null,"linkMetadata":null,"__typename":"Markup"},"Paragraph:3fed73795ca4_149":{"id":"3fed73795ca4_149","name":"f01b","type":"P","href":null,"layout":null,"metadata":null,"text":"Yeah. Because a mature person like Marco would never do anything like that.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_150":{"id":"3fed73795ca4_150","name":"7e30","type":"P","href":null,"layout":null,"metadata":null,"text":"Of course, the real point on this is starting to happen:","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_151":{"id":"3fed73795ca4_151","name":"5d93","type":"BQ","href":null,"layout":null,"metadata":null,"text":"you’re getting a lot of heat now but happy you are writing things that stir up the community. Hope you continue to be a voice!","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_152":{"id":"3fed73795ca4_152","name":"436b","type":"BQ","href":null,"layout":null,"metadata":null,"text":"I doubt I will.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_153":{"id":"3fed73795ca4_153","name":"ac25","type":"P","href":null,"layout":null,"metadata":null,"text":"See, they’ve done their job. Mess with the bull, you get the horns. Maybe you should find another thing to write about, this isn’t a good place for you. Great job y’all.","hasDropCap":null,"dropCapImage":null,"markups":[{"type":"id","generated":true,"id":"Paragraph:3fed73795ca4_153.markups.0","typename":"Markup"}],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_153.markups.0":{"type":"EM","start":153,"end":158,"href":null,"anchorType":null,"userId":null,"linkMetadata":null,"__typename":"Markup"},"Paragraph:3fed73795ca4_154":{"id":"3fed73795ca4_154","name":"07ba","type":"P","href":null,"layout":null,"metadata":null,"text":"Some people aren’t even pretending. They’re just in full strawman mode:","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_155":{"id":"3fed73795ca4_155","name":"3d60","type":"BQ","href":null,"layout":null,"metadata":null,"text":"@timkeller: Unfair to begrudge a person for leveraging past success, especially when that success is earned. No ‘luck’ involved.","hasDropCap":null,"dropCapImage":null,"markups":[{"type":"id","generated":true,"id":"Paragraph:3fed73795ca4_155.markups.0","typename":"Markup"}],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_155.markups.0":{"type":"A","start":0,"end":12,"href":"https:\u002F\u002Ftwitter.com\u002Ftimkeller","anchorType":"LINK","userId":null,"linkMetadata":null,"__typename":"Markup"},"Paragraph:3fed73795ca4_156":{"id":"3fed73795ca4_156","name":"87f5","type":"BQ","href":null,"layout":null,"metadata":null,"text":"@s_bielefeld: @timkeller I plainly stated that I don’t hold his doing this against him. Way to twist words.","hasDropCap":null,"dropCapImage":null,"markups":[{"type":"id","generated":true,"id":"Paragraph:3fed73795ca4_156.markups.0","typename":"Markup"},{"type":"id","generated":true,"id":"Paragraph:3fed73795ca4_156.markups.1","typename":"Markup"}],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_156.markups.0":{"type":"A","start":0,"end":14,"href":"https:\u002F\u002Ftwitter.com\u002Fs_bielefeld","anchorType":"LINK","userId":null,"linkMetadata":null,"__typename":"Markup"},"Paragraph:3fed73795ca4_156.markups.1":{"type":"A","start":14,"end":24,"href":"https:\u002F\u002Ftwitter.com\u002Ftimkeller","anchorType":"LINK","userId":null,"linkMetadata":null,"__typename":"Markup"},"Paragraph:3fed73795ca4_157":{"id":"3fed73795ca4_157","name":"3720","type":"P","href":null,"layout":null,"metadata":null,"text":"I think she’s earned her anger at this point.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_158":{"id":"3fed73795ca4_158","name":"7341","type":"P","href":null,"layout":null,"metadata":null,"text":"Don’t worry, Marco knows what the real problem is: most devs just suck —","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_159":{"id":"3fed73795ca4_159","name":"babe","type":"IMG","href":null,"layout":"INSET_CENTER","metadata":{"type":"id","generated":false,"id":"ImageMetadata:1*Fpb2Bvdx7Q-688vdm-NdkQ.png","typename":"ImageMetadata"},"text":"","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"ImageMetadata:1*Fpb2Bvdx7Q-688vdm-NdkQ.png":{"id":"1*Fpb2Bvdx7Q-688vdm-NdkQ.png","originalHeight":771,"originalWidth":694,"focusPercentX":null,"focusPercentY":null,"alt":null,"__typename":"ImageMetadata"},"Paragraph:3fed73795ca4_160":{"id":"3fed73795ca4_160","name":"503d","type":"P","href":null,"layout":null,"metadata":null,"text":"I have a saying that applies in this case: don’t place your head so far up your nethers that you go full Klein Bottle. Marco has gone full Klein Bottle. (To be correct, he went FKB some years ago.)","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_161":{"id":"3fed73795ca4_161","name":"b8c0","type":"P","href":null,"layout":null,"metadata":null,"text":"There are some bright spots. My favorite is when Building Twenty points out the real elephant in the room:","hasDropCap":null,"dropCapImage":null,"markups":[{"type":"id","generated":true,"id":"Paragraph:3fed73795ca4_161.markups.0","typename":"Markup"}],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_161.markups.0":{"type":"EM","start":80,"end":84,"href":null,"anchorType":null,"userId":null,"linkMetadata":null,"__typename":"Markup"},"Paragraph:3fed73795ca4_162":{"id":"3fed73795ca4_162","name":"36f4","type":"BQ","href":null,"layout":null,"metadata":null,"text":"@BuildingTwenty: Both @s_bielefeld & I wrote similar critiques of @marcoarment’s pricing model yet the Internet pilloried only the woman. Who’d have guessed?","hasDropCap":null,"dropCapImage":null,"markups":[{"type":"id","generated":true,"id":"Paragraph:3fed73795ca4_162.markups.0","typename":"Markup"},{"type":"id","generated":true,"id":"Paragraph:3fed73795ca4_162.markups.1","typename":"Markup"},{"type":"id","generated":true,"id":"Paragraph:3fed73795ca4_162.markups.2","typename":"Markup"}],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_162.markups.0":{"type":"A","start":0,"end":15,"href":"https:\u002F\u002Ftwitter.com\u002FBuildingTwenty","anchorType":"LINK","userId":null,"linkMetadata":null,"__typename":"Markup"},"Paragraph:3fed73795ca4_162.markups.1":{"type":"A","start":22,"end":34,"href":"https:\u002F\u002Ftwitter.com\u002Fs_bielefeld","anchorType":"LINK","userId":null,"linkMetadata":null,"__typename":"Markup"},"Paragraph:3fed73795ca4_162.markups.2":{"type":"A","start":66,"end":78,"href":"https:\u002F\u002Ftwitter.com\u002Fmarcoarment","anchorType":"LINK","userId":null,"linkMetadata":null,"__typename":"Markup"},"Paragraph:3fed73795ca4_163":{"id":"3fed73795ca4_163","name":"06b9","type":"P","href":null,"layout":null,"metadata":null,"text":"Yup.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_164":{"id":"3fed73795ca4_164","name":"eff9","type":"P","href":null,"layout":null,"metadata":null,"text":"Another bright spot are these comments from Ian Betteridge, who has been doing this even longer than Marco:","hasDropCap":null,"dropCapImage":null,"markups":[{"type":"id","generated":true,"id":"Paragraph:3fed73795ca4_164.markups.0","typename":"Markup"}],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_164.markups.0":{"type":"EM","start":84,"end":106,"href":null,"anchorType":null,"userId":null,"linkMetadata":null,"__typename":"Markup"},"Paragraph:3fed73795ca4_165":{"id":"3fed73795ca4_165","name":"18f1","type":"BQ","href":null,"layout":null,"metadata":null,"text":"You know, any writer who has never made a single factual error in a piece hasn’t ever written anything worth reading.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_166":{"id":"3fed73795ca4_166","name":"9776","type":"BQ","href":null,"layout":null,"metadata":null,"text":"I learned my job with the support of people who helped me. Had I suffered an Internet pile on for every error I wouldn’t have bothered.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_167":{"id":"3fed73795ca4_167","name":"8d44","type":"P","href":null,"layout":null,"metadata":null,"text":"To which Samantha understandably replies:","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_168":{"id":"3fed73795ca4_168","name":"7147","type":"BQ","href":null,"layout":null,"metadata":null,"text":"and it’s honestly something I’m contemplating right now, whether to continue…","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_169":{"id":"3fed73795ca4_169","name":"e0cd","type":"P","href":null,"layout":null,"metadata":null,"text":"Gee, I can’t imagine why. Why with comments like this from Chris Breen that completely misrepresent Samantha’s point, (who until today, I would have absolutely defended as being better than this, something I am genuinely saddened to be wrong about), why wouldn’t she want to continue doing this?","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_170":{"id":"3fed73795ca4_170","name":"a379","type":"BQ","href":null,"layout":null,"metadata":null,"text":"If I have this right, some people are outraged that a creator has decided to give away his work.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_171":{"id":"3fed73795ca4_171","name":"f026","type":"P","href":null,"layout":null,"metadata":null,"text":"No Chris, you don’t have this right. But hey, who has time to find out the real issue and read an article. I’m sure your friends told you everything you need to know.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_172":{"id":"3fed73795ca4_172","name":"e1c2","type":"P","href":null,"layout":null,"metadata":null,"text":"Noted Feminist Glenn Fleishman gets a piece of the action too:","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_173":{"id":"3fed73795ca4_173","name":"067c","type":"IMG","href":null,"layout":"INSET_CENTER","metadata":{"type":"id","generated":false,"id":"ImageMetadata:1*lvOySry5gHHJfGU_bQXrzA.png","typename":"ImageMetadata"},"text":"","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"ImageMetadata:1*lvOySry5gHHJfGU_bQXrzA.png":{"id":"1*lvOySry5gHHJfGU_bQXrzA.png","originalHeight":269,"originalWidth":308,"focusPercentX":null,"focusPercentY":null,"alt":null,"__typename":"ImageMetadata"},"Paragraph:3fed73795ca4_174":{"id":"3fed73795ca4_174","name":"4df8","type":"P","href":null,"layout":null,"metadata":null,"text":"I’m not actually surprised here. I watched Fleishman berate a friend of mine who has been an engineer for…heck, waaaaay too long on major software products in the most condescending way because she tried to point out that as a very technical woman, “The Magazine” literally had nothing to say to her and maybe he should fix that. “Impertinent” was I believe what he called her, but I may have the specific word wrong. Not the attitude mind you. Great Feminists like Glenn do not like uppity women criticizing Great Feminists who are their Great Allies.","hasDropCap":null,"dropCapImage":null,"markups":[{"type":"id","generated":true,"id":"Paragraph:3fed73795ca4_174.markups.0","typename":"Markup"}],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_174.markups.0":{"type":"EM","start":227,"end":231,"href":null,"anchorType":null,"userId":null,"linkMetadata":null,"__typename":"Markup"},"Paragraph:3fed73795ca4_175":{"id":"3fed73795ca4_175","name":"bf45","type":"P","href":null,"layout":null,"metadata":null,"text":"Great Feminists are often tools.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_176":{"id":"3fed73795ca4_176","name":"45bb","type":"P","href":null,"layout":null,"metadata":null,"text":"Luckily, I hope, the people who get Samantha’s point also started chiming in (and you get 100% of the women commenting here that I’ve seen):","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_177":{"id":"3fed73795ca4_177","name":"c053","type":"BQ","href":null,"layout":null,"metadata":null,"text":"I don’t think he’s wrong for doing it, he just discusses it as if the market’s a level playing field — it isn’t","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_178":{"id":"3fed73795ca4_178","name":"7b5e","type":"BQ","href":null,"layout":null,"metadata":null,"text":"This is a great article with lots of great points about the sustainability of iOS development. Thank you for publishing it.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_179":{"id":"3fed73795ca4_179","name":"a321","type":"BQ","href":null,"layout":null,"metadata":null,"text":"Regardless of the numbers and your view of MA, fair points here about confirmation bias in app marketing feasibility http:\u002F\u002Fsamanthabielefeld.com\u002Fthe-elephant-in-the-room …","hasDropCap":null,"dropCapImage":null,"markups":[{"type":"id","generated":true,"id":"Paragraph:3fed73795ca4_179.markups.0","typename":"Markup"}],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_179.markups.0":{"type":"A","start":117,"end":172,"href":"http:\u002F\u002Ft.co\u002Fu79ZLsnhdM","anchorType":"LINK","userId":null,"linkMetadata":null,"__typename":"Markup"},"Paragraph:3fed73795ca4_180":{"id":"3fed73795ca4_180","name":"76fe","type":"BQ","href":null,"layout":null,"metadata":null,"text":"thank you for posting this, it covers a lot of things people don’t like to talk about.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_181":{"id":"3fed73795ca4_181","name":"bf90","type":"BQ","href":null,"layout":null,"metadata":null,"text":"I’m sure you have caught untold amounts of flak over posting this because Marco is blind to his privilege as a developer.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_182":{"id":"3fed73795ca4_182","name":"0f66","type":"BQ","href":null,"layout":null,"metadata":null,"text":"Catching up on the debate, and agreeing with Harry’s remark. (Enjoyed your article, Samantha, and ‘got’ your point.)","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_183":{"id":"3fed73795ca4_183","name":"6134","type":"P","href":null,"layout":null,"metadata":null,"text":"I would like to say I’m surprised at the reaction to Samantha’s article, but I’m not. In spite of his loud declarations of support for The Big Lie, Marco Arment is as bad at any form of criticism that he hasn’t already approved as a very insecure tween. An example from 2011: http:\u002F\u002Fwww.businessinsider.com\u002Fmarco-arment-2011-9","hasDropCap":null,"dropCapImage":null,"markups":[{"type":"id","generated":true,"id":"Paragraph:3fed73795ca4_183.markups.0","typename":"Markup"}],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_183.markups.0":{"type":"A","start":276,"end":326,"href":"http:\u002F\u002Fwww.businessinsider.com\u002Fmarco-arment-2011-9","anchorType":"LINK","userId":null,"linkMetadata":null,"__typename":"Markup"},"Paragraph:3fed73795ca4_184":{"id":"3fed73795ca4_184","name":"ba3c","type":"P","href":null,"layout":null,"metadata":null,"text":"Marco is great with criticism as long as it never actually criticizes him. If it does, be prepared a flood of petty, petulant whining that a room full of bored preschoolers on a hot day would be hard-pressed to match.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_185":{"id":"3fed73795ca4_185","name":"a5a0","type":"P","href":null,"layout":null,"metadata":null,"text":"Today has been…well, it sucks. It sucks because someone doing what all the Arments of the world claim to want was naive enough to believe what they were told, and found out the hard way just how big a lie The Big Lie is, and how vicious people are when you’re silly enough to believe anything they say about criticism.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_186":{"id":"3fed73795ca4_186","name":"2a25","type":"P","href":null,"layout":null,"metadata":null,"text":"And note again, every single condescending crack, misrepresentation, and strawman had an exclusively male source. Most of them have, at one point or another, loudly trumpted themselves as Feminist Allies, as a friend to women struggling with the sexism and misogyny in tech. Congratulations y’all on being just as bad as the people you claim to oppose.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_187":{"id":"3fed73795ca4_187","name":"a47a","type":"P","href":null,"layout":null,"metadata":null,"text":"Samantha has handled this better than anyone else could have. My respect for her as a person and a writer is off the charts. If she choses to walk away from blogging in the Apple space, believe me I understand. As bad as today was for her, I’ve seen worse. Much worse.","hasDropCap":null,"dropCapImage":null,"markups":[{"type":"id","generated":true,"id":"Paragraph:3fed73795ca4_187.markups.0","typename":"Markup"}],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_187.markups.0":{"type":"EM","start":186,"end":196,"href":null,"anchorType":null,"userId":null,"linkMetadata":null,"__typename":"Markup"},"Paragraph:3fed73795ca4_188":{"id":"3fed73795ca4_188","name":"aa8e","type":"P","href":null,"layout":null,"metadata":null,"text":"But I hope she doesn’t. I hope she stays, because she is Doing This Right, and in a corner of the internet that has become naught but an endless circle jerk, a cliquish collection, a churlish, childish cohort interested not in writing or the truth, but in making sure The Right People are elevated, and The Others put down, she is someone worth reading and listening to. The number people who owe her apologies goes around the block, and I don’t think she’ll ever see a one. I’m sure as heck not apologizing for them, I’ll not make their lives easier in the least.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_189":{"id":"3fed73795ca4_189","name":"34c5","type":"P","href":null,"layout":null,"metadata":null,"text":"All of you, all. of. you…Marco, Breen, Snell, Vittici, had a chance to live by your words. You were faced with reasoned, polite, respectful criticism and instead of what you should have done, you all dropped trou and sprayed an epic diarrheal discharge all over someone who had done nothing to deserve it. Me, I earned most of my aggro, Samantha did not earn any of the idiocy I’ve seen today. I hope you’re all proud of yourselves. Someone should be, it won’t be me. Ever.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"Paragraph:3fed73795ca4_190":{"id":"3fed73795ca4_190","name":"9710","type":"P","href":null,"layout":null,"metadata":null,"text":"So I hope she stays, but if she goes, I understand. For what it’s worth, I don’t think she’s wrong either way.","hasDropCap":null,"dropCapImage":null,"markups":[],"__typename":"Paragraph","iframe":null,"mixtapeMetadata":null},"$Post:d146a92473a1.postResponses":{"count":13,"__typename":"PostResponses"},"Post:57ed6bd76960":{"__typename":"Post","id":"57ed6bd76960","title":"The Pinterest Paradox: Cupcakes and Toxicity","mediumUrl":"https:\u002F\u002Fmedium.com\u002F@francoise_93266\u002Fthe-pinterest-paradox-cupcakes-and-toxicity-57ed6bd76960","previewImage":{"type":"id","generated":false,"id":"ImageMetadata:","typename":"ImageMetadata"},"isPublished":true,"firstPublishedAt":1597185784040,"readingTime":16.807547169811322,"statusForCollection":null,"isLocked":true,"isShortform":false,"visibility":"LOCKED","collection":null,"creator":{"type":"id","generated":false,"id":"User:d299e872410","typename":"User"},"previewContent":{"type":"id","generated":true,"id":"$Post:57ed6bd76960.previewContent","typename":"PreviewContent"}},"ImageMetadata:":{"id":"","focusPercentX":null,"focusPercentY":null,"__typename":"ImageMetadata"},"User:d299e872410":{"name":"Francoise Brougher","username":"francoise_93266","id":"d299e872410","bio":"Former Pinterest COO and Executive at Square and Google. French American, from Marseille to the Bay Area. Mom of Three","isFollowing":null,"imageId":"1*tPgjXGoTTRKg7xcmn3yMOw.jpeg","mediumMemberAt":0,"__typename":"User"},"$Post:57ed6bd76960.previewContent":{"isFullContent":false,"__typename":"PreviewContent"},"Post:c16cc0b092f1":{"__typename":"Post","id":"c16cc0b092f1","title":"Your Life Is Full of Porn. Stop Getting Yourself Off.","mediumUrl":"https:\u002F\u002Fmedium.com\u002Fthe-ascent\u002Fyour-life-is-full-of-porn-stop-getting-yourself-off-c16cc0b092f1","previewImage":{"type":"id","generated":false,"id":"ImageMetadata:1*fkW0uY9JMZ6oUNyVRO6BBQ.jpeg","typename":"ImageMetadata"},"isPublished":true,"firstPublishedAt":1596214861525,"readingTime":4.6716981132075475,"statusForCollection":"APPROVED","isLocked":true,"isShortform":false,"visibility":"LOCKED","collection":{"type":"id","generated":false,"id":"Collection:eb660df75111","typename":"Collection"},"creator":{"type":"id","generated":false,"id":"User:b6d641be1066","typename":"User"},"previewContent":{"type":"id","generated":true,"id":"$Post:c16cc0b092f1.previewContent","typename":"PreviewContent"}},"ImageMetadata:1*fkW0uY9JMZ6oUNyVRO6BBQ.jpeg":{"id":"1*fkW0uY9JMZ6oUNyVRO6BBQ.jpeg","focusPercentX":null,"focusPercentY":null,"__typename":"ImageMetadata"},"Collection:eb660df75111":{"name":"The Ascent","id":"eb660df75111","slug":"the-ascent","domain":"theascent.pub","__typename":"Collection"},"User:b6d641be1066":{"name":"Tim Denning","username":"timdenning","id":"b6d641be1066","bio":"Aussie Blogger — Writer for CNBC & Business Insider. Inspiring the world through Personal Development and Entrepreneurship. www.timdenning.com","isFollowing":null,"imageId":"2*D4KAER7h6bCkTU-m7Aw9DA.jpeg","mediumMemberAt":1570431600000,"__typename":"User"},"$Post:c16cc0b092f1.previewContent":{"isFullContent":false,"__typename":"PreviewContent"},"Post:238dae9a4372":{"__typename":"Post","id":"238dae9a4372","title":"Mourning my baby brother, Fahim","mediumUrl":"https:\u002F\u002Fmedium.com\u002F@justiceforfahim\u002Fmourning-my-baby-brother-fahim-238dae9a4372","previewImage":{"type":"id","generated":false,"id":"ImageMetadata:1*HizZro5r4AJ8Fj_xjVUzrA.jpeg","typename":"ImageMetadata"},"isPublished":true,"firstPublishedAt":1597311061478,"readingTime":14.243396226415094,"statusForCollection":null,"isLocked":true,"isShortform":false,"visibility":"LOCKED","collection":null,"creator":{"type":"id","generated":false,"id":"User:8ad85cee2b23","typename":"User"},"previewContent":{"type":"id","generated":true,"id":"$Post:238dae9a4372.previewContent","typename":"PreviewContent"}},"ImageMetadata:1*HizZro5r4AJ8Fj_xjVUzrA.jpeg":{"id":"1*HizZro5r4AJ8Fj_xjVUzrA.jpeg","focusPercentX":null,"focusPercentY":null,"__typename":"ImageMetadata"},"User:8ad85cee2b23":{"name":"Justiceforfahim","username":"justiceforfahim","id":"8ad85cee2b23","bio":"","isFollowing":null,"imageId":"0*JZ7dfapmV3kCb0CH.jpg","mediumMemberAt":0,"__typename":"User"},"$Post:238dae9a4372.previewContent":{"isFullContent":false,"__typename":"PreviewContent"},"Post:9cf4ec1c8e26":{"__typename":"Post","id":"9cf4ec1c8e26","title":"I’m A Sugar Baby-& This Is How Much I Get Paid To Date","mediumUrl":"https:\u002F\u002Fmedium.com\u002Frefinery29\u002Fim-a-sugar-baby-this-is-how-much-i-get-paid-to-date-9cf4ec1c8e26","previewImage":{"type":"id","generated":false,"id":"ImageMetadata:0*vGxs86f0dmFewdXV.jpg","typename":"ImageMetadata"},"isPublished":true,"firstPublishedAt":1596556261424,"readingTime":8.815094339622641,"statusForCollection":"APPROVED","isLocked":true,"isShortform":false,"visibility":"LOCKED","collection":{"type":"id","generated":false,"id":"Collection:aa4155f74368","typename":"Collection"},"creator":{"type":"id","generated":false,"id":"User:47057b17b8e2","typename":"User"},"previewContent":{"type":"id","generated":true,"id":"$Post:9cf4ec1c8e26.previewContent","typename":"PreviewContent"}},"ImageMetadata:0*vGxs86f0dmFewdXV.jpg":{"id":"0*vGxs86f0dmFewdXV.jpg","focusPercentX":null,"focusPercentY":null,"__typename":"ImageMetadata"},"Collection:aa4155f74368":{"name":"Refinery29","id":"aa4155f74368","slug":"refinery29","domain":null,"__typename":"Collection"},"User:47057b17b8e2":{"name":"Refinery29 UK","username":"refinery29","id":"47057b17b8e2","bio":"The leading global media company focused on young women. We inspire, entertain, and empower our audience through optimistic and diverse storytelling.","isFollowing":null,"imageId":"0*000ZlntQkYrNiPB-.png","mediumMemberAt":0,"__typename":"User"},"$Post:9cf4ec1c8e26.previewContent":{"isFullContent":false,"__typename":"PreviewContent"},"Post:94a10bc60f2b":{"__typename":"Post","id":"94a10bc60f2b","title":"Can Kamala Harris and Joe Biden Defeat Trump?","mediumUrl":"https:\u002F\u002Feand.co\u002Fcan-kamala-harris-and-joe-biden-defeat-trump-94a10bc60f2b","previewImage":{"type":"id","generated":false,"id":"ImageMetadata:1*6prX9w38K3M3PEZG9XkbFg.jpeg","typename":"ImageMetadata"},"isPublished":true,"firstPublishedAt":1597270521604,"readingTime":10.154716981132074,"statusForCollection":"APPROVED","isLocked":true,"isShortform":false,"visibility":"LOCKED","collection":{"type":"id","generated":false,"id":"Collection:9b4cc1c6abbd","typename":"Collection"},"creator":{"type":"id","generated":false,"id":"User:41e01d325219","typename":"User"},"previewContent":{"type":"id","generated":true,"id":"$Post:94a10bc60f2b.previewContent","typename":"PreviewContent"}},"ImageMetadata:1*6prX9w38K3M3PEZG9XkbFg.jpeg":{"id":"1*6prX9w38K3M3PEZG9XkbFg.jpeg","focusPercentX":null,"focusPercentY":null,"__typename":"ImageMetadata"},"Collection:9b4cc1c6abbd":{"name":"Eudaimonia and Co","id":"9b4cc1c6abbd","slug":"eudaimonia-co","domain":"eand.co","__typename":"Collection"},"User:41e01d325219":{"name":"umair haque","username":"umairh","id":"41e01d325219","bio":"vampire.","isFollowing":null,"imageId":"0*lI5-avJvcBbQDmA2.jpeg","mediumMemberAt":1529949326000,"__typename":"User"},"$Post:94a10bc60f2b.previewContent":{"isFullContent":false,"__typename":"PreviewContent"},"Post:4f221ac3dbe3":{"__typename":"Post","id":"4f221ac3dbe3","title":"The Best Data Science Certification You’ve Never Heard Of","mediumUrl":"https:\u002F\u002Ftowardsdatascience.com\u002Fbest-data-science-certification-4f221ac3dbe3","previewImage":{"type":"id","generated":false,"id":"ImageMetadata:1*t43PDV1g9w-DvjMugoks2A.jpeg","typename":"ImageMetadata"},"isPublished":true,"firstPublishedAt":1597164086108,"readingTime":7.346226415094339,"statusForCollection":"APPROVED","isLocked":true,"isShortform":false,"visibility":"LOCKED","collection":{"type":"id","generated":false,"id":"Collection:7f60cf5620c9","typename":"Collection"},"creator":{"type":"id","generated":false,"id":"User:2caa691701c0","typename":"User"},"previewContent":{"type":"id","generated":true,"id":"$Post:4f221ac3dbe3.previewContent","typename":"PreviewContent"}},"ImageMetadata:1*t43PDV1g9w-DvjMugoks2A.jpeg":{"id":"1*t43PDV1g9w-DvjMugoks2A.jpeg","focusPercentX":null,"focusPercentY":null,"__typename":"ImageMetadata"},"Collection:7f60cf5620c9":{"name":"Towards Data Science","id":"7f60cf5620c9","slug":"towards-data-science","domain":"towardsdatascience.com","__typename":"Collection"},"User:2caa691701c0":{"name":"Nicole Janeway Bills","username":"nicolejaneway","id":"2caa691701c0","bio":"Data Scientist at Atlas Research in Washington, DC | Quarantining in a Python virtual environment","isFollowing":null,"imageId":"2*UVCEt3tjr0W9zC3dymCPtQ.jpeg","mediumMemberAt":0,"__typename":"User"},"$Post:4f221ac3dbe3.previewContent":{"isFullContent":false,"__typename":"PreviewContent"},"Post:c6087d2df935":{"__typename":"Post","id":"c6087d2df935","title":"TypeScript 4.0 finally delivers what I’ve been waiting for","mediumUrl":"https:\u002F\u002Fmedium.com\u002Fjavascript-in-plain-english\u002Ftypescript-4-0-i-want-a-list-of-generic-params-with-good-labels-c6087d2df935","previewImage":{"type":"id","generated":false,"id":"ImageMetadata:1*G00zmJivkNGN1L6fDo9vnQ.png","typename":"ImageMetadata"},"isPublished":true,"firstPublishedAt":1596838633257,"readingTime":2.6330188679245285,"statusForCollection":"APPROVED","isLocked":true,"isShortform":false,"visibility":"LOCKED","collection":{"type":"id","generated":false,"id":"Collection:4b3a1ed4f11c","typename":"Collection"},"creator":{"type":"id","generated":false,"id":"User:b5ccf606a659","typename":"User"},"previewContent":{"type":"id","generated":true,"id":"$Post:c6087d2df935.previewContent","typename":"PreviewContent"}},"ImageMetadata:1*G00zmJivkNGN1L6fDo9vnQ.png":{"id":"1*G00zmJivkNGN1L6fDo9vnQ.png","focusPercentX":null,"focusPercentY":null,"__typename":"ImageMetadata"},"Collection:4b3a1ed4f11c":{"name":"JavaScript In Plain English","id":"4b3a1ed4f11c","slug":"javascript-in-plain-english","domain":null,"__typename":"Collection"},"User:b5ccf606a659":{"name":"Nathaniel Kessler","username":"nathanielkessler","id":"b5ccf606a659","bio":"Coding and front-end | nathanielkessler.com","isFollowing":null,"imageId":"2*CXxf7GK5jOj87CWO7YruLQ.png","mediumMemberAt":1579007136857,"__typename":"User"},"$Post:c6087d2df935.previewContent":{"isFullContent":false,"__typename":"PreviewContent"},"Post:25a86ed4a421":{"__typename":"Post","id":"25a86ed4a421","title":"America and the Axis of Idiots","mediumUrl":"https:\u002F\u002Feand.co\u002Famerica-and-the-axis-of-idiots-25a86ed4a421","previewImage":{"type":"id","generated":false,"id":"ImageMetadata:1*yNRBQduBLs8p_tEpShEGzQ.jpeg","typename":"ImageMetadata"},"isPublished":true,"firstPublishedAt":1597184309884,"readingTime":8.535849056603773,"statusForCollection":"APPROVED","isLocked":true,"isShortform":false,"visibility":"LOCKED","collection":{"type":"id","generated":false,"id":"Collection:9b4cc1c6abbd","typename":"Collection"},"creator":{"type":"id","generated":false,"id":"User:41e01d325219","typename":"User"},"previewContent":{"type":"id","generated":true,"id":"$Post:25a86ed4a421.previewContent","typename":"PreviewContent"}},"ImageMetadata:1*yNRBQduBLs8p_tEpShEGzQ.jpeg":{"id":"1*yNRBQduBLs8p_tEpShEGzQ.jpeg","focusPercentX":null,"focusPercentY":null,"__typename":"ImageMetadata"},"$Post:25a86ed4a421.previewContent":{"isFullContent":false,"__typename":"PreviewContent"},"$Post:d146a92473a1.internalLinks({\"paging\":{\"limit\":8}})":{"items":[{"type":"id","generated":false,"id":"Post:57ed6bd76960","typename":"Post"},{"type":"id","generated":false,"id":"Post:c16cc0b092f1","typename":"Post"},{"type":"id","generated":false,"id":"Post:238dae9a4372","typename":"Post"},{"type":"id","generated":false,"id":"Post:9cf4ec1c8e26","typename":"Post"},{"type":"id","generated":false,"id":"Post:94a10bc60f2b","typename":"Post"},{"type":"id","generated":false,"id":"Post:4f221ac3dbe3","typename":"Post"},{"type":"id","generated":false,"id":"Post:c6087d2df935","typename":"Post"},{"type":"id","generated":false,"id":"Post:25a86ed4a421","typename":"Post"}],"__typename":"InternalLinksConnection"},"$Post:d146a92473a1.previewContent":{"subtitle":"How to get shanked doing what people say they want","__typename":"PreviewContent"}}
        ]]>
        </script>
        <script src="https://cdn-client.medium.com/lite/static/js/manifest.969da7fb.js"></script>
        <script src="https://cdn-client.medium.com/lite/static/js/vendors~main.343f1489.chunk.js"></script>
        <script src="https://cdn-client.medium.com/lite/static/js/main.03b8d106.chunk.js"></script>
        <script src="https://cdn-client.medium.com/lite/static/js/vendors~instrumentation.aafb014a.chunk.js"></script> 
        <script src="https://cdn-client.medium.com/lite/static/js/instrumentation.2fc37711.chunk.js"></script> 
        <script src="https://cdn-client.medium.com/lite/static/js/reporting.2a00272f.chunk.js"></script> 
        <script src="https://cdn-client.medium.com/lite/static/js/vendors~AMPPost~CollectionHomepage~CollectionHomepagePreview~CollectionNewShortformEditor~Collection~abee666d.21607860.chunk.js"></script> 
        <script src="https://cdn-client.medium.com/lite/static/js/vendors~AMPPost~CollectionNewShortformEditor~CollectionPostShortformEditor~DebugCachedPost~Post~Sequ~19f09bd3.5b5af8d1.chunk.js"></script> 
        <script src="https://cdn-client.medium.com/lite/static/js/vendors~AMPPost~DebugCachedPost~Post~SequencePost~Series.9932a441.chunk.js"></script> 
        <script src="https://cdn-client.medium.com/lite/static/js/AMPPost~CollectionHomepage~CollectionHomepagePreview~CollectionNewShortformEditor~CollectionPostShor~c3445a7d.c5ca06bd.chunk.js"></script> 
        <script src="https://cdn-client.medium.com/lite/static/js/Post.d4129f11.chunk.js"></script>
        <script>
        <![CDATA[
        window.main();
        ]]>
        </script>
    </body>
</html>