-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApplyingToCollege-1553893048-b72lur.json
1023 lines (1023 loc) · 43.3 KB
/
ApplyingToCollege-1553893048-b72lur.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": "b72lur",
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/",
"title:": "Our school made a college rejection wall for seniors!",
"text": "[wall : D](https://imgur.com/a/u055f62)\n\n",
"author": "nocturnal_dance",
"created": 1553893048,
"updated": 1634075945,
"over_18": false,
"upvotes": 2313,
"upvote_ratio": 0.98,
"comments": {
"ejotaqo": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejotaqo/",
"text": "\n\u201cI HOPE YOU LOSE THE LAWSUIT\u201d \n\nI laughed so hard at this. This is honestly such a great idea. It\u2019s kind of sad once you realize that it\u2019s a college rejection wall... but it\u2019s a good final bonding activity shared among seniors.\n\nI think I\u2019d like to do something like this during senior year, all Stanford rejects over here pls :-( ",
"author": null,
"created": 1553893444,
"upvotes": 1011,
"replies": {
"ejoy5y0": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejoy5y0/",
"text": "Where is that? Can\u2019t see it",
"author": "StellarStarmie",
"created": 1553896905,
"upvotes": 97,
"replies": {
"ejp5uv6": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejp5uv6/",
"text": "Click the actual imgur link",
"author": "MrTonyBoloney",
"created": 1553902954,
"upvotes": 38,
"replies": {}
}
}
},
"ejpb3mq": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejpb3mq/",
"text": "LMAOOO BEST ONE",
"author": "GenRandomIII",
"created": 1553907229,
"upvotes": 21,
"replies": {}
}
}
},
"ejozic3": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejozic3/",
"text": "My school needs to make one of these. It\u2019s about time we start to normalize college rejections. ",
"author": "jennyli52901",
"created": 1553897939,
"upvotes": 358,
"replies": {
"ejp6udg": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejp6udg/",
"text": "Yep! It should just be a normal part of teenage life. Like falling down is normal when you learn to walk. ",
"author": "admissionsmom",
"created": 1553903742,
"upvotes": 154,
"replies": {
"ejqaqe9": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejqaqe9/",
"text": "Yeah I feel like this is pretty nice bonding activity and helps people cope. It's normal to be declined and they can vent together and laugh about it. The wall becomes so littered with rejections you don't feel alone.",
"author": "Cageweek",
"created": 1553951039,
"upvotes": 16,
"replies": {
"ejqbjrt": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejqbjrt/",
"text": "Exactly! And life is full of disappointments and celebrations and ups and downs. What a lovely way to acknowledge it. ",
"author": "admissionsmom",
"created": 1553951907,
"upvotes": 9,
"replies": {}
}
}
}
}
}
}
},
"ejoukx1": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejoukx1/",
"text": "[deleted]",
"author": null,
"created": 1553894317,
"upvotes": 502,
"replies": {
"ejowkbj": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejowkbj/",
"text": "Time to transfer to your school and apply to all Ivies and all top universities. ",
"author": null,
"created": 1553895711,
"upvotes": 236,
"replies": {
"ejq0i8b": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejq0i8b/",
"text": "Im not sure if the chance to win some stuff is worths hundreds of dollars ",
"author": "BagetBagetov",
"created": 1553935691,
"upvotes": 21,
"replies": {
"ejqw9vl": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejqw9vl/",
"text": "I\u2019ll probably have to apply for fee waivers when the time actually comes. ",
"author": null,
"created": 1553966988,
"upvotes": 1,
"replies": {}
}
}
}
}
},
"ejozbtc": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejozbtc/",
"text": "Wow if each rejection letter was a lottery ticket, I\u2019d have pretty good odds.",
"author": "YoItzTiff",
"created": 1553897801,
"upvotes": 110,
"replies": {}
},
"ejp6sn5": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejp6sn5/",
"text": "this is also an amazing idea!!!",
"author": "admissionsmom",
"created": 1553903705,
"upvotes": 30,
"replies": {}
},
"ejp87r8": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejp87r8/",
"text": "This and the wall is actually a good incentive for students to apply to a lot more schools, which is always good. My school desperately needs this, as only like 3 people go to universities each year. ",
"author": null,
"created": 1553904854,
"upvotes": 43,
"replies": {
"ejpfr5w": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejpfr5w/",
"text": "Only 3? How big is your average graduating class?",
"author": "Water_Snake",
"created": 1553911074,
"upvotes": 21,
"replies": {
"ejpiu07": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejpiu07/",
"text": "20~ ",
"author": null,
"created": 1553913749,
"upvotes": 15,
"replies": {
"ejpn4iw": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejpn4iw/",
"text": "Well, that makes more sense, but it's still a measly 15% percent of the class that goes to college. Quite surprising, to say the least. Where is your school?",
"author": "Water_Snake",
"created": 1553917622,
"upvotes": 10,
"replies": {
"ejpnv3u": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejpnv3u/",
"text": "Its in rural WA. Most people work at the local mill or go to the local community college ",
"author": null,
"created": 1553918326,
"upvotes": 14,
"replies": {}
}
}
}
}
}
}
},
"ejpfnfw": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejpfnfw/",
"text": "that\u2019s insane, how big is your class?",
"author": "papayaslice",
"created": 1553910986,
"upvotes": 11,
"replies": {
"ejpit0d": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejpit0d/",
"text": "24 seniors. It\u2019s in a redneck yee haw town. Actually a couple of years ago the graduating class was like 7 people lol. ",
"author": null,
"created": 1553913725,
"upvotes": 24,
"replies": {
"ejpk5kr": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejpk5kr/",
"text": "well then you should especially be proud you\u2019re taking the steps for college! ",
"author": "papayaslice",
"created": 1553914905,
"upvotes": 17,
"replies": {
"ejpkybj": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejpkybj/",
"text": "True I guess. Still I wish I was in a better environment haha",
"author": null,
"created": 1553915630,
"upvotes": 8,
"replies": {
"ejpx1xb": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejpx1xb/",
"text": "The students I've met from similar circumstances to you are the ones who fully appreciate the opportunities they get in college. They're some of the most accomplished, thoughtful people I know. The biggest mistake people make in college is getting complacent. Remember how you feel now.",
"author": "poondi",
"created": 1553929738,
"upvotes": 7,
"replies": {}
}
}
}
}
}
}
}
}
}
}
}
}
},
"ejota0s": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejota0s/",
"text": "\u201cU r hella thankful, no you just took my money\u201d ",
"author": "electric172",
"created": 1553893430,
"upvotes": 147,
"replies": {}
},
"ejp6rkg": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejp6rkg/",
"text": "I love this so much!!!! The kids at my kids' school did this once and the college counseling office made them take it down. I was so disappointed. I wish every school would do this. ",
"author": "admissionsmom",
"created": 1553903681,
"upvotes": 134,
"replies": {
"ejq9c6p": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejq9c6p/",
"text": "Better not teach kids to cope with disappointment!",
"author": "flydog2",
"created": 1553949481,
"upvotes": 12,
"replies": {}
}
}
},
"ejow6py": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejow6py/",
"text": "\"Your bribe wasn't big enough\" biiiig mood",
"author": "fishyswims192",
"created": 1553895428,
"upvotes": 92,
"replies": {}
},
"ejpfgqs": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejpfgqs/",
"text": "A buddy had his CalTech rejection letter framed in his dorm room back in the day. He kept it because it was so fucking brutal. I remember reading it:\n\n>\tDear [Student]\n\n>\tThe end has come to a difficult and tumultuous period in your life: your application to the California Institute of Technology has been rejected. You should know that CalTech is one of the most elite schools in the country, with famously stringent admissions standards. That you fail to meet those standards should not discourage you - there will surely be a school that will be excited to admit you. We are sorry we cannot be that school, but we wish you the best in your future endeavors. \n\n>\tSincerely,\n\n>\tBlah Blah Admissions Dean",
"author": "whistleridge",
"created": 1553910827,
"upvotes": 97,
"replies": {
"ejpg1ny": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejpg1ny/",
"text": "Jesus, that's just rude. Good on your friend for framing such a ridiculous letter",
"author": "SirensToGo",
"created": 1553911323,
"upvotes": 71,
"replies": {
"ejrijat": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejrijat/",
"text": "Cornell is pretty rude too. Gonna do the same.",
"author": "BaemyY",
"created": 1553982796,
"upvotes": 9,
"replies": {}
}
}
},
"ejpp443": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejpp443/",
"text": "Fuck caltech",
"author": "luminous_moonlight",
"created": 1553919552,
"upvotes": 32,
"replies": {}
},
"ejpum15": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejpum15/",
"text": "Hey buddy, we elites, u suck, goodbye",
"author": "HatsuneM1ku",
"created": 1553926078,
"upvotes": 32,
"replies": {}
}
}
},
"ejp8wyb": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejp8wyb/",
"text": "My school gives you a free ice cream scoop for every rejection letter you show them. Good coping mechanism I guess haha ",
"author": "itsgrapeyy",
"created": 1553905427,
"upvotes": 76,
"replies": {}
},
"ejouncq": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejouncq/",
"text": "i wish my school had this !!! this is so funny and cute ",
"author": "rosegoldpiss",
"created": 1553894362,
"upvotes": 65,
"replies": {}
},
"ejp6x75": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejp6x75/",
"text": "did y'all do this with permission from the school?",
"author": "admissionsmom",
"created": 1553903803,
"upvotes": 33,
"replies": {
"ejp7on5": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejp7on5/",
"text": "yes! it was a school sanctioned event planned by the leadership team :)",
"author": "eatthismuffin",
"created": 1553904424,
"upvotes": 45,
"replies": {
"ejp82sk": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejp82sk/",
"text": "such a smart school!! ",
"author": "admissionsmom",
"created": 1553904742,
"upvotes": 30,
"replies": {}
}
}
}
}
},
"ejp0fok": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejp0fok/",
"text": "My school is too snooty for this type of thing, sadly.",
"author": "deepad9",
"created": 1553898664,
"upvotes": 78,
"replies": {
"ejp8nnr": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejp8nnr/",
"text": "i go to this school we are known for being cutthroat lmao. The leadership class (l2ontop) did this and if u take initiative things can happen!!",
"author": "emsleuniverse",
"created": 1553905210,
"upvotes": 59,
"replies": {
"ejpbrse": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejpbrse/",
"text": "techontop",
"author": "Arsinx",
"created": 1553907783,
"upvotes": 11,
"replies": {
"ejpc42p": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejpc42p/",
"text": "hcmcontop. ",
"author": "emsleuniverse",
"created": 1553908058,
"upvotes": 10,
"replies": {}
}
}
}
}
},
"ejp8ois": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejp8ois/",
"text": "I go to OP\u2019s school and it\u2019s actually pretty cutthroat (typical bay area school) ",
"author": "student0220",
"created": 1553905230,
"upvotes": 40,
"replies": {}
},
"ejp7mjo": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejp7mjo/",
"text": "yeah, if anything they'd have a wall of prestigious acceptances at my school",
"author": "End3rp",
"created": 1553904376,
"upvotes": 7,
"replies": {}
}
}
},
"ejp1c9n": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejp1c9n/",
"text": "[removed]",
"author": null,
"created": 1553899366,
"upvotes": 20,
"replies": {
"ejpf6dc": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejpf6dc/",
"text": "[removed]",
"author": null,
"created": 1553910585,
"upvotes": 1,
"replies": {
"ejpf6u1": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejpf6u1/",
"text": "[removed]",
"author": null,
"created": 1553910596,
"upvotes": 0,
"replies": {
"ejpf8ru": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejpf8ru/",
"text": "What grade?",
"author": "DjrtyNjjerjans",
"created": 1553910640,
"upvotes": -1,
"replies": {
"ejpfdax": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejpfdax/",
"text": "[deleted]",
"author": null,
"created": 1553910746,
"upvotes": -1,
"replies": {
"ejphmjm": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejphmjm/",
"text": "[removed]",
"author": null,
"created": 1553912694,
"upvotes": -1,
"replies": {}
}
}
}
}
}
}
}
}
}
}
},
"ejpewh0": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejpewh0/",
"text": "this is why i love my school",
"author": null,
"created": 1553910359,
"upvotes": 16,
"replies": {
"ejpf95j": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejpf95j/",
"text": "hi samrat congrats on ur election!",
"author": null,
"created": 1553910648,
"upvotes": 9,
"replies": {}
},
"ejpgoe9": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejpgoe9/",
"text": "ayyyyy samrat ily ",
"author": "emsleuniverse",
"created": 1553911872,
"upvotes": 6,
"replies": {}
}
}
},
"ejp1li1": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejp1li1/",
"text": "More please. Very cool OP",
"author": "lord_patriot",
"created": 1553899564,
"upvotes": 12,
"replies": {}
},
"ejpbneq": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejpbneq/",
"text": "[removed]",
"author": null,
"created": 1553907682,
"upvotes": 11,
"replies": {
"ejphkx1": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejphkx1/",
"text": "[removed]",
"author": null,
"created": 1553912655,
"upvotes": 8,
"replies": {
"ejpifg5": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejpifg5/",
"text": "pull thru fam. Life is better during college",
"author": "captainpyotr",
"created": 1553913394,
"upvotes": 4,
"replies": {
"ejpio2u": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejpio2u/",
"text": "bold of you to assume i can get into college in the first place",
"author": "nocturnalsleepaholic",
"created": 1553913601,
"upvotes": 2,
"replies": {
"ejpiys3": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejpiys3/",
"text": "It pays off. Just keep working hard. ",
"author": "captainpyotr",
"created": 1553913863,
"upvotes": 1,
"replies": {}
}
}
}
}
},
"ejphqg4": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejphqg4/",
"text": "fatass mood",
"author": null,
"created": 1553912786,
"upvotes": 3,
"replies": {}
}
}
}
}
},
"ejpc1go": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejpc1go/",
"text": "My school has had this for years, it's a tradition at this point. We have one for rejections and one for deferrals.",
"author": "trashcan86",
"created": 1553907996,
"upvotes": 12,
"replies": {}
},
"ejp7z1z": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejp7z1z/",
"text": "I love the contrast of a college bound senior deciding next steps and their future, while writing \u201cthis is big sad D:\u201d as a legitimate sentence. The duality is poetic. \n\nAnd yes!!! Normalize rejection!!! This is such a good way to process this! ",
"author": null,
"created": 1553904655,
"upvotes": 36,
"replies": {}
},
"ejoxsvx": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejoxsvx/",
"text": "Guess I'm not brown enough XD. ",
"author": "hjkaus1",
"created": 1553896633,
"upvotes": 35,
"replies": {}
},
"ejoxiec": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejoxiec/",
"text": "We also have a rejection wall but with little PR it has a pitiful four letters",
"author": "helegg",
"created": 1553896413,
"upvotes": 7,
"replies": {}
},
"ejpg6he": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejpg6he/",
"text": "This is so cool! Our school does a sanctioned letter burning where they tell you to bring your rejection letters, SAT score reports, or any tests and just toss them in a bonfire. It's such a great little event because they usually have ice cream and so you just get to sort of kick it with your friends and put everything in the past",
"author": "SirensToGo",
"created": 1553911441,
"upvotes": 8,
"replies": {}
},
"ejpghl3": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejpghl3/",
"text": "ahh i go to the op's school and sure we as a school have our flaws but !! that's my school y'all :')",
"author": "breakingxquietly",
"created": 1553911708,
"upvotes": 6,
"replies": {}
},
"ejpqke6": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejpqke6/",
"text": "i love my school warrior pride yuh",
"author": "scrambleliz",
"created": 1553921096,
"upvotes": 7,
"replies": {}
},
"ejpa5yl": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejpa5yl/",
"text": "\u201cGuess I\u2019m not brown enough\u201d \n\n\nLOL",
"author": "ScientificSlothx",
"created": 1553906452,
"upvotes": 9,
"replies": {}
},
"ejpcszt": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejpcszt/",
"text": "I go to a boarding school and in one of our public rooms, we have a wall of salt, where everyone prints their rejections and tapes them up.",
"author": "SpartaBagelz",
"created": 1553908620,
"upvotes": 5,
"replies": {}
},
"ejpeona": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejpeona/",
"text": "I NEED THIS AT MY SCHOOL!",
"author": "8neyugna",
"created": 1553910177,
"upvotes": 5,
"replies": {}
},
"ejpqfbq": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejpqfbq/",
"text": "\u201cThis is big sad\u201d",
"author": "BreadcrumbzX",
"created": 1553920943,
"upvotes": 5,
"replies": {}
},
"ejq5gy1": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejq5gy1/",
"text": "[deleted]",
"author": null,
"created": 1553944235,
"upvotes": 5,
"replies": {}
},
"ejpns72": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejpns72/",
"text": "Can I put these images on my website? I\u2019m an independent UC admissions consultant. I will attribute to you and link to this Reddit page. It\u2019s very funny and helps (possibly) relieve some stress. \ud83d\ude00",
"author": "FreshPepper88",
"created": 1553918248,
"upvotes": 9,
"replies": {
"ejpoh21": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejpoh21/",
"text": "You don\u2019t have to ask. It\u2019s not copyrighted material.",
"author": null,
"created": 1553918910,
"upvotes": 8,
"replies": {
"ejppccu": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejppccu/",
"text": "Oh thx. I\u2019ll link here anyway. ",
"author": "FreshPepper88",
"created": 1553919792,
"upvotes": 7,
"replies": {}
},
"ejqd5kg": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejqd5kg/",
"text": "This isn\u2019t true, any image is copyrighted material by the photographer ",
"author": "Theyellowtoaster",
"created": 1553953469,
"upvotes": 3,
"replies": {
"ejqk395": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejqk395/",
"text": "Huh. Hundreds of millions of people must\u2019ve commit copyright violations pretty often then. ",
"author": null,
"created": 1553958694,
"upvotes": 2,
"replies": {}
}
}
}
}
}
}
},
"ejp6hr4": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejp6hr4/",
"text": "Lmao this is epic.",
"author": null,
"created": 1553903460,
"upvotes": 5,
"replies": {}
},
"ejpj6m6": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejpj6m6/",
"text": "This wouldn\u2019t work at my school because there\u2019s less than 25 people in my class that are actually applying to colleges that they\u2019re gonna get rejected from. Everyone else is going to community college, or some local university that will accept most everyone. ",
"author": "qazaqwert",
"created": 1553914048,
"upvotes": 4,
"replies": {}
},
"ejpqzuv": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejpqzuv/",
"text": ">I hope you lose the lawsuit. \n> \n>\\#AsianIvasion\n\nwell I'm Asian and got rejected, so Imma with ya :P\n\n​",
"author": "Sant268",
"created": 1553921568,
"upvotes": 3,
"replies": {}
},
"ejqd0dm": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejqd0dm/",
"text": "i spotted the berkeley one from a distance",
"author": "phillipe_19",
"created": 1553953349,
"upvotes": 3,
"replies": {}
},
"ejpdxmq": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejpdxmq/",
"text": "My school has a FB page where we share all of our rejections <3 ",
"author": "ronwheezely",
"created": 1553909546,
"upvotes": 3,
"replies": {}
},
"ejqky2o": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejqky2o/",
"text": "My old high school did this over 10 years ago! On the off chance...is your high school in the SF Bay Area? Is its mascot the Titans?",
"author": "read-it-on-reddit",
"created": 1553959325,
"upvotes": 3,
"replies": {
"ejrjn0i": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejrjn0i/",
"text": "This is my school! It's MSJ in the Bay Area, mascot is the Warriors :)",
"author": null,
"created": 1553983609,
"upvotes": 1,
"replies": {}
}
}
},
"ejpay56": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejpay56/",
"text": "My school has acceptance walls because they\u2019re elitist as fuck ",
"author": "TrueEqualFalse",
"created": 1553907100,
"upvotes": 12,
"replies": {
"ejpflct": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejpflct/",
"text": "[removed]",
"author": null,
"created": 1553910938,
"upvotes": 14,
"replies": {
"ejpg2xl": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejpg2xl/",
"text": "lmao it ain't that bad fam",
"author": "ASM1ForLife",
"created": 1553911353,
"upvotes": 0,
"replies": {}
}
}
},
"ejponfo": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejponfo/",
"text": "Don\u2019t see how celebrating success is elitist. ",
"author": null,
"created": 1553919086,
"upvotes": 11,
"replies": {}
}
}
},
"ejpmnce": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejpmnce/",
"text": "My high school did this as well last year. My Claremont rejection letter was up there. ",
"author": "Joe-Lollo",
"created": 1553917173,
"upvotes": 2,
"replies": {}
},
"ejpv5ai": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejpv5ai/",
"text": "In our school u can cash in your college rejection letter for ice creams or a basic chick fil a burger",
"author": null,
"created": 1553926844,
"upvotes": 3,
"replies": {}
},
"ejpc0te": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejpc0te/",
"text": "Love this so much! More please!",
"author": "Ionlyeatfakemeat",
"created": 1553907983,
"upvotes": 1,
"replies": {}
},
"ejpd138": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejpd138/",
"text": "Omg hahah I love this! It seems so wholesome and reassuring hearing about other people getting rejected from the same colleges as me. Good for the people that got in obviously, but it\u2019s nice knowing there are others out there feeling the same way I am.",
"author": "emogalxp",
"created": 1553908802,
"upvotes": 1,
"replies": {}
},
"ejpjt8o": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejpjt8o/",
"text": "that's hilarious! I wish my school did something similar",
"author": "feels_old",
"created": 1553914598,
"upvotes": 1,
"replies": {}
},
"ejpl750": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejpl750/",
"text": "We have one of those in our classroom!",
"author": "redfade97",
"created": 1553915855,
"upvotes": 1,
"replies": {}
},
"ejplhi6": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejplhi6/",
"text": "My school has one of these too ahahaha",
"author": "MiserableBread",
"created": 1553916116,
"upvotes": 1,
"replies": {}
},
"ejpog42": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejpog42/",
"text": "Duke has the best phrasing. ",
"author": null,
"created": 1553918884,
"upvotes": 1,
"replies": {}
},
"ejpqnxu": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejpqnxu/",
"text": "omg this is amazing and by that I meant the comments.",
"author": "iamsojellyofu",
"created": 1553921205,
"upvotes": 1,
"replies": {}
},
"ejpqvz6": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejpqvz6/",
"text": "That's actually a great idea",
"author": "them_dankest_memes",
"created": 1553921446,
"upvotes": 1,
"replies": {}
},
"ejpr3h7": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejpr3h7/",
"text": "we have one at my school!",
"author": "Osich21",
"created": 1553921684,
"upvotes": 1,
"replies": {}
},
"ejprsqh": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejprsqh/",
"text": "It's so weird to see something like this compared to my school. It's all about the trades here.",
"author": "Gamecool_10",
"created": 1553922496,
"upvotes": 1,
"replies": {}
},
"ejpt9j9": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejpt9j9/",
"text": "my school has one too it\u2019s like yeaaaa fuck y\u2019all we\u2019re all \u2018jects together !! ",
"author": "bookishvintage",
"created": 1553924272,
"upvotes": 1,
"replies": {}
},
"ejpukbg": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejpukbg/",
"text": "Our school had one, but the principal made us get rid of it",
"author": "bleakbox",
"created": 1553926012,
"upvotes": 1,
"replies": {}
},
"ejq7pbc": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejq7pbc/",
"text": "In our school we made a wall of buggers. it was really gross. quinton licked it once.",
"author": "formerlydeaddd",
"created": 1553947451,
"upvotes": 1,
"replies": {}
},
"ejq9tzm": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejq9tzm/",
"text": "this is so pure",
"author": "hoocoffee",
"created": 1553950057,
"upvotes": 1,
"replies": {}
},
"ejq9v30": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejq9v30/",
"text": "I wish people in my school care about college this much :(",
"author": "zhang_jx",
"created": 1553950090,
"upvotes": 1,
"replies": {}
},
"ejqkzbj": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejqkzbj/",
"text": "thank you for posting this haha it makes me feel a lot better about my own rejections",
"author": "fairefarren",
"created": 1553959349,
"upvotes": 1,
"replies": {}
},
"ejqnzyx": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejqnzyx/",
"text": "How has my school not done this yet",
"author": "weirdpasta27",
"created": 1553961476,
"upvotes": 1,
"replies": {}
},
"ejrjolm": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejrjolm/",
"text": "update: someone took it down even though it was supposed to stay up until Monday :(",
"author": null,
"created": 1553983641,
"upvotes": 1,
"replies": {}
},
"ejs2fv5": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejs2fv5/",
"text": "man I *wish* my school would do something like this so kids would relax and realise that it\u2019s totally normal to get denied. my school is college prep so they\u2019re obsessed with hammering in the idea that you have to go to the biggest and best university possible, and that any rejection is a failure (which is, by the way, abnormal and unacceptable). people get rejected from colleges. *smart, hardworking* people get rejected from colleges, *and that\u2019s ok*.",
"author": "parmesann",
"created": 1553998643,
"upvotes": 1,
"replies": {}
},
"ejs908f": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejs908f/",
"text": "since Mission is predominantly asian, the Rice rejections were one of the funniest tbh \n\n\"the only rice i eat is with my daal\" really resonated with me ",
"author": "howl-s-moving-castle",
"created": 1554004785,
"upvotes": 1,
"replies": {}
},
"ejssh30": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejssh30/",
"text": "HAHAHAHAHAHAHHAHA \"asian invasion\" and \"I guess I am not brown enough\"",
"author": "MrBeerSon",
"created": 1554034647,
"upvotes": 1,
"replies": {}
},
"ejuts6l": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejuts6l/",
"text": "Funny story. I told one of my friends to put an unofficial rejection from a community college nearby on that wall and he actually worte one. Unfortunately, from what fellow students have told me is that the administrators took it down.",
"author": "PickleInSalt",
"created": 1554094750,
"upvotes": 1,
"replies": {}
},
"ex5oogq": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ex5oogq/",
"text": "i luv mission",
"author": "imastressball",
"created": 1566028451,
"upvotes": 1,
"replies": {}
},
"ejqgkou": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejqgkou/",
"text": "Some of these are salty af, tbh.",
"author": "TacoMasters",
"created": 1553956091,
"upvotes": 1,
"replies": {}
},
"ejpodk9": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejpodk9/",
"text": "Lol",
"author": "RedditUser1234567892",
"created": 1553918813,
"upvotes": 0,
"replies": {}
},
"ejpppcc": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejpppcc/",
"text": "Good practice for learning to apply for jobs.",
"author": "Tripstrr",
"created": 1553920167,
"upvotes": 0,
"replies": {}
},
"ejptv8n": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejptv8n/",
"text": "HAHA OMG",
"author": "badassputinator",
"created": 1553925059,
"upvotes": 0,
"replies": {}
},
"ejpqro0": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejpqro0/",
"text": ">Paid 90$ for this.\n\nwell you paid to send the scores too.\n\n​",
"author": "Sant268",
"created": 1553921315,
"upvotes": -1,
"replies": {}
},
"ejp9u67": {
"link": "/r/ApplyingToCollege/comments/b72lur/our_school_made_a_college_rejection_wall_for/ejp9u67/",
"text": "[removed]",
"author": null,