-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJSONExample
More file actions
2577 lines (2577 loc) · 232 KB
/
Copy pathJSONExample
File metadata and controls
2577 lines (2577 loc) · 232 KB
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
["response": {
"_links" = {
next = {
href = "/v2/blog/humansofnewyork.tumblr.com/posts/photo?type=photo&offset=20&page_number=2";
method = GET;
"query_params" = {
offset = 20;
"page_number" = 2;
type = photo;
};
};
};
blog = {
ask = 0;
"ask_anon" = 0;
"ask_page_title" = "Have a Question? Ask Us!";
"can_subscribe" = 0;
description = "";
"is_nsfw" = 0;
"is_optout_ads" = 1;
name = humansofnewyork;
posts = 7326;
"share_likes" = 0;
subscribed = 0;
title = "Humans of New York";
"total_posts" = 7326;
updated = 1547159426;
url = "http://www.humansofnewyork.com/";
uuid = "t:xzDoMr4AblD1cJo2VPtxuA";
};
posts = (
{
blog = {
description = "";
name = humansofnewyork;
title = "Humans of New York";
updated = 1547159426;
url = "http://www.humansofnewyork.com/";
uuid = "t:xzDoMr4AblD1cJo2VPtxuA";
};
"blog_name" = humansofnewyork;
"can_like" = 0;
"can_reblog" = 0;
"can_reply" = 0;
"can_send_in_message" = 1;
caption = "<p>\U201cI was only sixteen when I got pregnant. \U00a0I was so disappointed in myself. \U00a0I thought I\U2019d end up like one of those pregnant teens on Maury. \U00a0I did finish high school, I will say that. \U00a0But afterwards I had no good options. \U00a0My family didn\U2019t have money. \U00a0My son\U2019s father wasn\U2019t around. \U00a0It was on me to do something. \U00a0So I joined the Navy. \U00a0I was basically gone for the next six years. \U00a0I had to leave my son with my parents. \U00a0It was an extremely hard decision. \U00a0But anything I did was going to look bad, if I had stayed behind, I would have just been a bum ass \U2018project girl\U2019 with a kid. \U00a0I had to provide. \U00a0And I was still a kid myself, so I needed experience. \U00a0When I came home for good, my son was seven years old. \U00a0He lives with me now. \U00a0We\U2019re working on it. \U00a0I\U2019d love for him to be a \U2018mama\U2019s boy,\U2019 but in a lot of ways he\U2019s still closer to my parents. \U00a0He gives them random hugs and kisses. \U00a0I have to ask for mine. \U00a0So we\U2019ve still got a ways to go. \U00a0But I used the GI Bill to get a bachelor’s degree. \U00a0And I\U2019ve got a job where I make real money. \U00a0I\U2019m proud of myself. \U00a0I work in a place that I never could have imagined when I was sixteen. \U00a0I have \U2018work friends.\U2019 \U00a0I spend my day with people who are motivated to be better, not just in work, but as people. \U00a0I\U2019m doing well. \U00a0And considering how I started, that\U2019s an amazing thing.\U201d<br/></p>";
date = "2019-01-10 22:30:25 GMT";
"display_avatar" = 1;
format = html;
id = 181907210816;
"image_permalink" = "http://www.humansofnewyork.com/image/181907210816";
"is_blocks_post_format" = 0;
"note_count" = 2564;
photos = (
{
"alt_sizes" = (
{
height = 842;
url = "https://66.media.tumblr.com/298e678ff111bad78fead0089804bdf1/tumblr_pl4zupQ2LI1qggwnvo1_1280.jpg";
width = 1280;
},
{
height = 421;
url = "https://66.media.tumblr.com/298e678ff111bad78fead0089804bdf1/tumblr_pl4zupQ2LI1qggwnvo1_640.jpg";
width = 640;
},
{
height = 355;
url = "https://66.media.tumblr.com/298e678ff111bad78fead0089804bdf1/tumblr_pl4zupQ2LI1qggwnvo1_540.jpg";
width = 540;
},
{
height = 329;
url = "https://66.media.tumblr.com/298e678ff111bad78fead0089804bdf1/tumblr_pl4zupQ2LI1qggwnvo1_500.jpg";
width = 500;
},
{
height = 263;
url = "https://66.media.tumblr.com/298e678ff111bad78fead0089804bdf1/tumblr_pl4zupQ2LI1qggwnvo1_400.jpg";
width = 400;
},
{
height = 164;
url = "https://66.media.tumblr.com/298e678ff111bad78fead0089804bdf1/tumblr_pl4zupQ2LI1qggwnvo1_250.jpg";
width = 250;
},
{
height = 66;
url = "https://66.media.tumblr.com/298e678ff111bad78fead0089804bdf1/tumblr_pl4zupQ2LI1qggwnvo1_100.jpg";
width = 100;
},
{
height = 75;
url = "https://66.media.tumblr.com/298e678ff111bad78fead0089804bdf1/tumblr_pl4zupQ2LI1qggwnvo1_75sq.jpg";
width = 75;
}
);
caption = "";
"original_size" = {
height = 842;
url = "https://66.media.tumblr.com/298e678ff111bad78fead0089804bdf1/tumblr_pl4zupQ2LI1qggwnvo1_1280.jpg";
width = 1280;
};
}
);
"post_url" = "http://www.humansofnewyork.com/post/181907210816/i-was-only-sixteen-when-i-got-pregnant-i-was-so";
reblog = {
comment = "<p>\U201cI was only sixteen when I got pregnant. \U00a0I was so disappointed in myself. \U00a0I thought I\U2019d end up like one of those pregnant teens on Maury. \U00a0I did finish high school, I will say that. \U00a0But afterwards I had no good options. \U00a0My family didn\U2019t have money. \U00a0My son\U2019s father wasn\U2019t around. \U00a0It was on me to do something. \U00a0So I joined the Navy. \U00a0I was basically gone for the next six years. \U00a0I had to leave my son with my parents. \U00a0It was an extremely hard decision. \U00a0But anything I did was going to look bad, if I had stayed behind, I would have just been a bum ass \U2018project girl\U2019 with a kid. \U00a0I had to provide. \U00a0And I was still a kid myself, so I needed experience. \U00a0When I came home for good, my son was seven years old. \U00a0He lives with me now. \U00a0We\U2019re working on it. \U00a0I\U2019d love for him to be a \U2018mama\U2019s boy,\U2019 but in a lot of ways he\U2019s still closer to my parents. \U00a0He gives them random hugs and kisses. \U00a0I have to ask for mine. \U00a0So we\U2019ve still got a ways to go. \U00a0But I used the GI Bill to get a bachelor\U2019s degree. \U00a0And I\U2019ve got a job where I make real money. \U00a0I\U2019m proud of myself. \U00a0I work in a place that I never could have imagined when I was sixteen. \U00a0I have \U2018work friends.\U2019 \U00a0I spend my day with people who are motivated to be better, not just in work, but as people. \U00a0I\U2019m doing well. \U00a0And considering how I started, that\U2019s an amazing thing.\U201d<br></p>";
"tree_html" = "";
};
"reblog_key" = PLNv84j5;
"recommended_color" = "<null>";
"recommended_source" = "<null>";
"short_url" = "https://tmblr.co/ZITdqx2fQWy90";
slug = "i-was-only-sixteen-when-i-got-pregnant-i-was-so";
state = published;
summary = "\U201cI was only sixteen when I got pregnant. \U00a0I was so disappointed in myself. \U00a0I thought I\U2019d end up like one of those pregnant...";
tags = (
);
timestamp = 1547159425;
trail = (
{
blog = {
active = 1;
"can_be_followed" = 1;
name = humansofnewyork;
"share_following" = 0;
"share_likes" = 0;
theme = {
"avatar_shape" = circle;
"background_color" = "#F6F6F6";
"body_font" = "Helvetica Neue";
"header_bounds" = 0;
"header_image" = "https://assets.tumblr.com/images/default_header/optica_pattern_11.png?_v=4275fa0865b78225d79970023dde05a1";
"header_image_focused" = "https://assets.tumblr.com/images/default_header/optica_pattern_11.png?_v=4275fa0865b78225d79970023dde05a1";
"header_image_scaled" = "https://assets.tumblr.com/images/default_header/optica_pattern_11.png?_v=4275fa0865b78225d79970023dde05a1";
"header_stretch" = 1;
"link_color" = "#529ECC";
"show_avatar" = 1;
"show_description" = 1;
"show_header_image" = 0;
"show_title" = 1;
"title_color" = "#444444";
"title_font" = "Helvetica Neue";
"title_font_weight" = bold;
};
};
content = "<p>“I was only sixteen when I got pregnant. I was so disappointed in myself. I thought I’d end up like one of those pregnant teens on Maury. I did finish high school, I will say that. But afterwards I had no good options. My family didn’t have money. My son’s father wasn’t around. It was on me to do something. So I joined the Navy. I was basically gone for the next six years. I had to leave my son with my parents. It was an extremely hard decision. But anything I did was going to look bad, if I had stayed behind, I would have just been a bum ass ‘project girl’ with a kid. I had to provide. And I was still a kid myself, so I needed experience. When I came home for good, my son was seven years old. He lives with me now. We’re working on it. I’d love for him to be a ‘mama’s boy,’ but in a lot of ways he’s still closer to my parents. He gives them random hugs and kisses. I have to ask for mine. So we’ve still got a ways to go. But I used the GI Bill to get a bachelor’s degree. And I’ve got a job where I make real money. I’m proud of myself. I work in a place that I never could have imagined when I was sixteen. I have ‘work friends.’ I spend my day with people who are motivated to be better, not just in work, but as people. I’m doing well. And considering how I started, that’s an amazing thing.”<br /></p>";
"content_raw" = "<p>\U201cI was only sixteen when I got pregnant. \U00a0I was so disappointed in myself. \U00a0I thought I\U2019d end up like one of those pregnant teens on Maury. \U00a0I did finish high school, I will say that. \U00a0But afterwards I had no good options. \U00a0My family didn\U2019t have money. \U00a0My son\U2019s father wasn\U2019t around. \U00a0It was on me to do something. \U00a0So I joined the Navy. \U00a0I was basically gone for the next six years. \U00a0I had to leave my son with my parents. \U00a0It was an extremely hard decision. \U00a0But anything I did was going to look bad, if I had stayed behind, I would have just been a bum ass \U2018project girl\U2019 with a kid. \U00a0I had to provide. \U00a0And I was still a kid myself, so I needed experience. \U00a0When I came home for good, my son was seven years old. \U00a0He lives with me now. \U00a0We\U2019re working on it. \U00a0I\U2019d love for him to be a \U2018mama\U2019s boy,\U2019 but in a lot of ways he\U2019s still closer to my parents. \U00a0He gives them random hugs and kisses. \U00a0I have to ask for mine. \U00a0So we\U2019ve still got a ways to go. \U00a0But I used the GI Bill to get a bachelor\U2019s degree. \U00a0And I\U2019ve got a job where I make real money. \U00a0I\U2019m proud of myself. \U00a0I work in a place that I never could have imagined when I was sixteen. \U00a0I have \U2018work friends.\U2019 \U00a0I spend my day with people who are motivated to be better, not just in work, but as people. \U00a0I\U2019m doing well. \U00a0And considering how I started, that\U2019s an amazing thing.\U201d<br></p>";
"is_current_item" = 1;
"is_root_item" = 1;
post = {
id = 181907210816;
};
}
);
type = photo;
},
{
blog = {
description = "";
name = humansofnewyork;
title = "Humans of New York";
updated = 1547159426;
url = "http://www.humansofnewyork.com/";
uuid = "t:xzDoMr4AblD1cJo2VPtxuA";
};
"blog_name" = humansofnewyork;
"can_like" = 0;
"can_reblog" = 0;
"can_reply" = 0;
"can_send_in_message" = 1;
caption = "<p>\U201cI had the idea for a book right after I graduated from law school. \U00a0It\U2019s a series of novels about superhuman professional fighters, like what the UFC would look like in the Marvel Universe. \U00a0I\U2019d love to create an entire world like Tolkien did for Lord of The Rings. But right now it\U2019s mostly just notes on my phone and computer. \U00a0I\U2019ve had goals in the past, but not like this. I\U2019ve never sunk so many hours into something. It\U2019s become a very core part of my identity. \U00a0It\U2019s like an application that\U2019s constantly running in the background of my mind. Everything I see, I apply to the story. \U00a0The bridge behind me reminds me of the entrance to the main stadium, which is a sculpted archway of past fighters climbing over each other. \U00a0The book gives me a reason to explore more. \U00a0I’m taking long walks. \U00a0I\U2019m looking deeper at things. \U00a0And I\U2019m especially paying closer attention to other people. \U00a0It\U2019s the only way to create believable characters. I have to think hard about the lives of people I meet, and the circumstances that made them who they are. So even if nothing else comes of the book, it\U2019s made me a better person. Just having the goal has forced me to grow.\U201d<br/></p>";
date = "2019-01-09 22:16:55 GMT";
"display_avatar" = 1;
format = html;
id = 181879248711;
"image_permalink" = "http://www.humansofnewyork.com/image/181879248711";
"is_blocks_post_format" = 0;
"note_count" = 2483;
photos = (
{
"alt_sizes" = (
{
height = 841;
url = "https://66.media.tumblr.com/ea59e14db15c59831ad0ce4c1934c607/tumblr_pl34k7yLLR1qggwnvo1_1280.jpg";
width = 1280;
},
{
height = 420;
url = "https://66.media.tumblr.com/ea59e14db15c59831ad0ce4c1934c607/tumblr_pl34k7yLLR1qggwnvo1_640.jpg";
width = 640;
},
{
height = 355;
url = "https://66.media.tumblr.com/ea59e14db15c59831ad0ce4c1934c607/tumblr_pl34k7yLLR1qggwnvo1_540.jpg";
width = 540;
},
{
height = 328;
url = "https://66.media.tumblr.com/ea59e14db15c59831ad0ce4c1934c607/tumblr_pl34k7yLLR1qggwnvo1_500.jpg";
width = 500;
},
{
height = 263;
url = "https://66.media.tumblr.com/ea59e14db15c59831ad0ce4c1934c607/tumblr_pl34k7yLLR1qggwnvo1_400.jpg";
width = 400;
},
{
height = 164;
url = "https://66.media.tumblr.com/ea59e14db15c59831ad0ce4c1934c607/tumblr_pl34k7yLLR1qggwnvo1_250.jpg";
width = 250;
},
{
height = 66;
url = "https://66.media.tumblr.com/ea59e14db15c59831ad0ce4c1934c607/tumblr_pl34k7yLLR1qggwnvo1_100.jpg";
width = 100;
},
{
height = 75;
url = "https://66.media.tumblr.com/ea59e14db15c59831ad0ce4c1934c607/tumblr_pl34k7yLLR1qggwnvo1_75sq.jpg";
width = 75;
}
);
caption = "";
"original_size" = {
height = 841;
url = "https://66.media.tumblr.com/ea59e14db15c59831ad0ce4c1934c607/tumblr_pl34k7yLLR1qggwnvo1_1280.jpg";
width = 1280;
};
}
);
"post_url" = "http://www.humansofnewyork.com/post/181879248711/i-had-the-idea-for-a-book-right-after-i-graduated";
reblog = {
comment = "<p>\U201cI had the idea for a book right after I graduated from law school. \U00a0It\U2019s a series of novels about superhuman professional fighters, like what the UFC would look like in the Marvel Universe. \U00a0I\U2019d love to create an entire world like Tolkien did for Lord of The Rings. But right now it\U2019s mostly just notes on my phone and computer. \U00a0I\U2019ve had goals in the past, but not like this. I\U2019ve never sunk so many hours into something. It\U2019s become a very core part of my identity. \U00a0It\U2019s like an application that\U2019s constantly running in the background of my mind. Everything I see, I apply to the story. \U00a0The bridge behind me reminds me of the entrance to the main stadium, which is a sculpted archway of past fighters climbing over each other. \U00a0The book gives me a reason to explore more. \U00a0I\U2019m taking long walks. \U00a0I\U2019m looking deeper at things. \U00a0And I\U2019m especially paying closer attention to other people. \U00a0It\U2019s the only way to create believable characters. I have to think hard about the lives of people I meet, and the circumstances that made them who they are. So even if nothing else comes of the book, it\U2019s made me a better person. Just having the goal has forced me to grow.\U201d<br></p>";
"tree_html" = "";
};
"reblog_key" = uy0lU47G;
"recommended_color" = "<null>";
"recommended_source" = "<null>";
"short_url" = "https://tmblr.co/ZITdqx2fOsHT7";
slug = "i-had-the-idea-for-a-book-right-after-i-graduated";
state = published;
summary = "\U201cI had the idea for a book right after I graduated from law school. \U00a0It\U2019s a series of novels about superhuman professional...";
tags = (
);
timestamp = 1547072215;
trail = (
{
blog = {
active = 1;
"can_be_followed" = 1;
name = humansofnewyork;
"share_following" = 0;
"share_likes" = 0;
theme = {
"avatar_shape" = circle;
"background_color" = "#F6F6F6";
"body_font" = "Helvetica Neue";
"header_bounds" = 0;
"header_image" = "https://assets.tumblr.com/images/default_header/optica_pattern_11.png?_v=4275fa0865b78225d79970023dde05a1";
"header_image_focused" = "https://assets.tumblr.com/images/default_header/optica_pattern_11.png?_v=4275fa0865b78225d79970023dde05a1";
"header_image_scaled" = "https://assets.tumblr.com/images/default_header/optica_pattern_11.png?_v=4275fa0865b78225d79970023dde05a1";
"header_stretch" = 1;
"link_color" = "#529ECC";
"show_avatar" = 1;
"show_description" = 1;
"show_header_image" = 0;
"show_title" = 1;
"title_color" = "#444444";
"title_font" = "Helvetica Neue";
"title_font_weight" = bold;
};
};
content = "<p>“I had the idea for a book right after I graduated from law school. It’s a series of novels about superhuman professional fighters, like what the UFC would look like in the Marvel Universe. I’d love to create an entire world like Tolkien did for Lord of The Rings. But right now it’s mostly just notes on my phone and computer. I’ve had goals in the past, but not like this. I’ve never sunk so many hours into something. It’s become a very core part of my identity. It’s like an application that’s constantly running in the background of my mind. Everything I see, I apply to the story. The bridge behind me reminds me of the entrance to the main stadium, which is a sculpted archway of past fighters climbing over each other. The book gives me a reason to explore more. I’m taking long walks. I’m looking deeper at things. And I’m especially paying closer attention to other people. It’s the only way to create believable characters. I have to think hard about the lives of people I meet, and the circumstances that made them who they are. So even if nothing else comes of the book, it’s made me a better person. Just having the goal has forced me to grow.”<br /></p>";
"content_raw" = "<p>\U201cI had the idea for a book right after I graduated from law school. \U00a0It\U2019s a series of novels about superhuman professional fighters, like what the UFC would look like in the Marvel Universe. \U00a0I\U2019d love to create an entire world like Tolkien did for Lord of The Rings. But right now it\U2019s mostly just notes on my phone and computer. \U00a0I\U2019ve had goals in the past, but not like this. I\U2019ve never sunk so many hours into something. It\U2019s become a very core part of my identity. \U00a0It\U2019s like an application that\U2019s constantly running in the background of my mind. Everything I see, I apply to the story. \U00a0The bridge behind me reminds me of the entrance to the main stadium, which is a sculpted archway of past fighters climbing over each other. \U00a0The book gives me a reason to explore more. \U00a0I\U2019m taking long walks. \U00a0I\U2019m looking deeper at things. \U00a0And I\U2019m especially paying closer attention to other people. \U00a0It\U2019s the only way to create believable characters. I have to think hard about the lives of people I meet, and the circumstances that made them who they are. So even if nothing else comes of the book, it\U2019s made me a better person. Just having the goal has forced me to grow.\U201d<br></p>";
"is_current_item" = 1;
"is_root_item" = 1;
post = {
id = 181879248711;
};
}
);
type = photo;
},
{
blog = {
description = "";
name = humansofnewyork;
title = "Humans of New York";
updated = 1547159426;
url = "http://www.humansofnewyork.com/";
uuid = "t:xzDoMr4AblD1cJo2VPtxuA";
};
"blog_name" = humansofnewyork;
"can_like" = 0;
"can_reblog" = 0;
"can_reply" = 0;
"can_send_in_message" = 1;
caption = "<p>\U201cEver since I was twelve years old, my mom wanted to bring us to America. \U00a0She said we\U2019d be able to reach our goals faster. \U00a0At first she came alone. \U00a0In Peru she had a nice government job, but here she mopped floors and washed cars. \U00a0It took forever to get our papers because she wanted to bring us over legally. \U00a0There were so many times she told me to get read, but then it fell through. \U00a0I started to think it would never happen. \U00a0But then one year ago she called me and said it was time. \U00a0I left my whole life behind. \U00a0That first winter was so depressing. \U00a0I had to break up with my boyfriend. I didn\U2019t know anyone here. \U00a0My English was suck. \U00a0I had my own bedroom in Peru, but here I had to share a room with three people. \U00a0I spent so much time crying. \U00a0I watched a lot of anime. \U00a0Even my cat wouldn\U2019t play with me because she\U2019s not very friendly. \U00a0But finally in March I found a job at a restaurant, and things began to turn around. \U00a0My coworkers became like family. \U00a0My manager Alizee is the most amazing person I\U2019ve ever met. \U00a0And the guys in the kitchen help me with my English. \U00a0There\U2019s a gym nearby, and after work I\U2019ve been taking jiu-jitsu classes. \U00a0It\U2019s helped me a lot. \U00a0There\U2019s one position called guard, and as long as you can keep your guard up, you\U2019ll be alright. \U00a0I feel like I\U2019m finally in control. \U00a0This morning I paid for a whole semester of classes. \U00a0Last year was about surviving. \U00a0But this year I have goals. \U00a0The first one is to get better at jiu-jitsu.“<br/></p>";
date = "2019-01-08 22:45:21 GMT";
"display_avatar" = 1;
format = html;
id = 181849715696;
"image_permalink" = "http://www.humansofnewyork.com/image/181849715696";
"is_blocks_post_format" = 0;
"note_count" = 3535;
photos = (
{
"alt_sizes" = (
{
height = 844;
url = "https://66.media.tumblr.com/58a762e1b12e5ea7a5c3778743ac52ae/tumblr_pl1b7lJ7jk1qggwnvo1_1280.jpg";
width = 1280;
},
{
height = 422;
url = "https://66.media.tumblr.com/58a762e1b12e5ea7a5c3778743ac52ae/tumblr_pl1b7lJ7jk1qggwnvo1_640.jpg";
width = 640;
},
{
height = 356;
url = "https://66.media.tumblr.com/58a762e1b12e5ea7a5c3778743ac52ae/tumblr_pl1b7lJ7jk1qggwnvo1_540.jpg";
width = 540;
},
{
height = 330;
url = "https://66.media.tumblr.com/58a762e1b12e5ea7a5c3778743ac52ae/tumblr_pl1b7lJ7jk1qggwnvo1_500.jpg";
width = 500;
},
{
height = 264;
url = "https://66.media.tumblr.com/58a762e1b12e5ea7a5c3778743ac52ae/tumblr_pl1b7lJ7jk1qggwnvo1_400.jpg";
width = 400;
},
{
height = 165;
url = "https://66.media.tumblr.com/58a762e1b12e5ea7a5c3778743ac52ae/tumblr_pl1b7lJ7jk1qggwnvo1_250.jpg";
width = 250;
},
{
height = 66;
url = "https://66.media.tumblr.com/58a762e1b12e5ea7a5c3778743ac52ae/tumblr_pl1b7lJ7jk1qggwnvo1_100.jpg";
width = 100;
},
{
height = 75;
url = "https://66.media.tumblr.com/58a762e1b12e5ea7a5c3778743ac52ae/tumblr_pl1b7lJ7jk1qggwnvo1_75sq.jpg";
width = 75;
}
);
caption = "";
"original_size" = {
height = 844;
url = "https://66.media.tumblr.com/58a762e1b12e5ea7a5c3778743ac52ae/tumblr_pl1b7lJ7jk1qggwnvo1_1280.jpg";
width = 1280;
};
}
);
"post_url" = "http://www.humansofnewyork.com/post/181849715696/ever-since-i-was-twelve-years-old-my-mom-wanted";
reblog = {
comment = "<p>\U201cEver since I was twelve years old, my mom wanted to bring us to America. \U00a0She said we\U2019d be able to reach our goals faster. \U00a0At first she came alone. \U00a0In Peru she had a nice government job, but here she mopped floors and washed cars. \U00a0It took forever to get our papers because she wanted to bring us over legally. \U00a0There were so many times she told me to get read, but then it fell through. \U00a0I started to think it would never happen. \U00a0But then one year ago she called me and said it was time. \U00a0I left my whole life behind. \U00a0That first winter was so depressing. \U00a0I had to break up with my boyfriend. I didn\U2019t know anyone here. \U00a0My English was suck. \U00a0I had my own bedroom in Peru, but here I had to share a room with three people. \U00a0I spent so much time crying. \U00a0I watched a lot of anime. \U00a0Even my cat wouldn\U2019t play with me because she\U2019s not very friendly. \U00a0But finally in March I found a job at a restaurant, and things began to turn around. \U00a0My coworkers became like family. \U00a0My manager Alizee is the most amazing person I\U2019ve ever met. \U00a0And the guys in the kitchen help me with my English. \U00a0There\U2019s a gym nearby, and after work I\U2019ve been taking jiu-jitsu classes. \U00a0It\U2019s helped me a lot. \U00a0There\U2019s one position called guard, and as long as you can keep your guard up, you\U2019ll be alright. \U00a0I feel like I\U2019m finally in control. \U00a0This morning I paid for a whole semester of classes. \U00a0Last year was about surviving. \U00a0But this year I have goals. \U00a0The first one is to get better at jiu-jitsu.\U201c<br></p>";
"tree_html" = "";
};
"reblog_key" = 15tbEHqP;
"recommended_color" = "<null>";
"recommended_source" = "<null>";
"short_url" = "https://tmblr.co/ZITdqx2fN5dFm";
slug = "ever-since-i-was-twelve-years-old-my-mom-wanted";
state = published;
summary = "\U201cEver since I was twelve years old, my mom wanted to bring us to America. \U00a0She said we\U2019d be able to reach our goals faster. \U00a0At...";
tags = (
);
timestamp = 1546987521;
trail = (
{
blog = {
active = 1;
"can_be_followed" = 1;
name = humansofnewyork;
"share_following" = 0;
"share_likes" = 0;
theme = {
"avatar_shape" = circle;
"background_color" = "#F6F6F6";
"body_font" = "Helvetica Neue";
"header_bounds" = 0;
"header_image" = "https://assets.tumblr.com/images/default_header/optica_pattern_11.png?_v=4275fa0865b78225d79970023dde05a1";
"header_image_focused" = "https://assets.tumblr.com/images/default_header/optica_pattern_11.png?_v=4275fa0865b78225d79970023dde05a1";
"header_image_scaled" = "https://assets.tumblr.com/images/default_header/optica_pattern_11.png?_v=4275fa0865b78225d79970023dde05a1";
"header_stretch" = 1;
"link_color" = "#529ECC";
"show_avatar" = 1;
"show_description" = 1;
"show_header_image" = 0;
"show_title" = 1;
"title_color" = "#444444";
"title_font" = "Helvetica Neue";
"title_font_weight" = bold;
};
};
content = "<p>“Ever since I was twelve years old, my mom wanted to bring us to America. She said we’d be able to reach our goals faster. At first she came alone. In Peru she had a nice government job, but here she mopped floors and washed cars. It took forever to get our papers because she wanted to bring us over legally. There were so many times she told me to get read, but then it fell through. I started to think it would never happen. But then one year ago she called me and said it was time. I left my whole life behind. That first winter was so depressing. I had to break up with my boyfriend. I didn’t know anyone here. My English was suck. I had my own bedroom in Peru, but here I had to share a room with three people. I spent so much time crying. I watched a lot of anime. Even my cat wouldn’t play with me because she’s not very friendly. But finally in March I found a job at a restaurant, and things began to turn around. My coworkers became like family. My manager Alizee is the most amazing person I’ve ever met. And the guys in the kitchen help me with my English. There’s a gym nearby, and after work I’ve been taking jiu-jitsu classes. It’s helped me a lot. There’s one position called guard, and as long as you can keep your guard up, you’ll be alright. I feel like I’m finally in control. This morning I paid for a whole semester of classes. Last year was about surviving. But this year I have goals. The first one is to get better at jiu-jitsu.“<br /></p>";
"content_raw" = "<p>\U201cEver since I was twelve years old, my mom wanted to bring us to America. \U00a0She said we\U2019d be able to reach our goals faster. \U00a0At first she came alone. \U00a0In Peru she had a nice government job, but here she mopped floors and washed cars. \U00a0It took forever to get our papers because she wanted to bring us over legally. \U00a0There were so many times she told me to get read, but then it fell through. \U00a0I started to think it would never happen. \U00a0But then one year ago she called me and said it was time. \U00a0I left my whole life behind. \U00a0That first winter was so depressing. \U00a0I had to break up with my boyfriend. I didn\U2019t know anyone here. \U00a0My English was suck. \U00a0I had my own bedroom in Peru, but here I had to share a room with three people. \U00a0I spent so much time crying. \U00a0I watched a lot of anime. \U00a0Even my cat wouldn\U2019t play with me because she\U2019s not very friendly. \U00a0But finally in March I found a job at a restaurant, and things began to turn around. \U00a0My coworkers became like family. \U00a0My manager Alizee is the most amazing person I\U2019ve ever met. \U00a0And the guys in the kitchen help me with my English. \U00a0There\U2019s a gym nearby, and after work I\U2019ve been taking jiu-jitsu classes. \U00a0It\U2019s helped me a lot. \U00a0There\U2019s one position called guard, and as long as you can keep your guard up, you\U2019ll be alright. \U00a0I feel like I\U2019m finally in control. \U00a0This morning I paid for a whole semester of classes. \U00a0Last year was about surviving. \U00a0But this year I have goals. \U00a0The first one is to get better at jiu-jitsu.\U201c<br></p>";
"is_current_item" = 1;
"is_root_item" = 1;
post = {
id = 181849715696;
};
}
);
type = photo;
},
{
blog = {
description = "";
name = humansofnewyork;
title = "Humans of New York";
updated = 1547159426;
url = "http://www.humansofnewyork.com/";
uuid = "t:xzDoMr4AblD1cJo2VPtxuA";
};
"blog_name" = humansofnewyork;
"can_like" = 0;
"can_reblog" = 0;
"can_reply" = 0;
"can_send_in_message" = 1;
caption = "<p>\U201cMy kids are going to be shocked when they become adults and learn that I\U2019ve basically been playing a character for their entire lives. \U00a0All day long I have to pretend like I care about everything. \U00a0I\U2019m a laid back guy. \U00a0I could actually care less if they make their beds. \U00a0Or if they scratch the walls. \U00a0But my character has expectations. \U00a0He says what he means and he does what he says. \U00a0My character hates video games. \U00a0He barely allows them in the house. \U00a0And he\U2019ll banish them immediately when rules are broken. \U00a0But I actually play Mario Kart all the time when they\U2019re at school. \U00a0Last week my character got really upset. \U00a0He threatened to throw away candy if the kids didn\U2019t stop wrestling. \U00a0When the wrestling continued, he was forced to follow through. \U00a0I really thought it was a safe move. \U00a0It\U2019d been so long since Halloween. \U00a0I was sure there\U2019d be nothing good left, maybe just some chalky wafer things. \U00a0But the kid was saving the best stuff for last. \U00a0It was brutal. \U00a0Full sized candy bars. \U00a0There were tears. \U00a0I didn\U2019t want to do it, but my character had to keep his word. \U00a0Then later I fished them out of the trash and ate them all.\U201d<br/></p>";
date = "2019-01-07 22:39:33 GMT";
"display_avatar" = 1;
format = html;
id = 181818373966;
"image_permalink" = "http://www.humansofnewyork.com/image/181818373966";
"is_blocks_post_format" = 0;
"note_count" = 3382;
photos = (
{
"alt_sizes" = (
{
height = 844;
url = "https://66.media.tumblr.com/0d1d9b826f259dede1521063fc76e798/tumblr_pkzg9xit8S1qggwnvo1_1280.jpg";
width = 1280;
},
{
height = 422;
url = "https://66.media.tumblr.com/0d1d9b826f259dede1521063fc76e798/tumblr_pkzg9xit8S1qggwnvo1_640.jpg";
width = 640;
},
{
height = 356;
url = "https://66.media.tumblr.com/0d1d9b826f259dede1521063fc76e798/tumblr_pkzg9xit8S1qggwnvo1_540.jpg";
width = 540;
},
{
height = 330;
url = "https://66.media.tumblr.com/0d1d9b826f259dede1521063fc76e798/tumblr_pkzg9xit8S1qggwnvo1_500.jpg";
width = 500;
},
{
height = 264;
url = "https://66.media.tumblr.com/0d1d9b826f259dede1521063fc76e798/tumblr_pkzg9xit8S1qggwnvo1_400.jpg";
width = 400;
},
{
height = 165;
url = "https://66.media.tumblr.com/0d1d9b826f259dede1521063fc76e798/tumblr_pkzg9xit8S1qggwnvo1_250.jpg";
width = 250;
},
{
height = 66;
url = "https://66.media.tumblr.com/0d1d9b826f259dede1521063fc76e798/tumblr_pkzg9xit8S1qggwnvo1_100.jpg";
width = 100;
},
{
height = 75;
url = "https://66.media.tumblr.com/0d1d9b826f259dede1521063fc76e798/tumblr_pkzg9xit8S1qggwnvo1_75sq.jpg";
width = 75;
}
);
caption = "";
"original_size" = {
height = 844;
url = "https://66.media.tumblr.com/0d1d9b826f259dede1521063fc76e798/tumblr_pkzg9xit8S1qggwnvo1_1280.jpg";
width = 1280;
};
}
);
"post_url" = "http://www.humansofnewyork.com/post/181818373966/my-kids-are-going-to-be-shocked-when-they-become";
reblog = {
comment = "<p>\U201cMy kids are going to be shocked when they become adults and learn that I\U2019ve basically been playing a character for their entire lives. \U00a0All day long I have to pretend like I care about everything. \U00a0I\U2019m a laid back guy. \U00a0I could actually care less if they make their beds. \U00a0Or if they scratch the walls. \U00a0But my character has expectations. \U00a0He says what he means and he does what he says. \U00a0My character hates video games. \U00a0He barely allows them in the house. \U00a0And he\U2019ll banish them immediately when rules are broken. \U00a0But I actually play Mario Kart all the time when they\U2019re at school. \U00a0Last week my character got really upset. \U00a0He threatened to throw away candy if the kids didn\U2019t stop wrestling. \U00a0When the wrestling continued, he was forced to follow through. \U00a0I really thought it was a safe move. \U00a0It\U2019d been so long since Halloween. \U00a0I was sure there\U2019d be nothing good left, maybe just some chalky wafer things. \U00a0But the kid was saving the best stuff for last. \U00a0It was brutal. \U00a0Full sized candy bars. \U00a0There were tears. \U00a0I didn\U2019t want to do it, but my character had to keep his word. \U00a0Then later I fished them out of the trash and ate them all.\U201d<br></p>";
"tree_html" = "";
};
"reblog_key" = oOA25Nit;
"recommended_color" = "<null>";
"recommended_source" = "<null>";
"short_url" = "https://tmblr.co/ZITdqx2fLE3TE";
slug = "my-kids-are-going-to-be-shocked-when-they-become";
state = published;
summary = "\U201cMy kids are going to be shocked when they become adults and learn that I\U2019ve basically been playing a character for their entire...";
tags = (
);
timestamp = 1546900773;
trail = (
{
blog = {
active = 1;
"can_be_followed" = 1;
name = humansofnewyork;
"share_following" = 0;
"share_likes" = 0;
theme = {
"avatar_shape" = circle;
"background_color" = "#F6F6F6";
"body_font" = "Helvetica Neue";
"header_bounds" = 0;
"header_image" = "https://assets.tumblr.com/images/default_header/optica_pattern_11.png?_v=4275fa0865b78225d79970023dde05a1";
"header_image_focused" = "https://assets.tumblr.com/images/default_header/optica_pattern_11.png?_v=4275fa0865b78225d79970023dde05a1";
"header_image_scaled" = "https://assets.tumblr.com/images/default_header/optica_pattern_11.png?_v=4275fa0865b78225d79970023dde05a1";
"header_stretch" = 1;
"link_color" = "#529ECC";
"show_avatar" = 1;
"show_description" = 1;
"show_header_image" = 0;
"show_title" = 1;
"title_color" = "#444444";
"title_font" = "Helvetica Neue";
"title_font_weight" = bold;
};
};
content = "<p>“My kids are going to be shocked when they become adults and learn that I’ve basically been playing a character for their entire lives. All day long I have to pretend like I care about everything. I’m a laid back guy. I could actually care less if they make their beds. Or if they scratch the walls. But my character has expectations. He says what he means and he does what he says. My character hates video games. He barely allows them in the house. And he’ll banish them immediately when rules are broken. But I actually play Mario Kart all the time when they’re at school. Last week my character got really upset. He threatened to throw away candy if the kids didn’t stop wrestling. When the wrestling continued, he was forced to follow through. I really thought it was a safe move. It’d been so long since Halloween. I was sure there’d be nothing good left, maybe just some chalky wafer things. But the kid was saving the best stuff for last. It was brutal. Full sized candy bars. There were tears. I didn’t want to do it, but my character had to keep his word. Then later I fished them out of the trash and ate them all.”<br /></p>";
"content_raw" = "<p>\U201cMy kids are going to be shocked when they become adults and learn that I\U2019ve basically been playing a character for their entire lives. \U00a0All day long I have to pretend like I care about everything. \U00a0I\U2019m a laid back guy. \U00a0I could actually care less if they make their beds. \U00a0Or if they scratch the walls. \U00a0But my character has expectations. \U00a0He says what he means and he does what he says. \U00a0My character hates video games. \U00a0He barely allows them in the house. \U00a0And he\U2019ll banish them immediately when rules are broken. \U00a0But I actually play Mario Kart all the time when they\U2019re at school. \U00a0Last week my character got really upset. \U00a0He threatened to throw away candy if the kids didn\U2019t stop wrestling. \U00a0When the wrestling continued, he was forced to follow through. \U00a0I really thought it was a safe move. \U00a0It\U2019d been so long since Halloween. \U00a0I was sure there\U2019d be nothing good left, maybe just some chalky wafer things. \U00a0But the kid was saving the best stuff for last. \U00a0It was brutal. \U00a0Full sized candy bars. \U00a0There were tears. \U00a0I didn\U2019t want to do it, but my character had to keep his word. \U00a0Then later I fished them out of the trash and ate them all.\U201d<br></p>";
"is_current_item" = 1;
"is_root_item" = 1;
post = {
id = 181818373966;
};
}
);
type = photo;
},
{
blog = {
description = "";
name = humansofnewyork;
title = "Humans of New York";
updated = 1547159426;
url = "http://www.humansofnewyork.com/";
uuid = "t:xzDoMr4AblD1cJo2VPtxuA";
};
"blog_name" = humansofnewyork;
"can_like" = 0;
"can_reblog" = 0;
"can_reply" = 0;
"can_send_in_message" = 1;
caption = "<p>(3/3) \U201cI ended up getting a full scholarship to SUNY Farmingdale as part of an anti-poverty program. \U00a0And I tell everyone who will listen: \U2018Without Farmingdale, none of this would have been possible.\U2019 \U00a0I\U2019ve been able to do so much in my life. \U00a0I\U2019ve loved it all. \U00a0And I\U2019ve brought passion to everything I do. \U00a0After graduation, I organized a program so disadvantaged black kids could tour historically black colleges in the South. \U00a0In my twenties I ran a youth program to help get kids off the street. \U00a0In my thirties I \U2018jocked\U2019 for three different radio stations on Long Island. \U00a0Then I entered the corporate world, and worked as the Director of Human Resources for Black Enterprise Magazine, Sesame Street, and Madison Square Garden. \U00a0Recently I retired and I\U2019m beginning a new career as a background actor. \U00a0I\U2019m starting to get some traction. \U00a0I\U2019ve been a clubgoer on \U2018God Friended Me,\U2019 a juror on \U2018Bull,\U2019 a diner on \U2018Bull,\U2019 and a Costa Rican underworld gangster on \U2018Blacklist.\U2019 \U00a0In some of the roles I have to pretend like I\U2019m talking. \U00a0And I know that one day soon a director is going to notice me and give me an actual line of dialogue. \U00a0Check out this courtroom scene from \U2018Shades of Blue.\U2019 \U00a0That\U2019s Jennifer Lopez right there. \U00a0And who\U2019s that behind her? \U00a0That\U2019s right. \U00a0It\U2019s Leon.\U201d<br/></p>";
date = "2019-01-07 10:55:38 GMT";
"display_avatar" = 1;
format = html;
id = 181802120946;
"image_permalink" = "http://www.humansofnewyork.com/image/181802120946";
"is_blocks_post_format" = 0;
"note_count" = 813;
photos = (
{
"alt_sizes" = (
{
height = 843;
url = "https://66.media.tumblr.com/155fe19013511b0dc2cd76e6602b5139/tumblr_pkyjoqzSab1qggwnvo1_1280.jpg";
width = 1280;
},
{
height = 421;
url = "https://66.media.tumblr.com/155fe19013511b0dc2cd76e6602b5139/tumblr_pkyjoqzSab1qggwnvo1_640.jpg";
width = 640;
},
{
height = 356;
url = "https://66.media.tumblr.com/155fe19013511b0dc2cd76e6602b5139/tumblr_pkyjoqzSab1qggwnvo1_540.jpg";
width = 540;
},
{
height = 329;
url = "https://66.media.tumblr.com/155fe19013511b0dc2cd76e6602b5139/tumblr_pkyjoqzSab1qggwnvo1_500.jpg";
width = 500;
},
{
height = 263;
url = "https://66.media.tumblr.com/155fe19013511b0dc2cd76e6602b5139/tumblr_pkyjoqzSab1qggwnvo1_400.jpg";
width = 400;
},
{
height = 165;
url = "https://66.media.tumblr.com/155fe19013511b0dc2cd76e6602b5139/tumblr_pkyjoqzSab1qggwnvo1_250.jpg";
width = 250;
},
{
height = 66;
url = "https://66.media.tumblr.com/155fe19013511b0dc2cd76e6602b5139/tumblr_pkyjoqzSab1qggwnvo1_100.jpg";
width = 100;
},
{
height = 75;
url = "https://66.media.tumblr.com/155fe19013511b0dc2cd76e6602b5139/tumblr_pkyjoqzSab1qggwnvo1_75sq.jpg";
width = 75;
}
);
caption = "";
"original_size" = {
height = 843;
url = "https://66.media.tumblr.com/155fe19013511b0dc2cd76e6602b5139/tumblr_pkyjoqzSab1qggwnvo1_1280.jpg";
width = 1280;
};
}
);
"post_url" = "http://www.humansofnewyork.com/post/181802120946/33-i-ended-up-getting-a-full-scholarship-to";
reblog = {
comment = "<p>(3/3) \U201cI ended up getting a full scholarship to SUNY Farmingdale as part of an anti-poverty program. \U00a0And I tell everyone who will listen: \U2018Without Farmingdale, none of this would have been possible.\U2019 \U00a0I\U2019ve been able to do so much in my life. \U00a0I\U2019ve loved it all. \U00a0And I\U2019ve brought passion to everything I do. \U00a0After graduation, I organized a program so disadvantaged black kids could tour historically black colleges in the South. \U00a0In my twenties I ran a youth program to help get kids off the street. \U00a0In my thirties I \U2018jocked\U2019 for three different radio stations on Long Island. \U00a0Then I entered the corporate world, and worked as the Director of Human Resources for Black Enterprise Magazine, Sesame Street, and Madison Square Garden. \U00a0Recently I retired and I\U2019m beginning a new career as a background actor. \U00a0I\U2019m starting to get some traction. \U00a0I\U2019ve been a clubgoer on \U2018God Friended Me,\U2019 a juror on \U2018Bull,\U2019 a diner on \U2018Bull,\U2019 and a Costa Rican underworld gangster on \U2018Blacklist.\U2019 \U00a0In some of the roles I have to pretend like I\U2019m talking. \U00a0And I know that one day soon a director is going to notice me and give me an actual line of dialogue. \U00a0Check out this courtroom scene from \U2018Shades of Blue.\U2019 \U00a0That\U2019s Jennifer Lopez right there. \U00a0And who\U2019s that behind her? \U00a0That\U2019s right. \U00a0It\U2019s Leon.\U201d<br></p>";
"tree_html" = "";
};
"reblog_key" = 8P0FGKKR;
"recommended_color" = "<null>";
"recommended_source" = "<null>";
"short_url" = "https://tmblr.co/ZITdqx2fKG3Ro";
slug = "33-i-ended-up-getting-a-full-scholarship-to";
state = published;
summary = "(3/3) \U201cI ended up getting a full scholarship to SUNY Farmingdale as part of an anti-poverty program. \U00a0And I tell everyone who...";
tags = (
);
timestamp = 1546858538;
trail = (
{
blog = {
active = 1;
"can_be_followed" = 1;
name = humansofnewyork;
"share_following" = 0;
"share_likes" = 0;
theme = {
"avatar_shape" = circle;
"background_color" = "#F6F6F6";
"body_font" = "Helvetica Neue";
"header_bounds" = 0;
"header_image" = "https://assets.tumblr.com/images/default_header/optica_pattern_11.png?_v=4275fa0865b78225d79970023dde05a1";
"header_image_focused" = "https://assets.tumblr.com/images/default_header/optica_pattern_11.png?_v=4275fa0865b78225d79970023dde05a1";
"header_image_scaled" = "https://assets.tumblr.com/images/default_header/optica_pattern_11.png?_v=4275fa0865b78225d79970023dde05a1";
"header_stretch" = 1;
"link_color" = "#529ECC";
"show_avatar" = 1;
"show_description" = 1;
"show_header_image" = 0;
"show_title" = 1;
"title_color" = "#444444";
"title_font" = "Helvetica Neue";
"title_font_weight" = bold;
};
};
content = "<p>(3/3) “I ended up getting a full scholarship to SUNY Farmingdale as part of an anti-poverty program. And I tell everyone who will listen: ‘Without Farmingdale, none of this would have been possible.’ I’ve been able to do so much in my life. I’ve loved it all. And I’ve brought passion to everything I do. After graduation, I organized a program so disadvantaged black kids could tour historically black colleges in the South. In my twenties I ran a youth program to help get kids off the street. In my thirties I ‘jocked’ for three different radio stations on Long Island. Then I entered the corporate world, and worked as the Director of Human Resources for Black Enterprise Magazine, Sesame Street, and Madison Square Garden. Recently I retired and I’m beginning a new career as a background actor. I’m starting to get some traction. I’ve been a clubgoer on ‘God Friended Me,’ a juror on ‘Bull,’ a diner on ‘Bull,’ and a Costa Rican underworld gangster on ‘Blacklist.’ In some of the roles I have to pretend like I’m talking. And I know that one day soon a director is going to notice me and give me an actual line of dialogue. Check out this courtroom scene from ‘Shades of Blue.’ That’s Jennifer Lopez right there. And who’s that behind her? That’s right. It’s Leon.”<br /></p>";
"content_raw" = "<p>(3/3) \U201cI ended up getting a full scholarship to SUNY Farmingdale as part of an anti-poverty program. \U00a0And I tell everyone who will listen: \U2018Without Farmingdale, none of this would have been possible.\U2019 \U00a0I\U2019ve been able to do so much in my life. \U00a0I\U2019ve loved it all. \U00a0And I\U2019ve brought passion to everything I do. \U00a0After graduation, I organized a program so disadvantaged black kids could tour historically black colleges in the South. \U00a0In my twenties I ran a youth program to help get kids off the street. \U00a0In my thirties I \U2018jocked\U2019 for three different radio stations on Long Island. \U00a0Then I entered the corporate world, and worked as the Director of Human Resources for Black Enterprise Magazine, Sesame Street, and Madison Square Garden. \U00a0Recently I retired and I\U2019m beginning a new career as a background actor. \U00a0I\U2019m starting to get some traction. \U00a0I\U2019ve been a clubgoer on \U2018God Friended Me,\U2019 a juror on \U2018Bull,\U2019 a diner on \U2018Bull,\U2019 and a Costa Rican underworld gangster on \U2018Blacklist.\U2019 \U00a0In some of the roles I have to pretend like I\U2019m talking. \U00a0And I know that one day soon a director is going to notice me and give me an actual line of dialogue. \U00a0Check out this courtroom scene from \U2018Shades of Blue.\U2019 \U00a0That\U2019s Jennifer Lopez right there. \U00a0And who\U2019s that behind her? \U00a0That\U2019s right. \U00a0It\U2019s Leon.\U201d<br></p>";
"is_current_item" = 1;
"is_root_item" = 1;
post = {
id = 181802120946;
};
}
);
type = photo;
},
{
blog = {
description = "";
name = humansofnewyork;
title = "Humans of New York";
updated = 1547159426;
url = "http://www.humansofnewyork.com/";
uuid = "t:xzDoMr4AblD1cJo2VPtxuA";
};
"blog_name" = humansofnewyork;
"can_like" = 0;
"can_reblog" = 0;
"can_reply" = 0;
"can_send_in_message" = 1;
caption = "<p>(2/3) \U201cMy mother brought me to New York City when I was twelve years old. \U00a0We lived in an area of Long Island called \U2018five towns.\U2019 \U00a0The first four towns were economically mobile. \U00a0But my town was the service community for the other four towns. \U00a0Our parents were the maids and chauffeurs. \U00a0I got myself a newspaper route when I turned thirteen. \U00a0There was one older man on my route who\U2019d always give me a big tip if I could tell him the news. \U00a0So every morning I\U2019d read two newspapers. \U00a0And every night I\U2019d listen to Frankie Crocker on the radio. \U00a0He was \U2018The Black Disc Jockey\U2019 in New York at the time. \U00a0Every night from 4 PM to 8 PM, he\U2019d play \U2018R and B\U2019 on 1600 WWRL , and you were a punk if you missed it. \U00a0One night he announced a contest to choose an honorary DJ. \U00a0I wrote an amazing letter because I listened every day, and I ended up winning. \U00a0I was sixteen years old. \U00a0The prize was supposed to be fifteen minutes on the air, but Crocker was so impressed that he gave me forty-five. \U00a0Before signing off, he asked me what I planned to do after graduating high school. \U00a0I told him: \U2018I\U2019m going to be the next Frankie Crocker!\U2019\U201d<br/></p>";
date = "2019-01-07 10:04:34 GMT";
"display_avatar" = 1;
format = html;
id = 181801345056;
"image_permalink" = "http://www.humansofnewyork.com/image/181801345056";
"is_blocks_post_format" = 0;
"note_count" = 1046;
photos = (
{
"alt_sizes" = (
{
height = 841;
url = "https://66.media.tumblr.com/ad8e4c7670c5a205984bf7c91570cf27/tumblr_pkyhbmB1mf1qggwnvo1_1280.jpg";
width = 1280;
},
{
height = 420;
url = "https://66.media.tumblr.com/ad8e4c7670c5a205984bf7c91570cf27/tumblr_pkyhbmB1mf1qggwnvo1_640.jpg";
width = 640;
},
{
height = 355;
url = "https://66.media.tumblr.com/ad8e4c7670c5a205984bf7c91570cf27/tumblr_pkyhbmB1mf1qggwnvo1_540.jpg";
width = 540;
},
{
height = 328;
url = "https://66.media.tumblr.com/ad8e4c7670c5a205984bf7c91570cf27/tumblr_pkyhbmB1mf1qggwnvo1_500.jpg";
width = 500;
},
{
height = 263;
url = "https://66.media.tumblr.com/ad8e4c7670c5a205984bf7c91570cf27/tumblr_pkyhbmB1mf1qggwnvo1_400.jpg";
width = 400;
},
{
height = 164;
url = "https://66.media.tumblr.com/ad8e4c7670c5a205984bf7c91570cf27/tumblr_pkyhbmB1mf1qggwnvo1_250.jpg";
width = 250;
},
{
height = 66;
url = "https://66.media.tumblr.com/ad8e4c7670c5a205984bf7c91570cf27/tumblr_pkyhbmB1mf1qggwnvo1_100.jpg";
width = 100;
},
{
height = 75;
url = "https://66.media.tumblr.com/ad8e4c7670c5a205984bf7c91570cf27/tumblr_pkyhbmB1mf1qggwnvo1_75sq.jpg";
width = 75;
}
);
caption = "";
"original_size" = {
height = 841;
url = "https://66.media.tumblr.com/ad8e4c7670c5a205984bf7c91570cf27/tumblr_pkyhbmB1mf1qggwnvo1_1280.jpg";
width = 1280;
};
}
);
"post_url" = "http://www.humansofnewyork.com/post/181801345056/23-my-mother-brought-me-to-new-york-city-when";
reblog = {
comment = "<p>(2/3) \U201cMy mother brought me to New York City when I was twelve years old. \U00a0We lived in an area of Long Island called \U2018five towns.\U2019 \U00a0The first four towns were economically mobile. \U00a0But my town was the service community for the other four towns. \U00a0Our parents were the maids and chauffeurs. \U00a0I got myself a newspaper route when I turned thirteen. \U00a0There was one older man on my route who\U2019d always give me a big tip if I could tell him the news. \U00a0So every morning I\U2019d read two newspapers. \U00a0And every night I\U2019d listen to Frankie Crocker on the radio. \U00a0He was \U2018The Black Disc Jockey\U2019 in New York at the time. \U00a0Every night from 4 PM to 8 PM, he\U2019d play \U2018R and B\U2019 on 1600 WWRL , and you were a punk if you missed it. \U00a0One night he announced a contest to choose an honorary DJ. \U00a0I wrote an amazing letter because I listened every day, and I ended up winning. \U00a0I was sixteen years old. \U00a0The prize was supposed to be fifteen minutes on the air, but Crocker was so impressed that he gave me forty-five. \U00a0Before signing off, he asked me what I planned to do after graduating high school. \U00a0I told him: \U2018I\U2019m going to be the next Frankie Crocker!\U2019\U201d<br></p>";
"tree_html" = "";
};
"reblog_key" = PrnCtdgk;
"recommended_color" = "<null>";
"recommended_source" = "<null>";
"short_url" = "https://tmblr.co/ZITdqx2fKD60W";
slug = "23-my-mother-brought-me-to-new-york-city-when";
state = published;
summary = "(2/3) \U201cMy mother brought me to New York City when I was twelve years old. \U00a0We lived in an area of Long Island called \U2018five...";
tags = (
);
timestamp = 1546855474;
trail = (
{
blog = {
active = 1;
"can_be_followed" = 1;
name = humansofnewyork;
"share_following" = 0;
"share_likes" = 0;
theme = {
"avatar_shape" = circle;
"background_color" = "#F6F6F6";
"body_font" = "Helvetica Neue";
"header_bounds" = 0;
"header_image" = "https://assets.tumblr.com/images/default_header/optica_pattern_11.png?_v=4275fa0865b78225d79970023dde05a1";
"header_image_focused" = "https://assets.tumblr.com/images/default_header/optica_pattern_11.png?_v=4275fa0865b78225d79970023dde05a1";
"header_image_scaled" = "https://assets.tumblr.com/images/default_header/optica_pattern_11.png?_v=4275fa0865b78225d79970023dde05a1";
"header_stretch" = 1;
"link_color" = "#529ECC";
"show_avatar" = 1;
"show_description" = 1;
"show_header_image" = 0;
"show_title" = 1;
"title_color" = "#444444";
"title_font" = "Helvetica Neue";
"title_font_weight" = bold;
};
};
content = "<p>(2/3) “My mother brought me to New York City when I was twelve years old. We lived in an area of Long Island called ‘five towns.’ The first four towns were economically mobile. But my town was the service community for the other four towns. Our parents were the maids and chauffeurs. I got myself a newspaper route when I turned thirteen. There was one older man on my route who’d always give me a big tip if I could tell him the news. So every morning I’d read two newspapers. And every night I’d listen to Frankie Crocker on the radio. He was ‘The Black Disc Jockey’ in New York at the time. Every night from 4 PM to 8 PM, he’d play ‘R and B’ on 1600 WWRL , and you were a punk if you missed it. One night he announced a contest to choose an honorary DJ. I wrote an amazing letter because I listened every day, and I ended up winning. I was sixteen years old. The prize was supposed to be fifteen minutes on the air, but Crocker was so impressed that he gave me forty-five. Before signing off, he asked me what I planned to do after graduating high school. I told him: ‘I’m going to be the next Frankie Crocker!’”<br /></p>";
"content_raw" = "<p>(2/3) \U201cMy mother brought me to New York City when I was twelve years old. \U00a0We lived in an area of Long Island called \U2018five towns.\U2019 \U00a0The first four towns were economically mobile. \U00a0But my town was the service community for the other four towns. \U00a0Our parents were the maids and chauffeurs. \U00a0I got myself a newspaper route when I turned thirteen. \U00a0There was one older man on my route who\U2019d always give me a big tip if I could tell him the news. \U00a0So every morning I\U2019d read two newspapers. \U00a0And every night I\U2019d listen to Frankie Crocker on the radio. \U00a0He was \U2018The Black Disc Jockey\U2019 in New York at the time. \U00a0Every night from 4 PM to 8 PM, he\U2019d play \U2018R and B\U2019 on 1600 WWRL , and you were a punk if you missed it. \U00a0One night he announced a contest to choose an honorary DJ. \U00a0I wrote an amazing letter because I listened every day, and I ended up winning. \U00a0I was sixteen years old. \U00a0The prize was supposed to be fifteen minutes on the air, but Crocker was so impressed that he gave me forty-five. \U00a0Before signing off, he asked me what I planned to do after graduating high school. \U00a0I told him: \U2018I\U2019m going to be the next Frankie Crocker!\U2019\U201d<br></p>";
"is_current_item" = 1;
"is_root_item" = 1;
post = {
id = 181801345056;
};
}
);
type = photo;
},
{
blog = {
description = "";
name = humansofnewyork;
title = "Humans of New York";
updated = 1547159426;
url = "http://www.humansofnewyork.com/";
uuid = "t:xzDoMr4AblD1cJo2VPtxuA";
};
"blog_name" = humansofnewyork;
"can_like" = 0;
"can_reblog" = 0;
"can_reply" = 0;
"can_send_in_message" = 1;
caption = "<p>(1/3) \U201cI grew up in segregated Suffolk, Virginia in the 1950\U2019s. \U00a0My elementary school had two rooms, two black teachers, and six grades. \U00a0I could never go downtown and shop in the stores. \U00a0I could never go to the movies. \U00a0I could never swim in the local swimming pool. \U00a0But we never cared about that stuff because we had a creek behind our house, and we didn\U2019t have money for movies anyway. \U00a0My mother never let us accept the fact that we were poor. \U00a0There were seven of us, but we always wore shoes, not sneakers. \U00a0Mom wasn\U2019t exactly the \U2018lovey-dovey\U2019 type. \U00a0She never used a switch on us, but she loved to use an example. \U00a0Every action in our house had an equal and opposite reaction. \U00a0In 1964 the World\U2019s Fair came to town, and my high school band was invited to give a concert for the governor. \U00a0My mother gave me money to take my uniform to the cleaners. \U00a0But I never did it. \U00a0And she never let me go to that concert. \U00a0Before she died I drove her to the hospital, and I told her: \U2018I\U2019m still mad at you for not letting me go to the World\U2019s Fair.\U2019 \U00a0She didn\U2019t answer me, but she had this gleam in her eye that said: \U2018You learned your lesson.\U2019 \U00a0And she\U2019s right. \U00a0Those examples made me the man I am today. \U00a0I\U2019ve literally done everything I wanted to do as a kid. \U00a0I may not have been to the World\U2019s Fair, but I\U2019ve been to Ghana. \U00a0I\U2019ve been to the Caribbean. \U00a0I\U2019ve travelled all over the world.\U201d<br/></p>";
date = "2019-01-06 22:00:42 GMT";
"display_avatar" = 1;
format = html;
id = 181783682041;
"image_permalink" = "http://www.humansofnewyork.com/image/181783682041";
"is_blocks_post_format" = 0;
"note_count" = 1799;
photos = (
{
"alt_sizes" = (
{
height = 844;
url = "https://66.media.tumblr.com/9a8a96f386c58f5ba0579629b633fdfd/tumblr_pkxjt6FCr31qggwnvo1_1280.jpg";
width = 1280;
},
{
height = 422;
url = "https://66.media.tumblr.com/9a8a96f386c58f5ba0579629b633fdfd/tumblr_pkxjt6FCr31qggwnvo1_640.jpg";
width = 640;
},
{
height = 356;
url = "https://66.media.tumblr.com/9a8a96f386c58f5ba0579629b633fdfd/tumblr_pkxjt6FCr31qggwnvo1_540.jpg";
width = 540;
},
{
height = 330;
url = "https://66.media.tumblr.com/9a8a96f386c58f5ba0579629b633fdfd/tumblr_pkxjt6FCr31qggwnvo1_500.jpg";
width = 500;
},
{
height = 264;
url = "https://66.media.tumblr.com/9a8a96f386c58f5ba0579629b633fdfd/tumblr_pkxjt6FCr31qggwnvo1_400.jpg";
width = 400;
},
{
height = 165;
url = "https://66.media.tumblr.com/9a8a96f386c58f5ba0579629b633fdfd/tumblr_pkxjt6FCr31qggwnvo1_250.jpg";
width = 250;
},
{
height = 66;
url = "https://66.media.tumblr.com/9a8a96f386c58f5ba0579629b633fdfd/tumblr_pkxjt6FCr31qggwnvo1_100.jpg";
width = 100;
},
{
height = 75;
url = "https://66.media.tumblr.com/9a8a96f386c58f5ba0579629b633fdfd/tumblr_pkxjt6FCr31qggwnvo1_75sq.jpg";
width = 75;
}
);
caption = "";
"original_size" = {
height = 844;
url = "https://66.media.tumblr.com/9a8a96f386c58f5ba0579629b633fdfd/tumblr_pkxjt6FCr31qggwnvo1_1280.jpg";
width = 1280;
};
}
);
"post_url" = "http://www.humansofnewyork.com/post/181783682041/13-i-grew-up-in-segregated-suffolk-virginia";
reblog = {
comment = "<p>(1/3) \U201cI grew up in segregated Suffolk, Virginia in the 1950\U2019s. \U00a0My elementary school had two rooms, two black teachers, and six grades. \U00a0I could never go downtown and shop in the stores. \U00a0I could never go to the movies. \U00a0I could never swim in the local swimming pool. \U00a0But we never cared about that stuff because we had a creek behind our house, and we didn\U2019t have money for movies anyway. \U00a0My mother never let us accept the fact that we were poor. \U00a0There were seven of us, but we always wore shoes, not sneakers. \U00a0Mom wasn\U2019t exactly the \U2018lovey-dovey\U2019 type. \U00a0She never used a switch on us, but she loved to use an example. \U00a0Every action in our house had an equal and opposite reaction. \U00a0In 1964 the World\U2019s Fair came to town, and my high school band was invited to give a concert for the governor. \U00a0My mother gave me money to take my uniform to the cleaners. \U00a0But I never did it. \U00a0And she never let me go to that concert. \U00a0Before she died I drove her to the hospital, and I told her: \U2018I\U2019m still mad at you for not letting me go to the World\U2019s Fair.\U2019 \U00a0She didn\U2019t answer me, but she had this gleam in her eye that said: \U2018You learned your lesson.\U2019 \U00a0And she\U2019s right. \U00a0Those examples made me the man I am today. \U00a0I\U2019ve literally done everything I wanted to do as a kid. \U00a0I may not have been to the World\U2019s Fair, but I\U2019ve been to Ghana. \U00a0I\U2019ve been to the Caribbean. \U00a0I\U2019ve travelled all over the world.\U201d<br></p>";
"tree_html" = "";
};
"reblog_key" = 8Lo07YRt;
"recommended_color" = "<null>";
"recommended_source" = "<null>";
"short_url" = "https://tmblr.co/ZITdqx2fJ9jlv";
slug = "13-i-grew-up-in-segregated-suffolk-virginia";
state = published;
summary = "(1/3) \U201cI grew up in segregated Suffolk, Virginia in the 1950\U2019s. \U00a0My elementary school had two rooms, two black teachers, and six...";
tags = (
);
timestamp = 1546812042;
trail = (
{
blog = {
active = 1;
"can_be_followed" = 1;
name = humansofnewyork;
"share_following" = 0;
"share_likes" = 0;
theme = {
"avatar_shape" = circle;
"background_color" = "#F6F6F6";
"body_font" = "Helvetica Neue";
"header_bounds" = 0;
"header_image" = "https://assets.tumblr.com/images/default_header/optica_pattern_11.png?_v=4275fa0865b78225d79970023dde05a1";
"header_image_focused" = "https://assets.tumblr.com/images/default_header/optica_pattern_11.png?_v=4275fa0865b78225d79970023dde05a1";
"header_image_scaled" = "https://assets.tumblr.com/images/default_header/optica_pattern_11.png?_v=4275fa0865b78225d79970023dde05a1";
"header_stretch" = 1;
"link_color" = "#529ECC";
"show_avatar" = 1;
"show_description" = 1;
"show_header_image" = 0;
"show_title" = 1;
"title_color" = "#444444";
"title_font" = "Helvetica Neue";
"title_font_weight" = bold;
};
};
content = "<p>(1/3) “I grew up in segregated Suffolk, Virginia in the 1950’s. My elementary school had two rooms, two black teachers, and six grades. I could never go downtown and shop in the stores. I could never go to the movies. I could never swim in the local swimming pool. But we never cared about that stuff because we had a creek behind our house, and we didn’t have money for movies anyway. My mother never let us accept the fact that we were poor. There were seven of us, but we always wore shoes, not sneakers. Mom wasn’t exactly the ‘lovey-dovey’ type. She never used a switch on us, but she loved to use an example. Every action in our house had an equal and opposite reaction. In 1964 the World’s Fair came to town, and my high school band was invited to give a concert for the governor. My mother gave me money to take my uniform to the cleaners. But I never did it. And she never let me go to that concert. Before she died I drove her to the hospital, and I told her: ‘I’m still mad at you for not letting me go to the World’s Fair.’ She didn’t answer me, but she had this gleam in her eye that said: ‘You learned your lesson.’ And she’s right. Those examples made me the man I am today. I’ve literally done everything I wanted to do as a kid. I may not have been to the World’s Fair, but I’ve been to Ghana. I’ve been to the Caribbean. I’ve travelled all over the world.”<br /></p>";
"content_raw" = "<p>(1/3) \U201cI grew up in segregated Suffolk, Virginia in the 1950\U2019s. \U00a0My elementary school had two rooms, two black teachers, and six grades. \U00a0I could never go downtown and shop in the stores. \U00a0I could never go to the movies. \U00a0I could never swim in the local swimming pool. \U00a0But we never cared about that stuff because we had a creek behind our house, and we didn\U2019t have money for movies anyway. \U00a0My mother never let us accept the fact that we were poor. \U00a0There were seven of us, but we always wore shoes, not sneakers. \U00a0Mom wasn\U2019t exactly the \U2018lovey-dovey\U2019 type. \U00a0She never used a switch on us, but she loved to use an example. \U00a0Every action in our house had an equal and opposite reaction. \U00a0In 1964 the World\U2019s Fair came to town, and my high school band was invited to give a concert for the governor. \U00a0My mother gave me money to take my uniform to the cleaners. \U00a0But I never did it. \U00a0And she never let me go to that concert. \U00a0Before she died I drove her to the hospital, and I told her: \U2018I\U2019m still mad at you for not letting me go to the World\U2019s Fair.\U2019 \U00a0She didn\U2019t answer me, but she had this gleam in her eye that said: \U2018You learned your lesson.\U2019 \U00a0And she\U2019s right. \U00a0Those examples made me the man I am today. \U00a0I\U2019ve literally done everything I wanted to do as a kid. \U00a0I may not have been to the World\U2019s Fair, but I\U2019ve been to Ghana. \U00a0I\U2019ve been to the Caribbean. \U00a0I\U2019ve travelled all over the world.\U201d<br></p>";
"is_current_item" = 1;
"is_root_item" = 1;
post = {
id = 181783682041;
};
}
);
type = photo;
},
{
blog = {
description = "";
name = humansofnewyork;
title = "Humans of New York";
updated = 1547159426;
url = "http://www.humansofnewyork.com/";
uuid = "t:xzDoMr4AblD1cJo2VPtxuA";
};
"blog_name" = humansofnewyork;
"can_like" = 0;
"can_reblog" = 0;
"can_reply" = 0;
"can_send_in_message" = 1;
caption = "<p>\U201cI got a Degree In The Written Arts, which is the most pretentious way of saying \U2018English\U2019 that my school could think of. \U00a0Two internships later, I\U2019m still working at a restaurant. \U00a0I finally had an actual job interview last week. \U00a0The website said \U2018big marketing firm,\U2019 but the whole office fit in a closet. \U00a0Then I found out the job was \U2018commission only.\U2019 \U00a0So I\U2019m beginning to doubt that there\U2019s a palpable job market in The Written Arts. \U00a0And I\U2019m going to be paying off this education for the next ten years. \U00a0I\U2019m bracing for the worst. \U00a0I feel like somebody who just realized that global warming is actually a thing. \U00a0It doesn\U2019t help that my entire apartment is falling apart. \U00a0Our fridge broke down last week and we lost $120 worth of food. \U00a0Now my roommates are mad at me because I fumbled the negotiation with our landlord. \U00a0And to top it all off, my toilet overflowed this morning, with absolutely nothing to deserve it. \U00a0I just called my Mom for advice. \U00a0She recommended that I take a walk. \U00a0I was hoping she\U2019d tell me that the water would go back in the toilet. \U00a0Either literally or metaphorically.\U201d<br/><br/><br/></p>";
date = "2019-01-04 20:43:15 GMT";
"display_avatar" = 1;
format = html;
id = 181717454536;
"image_permalink" = "http://www.humansofnewyork.com/image/181717454536";
"is_blocks_post_format" = 0;
"note_count" = 1793;
photos = (
{
"alt_sizes" = (
{
height = 839;
url = "https://66.media.tumblr.com/d1639b32f15c4c5e9aaf3064b3df94a7/tumblr_pktqw3EqFW1qggwnvo1_1280.jpg";
width = 1280;
},
{
height = 420;
url = "https://66.media.tumblr.com/d1639b32f15c4c5e9aaf3064b3df94a7/tumblr_pktqw3EqFW1qggwnvo1_640.jpg";
width = 640;
},
{
height = 354;
url = "https://66.media.tumblr.com/d1639b32f15c4c5e9aaf3064b3df94a7/tumblr_pktqw3EqFW1qggwnvo1_540.jpg";
width = 540;
},
{
height = 328;
url = "https://66.media.tumblr.com/d1639b32f15c4c5e9aaf3064b3df94a7/tumblr_pktqw3EqFW1qggwnvo1_500.jpg";
width = 500;
},
{
height = 262;
url = "https://66.media.tumblr.com/d1639b32f15c4c5e9aaf3064b3df94a7/tumblr_pktqw3EqFW1qggwnvo1_400.jpg";
width = 400;
},
{
height = 164;
url = "https://66.media.tumblr.com/d1639b32f15c4c5e9aaf3064b3df94a7/tumblr_pktqw3EqFW1qggwnvo1_250.jpg";
width = 250;
},
{
height = 66;
url = "https://66.media.tumblr.com/d1639b32f15c4c5e9aaf3064b3df94a7/tumblr_pktqw3EqFW1qggwnvo1_100.jpg";
width = 100;
},
{
height = 75;
url = "https://66.media.tumblr.com/d1639b32f15c4c5e9aaf3064b3df94a7/tumblr_pktqw3EqFW1qggwnvo1_75sq.jpg";
width = 75;
}
);
caption = "";
"original_size" = {
height = 839;
url = "https://66.media.tumblr.com/d1639b32f15c4c5e9aaf3064b3df94a7/tumblr_pktqw3EqFW1qggwnvo1_1280.jpg";
width = 1280;
};
}
);
"post_url" = "http://www.humansofnewyork.com/post/181717454536/i-got-a-degree-in-the-written-arts-which-is-the";
reblog = {
comment = "<p>\U201cI got a Degree In The Written Arts, which is the most pretentious way of saying \U2018English\U2019 that my school could think of. \U00a0Two internships later, I\U2019m still working at a restaurant. \U00a0I finally had an actual job interview last week. \U00a0The website said \U2018big marketing firm,\U2019 but the whole office fit in a closet. \U00a0Then I found out the job was \U2018commission only.\U2019 \U00a0So I\U2019m beginning to doubt that there\U2019s a palpable job market in The Written Arts. \U00a0And I\U2019m going to be paying off this education for the next ten years. \U00a0I\U2019m bracing for the worst. \U00a0I feel like somebody who just realized that global warming is actually a thing. \U00a0It doesn\U2019t help that my entire apartment is falling apart. \U00a0Our fridge broke down last week and we lost $120 worth of food. \U00a0Now my roommates are mad at me because I fumbled the negotiation with our landlord. \U00a0And to top it all off, my toilet overflowed this morning, with absolutely nothing to deserve it. \U00a0I just called my Mom for advice. \U00a0She recommended that I take a walk. \U00a0I was hoping she\U2019d tell me that the water would go back in the toilet. \U00a0Either literally or metaphorically.\U201d<br><br><br></p>";
"tree_html" = "";
};
"reblog_key" = eCYY9WAM;