-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1246 lines (665 loc) · 53.4 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta name="generator" content="Hugo 0.54.0" />
<title>
Luke Bouch
</title>
</head>
<body>
<div class="h-feed">
<div class="h-entry">
<a href="https://lukebouch.com/2022/04/25/i-got-tired.html" class="u-url"><time class="dt-published" datetime="2022-04-25 19:19:26 -0400">Apr 25, 2022</time></a>
<div class="e-content">
<p>I got tired of stuggling learning VueJS and Nuxt, so I decided to build out my new blog in <a href="https://jigsaw.tighten.com">Jigsaw</a>. It is almost done and I will be moving away from <a href="https://micro.blog">Micro.blog</a> in favor of my new headless cms I’m working on (<a href="https://sublimeblogs.com">Sublime blogs</a>).</p>
<p>I have nothing against <a href="https://micro.blog">Micro.blog</a> but I’m a control freek and I want complete control over the frontend using my static site generator of choice. I’m also trying to cut down on costs.</p>
</div>
</div>
<div class="h-entry">
<a href="https://lukebouch.com/2022/04/24/today-i-started.html" class="u-url"><time class="dt-published" datetime="2022-04-24 21:20:45 -0400">Apr 24, 2022</time></a>
<div class="e-content">
<p>Today I started working on the marketing site/landing page for <a href="https://sublimeblogs.com">Sublime Blogs</a>. I used tailwindui for the navigation and hero section and it turned out pretty good in my opinion. The marketing may need some work but it is a start.</p>
<p><img src="uploads/2022/501fac8b9b.jpg" width="600" height="341" alt="" /></p>
</div>
</div>
<div class="h-entry">
<a href="https://lukebouch.com/2022/04/22/i-just-spent.html" class="u-url"><time class="dt-published" datetime="2022-04-22 15:08:35 -0400">Apr 22, 2022</time></a>
<div class="e-content">
<p>I just spent about four hours working on <a href="https://sublimeblogs.com">Sublime Blogs</a> and using the API to build out my blog with NuxtJS. I have been primarily focusing on building out the API. It is coming together well so far.</p>
<p><img src="uploads/2022/4fa71bec6d.jpg" width="600" height="420" alt="" /></p>
</div>
</div>
<div class="h-entry">
<a href="https://lukebouch.com/2022/04/20/after-purchasing-tailwindui.html" class="u-url"><time class="dt-published" datetime="2022-04-20 19:11:15 -0400">Apr 20, 2022</time></a>
<div class="e-content">
<p>After purchasing <a href="https://tailwindui.com">Tailwindui</a>, I went to town redesigning Sublime Blogs. I’m very happy with how things are coming together!</p>
<p><img src="uploads/2022/ecaca4eed9.jpg" width="600" height="334" alt="" /><img src="uploads/2022/468466cf0d.jpg" width="600" height="334" alt="" /><img src="uploads/2022/772e297834.jpg" width="600" height="334" alt="" /><img src="uploads/2022/3e50e75e88.jpg" width="600" height="334" alt="" /></p>
</div>
</div>
<div class="h-entry">
<a href="https://lukebouch.com/2022/04/20/im-about-months.html" class="u-url"><time class="dt-published" datetime="2022-04-20 08:34:38 -0400">Apr 20, 2022</time></a>
<div class="e-content">
<p>I’m about 2 months out from being able to ship Sublime Blogs. I’m excited 😃</p>
<p>I still need to work on pricing though 🤔 How does $2/month per site sound? Maybe that includes a certain amount of storage for photos?</p>
</div>
</div>
<div class="h-entry">
<a href="https://lukebouch.com/2022/04/18/i-started-researching.html" class="u-url"><time class="dt-published" datetime="2022-04-18 21:14:03 -0400">Apr 18, 2022</time></a>
<div class="e-content">
<p>I started researching Agile and Scrum project management. I’m hoping to start implementing it with some of my client and personal projects.</p>
</div>
</div>
<div class="h-entry">
<a href="https://lukebouch.com/2022/04/17/my-brother-just.html" class="u-url"><time class="dt-published" datetime="2022-04-17 21:07:28 -0400">Apr 17, 2022</time></a>
<div class="e-content">
<p>My brother just got his motorcycle license so my dad, brother, and I went for a ride. That was a lot of fun!</p>
</div>
</div>
<div class="h-entry">
<a href="https://lukebouch.com/2022/04/16/i-sold-my.html" class="u-url"><time class="dt-published" datetime="2022-04-16 21:18:04 -0400">Apr 16, 2022</time></a>
<div class="e-content">
<p>I sold my Honda Nighthawk today. Now I’m down to one bike and a truck.</p>
</div>
</div>
<div class="h-entry">
<a href="https://lukebouch.com/2022/04/15/i-want-to.html" class="u-url"><time class="dt-published" datetime="2022-04-15 22:20:49 -0400">Apr 15, 2022</time></a>
<div class="e-content">
<p>I want to be good at designing user interfaces, but sadly no matter how hard I try, it never ends up looking the way I want it to. So… I purchased <a href="https://tailwindui.com">Tailwindui</a>. We will see if it helps.</p>
<p>Now to redesign Sublime Blogs.</p>
</div>
</div>
<div class="h-entry">
<a href="https://lukebouch.com/2022/04/13/i-have-a.html" class="u-url"><time class="dt-published" datetime="2022-04-13 16:34:54 -0400">Apr 13, 2022</time></a>
<div class="e-content">
<p>I have a strong appreciation for great UI. I find that the apps I <strong>enjoy</strong> using are also the ones that stick (like Things 3, Notion, etc.) If the UI is mediocre, I probably won’t adopt it into my workflow.</p>
<p>I guess that just sets the bar a little higher more my own apps 😬</p>
</div>
</div>
<div class="h-entry">
<a href="https://lukebouch.com/2022/04/13/i-downloaded-the.html" class="u-url"><time class="dt-published" datetime="2022-04-13 16:29:07 -0400">Apr 13, 2022</time></a>
<div class="e-content">
<p>I downloaded the beta of 1Password 8 for iOS. The UI is amazing!</p>
</div>
</div>
<div class="h-entry">
<a href="https://lukebouch.com/2022/04/12/time-to-do.html" class="u-url"><time class="dt-published" datetime="2022-04-12 16:52:22 -0400">Apr 12, 2022</time></a>
<div class="e-content">
<p>Time to do taxes 😞. One of the disadvantages of being self-employed is you get to watch all you money leave you all at once… every April.</p>
</div>
</div>
<div class="h-entry">
<a href="https://lukebouch.com/2022/04/09/i-upgraded-tpp.html" class="u-url"><time class="dt-published" datetime="2022-04-09 17:09:14 -0400">Apr 9, 2022</time></a>
<div class="e-content">
<p>I upgraded TPP from Laravel 8 to Laravel 9! It took about an hour to go through and update all of my dependencies, update the PHP version on the server, and change the GitHub CI/CD action to run PHP 8.1.</p>
<p>This was my first time every upgrading Laravel. It was not too hard. Great job Taylor and the Laravel team!</p>
</div>
</div>
<div class="h-entry">
<a href="https://lukebouch.com/2022/04/08/im-back-working.html" class="u-url"><time class="dt-published" datetime="2022-04-08 21:47:38 -0400">Apr 8, 2022</time></a>
<div class="e-content">
<p>I’m back working on a project (TPP) I was told to take a break on a few months ago. It’s a web app built with Laravel, AlpineJS, Livewire, and Tailwindcss. It is actually the first real web app I ever built.</p>
<p>Prior to TPP, I had only just begun learning PHP and trying to build a web app (Open Outreach) in vanilla PHP. I did not even know frameworks were a thing. I just had a php file for every page and would manually query the database with SQL. To say the least, Open Outreach did not get very far.</p>
<p>I made some mistakes on TPP but I’m a much better developer now and it’s fun ripping out old components and rebuilding things. I have already improved things drastically in just a few hours.</p>
<p>Currently working on redesigning the whole UI. I will keep posting update periodically.</p>
</div>
</div>
<div class="h-entry">
<a href="https://lukebouch.com/2022/04/07/i-spent-the.html" class="u-url"><time class="dt-published" datetime="2022-04-07 21:19:59 -0400">Apr 7, 2022</time></a>
<div class="e-content">
<p>I spent the longest time trying to get Laravel Nova to work. Finally figured out my dumb mistake. I had setup a policy for the model I was trying to create a resource for and I had set the <code>viewAny</code> function to return false. Now I have it set to check for the <code>viewNova</code> gate. All fixed now 👍</p>
</div>
</div>
<div class="h-entry">
<a href="https://lukebouch.com/2022/04/06/today-i-purchased.html" class="u-url"><time class="dt-published" datetime="2022-04-06 21:31:40 -0400">Apr 6, 2022</time></a>
<div class="e-content">
<p>Today I purchased an unlimited license to Laravel Nova because it’s currently $100 off. I have never used it until today and it’s convenient for creating quick admin dashboards.</p>
</div>
</div>
<div class="h-entry">
<a href="https://lukebouch.com/2022/04/02/i-finally-got.html" class="u-url"><time class="dt-published" datetime="2022-04-02 22:25:27 -0400">Apr 2, 2022</time></a>
<div class="e-content">
<p>I finally got my new clutch installed in my BMW f650gs. I’m enjoying riding it!</p>
</div>
</div>
<div class="h-entry">
<a href="https://lukebouch.com/2022/03/31/i-need-to.html" class="u-url"><time class="dt-published" datetime="2022-03-31 18:53:54 -0400">Mar 31, 2022</time></a>
<div class="e-content">
<p>I need to decide on a pricing model for Sublime Blogs. I think most features are going to be free and only image hosting will cost. Do I charge per user or per site?</p>
</div>
</div>
<div class="h-entry">
<a href="https://lukebouch.com/2022/03/30/sublime-blogs-is.html" class="u-url"><time class="dt-published" datetime="2022-03-30 15:08:45 -0400">Mar 30, 2022</time></a>
<div class="e-content">
<p>Sublime Blogs is up and running! I still have a lot more to do but the basics are there and I’m able to start testing things. Now I need to be able to have the option to import from Wordpress.</p>
</div>
</div>
<div class="h-entry">
<a href="https://lukebouch.com/2022/03/29/i-fixed-the.html" class="u-url"><time class="dt-published" datetime="2022-03-29 08:18:09 -0400">Mar 29, 2022</time></a>
<div class="e-content">
<p>I fixed the bug I found on the post edit page on Sublime Blogs. It was kinda a dumb mistake. Now everything is working!</p>
</div>
</div>
<div class="h-entry">
<a href="https://lukebouch.com/2022/03/27/last-night-i.html" class="u-url"><time class="dt-published" datetime="2022-03-27 17:13:20 -0400">Mar 27, 2022</time></a>
<div class="e-content">
<p>Last night I deployed Sublime Blogs to production to test everything out as it stands. The markdown editor completely broke so I got it working locally. Still no luck on production. I’m not getting any error codes or logs either. I will take a look at it tomorrow and see if I can figure out the issue.</p>
</div>
</div>
<div class="h-entry">
<a href="https://lukebouch.com/2022/03/26/oh-i-forgot.html" class="u-url"><time class="dt-published" datetime="2022-03-26 21:22:41 -0400">Mar 26, 2022</time></a>
<div class="e-content">
<p>Oh I forgot about subscription billing. I will need to build that out for Sublime Blogs.</p>
</div>
</div>
<div class="h-entry">
<a href="https://lukebouch.com/2022/03/26/i-have-almost.html" class="u-url"><time class="dt-published" datetime="2022-03-26 17:11:39 -0400">Mar 26, 2022</time></a>
<div class="e-content">
<p>I have almost all the main components for Sublime Blogs done. I’m working on authorization right now and then I need to pull together some basic documentation and build out the marketing website. I hope to launch a public beta by the end of April.</p>
</div>
</div>
<div class="h-entry">
<a href="https://lukebouch.com/2022/03/25/today-i-worked.html" class="u-url"><time class="dt-published" datetime="2022-03-25 22:06:55 -0400">Mar 25, 2022</time></a>
<div class="e-content">
<p>Today I worked on getting image uploads to work on Sublime Blogs. It took me a while to figure it out but now it is working!</p>
</div>
</div>
<div class="h-entry">
<a href="https://lukebouch.com/2022/03/25/today-i-had.html" class="u-url"><time class="dt-published" datetime="2022-03-25 16:48:00 -0400">Mar 25, 2022</time></a>
<div class="e-content">
<p>Today I had I job that required I go spelunking… well sort of. I had to crawl underneath the sacturay of a church that was built in 1905! It was very tight and the enterance was a long way away from where we needed to go.</p>
<p><img src="uploads/2022/2f099843db.jpg" width="600" height="450" alt="" />
<img src="uploads/2022/3d264a84ec.jpg" width="600" height="450" alt="" /></p>
</div>
</div>
<div class="h-entry">
<a href="https://lukebouch.com/2022/03/24/today-on-sublime.html" class="u-url"><time class="dt-published" datetime="2022-03-24 22:43:00 -0400">Mar 24, 2022</time></a>
<div class="e-content">
<p>Today on Sublime Blogs I wrapped up the functionality to switch the site you are working on and started building out the API. Here you can see the edit page for a site where you can create API access tokens.</p>
<p><img src="uploads/2022/76a12ccd9a.png" width="600" height="298" alt="" />
<img src="uploads/2022/e40918c157.png" width="600" height="300" alt="" /></p>
</div>
</div>
<div class="h-entry">
<a href="https://lukebouch.com/2022/03/24/over-the-past.html" class="u-url"><time class="dt-published" datetime="2022-03-24 08:27:21 -0400">Mar 24, 2022</time></a>
<div class="e-content">
<p>Over the past several months, I have been trying to decide whether or not to cancel my Google Workspaces subscription. I use it for my business email and I’m grandfathered in to an unlimited storage plan for only $12/month.</p>
<p>I used to use it as my main form of storage for all the client work I did but I have since decided I don’t want all my data in the hands of Google, especially not the only copy I have, so I purchased a Synology NAS. Now comes the part where I have to migrate 2TB of data from Google Drive to my NAS. Fun 😞</p>
<p>I won’t really by using much storage on Google Drive but I don’t like the thought of giving up my grandfathered in plan.</p>
<p>I don’t share as much data with clients anymore (now I’m doing mostly web developer and that is all on GitHub) so I could just throw any files I need to share on an S3 bucket. Maybe even throw that behind CloudFlare for caching.</p>
</div>
</div>
<div class="h-entry">
<a href="https://lukebouch.com/2022/03/23/sublime-blogs-is.html" class="u-url"><time class="dt-published" datetime="2022-03-23 18:16:47 -0400">Mar 23, 2022</time></a>
<div class="e-content">
<p>Sublime Blogs is coming along well. <a href="https://github.com/Ionaru/easy-markdown-editor">EasyMDE</a> has been working amazing so far!</p>
<p><img src="uploads/2022/74c63866ea.png" width="600" height="297" alt="" /></p>
</div>
</div>
<div class="h-entry">
<h1><a href="https://lukebouch.com/2022/03/23/migrating-from-ulysses.html">Migrating from Ulysses to Bear</a></h1>
<a href="https://lukebouch.com/2022/03/23/migrating-from-ulysses.html" class="u-url"><time class="dt-published" datetime="2022-03-23 17:13:28 -0400">Mar 23, 2022</time></a>
<div class="e-content">
<p>I have been using Ulysses since I started this blog for writing my blog posts before publishing them to <a href="https://micro.blog">Micro.blog</a>. I have decide to migrate to using <a href="https://bear.app">Bear.app</a> instead. I think it is going to work better for me as it will also replace Apple Notes for me as well.</p>
<p>Now I need to to create a Siri Shortcut to be able to automatically post a Bear note to <a href="https://micro.blog">Micro.blog</a>.</p>
</div>
</div>
<div class="h-entry">
<a href="https://lukebouch.com/2022/03/22/i-set-up.html" class="u-url"><time class="dt-published" datetime="2022-03-22 22:42:45 -0400">Mar 22, 2022</time></a>
<div class="e-content">
<p>I set up CloudFlare to cache a site and in the process broke my internet controlled garage door opener. I don’t recall ever blogging about my custom garage door opener, but I should soon. Basically, I can open and close the garage door with a Siri Shortcut or control it from through a webpage.</p>
<p>I had to restart a server and grey cloud the subdomain I have it setup on. It’s fixed now!</p>
</div>
</div>
<div class="h-entry">
<a href="https://lukebouch.com/2022/03/22/i-want-to.html" class="u-url"><time class="dt-published" datetime="2022-03-22 22:37:12 -0400">Mar 22, 2022</time></a>
<div class="e-content">
<p>I want to build a house out of an old school bus (commonly referred to as a skoolie). I have been doing some research and I found the idea of converting a diesel school bus to run on waste vegetable oil from restaurants (which you can do with a Diesel engine). One more thing to add to my skoolie wishlist.</p>
</div>
</div>
<div class="h-entry">
<a href="https://lukebouch.com/2022/03/21/i-think-i.html" class="u-url"><time class="dt-published" datetime="2022-03-21 21:24:54 -0400">Mar 21, 2022</time></a>
<div class="e-content">
<p>I think I will use Digital Ocean spaces for image hosting on Sublime Blogs. I wonder how much bandwidth and storage each site will use 🤔. That is going to be hard to estimate.</p>
</div>
</div>
<div class="h-entry">
<a href="https://lukebouch.com/2022/03/21/i-have-been.html" class="u-url"><time class="dt-published" datetime="2022-03-21 20:56:51 -0400">Mar 21, 2022</time></a>
<div class="e-content">
<p>I have been making progress on Sublime Blogs. It has been going rather smoothly. It’s always that way whenever I start a new project. Sort of deceitful… it gets much harder down the road. Currently, I’m just setting up everything, defining the database schema, and creating the basic dashboard.</p>
<p>It took me a while to finally decided on a javascript text editor to use on the front-end. I have three major requirements. It has to support markdown, allow image uploading, and be open source, so I can tweak and customize as needed without having to worry about licensing.</p>
<p><a href="https://github.com/Ionaru/easy-markdown-editor">Easy Markdown Editor</a>, or <a href="https://github.com/Ionaru/easy-markdown-editor">EasyMDE</a> for short, fulfilled all three of those requirements and as a bonus, has a great UI. It’s a fork of <a href="https://github.com/sparksuite/simplemde-markdown-editor">SimpleMDE</a> with a few added features. After a few hours of work, I was able to get the editor to send its content, on update, back to whatever <a href="https://laravel-livewire.com/">Livewire</a> component it is embedded in. It may not be the most elegant… but it works.</p>
<p><img src="https://lukebouch.com/uploads/2022/0594a9b0c1.jpg" alt="" /></p>
</div>
</div>
<div class="h-entry">
<a href="https://lukebouch.com/2022/03/21/here-we-are.html" class="u-url"><time class="dt-published" datetime="2022-03-21 20:29:03 -0400">Mar 21, 2022</time></a>
<div class="e-content">
<p>Here we are again… days since my last blog post. I really need to get better at blogging more often. I think I’m going to challenge myself to blog at least once a day. It may be something interesting… it may not. But I will at least post about something every day.</p>
</div>
</div>
<div class="h-entry">
<a href="https://lukebouch.com/2022/03/18/i-guess-that.html" class="u-url"><time class="dt-published" datetime="2022-03-18 15:48:19 -0400">Mar 18, 2022</time></a>
<div class="e-content">
<p><img src="https://lukebouch.com/uploads/2022/d584908a1c.jpg" alt="" /></p>
<p>I guess that is how 7-Eleven restocks 🤔 …through the front door? Looks awkward for customers.</p>
<p>“How can I help you, sir? Oh! Yeah… just ignore the giant semi truck out in front. “</p>
</div>
</div>
<div class="h-entry">
<a href="https://lukebouch.com/2022/03/15/inspired-by-sublime.html" class="u-url"><time class="dt-published" datetime="2022-03-15 21:41:41 -0400">Mar 15, 2022</time></a>
<div class="e-content">
<p>Inspired by Sublime Ads (a SaaS Vincent Ritter is developing), Sublime Blogs is a new project I’m working on. It is a Headless CMS designed specifically to add a blog to any frontend static site generator.</p>
<p>After doing a lot of research, I’m yet to find a cheap and simple solution to move my blog over to Netlify. I’m very particular about my tech stack, and I want to be able to use the tooling I’m familiar with (Jigsaw and Tailwindcss) while still being able to post blog posts easily from my phone.</p>
<p>I decided to solve my problem by building Sublime Blogs. More information coming soon…</p>
</div>
</div>
<div class="h-entry">
<a href="https://lukebouch.com/2022/03/14/im-working-on.html" class="u-url"><time class="dt-published" datetime="2022-03-14 18:33:21 -0400">Mar 14, 2022</time></a>
<div class="e-content">
<p>I’m working on a new SaaS (software as a service) inspired by <a href="https://vincentritter.com/">Vincent Ritter’s</a> <a href="https://sublimeads.com/">Sublime Ads</a>. I will blog about it as I work out the details.</p>
</div>
</div>
<div class="h-entry">
<a href="https://lukebouch.com/2022/03/11/it-seems-like.html" class="u-url"><time class="dt-published" datetime="2022-03-11 19:50:47 -0400">Mar 11, 2022</time></a>
<div class="e-content">
<p>It seems like I go through phases of posting frequently, and then it feels like nothing interesting happens for a while and I neglect to write anything.</p>
<p>I have been working on a few projects that some may find interesting. I have outlined them below.</p>
<h2 id="vue-js">Vue JS</h2>
<p>I have been working on learning Vue JS. For those of you that are not familiar with Vue, it’s very similar to React (a piece of technology built and used by Facebook (now Meta)<sup class="footnote-ref" id="fnref:1"><a href="#fn:1">1</a></sup>).</p>
<p>I’m enjoying using it so far. I have the tendency to jump in head first instead of working through tutorials, so progress on the app I’m working on is a bit slow. I will post more about it soon.</p>
<h2 id="bmw-f650gs">BMW f650gs</h2>
<p>I have been working on replacing the clutch in my 2001 BMW f650gs. It’s a bit tricky and the stack height on the new one I think is a little too tall. Hopefully it works.</p>
<p>I know there are more projects, but honestly, I started writing out this post several days ago, and now I forgot what I was going to say. Oops 😬</p>
<div class="footnotes">
<hr />
<ol>
<li id="fn:1">Is it proper to nest parentheses inside one another or is that just something I picked up web development? 🤔
<a class="footnote-return" href="#fnref:1"><sup>[return]</sup></a></li>
</ol>
</div>
</div>
</div>
<div class="h-entry">
<a href="https://lukebouch.com/2022/03/06/i-went-for.html" class="u-url"><time class="dt-published" datetime="2022-03-06 09:47:09 -0400">Mar 6, 2022</time></a>
<div class="e-content">
<p>I went for a ride this morning. It is remarkable weather today. I rode 21 curves, and as the name implies, has 21 curves. It was a little wet out but still a lot of fun.</p>
</div>
</div>
<div class="h-entry">
<a href="https://lukebouch.com/2022/03/06/i-put-new.html" class="u-url"><time class="dt-published" datetime="2022-03-06 09:45:12 -0400">Mar 6, 2022</time></a>
<div class="e-content">
<p><img src="https://lukebouch.com/uploads/2022/a8db641b6d.jpg" alt="" /></p>
<p><img src="https://lukebouch.com/uploads/2022/c3f2d3be79.jpg" alt="" /></p>
<p><img src="https://lukebouch.com/uploads/2022/c672f8b819.jpg" alt="" /></p>
<p><img src="https://lukebouch.com/uploads/2022/43967d4cf9.jpg" alt="" /></p>
<p><img src="https://lukebouch.com/uploads/2022/7372509a64.jpg" alt="" /></p>
<p>I put new tires on my 1999 Honda Nighthawk 750. I did it by hand, and It was not too hard.</p>
</div>
</div>
<div class="h-entry">
<a href="https://lukebouch.com/2022/02/25/redirecting-is-not.html" class="u-url"><time class="dt-published" datetime="2022-02-25 14:51:44 -0400">Feb 25, 2022</time></a>
<div class="e-content">
<p><img src="https://lukebouch.com/uploads/2022/1b9bd03821.jpg" alt="" /></p>
<p>“Redirecting…” is not a very helpful title 🤔</p>
<p>Or description for that matter 😂</p>
</div>
</div>
<div class="h-entry">
<a href="https://lukebouch.com/2022/02/25/someone-accidentally-escaped.html" class="u-url"><time class="dt-published" datetime="2022-02-25 14:50:02 -0400">Feb 25, 2022</time></a>
<div class="e-content">
<p><img src="https://lukebouch.com/uploads/2022/a039bc210e.jpg" alt="" /></p>
<p>Someone accidentally escaped the <code><br></code> HTML element 😂</p>
<p>It’s good to know even a $100 billion company makes mistakes.</p>
</div>
</div>
<div class="h-entry">
<a href="https://lukebouch.com/2022/02/21/i-know-there.html" class="u-url"><time class="dt-published" datetime="2022-02-21 20:31:16 -0400">Feb 21, 2022</time></a>
<div class="e-content">
<p><img src="https://lukebouch.com/uploads/2022/43538fd158.jpg" alt="" /></p>
<p><img src="https://lukebouch.com/uploads/2022/991b29b195.jpg" alt="" /></p>
<p>I know there were at least 10 dumb mistakes that were made to get to this point. I got stuck in the very wet and leafy ground out at my cousin’s house. He came and rescued the day (or, by that point, night) and helped me get out.</p>
</div>
</div>
<div class="h-entry">
<a href="https://lukebouch.com/2022/02/21/i-have-been.html" class="u-url"><time class="dt-published" datetime="2022-02-21 20:27:51 -0400">Feb 21, 2022</time></a>
<div class="e-content">
<p>I have been fairly busy lately, and I have fallen behind on a few things. Including the Swift and SwiftUI course I have been working on.</p>
<p>I have been trying to decide whether to move forward with it or not. It takes quite a bit of time dedication (about 1hr a day) and I’m a long ways of from behind able to actually profit from the time spent.</p>
<p>I’m thinking I’m better off focusing on the web for now. I started dabbling in Vue JS and I have a cool project that would make a good PWA.</p>
<p>Furthermore, I also don’t feel like getting into the whole Apple vs. developers issues right now. At the same time, though, I want to be able to at least have some control over my iOS devices by being able to write my own apps. The web is remarkable and powerful, but there are just some things you can’t do without a native app.</p>
<p>I restarted my <a href="laracasts.com">Laracasts</a> subscription, which is a fantastic resource for learning web development, so I want to devote more time to increasing my knowledge of Laravel and related technologies. Since I’m paying for it, I might as well take full advantage of it. Plus, I know enough about Laravel and Livewire to actually take on some small projects. It makes sense to dedicate time to something I can build a career out of now, rather than working on learning something I know very little about.</p>
<p>I started writing this post thinking I had already made up my mind… but now I’m back to not being sure what I want to do now 😂</p>
<p>We will see.</p>
</div>
</div>
<div class="h-entry">
<a href="https://lukebouch.com/2022/02/17/wordle.html" class="u-url"><time class="dt-published" datetime="2022-02-17 20:21:07 -0400">Feb 17, 2022</time></a>
<div class="e-content">
<p>⬛⬛🟩⬛🟩</p>
<p>🟩⬛🟩⬛🟩</p>
<p>🟩⬛🟩⬛🟩</p>
<p>🟩🟩🟩⬛🟩</p>
<p>🟩🟩🟩🟩🟩</p>
<p>Wordle 243 5/6</p>
</div>
</div>
<div class="h-entry">
<a href="https://lukebouch.com/2022/02/12/i-finished-day.html" class="u-url"><time class="dt-published" datetime="2022-02-12 17:20:52 -0400">Feb 12, 2022</time></a>
<div class="e-content">
<p>I finished day #12 of 100 Days of Swift UI. I’m a little behind ☹️ but I’m still making progress.</p>
</div>
</div>
<div class="h-entry">
<a href="https://lukebouch.com/2022/02/12/im-not-sure.html" class="u-url"><time class="dt-published" datetime="2022-02-12 17:10:33 -0400">Feb 12, 2022</time></a>
<div class="e-content">
<p>I’m not sure how this trend has started, but now every company with a newsletter thinks it’s their job to tell everyone how to live out their daily life.</p>
<p>Like look at this email I received the other day from Feit Electric.</p>
<p><img src="https://lukebouch.com/uploads/2022/c151689a00.jpg" alt="" /></p>
<p>They make smart home devices, for Pete’s sake. I know it is just for marketing reasons, but every company does not need to be everything. Just continue making light bulbs. And if you can, make a <strong>really good</strong> light bulb.</p>
</div>
</div>
<div class="h-entry">
<a href="https://lukebouch.com/2022/01/27/222536.html" class="u-url"><time class="dt-published" datetime="2022-01-27 23:25:36 -0400">Jan 27, 2022</time></a>
<div class="e-content">
<p><img src="https://lukebouch.com/uploads/2022/b1a5108c0a.jpg" alt="" /></p>
</div>
</div>
<div class="h-entry">
<a href="https://lukebouch.com/2022/01/26/i-just-finished.html" class="u-url"><time class="dt-published" datetime="2022-01-26 22:49:07 -0400">Jan 26, 2022</time></a>
<div class="e-content">
<p>I just finished Day #05 of <a href="https://www.hackingwithswift.com/100/swiftui"><em>100 Days of Swift UI</em></a>. Today was all about <strong>if</strong> and <strong>switch</strong> statements and the oh so helpful and elegant <strong>ternary operator</strong>.</p>
</div>
</div>
<div class="h-entry">
<a href="https://lukebouch.com/2022/01/26/we-are-having.html" class="u-url"><time class="dt-published" datetime="2022-01-26 11:04:15 -0400">Jan 26, 2022</time></a>
<div class="e-content">
<p>We are having a great time skiing!</p>
<p><img src="https://lukebouch.com/uploads/2022/9d4b4aaa39.jpg" alt="" /><img src="https://lukebouch.com/uploads/2022/4d529d0f54.jpg" alt="" /><img src="https://lukebouch.com/uploads/2022/d069986e14.jpg" alt="" /><img src="https://lukebouch.com/uploads/2022/c68be8e882.jpg" alt="" /><img src="https://lukebouch.com/uploads/2022/beeab6de8c.jpg" alt="" /></p>
<p><img src="https://lukebouch.com/uploads/2022/d681b4344d.jpg" alt="" /></p>
<p><img src="https://lukebouch.com/uploads/2022/07c8e40c9c.jpg" alt="" /></p>
</div>
</div>
<div class="h-entry">
<a href="https://lukebouch.com/2022/01/25/i-finished-day.html" class="u-url"><time class="dt-published" datetime="2022-01-25 15:20:00 -0400">Jan 25, 2022</time></a>
<div class="e-content">
<p>I finished Day #04 of <a href="https://www.hackingwithswift.com/100/swiftui"><em>100 Days of Swift UI</em></a>. Today was all about type annotation.</p>
</div>
</div>
<div class="h-entry">
<a href="https://lukebouch.com/2022/01/24/yesterday-i-finished.html" class="u-url"><time class="dt-published" datetime="2022-01-24 20:55:00 -0400">Jan 24, 2022</time></a>
<div class="e-content">
<p>Yesterday I finished Day #02 of <a href="https://www.hackingwithswift.com/100/swiftui"><em>100 Days of Swift UI</em></a>, and today I finished Day #03. As much as I love PHP and JavaScript, I’m really enjoying Swift. It is interesting to learn a compiled language verses the interpreted languages I’m familiar with.</p>
</div>
</div>
<div class="h-entry">
<a href="https://lukebouch.com/2022/01/22/145315.html" class="u-url"><time class="dt-published" datetime="2022-01-22 15:53:00 -0400">Jan 22, 2022</time></a>
<div class="e-content">
<p>I just finished <a href="https://www.hackingwithswift.com/100/swiftui/1">Day #01</a> of <em>100 Days of SwiftUI</em>. I’m enjoying it so far.</p>
</div>
</div>
<div class="h-entry">
<a href="https://lukebouch.com/2022/01/21/i-went-back.html" class="u-url"><time class="dt-published" datetime="2022-01-21 15:17:09 -0400">Jan 21, 2022</time></a>
<div class="e-content">
<p>I went back to Chris Green Lake around sunset to try to capture a few photos. They did not turn out as good as I was expecting, but it was fun and I can add them to my collection.</p>
<p><img src="https://lukebouch.com/uploads/2022/582e27c471.jpg" alt="" /><img src="https://lukebouch.com/uploads/2022/6c5b4d1c1d.jpg" alt="" /><img src="https://lukebouch.com/uploads/2022/4ce988e2c1.jpg" alt="" /><img src="https://lukebouch.com/uploads/2022/3a4ff0c2b2.jpg" alt="" /></p>
</div>
</div>
<div class="h-entry">
<a href="https://lukebouch.com/2022/01/19/here-is-a.html" class="u-url"><time class="dt-published" datetime="2022-01-19 21:21:47 -0400">Jan 19, 2022</time></a>
<div class="e-content">
<p>Here is a photo I got today at the lake. I just missed sunset. I might try to go back tomorrow after work and get a photo as the sun is going down.</p>
<p><img src="https://lukebouch.com/uploads/2022/2b01d68aaa.jpg" alt="" /></p>
</div>
</div>
<div class="h-entry">
<a href="https://lukebouch.com/2021/12/28/youversion-posted-three.html" class="u-url"><time class="dt-published" datetime="2021-12-28 23:06:16 -0400">Dec 28, 2021</time></a>
<div class="e-content">
<p><img src="https://lukebouch.com/uploads/2021/2cb9c0b7dc.jpg" alt="" /></p>
<p>YouVersion posted three verses under the title of “Verse of the Day”!</p>
</div>
</div>
<div class="h-entry">
<h1><a href="https://lukebouch.com/2021/12/10/a-day-at.html">A day at the Ark Encounter</a></h1>
<a href="https://lukebouch.com/2021/12/10/a-day-at.html" class="u-url"><time class="dt-published" datetime="2021-12-10 10:58:19 -0400">Dec 10, 2021</time></a>
<div class="e-content">
<p><img src="https://lukebouch.com/uploads/2021/a8eceb0630.jpg" alt="" /></p>
<p>We arrived at the Ark Encounter about 15 mins before they opened. We purchased our tickets and then took a shuttle from the parking lot to the actual Ark Encounter.</p>
<p>The Ark was massive! It was remarkable to be able to walk through all three decks of the Ark and see the different exhibits explaining what Noah and his sons may have been doing while on the Ark.</p>
<p>A few things stood out to me. The first is that it would have been very dark in the Ark. The only light they would have had during the storm would have been a few candles or oil lights.</p>
<p>Another thing that stood out to me was that Noah and his family would have had to work very hard while in the Ark taking care of the animals. After spending 100 years building it, Noah was not even able to rest while on the Ark.</p>
<p>The last thing, which may be obvious to some, it would have smelled horrible in the Ark as it would have been all closed up and there would not have been much airflow.</p>
<p>We made some great memories and I came back with some fantastic photos.</p>
<p><img src="https://lukebouch.com/uploads/2021/bf898f60f0.jpg" alt="" /><img src="https://lukebouch.com/uploads/2021/fcd269469b.jpg" alt="" /><img src="https://lukebouch.com/uploads/2021/c6334ab3a4.jpg" alt="" /><img src="https://lukebouch.com/uploads/2021/5dbd6ee18c.jpg" alt="" /><img src="https://lukebouch.com/uploads/2021/c7d44931e4.jpg" alt="" /><img src="https://lukebouch.com/uploads/2021/a791506aa4.jpg" alt="" /><img src="https://lukebouch.com/uploads/2021/e666658502.jpg" alt="" /><img src="https://lukebouch.com/uploads/2021/063e365ee4.jpg" alt="" /><img src="https://lukebouch.com/uploads/2021/c5e995f84b.jpg" alt="" /><img src="https://lukebouch.com/uploads/2021/71084559d9.jpg" alt="" /><img src="https://lukebouch.com/uploads/2021/f771ec9bd2.jpg" alt="" /><img src="https://lukebouch.com/uploads/2021/509d0aa8c6.jpg" alt="" /><img src="https://lukebouch.com/uploads/2021/75974304d7.jpg" alt="" /><img src="https://lukebouch.com/uploads/2021/2934005d61.jpg" alt="" /><img src="https://lukebouch.com/uploads/2021/c7ad772034.jpg" alt="" /><img src="https://lukebouch.com/uploads/2021/8c237bba12.jpg" alt="" /><img src="https://lukebouch.com/uploads/2021/f6b0222e67.jpg" alt="" /><img src="https://lukebouch.com/uploads/2021/69e4d9b868.jpg" alt="" /><img src="https://lukebouch.com/uploads/2021/769e4dd2cc.jpg" alt="" /></p>
</div>
</div>
<div class="h-entry">
<a href="https://lukebouch.com/2021/12/08/we-had-a.html" class="u-url"><time class="dt-published" datetime="2021-12-08 22:05:37 -0400">Dec 8, 2021</time></a>
<div class="e-content">
<p><img src="https://lukebouch.com/uploads/2021/651b78dda8.jpg" alt="" /></p>
<p>We had a great dinner at one of our favorite restaurants, Cracker Barrel. I’m still impressed with the low light capability of the new iPhones.</p>
</div>
</div>
<div class="h-entry">
<a href="https://lukebouch.com/2021/12/08/g-for-the.html" class="u-url"><time class="dt-published" datetime="2021-12-08 19:14:53 -0400">Dec 8, 2021</time></a>
<div class="e-content">
<p><img src="https://lukebouch.com/uploads/2021/892f2b1764.jpg" alt="" /></p>
<p>5G for the first time!</p>
</div>
</div>
<div class="h-entry">
<a href="https://lukebouch.com/2021/12/08/we-are-driving.html" class="u-url"><time class="dt-published" datetime="2021-12-08 16:40:00 -0400">Dec 8, 2021</time></a>
<div class="e-content">
<p><img src="https://lukebouch.com/uploads/2021/3236c8fae1.jpg" alt="" /><img src="https://lukebouch.com/uploads/2021/4fb56c2d32.jpg" alt="" /></p>
<p>We are driving through the capital of West Virginia on our way to Kentucky. It’s crazy how the whole city is built in the mountains.</p>
</div>
</div>
<div class="h-entry">
<a href="https://lukebouch.com/2021/12/08/we-stopped-at.html" class="u-url"><time class="dt-published" datetime="2021-12-08 14:36:00 -0400">Dec 8, 2021</time></a>
<div class="e-content">
<p><img src="https://lukebouch.com/uploads/2021/d0041275f8.jpg" alt="" /></p>
<p>We stopped at a gas station and ironically, the rectangular restaurant is called “Triangle” 😂</p>
</div>
</div>
<div class="h-entry">
<a href="https://lukebouch.com/2021/12/08/my-family-and.html" class="u-url"><time class="dt-published" datetime="2021-12-08 10:51:51 -0400">Dec 8, 2021</time></a>
<div class="e-content">
<p>My family and I are our way to Kentucky to go to the Ark Encounter. I’m very excited to see the Ark that God instructed Noah to build.</p>
</div>
</div>
<div class="h-entry">
<a href="https://lukebouch.com/2021/12/07/my-ipad-finally.html" class="u-url"><time class="dt-published" datetime="2021-12-07 19:38:32 -0400">Dec 7, 2021</time></a>
<div class="e-content">
<p><img src="https://lukebouch.com/uploads/2021/d88613a674.jpg" alt="" /></p>
<p>My iPad finally shipped!</p>
</div>
</div>
<div class="h-entry">
<h1><a href="https://lukebouch.com/2021/11/30/iphone-mini.html">iPhone 13 mini</a></h1>
<a href="https://lukebouch.com/2021/11/30/iphone-mini.html" class="u-url"><time class="dt-published" datetime="2021-11-30 08:47:28 -0400">Nov 30, 2021</time></a>
<div class="e-content">
<p>Last week, I received my iPhone 13 mini after ordering it a few days prior. I decided to upgrade from my iPhone XS to the 13 mini because Verizon was running a promotional. I only paid a few dollars after trading in my old iPhone XS, and it made sense to take advantage of the offer while my XS was still worth something.</p>
<p>Furthermore, I had done very little research on the mini before ordering it, but I knew Apple had significant improved the issues found on the iPhone 12 mini. I can say after using it over the last week I’m pleased with it, and I’m enjoying the smaller size. It’s a bit more difficult to type on when compared to the large screen of the XS, but the compromise is well worth the benefits of a smaller and more affordable phone.</p>
<p>With the large discount, I received on the phone, I decided to purchase a better quality case than I normally do. I opted to go with the first-party Apple MagSafe silicon case. This is the first time I have ever had an Apple case and I can say it is well worth the price. I like the traction my hand has on the soft silicon and overall, it has a very premium feel.</p>
<p>The battery on the 13 mini is surprisingly good when compared to my XS. I usually get through the day with 50-60% left.</p>
<p>The camera is a massive upgrade for me. Both cameras have exceptional quality and the night mode is outstanding!</p>
<p>Overall, I’ve really enjoyed my new phone and look forward to continuing to testing it.</p>
</div>
</div>
<div class="h-entry">
<a href="https://lukebouch.com/2021/11/20/i-ordered-an.html" class="u-url"><time class="dt-published" datetime="2021-11-20 22:18:51 -0400">Nov 20, 2021</time></a>
<div class="e-content">
<p>I ordered an iPhone 13 mini a few days ago from Verizon and it just came in today. I’m really enjoying the size so far.</p>
</div>
</div>
<div class="h-entry">
<a href="https://lukebouch.com/2021/11/16/i-finally-decided.html" class="u-url"><time class="dt-published" datetime="2021-11-16 18:50:10 -0400">Nov 16, 2021</time></a>
<div class="e-content">
<p>I finally decided to order a new iPad Air. I have had my iPad 6th generation for about 3 years now and with the trade in value of it, it made sense to upgrade.</p>
<p><img src="https://lukebouch.com/uploads/2021/718cefe205.jpg" alt="" /></p>
</div>
</div>
<div class="h-entry">
<a href="https://lukebouch.com/2021/11/13/here-a-few.html" class="u-url"><time class="dt-published" datetime="2021-11-13 22:40:24 -0400">Nov 13, 2021</time></a>
<div class="e-content">
<p>Here a few photos I have taken over the last two days with the Sony a6300. I think they turned out great! I did a few touch-ups in post but overall the photos were very good straight out of the camera.</p>
<p><img src="https://lukebouch.com/uploads/2021/04783e2c97.jpg" alt="" /><img src="https://lukebouch.com/uploads/2021/75cf135f2e.jpg" alt="" /><img src="https://lukebouch.com/uploads/2021/5d7e3ba6f4.jpg" alt="" /><img src="https://lukebouch.com/uploads/2021/9bfd5b9a5f.jpg" alt="" /></p>
</div>
</div>
<div class="h-entry">
<a href="https://lukebouch.com/2021/11/12/today-i-purchased.html" class="u-url"><time class="dt-published" datetime="2021-11-13 00:32:54 -0400">Nov 13, 2021</time></a>
<div class="e-content">
<p>Today I purchased a Sony a6300. I got a great deal on it used, and it came with four lenses. I have been testing it out a little, and it is a big upgrade from my Canon Rebel t3i. I will post some photos I have taken with it tomorrow.</p>
<p><img src="https://lukebouch.com/uploads/2021/3565704c6e.jpg" alt="" /></p>
</div>
</div>
<div class="h-entry">
<a href="https://lukebouch.com/2021/11/08/today-i-worked.html" class="u-url"><time class="dt-published" datetime="2021-11-08 22:51:04 -0400">Nov 8, 2021</time></a>
<div class="e-content">
<p>Today I worked on cleaning and organizing my desk. I still have some work to do but it is already much more functional.</p>
<p><img src="https://lukebouch.com/uploads/2021/3285f835b3.jpg" alt="" /></p>
<p><img src="https://lukebouch.com/uploads/2021/f0b5f3b2c9.jpg" alt="" /></p>
<p>I mounted a small shelf underneath my desk where I can place my MacBook Pro while it is plugged into my Caldigit TS3 Plus.</p>
<p><img src="https://lukebouch.com/uploads/2021/a0ca2f5f76.jpg" alt="" /></p>
<p>I also ran a Cat 6 wire to an WiFi access point which also acts as a ethernet switch. Hopefully this will improve speeds now that I have a wired connection and increase WiFi coverage on this side of the house. Oh… and I also have my Synology DS418 with 2x 4TB Seagate IronWolf drives in it. It is also wired directly into the access point.</p>
<p><img src="https://lukebouch.com/uploads/2021/0a7f898350.jpg" alt="" /></p>
</div>
</div>
<div class="h-entry">
<a href="https://lukebouch.com/2021/11/06/i-hope-he.html" class="u-url"><time class="dt-published" datetime="2021-11-06 22:10:04 -0400">Nov 6, 2021</time></a>
<div class="e-content">
<p>I hope he has his golf cart license 😂</p>
<p><img src="https://lukebouch.com/uploads/2021/9b7803de31.jpg" alt="" /></p>
</div>
</div>
<div class="h-entry">
<a href="https://lukebouch.com/2021/11/06/220510.html" class="u-url"><time class="dt-published" datetime="2021-11-06 22:05:10 -0400">Nov 6, 2021</time></a>