-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfeed.json
2351 lines (2072 loc) · 162 KB
/
feed.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"version": "https://jsonfeed.org/version/1",
"title": "Shawn Yeager",
"icon": "https://micro.blog/shawnyeager/avatar.jpg",
"home_page_url": "https://shawnyeager.org/",
"feed_url": "https://shawnyeager.org/feed.json",
"items": [
{
"id": "http://shawnyeager.micro.blog/2024/01/06/we-made-the.html",
"content_html": "<p>We made the last night of Holiday Lights at Cheekwood. Consider this our family Christmas card photo—belated.</p>\n<!-- raw HTML omitted -->\n",
"content_text": "We made the last night of Holiday Lights at Cheekwood. Consider this our family Christmas card photo---belated.\n\n<img src=\"uploads/2024/b9ec0b5b4a.jpg\" width=\"450\" height=\"600\" alt=\"\">\n",
"date_published": "2024-01-06T20:42:20-06:00",
"url": "https://shawnyeager.org/2024/01/06/we-made-the.html"
},
{
"id": "http://shawnyeager.micro.blog/2024/01/04/allstar.html",
"content_html": "<p>All-Star</p>\n<!-- raw HTML omitted -->\n",
"content_text": "All-Star\n\n<img src=\"uploads/2024/8e0d724ad3.jpg\" width=\"450\" height=\"600\" alt=\"\">\n",
"date_published": "2024-01-04T06:10:05-06:00",
"url": "https://shawnyeager.org/2024/01/04/allstar.html"
},
{
"id": "http://shawnyeager.micro.blog/2024/01/03/first-say-to.html",
"content_html": "<p>“First say to yourself what you would be; and then do what you have to do.” —Epictetus</p>\n<p>💬</p>\n",
"content_text": "\"First say to yourself what you would be; and then do what you have to do.\" ---Epictetus\n\n💬\n",
"date_published": "2024-01-03T20:05:37-06:00",
"url": "https://shawnyeager.org/2024/01/03/first-say-to.html",
"tags": ["Quotes"]
},
{
"id": "http://shawnyeager.micro.blog/2024/01/02/guilt-is-an.html",
"content_html": "<p>“Guilt is an attempt to purchase salvation, manipulate God, and purchase forgiveness by suffering.” —David Hawkins</p>\n<p>💬</p>\n",
"content_text": "\"Guilt is an attempt to purchase salvation, manipulate God, and purchase forgiveness by suffering.\" —David Hawkins\n\n💬\n",
"date_published": "2024-01-02T09:28:42-06:00",
"url": "https://shawnyeager.org/2024/01/02/guilt-is-an.html",
"tags": ["Quotes"]
},
{
"id": "http://shawnyeager.micro.blog/2023/12/25/merry-christmas.html",
"content_html": "<p>Merry Christmas. 🎄</p>\n<!-- raw HTML omitted -->\n",
"content_text": "Merry Christmas. 🎄 \n\n<img src=\"uploads/2023/a29ee9c98a.jpg\" width=\"450\" height=\"600\" alt=\"\">\n",
"date_published": "2023-12-25T05:30:25-06:00",
"url": "https://shawnyeager.org/2023/12/25/merry-christmas.html"
},
{
"id": "http://shawnyeager.micro.blog/2023/12/22/my-favorite-christmas.html",
"content_html": "<p>My favorite Christmas decoration</p>\n<!-- raw HTML omitted -->\n",
"content_text": "My favorite Christmas decoration\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2023/5ea36a7132.jpg\" width=\"450\" height=\"600\" alt=\"\">\n",
"date_published": "2023-12-22T18:23:36-06:00",
"url": "https://shawnyeager.org/2023/12/22/my-favorite-christmas.html"
},
{
"id": "http://shawnyeager.micro.blog/2023/12/16/091521.html",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2023/5e5597121a.jpg\" width=\"600\" height=\"450\" alt=\"\">\n",
"date_published": "2023-12-16T09:15:21-06:00",
"url": "https://shawnyeager.org/2023/12/16/091521.html"
},
{
"id": "http://shawnyeager.micro.blog/2023/11/26/little-man-stops.html",
"content_html": "<p>Little Man stops to ponder life’s big questions while shopping for Christmas trees. 🌲</p>\n<!-- raw HTML omitted -->\n",
"content_text": "Little Man stops to ponder life’s big questions while shopping for Christmas trees. 🌲 \n\n<img src=\"uploads/2023/08566252ef.jpg\" width=\"450\" height=\"600\" alt=\"\">\n",
"date_published": "2023-11-26T18:17:32-06:00",
"url": "https://shawnyeager.org/2023/11/26/little-man-stops.html"
},
{
"id": "http://shawnyeager.micro.blog/2023/11/20/i-love-this.html",
"content_html": "<p>I love this time of year in Nashville. 🍁</p>\n<!-- raw HTML omitted -->\n",
"content_text": "I love this time of year in Nashville. 🍁\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2023/299a79f5b7.jpg\" width=\"450\" height=\"600\" alt=\"\">\n",
"date_published": "2023-11-20T13:54:30-06:00",
"url": "https://shawnyeager.org/2023/11/20/i-love-this.html"
},
{
"id": "http://shawnyeager.micro.blog/2023/11/14/catharsis.html",
"content_html": "<p>Catharsis</p>\n<!-- raw HTML omitted -->\n",
"content_text": "Catharsis\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2023/00d522ccd7.jpg\" width=\"600\" height=\"450\" alt=\"\">\n",
"date_published": "2023-11-13T23:11:50-06:00",
"url": "https://shawnyeager.org/2023/11/14/catharsis.html"
},
{
"id": "http://shawnyeager.micro.blog/2023/11/01/a-day-late.html",
"content_html": "<p>A day late and a cookie short.</p>\n<!-- raw HTML omitted -->\n",
"content_text": "A day late and a cookie short.\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2023/aef4137971.jpg\" width=\"450\" height=\"600\" alt=\"\">\n",
"date_published": "2023-11-01T22:20:10-06:00",
"url": "https://shawnyeager.org/2023/11/01/a-day-late.html"
},
{
"id": "http://shawnyeager.micro.blog/2023/10/07/ocean-blue.html",
"content_html": "<p>Ocean blue</p>\n<!-- raw HTML omitted -->\n",
"content_text": "Ocean blue\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2023/b5947975c7.jpg\" width=\"450\" height=\"600\" alt=\"\">\n",
"date_published": "2023-10-07T13:08:29-06:00",
"url": "https://shawnyeager.org/2023/10/07/ocean-blue.html"
},
{
"id": "http://shawnyeager.micro.blog/2023/10/07/down-and-out.html",
"content_html": "<p>Down and out in Santa Monica.</p>\n<!-- raw HTML omitted -->\n",
"content_text": "Down and out in Santa Monica.\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2023/2955cc00c8.jpg\" width=\"450\" height=\"600\" alt=\"\">\n",
"date_published": "2023-10-07T10:29:58-06:00",
"url": "https://shawnyeager.org/2023/10/07/down-and-out.html"
},
{
"id": "http://shawnyeager.micro.blog/2023/10/01/little-mans-grand.html",
"content_html": "<p>Little Man’s grand designs.</p>\n<p><!-- raw HTML omitted --><!-- raw HTML omitted --></p>\n",
"content_text": "Little Man’s grand designs.\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2023/4ff7710423.jpg\" width=\"600\" height=\"449\" alt=\"\"><img src=\"https://cdn.uploads.micro.blog/25292/2023/fe5eba8e1d.jpg\" width=\"600\" height=\"449\" alt=\"\">\n",
"date_published": "2023-10-01T15:48:50-06:00",
"url": "https://shawnyeager.org/2023/10/01/little-mans-grand.html"
},
{
"id": "http://shawnyeager.micro.blog/2023/09/24/icing-for-a.html",
"content_html": "<p>Icing for a moment. Curls for days.</p>\n<!-- raw HTML omitted -->\n",
"content_text": "Icing for a moment. Curls for days.\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2023/0eb80eef7d.jpg\" width=\"450\" height=\"600\" alt=\"\">\n",
"date_published": "2023-09-24T12:45:04-06:00",
"url": "https://shawnyeager.org/2023/09/24/icing-for-a.html"
},
{
"id": "http://shawnyeager.micro.blog/2023/09/20/to-the-weird.html",
"content_html": "<p>To the weird ones.</p>\n<!-- raw HTML omitted -->\n",
"content_text": "To the weird ones.\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2023/weirdness.jpeg\" width=\"600\" height=\"549\" alt=\"\">\n",
"date_published": "2023-09-20T14:26:21-06:00",
"url": "https://shawnyeager.org/2023/09/20/to-the-weird.html"
},
{
"id": "http://shawnyeager.micro.blog/2023/09/12/happy-birthday-my.html",
"content_html": "<p>Happy birthday, my love. ❤️ Nothing I can do or give could ever match the gift that is is you.</p>\n",
"content_text": "Happy birthday, my love. ❤️ Nothing I can do or give could ever match the gift that is is you.\n",
"date_published": "2023-09-12T08:26:05-06:00",
"url": "https://shawnyeager.org/2023/09/12/happy-birthday-my.html"
},
{
"id": "http://shawnyeager.micro.blog/2023/08/31/do-i-prefer.html",
"content_html": "<p>“Do I prefer to grow up and relate to life directly, or do I choose to live and die in fear?” —Pema Chödrön</p>\n<p>💬</p>\n",
"content_text": "“Do I prefer to grow up and relate to life directly, or do I choose to live and die in fear?” —Pema Chödrön\n\n💬\n",
"date_published": "2023-08-31T20:34:12-06:00",
"url": "https://shawnyeager.org/2023/08/31/do-i-prefer.html",
"tags": ["Quotes"]
},
{
"id": "http://shawnyeager.micro.blog/2023/08/31/i-wasnt-crazy.html",
"content_html": "<p>I wasn’t crazy about the new shirt. Little Man loved it.</p>\n<!-- raw HTML omitted -->\n",
"content_text": "I wasn’t crazy about the new shirt. Little Man loved it.\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2023/eaf1a6b2c5.jpg\" width=\"450\" height=\"600\" alt=\"\">\n",
"date_published": "2023-08-31T20:31:01-06:00",
"url": "https://shawnyeager.org/2023/08/31/i-wasnt-crazy.html"
},
{
"id": "http://shawnyeager.micro.blog/2023/08/28/the-world-does.html",
"content_html": "<p>“The world does not deliver meaning to you. You have to make it meaningful… and decide what you want and need and must do.” —Zadie Smith</p>\n<p>💬</p>\n",
"content_text": "“The world does not deliver meaning to you. You have to make it meaningful… and decide what you want and need and must do.” ---Zadie Smith\n\n💬\n",
"date_published": "2023-08-28T13:07:47-06:00",
"url": "https://shawnyeager.org/2023/08/28/the-world-does.html",
"tags": ["Quotes"]
},
{
"id": "http://shawnyeager.micro.blog/2023/08/26/currently-reading-daemon.html",
"content_html": "<p>Currently reading: <a href=\"https://micro.blog/books/9780451228734\">Daemon</a> by Daniel Suarez 📚</p>\n",
"content_text": "Currently reading: [Daemon](https://micro.blog/books/9780451228734) by Daniel Suarez 📚\n",
"date_published": "2023-08-26T19:43:54-06:00",
"url": "https://shawnyeager.org/2023/08/26/currently-reading-daemon.html",
"tags": ["Books"]
},
{
"id": "http://shawnyeager.micro.blog/2023/08/22/buckets-and-books.html",
"content_html": "<p>Buckets and books at the library</p>\n<!-- raw HTML omitted -->\n",
"content_text": "Buckets and books at the library\n\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2023/bc15568f55.jpg\" width=\"450\" height=\"600\" alt=\"\">\n",
"date_published": "2023-08-22T18:54:08-06:00",
"url": "https://shawnyeager.org/2023/08/22/buckets-and-books.html"
},
{
"id": "http://shawnyeager.micro.blog/2023/07/19/the-past-is.html",
"content_html": "<p>“The past is always tense, the future perfect.”\n—Zadie Smith</p>\n<p>💬</p>\n",
"content_text": "\"The past is always tense, the future perfect.\"\n—Zadie Smith\n\n💬\n",
"date_published": "2023-07-18T23:12:45-06:00",
"url": "https://shawnyeager.org/2023/07/19/the-past-is.html",
"tags": ["Quotes"]
},
{
"id": "http://shawnyeager.micro.blog/2023/07/17/tangier-to-casablanca.html",
"content_html": "<p>Tangier to Casablanca in style.</p>\n<!-- raw HTML omitted -->\n",
"content_text": "Tangier to Casablanca in style.\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2023/bd17d98d8f.jpg\" width=\"450\" height=\"600\" alt=\"\">\n",
"date_published": "2023-07-17T15:32:33-06:00",
"url": "https://shawnyeager.org/2023/07/17/tangier-to-casablanca.html"
},
{
"id": "http://shawnyeager.micro.blog/2023/07/13/now-available-beach.html",
"content_html": "<p>Now available: beach front properties.</p>\n<!-- raw HTML omitted -->\n",
"content_text": "Now available: beach front properties.\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2023/cb58d7fba4.jpg\" width=\"450\" height=\"600\" alt=\"\">\n",
"date_published": "2023-07-13T15:25:29-06:00",
"url": "https://shawnyeager.org/2023/07/13/now-available-beach.html"
},
{
"id": "http://shawnyeager.micro.blog/2023/07/12/102224.html",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2023/4a7829ac44.jpg\" width=\"450\" height=\"600\" alt=\"\">\n",
"date_published": "2023-07-12T03:22:24-06:00",
"url": "https://shawnyeager.org/2023/07/12/102224.html"
},
{
"id": "http://shawnyeager.micro.blog/2023/07/09/154423.html",
"content_html": "<p>🌝</p>\n<!-- raw HTML omitted -->\n",
"content_text": "🌝\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2023/59fcc313f3.jpg\" width=\"450\" height=\"600\" alt=\"\">\n",
"date_published": "2023-07-09T08:44:23-06:00",
"url": "https://shawnyeager.org/2023/07/09/154423.html"
},
{
"id": "http://shawnyeager.micro.blog/2023/07/07/threads-is-spyware.html",
"content_html": "<p>Threads is spyware. Don’t opt in.</p>\n<!-- raw HTML omitted -->\n",
"content_text": "Threads is spyware. Don’t opt in.\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2023/25f3e85cff.jpg\" width=\"600\" height=\"564\" alt=\"\">\n",
"date_published": "2023-07-07T09:42:36-06:00",
"url": "https://shawnyeager.org/2023/07/07/threads-is-spyware.html"
},
{
"id": "http://shawnyeager.micro.blog/2023/07/07/the-mediterranean-sea.html",
"content_html": "<p>🎣 the Mediterranean Sea</p>\n<!-- raw HTML omitted -->\n",
"content_text": "🎣 the Mediterranean Sea\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2023/ce1150b7d8.jpg\" width=\"450\" height=\"600\" alt=\"\">\n",
"date_published": "2023-07-07T07:09:05-06:00",
"url": "https://shawnyeager.org/2023/07/07/the-mediterranean-sea.html"
},
{
"id": "http://shawnyeager.micro.blog/2023/07/06/the-path-home.html",
"content_html": "<p>The path home.</p>\n<!-- raw HTML omitted -->\n",
"content_text": "The path home.\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2023/6783afa4ae.jpg\" width=\"450\" height=\"600\" alt=\"\">\n",
"date_published": "2023-07-06T01:29:13-06:00",
"url": "https://shawnyeager.org/2023/07/06/the-path-home.html"
},
{
"id": "http://shawnyeager.micro.blog/2023/06/30/spirits-and-diapers.html",
"content_html": "<p>Spirits and diapers are riding high.</p>\n<!-- raw HTML omitted -->\n",
"content_text": "Spirits and diapers are riding high.\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2023/80bf343381.jpg\" width=\"450\" height=\"600\" alt=\"\">\n",
"date_published": "2023-06-30T09:14:19-06:00",
"url": "https://shawnyeager.org/2023/06/30/spirits-and-diapers.html"
},
{
"id": "http://shawnyeager.micro.blog/2023/06/29/petit-prince.html",
"content_html": "<p>Petit prince</p>\n<!-- raw HTML omitted -->\n",
"content_text": "Petit prince\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2023/9fd69c9dd3.jpg\" width=\"450\" height=\"600\" alt=\"\">\n",
"date_published": "2023-06-29T06:55:29-06:00",
"url": "https://shawnyeager.org/2023/06/29/petit-prince.html"
},
{
"id": "http://shawnyeager.micro.blog/2023/06/29/ive-missed-you.html",
"content_html": "<p>I’ve missed you, Tangier.</p>\n<!-- raw HTML omitted -->\n",
"content_text": "I’ve missed you, Tangier.\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2023/bbd82f285d.jpg\" width=\"600\" height=\"449\" alt=\"\">\n",
"date_published": "2023-06-29T04:33:10-06:00",
"url": "https://shawnyeager.org/2023/06/29/ive-missed-you.html"
},
{
"id": "http://shawnyeager.micro.blog/2023/06/28/may-this-cheeky.html",
"content_html": "<p>May this cheeky smile brighten your day.</p>\n<!-- raw HTML omitted -->\n",
"content_text": "May this cheeky smile brighten your day. \n\n<img src=\"https://cdn.uploads.micro.blog/25292/2023/79f26dcdc1.jpg\" width=\"450\" height=\"600\" alt=\"\">\n",
"date_published": "2023-06-28T10:31:15-06:00",
"url": "https://shawnyeager.org/2023/06/28/may-this-cheeky.html"
},
{
"id": "http://shawnyeager.micro.blog/2023/06/27/family-vacation-in.html",
"content_html": "<p>Family vacation in Morocco begins. Little man is loving it.</p>\n<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n",
"content_text": "Family vacation in Morocco begins. Little man is loving it.\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2023/image.jpg\" width=\"600\" height=\"450\" alt=\"\">\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2023/2bcc9dd03e.jpg\" width=\"450\" height=\"600\" alt=\"\">\n",
"date_published": "2023-06-27T05:22:18-06:00",
"url": "https://shawnyeager.org/2023/06/27/family-vacation-in.html"
},
{
"id": "http://shawnyeager.micro.blog/2023/02/20/your-children-are.html",
"content_html": "<p>“Your children are not your children. They are the sons and daughters of Life’s longing for itself. They come through you but not from you. And though they are with you, they belong not to you. You may give them your love but not your thoughts. For they have their own thoughts. You may house their bodies but not their souls, for their souls dwell in the house of tomorrow, which you cannot visit, not even in your dreams. You may strive to be like them, but seek not to make them like you. For life goes not backward nor tarries with yesterday.”</p>\n<p>—Kahlil Gibran’s “On Children”</p>\n<p>💬</p>\n",
"content_text": "“Your children are not your children. They are the sons and daughters of Life’s longing for itself. They come through you but not from you. And though they are with you, they belong not to you. You may give them your love but not your thoughts. For they have their own thoughts. You may house their bodies but not their souls, for their souls dwell in the house of tomorrow, which you cannot visit, not even in your dreams. You may strive to be like them, but seek not to make them like you. For life goes not backward nor tarries with yesterday.”\n\n—Kahlil Gibran’s “On Children”\n\n💬\n",
"date_published": "2023-02-20T15:57:02-06:00",
"url": "https://shawnyeager.org/2023/02/20/your-children-are.html",
"tags": ["Quotes"]
},
{
"id": "http://shawnyeager.micro.blog/2023/02/05/practicing-his-blue.html",
"content_html": "<p>Practicing his Blue Steel</p>\n<!-- raw HTML omitted -->\n",
"content_text": "Practicing his Blue Steel\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2023/15be1886e2.jpg\" width=\"599\" height=\"600\" alt=\"\">\n",
"date_published": "2023-02-05T15:12:30-06:00",
"url": "https://shawnyeager.org/2023/02/05/practicing-his-blue.html"
},
{
"id": "http://shawnyeager.micro.blog/2022/12/31/holiday-lights-at.html",
"content_html": "<p>Holiday Lights at Cheekwood Botanical Gardens</p>\n<p><!-- raw HTML omitted --><!-- raw HTML omitted --></p>\n",
"content_text": "Holiday Lights at Cheekwood Botanical Gardens\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2023/a8c23a62c1.jpg\" width=\"600\" height=\"450\" alt=\"\"><img src=\"https://cdn.uploads.micro.blog/25292/2023/9cbdeeb310.jpg\" width=\"600\" height=\"450\" alt=\"\">\n",
"date_published": "2022-12-31T20:24:40-06:00",
"url": "https://shawnyeager.org/2022/12/31/holiday-lights-at.html"
},
{
"id": "http://shawnyeager.micro.blog/2022/12/05/the-more-you.html",
"content_html": "<p>“The more you pursue permanence, the more you will feel the impermanence of things.” —Alan Watts</p>\n<p>Ain’t that the truth.</p>\n<p>💬</p>\n",
"content_text": "“The more you pursue permanence, the more you will feel the impermanence of things.” —Alan Watts\n\nAin’t that the truth.\n\n💬\n",
"date_published": "2022-12-05T09:48:14-06:00",
"url": "https://shawnyeager.org/2022/12/05/the-more-you.html",
"tags": ["Quotes"]
},
{
"id": "http://shawnyeager.micro.blog/2022/11/07/my-little-man.html",
"content_html": "<p>My little man turned one today.</p>\n<!-- raw HTML omitted -->\n",
"content_text": "My little man turned one today.\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2022/756f0efc65.jpg\" width=\"449\" height=\"600\" alt=\"\">\n",
"date_published": "2022-11-07T20:29:44-06:00",
"url": "https://shawnyeager.org/2022/11/07/my-little-man.html"
},
{
"id": "http://shawnyeager.micro.blog/2022/11/05/lets-pretend-i.html",
"content_html": "<p>Let’s pretend I posted this on Halloween. 🎃</p>\n<!-- raw HTML omitted -->\n",
"content_text": "Let’s pretend I posted this on Halloween. 🎃 \n\n<img src=\"https://cdn.uploads.micro.blog/25292/2022/3c94f53edb.jpg\" width=\"599\" height=\"600\" alt=\"\">\n",
"date_published": "2022-11-05T11:04:05-06:00",
"url": "https://shawnyeager.org/2022/11/05/lets-pretend-i.html"
},
{
"id": "http://shawnyeager.micro.blog/2022/10/29/160459.html",
"content_html": "<p>🍁</p>\n<!-- raw HTML omitted -->\n",
"content_text": "🍁 \n\n<img src=\"https://cdn.uploads.micro.blog/25292/2022/99f975fb3e.jpg\" width=\"600\" height=\"600\" alt=\"\">\n",
"date_published": "2022-10-29T15:04:59-06:00",
"url": "https://shawnyeager.org/2022/10/29/160459.html"
},
{
"id": "http://shawnyeager.micro.blog/2022/10/15/it-was-a.html",
"content_html": "<p>It was a good day. 🍂</p>\n<!-- raw HTML omitted -->\n",
"content_text": "It was a good day. 🍂 \n\n<img src=\"https://cdn.uploads.micro.blog/25292/2022/20d068d0a4.jpg\" width=\"600\" height=\"450\" alt=\"\">\n",
"date_published": "2022-10-15T17:35:05-06:00",
"url": "https://shawnyeager.org/2022/10/15/it-was-a.html"
},
{
"id": "http://shawnyeager.micro.blog/2022/10/11/little-mans-first.html",
"content_html": "<p>Little man’s first pumpkin patch</p>\n<!-- raw HTML omitted -->\n",
"content_text": "Little man’s first pumpkin patch\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2022/33288a99ba.jpg\" width=\"599\" height=\"600\" alt=\"\">\n",
"date_published": "2022-10-11T16:57:36-06:00",
"url": "https://shawnyeager.org/2022/10/11/little-mans-first.html"
},
{
"id": "http://shawnyeager.micro.blog/2022/09/29/those-who-can.html",
"content_html": "<p>“Those who can make you believe absurdities can make you commit atrocities.” —Voltaire</p>\n<p>💬</p>\n",
"content_text": "“Those who can make you believe absurdities can make you commit atrocities.” —Voltaire\n\n💬\n",
"date_published": "2022-09-29T06:23:11-06:00",
"url": "https://shawnyeager.org/2022/09/29/those-who-can.html",
"tags": ["Quotes"]
},
{
"id": "http://shawnyeager.micro.blog/2022/09/27/ready-for-his.html",
"content_html": "<p>Ready for his closeup 📸</p>\n<!-- raw HTML omitted -->\n",
"content_text": "Ready for his closeup 📸 \n\n<img src=\"https://cdn.uploads.micro.blog/25292/2022/3510a2602d.jpg\" width=\"600\" height=\"600\" alt=\"\" />\n",
"date_published": "2022-09-27T21:56:42-06:00",
"url": "https://shawnyeager.org/2022/09/27/ready-for-his.html"
},
{
"id": "http://shawnyeager.micro.blog/2022/09/19/a-boy-and.html",
"content_html": "<p>A boy and his best blanket</p>\n<!-- raw HTML omitted -->\n",
"content_text": "A boy and his best blanket\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2022/ed9391a021.jpg\" width=\"599\" height=\"600\" alt=\"\" />\n",
"date_published": "2022-09-19T19:35:16-06:00",
"url": "https://shawnyeager.org/2022/09/19/a-boy-and.html"
},
{
"id": "http://shawnyeager.micro.blog/2022/09/06/this-will-do.html",
"content_html": "<p>This will do nicely.</p>\n<!-- raw HTML omitted -->\n",
"content_text": "This will do nicely.\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2022/994276badd.jpg\" width=\"600\" height=\"600\" alt=\"\" />\n",
"date_published": "2022-09-06T14:44:22-06:00",
"url": "https://shawnyeager.org/2022/09/06/this-will-do.html"
},
{
"id": "http://shawnyeager.micro.blog/2022/08/28/my-guy.html",
"content_html": "<p>My guy ♥️</p>\n<!-- raw HTML omitted -->\n",
"content_text": "My guy ♥️\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2022/91fd69141c.jpg\" width=\"480\" height=\"600\" alt=\"\" />\n",
"date_published": "2022-08-28T16:47:14-06:00",
"url": "https://shawnyeager.org/2022/08/28/my-guy.html"
},
{
"id": "http://shawnyeager.micro.blog/2022/07/27/bna-jfk.html",
"content_html": "<p>BNA ✈️ JFK</p>\n<!-- raw HTML omitted -->\n",
"content_text": "BNA ✈️ JFK\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2022/39c619f52e.jpg\" width=\"600\" height=\"450\" alt=\"\" />\n",
"date_published": "2022-07-27T18:48:15-06:00",
"url": "https://shawnyeager.org/2022/07/27/bna-jfk.html"
},
{
"id": "http://shawnyeager.micro.blog/2022/07/14/summer-nights-in.html",
"content_html": "<p>Summer nights in Nashville 👌🏼</p>\n<!-- raw HTML omitted -->\n",
"content_text": "Summer nights in Nashville 👌🏼\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2022/044f63ebc1.jpg\" width=\"600\" height=\"450\" alt=\"\" />\n",
"date_published": "2022-07-14T19:04:35-06:00",
"url": "https://shawnyeager.org/2022/07/14/summer-nights-in.html"
},
{
"id": "http://shawnyeager.micro.blog/2022/06/29/reminder-to-self.html",
"content_html": "<p>Reminder to self: look up.</p>\n<!-- raw HTML omitted -->\n",
"content_text": "Reminder to self: look up.\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2022/eab43c5527.jpg\" width=\"600\" height=\"600\" alt=\"\" />\n",
"date_published": "2022-06-29T11:28:31-06:00",
"url": "https://shawnyeager.org/2022/06/29/reminder-to-self.html"
},
{
"id": "http://shawnyeager.micro.blog/2022/05/25/new-yawk-new.html",
"content_html": "<p>New Yawk, New Yawk</p>\n<!-- raw HTML omitted -->\n",
"content_text": "New Yawk, New Yawk\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2022/8c1b6f453f.jpg\" width=\"599\" height=\"600\" alt=\"\" />\n",
"date_published": "2022-05-25T14:17:07-06:00",
"url": "https://shawnyeager.org/2022/05/25/new-yawk-new.html"
},
{
"id": "http://shawnyeager.micro.blog/2022/05/08/spring-has-sprung.html",
"content_html": "<p>Spring has sprung.</p>\n<!-- raw HTML omitted -->\n",
"content_text": "Spring has sprung.\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2022/19b33f9b54.jpg\" width=\"600\" height=\"600\" alt=\"\" />\n",
"date_published": "2022-05-08T12:49:35-06:00",
"url": "https://shawnyeager.org/2022/05/08/spring-has-sprung.html"
},
{
"id": "http://shawnyeager.micro.blog/2022/04/30/one-of-the.html",
"content_html": "<p>“One of the most perilous illusions is that your real life has not yet begun, that your present existence is a mere prelude to some idyllic future. This idyll is a mirage that will fade as you approach, revealing the prelude you hurried through was in fact the one to your death.” —Gurwinder</p>\n<p>💬</p>\n",
"content_text": "\"One of the most perilous illusions is that your real life has not yet begun, that your present existence is a mere prelude to some idyllic future. This idyll is a mirage that will fade as you approach, revealing the prelude you hurried through was in fact the one to your death.\" —Gurwinder\n\n💬\n",
"date_published": "2022-04-30T06:55:44-06:00",
"url": "https://shawnyeager.org/2022/04/30/one-of-the.html",
"tags": ["Quotes"]
},
{
"id": "http://shawnyeager.micro.blog/2022/04/19/its-been-a.html",
"content_html": "<p>It’s been a long time since I rock ‘n’ rolled.</p>\n<!-- raw HTML omitted -->\n",
"content_text": "It’s been a long time since I rock ‘n’ rolled.\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2022/c6294376db.jpg\" width=\"600\" height=\"600\" alt=\"\" />\n",
"date_published": "2022-04-19T16:13:09-06:00",
"url": "https://shawnyeager.org/2022/04/19/its-been-a.html"
},
{
"id": "http://shawnyeager.micro.blog/2022/04/16/i-made-a.html",
"content_html": "<p>I made a friend at Bitcoin 2022. My son was far less amused than I was. 🫤</p>\n<!-- raw HTML omitted -->\n",
"content_text": "I made a friend at Bitcoin 2022. My son was far less amused than I was. 🫤\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2022/0857f95e0b.jpg\" width=\"450\" height=\"600\" alt=\"\" />\n",
"date_published": "2022-04-16T16:55:08-06:00",
"url": "https://shawnyeager.org/2022/04/16/i-made-a.html"
},
{
"id": "http://shawnyeager.micro.blog/2022/04/08/miami.html",
"content_html": "<p>Miami</p>\n<!-- raw HTML omitted -->\n",
"content_text": "Miami\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2022/61cdcdc573.jpg\" width=\"450\" height=\"600\" alt=\"\" />\n",
"date_published": "2022-04-08T09:56:05-06:00",
"url": "https://shawnyeager.org/2022/04/08/miami.html"
},
{
"id": "http://shawnyeager.micro.blog/2022/04/02/fluffy.html",
"content_html": "<p>Fluffy</p>\n<!-- raw HTML omitted -->\n",
"content_text": "Fluffy\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2022/783dc7e889.jpg\" width=\"600\" height=\"600\" alt=\"\" />\n",
"date_published": "2022-04-02T04:34:54-06:00",
"url": "https://shawnyeager.org/2022/04/02/fluffy.html"
},
{
"id": "http://shawnyeager.micro.blog/2022/03/24/the-l.html",
"content_html": "<p>The L</p>\n<!-- raw HTML omitted -->\n",
"content_text": "The L\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2022/1cfd28015c.jpg\" width=\"478\" height=\"600\" alt=\"\" />\n",
"date_published": "2022-03-24T11:55:24-06:00",
"url": "https://shawnyeager.org/2022/03/24/the-l.html"
},
{
"id": "http://shawnyeager.micro.blog/2022/03/14/173514.html",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2022/9611374627.jpg\" width=\"599\" height=\"600\" alt=\"\" />\n",
"date_published": "2022-03-14T17:35:14-06:00",
"url": "https://shawnyeager.org/2022/03/14/173514.html"
},
{
"id": "http://shawnyeager.micro.blog/2022/03/01/the-darkest-places.html",
"content_html": "<p>“The darkest places in hell are reserved for those who maintain their neutrality in times of moral crisis.” —Dante Alighieri</p>\n<p>💬</p>\n",
"content_text": "\"The darkest places in hell are reserved for those who maintain their neutrality in times of moral crisis.\" —Dante Alighieri\r\n\r\n💬\n",
"date_published": "2022-03-01T07:36:40-06:00",
"url": "https://shawnyeager.org/2022/03/01/the-darkest-places.html",
"tags": ["Quotes"]
},
{
"id": "http://shawnyeager.micro.blog/2022/02/21/dont-sell-your.html",
"content_html": "<p>“Don’t sell your soul to buy peanuts for the monkeys.” —Dorothy Salisbury Davis</p>\n<p>💬</p>\n",
"content_text": "“Don’t sell your soul to buy peanuts for the monkeys.” —Dorothy Salisbury Davis\n\n💬\n",
"date_published": "2022-02-20T20:17:49-06:00",
"url": "https://shawnyeager.org/2022/02/21/dont-sell-your.html",
"tags": ["Quotes"]
},
{
"id": "http://shawnyeager.micro.blog/2022/02/16/post-modern-skies.html",
"content_html": "<p>Post modern skies</p>\n<!-- raw HTML omitted -->\n",
"content_text": "Post modern skies\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2022/744cae4a3d.jpg\" width=\"599\" height=\"600\" alt=\"\" />\n",
"date_published": "2022-02-16T16:39:59-06:00",
"url": "https://shawnyeager.org/2022/02/16/post-modern-skies.html"
},
{
"id": "http://shawnyeager.micro.blog/2022/02/12/over-the-atlantic.html",
"content_html": "<p>Over the Atlantic</p>\n<!-- raw HTML omitted -->\n",
"content_text": "Over the Atlantic\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2022/94195a1d69.jpg\" width=\"600\" height=\"400\" alt=\"\" />\n",
"date_published": "2022-02-12T11:54:19-06:00",
"url": "https://shawnyeager.org/2022/02/12/over-the-atlantic.html"
},
{
"id": "http://shawnyeager.micro.blog/2022/01/26/201007.html",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2022/7536db7ad7.jpg\" width=\"450\" height=\"600\" alt=\"\" />\n",
"date_published": "2022-01-26T13:10:07-06:00",
"url": "https://shawnyeager.org/2022/01/26/201007.html"
},
{
"id": "http://shawnyeager.micro.blog/2022/01/13/151322.html",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2022/41cd8d2edc.jpg\" width=\"600\" height=\"428\" alt=\"\" />\n",
"date_published": "2022-01-13T08:13:22-06:00",
"url": "https://shawnyeager.org/2022/01/13/151322.html"
},
{
"id": "http://shawnyeager.micro.blog/2022/01/08/210347.html",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2022/c0f6cc1cc9.jpg\" width=\"599\" height=\"600\" alt=\"\" />\n",
"date_published": "2022-01-08T14:03:47-06:00",
"url": "https://shawnyeager.org/2022/01/08/210347.html"
},
{
"id": "http://shawnyeager.micro.blog/2022/01/03/the-last-eighteen.html",
"content_html": "<p>The last eighteen months have been some of life’s most grueling for so many, me included. They’ve also brought the greatest gifts I’ve ever known. I am grateful beyond measure.</p>\n<!-- raw HTML omitted -->\n",
"content_text": "The last eighteen months have been some of life’s most grueling for so many, me included. They’ve also brought the greatest gifts I’ve ever known. I am grateful beyond measure.\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2022/df1b9a6901.jpg\" width=\"599\" height=\"600\" alt=\"\" />\n",
"date_published": "2022-01-03T05:06:07-06:00",
"url": "https://shawnyeager.org/2022/01/03/the-last-eighteen.html"
},
{
"id": "http://shawnyeager.micro.blog/2022/01/03/drink-water-from.html",
"content_html": "<p>“Drink water from the spring where horses drink. The horse will never drink bad water. Lay your bed where the cat sleeps. Eat the fruit that has been touched by a worm. Boldly pick the mushroom on which the insects sit. Plant the tree where the mole digs. Build your house where the snake sits to warm itself. Dig your fountain where the birds hide from heat. Go to sleep and wake up at the same time with the birds—you will reap all of the days golden grains. Eat more green—you will have strong legs and a resistant heart, like the beings of the forest. Swim often and you will feel on earth like the fish in the water. Look at the sky as often as possible and your thoughts will become light and clear. Be quiet a lot, speak little—and silence will come in your heart, and your spirit will be calm and full of peace.”</p>\n<p>—Saint Seraphim of Sarov</p>\n<p>💬</p>\n",
"content_text": "“Drink water from the spring where horses drink. The horse will never drink bad water. Lay your bed where the cat sleeps. Eat the fruit that has been touched by a worm. Boldly pick the mushroom on which the insects sit. Plant the tree where the mole digs. Build your house where the snake sits to warm itself. Dig your fountain where the birds hide from heat. Go to sleep and wake up at the same time with the birds—you will reap all of the days golden grains. Eat more green—you will have strong legs and a resistant heart, like the beings of the forest. Swim often and you will feel on earth like the fish in the water. Look at the sky as often as possible and your thoughts will become light and clear. Be quiet a lot, speak little—and silence will come in your heart, and your spirit will be calm and full of peace.”\n\n—Saint Seraphim of Sarov\n\n💬\n",
"date_published": "2022-01-03T04:56:39-06:00",
"url": "https://shawnyeager.org/2022/01/03/drink-water-from.html",
"tags": ["Quotes"]
},
{
"id": "http://shawnyeager.micro.blog/2021/12/20/everyone-has-the.html",
"content_html": "<p>“Everyone has the right to believe in anything they want. And everyone else has the right to find it fucking ridiculous.”</p>\n<p>—Ricky Gervais</p>\n<p>💬</p>\n",
"content_text": "“Everyone has the right to believe in anything they want. And everyone else has the right to find it fucking ridiculous.”\n\n—Ricky Gervais\n\n💬\n",
"date_published": "2021-12-20T05:07:11-06:00",
"url": "https://shawnyeager.org/2021/12/20/everyone-has-the.html",
"tags": ["Quotes"]
},
{
"id": "http://shawnyeager.micro.blog/2021/12/17/the-challenge-of.html",
"content_html": "<p>The challenge of our time</p>\n<p>“You can resolve to live your life with integrity. Let your credo be this: Let the lie come into the world, let it even triumph. But not through me.”</p>\n<p>—Aleksandr Solzhenitsyn</p>\n<p>💬</p>\n",
"content_text": "The challenge of our time\n\n“You can resolve to live your life with integrity. Let your credo be this: Let the lie come into the world, let it even triumph. But not through me.”\n\n—Aleksandr Solzhenitsyn\n\n💬\n",
"date_published": "2021-12-16T21:21:40-06:00",
"url": "https://shawnyeager.org/2021/12/17/the-challenge-of.html",
"tags": ["Quotes"]
},
{
"id": "http://shawnyeager.micro.blog/2021/12/10/bon-voyage.html",
"content_html": "<p>Bon voyage</p>\n<!-- raw HTML omitted -->\n",
"content_text": "Bon voyage\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2021/9a1bdfd934.jpg\" width=\"449\" height=\"600\" alt=\"\" />\n",
"date_published": "2021-12-10T12:40:15-06:00",
"url": "https://shawnyeager.org/2021/12/10/bon-voyage.html"
},
{
"id": "http://shawnyeager.micro.blog/2021/11/27/black-friday.html",
"content_html": "<p>Black Friday</p>\n<!-- raw HTML omitted -->\n",
"content_text": "Black Friday\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2021/b2c0e57678.jpg\" width=\"600\" height=\"449\" alt=\"\" />\n",
"date_published": "2021-11-27T06:11:02-06:00",
"url": "https://shawnyeager.org/2021/11/27/black-friday.html"
},
{
"id": "http://shawnyeager.micro.blog/2021/11/22/201130.html",
"content_html": "<p>🌝 📡</p>\n<!-- raw HTML omitted -->\n",
"content_text": "🌝 📡 \n\n<img src=\"https://cdn.uploads.micro.blog/25292/2021/5b8de374d6.jpg\" width=\"600\" height=\"600\" alt=\"\" />\n",
"date_published": "2021-11-22T13:11:30-06:00",
"url": "https://shawnyeager.org/2021/11/22/201130.html"
},
{
"id": "http://shawnyeager.micro.blog/2021/11/14/indistinguishable-from-magic.html",
"content_html": "<p>Indistinguishable from magic.</p>\n<p>📺 <a href=\"https://youtu.be/222aj9oHSdo\">Amber Run - 52 Blue (Live with London Contemporary Voices)</a></p>\n<p>🎵</p>\n",
"content_text": "Indistinguishable from magic.\n\n📺 [Amber Run - 52 Blue (Live with London Contemporary Voices)](https://youtu.be/222aj9oHSdo)\n\n🎵\n",
"date_published": "2021-11-14T08:38:53-06:00",
"url": "https://shawnyeager.org/2021/11/14/indistinguishable-from-magic.html",
"tags": ["Music"]
},
{
"id": "http://shawnyeager.micro.blog/2021/11/10/211630.html",
"content_html": "<p>📡🗼</p>\n<!-- raw HTML omitted -->\n",
"content_text": "📡🗼\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2021/f173cc6d1a.jpg\" width=\"600\" height=\"600\" alt=\"\" />\n",
"date_published": "2021-11-10T14:16:30-06:00",
"url": "https://shawnyeager.org/2021/11/10/211630.html"
},
{
"id": "http://shawnyeager.micro.blog/2021/11/09/you-didnt-come.html",
"content_html": "<p>“You didn’t come into this world. You came out of it, like a wave from the ocean.”</p>\n<p>—Alan Watts</p>\n<p>💬</p>\n",
"content_text": "“You didn’t come into this world. You came out of it, like a wave from the ocean.”\n\n—Alan Watts\n\n💬\n",
"date_published": "2021-11-09T03:01:05-06:00",
"url": "https://shawnyeager.org/2021/11/09/you-didnt-come.html",
"tags": ["Quotes"]
},
{
"id": "http://shawnyeager.micro.blog/2021/11/06/160120.html",
"content_html": "<p>🔥</p>\n<!-- raw HTML omitted -->\n",
"content_text": "🔥\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2021/65b4c59399.jpg\" width=\"600\" height=\"599\" alt=\"\" />\n",
"date_published": "2021-11-06T09:01:20-06:00",
"url": "https://shawnyeager.org/2021/11/06/160120.html"
},
{
"id": "http://shawnyeager.micro.blog/2021/11/04/i-am-free.html",
"content_html": "<p>“I am free, no matter what rules surround me. If I find them tolerable, I tolerate them; if I find them too obnoxious, I break them. I am free because I know that I alone am morally responsible for everything I do.”</p>\n<p>―Robert A. Heinlein</p>\n<p>💬</p>\n",
"content_text": "“I am free, no matter what rules surround me. If I find them tolerable, I tolerate them; if I find them too obnoxious, I break them. I am free because I know that I alone am morally responsible for everything I do.”\n\n―Robert A. Heinlein\n\n💬\n",
"date_published": "2021-11-04T10:57:58-06:00",
"url": "https://shawnyeager.org/2021/11/04/i-am-free.html",
"tags": ["Quotes"]
},
{
"id": "http://shawnyeager.micro.blog/2021/11/03/160105.html",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2021/13ccc68e6c.jpg\" width=\"600\" height=\"337\" alt=\"\" />\n",
"date_published": "2021-11-03T09:01:05-06:00",
"url": "https://shawnyeager.org/2021/11/03/160105.html"
},
{
"id": "http://shawnyeager.micro.blog/2021/11/02/165845.html",
"content_html": "<p>Good morning, redux</p>\n<!-- raw HTML omitted -->\n",
"content_text": "Good morning, redux\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2021/8280e7aa96.jpg\" width=\"449\" height=\"600\" alt=\"\" />\n",
"date_published": "2021-11-02T09:58:45-06:00",
"url": "https://shawnyeager.org/2021/11/02/165845.html"
},
{
"id": "http://shawnyeager.micro.blog/2021/10/26/good-morning.html",
"content_html": "<p>Good morning.</p>\n<!-- raw HTML omitted -->\n",
"content_text": "Good morning.\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2021/670023a48b.jpg\" width=\"599\" height=\"600\" alt=\"\" />\n",
"date_published": "2021-10-26T01:26:26-06:00",
"url": "https://shawnyeager.org/2021/10/26/good-morning.html"
},
{
"id": "http://shawnyeager.micro.blog/2021/10/18/134544.html",
"content_html": "<p>🌅</p>\n<!-- raw HTML omitted -->\n",
"content_text": "🌅\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2021/e069a43bbc.jpg\" width=\"600\" height=\"600\" alt=\"\" />\n",
"date_published": "2021-10-18T06:45:44-06:00",
"url": "https://shawnyeager.org/2021/10/18/134544.html"
},
{
"id": "http://shawnyeager.micro.blog/2021/10/15/it-seems-to.html",
"content_html": "<p>“It seems to be a law of nature, inflexible and inexorable, that those who will not risk cannot win.”\n—John Paul Jones</p>\n<p>💬</p>\n",
"content_text": "“It seems to be a law of nature, inflexible and inexorable, that those who will not risk cannot win.”\n—John Paul Jones\n\n💬\n",
"date_published": "2021-10-15T09:14:01-06:00",
"url": "https://shawnyeager.org/2021/10/15/it-seems-to.html",
"tags": ["Quotes"]
},
{
"id": "http://shawnyeager.micro.blog/2021/10/11/through-our-eyes.html",
"content_html": "<p>“Through our eyes, the universe is perceiving itself. Through our ears, the universe is listening to its harmonies. We are the witnesses through which the universe becomes conscious of its glory, of its magnificence.” —Alan Watts</p>\n<p>💬</p>\n",
"content_text": "“Through our eyes, the universe is perceiving itself. Through our ears, the universe is listening to its harmonies. We are the witnesses through which the universe becomes conscious of its glory, of its magnificence.” —Alan Watts\n\n💬\n",
"date_published": "2021-10-11T02:19:35-06:00",
"url": "https://shawnyeager.org/2021/10/11/through-our-eyes.html",
"tags": ["Quotes"]
},
{
"id": "http://shawnyeager.micro.blog/2021/10/10/214618.html",
"content_html": "<p><!-- raw HTML omitted --><!-- raw HTML omitted --></p>\n",
"content_text": "\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2021/b1c9f49cf8.jpg\" width=\"599\" height=\"600\" alt=\"\" /><img src=\"https://cdn.uploads.micro.blog/25292/2021/4acd829e2d.jpg\" width=\"600\" height=\"599\" alt=\"\" />\n",
"date_published": "2021-10-10T14:46:18-06:00",
"url": "https://shawnyeager.org/2021/10/10/214618.html"
},
{
"id": "http://shawnyeager.micro.blog/2021/10/09/almost.html",
"content_html": "<p>Almost 👽</p>\n<p><!-- raw HTML omitted --><!-- raw HTML omitted --></p>\n",
"content_text": "Almost 👽\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2021/a1947369ee.jpg\" width=\"600\" height=\"599\" alt=\"\" /><img src=\"https://cdn.uploads.micro.blog/25292/2021/156543235e.jpg\" width=\"599\" height=\"600\" alt=\"\" />\n",
"date_published": "2021-10-09T01:07:25-06:00",
"url": "https://shawnyeager.org/2021/10/09/almost.html"
},
{
"id": "http://shawnyeager.micro.blog/2021/10/06/haroura-morocco.html",
"content_html": "<p>Harhoura, Morocco</p>\n<!-- raw HTML omitted -->\n",
"content_text": "Harhoura, Morocco\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2021/e8c591c608.jpg\" width=\"600\" height=\"450\" alt=\"\" />\n",
"date_published": "2021-10-06T01:53:50-06:00",
"url": "https://shawnyeager.org/2021/10/06/haroura-morocco.html"
},
{
"id": "http://shawnyeager.micro.blog/2021/10/05/its-so-hard.html",
"content_html": "<p>“It’s so hard to forget pain, but it’s even harder to remember sweetness. We have no scar to show for happiness. We learn so little from peace.”</p>\n<p>—Chuck Palahniuk</p>\n<p>💬</p>\n",
"content_text": "“It’s so hard to forget pain, but it’s even harder to remember sweetness. We have no scar to show for happiness. We learn so little from peace.”\n\n—Chuck Palahniuk\n\n💬\n",
"date_published": "2021-10-05T03:27:03-06:00",
"url": "https://shawnyeager.org/2021/10/05/its-so-hard.html",
"tags": ["Quotes"]
},
{
"id": "http://shawnyeager.micro.blog/2021/10/04/the-hands-that.html",
"content_html": "<p>“The hands that help are better than the lips that pray.”\n―Robert Ingersoll</p>\n<p>💬</p>\n",
"content_text": "“The hands that help are better than the lips that pray.” \n―Robert Ingersoll\n\n💬\n",
"date_published": "2021-10-04T01:53:52-06:00",
"url": "https://shawnyeager.org/2021/10/04/the-hands-that.html",
"tags": ["Quotes"]
},
{
"id": "http://shawnyeager.micro.blog/2021/10/03/harhoura-morocco.html",
"content_html": "<p>🌅 Harhoura, Morocco</p>\n<!-- raw HTML omitted -->\n",
"content_text": "🌅 Harhoura, Morocco\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2021/e7181a0661.jpg\" width=\"600\" height=\"600\" alt=\"\" />\n",
"date_published": "2021-10-03T13:45:45-06:00",
"url": "https://shawnyeager.org/2021/10/03/harhoura-morocco.html"
},
{
"id": "http://shawnyeager.micro.blog/2021/10/02/high-wire.html",
"content_html": "<p>High wire</p>\n<!-- raw HTML omitted -->\n",
"content_text": "High wire\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2021/80f608483f.jpg\" width=\"428\" height=\"600\" alt=\"\" />\n",
"date_published": "2021-10-02T13:10:49-06:00",
"url": "https://shawnyeager.org/2021/10/02/high-wire.html"
},
{
"id": "http://shawnyeager.micro.blog/2021/09/27/004424.html",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2021/a9230d3361.jpg\" width=\"599\" height=\"600\" alt=\"\" />\n",
"date_published": "2021-09-26T17:44:24-06:00",
"url": "https://shawnyeager.org/2021/09/27/004424.html"
},
{
"id": "http://shawnyeager.micro.blog/2021/09/20/good-morning.html",
"content_html": "<p>Good morning.</p>\n<!-- raw HTML omitted -->\n",
"content_text": "Good morning.\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2021/ef2dc58bba.jpg\" width=\"600\" height=\"600\" alt=\"\" />\n",
"date_published": "2021-09-20T02:44:21-06:00",
"url": "https://shawnyeager.org/2021/09/20/good-morning.html"
},
{
"id": "http://shawnyeager.micro.blog/2021/09/19/do-not-spoil.html",
"content_html": "<p>“Do not spoil what you have by desiring what you have not; remember that what you now have was once among the things you only hoped for.”\n—Epicurus</p>\n<p>💬</p>\n",
"content_text": "“Do not spoil what you have by desiring what you have not; remember that what you now have was once among the things you only hoped for.”\n—Epicurus\n\n💬\n",
"date_published": "2021-09-19T11:16:45-06:00",
"url": "https://shawnyeager.org/2021/09/19/do-not-spoil.html",
"tags": ["Quotes"]
},
{
"id": "http://shawnyeager.micro.blog/2021/09/18/a-new-friend.html",
"content_html": "<p>A new friend</p>\n<!-- raw HTML omitted -->\n",
"content_text": "A new friend\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2021/9e7e048c29.jpg\" width=\"450\" height=\"600\" alt=\"\" />\n",
"date_published": "2021-09-18T11:35:02-06:00",
"url": "https://shawnyeager.org/2021/09/18/a-new-friend.html"
},
{
"id": "http://shawnyeager.micro.blog/2021/09/13/085121.html",
"content_html": "<p><!-- raw HTML omitted --><!-- raw HTML omitted --></p>\n",
"content_text": "\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2021/c38a6faf50.jpg\" width=\"337\" height=\"600\" alt=\"\" /><img src=\"https://cdn.uploads.micro.blog/25292/2021/e72c11caa5.jpg\" width=\"450\" height=\"600\" alt=\"\" />\n",
"date_published": "2021-09-13T01:51:21-06:00",
"url": "https://shawnyeager.org/2021/09/13/085121.html"
},
{
"id": "http://shawnyeager.micro.blog/2021/09/07/stand-out.html",
"content_html": "<p>Stand out.</p>\n<!-- raw HTML omitted -->\n",
"content_text": "Stand out.\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2021/f0b06d9cc7.jpg\" width=\"450\" height=\"600\" alt=\"\" />\n",
"date_published": "2021-09-07T06:07:50-06:00",
"url": "https://shawnyeager.org/2021/09/07/stand-out.html"
},
{
"id": "http://shawnyeager.micro.blog/2021/09/05/watch-your-thoughts.html",
"content_html": "<p>“Watch your thoughts, they become your words; watch your words, they become your actions; watch your actions, they become your habits; watch your habits, they become your character; watch your character, it becomes your destiny.” —Lao Tzu</p>\n<p>💬</p>\n",
"content_text": "“Watch your thoughts, they become your words; watch your words, they become your actions; watch your actions, they become your habits; watch your habits, they become your character; watch your character, it becomes your destiny.” —Lao Tzu\n\n💬\n",
"date_published": "2021-09-05T04:29:50-06:00",
"url": "https://shawnyeager.org/2021/09/05/watch-your-thoughts.html",
"tags": ["Quotes"]
},
{
"id": "http://shawnyeager.micro.blog/2021/08/25/go-for-it.html",
"content_html": "<p>Go get it.</p>\n<!-- raw HTML omitted -->\n",
"content_text": "Go get it.\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2021/a948d0dcd9.jpg\" width=\"600\" height=\"600\" alt=\"\" />\n",
"date_published": "2021-08-25T01:31:09-06:00",
"url": "https://shawnyeager.org/2021/08/25/go-for-it.html"
},
{
"id": "http://shawnyeager.micro.blog/2021/08/22/140814.html",
"content_html": "<p>⛅️</p>\n<!-- raw HTML omitted -->\n",
"content_text": "⛅️\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2021/049a6e3afb.jpg\" width=\"599\" height=\"600\" alt=\"\" />\n",
"date_published": "2021-08-22T07:08:14-06:00",
"url": "https://shawnyeager.org/2021/08/22/140814.html"
},
{
"id": "http://shawnyeager.micro.blog/2021/08/21/blend-in.html",
"content_html": "<p>Camouflage</p>\n<!-- raw HTML omitted -->\n",
"content_text": "Camouflage\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2021/ea0f9a016e.jpg\" width=\"600\" height=\"600\" alt=\"\" />\n",
"date_published": "2021-08-21T14:16:36-06:00",
"url": "https://shawnyeager.org/2021/08/21/blend-in.html"
},
{
"id": "http://shawnyeager.micro.blog/2021/08/17/take-the-stairs.html",
"content_html": "<p>Take the stairs.</p>\n<!-- raw HTML omitted -->\n",
"content_text": "Take the stairs.\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2021/6644f9fc22.jpg\" width=\"600\" height=\"330\" alt=\"\" />\n",
"date_published": "2021-08-17T02:42:46-06:00",
"url": "https://shawnyeager.org/2021/08/17/take-the-stairs.html"
},
{
"id": "http://shawnyeager.micro.blog/2021/08/15/good-morning.html",
"content_html": "<p>Good morning. Get outside.</p>\n<!-- raw HTML omitted -->\n",
"content_text": "Good morning. Get outside.\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2021/3880ced1bd.jpg\" width=\"599\" height=\"600\" alt=\"\" />\n",
"date_published": "2021-08-15T01:42:47-06:00",
"url": "https://shawnyeager.org/2021/08/15/good-morning.html"
},
{
"id": "http://shawnyeager.micro.blog/2021/08/13/i-am-not.html",
"content_html": "<p>“I am not afraid of an army of lions led by a sheep; I am afraid of an army of sheep led by a lion.”\n—Alexander The Great</p>\n<p>💬</p>\n",
"content_text": "\"I am not afraid of an army of lions led by a sheep; I am afraid of an army of sheep led by a lion.\"\n—Alexander The Great\n\n💬\n",
"date_published": "2021-08-13T14:13:05-06:00",
"url": "https://shawnyeager.org/2021/08/13/i-am-not.html",
"tags": ["Quotes"]
},
{
"id": "http://shawnyeager.micro.blog/2021/08/11/it-is-not.html",
"content_html": "<p>“It is not famine, not earthquakes, not microbes, not cancer, but man himself that is man’s greatest danger to man, for the simple reason that there is no adequate protection against psychic epidemics, which are infinitely more devastating than the worst of natural catastrophes.”\n—Carl Jung</p>\n<p>💬</p>\n",
"content_text": "\"It is not famine, not earthquakes, not microbes, not cancer, but man himself that is man's greatest danger to man, for the simple reason that there is no adequate protection against psychic epidemics, which are infinitely more devastating than the worst of natural catastrophes.\"\n—Carl Jung\n\n💬\n",
"date_published": "2021-08-11T07:08:04-06:00",
"url": "https://shawnyeager.org/2021/08/11/it-is-not.html",
"tags": ["Quotes"]
},
{
"id": "http://shawnyeager.micro.blog/2021/08/06/stay-sharp.html",
"content_html": "<p>Stay sharp.</p>\n<!-- raw HTML omitted -->\n",
"content_text": "Stay sharp.\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2021/620a5855eb.jpg\" width=\"600\" height=\"600\" alt=\"\" />\n",
"date_published": "2021-08-06T05:19:46-06:00",
"url": "https://shawnyeager.org/2021/08/06/stay-sharp.html"
},
{
"id": "http://shawnyeager.micro.blog/2021/08/01/the-absolutely-vital.html",
"content_html": "<p>“The absolutely vital thing is to become capable of enjoyment, of living in the present, and of the discipline which this involves.”\n—Alan Watts</p>\n<p>💬</p>\n",
"content_text": "“The absolutely vital thing is to become capable of enjoyment, of living in the present, and of the discipline which this involves.”\n—Alan Watts\n\n💬\n",
"date_published": "2021-08-01T10:14:24-06:00",
"url": "https://shawnyeager.org/2021/08/01/the-absolutely-vital.html",
"tags": ["Quotes"]
},
{
"id": "http://shawnyeager.micro.blog/2021/07/31/231724.html",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2021/f8d222a260.jpg\" width=\"450\" height=\"600\" alt=\"\" />\n",
"date_published": "2021-07-31T16:17:24-06:00",
"url": "https://shawnyeager.org/2021/07/31/231724.html"
},
{
"id": "http://shawnyeager.micro.blog/2021/07/26/reeling-in-the.html",
"content_html": "<p>Reeling in the 🐟</p>\n<!-- raw HTML omitted -->\n",
"content_text": "Reeling in the 🐟\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2021/91eae6b14f.jpg\" width=\"600\" height=\"600\" alt=\"\" />\n",
"date_published": "2021-07-26T02:32:19-06:00",
"url": "https://shawnyeager.org/2021/07/26/reeling-in-the.html"
},
{
"id": "http://shawnyeager.micro.blog/2021/07/26/nothing-in-the.html",
"content_html": "<p>“Nothing in the world can take the place of Persistence. Talent will not; nothing is more common than unsuccessful men with talent. Genius will not; unrewarded genius is almost a proverb. Education will not; the world is full of educated derelicts.” —Calvin Coolidge</p>\n<p>💬</p>\n",
"content_text": "\"Nothing in the world can take the place of Persistence. Talent will not; nothing is more common than unsuccessful men with talent. Genius will not; unrewarded genius is almost a proverb. Education will not; the world is full of educated derelicts.\" —Calvin Coolidge\n\n💬\n",
"date_published": "2021-07-26T02:31:21-06:00",
"url": "https://shawnyeager.org/2021/07/26/nothing-in-the.html",
"tags": ["Quotes"]
},
{
"id": "http://shawnyeager.micro.blog/2021/07/17/142512.html",
"content_html": "<p>🌅</p>\n<!-- raw HTML omitted -->\n",
"content_text": "🌅 \n\n<img src=\"https://cdn.uploads.micro.blog/25292/2021/87ca76afb1.jpg\" width=\"576\" height=\"577\" alt=\"\" />\n",
"date_published": "2021-07-17T07:25:12-06:00",
"url": "https://shawnyeager.org/2021/07/17/142512.html"
},
{
"id": "http://shawnyeager.micro.blog/2021/07/15/111426.html",
"content_html": "<p>🌙🪁</p>\n<!-- raw HTML omitted -->\n",
"content_text": "🌙🪁\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2021/321a2df19f.jpg\" width=\"600\" height=\"600\" alt=\"\" />\n",
"date_published": "2021-07-15T04:14:26-06:00",
"url": "https://shawnyeager.org/2021/07/15/111426.html"
},
{
"id": "http://shawnyeager.micro.blog/2021/07/07/these-cats-live.html",
"content_html": "<p>These cats live on the boardwalk along the path I walk to the beach each morning. It’s all I can do not to scoop them up and take them home every time I see them.</p>\n<!-- raw HTML omitted -->\n",
"content_text": "These cats live on the boardwalk along the path I walk to the beach each morning. It’s all I can do not to scoop them up and take them home every time I see them.\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2021/4b0616bd9e.jpg\" width=\"600\" height=\"600\" alt=\"\" />\n",
"date_published": "2021-07-06T22:43:29-06:00",
"url": "https://shawnyeager.org/2021/07/07/these-cats-live.html"
},
{
"id": "http://shawnyeager.micro.blog/2021/07/06/we-think-we.html",
"content_html": "<p>“We think we understand the rules when we become adults, but what we really experience is a narrowing of the imagination.” —David Lynch</p>\n<p>💬</p>\n",
"content_text": "\"We think we understand the rules when we become adults, but what we really experience is a narrowing of the imagination.\" —David Lynch\n\n💬\n",
"date_published": "2021-07-06T07:09:31-06:00",
"url": "https://shawnyeager.org/2021/07/06/we-think-we.html",
"tags": ["Quotes"]
},
{
"id": "http://shawnyeager.micro.blog/2021/07/05/i-think-the.html",
"content_html": "<p>“I think the saddest people always try their hardest to make people happy, because they know what it’s like to feel absolutely worthless and they don’t want anyone else to feel like that.” —Robin Williams</p>\n<p>A beautiful mind</p>\n<p>💬</p>\n",
"content_text": "\"I think the saddest people always try their hardest to make people happy, because they know what it’s like to feel absolutely worthless and they don’t want anyone else to feel like that.\" —Robin Williams\n\nA beautiful mind\n\n💬\n",
"date_published": "2021-07-05T00:57:09-06:00",
"url": "https://shawnyeager.org/2021/07/05/i-think-the.html",
"tags": ["Quotes"]
},
{
"id": "http://shawnyeager.micro.blog/2021/07/04/sunburned-on-the.html",
"content_html": "<p><del>Born</del> Sunburned on the 4th of July. Worth it.</p>\n<p><!-- raw HTML omitted --><!-- raw HTML omitted --><!-- raw HTML omitted --><!-- raw HTML omitted --></p>\n",
"content_text": "~~Born~~ Sunburned on the 4th of July. Worth it.\n\n<img src=\"https://cdn.uploads.micro.blog/25292/2021/5e40a0d05c.jpg\" width=\"600\" height=\"600\" alt=\"\" /><img src=\"https://cdn.uploads.micro.blog/25292/2021/b233f3f686.jpg\" width=\"600\" height=\"600\" alt=\"\" /><img src=\"https://cdn.uploads.micro.blog/25292/2021/bd43db22e7.jpg\" width=\"599\" height=\"600\" alt=\"\" /><img src=\"https://cdn.uploads.micro.blog/25292/2021/7a25264a2d.jpg\" width=\"600\" height=\"600\" alt=\"\" />\n",
"date_published": "2021-07-04T15:13:41-06:00",
"url": "https://shawnyeager.org/2021/07/04/sunburned-on-the.html"
},
{
"id": "http://shawnyeager.micro.blog/2021/06/26/there-are-victories.html",
"content_html": "<p>“There are victories of the soul and spirit. Sometimes, even if you lose, you win.” —Elie Wiesel</p>\n<p>💬</p>\n",
"content_text": "“There are victories of the soul and spirit. Sometimes, even if you lose, you win.” —Elie Wiesel\n\n💬\n",
"date_published": "2021-06-26T12:42:22-06:00",
"url": "https://shawnyeager.org/2021/06/26/there-are-victories.html",
"tags": ["Quotes"]
},
{
"id": "http://shawnyeager.micro.blog/2021/06/25/215856.html",
"content_html": "<p>🌝</p>\n<!-- raw HTML omitted -->\n",
"content_text": "🌝 \n\n<img src=\"https://cdn.uploads.micro.blog/25292/2021/d627dca84d.jpg\" width=\"600\" height=\"599\" alt=\"\" />\n",
"date_published": "2021-06-25T14:58:56-06:00",
"url": "https://shawnyeager.org/2021/06/25/215856.html"
},
{