-
Notifications
You must be signed in to change notification settings - Fork 0
/
feed.json
5250 lines (4924 loc) · 423 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": "Mind of Aaron W",
"icon": "https://micro.blog/mindofaaronw/avatar.jpg",
"home_page_url": "https://mindofaaronw.com/",
"feed_url": "https://mindofaaronw.com/feed.json",
"items": [
{
"id": "http://mindofaaronw.micro.blog/2024/12/07/millers-crossing.html",
"title": "Miller\u0026#039;s Crossing, 1990 - ★★★★★",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "<p><img src=\"https://a.ltrbxd.com/resized/sm/upload/lz/aw/da/hw/ab3pnsTKp3BgcAFy0FgWBFBg9FL-0-600-0-900-crop.jpg?v=24a6039d0c\"/></p> <p>First time seeing this and it’s just amazing. Coens at their finest.</p>\n",
"date_published": "2024-12-07T12:23:45-06:00",
"url": "https://mindofaaronw.com/2024/12/07/millers-crossing.html"
},
{
"id": "http://mindofaaronw.micro.blog/2024/12/02/the-jewel-thief.html",
"title": "The Jewel Thief, 2023 - ★★★½",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "<p><img src=\"https://a.ltrbxd.com/resized/film-poster/1/0/0/1/5/4/9/1001549-the-jewel-thief-0-600-0-900-crop.jpg?v=a4b1a2c28c\"/></p> <p>Watched on Monday December 2, 2024.</p>\n",
"date_published": "2024-12-02T16:14:56-06:00",
"url": "https://mindofaaronw.com/2024/12/02/the-jewel-thief.html"
},
{
"id": "http://mindofaaronw.micro.blog/2024/12/01/sing.html",
"title": "Sing, 2016 - ★★★",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "<p><img src=\"https://a.ltrbxd.com/resized/sm/upload/mn/7p/6m/zn/lW0kUtXTOVlHTVhDO2VzNBACAHX-0-600-0-900-crop.jpg?v=b75340fe68\"/></p> <p>Watched on Sunday December 1, 2024.</p>\n",
"date_published": "2024-12-01T22:13:08-06:00",
"url": "https://mindofaaronw.com/2024/12/01/sing.html"
},
{
"id": "http://mindofaaronw.micro.blog/2024/12/01/i-dont-know.html",
"content_html": "<p>I don’t know what to make of this Seahawks team.</p>\n",
"content_text": "I don't know what to make of this Seahawks team.\n",
"date_published": "2024-12-01T16:28:31-06:00",
"url": "https://mindofaaronw.com/2024/12/01/i-dont-know.html",
"tags": ["sports","seattle"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/12/01/the-animation-style.html",
"content_html": "<p>The animation style of <strong>Arcane</strong> is still so impressive. Finally starting season 2!</p>\n",
"content_text": "The animation style of __Arcane__ is still so impressive. Finally starting season 2!\n",
"date_published": "2024-12-01T09:42:00-06:00",
"url": "https://mindofaaronw.com/2024/12/01/the-animation-style.html",
"tags": ["tv"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/11/29/den-of-thieves.html",
"title": "Den of Thieves, 2018 - ★★★★",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "<p><img src=\"https://a.ltrbxd.com/resized/film-poster/3/8/1/7/5/4/381754-den-of-thieves-0-600-0-900-crop.jpg?v=d9f57ee143\" /></p>\n<p>Watched on Friday November 29, 2024.</p>\n",
"date_published": "2024-11-29T20:43:51-06:00",
"url": "https://mindofaaronw.com/2024/11/29/den-of-thieves.html",
"tags": ["movies"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/11/29/wolfs.html",
"title": "Wolfs, 2024 - ★★★½",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "<p><img src=\"https://a.ltrbxd.com/resized/film-poster/7/8/9/0/1/0/789010-wolfs-0-600-0-900-crop.jpg?v=dc5ee2be96\" /></p>\n<p>Watched on Friday November 29, 2024.</p>\n",
"date_published": "2024-11-29T20:09:04-06:00",
"url": "https://mindofaaronw.com/2024/11/29/wolfs.html",
"tags": ["movies"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/11/28/just-got-an.html",
"content_html": "<p>Just got an email from Kagi with <a href=\"https://kagi.com/p/THANKS599C8542\">a free 3-month referral</a>. If anyone is wanting to try it out, I highly recommend it.</p>\n",
"content_text": "Just got an email from Kagi with [a free 3-month referral](https://kagi.com/p/THANKS599C8542). If anyone is wanting to try it out, I highly recommend it.\n",
"date_published": "2024-11-28T11:45:00-06:00",
"url": "https://mindofaaronw.com/2024/11/28/just-got-an.html",
"tags": ["apps"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/11/28/tv-on-the.html",
"content_html": "<p>TV on the Radio is a very underrated band.</p>\n",
"content_text": "TV on the Radio is a very underrated band.\n",
"date_published": "2024-11-28T11:21:05-06:00",
"url": "https://mindofaaronw.com/2024/11/28/tv-on-the.html",
"tags": ["music"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/11/28/enjoy-time-with.html",
"content_html": "<p>Enjoy time with family and friends this Thanksgiving!</p>\n",
"content_text": "Enjoy time with family and friends this Thanksgiving!\r\n",
"date_published": "2024-11-28T11:11:55-06:00",
"url": "https://mindofaaronw.com/2024/11/28/enjoy-time-with.html",
"tags": ["life"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/11/26/finished-reading-the.html",
"content_html": "<p>Finished reading📚: <a href=\"https://micro.blog/books/9780385348720\">The Splendid and the Vile</a> by Erik Larson</p>\n",
"content_text": "Finished reading📚: [The Splendid and the Vile](https://micro.blog/books/9780385348720) by Erik Larson \n",
"date_published": "2024-11-26T19:49:04-06:00",
"url": "https://mindofaaronw.com/2024/11/26/finished-reading-the.html",
"tags": ["books"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/11/23/the-penguin.html",
"title": "The Penguin, 2024 - ★★★★½",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "<p><img src=\"https://a.ltrbxd.com/resized/film-poster/1/2/4/7/2/7/2/1247272-the-penguin-2024-0-600-0-900-crop.jpg?v=eeeddc7b97\" /></p>\n<p>Watched on Saturday November 23, 2024.</p>\n",
"date_published": "2024-11-23T16:48:42-06:00",
"url": "https://mindofaaronw.com/2024/11/23/the-penguin.html",
"tags": ["tv"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/11/15/not-going-to.html",
"content_html": "<p>Not going to lie, I did not anticipate taking 2 MBA courses and working fulltime would be this time consuming.</p>\n",
"content_text": "Not going to lie, I did not anticipate taking 2 MBA courses and working fulltime would be this time consuming. \n",
"date_published": "2024-11-15T20:40:31-06:00",
"url": "https://mindofaaronw.com/2024/11/15/not-going-to.html",
"tags": ["work","life"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/11/03/anyone-tried-upnote.html",
"content_html": "<p>Anyone tried UpNote? It looks like a crossplatform Bear Notes in terms of aesthetics and UI.</p>\n",
"content_text": "Anyone tried UpNote? It looks like a crossplatform Bear Notes in terms of aesthetics and UI. \n",
"date_published": "2024-11-03T09:20:36-06:00",
"url": "https://mindofaaronw.com/2024/11/03/anyone-tried-upnote.html",
"tags": ["apps"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/11/03/walking-the-dog.html",
"content_html": "<p>Walking the dog this morning and sneezed. The dog looks up at me as if he’s a disappointed in me for it. Sorry Jack, you sneeze way more than I do and usually all over the house.</p>\n",
"content_text": "Walking the dog this morning and sneezed. The dog looks up at me as if he's a disappointed in me for it. Sorry Jack, you sneeze way more than I do and usually all over the house.\n",
"date_published": "2024-11-03T09:00:39-06:00",
"url": "https://mindofaaronw.com/2024/11/03/walking-the-dog.html",
"tags": ["dogs"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/11/02/trying-out-nileanes.html",
"content_html": "<p>Trying out Nileane’s <a href=\"https://github.com/nileane/TangerineUI-for-Mastodon\">Tangerine Theme</a> for Mastodon and it is quite gorgeous. A little cleaner and my eyes enjoy the larger icons and text.</p>\n",
"content_text": "Trying out Nileane's [Tangerine Theme](https://github.com/nileane/TangerineUI-for-Mastodon) for Mastodon and it is quite gorgeous. A little cleaner and my eyes enjoy the larger icons and text.\n",
"date_published": "2024-11-02T12:09:26-06:00",
"url": "https://mindofaaronw.com/2024/11/02/trying-out-nileanes.html",
"tags": ["tech"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/10/20/had-a-fun.html",
"content_html": "<p>Had a fun weekend in New Orleans. A very great city with great people, great food, and lots of fun!</p>\n<p><!-- raw HTML omitted --><!-- raw HTML omitted --><!-- raw HTML omitted --><!-- raw HTML omitted --></p>\n",
"content_text": "Had a fun weekend in New Orleans. A very great city with great people, great food, and lots of fun!\n\n<img src=\"https://cdn.uploads.micro.blog/96354/2024/img-6254.jpeg\" width=\"450\" height=\"600\" alt=\"\"><img src=\"https://cdn.uploads.micro.blog/96354/2024/img-6241.jpeg\" width=\"450\" height=\"600\" alt=\"\"><img src=\"https://cdn.uploads.micro.blog/96354/2024/img-6242.jpeg\" width=\"450\" height=\"600\" alt=\"\"><img src=\"https://cdn.uploads.micro.blog/96354/2024/img-6243.jpeg\" width=\"450\" height=\"600\" alt=\"\">\n",
"date_published": "2024-10-20T13:44:21-06:00",
"url": "https://mindofaaronw.com/2024/10/20/had-a-fun.html",
"tags": ["photos","travel"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/10/14/as-someone-who.html",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "<p>As someone who has used analytics, Excel, and even more advanced tools for statistical analysis for most of my working career, I am not looking forward to the Business Analytics course in my MBA this semester.</p>\n",
"date_published": "2024-10-14T20:28:23-06:00",
"url": "https://mindofaaronw.com/2024/10/14/as-someone-who.html",
"tags": ["school"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/10/13/172036.html",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "<img src=\"https://cdn.uploads.micro.blog/96354/2024/img-6226.jpeg\" width=\"450\" height=\"600\" alt=\"\">\n",
"date_published": "2024-10-13T16:20:36-06:00",
"url": "https://mindofaaronw.com/2024/10/13/172036.html",
"tags": ["photos"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/10/11/jason-isbells-new.html",
"content_html": "<p>Jason Isbell’s new <em>Live from the Ryman</em> album sounds so good.</p>\n",
"content_text": "Jason Isbell's new _Live from the Ryman_ album sounds so good.\n",
"date_published": "2024-10-11T18:38:09-06:00",
"url": "https://mindofaaronw.com/2024/10/11/jason-isbells-new.html",
"tags": ["music"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/09/30/logan-lucky.html",
"title": "Logan Lucky, 2017 - ★★★★",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "<p><img src=\"https://a.ltrbxd.com/resized/sm/upload/oh/pn/ri/gu/mQrhrBaaHvRfBQq0Px3HtVbH9iE-0-600-0-900-crop.jpg?v=2334b4b53b\" /></p>\n<p>Still such an awesome film.</p>\n",
"date_published": "2024-09-30T11:25:33-06:00",
"url": "https://mindofaaronw.com/2024/09/30/logan-lucky.html",
"tags": ["movies"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/09/29/the-wild-robot.html",
"title": "The Wild Robot, 2024 - ★★★★",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "<p><img src=\"https://a.ltrbxd.com/resized/film-poster/1/0/7/1/1/9/6/1071196-the-wild-robot-0-600-0-900-crop.jpg?v=a70bdbaea0\" /></p>\n<p>This is real good, Chris.</p>\n",
"date_published": "2024-09-29T19:48:49-06:00",
"url": "https://mindofaaronw.com/2024/09/29/the-wild-robot.html",
"tags": ["movies"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/09/29/cirque-du-soleil.html",
"title": "Cirque du Soleil: Without a Net, 2022 - ★★★½",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "<p><img src=\"https://a.ltrbxd.com/resized/film-poster/9/4/2/7/0/5/942705-cirque-du-soleil-without-a-net-0-600-0-900-crop.jpg?v=b89bf1cd60\" /></p>\n<p>Watched on Sunday September 29, 2024.</p>\n",
"date_published": "2024-09-29T15:52:29-06:00",
"url": "https://mindofaaronw.com/2024/09/29/cirque-du-soleil.html",
"tags": ["movies"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/09/28/im-one-of.html",
"content_html": "<p>I’m one of the few who seems to be enjoying <em>The Rings of Power</em> but please stop saying it in the dialogue. One of the few things I can’t stand.</p>\n",
"content_text": "I'm one of the few who seems to be enjoying _The Rings of Power_ but please stop saying it in the dialogue. One of the few things I can't stand.\n",
"date_published": "2024-09-28T11:18:02-06:00",
"url": "https://mindofaaronw.com/2024/09/28/im-one-of.html",
"tags": ["tv"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/09/28/neat-little-history.html",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "<p>Neat little <a href=\"https://petapixel.com/minolta-history/\">history of the Minolta brand</a>. I remember my mom having one in the late 90s that she dubbed the “best camera she ever used”. I still have that 35mm film camera, maybe I should break that out.</p>\n",
"date_published": "2024-09-28T10:02:49-06:00",
"url": "https://mindofaaronw.com/2024/09/28/neat-little-history.html",
"tags": ["articles"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/09/28/inside-out.html",
"title": "Inside Out 2, 2024 - ★★★½",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "<p><img src=\"https://a.ltrbxd.com/resized/film-poster/9/2/1/5/7/8/921578-inside-out-2-0-600-0-900-crop.jpg?v=efa25e5cca\" /></p>\n<p>A nice sequel to the original. Anxiety is well done and the voice casting is still fantastic.</p>\n",
"date_published": "2024-09-28T09:05:31-06:00",
"url": "https://mindofaaronw.com/2024/09/28/inside-out.html",
"tags": ["movies"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/09/28/i-really-dislike.html",
"content_html": "<p>I really dislike the dark/tinted icons.</p>\n",
"content_text": "I really dislike the dark/tinted icons.\n",
"date_published": "2024-09-28T08:58:26-06:00",
"url": "https://mindofaaronw.com/2024/09/28/i-really-dislike.html",
"tags": ["apps","apple"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/09/22/im-years-old.html",
"content_html": "<p>I’m 34 years old and I just discovered I like Phish. I think I’ve finally hit my Dad Rock era.</p>\n",
"content_text": "I'm 34 years old and I just discovered I like Phish. I think I've finally hit my Dad Rock era.\n",
"date_published": "2024-09-22T10:37:12-06:00",
"url": "https://mindofaaronw.com/2024/09/22/im-years-old.html",
"tags": ["music"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/09/19/calibre-is-such.html",
"content_html": "<p>Calibre is such a horrendous looking app. Why can’t we have DRM removal and a modern app in one?</p>\n",
"content_text": "Calibre is such a horrendous looking app. Why can't we have DRM removal and a modern app in one?\n",
"date_published": "2024-09-19T05:58:36-06:00",
"url": "https://mindofaaronw.com/2024/09/19/calibre-is-such.html",
"tags": ["books","apps"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/09/15/rebel-ridge.html",
"title": "Rebel Ridge, 2024 - ★★★★",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "<p><img src=\"https://a.ltrbxd.com/resized/film-poster/5/7/1/7/9/1/571791-rebel-ridge-0-600-0-900-crop.jpg?v=07dbdf377a\" /></p>\n<p>Watched on Sunday September 15, 2024.</p>\n",
"date_published": "2024-09-15T19:22:03-06:00",
"url": "https://mindofaaronw.com/2024/09/15/rebel-ridge.html",
"tags": ["movies"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/09/15/i-will-never.html",
"content_html": "<p>I will never get tired of watching Derrick Henry play football.</p>\n",
"content_text": "I will never get tired of watching Derrick Henry play football.\n",
"date_published": "2024-09-15T12:58:39-06:00",
"url": "https://mindofaaronw.com/2024/09/15/i-will-never.html",
"tags": ["sports"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/09/12/cell-phone-plans.html",
"title": "Cell Phone Plans and Helium Mobile",
"content_html": "<p>I’m not a crypto follower by any means, but as someone shopping around for different cell plans, I came across <a href=\"https://hellohelium.com\">Helium Mobile</a> and I really wish it was sustainable and scalable. This is everything I love in terms of crowdsourced, affordable, (hopefully) reliable, and more. It just feels like a giant scam because it is related to crypto.</p>\n<p>I probably won’t give it a shot and will end up with something like Mint, Visible, or another MVNO, but my heart wants Helium to be successful.</p>\n",
"content_text": "I'm not a crypto follower by any means, but as someone shopping around for different cell plans, I came across [Helium Mobile](https://hellohelium.com) and I really wish it was sustainable and scalable. This is everything I love in terms of crowdsourced, affordable, (hopefully) reliable, and more. It just feels like a giant scam because it is related to crypto. \r\n\r\nI probably won't give it a shot and will end up with something like Mint, Visible, or another MVNO, but my heart wants Helium to be successful.\n",
"date_published": "2024-09-12T19:54:16-06:00",
"url": "https://mindofaaronw.com/2024/09/12/cell-phone-plans.html",
"tags": ["tech"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/09/12/finished-reading-pines.html",
"content_html": "<p>Finished reading 📚: <a href=\"https://micro.blog/books/9781529099805\">Pines</a> by Blake Crouch. There’s something about Blake Crouch novels and how they completely draw me in. <em>Pines</em> is quite good and the twist at the end was unexpected.</p>\n",
"content_text": "Finished reading 📚: [Pines](https://micro.blog/books/9781529099805) by Blake Crouch. There's something about Blake Crouch novels and how they completely draw me in. _Pines_ is quite good and the twist at the end was unexpected. \n",
"date_published": "2024-09-12T06:08:43-06:00",
"url": "https://mindofaaronw.com/2024/09/12/finished-reading-pines.html",
"tags": ["books"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/09/09/rip-lord-vader.html",
"content_html": "<p>RIP Lord Vader. Thank you from all the nerds out there like me.</p>\n",
"content_text": "RIP Lord Vader. Thank you from all the nerds out there like me.\n",
"date_published": "2024-09-09T20:06:38-06:00",
"url": "https://mindofaaronw.com/2024/09/09/rip-lord-vader.html"
},
{
"id": "http://mindofaaronw.micro.blog/2024/09/07/android-thoughts.html",
"title": "Android Thoughts",
"content_html": "<p>Lately I’ve been consumed with the thought of going to an Android phone and going back to Linux and Windows. The new Pixel - while I don’t love all the AI - is still trying to innovate and offers a fresh take on a phone. Or the Nothing phones, those are incredibly fascinating!</p>\n<p>I use Windows for gaming and at work, so it wouldn’t be completely foreign to switch, but it would present a lot of challenges with communicating with friends and family, re-purchasing/rediscovering new apps in the Android ecosystem, and more. Linux has always been a desirable option to me too and I’ve heard that Linux gaming is quite good thanks to Steam/Valve.</p>\n<p>All of this does seem silly though with the number of Apple products that I own.</p>\n",
"content_text": "Lately I've been consumed with the thought of going to an Android phone and going back to Linux and Windows. The new Pixel - while I don't love all the AI - is still trying to innovate and offers a fresh take on a phone. Or the Nothing phones, those are incredibly fascinating! \r\n\r\nI use Windows for gaming and at work, so it wouldn't be completely foreign to switch, but it would present a lot of challenges with communicating with friends and family, re-purchasing/rediscovering new apps in the Android ecosystem, and more. Linux has always been a desirable option to me too and I've heard that Linux gaming is quite good thanks to Steam/Valve.\r\n\r\nAll of this does seem silly though with the number of Apple products that I own.\n",
"date_published": "2024-09-07T18:53:44-06:00",
"url": "https://mindofaaronw.com/2024/09/07/android-thoughts.html",
"tags": ["tech","apple"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/09/07/oldboy.html",
"title": "Oldboy, 2003 - ★★★★½",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "<p><img src=\"https://a.ltrbxd.com/resized/film-poster/5/1/4/5/4/51454-oldboy-0-600-0-900-crop.jpg?v=294dbcadef\" /></p>\n<p>I think I could eat more fried dumplings than he did.</p>\n",
"date_published": "2024-09-07T18:11:03-06:00",
"url": "https://mindofaaronw.com/2024/09/07/oldboy.html",
"tags": ["movies"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/09/07/im-not-usually.html",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "<p>I’m not usually a fan of Swatch or Omega, but I’m really digging <a href=\"https://www.swatch.com/en-us/mission-to-the-moon-so33m100/SO33M100.html\">this one</a>. Appealing to the inner space nerd in me.</p>\n",
"date_published": "2024-09-07T08:51:31-06:00",
"url": "https://mindofaaronw.com/2024/09/07/im-not-usually.html",
"tags": ["watches"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/09/07/the-killer.html",
"title": "The Killer, 2024 - ★★★",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "<p><img src=\"https://a.ltrbxd.com/resized/film-poster/8/7/3/2/6/8/873268-the-killer-0-600-0-900-crop.jpg?v=70d71c88fc\" /></p>\n<p>We need more Omar Sy!</p>\n",
"date_published": "2024-09-07T08:31:04-06:00",
"url": "https://mindofaaronw.com/2024/09/07/the-killer.html",
"tags": ["movies"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/09/05/i-am-so.html",
"content_html": "<p>I am so glad football is back.</p>\n",
"content_text": "I am so glad football is back.\n",
"date_published": "2024-09-05T19:29:54-06:00",
"url": "https://mindofaaronw.com/2024/09/05/i-am-so.html",
"tags": ["sports"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/09/02/the-instigators.html",
"title": "The Instigators, 2024 - ★★★",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "<p><img src=\"https://a.ltrbxd.com/resized/film-poster/9/5/4/9/7/1/954971-the-instigators-0-600-0-900-crop.jpg?v=2c9aace91d\" /></p>\n<p>Not as bad as some reviews are saying. The ending is weird though.</p>\n",
"date_published": "2024-09-02T20:05:15-06:00",
"url": "https://mindofaaronw.com/2024/09/02/the-instigators.html",
"tags": ["movies"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/09/02/finally-had-a.html",
"title": "Greece Cruise Photos",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "<p>Finally had a chance to get some photos off the camera from Greece. I chose to use the camera to only shoot in black and white, and used my phone for color. These turned out better than expected! Here are my favorites.</p>\n<p>Photo 1: Taken in the harbor in Elounda, Greece.</p>\n<p><img style=\"float: left;\" title=\"SUNP0223.jpeg\" src=\"https://cdn.uploads.micro.blog/96354/2024/sunp0223.jpeg\" alt=\"\" width=\"600\" height=\"450\" border=\"0\" /></p>\n<p> </p>\n<p> </p>\n<p> </p>\n<p> </p>\n<p> </p>\n<p> </p>\n<p> </p>\n<p> </p>\n<p> </p>\n<p> </p>\n<p>Photo 2: Taken in an alleyway in Elounda.</p>\n<p><img style=\"float: left;\" title=\"SUNP0216.jpeg\" src=\"https://cdn.uploads.micro.blog/96354/2024/sunp0216.jpeg\" alt=\"B&W of a French bulldog lying in an alleyway.\" width=\"600\" height=\"450\" border=\"0\" /></p>\n<p> </p>\n<p> </p>\n<p> </p>\n<p> </p>\n<p> </p>\n<p> </p>\n<p> </p>\n<p> </p>\n<p> </p>\n<p> </p>\n<p>Photo 3: Taken at the top of Santorini overlooking the cruise ship we were on.</p>\n<p><img style=\"float: left;\" title=\"SUNP0251.jpeg\" src=\"https://cdn.uploads.micro.blog/96354/2024/sunp0251.jpeg\" alt=\"\" width=\"599\" height=\"345\" border=\"0\" /></p>\n<p> </p>\n<p> </p>\n<p> </p>\n<p> </p>\n<p> </p>\n<p> </p>\n<p><br />Photo 4: Little Venice in Mykonos. Wish I had a color version of this one, but still turned out good.</p>\n<p><img style=\"float: left;\" title=\"SUNP0259.jpeg\" src=\"https://cdn.uploads.micro.blog/96354/2024/sunp0259.jpeg\" alt=\"\" width=\"600\" height=\"591\" border=\"0\" /></p>\n",
"date_published": "2024-09-02T16:28:02-06:00",
"url": "https://mindofaaronw.com/2024/09/02/finally-had-a.html",
"tags": ["photos","travel","greece"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/09/01/a-lovely-interview.html",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "<p>A <a href=\"https://www.polygon.com/animation-cartoons/446701/the-wild-robot-chris-sanders-interview-animation\">lovely interview</a> with Chris Sanders (of <em>How to Train your</em> <em>Dragon</em> fame) on his new film. Many great thoughts but perhaps this is the most crucial:</p>\n<blockquote>\n<p>kindness can be a survival skill</p>\n</blockquote>\n<p>I can’t wait to see <em>The Wild Robot</em>.</p>\n",
"date_published": "2024-09-01T16:00:19-06:00",
"url": "https://mindofaaronw.com/2024/09/01/a-lovely-interview.html",
"tags": ["movies","articles"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/09/01/been-enjoying-feedbin.html",
"content_html": "<p>Been enjoying Feedbin and ultimately ended up subscribing. The sync is consistent and so fast! The biggest surprise is the included Airshow podcast player. Removes the hassle of setting up alternatives like Castro and Overcast. There are some key features missing though.</p>\n",
"content_text": "Been enjoying Feedbin and ultimately ended up subscribing. The sync is consistent and so fast! The biggest surprise is the included Airshow podcast player. Removes the hassle of setting up alternatives like Castro and Overcast. There are some key features missing though.\n",
"date_published": "2024-09-01T08:18:43-06:00",
"url": "https://mindofaaronw.com/2024/09/01/been-enjoying-feedbin.html",
"tags": ["apps"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/08/31/the-fall-guy.html",
"title": "The Fall Guy, 2024 - ★★★½",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "<p><img src=\"https://a.ltrbxd.com/resized/film-poster/6/6/7/5/5/0/667550-the-fall-guy-0-600-0-900-crop.jpg?v=5f491a1281\" /></p>\n<p>Watched on Saturday August 31, 2024.</p>\n",
"date_published": "2024-08-31T20:46:48-06:00",
"url": "https://mindofaaronw.com/2024/08/31/the-fall-guy.html",
"tags": ["movies"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/08/31/kinds-of-kindness.html",
"title": "Kinds of Kindness, 2024 - ★★★½",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "<p><img src=\"https://a.ltrbxd.com/resized/film-poster/9/2/8/2/6/1/928261-kinds-of-kindness-0-600-0-900-crop.jpg?v=719ff64e2b\" /></p>\n<p>Don’t expect <i>Poor Things </i>in this one.</p>\n",
"date_published": "2024-08-31T14:15:05-06:00",
"url": "https://mindofaaronw.com/2024/08/31/kinds-of-kindness.html",
"tags": ["movies"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/08/31/a-great-article.html",
"content_html": "<p>A great <a href=\"https://www.polygon.com/tv/444096/slow-horses-jackson-lamb-interview-showrunner\">article</a> about Gary Oldman’s portrayal of Jackson Lamb in <em>Slow Horses</em>. This is one of the Oldman’s finest performances in my eyes. Can’t wait to see the new season.</p>\n",
"content_text": "A great [article](https://www.polygon.com/tv/444096/slow-horses-jackson-lamb-interview-showrunner) about Gary Oldman’s portrayal of Jackson Lamb in _Slow Horses_. This is one of the Oldman’s finest performances in my eyes. Can’t wait to see the new season. \n",
"date_published": "2024-08-31T13:31:39-06:00",
"url": "https://mindofaaronw.com/2024/08/31/a-great-article.html",
"tags": ["tv","articles"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/08/30/the-snowman.html",
"title": "The Snowman, 2017 - ★",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "<p><img src=\"https://a.ltrbxd.com/resized/film-poster/3/0/7/9/8/0/307980-the-snowman-0-600-0-900-crop.jpg?v=31c6d0fd99\" /></p>\n<p>I couldn’t even finish this. I can’t tell you what’s happening. I just know it has an unbelievable cast for some reason.</p>\n",
"date_published": "2024-08-30T16:51:03-06:00",
"url": "https://mindofaaronw.com/2024/08/30/the-snowman.html",
"tags": ["movies"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/08/28/presumed-innocent-is.html",
"content_html": "<p><strong>Presumed Innocent</strong> is very good. Highly recommend if you enjoy legal dramas.</p>\n",
"content_text": "__Presumed Innocent__ is very good. Highly recommend if you enjoy legal dramas. \n",
"date_published": "2024-08-28T20:20:19-06:00",
"url": "https://mindofaaronw.com/2024/08/28/presumed-innocent-is.html",
"tags": ["tv"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/08/27/why-cant-you.html",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "<p>Why can’t you remove the Special Coverage section in Apple News?</p>\n",
"date_published": "2024-08-27T11:31:30-06:00",
"url": "https://mindofaaronw.com/2024/08/27/why-cant-you.html",
"tags": ["apple"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/08/25/twisters.html",
"title": "Twisters, 2024 - ★★★★",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "<p><img src=\"https://a.ltrbxd.com/resized/film-poster/6/4/1/6/0/8/641608-twisters-0-600-0-900-crop.jpg?v=b1bb3d5cc7\" /></p>\n<p>Watched on Sunday August 25, 2024.</p>\n",
"date_published": "2024-08-25T20:22:10-06:00",
"url": "https://mindofaaronw.com/2024/08/25/twisters.html",
"tags": ["movies"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/08/24/naked-gun-the.html",
"title": "Naked Gun 33⅓: The Final Insult, 1994 - ★★★",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "<p><img src=\"https://a.ltrbxd.com/resized/film-poster/2/7/7/7/5/27775-the-naked-gun-33-the-final-insult-0-600-0-900-crop.jpg?v=85cd9f0336\" /></p>\n<p>Leslie Nielsen was such a treat.</p>\n",
"date_published": "2024-08-24T11:33:15-06:00",
"url": "https://mindofaaronw.com/2024/08/24/naked-gun-the.html",
"tags": ["movies"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/08/19/never-thought-id.html",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "<p>Never thought I’d say these words. But today I start the journey to obtaining an MBA.</p>\n",
"date_published": "2024-08-19T16:50:42-06:00",
"url": "https://mindofaaronw.com/2024/08/19/never-thought-id.html",
"tags": ["school"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/08/17/finished-reading-morning.html",
"content_html": "<p>Finished reading 📚: <a href=\"https://micro.blog/books/9780345539854\">Morning Star (Red Rising Series Book 3)</a> by Pierce Brown\n<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\nAnother excellent book in the Red Rising series. I love this series.</p>\n",
"content_text": "Finished reading 📚: [Morning Star (Red Rising Series Book 3)](https://micro.blog/books/9780345539854) by Pierce Brown\r\n<br>\r\n<br>\r\nAnother excellent book in the Red Rising series. I love this series.\n",
"date_published": "2024-08-17T08:38:10-06:00",
"url": "https://mindofaaronw.com/2024/08/17/finished-reading-morning.html",
"tags": ["books"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/08/15/godzilla-kong-the.html",
"title": "Godzilla × Kong: The New Empire, 2024 - ★★★",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "<p><img src=\"https://a.ltrbxd.com/resized/film-poster/7/3/9/5/2/2/739522-godzilla-x-kong-the-new-empire-0-600-0-900-crop.jpg?v=7c2eb6e620\" /></p>\n<p>I don’t know why but I enjoyed it. Just let me watch monster fights and I’ll probably keep watching these.</p>\n",
"date_published": "2024-08-15T18:22:31-06:00",
"url": "https://mindofaaronw.com/2024/08/15/godzilla-kong-the.html",
"tags": ["movies"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/08/15/the-ministry-of.html",
"title": "The Ministry of Ungentlemanly Warfare, 2024 - ★★★½",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "<p><img src=\"https://a.ltrbxd.com/resized/film-poster/7/1/7/1/2/6/717126-the-ministry-of-ungentlemanly-warfare-0-600-0-900-crop.jpg?v=63fba9c252\" /></p>\n<p>A fun action romp with a stellar cast. Had a ton of fun with this one.</p>\n",
"date_published": "2024-08-15T18:21:15-06:00",
"url": "https://mindofaaronw.com/2024/08/15/the-ministry-of.html",
"tags": ["movies"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/08/07/oceans-thirteen.html",
"title": "Ocean\u0026#039;s Thirteen, 2007 - ★★★★",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "<p><img src=\"https://a.ltrbxd.com/resized/film-poster/5/1/7/6/1/51761-ocean-s-thirteen-0-600-0-900-crop.jpg?v=ada66df834\" /></p>\n<p>Watched on Sunday August 4, 2024.</p>\n",
"date_published": "2024-08-07T08:41:15-06:00",
"url": "https://mindofaaronw.com/2024/08/07/oceans-thirteen.html",
"tags": ["movies"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/08/07/oceans-twelve.html",
"title": "Ocean\u0026#039;s Twelve, 2004 - ★★★",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "<p><img src=\"https://a.ltrbxd.com/resized/film-poster/5/1/8/8/8/51888-ocean-s-twelve-0-600-0-900-crop.jpg?v=762e2eac3c\" /></p>\n<p>Watched on Sunday August 4, 2024.</p>\n",
"date_published": "2024-08-07T08:40:57-06:00",
"url": "https://mindofaaronw.com/2024/08/07/oceans-twelve.html",
"tags": ["movies"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/08/07/the-naked-gun.html",
"title": "The Naked Gun 2½: The Smell of Fear, 1991 - ★★★",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "<p><img src=\"https://a.ltrbxd.com/resized/film-poster/2/7/2/8/3/27283-the-naked-gun-2-the-smell-of-fear-0-600-0-900-crop.jpg?v=678103403b\" /></p>\n<p>Watched on Saturday August 3, 2024.</p>\n",
"date_published": "2024-08-07T08:40:35-06:00",
"url": "https://mindofaaronw.com/2024/08/07/the-naked-gun.html",
"tags": ["movies"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/08/05/i-think-im.html",
"content_html": "<p>I think I’m a cruise person. This is quite fun.</p>\n",
"content_text": "I think I’m a cruise person. This is quite fun. \n",
"date_published": "2024-08-05T05:58:35-06:00",
"url": "https://mindofaaronw.com/2024/08/05/i-think-im.html",
"tags": ["travel"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/07/31/if-we-dont.html",
"content_html": "<p>If we don’t get an epic dragon fight in <strong>House of the Dragon</strong> S2 I think it’s time to riot.</p>\n",
"content_text": "If we don’t get an epic dragon fight in __House of the Dragon__ S2 I think it’s time to riot. \n",
"date_published": "2024-07-31T05:57:55-06:00",
"url": "https://mindofaaronw.com/2024/07/31/if-we-dont.html",
"tags": ["tv"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/07/28/is-feedbin-still.html",
"content_html": "<p>Is Feedbin still $5/month? What are some perks over using native iCloud syncing?</p>\n",
"content_text": "Is Feedbin still $5/month? What are some perks over using native iCloud syncing?\n",
"date_published": "2024-07-28T19:00:33-06:00",
"url": "https://mindofaaronw.com/2024/07/28/is-feedbin-still.html",
"tags": ["tech","apps"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/07/28/dirty-harry.html",
"title": "Dirty Harry, 1971 - ★★★★",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "<p><img src=\"https://a.ltrbxd.com/resized/film-poster/5/1/1/8/5/51185-dirty-harry-0-600-0-900-crop.jpg?v=d0d3388e17\" /></p>\n<p>Dirty Harry rocks, I don’t care what folks say today.</p>\n",
"date_published": "2024-07-28T14:32:06-06:00",
"url": "https://mindofaaronw.com/2024/07/28/dirty-harry.html",
"tags": ["movies"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/07/27/twister.html",
"title": "Twister, 1996 - ★★★½",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "<p><img src=\"https://a.ltrbxd.com/resized/film-poster/5/1/4/6/0/51460-twister-0-600-0-900-crop.jpg?v=fb3e6b239c\" /></p>\n<p>Watched on Saturday July 27, 2024.</p>\n",
"date_published": "2024-07-27T19:27:53-06:00",
"url": "https://mindofaaronw.com/2024/07/27/twister.html",
"tags": ["movies"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/07/26/the-naked-gun.html",
"title": "The Naked Gun: From the Files of Police Squad!, 1988 - ★★★★",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "<p><img src=\"https://a.ltrbxd.com/resized/film-poster/2/7/2/8/4/27284-the-naked-gun-0-600-0-900-crop.jpg?v=7f848fb394\" /></p>\n<p>Watched on Monday July 22, 2024.</p>\n",
"date_published": "2024-07-26T19:55:52-06:00",
"url": "https://mindofaaronw.com/2024/07/26/the-naked-gun.html",
"tags": ["movies"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/07/22/darn-flight-delays.html",
"content_html": "<p>Darn flight delays.</p>\n",
"content_text": "Darn flight delays. \n",
"date_published": "2024-07-22T10:44:05-06:00",
"url": "https://mindofaaronw.com/2024/07/22/darn-flight-delays.html",
"tags": ["travel","work"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/07/13/the-beekeeper.html",
"title": "The Beekeeper, 2024 - ★★★½",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "<p><img src=\"https://a.ltrbxd.com/resized/film-poster/7/8/0/1/7/0/780170-the-beekeeper-0-600-0-900-crop.jpg?v=bf94429baa\" /></p>\n<p>This is an absolute delight of an action movie.</p>\n",
"date_published": "2024-07-13T16:05:18-06:00",
"url": "https://mindofaaronw.com/2024/07/13/the-beekeeper.html",
"tags": ["movies"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/07/13/the-bourne-ultimatum.html",
"title": "The Bourne Ultimatum, 2007 - ★★★★",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "<p><img src=\"https://a.ltrbxd.com/resized/film-poster/5/0/2/2/3/50223-the-bourne-ultimatum-0-600-0-900-crop.jpg?v=009e78c9f0\" /></p>\n<p>Watched on Saturday July 13, 2024.</p>\n",
"date_published": "2024-07-13T11:43:26-06:00",
"url": "https://mindofaaronw.com/2024/07/13/the-bourne-ultimatum.html",
"tags": ["movies"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/07/13/finished-fallout-s.html",
"content_html": "<p>Finished <strong>Fallout</strong> S1. Very much enjoyed it. Walton Goggins is awesome in it.</p>\n",
"content_text": "Finished __Fallout__ S1. Very much enjoyed it. Walton Goggins is awesome in it. \n",
"date_published": "2024-07-13T11:25:11-06:00",
"url": "https://mindofaaronw.com/2024/07/13/finished-fallout-s.html",
"tags": ["tv"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/07/11/s-of-the.html",
"content_html": "<p>S3 of <strong>The Bear</strong> is not very good.</p>\n",
"content_text": "S3 of __The Bear__ is not very good. \n",
"date_published": "2024-07-11T07:47:11-06:00",
"url": "https://mindofaaronw.com/2024/07/11/s-of-the.html",
"tags": ["tv"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/07/09/fascinated-by-this.html",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "<p>Fascinated by this YT channel - <a href=\"https://www.youtube.com/@nevertoosmall\">Never Too Small</a>. And while I’m confident I could never live in a tiny home like this, I can’t stop watching these.</p>\n",
"date_published": "2024-07-09T17:41:04-06:00",
"url": "https://mindofaaronw.com/2024/07/09/fascinated-by-this.html",
"tags": ["youtube"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/07/09/finally-have-what.html",
"content_html": "<p>Finally have what feels like a moment to relax after moving and everything that goes with that! Feels like I’ve been gone for a month. Looking forward to getting back into somewhat of a routine.</p>\n",
"content_text": "Finally have what feels like a moment to relax after moving and everything that goes with that! Feels like I've been gone for a month. Looking forward to getting back into somewhat of a routine.\n",
"date_published": "2024-07-09T17:37:45-06:00",
"url": "https://mindofaaronw.com/2024/07/09/finally-have-what.html",
"tags": ["work","life"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/07/04/home-ownership-and.html",
"content_html": "<p>Home ownership and the projects that come with it. Who knew getting a screw off would turn into a half day affair 😅</p>\n",
"content_text": "Home ownership and the projects that come with it. Who knew getting a screw off would turn into a half day affair 😅\n",
"date_published": "2024-07-04T13:18:58-06:00",
"url": "https://mindofaaronw.com/2024/07/04/home-ownership-and.html",
"tags": ["life"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/06/29/move-complete-now.html",
"content_html": "<p>Move complete. Now time to make a house a home.</p>\n",
"content_text": "Move complete. Now time to make a house a home.\n",
"date_published": "2024-06-29T18:11:43-06:00",
"url": "https://mindofaaronw.com/2024/06/29/move-complete-now.html",
"tags": ["life"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/06/23/packing-up-and.html",
"content_html": "<p>Packing up and moving to a new house in DFW this week. Every time I move I take advantage and downsize some belongings. But moving still might be the most frustrating thing in general.</p>\n",
"content_text": "Packing up and moving to a new house in DFW this week. Every time I move I take advantage and downsize some belongings. But moving still might be the most frustrating thing in general.\n",
"date_published": "2024-06-23T09:23:41-06:00",
"url": "https://mindofaaronw.com/2024/06/23/packing-up-and.html",
"tags": ["life"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/06/17/finished-reading-all.html",
"content_html": "<p>Finished reading 📚: <a href=\"https://micro.blog/books/9780679744399\">All the Pretty Horses</a> by Cormac McCarthy \n<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n<em>“Scars have the strange power to remind us that our past is real."</em>\n<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\nMcCarthy’s first breakthrough, it is clear why. If this is your first time reading McCarthy, don’t do him a disservice - read every line or you will miss so much.</p>\n",
"content_text": "Finished reading 📚: [All the Pretty Horses](https://micro.blog/books/9780679744399) by Cormac McCarthy \r\n<br>\r\n<br>\r\n_\"Scars have the strange power to remind us that our past is real.\"_\r\n<br>\r\n<br>\r\nMcCarthy's first breakthrough, it is clear why. If this is your first time reading McCarthy, don't do him a disservice - read every line or you will miss so much.\n",
"date_published": "2024-06-17T05:34:48-06:00",
"url": "https://mindofaaronw.com/2024/06/17/finished-reading-all.html",
"tags": ["books"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/06/16/hit-man.html",
"title": "Hit Man, 2023 - ★★★★",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "<p><img src=\"https://a.ltrbxd.com/resized/film-poster/8/7/7/0/4/6/877046-hit-man-0-600-0-900-crop.jpg?v=7a8e101a9d\" /></p>\n<p>Watched on Sunday June 16, 2024.</p>\n",
"date_published": "2024-06-16T20:23:33-06:00",
"url": "https://mindofaaronw.com/2024/06/16/hit-man.html",
"tags": ["movies"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/06/08/top-secret.html",
"title": "Top Secret!, 1984 - ★★★★",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "<p><img src=\"https://a.ltrbxd.com/resized/film-poster/4/7/6/2/0/47620-top-secret--0-600-0-900-crop.jpg?v=0317265506\" /></p>\n<p>What a fun movie. Val Kilmers movie debut and it’s a blast.</p>\n",
"date_published": "2024-06-08T14:39:03-06:00",
"url": "https://mindofaaronw.com/2024/06/08/top-secret.html",
"tags": ["movies"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/06/04/finished-reading-courage.html",
"content_html": "<p>Finished reading 📚: <a href=\"https://micro.blog/books/9780593191682\">Courage Is Calling</a> by Ryan Holiday</p>\n",
"content_text": "Finished reading 📚: [Courage Is Calling](https://micro.blog/books/9780593191682) by Ryan Holiday \n",
"date_published": "2024-06-04T18:27:06-06:00",
"url": "https://mindofaaronw.com/2024/06/04/finished-reading-courage.html",
"tags": ["books"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/06/02/starship-troopers.html",
"title": "Starship Troopers, 1997 - ★★★½",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "<p><img src=\"https://a.ltrbxd.com/resized/film-poster/5/1/5/5/5/51555-starship-troopers-0-600-0-900-crop.jpg?v=dd7022caf2\" /></p>\n<p>Watched on Saturday June 1, 2024.</p>\n",
"date_published": "2024-06-02T11:18:18-06:00",
"url": "https://mindofaaronw.com/2024/06/02/starship-troopers.html",
"tags": ["movies"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/06/01/godzilla-minus-one.html",
"title": "Godzilla Minus One, 2023 - ★★★★½ (contains spoilers)",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "<p><img src=\"https://a.ltrbxd.com/resized/film-poster/8/4/5/7/0/6/845706-godzilla-minus-one-0-600-0-900-crop.jpg?v=a98e8c1ed4\" /></p>\n<p><em>This review may contain spoilers.</em></p>\n<p>Godzilla go big booms.</p>\n",
"date_published": "2024-06-01T11:36:32-06:00",
"url": "https://mindofaaronw.com/2024/06/01/godzilla-minus-one.html",
"tags": ["movies"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/06/01/tokyo-vice-is.html",
"content_html": "<p><em>Tokyo Vice</em> is the best show you’re not watching.</p>\n",
"content_text": "_Tokyo Vice_ is the best show you're not watching. \n",
"date_published": "2024-06-01T08:48:20-06:00",
"url": "https://mindofaaronw.com/2024/06/01/tokyo-vice-is.html",
"tags": ["tv"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/05/30/the-bourne-supremacy.html",
"title": "The Bourne Supremacy, 2004 - ★★★★",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "<p><img src=\"https://a.ltrbxd.com/resized/film-poster/5/0/2/2/4/50224-the-bourne-supremacy-0-600-0-900-crop.jpg?v=a65c73bc56\" /></p>\n<p>Watched on Thursday May 30, 2024.</p>\n",
"date_published": "2024-05-30T18:49:25-06:00",
"url": "https://mindofaaronw.com/2024/05/30/the-bourne-supremacy.html",
"tags": ["movies"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/05/26/furiosa-a-mad.html",
"title": "Furiosa: A Mad Max Saga, 2024 - ★★★½",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "<p><img src=\"https://a.ltrbxd.com/resized/film-poster/7/0/5/2/2/1/705221-furiosa-a-mad-max-saga-0-600-0-900-crop.jpg?v=3c0e322842\" /></p>\n<p>Don’t anger the chess queen.</p>\n",
"date_published": "2024-05-26T14:17:11-06:00",
"url": "https://mindofaaronw.com/2024/05/26/furiosa-a-mad.html",
"tags": ["movies"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/05/25/the-bourne-identity.html",
"title": "The Bourne Identity, 2002 - ★★★★",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "<p><img src=\"https://a.ltrbxd.com/resized/film-poster/5/0/2/2/5/50225-the-bourne-identity-0-600-0-900-crop.jpg?v=84a1e28f00\" /></p>\n<p>Watched on Saturday May 25, 2024.</p>\n",
"date_published": "2024-05-25T20:31:50-06:00",
"url": "https://mindofaaronw.com/2024/05/25/the-bourne-identity.html",
"tags": ["movies"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/05/25/mad-max-fury.html",
"title": "Mad Max: Fury Road, 2015 - ★★★★★",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "<p><img src=\"https://a.ltrbxd.com/resized/film-poster/6/2/7/8/0/62780-mad-max-fury-road-0-600-0-900-crop.jpg?v=37c5424b1f\" /></p>\n<p>Rewatch in preparation of Furiosa. Still incredible.</p>\n",
"date_published": "2024-05-25T13:05:21-06:00",
"url": "https://mindofaaronw.com/2024/05/25/mad-max-fury.html",
"tags": ["movies"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/05/22/masters-of-the.html",
"title": "Masters of the Air, 2024 - ★★★★",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "<p><img src=\"https://a.ltrbxd.com/resized/film-poster/1/1/1/6/0/8/6/1116086-masters-of-the-air-0-600-0-900-crop.jpg?v=8f4e96a920\" /></p>\n<p>Watched on Wednesday May 22, 2024.</p>\n",
"date_published": "2024-05-22T19:44:40-06:00",
"url": "https://mindofaaronw.com/2024/05/22/masters-of-the.html",
"tags": ["tv"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/05/20/finished-reading-before.html",
"content_html": "<p>Finished reading 📚: <a href=\"https://micro.blog/books/9781488077210\">Before the Coffee Gets Cold</a> by Toshikazu Kawaguchi \n<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\nA fun read about overcoming challenges in life of different proportions. Kawaguchi’s novel is smart and poignant for the modern reader. Taking an oft-used concept of time travel and applies a fresh take to it.</p>\n",
"content_text": "Finished reading 📚: [Before the Coffee Gets Cold](https://micro.blog/books/9781488077210) by Toshikazu Kawaguchi \r\n<br>\r\n<br>\r\nA fun read about overcoming challenges in life of different proportions. Kawaguchi's novel is smart and poignant for the modern reader. Taking an oft-used concept of time travel and applies a fresh take to it.\n",
"date_published": "2024-05-20T19:10:20-06:00",
"url": "https://mindofaaronw.com/2024/05/20/finished-reading-before.html",
"tags": ["books"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/05/19/prioritizing-my-time.html",
"title": "Prioritizing My Time",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "<p>After many months of debating, I finally deleted my Twitter/X and Snapchat accounts. I am trying to prioritize aspects of my life and time wasted is at the top of that list. I’ve spent several hours curating my devices notifications, installed apps, and what each device’s purpose should be.</p>\n<p>I thought it would be very difficult at first, but I’m now more conscious of where I focus my time. For example, I am deliberately going to sites to find sports news, or deliberately reaching out to friends to see what they are up to. It seems pretentious to state that I am cool and deliberate with reaching out to friends, but social media is a massive time suck.</p>\n<p>Coincidentally, I also started the book <em><a href=\"https://www.amazon.com/gp/product/B07DBRBP7G?ie=UTF8&tag=x_gr_bb_amazon-20&linkCode=as2&camp=1789&creative=9325&creativeASIN=B07DBRBP7G&SubscriptionId=1MGPYB6YW3HWK55XCGG2\">D</a></em><a href=\"https://www.amazon.com/gp/product/B07DBRBP7G?ie=UTF8&tag=x_gr_bb_amazon-20&linkCode=as2&camp=1789&creative=9325&creativeASIN=B07DBRBP7G&SubscriptionId=1MGPYB6YW3HWK55XCGG2\"><em>igital Minimalism: Choosing a Focused Life in a Noisy World </em>by Cal Newport</a> shortly after deleting these accounts. It’s a great read, but it’s hard to buy into <strong>everything</strong> since Newport was never a big social media user to begin with.</p>\n<p>I’m trying to spend more time on the things I love doing: reading, walking (with or without the dog), taking photos and inspiring my small creative side, meeting and having experiences with my family and friends. Newport’s book is at the very least a reminder to do these things.</p>\n<p>I continue to juggle the responsibilities of adulthood, even over a decade into it, and prioritization of life outside of work is something I’ve always struggled with. Level-setting like this is important - this type of reflection that helps me step back and say “Hey, you are wasting a ton of time, you’re not present with the other things that matter.” As I inch toward my 34th birthday this summer, I can’t help but think I’m finally “growing up” and I’m excited for what is to come.</p>\n",
"date_published": "2024-05-19T09:51:06-06:00",
"url": "https://mindofaaronw.com/2024/05/19/prioritizing-my-time.html",
"tags": ["tech","apps","life"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/05/19/one-thing-the.html",
"content_html": "<p>One thing the Apple Music <a href=\"https://100best.music.apple.com/us/\">Top 100 List</a> is doing for me is bringing me back to my high school years where I devoured music across generations and genres and broke away from what was just on the radio at the time.</p>\n",
"content_text": "One thing the Apple Music [Top 100 List](https://100best.music.apple.com/us/) is doing for me is bringing me back to my high school years where I devoured music across generations and genres and broke away from what was just on the radio at the time.\n",
"date_published": "2024-05-19T09:44:31-06:00",
"url": "https://mindofaaronw.com/2024/05/19/one-thing-the.html",
"tags": ["music"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/05/12/finished-reading-digital.html",
"content_html": "<p>Finished reading 📚: <a href=\"https://micro.blog/books/9780525536512\">Digital Minimalism</a> by Cal Newport \n<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\nThis is a thought-provoking look at what social media has done to us in the 21st century. I don’t think all the advice is sound for all people, it’s a good reminder to take a step back every once in a while and use social media <strong>less</strong>.</p>\n",
"content_text": "Finished reading 📚: [Digital Minimalism](https://micro.blog/books/9780525536512) by Cal Newport \r\n<br>\r\n<br>\r\nThis is a thought-provoking look at what social media has done to us in the 21st century. I don't think all the advice is sound for all people, it's a good reminder to take a step back every once in a while and use social media **less**.\n",
"date_published": "2024-05-12T17:54:06-06:00",
"url": "https://mindofaaronw.com/2024/05/12/finished-reading-digital.html",
"tags": ["books"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/05/12/challengers.html",
"title": "Challengers, 2024 - ★★★½",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "<p><img src=\"https://a.ltrbxd.com/resized/film-poster/8/4/2/3/0/1/842301-challengers-0-600-0-900-crop.jpg?v=a7cd63cbef\" /></p>\n<p>Watched on Sunday May 12, 2024.</p>\n",
"date_published": "2024-05-12T16:26:27-06:00",
"url": "https://mindofaaronw.com/2024/05/12/challengers.html",
"tags": ["movies"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/05/09/watching-xmen-e.html",
"content_html": "<p>Watching <em>X-Men ‘97</em> E1 and I screamed like a little kid at that Wolverine-Gambit-Morph sequence.</p>\n",
"content_text": "Watching _X-Men '97_ E1 and I screamed like a little kid at that Wolverine-Gambit-Morph sequence.\n",
"date_published": "2024-05-09T19:15:03-06:00",
"url": "https://mindofaaronw.com/2024/05/09/watching-xmen-e.html",
"tags": ["tv"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/05/05/beyond-the-infinite.html",
"title": "Beyond the Infinite Two Minutes, 2020 - ★★★★",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "<p><img src=\"https://a.ltrbxd.com/resized/film-poster/7/2/2/6/4/3/722643-beyond-the-infinite-two-minutes-0-600-0-900-crop.jpg?v=35c87aa56a\" /></p>\n<p>Watched on Sunday May 5, 2024.</p>\n",
"date_published": "2024-05-05T17:33:38-06:00",
"url": "https://mindofaaronw.com/2024/05/05/beyond-the-infinite.html",
"tags": ["movies"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/05/04/my-ios-wishlist.html",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "<p>My iOS 18 Wishlist: a Journal app for iPad and Mac. I really hate typing for lots of text without a keyboard and this would make me utilize the app much more.</p>\n",
"date_published": "2024-05-04T15:18:55-06:00",
"url": "https://mindofaaronw.com/2024/05/04/my-ios-wishlist.html",
"tags": ["apps","apple"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/05/04/faceoff.html",
"title": "Face/Off, 1997 - ★★★★",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "<p><img src=\"https://a.ltrbxd.com/resized/film-poster/5/1/3/9/8/51398-face-off-0-600-0-900-crop.jpg?v=d5e85f6afa\" /></p>\n<p>What an action packed, goofy, thrill ride. I miss the wild and crazy action movies of the 80s and 90s.</p>\n",
"date_published": "2024-05-04T15:12:05-06:00",
"url": "https://mindofaaronw.com/2024/05/04/faceoff.html",
"tags": ["movies"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/05/04/fun-little-app.html",
"content_html": "<p>Fun little <a href=\"https://aeromatic.app/\">app to track your AeroPress recipes</a>. I need to use mine more, it makes such a great cup of coffee.</p>\n",
"content_text": "Fun little [app to track your AeroPress recipes](https://aeromatic.app/). I need to use mine more, it makes such a great cup of coffee.\n",
"date_published": "2024-05-04T14:56:56-06:00",
"url": "https://mindofaaronw.com/2024/05/04/fun-little-app.html",
"tags": ["coffee"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/05/04/ive-been-reflecting.html",
"content_html": "<p>I’ve been reflecting on my notes and storage again and while I enjoy Apple Notes, I am always looking for something platform agnostic. Does anyone have any experience using <a href=\"https://anytype.io/\">Anytype</a>? What is the consensus?\n<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\nLooks like a mix between Notion and OneNote to me.</p>\n",
"content_text": "I've been reflecting on my notes and storage again and while I enjoy Apple Notes, I am always looking for something platform agnostic. Does anyone have any experience using [Anytype](https://anytype.io/)? What is the consensus?\r\n<br>\r\n<br>\r\nLooks like a mix between Notion and OneNote to me.\n",
"date_published": "2024-05-04T14:38:00-06:00",
"url": "https://mindofaaronw.com/2024/05/04/ive-been-reflecting.html",
"tags": ["apps"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/05/04/silent-night.html",
"title": "Silent Night, 2023 - ★★★½",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "<p><img src=\"https://a.ltrbxd.com/resized/film-poster/8/0/2/1/1/3/802113-silent-night-0-600-0-900-crop.jpg?v=0a1b19d78c\" /></p>\n<p>Watched on Sunday December 17, 2023.</p>\n",
"date_published": "2024-05-04T14:01:42-06:00",
"url": "https://mindofaaronw.com/2024/05/04/silent-night.html",
"tags": ["movies"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/04/29/sexy-beast.html",
"title": "Sexy Beast, 2000 - ★★★★",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "<p><img src=\"https://a.ltrbxd.com/resized/sm/upload/0i/uu/90/yq/t1nDiWheu0HlOZA8thaESVCXpHr-0-600-0-900-crop.jpg?v=e8429aa8b3\" /></p>\n<p>This movie rules and Ben Kingsley does too. You will learn new words like “bumflufferies”.</p>\n",
"date_published": "2024-04-29T20:22:46-06:00",
"url": "https://mindofaaronw.com/2024/04/29/sexy-beast.html",
"tags": ["movies"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/04/28/shithouse.html",
"title": "Shithouse, 2020 - ★★★★",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "<p><img src=\"https://a.ltrbxd.com/resized/film-poster/5/6/3/0/1/7/563017-shithouse-0-600-0-900-crop.jpg?v=5919e170d9\" /></p>\n<p>Watched on Sunday April 28, 2024.</p>\n",
"date_published": "2024-04-28T19:46:23-06:00",
"url": "https://mindofaaronw.com/2024/04/28/shithouse.html",
"tags": ["movies"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/04/28/as-someone-with.html",
"content_html": "<p>As someone with a 10 year old Lab, I still found this so informative <a href=\"https://www.akc.org/expert-advice/dog-breeds/labrador-retriever-history/\">on the breed’s history</a>.</p>\n",
"content_text": "As someone with a 10 year old Lab, I still found this so informative [on the breed's history](https://www.akc.org/expert-advice/dog-breeds/labrador-retriever-history/).\r\n\r\n",
"date_published": "2024-04-28T14:18:26-06:00",
"url": "https://mindofaaronw.com/2024/04/28/as-someone-with.html",
"tags": ["dogs"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/04/28/finished-reading-education.html",
"content_html": "<p>Finished reading 📚: <a href=\"https://micro.blog/books/9780553899085\">Education of a Wandering Man</a> by Louis L’Amour\n<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\nA unique and thoughtful look into how Louis L’Amour grew and educated himself into the writer and man he was. I found this inspiring, and even though he grew up at the turn of the century, I was able to relate to his experiences.</p>\n<blockquote>\n<p>“Associate with the noblest people you can find; read the best books; live with the mighty. But learn to be happy alone. Rely upon your own energies, and so not wait for, or depend on other people.” -Professor Thomas Davidson</p>\n</blockquote>\n",
"content_text": "Finished reading 📚: [Education of a Wandering Man](https://micro.blog/books/9780553899085) by Louis L'Amour\n<br>\n<br>\nA unique and thoughtful look into how Louis L'Amour grew and educated himself into the writer and man he was. I found this inspiring, and even though he grew up at the turn of the century, I was able to relate to his experiences.\n> \"Associate with the noblest people you can find; read the best books; live with the mighty. But learn to be happy alone. Rely upon your own energies, and so not wait for, or depend on other people.\" -Professor Thomas Davidson\n",
"date_published": "2024-04-28T14:10:32-06:00",
"url": "https://mindofaaronw.com/2024/04/28/finished-reading-education.html",
"tags": ["books"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/04/24/shgun.html",
"title": "Shōgun, 2024 - ★★★★½",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "<p><img src=\"https://a.ltrbxd.com/resized/film-poster/1/1/2/4/8/7/2/1124872-shogun-0-600-0-900-crop.jpg?v=08ed9007ba\" /></p>\n<p>Worth every minute.</p>\n",
"date_published": "2024-04-24T19:43:17-06:00",
"url": "https://mindofaaronw.com/2024/04/24/shgun.html",
"tags": ["tv"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/04/22/think-im-late.html",
"content_html": "<p>Think I’m late to the party here, but <em>Blue-Eyed Samurai</em> is an excellent show.</p>\n",
"content_text": "Think I'm late to the party here, but _Blue-Eyed Samurai_ is an excellent show. \n",
"date_published": "2024-04-22T19:20:12-06:00",
"url": "https://mindofaaronw.com/2024/04/22/think-im-late.html",
"tags": ["tv"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/04/20/dream-scenario.html",
"title": "Dream Scenario, 2023 - ★★★★",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "<p><img src=\"https://a.ltrbxd.com/resized/film-poster/7/3/9/6/9/1/739691-dream-scenario-0-600-0-900-crop.jpg?v=bd5ff0ede9\" /></p>\n<p>I too dream of a balding Nic Cage.</p>\n",
"date_published": "2024-04-20T19:12:18-06:00",
"url": "https://mindofaaronw.com/2024/04/20/dream-scenario.html",
"tags": ["movies"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/04/20/civil-war.html",
"title": "Civil War, 2024 - ★★★½",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "<p><img src=\"https://a.ltrbxd.com/resized/film-poster/8/3/4/6/5/6/834656-civil-war-0-600-0-900-crop.jpg?v=aefec33dbe\" /></p>\n<p>Watched on Saturday April 20, 2024.</p>\n",
"date_published": "2024-04-20T14:34:04-06:00",
"url": "https://mindofaaronw.com/2024/04/20/civil-war.html",
"tags": ["movies"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/04/18/finished-reading-station.html",
"content_html": "<p>Finished reading: <a href=\"https://micro.blog/books/9780385353311\">Station 11</a> by Emily St. John Mandel 📚</p>\n",
"content_text": "Finished reading: [Station 11](https://micro.blog/books/9780385353311) by Emily St. John Mandel 📚\n",
"date_published": "2024-04-18T18:12:42-06:00",
"url": "https://mindofaaronw.com/2024/04/18/finished-reading-station.html",
"tags": ["books"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/04/17/how-to-have.html",
"title": "How to Have Sex, 2023 - ★★★½",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "<p><img src=\"https://a.ltrbxd.com/resized/film-poster/9/6/9/3/5/0/969350-how-to-have-sex-0-600-0-900-crop.jpg?v=bcce0cabfa\" /></p>\n<p>Watched on Wednesday April 17, 2024.</p>\n",
"date_published": "2024-04-17T18:53:16-06:00",
"url": "https://mindofaaronw.com/2024/04/17/how-to-have.html",
"tags": ["movies"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/04/16/driveaway-dolls.html",
"title": "Drive-Away Dolls, 2024 - ★★★",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "<p><img src=\"https://a.ltrbxd.com/resized/film-poster/8/6/1/2/5/0/861250-drive-away-dolls-0-600-0-900-crop.jpg?v=2e83bbe648\"/></p> <p>Watched on Tuesday April 16, 2024.</p>\n",
"date_published": "2024-04-16T19:42:30-06:00",
"url": "https://mindofaaronw.com/2024/04/16/driveaway-dolls.html",
"tags": ["movies"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/04/12/dirty-rotten-scoundrels.html",
"title": "Dirty Rotten Scoundrels, 1988 - ★★★★",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "<p><img src=\"https://a.ltrbxd.com/resized/film-poster/4/6/5/0/8/46508-dirty-rotten-scoundrels-0-600-0-900-crop.jpg?v=e1a200a15d\" /></p>\n<p>Watched on Friday April 12, 2024.</p>\n",
"date_published": "2024-04-12T20:04:46-06:00",
"url": "https://mindofaaronw.com/2024/04/12/dirty-rotten-scoundrels.html",
"tags": ["movies"]
},
{
"id": "http://mindofaaronw.micro.blog/2024/04/07/monkey-man.html",
"title": "Monkey Man, 2024 - ★★★★",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "<p><img src=\"https://a.ltrbxd.com/resized/film-poster/4/8/8/7/5/1/488751-monkey-man-0-600-0-900-crop.jpg?v=0c25a18552\" /></p>\n<p>What a directorial debut. An action packed thrill ride that delivers. Hats off Dev.</p>\n",
"date_published": "2024-04-07T16:33:41-06:00",