-
Notifications
You must be signed in to change notification settings - Fork 0
/
repomix-output.txt
4120 lines (3556 loc) · 150 KB
/
repomix-output.txt
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
This file is a merged representation of the entire codebase, combining all repository files into a single document.
Generated by Repomix on: 2024-11-22T14:09:19.494Z
================================================================
File Summary
================================================================
Purpose:
--------
This file contains a packed representation of the entire repository's contents.
It is designed to be easily consumable by AI systems for analysis, code review,
or other automated processes.
File Format:
------------
The content is organized as follows:
1. This summary section
2. Repository information
3. Repository structure
4. Multiple file entries, each consisting of:
a. A separator line (================)
b. The file path (File: path/to/file)
c. Another separator line
d. The full contents of the file
e. A blank line
Usage Guidelines:
-----------------
- This file should be treated as read-only. Any changes should be made to the
original repository files, not this packed version.
- When processing this file, use the file path to distinguish
between different files in the repository.
- Be aware that this file may contain sensitive information. Handle it with
the same level of security as you would the original repository.
Notes:
------
- Some files may have been excluded based on .gitignore rules and Repomix's
configuration.
- Binary files are not included in this packed representation. Please refer to
the Repository Structure section for a complete list of file paths, including
binary files.
Additional Info:
----------------
For more information about Repomix, visit: https://github.com/yamadashy/repomix
================================================================
Repository Structure
================================================================
_data/
portfolio_old.json
portfolio.yaml
reading.yaml
writing.yaml
_includes/
footer.html
head.html
project-info.html
scripts.html
_layouts/
base.html
post.html
project.html
reading.html
_sass/
_easter-egg.scss
_home.scss
_hover.scss
_mq.scss
_navigation.scss
_project.scss
_reading.scss
_variables.scss
_writing.scss
.github/
workflows/
jekyll.yml
jekyll2.yml
img/
accent.svg
external-link.svg
js/
main.js
project/
aint-no-sunshine.html
anonymous-was-a-woman.html
baudelaire.md
blurr.html
broadway-bites.html
device-reimagined.html
fine-art.html
human-ventures.html
instruments.html
museum.md
one-grid.html
pm-home.html
posters.html
sixties.html
tastemakers.html
transforming-medicine.html
wellthy.html
reading/
reading.html
writing/
reading-advice.md
writing.html
_config_local.yml
_config.yml
.gitignore
about.html
CNAME
Gemfile
Gemfile.lock
index.html
main.scss
README.md
resume.md
================================================================
Repository Files
================================================================
================
File: _data/portfolio_old.json
================
[
{
"title": "Kleo",
"description": "Personalized tours in the Harvard Art Museums",
"img": "/img/small/museum.png",
"url": "museum.html",
"featured": "true",
"category": "Experience Design",
"date": "Sep 2016–May 2017",
"role": "Undergraduate thesis",
"site": "<a href='https://invis.io/VB9OO63AY#/210571241_Home'>InVision Prototype</a>",
"show": "true"
},
{
"title": "Anonymous Was A Woman",
"description": "Social campaign about bias",
"img": "/img/small/awaw.jpg",
"url": "anonymous-was-a-woman.html",
"category": "Graphic design",
"date": "Fall 2015",
"role": "Student work for Graphic Design 2",
"site": "<a href='http://causeinform.com'>causeinform.com</a>",
"show": "true"
},
{
"title": "Project Home",
"description": "Internal project management tool",
"img": "/img/small/pm-home.png",
"url": "pm-home.html",
"category": "Product Design",
"date": "Spring 2016",
"role": "Design Apprentice at <a href='http://upstatement.com'>Upstatement</a>",
"show": "true"
},
{
"title": "Broadway Bites",
"description": "NYC food market table",
"img": "/img/small/bway.jpg",
"url": "broadway-bites.html",
"category": "Packaging",
"date": "Summer 2014",
"role": "Design Intern at <a href='http://thetinyrebels.com'>Tiny Rebels</a>",
"site": "<a href='http://urbanspacenyc.com/broadway-bites'>broadwaybites.com</a>",
"show": "true"
},
{
"title": "Baudelaire",
"description": "Typeface design",
"img": "/img/small/baudelaire.png",
"url": "baudelaire.html",
"category": "Type design",
"date": "Fall 2016",
"role": "Student work under <a href='http://www.atypeprimer.com/'>John Kane</a>",
"show": "true",
"featured": "true"
},
{
"title": "Wellthy",
"description": "Healthcare application UI/UX",
"img": "/img/small/wellthy.jpg",
"url": "wellthy.html",
"category": "UI/UX",
"date": "May 2015",
"role": "Design Co-op at <a href='http://ronikdesign.com'>Ronik Design</a>",
"site": "<a href='http://wellthy.com'>wellthy.com</a>"
},
{
"title": "Human Ventures",
"description": "Venture capitalist landing page",
"img": "/img/small/hvc.jpg",
"url": "human-ventures.html",
"category": "Branding, Website, Motion",
"date": "Feb 2015",
"role": "Design Co-op at <a href='http://ronikdesign.com'>Ronik Design</a>",
"site": "<a href='http://humanventures.co'>humanventures.co</a>"
},
{
"title": "Blurr",
"description": "Location based photo sharing app",
"img": "/img/small/blurr.jpg",
"url": "blurr.html",
"featured": "true",
"category": "Branding, UI/UX",
"date": "Fall 2015",
"role": "Design Lead at <a href='http://neu.edu/scout'>Scout</a>",
"site": "<a href='http://yourblurr.com'>yourblurr.com</a>"
},
{
"title": "Transforming Medicine",
"description": "Nonprofit branding and website",
"img": "/img/small/tmed.jpg",
"url": "transforming-medicine.html",
"category": "Branding, Website",
"date": "Jan 2015",
"role": "Design Co-op at <a href='http://ronikdesign.com'>Ronik Design</a>",
"site": "<a href='http://transformingmedicine.com'>transformingmedicine.com</a>"
},
{
"title": "Tastemakers Magazine",
"description": "Music magazine art direction",
"img": "/img/small/tastemakers.jpg",
"url": "tastemakers.html",
"category": "Editorial design",
"date": "2013–2016",
"role": "Art Director",
"site": "<a href='http://tastemakersmag.com'>tastemakersmag.com</a>",
"show": "true"
}
]
================
File: _data/portfolio.yaml
================
- title: PandaPlayer
description: A Mac Pandora player/app built in swift<sup>6</sup>
url: https://github.com/plyght/pandaplayer
show: true
external: true
id: desktop
- title: getloop.dev
description: A fanmade project website for Loop WM
url: https://getloop-dev.vercel.app
show: true
external: true
id: cli
================
File: _data/reading.yaml
================
---
# TEMPLATE
# - title: title
# url: title-title
# place: in
# book_img: url
# date: 0/0/2021
# description: TODO
# highlights:
# - TODO
- title: Cultish
url: cultish
place: in Puglia, Italy
book_img: https://kbimages1-a.akamaihd.net/515d683d-3179-472b-875f-0d8b9be86e3e/353/569/90/False/cultish-1.jpg
pic_img: /img/reading/puglia2.jpeg
date: 9/29/2021
description: This is one of those books that will stay with me a long time because it gave me a new framework through which to see the world. I'm also very happy it introduced me to the phrase "heuristic reaction." I love words. I love language. I love understanding how language shapes who we are and how we move through the world together.
highlights:
- With words, we breathe reality into being.
- They were raised to see the good in people, even to their own detriment.
- In this way, it’s not desperation or mental illness that consistently suckers people into exploitative groups—instead, it’s an overabundance of optimism.
- title: Writers & Lovers
url: writers-lovers
place: in Puglia, Italy
pic_img: /img/reading/puglia1.jpeg
book_img: https://images-na.ssl-images-amazon.com/images/I/81r-DyNOJtL.jpg
date: 9/24/2021
description: I'm a little embarrassed to admit that this book made me want to become a writer. Maybe it was the almost saccharine happy ending, or maybe I read it in the first place because that life already sounds romantic to me.
- title: Beautiful World, Where Are You
url: beautiful-world
place: in Amsterdam
pic_img: /img/reading/amsterdam2.jpeg
book_img: https://i2.wp.com/www.paperbackparis.com/wp-content/uploads/2021/04/Sally-Rooney-Beautiful-World-Where-Are-You-Cover.jpg?resize=1000%2C1529
date: 9/9/2021
description: I wasn't sure for a while, but after this I've decided I like Sally Rooney's writing. Its sparseness has a way of sucking you in. It's blunt and specific. Her pontificating is very thinly veiled, but so is a lot of literature. When she gets poetic, it's surprisingly magnetic.
highlights:
- The fact that we are exposed to these people everywhere in our culture, as if they are not only normal but attractive and enviable, indicates the extent of our disfiguring social disease. There is something wrong with them, and when we look at them and learn from them, something goes wrong with us.
- What if the meaning of life on earth is not eternal progress toward some unspecified goal—the engineering and production of more and more powerful technologies, the development of more and more complex and abstruse cultural forms? What if these things just rise and recede naturally, like tides, while the meaning of life remains the same always—just to live and be with other people?
- title: The Hole
url: the-hole
place: in Brooklyn, NY
book_img: https://images-na.ssl-images-amazon.com/images/I/81QqaYhf4XL.jpg
pic_img: /img/reading/brooklyn.jpeg
date: 8/25/2021
description: This was short and weird. I liked it. It wasn't what I was expecting.
- title: The Case Against Free Speech
url: free-speech
place: on the New York City subway
pic_img: /img/reading/subway.jpeg
book_img: https://www.boldtypebooks.com/wp-content/uploads/2019/07/9781568588667-1.jpg?fit=436%2C675
date: 8/6/2021
description: P. E. Moskowitz is one of my favorite journalists right now, and reading this book solidified that for me.
highlights:
- We don’t need to look very far back to know that free speech is a conditional freedom in this country, and that those conditions are nearly always defined by those in power.
- If we are debating the free speech rights of people like Milo, whom are we ignoring? What about the free speech rights of the people he is recommending we deport or imprison?
- What is and is not free speech is in the eye of the beholder.
- title: The Midnight Library
url: midnight-library
place: at home
book_img: https://images-na.ssl-images-amazon.com/images/I/81YzHKeWq7L.jpg
date: 6/28/2021
description: This was sweet and an easy read, but a little too on the nose and cheesy for me.
- title: Sarahland
url: sarahland
place: in Sea Ranch, CA
book_img: https://www.grandcentralpublishing.com/wp-content/uploads/2021/01/9781538735053.jpg?fit=1721%2C2600
pic_img: /img/reading/sea-ranch.jpeg
date: 5/25/2021
description: Yet another funny surrealist short story collection! I'm consistent, I loved it! Each story stars a woman named Sarah, from a freshman in college, to a sex worker, to the first Sarah.
highlights:
- Probably he talked shit about sex workers and voted Republican, which made Sarah sad to think about because besides probably wanting all women dead, he seemed really sweet.
- It was amazing, Sarah felt, how whole worlds existed right beside or within the world you thought you were in.
- title: Death In Her Hands
url: death-in-her-hands
place: in quarantine
book_img: https://images-na.ssl-images-amazon.com/images/I/71Da9RYuSaL.jpg
pic_img: /img/reading/coyote.jpeg
date: 4/9/2021
description: The more Otessa Moshfegh I read, the more I love her writing. This one didn't get as much attention as My Year of Rest and Relaxation, but I liked it more. The mystery and deeply unreliable narrator were more up my alley.
highlights:
- The mind must be spoken to, Vesta, otherwise it starts to atrophy. ... "But if the mind talks to itself," I said, "isn't it just saying what it wants to hear?"
- title: Luster
url: luster
place: in quarantine
book_img: https://images-na.ssl-images-amazon.com/images/I/91h5gTluEVL.jpg
date: 4/5/2021
highlights:
- His joy is raw in a way that makes me feel like I can unzip my skin suit and show him all the ooze inside. But not yet. There is a sadness about his fervor, the way it feels slightly put on, as if he has something to prove.
- A woman so unthreatened by all of New York's women that she has given this nubile horde a wholesale blessing to fuck her husband.
- I have come to the part of the night where I am incapable of any uppercase emotion, and every circuit responsible for my cellular regeneration has begun to smoke.
- title: What Tech Calls Thinking
url: what-tech-calls-thinking
place: in quarantine
book_img: https://images-na.ssl-images-amazon.com/images/I/71sUfgG9cuL.jpg
pic_img: /img/reading/sf.jpeg
date: 01/18/2021
description: This put into words so much of what I've felt about the tech world. I've always observed the tech world has very little interest in the past, and this does a good job tracing back all the platitudes everyone repeats and holds.
highlights:
- It describes our tendency to think that the meaning of a work of art comes out of the specific mind of the creator, not out of the preexisting rules that creator worked within nor the broader spirit of society and time.
- The genius aesthetic that rules the tech industry relies again and again on this purely gestural kind of courage, on hyping everyday things into grand acts of nonconformism and even resistance. You repeat what people around you are saying anyway and get to call yourself a freethinker.
- The rhetoric of disruption relies on actively misunderstanding and misrepresenting the past.
- title: I Want to Be Where the Normal People Are
url: where-the-normal-people-are
place: in Cambria, in quarantine
book_img: https://images-na.ssl-images-amazon.com/images/I/81-ODGDf1aL.jpg
pic_img: /img/reading/cambria.jpeg
date: 12/22/2020
description: I love Rachel Bloom, and I loved listening to her read her own book.
- title: Such A Fun Age
url: such-a-fun-age
place: at Buena Vista Park, in quarantine
book_img: https://images-na.ssl-images-amazon.com/images/I/91TwkWWSsiL.jpg
pic_img: /img/reading/gravestone.jpg
date: 12/19/2020
description: I can't wait for Reese Witherspoon to star in this once she adapts it as a Hulu series. I liked the book enough, but I'm not sure if I mean that as a compliment.
# OLD
- title: The Crying Book
url: the-crying-book
place: on Long Island, in quarantine
book_img: https://images-na.ssl-images-amazon.com/images/I/91elh2ixGIL.jpg
pic_img: /img/reading/old-bethpage.jpeg
date: 08/30/2020
description: It took me a while to read this. I finished it when I visited home to see my grandma before she passed away. The timing is appropriate, I suppose.
highlights:
- If you see a person crying inside a car, you know they are already held.
- Empathy can be a hole through which one falls into despair.
- title: How To Change Your Mind
url: how-to-change-your-mind
place: for book club, in quarantine
book_img: https://images-na.ssl-images-amazon.com/images/I/81z1rs6gVlL.jpg
date: 06/19/2020
description: The amount I talk about and recommend this book now is very annoying. You've been warned.
highlights:
- People feel they have been let in on a deep secret of the universe, and they cannot be shaken from that conviction.
- And then there was this light, it was the pure light of love and divinity, and it was with me and no words were needed.
- title: Calypso
url: calypso
place: in quarantine
book_img: https://m.media-amazon.com/images/I/91OkwfIyhTL.jpg
date: 04/25/2020
description: I need to read more David Sedaris! I listened to the audiobook and it was funny and necessary.
- title: Bluets
url: bluets
place: at Buena Vista Park, in quarantine
pic_img: /img/reading/buena-vista3.JPG
book_img: https://images-na.ssl-images-amazon.com/images/I/61fDEge2TzL.jpg
date: 03/22/2020
description: I discovered a love of prose poetry and this kicked off a phase of learning Joni Mitchell on the piano (including Blue, of course).
highlights:
- Do not, however, make the mistake that all desire is yearning.
- At the bottom of the swimming pool, I watched the white winter light spangle the cloudy blue and I knew together they made God.
- At times I fake my enthusiasm. At others, I fear I am incapable of communicating the depth of it.
- title: Little Fires Everywhere
url: little-fires-everywhere
place: in quarantine
pic_img: /img/reading/living-room.jpg
book_img: https://images-na.ssl-images-amazon.com/images/I/91twTG-CQ8L.jpg
date: 03/20/2020
description: I'll be honest, I started the TV show and then couldn't wait for more episodes so I read the book in 2 days.
highlights:
- Mia realized that she was crossing into a place she would have to go alone.
- A lifetime of practical and comfortable considerations settled atop the spark inside her like a thick, heavy blanket.
- title: Trick Mirror
url: trick-mirror
place: for book club
pic_img: /img/reading/couch-kindle.jpg
book_img: https://images-na.ssl-images-amazon.com/images/I/81M7D39GAWL.jpg
date: 03/17/2020
description: I really liked Tolentino's essays, but I almost already agreed with them so much that I found reading this kind of boring?
highlights:
- Writing is either a way to shed my self-delusions or a way to develop them. A well-practiced, conclusive narrative is usually a dubious one.
- title: Maybe You Should Talk To Someone
url: maybe-you-should-talk-to-someone
place: for book club
book_img: https://images-na.ssl-images-amazon.com/images/I/81k9Uam6RLL.jpg
date: 02/13/2020
description: I'd recommend this to anyone considering therapy but feeling apprehensive about it.
highlights:
- Maybe happiness is sometimes.
- Instead of leaning into the goodness that comes their way, they become hypervigilant, always waiting for something to go wrong.
- title: Homesick For Another World
url: home-sick-for-another-world
place: at Matching Half
book_img: https://images-na.ssl-images-amazon.com/images/I/81LqR8BogoL.jpg
date: 01/24/2020
description: I started this a few years ago and I finally picked it back up and finished it. I think I didn't get Moshfegh's writing at first, but after I read My Year Of Rest And Relaxation I understood her work better. It's brutally honest and darkly funny (...like many books on here)
highlights:
- I hated my boyfriend but I liked the neighborhood.
- title: The Immortalists
url: the-immortalists
place: for book club
book_img: https://images-na.ssl-images-amazon.com/images/I/91X4ZCruKNL.jpg
date: 11/17/2019
highlights:
- Judaism had taught her to keep running, no matter who tried to hold her hostage. It had taught her to create her own opportunities, to turn rock into water and water to blood. It had taught her that such things were possible.
- Something is pulling her back to the person she’s been all along.
- title: In The Dream House
url: in-the-dream-house
place: at Home
book_img: https://images-na.ssl-images-amazon.com/images/I/91zeicdP-gL.jpg
date: 11/06/2019
description: Carmen Maria Machado is my favorite author right now and I was so excited
to read this memoir. She puts words to the felt but unspoken like no other. She
brings to light how unproductive archetypes of traumatic experiences can be, and
how the subtleties of the less extreme ones can fall through the cracks.
highlights:
- I toss the stone of my story into a vast crevice; measure the emptiness by its small sound.
- The nature of archival silence is that certain people's narratives and their nuances are swallowed by history; we see only what pokes through because it is sufficiently salacious for the majority to pay attention.
- title: How To Do Nothing
url: how-to-do-nothing
place: at The Panhandle
book_img: https://d7hftxdivxxvm.cloudfront.net/?resize_to=width&src=https%3A%2F%2Fartsy-media-uploads.s3.amazonaws.com%2FJKrqKfh6_jbE0yciUKrUeQ%252FHTDN%2Bfinal.jpg&width=1200&quality=80
pic_img: img/reading/panhandle.jpeg
date: 11/03/2019
description: This crystalized so many things I've been feeling and thinking lately.
What I actually have to say about this book needs much more than a little blurb
here. This presents a reframing on our lives today that we'd all benefit from
reflecting on. It also inspired me to start learning the trees around San Francisco,
particularly at the park I mostly read this book in.
highlights:
- Yet we inhabit a culture that privileges novelty and growth over the cyclical and the regenerative. Our very idea of productivity is premised on the idea of producing something new, whereas we do not tend to see maintenance and care as productive in the same way.
- title: 'Super Pumped: The Battle for Uber'
url: super-pumped
place: at Home
book_img: https://images-na.ssl-images-amazon.com/images/I/71sXxANtN9L.jpg
date: 09/12/2019
highlights:
- It is the story of the ugly decisions made around user data and personal information as technology firms seek to exploit consumer data. But most of all, it is a story about how blind worship of startup founders can go wildly wrong, and a cautionary tale that ends in spectacular disaster.
- title: Normal People
url: normal-people
place: in Portland, OR
book_img: https://images-na.ssl-images-amazon.com/images/I/71wD4yYUqyL.jpg
date: 09/18/2019
description: This was a really sweet, easy read.
highlights: Marianne had the sense that her real life was happening somewhere very
far away, happening without her, and she didn’t know if she would ever find out
where it was and become part of it.
- title: Severance
url: severance
place: in Seattle, WA
book_img: https://images-na.ssl-images-amazon.com/images/I/81A9dFqIEEL.jpg
pic_img: img/reading/seattle.jpeg
date: 09/01/2019
description: This is a story about the apocalypse, but it is much more a story about
our routines and how they form us.
highlights: To live in a city is to live the life that it was built for, to adapt
to its schedule and rhythms, to move within the transit layout made for you during
the morning and evening rush, winding through the crowds of fellow commuters.
To live in a city is to consume its offerings. To eat at its restaurants. To drink
at its bars. To shop at its stores. To pay its sales taxes. To give a dollar to
its homeless.
- title: The Fifth Risk
url: fifth-risk
place: at Dolores Park
book_img: https://images-na.ssl-images-amazon.com/images/I/711-RtRYAXL.jpg
date: 07/03/2019
description: This made me appreciate good government even more than I already do.
It was also horrifying for that same reason.
highlights:
- We don’t really celebrate the accomplishments of government employees. They exist in our society to take the blame.
- title: Bad Blood
url: bad-blood
place: during the Tour Du Mont Blanc
book_img: https://images-na.ssl-images-amazon.com/images/I/71rtQvf5UVL.jpg
pic_img: "/img/reading/tmb2.jpeg"
date: 07/03/2019
description: I actually really hated that I was reading this while on a beautiful
hike, but it was my only book on my kindle, and it was an incredibly juicy read.
- title: Someone Will Love You In All Your Damaged Glory
url: damaged-glory
place: in Rotterdam, Netherlands
book_img: https://images-na.ssl-images-amazon.com/images/I/71EE3HwPpjL.jpg
pic_img: "/img/reading/rotterdam.jpeg"
date: 06/21/2019
description: This is one of many form-bending absurdist short story collections
I've read lately and I'm happy to be continuing the phase.
highlights:
- The things that are the most important aren't shared; they are important to only us.
- title: Hunger
url: hunger
place: in Amsterdam, Netherlands
book_img: https://images-na.ssl-images-amazon.com/images/I/615mQ4HtjUL.jpg
pic_img: "/img/reading/amsterdam.jpeg"
date: 06/12/2019
description: Sometimes all you can do is bare witness.
highlights:
- I am weary of all our sad stories—not hearing them, but that we have these stories to tell, that there are so many.
- title: How To Date Men When You Hate Men
url: date-men-hate-men
place: in Positano, Italy
book_img: https://images-na.ssl-images-amazon.com/images/I/718DxMH0MCL.jpg
pic_img: "/img/reading/positano.jpeg"
date: 05/30/2019
description: This is the funniest book I've read in such a long time. I thought
it was actually really loving towards men and it was a good reminder that dating
is supposed to be fun. I loved her point about how easy it is for women to fall
into supporting a partner, and how important it is to forge your own path and
focus on your own art.
highlights:
- 'Whatever happens will happen, but the pay is certain: you''ll always be able to write, or talk, or paint, or knit (why do people knit??) about it. You can make it into something beautiful or hilarious or genius or so incredibly dumb that it''s hilarious and genius.'
- title: My Year Of Rest And Relaxation
url: year-of-rest
place: in Berlin, Germany
book_img: https://d30a6s96kk7rhm.cloudfront.net/original/readings/978/178/733/9781787330412.jpg
pic_img: "/img/reading/berlin.jpeg"
date: 05/27/2019
description: This book is about a woman who basically takes a butt load of drugs
and fucks off for a year. It's from her point of view, so as you can imagine,
this was incredibly depressing, and made me feel kind of insane. But I must have
liked it because I plowed through it in one day, and it was actually weirdly funny.
highlights:
- Rejection, I have found, can be the only antidote to delusion.
- title: The Order of Time
url: the-order-of-time
place: at Golden Gate Park
book_img: https://images-na.ssl-images-amazon.com/images/I/71cUncd3mzL.jpg
pic_img: "/img/reading/golden-gate.jpg"
date: 03/2019–
description: Still reading this one, but already loving how poetic science can be.
In a weird way, it talks about some of the same themes that Her Body And Other
Parties does.
highlights:
- 'Perhaps poetry is another of science''s deepest roots: the capacity to see beyond the visible.'
- title: Her Body And Other Parties
url: her-body-and-other-parties-take-2
place: at a cafe in Barcelona
book_img: https://images-na.ssl-images-amazon.com/images/I/91ZOrAgmdrL.jpg
pic_img: "/img/reading/barcelona.jpeg"
date: 02/13/2019
description: I love this one so much I've been rereading it. I'm forced me to grapple
with the absurdity of what it feels like to move through the world as myself,
and it resonates in a way that can only be felt. The way form and structure are
twisted delights me over and over again. It makes me feel like I'm losing my mind
in the best way. We live in an illogical world and trying to make sense of it
is what makes us crazy.
highlights:
- I took a step toward her. “It is my right to reside in my own mind. It is my right,” I said.
- title: Choose Your Own Disaster
url: choose-your-own-disaster
place: in my bed
book_img: https://pbs.twimg.com/media/DfbLFBWXUAAWeK9?format=jpg&name=large
date: 12/13/2018
description:
- I feel like Dana is my friend and I got to hear her funny, honest, deeply personal story.
- title: The Power
url: the-power
place: during my commute
book_img: https://static1.1.sqspcdn.com/static/f/1371273/27278871/1475775961363/The+Power.jpg?token=iLQyy9Acb89uzeJEt7EsjLWu1qo%3D
date: 11/26/2018
description: 'I haven''t fallen into a story so quick in a while: electrifying,
enrapturing, thought-provoking, heavy-handed revenge porn.'
highlights:
- They understood their strength, all at once.
- title: Yes We (Still) Can
url: yes-we-still-can
place: at my apartment
book_img: https://s.hdnux.com/photos/74/00/31/15730281/5/rawImage.jpg
date: 09/19/2018
description:
- I listen to the podcast so it was an easy, funny, approximation of that.
- title: Never Let Me Go
url: never-let-me-go
place: at my apartment
book_img: https://i.pinimg.com/736x/06/b2/dc/06b2dc169d9dd5ae6cf7ee6db88f024c.jpg
pic_img: "/img/reading/apartment.JPG"
date: 07/30/2018
description: This story makes my whole chest hurt.
highlights:
- And so we stood together like that, at the top of that field for whatseemed like ages, not saying anything, just holding each other, while the windkept blowing and blowing at us, tugging our clothes, and for a moment, it seemed like we were holding onto each other because that was the only way to stop us from being swept away into the night.
- title: The Faraway Nearby
url: the-faraway-nearby
place: at Buena Vista Park
book_img: https://images-na.ssl-images-amazon.com/images/I/81bwskPJ0LL.jpg
pic_img: "/img/reading/buena-vista.JPG"
date: 2017–
description: I like this book so much that I have trouble getting through it. Every
sentence feels like a whole universe that I want to soak up and live in. I think
a lot about how the stories we tell shape our lives and Rebecca Solnit says it
more beautifully than I ever could.
highlights:
- Stories are compasses and architecture, we navigate by them, we build our sanctuaries and our prisons out of them, and to be without a story is to be lost in the vastness of a world that spreads in all directions like arctic tundra or sea ice.
- title: The Sirens of Titan
author: Kurt Vonnegut
url: the-sirens-of-titan
place: in Alamo Square
book_img: https://images-na.ssl-images-amazon.com/images/I/7146xazNxtL.jpg
date: 06/25/2018
description: I read a bunch of Vonnegut a few years ago when I had a long commute
into Brooklyn, and somehow missed this one. His books are always easy for me to
pick up when I'm not in the mood to read anything else.
highlights:
- The on button simply started a flight from Mars. The off button was connected to nothing. It was installed at the insistence of Martian mental-health experts, who said that human beings were always happier with machinery they thought they could turn off.
- title: O Fallen Angel
author: Kate Zambreno
place: in Alamo Square
url: o-fallen-angel
book_img: https://kbimages1-a.akamaihd.net/fe116176-3429-40e0-b796-59ff7acf3c36/1200/1200/False/o-fallen-angel-2.jpg
date: 02/15/2018
description: This is a weird book. I think it's in a good way. I read it in an hour.
- title: Bad Feminist
author: Roxane Gay
place: at Matching Half Cafe
url: bad-feminist
book_img: https://img.apmcdn.org/2956296726d82ab9b02567c5e31a6033f0c4cf07/uncropped/630278-20140902-badfeminist.jpg
pic_img: "/img/reading/matching-half.jpg"
date: 01/28/2018
description: I should have read this years ago, but I'm glad I finally did.
highlights:
- Everybody gossips, so if you are going to gossip about your friends, at least make it fun and interesting. As a corollary, never say “I never lie” or “I never gossip” because you are lying.
- title: Her Body and Other Parties
place: on Long Island, NY
author: Carmen Maria Machado
url: her-body-and-other-parties
book_img: https://images-na.ssl-images-amazon.com/images/I/91ZOrAgmdrL.jpg
date: 01/05/2018
description: This is one of my favorite books I've read in a really long time.
highlights:
- As a grown woman, I would have said to my father that there are true things in this world observed only by a single set of eyes.
================
File: _data/writing.yaml
================
- title: A Grown Up's Guide to Reading
description: A collection of advice I frequently give about reading
url: reading-advice
date: 4 / 1 / 2022
published: true
- title: Coming soon
description: I mean, I don’t have anything else written yet, but hopefully this embarrases me into writing more.
published: false
================
File: _includes/footer.html
================
<footer class="footer">
<a href="/" class="back">
<span>←</span> Back
</a>
</footer>
================
File: _includes/head.html
================
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{ page.title }}</title>
<!-- Favicon -->
<link rel="shortcut icon" href="{{ site.baseurl }}/favicon.png">
<!-- Main CSS -->
<link rel="stylesheet" type="text/css" href="{{ site.baseurl }}/main.css">
<!-- External Fonts -->
<link rel="stylesheet" href="https://use.typekit.net/nxa2uwt.css">
<link rel="stylesheet" href="https://use.typekit.net/nie8tuv.css">
<link href="https://fonts.googleapis.com/css?family=BioRhyme+Expanded|Poppins:400,700" rel="stylesheet" type="text/css">
<!-- Google Analytics -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-68403581-1', 'auto');
ga('send', 'pageview');
</script>
<!-- Noindex for staging -->
{% if jekyll.environment == 'stage' %}
<meta name="robots" content="noindex" />
{% endif %}
<!-- SEO -->
{% seo %}
================
File: _includes/project-info.html
================
{% for item in site.data.portfolio %}
{% if item.title == page.tag %}
<div class="project-intro">
<div>
<a href="/" class="back">
<span>←</span> Back
</a>
<div>
<strong>{{ item.title }}</strong>—{{ item.description }}
</div>
</div>
{% if item.site %}
<a href="{{ item.site }}" class="site-button">View the project ↗︎</a>
{% endif %}
</div>
{% endif %}
{% endfor %}
================
File: _includes/scripts.html
================
<script src="https://unpkg.com/scrollreveal"></script>
<script type="text/javascript" src="/js/main.js"></script>
<!-- endbuild -->
<script>
sr.reveal('.homepage__thumbnail');
sr.reveal('.project_img');
sr.reveal('.project_text-container');
sr.reveal('footer');
sr.reveal('.project-info');
sr.reveal('header');
sr.reveal('.about__topper');
sr.reveal('.about-info');
sr.reveal('.homepage__header');
sr.reveal('.book-scroll');
</script>
================
File: _layouts/base.html
================
<!DOCTYPE html>
<html lang="en">
<head>
{% include head.html %}
</head>
<body class="portfolio">
{{ content }}
{% include scripts.html %}
</body>
</html>
================
File: _layouts/post.html
================
<!DOCTYPE html>
<html lang="en">
<head>
{% include head.html %}
</head>
<body class="post">
<section class='site-container'>
<a href="/writing" class="back">
<span>←</span> Amanda Pinsker's Writing
</a>
<section class="post-content">
{{ content }}
</section>
{% include footer.html %}
</section>
{% include scripts.html %}
</body>
</html>
================
File: _layouts/project.html
================
<!DOCTYPE html>
<html lang="en">
<head>
{% include head.html %}
</head>
<body class="case-study">
<section class='site-container'>
{% include project-info.html %}
<div class="case-study-content">
{{ content }}
</div>
{% include footer.html %}
</section>
{% include scripts.html %}
</body>
</html>
================
File: _layouts/reading.html
================
<!DOCTYPE html>
<html lang="en" class="reading-html">
<head>
{% include head.html %}
</head>
<body class="reading">
{{ content }}
{% include scripts.html %}
</body>
</html>
================
File: _sass/_easter-egg.scss
================
// Easter Egg Styles
body.easter-egg {
color: $foreground;
background: $background;
animation: easter-egg 60s infinite;
.accent, hr.accent {
animation: easter-egg-accent 60s infinite;
}
a {
color: inherit;
}
.project:hover:after {
border: 1px solid $white;
@media (prefers-color-scheme: dark) {
border: 1px solid $black;
}
}
.note span {
box-shadow: inset 0px 0px 0px 0px $white;
@media (prefers-color-scheme: dark) {
box-shadow: inset 0px 0px 0px 0px $black;
}
}
.footnote-accent span {
box-shadow: inset 0px -25px 0px 0px $white;
@media (prefers-color-scheme: dark) {
box-shadow: inset 0px -25px 0px 0px $black;
}
}
@media (prefers-color-scheme: dark) {
background: $foreground;
color: $background;
}
}
// 🌈
.hint {
cursor: help;
}
$color1: #ffbe0bff;
$color2: #fb5607ff;
$color3: #ff006eff;
$color4: #8338ecff;
$color5: #3a86ffff;
@keyframes easter-egg {
10% {background-color: $color1;}
30% {background-color: $color2;}
50% {background-color: $color3;}
70% {background-color: $color4;}
90% {background-color: $color5;}
}
@keyframes easter-egg-accent {
2% {color: $white; border-color: $white;}
98% {color: $white; border-color: $white;}
}
================
File: _sass/_home.scss
================
// HOME PAGE
// Base home styles
.home {
font-size: 24px;
line-height: 1.2;
@include mq($tablet) {
font-size: $primary-font-size;
}
.flex {
display: flex;
justify-content: space-between;
flex-direction: column;
@include mq($tablet) {
flex-direction: row;
}
}
a {
font-weight: 700;
}
h1 {
font-size: inherit;
display: inline;
}
h2 {
font-size: $primary-font-size;
font-weight: 400;
font-style: italic;
margin-bottom: 30px;
}
.column {
width: 100%;
@include mq($tablet) {
&.about {
width: 48%;
}
&.work {
width: 47%
}
}
}
}
.accent {
color: $red;
transition: $timing;
cursor: cell;
}
hr.accent {
border-color: $red;
border-style: solid;
border-width: 0.5px;
margin: 60px 0;
}
.about .collaborators {
padding-bottom: 38px;
div {
margin: 0;
}
span {
font-weight: normal;