-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApplyingToCollege-1552500019-b0p2n1.json
1642 lines (1642 loc) · 84.6 KB
/
ApplyingToCollege-1552500019-b0p2n1.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"sid": "b0p2n1",
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/",
"title:": "Forget Olivia Jade, this girl's parents paid $50,000 for a proctor to be flown in to correct her answers for the SAT, got multiple days to take the test, and ended up getting a 1380",
"text": "https://imgur.com/a/xy52lvn\n\nL M A O (#justbayareathings)",
"author": "rc6188",
"created": 1552500019,
"updated": 1634075370,
"over_18": false,
"upvotes": 3145,
"upvote_ratio": 0.99,
"comments": {
"eig3sql": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eig3sql/",
"text": "[deleted]",
"author": null,
"created": 1552500631,
"upvotes": 1368,
"replies": {
"eigbi2o": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eigbi2o/",
"text": "I\u2019d definitely watch a TV show based on this event.",
"author": null,
"created": 1552505484,
"upvotes": 383,
"replies": {
"eigbx19": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eigbx19/",
"text": "a reality TV show. \n\n*screen shows header that says \"Day Four of the SAT\"*\n\n*editing switches between her in the testing room with her sitting on a snake skin sofa in her third bedroom recounting how hard the writing section was*",
"author": "rc6188",
"created": 1552505738,
"upvotes": 376,
"replies": {
"eignarj": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eignarj/",
"text": "Ok but fuck the writing section. Like it didn\u2019t seem difficult in the moment but I got a 1400 overall and my writing score was garbage\n\nEdit: I am rarted, I meant essay",
"author": "pokexchespin",
"created": 1552512954,
"upvotes": 97,
"replies": {
"eigpa80": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eigpa80/",
"text": "review all the grammar rules thoroughly. usually you can easily have a huge improvement in that section afterwards",
"author": "rc6188",
"created": 1552514220,
"upvotes": 47,
"replies": {
"eigpdcs": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eigpdcs/",
"text": "Oh shit I\u2019m fucking stupid, I meant the essay. Writing was something I did well with lol",
"author": "pokexchespin",
"created": 1552514276,
"upvotes": 32,
"replies": {}
}
}
},
"eihfo9w": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eihfo9w/",
"text": "When I took mine, I don't think I finished the essay section, but I did very well on the writing section. I simply don't write fast enough apparently. \n\nA 1400 is great, nobody will tell you that anything above average gets you into any fill in the blank state university you want. If you're pushing for a name brand, that's another discussion. Even so, a name brand isn't required to get a job in your field unless the field you're going into is vastly oversaturated.",
"author": "AnActualSquid",
"created": 1552533561,
"upvotes": 13,
"replies": {}
},
"eihtt0i": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eihtt0i/",
"text": "1530 and a 4/4/5 essay ayyyyyyy",
"author": "Alise_in_Wonderland",
"created": 1552549993,
"upvotes": 5,
"replies": {
"eiids3e": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eiids3e/",
"text": "1550 and 3/5/3 gang gang",
"author": "GreatGatesOfKiev",
"created": 1552572599,
"upvotes": 2,
"replies": {
"eijpywu": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eijpywu/",
"text": "lol 1530 is pathetic",
"author": "SugondeseMan",
"created": 1552603875,
"upvotes": 0,
"replies": {}
}
}
}
}
},
"eihk09u": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eihk09u/",
"text": "Yeah, but at least you got that score in one sitting. Lol.",
"author": "Mmmn_fries",
"created": 1552537329,
"upvotes": 2,
"replies": {}
},
"epx4iov": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/epx4iov/",
"text": "Same here. The second time around I made sure to write as cleanly as possible and really dumb down my arguments. But fuck even with 5-years of training at a magnet liberal-arts school and an overall 1540 I couldn't breach 1540. Maybe it's me, but it's worth noting others got similar scores.",
"author": "excelsiorparadigm",
"created": 1559591837,
"upvotes": 2,
"replies": {}
}
}
},
"eih5aeq": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eih5aeq/",
"text": "Lifestyles of the rich and famous.",
"author": "whatisyournamemike",
"created": 1552525609,
"upvotes": 6,
"replies": {}
}
}
},
"eigqugz": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eigqugz/",
"text": "Fuck, man, I want a TV show about modern HS life in general.",
"author": "Mellonhead58",
"created": 1552515250,
"upvotes": 40,
"replies": {
"eigqz9t": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eigqz9t/",
"text": "Lol. Will it be like Office, with a cheater portrayed like Creed?",
"author": null,
"created": 1552515341,
"upvotes": 21,
"replies": {
"eigrtvt": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eigrtvt/",
"text": "Idk, never watched the office. Was thinking something more scripted though, just about the aimless dread and constant memery we go through",
"author": "Mellonhead58",
"created": 1552515922,
"upvotes": 13,
"replies": {
"eihbg38": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eihbg38/",
"text": "[deleted]",
"author": null,
"created": 1552530141,
"upvotes": 7,
"replies": {
"eihbtou": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eihbtou/",
"text": "Aye feck off sonneh some of us suffer from severe secondhand embarrassment ",
"author": "Mellonhead58",
"created": 1552530435,
"upvotes": 4,
"replies": {}
},
"eii3pvf": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eii3pvf/",
"text": "The office isn\u2019t amazing",
"author": "Nicholas1227",
"created": 1552564355,
"upvotes": 0,
"replies": {}
}
}
}
}
}
}
},
"eihrx6b": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eihrx6b/",
"text": "Check out American Vandal",
"author": "TDImig",
"created": 1552546948,
"upvotes": 3,
"replies": {
"eke236f": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eke236f/",
"text": "If the show is picked up for a third season (Netflix dropped the show), maybe they will use this idea for a college scandal.",
"author": "HmmWhatsHisFace",
"created": 1554734657,
"upvotes": 2,
"replies": {}
}
}
},
"eiimbg0": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eiimbg0/",
"text": "Ap bio",
"author": null,
"created": 1552578338,
"upvotes": 2,
"replies": {}
},
"eii1xxt": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eii1xxt/",
"text": "high school musical foo",
"author": "yungelonmusk",
"created": 1552562600,
"upvotes": 1,
"replies": {
"eii6bn9": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eii6bn9/",
"text": "Yeah I remember that time I broke into song and dance and had an existential crisis because my friends socially isolated me because I told them I was kind of into cooking hahaa ",
"author": "Mellonhead58",
"created": 1552566771,
"upvotes": 3,
"replies": {
"eiocnta": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eiocnta/",
"text": "LISTEN it was good writing at the time ",
"author": "yungelonmusk",
"created": 1552759496,
"upvotes": 1,
"replies": {}
}
}
}
}
}
}
},
"eigvq33": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eigvq33/",
"text": "Yea this should be a Netflix original or something lol. ",
"author": null,
"created": 1552518661,
"upvotes": 12,
"replies": {}
},
"eihkdjx": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eihkdjx/",
"text": "First 15 minutes of Suits. ",
"author": "BrooklynSwimmer",
"created": 1552537690,
"upvotes": 2,
"replies": {}
}
}
},
"eigjppn": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eigjppn/",
"text": "I wonder if they audited my SAT place.",
"author": "indielib",
"created": 1552510582,
"upvotes": 18,
"replies": {}
},
"eih4upz": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eih4upz/",
"text": "Wait but they couldn't control her score. she got MULTIPLE DAYS to do the test and hand it in. AND SHE STILL got a 1380. Retardation in the nation, this is incredible.",
"author": null,
"created": 1552525292,
"upvotes": 31,
"replies": {}
}
}
},
"eig345n": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eig345n/",
"text": "Authorities are wiretapping phones over a 1380 but I still can\u2019t get a call back. Damn",
"author": "Tepesescu",
"created": 1552500190,
"upvotes": 514,
"replies": {
"eigs01f": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eigs01f/",
"text": "> over a 1380\n\nThe users in this sub aren't a normal sample. You see a lot of 1500+ SAT posters but I think the average is like ~~1250~~ 1000ish. After reading this sub for a year I felt like 1550 was the average and got depressed. ",
"author": "sighs__unzips",
"created": 1552516039,
"upvotes": 232,
"replies": {
"eigt2p2": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eigt2p2/",
"text": "I think 50th percentile is 1080",
"author": "BTSInDarkness",
"created": 1552516785,
"upvotes": 120,
"replies": {}
},
"eigvh8w": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eigvh8w/",
"text": "The benchmark is in 1000s mate",
"author": "lord_patriot",
"created": 1552518484,
"upvotes": 50,
"replies": {}
},
"eigwkvd": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eigwkvd/",
"text": "You can find [percentiles online fairly easily](https://blog.prepscholar.com/historical-percentiles-new-sat). A 1250 is actually 80th percentile. 50th percentile is 1060.",
"author": "apawst8",
"created": 1552519278,
"upvotes": 44,
"replies": {}
},
"eih8o1e": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eih8o1e/",
"text": "[deleted]",
"author": null,
"created": 1552528094,
"upvotes": 11,
"replies": {
"eihge8u": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eihge8u/",
"text": "you either got a 1960 or a 1970, you can't get a 1963 even if it was out of 2400...",
"author": "Shady_Developer",
"created": 1552534151,
"upvotes": 27,
"replies": {
"eii4dz9": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eii4dz9/",
"text": "[deleted]",
"author": null,
"created": 1552565018,
"upvotes": -3,
"replies": {}
}
}
},
"eihgke9": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eihgke9/",
"text": "How did you get a 196**3**?",
"author": "bling-blaow",
"created": 1552534290,
"upvotes": 12,
"replies": {
"eihlgdj": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eihlgdj/",
"text": "By completing the year 1962",
"author": "Badvertisement",
"created": 1552538802,
"upvotes": 17,
"replies": {}
}
}
},
"eihahst": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eihahst/",
"text": "Was out of 2400 for a few years. ",
"author": "Gulltyr",
"created": 1552529414,
"upvotes": 4,
"replies": {}
},
"eihuoex": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eihuoex/",
"text": "It's been over 20 years for me, but I thought only the SAT2 was out of 2400, because it had a third section worth 800 additional points. ",
"author": "RabidWench",
"created": 1552551482,
"upvotes": 0,
"replies": {}
}
}
},
"eih8uwc": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eih8uwc/",
"text": "I got around 1200, I googled it and it said it was normal so I\u2019m content with my score",
"author": "itsKasai",
"created": 1552528226,
"upvotes": 4,
"replies": {}
}
}
},
"eihbb12": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eihbb12/",
"text": "it kinda blew my mind that 1380 is 96th percentile - That feels like it should be 'average'",
"author": "faithfulpuppy",
"created": 1552530033,
"upvotes": 28,
"replies": {
"eihg1zz": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eihg1zz/",
"text": "High schools push you to get good grades and go to college because it makes them look good. They won't tell you anything above average gets you into any fill in the blank state university because they want you to ace the SAT and go to Harvard. The reality is that the average is pretty abysmal when compared to what they make it seem because competition, even artificial, increases results.",
"author": "AnActualSquid",
"created": 1552533874,
"upvotes": 10,
"replies": {}
}
}
}
}
},
"eig32oa": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eig32oa/",
"text": "Bay Area gang rise up",
"author": "amandasbot",
"created": 1552500163,
"upvotes": 216,
"replies": {
"eig365t": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eig365t/",
"text": "hahahah yeppp",
"author": "rc6188",
"created": 1552500227,
"upvotes": 26,
"replies": {}
},
"eigavem": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eigavem/",
"text": "Woooo",
"author": "gloomynebula",
"created": 1552505101,
"upvotes": 7,
"replies": {}
},
"eihr0y4": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eihr0y4/",
"text": "Late but checking in\n\n",
"author": "Jock_fortune_sandals",
"created": 1552545609,
"upvotes": 4,
"replies": {
"eihxja2": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eihxja2/",
"text": "Tardy but present",
"author": "oldstalebread",
"created": 1552556581,
"upvotes": 3,
"replies": {}
}
}
},
"eih8e9z": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eih8e9z/",
"text": "leggo ",
"author": "TheninjaofCookies",
"created": 1552527890,
"upvotes": 3,
"replies": {}
},
"eigraze": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eigraze/",
"text": "Ayeeeee",
"author": "cheesekneesandpeas",
"created": 1552515563,
"upvotes": 2,
"replies": {}
},
"eigv5tq": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eigv5tq/",
"text": "hell yeah!!",
"author": null,
"created": 1552518257,
"upvotes": 2,
"replies": {}
}
}
},
"eig6hss": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eig6hss/",
"text": "One parent paid $250,000 to get their son into USD.\n\nThey also paid $75,000 to get their daughter at 28 on the ACT. A 28. For $75,000.",
"author": "_Iceeee",
"created": 1552502362,
"upvotes": 283,
"replies": {
"eig6vtl": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eig6vtl/",
"text": "Holy shit. I learned the four comma rules and got a 35 on the English portion. The ACT is so much easier to game than paying a shit ton of money. ",
"author": null,
"created": 1552502609,
"upvotes": 211,
"replies": {
"eigayy0": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eigayy0/",
"text": "Lmao yeah. I got Erika Meltzer for English from my senior and ended up scoring a 36 on the English. Way better than having to pay $50k and getting caught.",
"author": "Saakshaat",
"created": 1552505160,
"upvotes": 74,
"replies": {}
},
"eighnvy": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eighnvy/",
"text": "What are the rules?",
"author": "AllOfThemAreTakenSMH",
"created": 1552509299,
"upvotes": 20,
"replies": {
"eigie22": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eigie22/",
"text": "Lists, introductions, interjections, and separating independent clauses. All using FANBOYS. ",
"author": null,
"created": 1552509749,
"upvotes": 64,
"replies": {
"eigp2xd": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eigp2xd/",
"text": "Where can I find the specific list",
"author": "hennemij",
"created": 1552514094,
"upvotes": 16,
"replies": {
"eigp6q5": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eigp6q5/",
"text": "https://www.mun.ca/writingcentre/docs/OnLineCommaRules.pdf Here\u2019s an explanation. ",
"author": null,
"created": 1552514160,
"upvotes": 31,
"replies": {
"eigpjaj": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eigpjaj/",
"text": "Thanks a lot!",
"author": "hennemij",
"created": 1552514381,
"upvotes": 4,
"replies": {}
},
"eihwrq0": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eihwrq0/",
"text": "Eyyy, Newfoundland represent!",
"author": "Nigelwethers",
"created": 1552555244,
"upvotes": 1,
"replies": {}
}
}
}
}
}
}
},
"eigio4p": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eigio4p/",
"text": "go on r/Sat or r/ACT",
"author": "sushi_karma",
"created": 1552509925,
"upvotes": 12,
"replies": {}
},
"eih6eaf": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eih6eaf/",
"text": "I swear 90% of the test is about commas. The rest is on semi colons, colons, and other misc things ",
"author": "jonahn2000",
"created": 1552526408,
"upvotes": 6,
"replies": {}
}
}
}
}
},
"eigs35s": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eigs35s/",
"text": "Holy shit people. We are in the wrong business. Instead of getting into college, we should be in the business of helping people getting into college. ",
"author": "sighs__unzips",
"created": 1552516100,
"upvotes": 52,
"replies": {}
},
"eiha724": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eiha724/",
"text": "Lmao for 75K I'd take the test for her and prolly get my 4th 34\n\n^^^/s ^^^for ^^^ppl ^^^who ^^^think ^^^this ^^^is ^^^real",
"author": "Milan4King",
"created": 1552529191,
"upvotes": 11,
"replies": {
"eihbxsr": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eihbxsr/",
"text": "yeah wouldn\u2019t it be so fun to devote your life to just studying for SAT/ACT and getting so much money just for taking it over and over again...\n\ni\u2019m being completely serious btw it would be fun\n(except the part where you\u2019d probably get arrested and kill people\u2019s dreams but yeah)",
"author": "mb1222",
"created": 1552530525,
"upvotes": 2,
"replies": {
"eioice7": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eioice7/",
"text": "Ya, but only if you want the following Engineering, medicine. Mind you, a school does not determine your success. In Silicon Valley, in Hollywood no one gives a shit what school you came from. Reality, numbers don\u2019t lies. A school down not make you. You are the one that makes yourself.",
"author": "GoodToBeGmoney",
"created": 1552763716,
"upvotes": 1,
"replies": {}
}
}
}
}
},
"eihbqzf": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eihbqzf/",
"text": "they should have just spent that money on brain surgery instead\n\ni mean a 28 is great, but not even a 36 is worth 75K",
"author": "mb1222",
"created": 1552530376,
"upvotes": 5,
"replies": {}
},
"eihl8i5": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eihl8i5/",
"text": "I got a 28 for free lol",
"author": "UnRenardRouge",
"created": 1552538572,
"upvotes": 3,
"replies": {}
},
"eimfz2y": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eimfz2y/",
"text": "Did USD get super hard or something? I applied as an out of state and got in about 12 years ago. Didn't end up going since out of state tuition was super high. ",
"author": "soyeahiknow",
"created": 1552689225,
"upvotes": 1,
"replies": {
"eioighh": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eioighh/",
"text": "You\u2019re poabably smart for saving that money. You go to school to get a job. You work for yourself to get a career.",
"author": "GoodToBeGmoney",
"created": 1552763800,
"upvotes": 1,
"replies": {}
}
}
}
}
},
"eig5y5c": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eig5y5c/",
"text": "Shit I got a 30 on the act which is a 1390 and all I spent was 40$ on a prep book",
"author": "Newfypuppie",
"created": 1552502013,
"upvotes": 285,
"replies": {
"eig6vmx": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eig6vmx/",
"text": "I feel this so hard ngl",
"author": "mustachioladyirl",
"created": 1552502606,
"upvotes": 74,
"replies": {}
},
"eig9xxc": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eig9xxc/",
"text": "damn which prep book",
"author": "glossoreo",
"created": 1552504522,
"upvotes": 30,
"replies": {
"eigac1r": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eigac1r/",
"text": "I just bought the official red book and studied it ",
"author": "Newfypuppie",
"created": 1552504769,
"upvotes": 27,
"replies": {}
}
}
},
"eigvu0g": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eigvu0g/",
"text": "Me got 30 on the SAT.",
"author": "dougmantis",
"created": 1552518739,
"upvotes": 20,
"replies": {}
},
"eigmaan": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eigmaan/",
"text": "[deleted]",
"author": null,
"created": 1552512297,
"upvotes": 62,
"replies": {
"eigqoo8": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eigqoo8/",
"text": "Same, 36 here. Just used online practice tests and a library prep book",
"author": "Agent_Potato56",
"created": 1552515141,
"upvotes": 35,
"replies": {
"eigvx80": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eigvx80/",
"text": "Got a 37 without any practice, and managed to derive the Black-Scholes model with the time I had left.",
"author": null,
"created": 1552518803,
"upvotes": 113,
"replies": {
"eih0dx6": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eih0dx6/",
"text": "ayy got a 37 on the SAT too :)",
"author": "x64bit",
"created": 1552522031,
"upvotes": 41,
"replies": {
"eii5add": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eii5add/",
"text": "Wait",
"author": "bigtiddynotgothbf",
"created": 1552565886,
"upvotes": 4,
"replies": {}
},
"eijm123": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eijm123/",
"text": "Hold up",
"author": "fb39ca4",
"created": 1552601031,
"upvotes": 3,
"replies": {}
}
}
},
"eih0i1l": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eih0i1l/",
"text": "I got a 38 just filling in answers.",
"author": "dickgilbert",
"created": 1552522113,
"upvotes": 15,
"replies": {}
},
"eih44nk": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eih44nk/",
"text": "[deleted]",
"author": null,
"created": 1552524772,
"upvotes": 2,
"replies": {
"eihbldo": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eihbldo/",
"text": "Lol dude I know. I really got a 33 studying a decent amount but I got a much better score on the SAT. I wholeheartedly believe all you need are online practice tests and the will to work, but my parents disagree.",
"author": null,
"created": 1552530256,
"upvotes": 2,
"replies": {}
}
}
}
}
},
"eigtbbn": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eigtbbn/",
"text": "36er who got the book from the Ivy Global giveaway. (not promoting, but they did send me a book and I kinda flipped through it and did a few practice sections.)",
"author": "MiuMii2",
"created": 1552516954,
"upvotes": 7,
"replies": {}
}
}
},
"eigy9nv": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eigy9nv/",
"text": "I went to the thrift store to get my prep books. I got an official SAT Subject Test prep book for $2.99 and it's only 2 years old. ",
"author": "goldendaysgirl",
"created": 1552520499,
"upvotes": 4,
"replies": {}
},
"eihancn": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eihancn/",
"text": "Same (SAT though), literally just used the online practice tests",
"author": "pokemongofanboy",
"created": 1552529531,
"upvotes": 1,
"replies": {}
}
}
},
"eihbkim": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eihbkim/",
"text": "I got a 1310 on the PSAT and I spent exactly $0\n\ni guess those 70 points are worth 50K huh",
"author": "mb1222",
"created": 1552530238,
"upvotes": 8,
"replies": {}
},
"eihakfi": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eihakfi/",
"text": "I did one free act practice and got a 33, did six free SAT practices and got a 1550. Right with you, idk why these parents are forcing their kids to do something they don\u2019t want",
"author": "pokemongofanboy",
"created": 1552529470,
"upvotes": 3,
"replies": {}
},
"eigtapx": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eigtapx/",
"text": "+$50 on the test but same difference ",
"author": "echow2001",
"created": 1552516942,
"upvotes": 2,
"replies": {}
},
"eignr0s": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eignr0s/",
"text": "I got a 31 on the ACT by spending $100 bucks on prep books and practicing.",
"author": "popfilms",
"created": 1552513253,
"upvotes": 6,
"replies": {}
},
"eih9ynm": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eih9ynm/",
"text": "34 here, studied for like an hour with a practice test online and like 5 hours of sleep the night of the test \ud83d\ude24\ud83d\ude24",
"author": "apost54",
"created": 1552529017,
"upvotes": 2,
"replies": {
"eihc7k7": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eihc7k7/",
"text": "Omg are you me",
"author": "Tobelto",
"created": 1552530738,
"upvotes": 2,
"replies": {
"eihcz6b": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eihcz6b/",
"text": "Yes",
"author": "apost54",
"created": 1552531349,
"upvotes": 2,
"replies": {}
}
}
}
}
}
}
},
"eigbr45": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eigbr45/",
"text": "that\u2019s so funny i got a 1390 for free with a fee waiver \u00af\\_(\u30c4)_/\u00af",
"author": "stressedmtmajor",
"created": 1552505636,
"upvotes": 136,
"replies": {
"eigtjyk": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eigtjyk/",
"text": "You dropped this \\",
"author": null,
"created": 1552517121,
"upvotes": 62,
"replies": {}
},
"eihacr2": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eihacr2/",
"text": "Yeah but you don't charge 15K per test. Get outta here with your broke ass ^^^^/s",
"author": "Milan4King",
"created": 1552529308,
"upvotes": 10,
"replies": {}
}
}
},
"eighjea": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eighjea/",
"text": "im being dumb but i honestly thought his first name was winemaker bc i didnt realize that ppl put their profession before their name sometimes like that... #wherearemybraincells",
"author": "cushionite",
"created": 1552509224,
"upvotes": 50,
"replies": {
"eih143d": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eih143d/",
"text": "My Lang teacher said someone did a similar thing on one of the prompts on last years AP exam",
"author": null,
"created": 1552522554,
"upvotes": 8,
"replies": {
"eih1q71": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eih1q71/",
"text": "im surprised i didn't do that ",
"author": "cushionite",
"created": 1552523009,
"upvotes": 5,
"replies": {}
},
"eiht5yj": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eiht5yj/",
"text": "Reminds me of the \"German Dam\". Lol.",
"author": "IsomDart",
"created": 1552548907,
"upvotes": 6,
"replies": {}
}
}
},
"eiht5gg": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eiht5gg/",
"text": "Let me introduce you to the German Dam",
"author": "IsomDart",
"created": 1552548883,
"upvotes": 4,
"replies": {}
},
"eihdwce": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eihdwce/",
"text": "Yeah but did you get higher than a 1380 on your SAT",
"author": "PlanetaryGenocide",
"created": 1552532089,
"upvotes": 3,
"replies": {}
}
}
},
"eigik4e": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eigik4e/",
"text": "if these people want to pay me thousands of dollars to take the SAT, i'll do it and get a better score lmao",
"author": "sushi_karma",
"created": 1552509854,
"upvotes": 42,
"replies": {}
},
"eigpmsg": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eigpmsg/",
"text": "Hippidy hoppidy expel them from school property",
"author": "bg421",
"created": 1552514444,
"upvotes": 42,
"replies": {
"eigq6z5": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eigq6z5/",
"text": "hippity hoppity they can bribe colleges with infinite money",
"author": "RayDeeUx",
"created": 1552514808,
"upvotes": 16,
"replies": {}
}
}
},
"eig3lp5": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eig3lp5/",
"text": "Don\u2019t people discuss correct answers to the questions when SAT ends? How did she end up with 1380?",
"author": null,
"created": 1552500504,
"upvotes": 68,
"replies": {
"eig3okp": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eig3okp/",
"text": "she did not know of the existence of r/SAT",
"author": "rc6188",
"created": 1552500556,
"upvotes": 116,
"replies": {
"eig3p4i": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eig3p4i/",
"text": "Here's a sneak peek of /r/Sat using the [top posts](https://np.reddit.com/r/Sat/top/?sort=top&t=year) of the year!\n\n\\#1: [Consistency isn\u2019t key](https://v.redd.it/k8zbva5da4l11) | [138 comments](https://np.reddit.com/r/Sat/comments/9e9euy/consistency_isnt_key/) \n\\#2: [All QAS tests and scoring in PDF form](https://np.reddit.com/r/Sat/comments/9544rw/all_qas_tests_and_scoring_in_pdf_form/) \n\\#3: [Not a bad idea tbh](https://i.redd.it/17hubbmklnn11.jpg) | [17 comments](https://np.reddit.com/r/Sat/comments/9htust/not_a_bad_idea_tbh/)\n\n----\n^^I'm ^^a ^^bot, ^^beep ^^boop ^^| ^^Downvote ^^to ^^remove ^^| [^^Contact ^^me](https://www.reddit.com/message/compose/?to=sneakpeekbot) ^^| [^^Info](https://np.reddit.com/r/sneakpeekbot/) ^^| [^^Opt-out](https://np.reddit.com/r/sneakpeekbot/comments/afd0dd/blacklist/)",
"author": "sneakpeekbot",
"created": 1552500566,
"upvotes": 10,
"replies": {}
}
}
}
}
},
"eiglqt4": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eiglqt4/",
"text": "i feel like you guys are missing the point. they could have easily get a 1600 as well, but like someone else mentioned the scores need to be somewhat consistent with the other aspects of the student. the important thing here is not that she got a 1380, rather it is the fact that her answers were being changed by someone else after the test. ",
"author": "2xgallus",
"created": 1552511936,
"upvotes": 95,
"replies": {
"eigoz1o": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eigoz1o/",
"text": "This isn\u2019t a serious post though. It\u2019s a joke that someone paid $75 grand to only get a 1380",
"author": "Sproded",
"created": 1552514026,
"upvotes": 68,
"replies": {
"eigxgwm": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eigxgwm/",
"text": "yeah i guess you are right, but in general that is how people see the matter. parents were so dumb that couldn't think of getting their kids a perfect score when they paid that much money. ",
"author": "2xgallus",
"created": 1552519920,
"upvotes": 12,
"replies": {
"einzwkh": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/einzwkh/",
"text": "Or smart because a perfect score is too obvious. Still got caught in the end though",
"author": "Helhiem",
"created": 1552750000,
"upvotes": 1,
"replies": {}
}
}
}
}
}
}
},
"eigol94": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eigol94/",
"text": "[deleted]",
"author": null,
"created": 1552513783,
"upvotes": 44,
"replies": {
"eigpmzx": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eigpmzx/",
"text": "same here! spent $10 on the blue book, drilled uworld and khan academy, took free practice tests on reddit, got a good score that I\u2019m proud of. with enough hard work, I\u2019m sure this girl could\u2019ve gotten a 1380 on her own...she just didn\u2019t want to do it and instead chose to use her privilege ",
"author": "rc6188",
"created": 1552514448,
"upvotes": 14,
"replies": {}
}
}
},
"eigvyko": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eigvyko/",
"text": "Not trying to be a dick but Olivia Jade sounds like a porn name",
"author": "tgertcher",
"created": 1552518830,
"upvotes": 41,
"replies": {
"eihanya": {
"link": "/r/ApplyingToCollege/comments/b0p2n1/forget_olivia_jade_this_girls_parents_paid_50000/eihanya/",
"text": "~~RedTube~~YouTube",