-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1129 lines (1128 loc) · 136 KB
/
Copy pathindex.html
File metadata and controls
1129 lines (1128 loc) · 136 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang=en-US dir=ltr translate=yes prefix="og: https://ogp.me/ns/website#">
<head>
<meta charset=UTF-8>
<!--
Inspector Gadget over here...
___
_..-""\ `|`""-".._
.-' \ | `'-.
/ \_|___...-"-"'`\
|__,,..-"""``(_)-"..__ |
'\ _.-"'`.I._ ''-"..'
`''"`,#JGS/_|_\###,-"-'`
,#' _.:`___`:-._ '#,
#' ,~'-;(oIo);-'~, '#
# `~-( | )=~` #
# | |_ | #
# ; ._. ; #
# _..-;|\ - /|;-._ #
#-' /_ \\_// _\ '-#
/`# ; /__\-'__\; #`\
; #\.-"| |O O |'-./# ;
|__#/ \ _;O__O___/ \#__|
| #\ [I_[_]__I] /# |
\_(# / |O O \ #)_/
/ | \
/ | \
/ /\ \
/ | `\ ;
; \ '. |
\-._.__\ \_..-'/
'.\ \-.._.-/ /'`
\_.\ /._/
\_.; ;._/
.-'-./ \.-'-.
(___.' '.___)
View the source here: https://alexzeecomedy.com/gh/alexzeecomedy.github.io
-->
<meta name=robots content="index, follow">
<meta name=msvalidate.01 content=DB08163D532F886A00D5CB5DB93C4049>
<meta name=description content="Alex Zee is a stand-up comedian, writer, and content creator based in Huntsville, Alabama. Explore upcoming comedy shows, book live performances, and discover original content from a FOSS/open-source enthusiast.">
<meta name=keywords content="Alex Zee, Huntsville comedian, stand-up comedy Huntsville, live comedy shows Alabama, Huntsville comedy events, book a comedian Huntsville, Alabama stand-up comedy, open-source comedian">
<meta name=author content="Alex Zee">
<meta name=viewport content="width=device-width,initial-scale=1">
<meta property=fb:app_id content=983370977104769>
<meta property=og:url content=https://alexzeecomedy.com>
<meta property=og:type content=website>
<meta property=og:title content="Alex Zee Comedy | Huntsville AAPI/Latinx Stand-up Comedian">
<meta property=og:image content=https://alexzeecomedy.com/assets/artwork/opgalexzeeprayerhands.png>
<meta property=og:image:alt content="Alexzeecomedy.com in Silkscreen font on left, Alex Zee eyes closed prayer hands on right">
<meta property=og:description content="Alex Zee is a stand-up comedian, writer, and content creator based in Huntsville, Alabama. Explore upcoming comedy shows, book live performances, and discover original content from a FOSS/open-source enthusiast.">
<meta property=og:site_name content="Alex Zee Comedy">
<meta property=og:locale content=en_US>
<meta property=article:author content="Alex Zee">
<meta property=og:locale:alternate content=en_GB>
<meta name=twitter:card content=summary>
<meta name=twitter:site content=@alexzeecomedy>
<meta name=twitter:creator content=@alexzeecomedy>
<meta name=twitter:url content=https://alexzeecomedy.com>
<meta name=twitter:title content="Alex Zee Comedy | Huntsville AAPI/Latinx Stand-up Comedian">
<meta name=twitter:description content="Alex Zee is a stand-up comedian, writer, and content creator based in Huntsville, Alabama. Explore upcoming comedy shows, book live performances, and discover original content from a FOSS/open-source enthusiast.">
<meta name=twitter:image content=https://alexzeecomedy.com/assets/artwork/opgalexzeeprayerhands.png>
<meta name=twitter:image:alt content="Alexzeecomedy.com in Silkscreen font on left, Alex Zee eyes closed prayer hands on right">
<meta name=twitter:dnt content=on>
<meta name=apple-mobile-web-app-capable content=yes>
<meta name=apple-mobile-web-app-status-bar-style content=black>
<meta name=mobile-web-app-capable content=yes>
<meta name=fediverse:creator content=@alexzeecomedy@mastodon.social>
<meta name=theme-color content=#006b19 media="(prefers-color-scheme: light)">
<meta name=theme-color content=#00cc33 media="(prefers-color-scheme: dark)">
<meta name=bitcoin content=bc1qkr5tcg80434k8yckh47ay740aqc625rlqgm2la>
<meta name=microtip content=bc1qkr5tcg80434k8yckh47ay740aqc625rlqgm2la>
<meta name=microtip content=89Keyr2P6VDN5pvkrTx3deN3BuaywLxL1fUum8rF25je1Nw3SLEQ8WG3Cc5mATxSAHf6bp4h6BZ82TmLCn66PZtv96SymAP>
<meta name=contact content="+1-256-469-8687 alex@alexzeecomedy.com '34.693333;-86.560833'">
<meta name=creator content="Alex Zee">
<meta name=designer content="Alex Zee">
<meta name=web_author content="Alex Zee">
<meta name=license content="Free Art License 1.3 (FAL 1.3)">
<meta name=generator content=Hands>
<title>Alex Zee Comedy | Huntsville AAPI/Latinx Stand-up Comedian</title>
<script type=application/ld+json>
{
"@context": "https://schema.org",
"@type": "WebSite",
"name": "Alex Zee Comedy",
"url": "https://alexzeecomedy.com",
"description": "Alexzeecomedy.com is the online landing page for Alex Zee: stand-up comedian, content creator and FOSS/open-source enthusiast based in Huntsville, Alabama.",
"author": {
"@type": "Person",
"name": "Alex Zee"
},
"potentialAction": {
"@type": "SearchAction",
"target": {
"@type": "EntryPoint",
"urlTemplate": "https://alexzeecomedy.com/search.html?q={search_term_string}"
},
"query-input": "required name=search_term_string"
},
"mainEntity": {
"@type": "Person",
"name": "Alex Zee",
"url": "https://alexzeecomedy.com/pages/about",
"sameAs": [
"https://mastodon.social/@alexzeecomedy",
"https://bsky.app/profile/alexzeecomedy.com",
"https://x.com/alexzeecomedy",
"https://www.instagram.com/alexzeecomedy/",
"https://facebook.com/alexzeecomedy",
"https://www.youtube.com/channel/UCcr6TWor-uXWnheOzg8W0Iw",
"https://github.com/alexzeecomedy",
"https://store.alexzeecomedy.com",
"https://mobilizon.us/@alex_zee_comedy_tour",
"https://portfolio.pixelfed.social/alexzeecomedy",
"https://spectra.video/c/alexzeecomedy_channel/videos",
"https://lemmy.world/u/alexzeecomedy",
"https://liberapay.com/alexzeecomedy/",
"https://patreon.com/alexzeecomedy/",
"https://cash.app/$alexzeecomedy",
"https://venmo.com/u/alexzeecomedy",
"https://paypal.me/alexzeecomedy",
"https://coff.ee/alexzeecomedy",
"https://ko-fi.com/alexzeecomedy",
"https://pixelfed.social/alexzeecomedy",
"https://spectra.video/a/alexzeecomedy/video-channels",
"https://rant.li/alexzeecomedy/",
"https://www.threads.net/@alexzeecomedy",
"https://facebook.com/eezxela",
"https://www.tiktok.com/@alexzeecomedy",
"https://www.twitch.tv/alexzeecomedy",
"https://www.reddit.com/u/alexzeecomedy",
"https://letterboxd.com/alexzeecomedy/",
"https://kick.com/alexzeecomedy"
]
}
}
</script>
<script type=application/ld+json>
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "Home",
"item": "https://alexzeecomedy.com"
}
]
}
</script>
<script data-goatcounter=https://alexzeecomedy.goatcounter.com/count async src=https://cdn.jsdelivr.net/gh/alexzeecomedy/alexzeecomedy.github.io@main/assets/js/count.js></script>
<script defer src=https://hiddensource.riparia-studio.com/js/hsc.js></script>
<script defer src=https://cdn.jsdelivr.net/gh/alexzeecomedy/alexzeecomedy.github.io@main/assets/js/news.js></script>
<link rel=license type=application/rsl+xml href=https://alexzeecomedy.com/rsl.xml>
<link rel=stylesheet media=print href=https://octothorp.es/tag.css>
<link rel=shortlink href=https://z33.click>
<link rel=me href=https://mastodon.social/@alexzeecomedy>
<link rel=me href=https://bsky.app/profile/alexzeecomedy.com>
<link rel=me href=https://x.com/alexzeecomedy>
<link rel=me href=https://www.instagram.com/alexzeecomedy/ >
<link rel=me href=https://facebook.com/alexzeecomedy>
<link rel=me href=https://www.youtube.com/channel/UCcr6TWor-uXWnheOzg8W0Iw>
<link rel=me href=https://github.com/alexzeecomedy>
<link rel=me href=https://store.alexzeecomedy.com>
<link rel=me href=https://mobilizon.us/@alex_zee_comedy_tour>
<link rel=me href=https://portfolio.pixelfed.social/alexzeecomedy>
<link rel=me href=https://spectra.video/c/alexzeecomedy_channel/videos>
<link rel=me href=https://lemmy.world/u/alexzeecomedy>
<link rel=me href=https://liberapay.com/alexzeecomedy/ >
<link rel=me href=https://patreon.com/alexzeecomedy/ >
<link rel=me href=https://cash.app/$alexzeecomedy>
<link rel=me href=https://venmo.com/u/alexzeecomedy>
<link rel=me href=https://paypal.me/alexzeecomedy>
<link rel=me href=https://coff.ee/alexzeecomedy>
<link rel=me href=https://ko-fi.com/alexzeecomedy>
<link rel=me href=https://pixelfed.social/alexzeecomedy>
<link rel=me href=https://spectra.video/a/alexzeecomedy/video-channels>
<link rel=me href=https://rant.li/alexzeecomedy/ >
<link rel=me href=https://www.threads.net/@alexzeecomedy>
<link rel=me href=https://facebook.com/eezxela>
<link rel=me href=https://www.tiktok.com/@alexzeecomedy>
<link rel=me href=https://www.twitch.tv/alexzeecomedy>
<link rel=me href=https://www.reddit.com/u/alexzeecomedy>
<link rel=me href=https://letterboxd.com/alexzeecomedy/ >
<link rel=me href=https://kick.com/alexzeecomedy>
<link rel=me href=https://omg.lol/alexzeecomedy>
<link rel=stylesheet href=https://cdn.jsdelivr.net/gh/alexzeecomedy/alexzeecomedy.github.io@main/assets/css/main.css>
<link rel=preload href=https://cdn.jsdelivr.net/gh/alexzeecomedy/alexzeecomedy.github.io@main/fonts/JetBrainsMono-Bold.woff2 as=font type=font/woff2 crossorigin=anonymous>
<link rel=preload href=https://cdn.jsdelivr.net/gh/alexzeecomedy/alexzeecomedy.github.io@main/fonts/JetBrainsMono-Regular.woff2 as=font type=font/woff2 crossorigin=anonymous>
<link rel=preload href=https://cdn.jsdelivr.net/gh/alexzeecomedy/alexzeecomedy.github.io@main/fonts/UbuntuSansMono-Regular.woff2 as=font type=font/woff2 crossorigin=anonymous>
<link rel=alternate type=application/rss+xml title="Alex Zee Comedy Blog - RSS" href=/rss.xml>
<link rel=alternate type=application/atom+xml title="Alex Zee Comedy Blog - Atom" href=/atom.xml>
<link rel=alternate type=application/atom+xml title="Alex Zee Comedy Notes - RSS" href=/pages/feeds/Alex_Zee_Comedy_notes_rss.xml>
<link rel=alternate type=application/atom+xml title="Alex Zee Comedy Notes - Atom" href=/pages/feeds/Alex_Zee_Comedy_notes_atom.xml>
<link type=text/plain rel=author href=/humans.txt>
<link rel=authorization_endpoint href=https://indieauth.com/auth>
<link rel=token_endpoint href=https://tokens.indieauth.com/token>
<link rel=microsub href=https://aperture.p3k.io/microsub/1040>
<link rel=webmention href=https://webmention.io/alexzeecomedy.com/webmention>
<link rel=pingback href=https://webmention.io/alexzeecomedy.com/xmlrpc>
<link rel=dns-prefetch href=//img.shields.io>
<link rel=dns-prefetch href=//octothorp.es>
<link rel=manifest href=/site.webmanifest>
<link rel="shortcut icon" type=image/x-icon href=/favicon.ico>
<link rel=apple-touch-icon href=https://cdn.jsdelivr.net/gh/alexzeecomedy/alexzeecomedy.github.io@main/assets/artwork/cheekyzeeapple.png>
<link rel=canonical href=https://alexzeecomedy.com>
<link rel=blogroll type=text/xml href=/Alex_Zee_Comedy_blogroll.opml>
<link href=https://alexzeecomedy.com rel=home>
<link rel=octo:endorses href=https://octothorp.es>
<link rel=preload as=fetch href="https://octothorp.es/debug/orchestra-pit?uri=https://alexzeecomedy.com&as=keywords">
<link rel=icon sizes=88x31 href=https://cdn.jsdelivr.net/gh/alexzeecomedy/alexzeecomedy.github.io@main/assets/artwork/alexzeecomedybutton.webp>
<link rel=dns-prefetch href=//cdn.jsdelivr.net>
<link rel=dns-prefetch href=//waywardweb.org>
</head>
<body class=no-js>
<div id=skip><a href=#content>Skip to content</a></div>
<div class=top-banner><a href=https://secure.actblue.com/donate/dgg><em>Donate to Digital Ground Game!</em></a></div>
<header id=top>
<hgroup>
<h1><svg xmlns=http://www.w3.org/2000/svg class="neon-green-svg site-icon" width=36 height=36 viewBox="0 0 322 465.7"><path d="m309 466-1-6c-3-25-12-46-26-62a92 92 0 0 0-59-32c-9-2-10-2-121-2H0v-6l59-84 60-84H89l-30-1v-24h77l52-73 52-74H123c-26 1-43 4-56 10-20 8-33 29-39 61l-1 5v1H13v-1A8551 8551 0 0 1 24 0h288l-1 2c-2 1-11 13-59 82l-57 81h64v24h-81l-55 79-55 78h254v120h-13z"/></svg>Alex Zee Comedy</h1>
<p>The online landing page for stand-up comedian, Alex Zee.</p>
</hgroup>
<nav class=top-nav aria-label="nav toggle">
<section class=nav-header>
<h2 class="nav-links site-title"><a target=_self href=/ rel=home><svg xmlns=http://www.w3.org/2000/svg aria-hidden=true focusable=false class="menulink white-svg" width=24 height=24 viewBox="0 0 256 256"><path fill=none d="M0 0h256v256H0z"/><path d="M240 208h-16v-72l2 2a8 8 0 0 0 12-11l-99-98a16 16 0 0 0-22 0l-99 98a8 8 0 0 0 12 11l2-2v72H16a8 8 0 0 0 0 16h224a8 8 0 0 0 0-16Zm-88 0h-48v-48a4 4 0 0 1 4-4h40a4 4 0 0 1 4 4Z"/></svg>
Alex Ƶee Comedy</a>
</h2>
</section>
<menu class=nav-links>
<li><a target=_self rel=about href=/pages/about><svg xmlns=http://www.w3.org/2000/svg aria-hidden=true focusable=false class="menulink red-svg" width=24 height=24 viewBox="0 0 256 256">
<path fill=none d="M0 0h256v256H0z"></path>
<path d="M152 80a8 8 0 0 1 8-8h88a8 8 0 0 1 0 16h-88a8 8 0 0 1-8-8Zm96 40h-88a8 8 0 0 0 0 16h88a8 8 0 0 0 0-16Zm0 48h-64a8 8 0 0 0 0 16h64a8 8 0 0 0 0-16Zm-139-26a48 48 0 1 0-58 0c-21 9-37 26-43 48a8 8 0 0 0 8 10h128a8 8 0 0 0 8-10c-6-22-22-39-43-48Z"></path>
</svg>/About</a></li>
<li><a target=_self href=/pages/work><svg xmlns=http://www.w3.org/2000/svg aria-hidden=true focusable=false class="menulink orange-svg" width=24 height=24 viewBox="0 0 256 256">
<path fill=none d="M0 0h256v256H0z"></path>
<path d="M152 112a8 8 0 0 1-8 8h-32a8 8 0 0 1 0-16h32a8 8 0 0 1 8 8Zm80-40v128a16 16 0 0 1-16 16H40a16 16 0 0 1-16-16V72a16 16 0 0 1 16-16h40v-8a24 24 0 0 1 24-24h48a24 24 0 0 1 24 24v8h40a16 16 0 0 1 16 16ZM96 56h64v-8a8 8 0 0 0-8-8h-48a8 8 0 0 0-8 8Zm120 58V72H40v42a184 184 0 0 0 88 22 184 184 0 0 0 88-22Z"></path>
</svg>Work</a></li>
<li><a target=_self href=/pages/contact><svg xmlns=http://www.w3.org/2000/svg aria-hidden=true focusable=false class="menulink yellow-svg" width=24 height=24 viewBox="0 0 256 256">
<path d=M224,48H32a8,8,0,0,0-8,8V192a16,16,0,0,0,16,16H216a16,16,0,0,0,16-16V56A8,8,0,0,0,224,48ZM98.71,128,40,181.81V74.19Zm11.84,10.85,12,11.05a8,8,0,0,0,10.82,0l12-11.05,58,53.15H52.57ZM157.29,128,216,74.18V181.82Z></path>
</svg>/Contact</a></li>
<li><a target=_self href=/pages/tip><svg xmlns=http://www.w3.org/2000/svg aria-hidden=true focusable=false class="menulink terminal-svg" width=24 height=24 viewBox="0 0 256 256">
<path d=M128.09,57.38a36,36,0,0,1,55.17-27.82,4,4,0,0,1-.56,7A52.06,52.06,0,0,0,152,84c0,1.17,0,2.34.12,3.49a4,4,0,0,1-6,3.76A36,36,0,0,1,128.09,57.38ZM240,160.61a24.47,24.47,0,0,1-13.6,22l-.44.2-38.83,16.54a6.94,6.94,0,0,1-1.19.4l-64,16A7.93,7.93,0,0,1,120,216H16A16,16,0,0,1,0,200V160a16,16,0,0,1,16-16H44.69l22.62-22.63A31.82,31.82,0,0,1,89.94,112H140a28,28,0,0,1,27.25,34.45l41.84-9.62A24.61,24.61,0,0,1,240,160.61Zm-16,0a8.61,8.61,0,0,0-10.87-8.3l-.31.08-67,15.41a8.32,8.32,0,0,1-1.79.2H112a8,8,0,0,1,0-16h28a12,12,0,0,0,0-24H89.94a15.86,15.86,0,0,0-11.31,4.69L56,155.31V200h63l62.43-15.61,38-16.18A8.56,8.56,0,0,0,224,160.61ZM168,84a36,36,0,1,0,36-36A36,36,0,0,0,168,84Z></path>
</svg>/Tip</a></li>
<li><a target=_self href=/pages/tour/ ><svg xmlns=http://www.w3.org/2000/svg aria-hidden=true focusable=false class="menulink blue-svg" width=24 height=24 viewBox="0 0 256 256">
<path d=M208,32H184V24a8,8,0,0,0-16,0v8H88V24a8,8,0,0,0-16,0v8H48A16,16,0,0,0,32,48V208a16,16,0,0,0,16,16H208a16,16,0,0,0,16-16V48A16,16,0,0,0,208,32ZM72,64V56a8,8,0,0,1,16,0v8a8,8,0,0,1-16,0Zm106.55,60.7-24.46,20.19L161.55,175a4,4,0,0,1-1.49,4.17,4.05,4.05,0,0,1-2.39.79,4,4,0,0,1-2-.55L128,163.18l-27.64,16.27A4,4,0,0,1,94.45,175l7.46-30.15L77.45,124.7a4,4,0,0,1,2.24-7.08l32.24-2.49,12.4-28.71a4,4,0,0,1,7.34,0l12.4,28.71,32.24,2.49a4,4,0,0,1,2.24,7.08ZM184,64a8,8,0,0,1-16,0V56a8,8,0,0,1,16,0Z></path>
</svg>Tour</a></li>
<li><a target=_self href=/pages/links><svg xmlns=http://www.w3.org/2000/svg aria-hidden=true focusable=false class="menulink indigo-svg" width=24 height=24 viewBox="0 0 256 256">
<path d=M208,32H48A16,16,0,0,0,32,48V208a16,16,0,0,0,16,16H208a16,16,0,0,0,16-16V48A16,16,0,0,0,208,32ZM115.7,192.49a43.31,43.31,0,0,1-55-66.43l25.37-25.37a43.35,43.35,0,0,1,61.25,0,42.9,42.9,0,0,1,9.95,15.43,8,8,0,1,1-15,5.6A27.33,27.33,0,0,0,97.37,112L72,137.37a27.32,27.32,0,0,0,34.68,41.91,8,8,0,1,1,9,13.21Zm79.61-62.55-25.37,25.37A43,43,0,0,1,139.32,168h0a43.35,43.35,0,0,1-40.53-28.12,8,8,0,1,1,15-5.6A27.35,27.35,0,0,0,139.28,152h0a27.14,27.14,0,0,0,19.32-8L184,118.63a27.32,27.32,0,0,0-34.68-41.91,8,8,0,1,1-9-13.21,43.32,43.32,0,0,1,55,66.43Z></path>
</svg>/Links</a></li>
<li><a target=_self href=/pages/ ><svg xmlns=http://www.w3.org/2000/svg aria-hidden=true focusable=false class="menulink purple-svg" width=24 height=24 viewBox="0 0 256 256">
<path fill=none d="M0 0h256v256H0z"></path>
<path d="M208 32H48a16 16 0 0 0-16 16v160a16 16 0 0 0 16 16h160a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16Zm-21 155a8 8 0 0 1-11 0L69 80a8 8 0 0 1 11-11l107 107a8 8 0 0 1 0 11Z"></path>
</svg>/Pages</a></li>
</menu>
</nav>
</header>
<nav class=breadcrumb-nav aria-label=Breadcrumb>
<ol class=breadcrumb-list>
<li class=breadcrumb-item>
<a target=_self href=/ aria-current=page rel=home>Home</a>
</li>
</ol>
</nav>
<main>
<section data-component class=smol-stack-layout>
<picture>
<source media="(max-width: 767px)" srcset="https://cdn.jsdelivr.net/gh/alexzeecomedy/alexzeecomedy.github.io@main/assets/artwork/alexzeeprayer_320.webp 320w, https://cdn.jsdelivr.net/gh/alexzeecomedy/alexzeecomedy.github.io@main/assets/artwork/alexzeeprayer_640.webp 640w" sizes="(max-width: 767px) 100vw, 640px">
<source media="(min-width: 768px) and (max-width: 1023px)" srcset="https://cdn.jsdelivr.net/gh/alexzeecomedy/alexzeecomedy.github.io@main/assets/artwork/alexzeeprayer_768.webp 768w, https://cdn.jsdelivr.net/gh/alexzeecomedy/alexzeecomedy.github.io@main/assets/artwork/alexzeeprayer_1024.webp 1024w" sizes="(max-width: 1023px) 80vw, 1024px">
<source media="(min-width: 1024px)" srcset="https://cdn.jsdelivr.net/gh/alexzeecomedy/alexzeecomedy.github.io@main/assets/artwork/alexzeeprayer_1200.webp 1200w, https://cdn.jsdelivr.net/gh/alexzeecomedy/alexzeecomedy.github.io@main/assets/artwork/alexzeeprayer_1920.webp 1920w" sizes=1200px>
<img fetchpriority=high width=1920 height=848 src=https://cdn.jsdelivr.net/gh/alexzeecomedy/alexzeecomedy.github.io@main/assets/artwork/alexzeeprayer_1920.webp alt="Alex Zee prayer hands.">
</picture>
<h3 class=hero-text>WELCOME!</h3>
</section>
<article class=about-section>
<section>
<hgroup>
<h2>... to alexzeecomedy.com!</h2>
<p>The online home of stand-up comedian, Alex Zee.</p>
</hgroup>
<blockquote cite=https://alexzeecomedy.com>
<p>
"This machine kills the model minority."
</p>
</blockquote>
<p>-<cite>Alex Zee</cite></p>
<h3>as seen on</h3>
<svg xmlns=http://www.w3.org/2000/svg height=64 id=Layer_2 viewBox="0 0 354 163.3"><title>Don't Tell Comedy</title><defs><style>.cls-1{fill:#fc0000}.cls-2{fill:#fcfcfc}</style></defs><g id=Layer_1-2><path d="M180.4 87.7v74.5h-11v-56h-.2l-.2.8-7.3 48.2-1 6.3c0 .3-.5.7-.7.7h-9.2l-8.5-56.1h-.3v56.1h-10.2V87.6h16.8l7.4 53.2h.2l7.5-53.2h16.7Z" class=cls-1 /><path d="M122.7 75.7h-12l-14-54.1h-.3v54.1H86V1.2h14.8L112 45.5h.3V1h10.4v74.6ZM0 1h18.2c1.7.1 3.4.3 5 .6C30 3.1 34 7.5 35 14.6c.2 1.5.4 3.1.4 4.7v38.3c0 2-.3 4.2-.7 6.2-1.6 7-6.5 11.2-13.9 11.9H0V1.2Zm11.8 10.8v53.3h6.6a4.8 4.8 0 0 0 4.8-4c.3-1.2.4-2.5.4-3.8V19.5a17 17 0 0 0-.5-4.1 4.5 4.5 0 0 0-4.4-3.5c-2.3-.2-4.6 0-7 0Z" class=cls-2 /><path d="M228 162.1V87.6h18.3c1.6 0 3.1.1 4.6.4a14.2 14.2 0 0 1 12 12.3c.4 1.7.6 3.4.6 5.1v39c0 2-.3 4-.7 6-1.6 6.8-6.3 11.2-13.3 11.6-7 .4-14.1.2-21.1.2l-.3-.1Zm11.8-10.6 7.5-.1a4.2 4.2 0 0 0 3.8-3.2c.4-1.4.6-2.8.6-4.3v-38c0-1 0-2.2-.3-3.2-.4-2-1.3-3.8-3.4-4-2.7-.5-5.4-.4-8.2-.6v53.3Z" class=cls-1 /><path d="M42.4 38.5v-20c0-2.9.3-5.6 1.3-8.3C45.5 5.4 49 2.2 54 1 57.8-.2 61.8-.3 65.7.7c6.8 1.6 11 6.4 12 13.6l.3 4.2v39.8c0 2.5-.4 5-1 7.4a14.3 14.3 0 0 1-11.1 10.5c-4 .9-7.8.9-11.7-.1-6.8-1.8-10.4-6.6-11.5-13.4l-.3-4.5V38.5Zm23.9 0v-20c0-1.4-.2-2.8-.6-4.2-.8-2.4-2.7-3.5-5.5-3.5-2.9 0-4.8 1.1-5.5 3.5-.4 1.3-.6 2.7-.6 4v40.2c0 1.3.2 2.7.6 4 .7 2.5 2.6 3.6 5.6 3.6 2.8 0 4.7-1.2 5.4-3.6.4-1.3.5-2.8.5-4.1v-20Z" class=cls-2 /><path d="M124 125v19.6c-.1 2-.3 4.2-.8 6.3-1.7 7.4-7.1 11.9-15 12.3a29 29 0 0 1-7.7-.6c-6.7-1.5-11-6.5-12-13.7l-.2-4.1v-39.9c0-2.3.4-4.8 1-7 1.5-5.6 5.2-9.2 10.8-10.7 3.7-1 7.4-1 11.2-.1a15.2 15.2 0 0 1 12.3 13.5c.2 1.6.3 3.3.3 5V125Zm-11.9 0v-20c0-1.3-.1-2.7-.5-4-.7-2.5-2.6-3.7-5.5-3.7-3 0-4.8 1.2-5.6 3.7-.3 1.2-.5 2.5-.5 3.7v40.5c0 1.3.2 2.6.6 3.8.7 2.4 2.6 3.6 5.5 3.6s4.7-1.1 5.5-3.6c.4-1.3.5-2.8.5-4.2V125ZM82 134.5c-.2 5.3 0 10.5-.7 15.5-1.1 8-6.8 12.8-14.8 13.2-2.1.1-4.3 0-6.4-.3-7.2-1.4-11.7-6.3-12.6-13.7l-.3-4.3v-40.4c.1-2.5.5-5 1.2-7.5 1.6-5.1 5-8.4 10.2-9.7 3.6-1 7.3-1 11-.3 6.2 1.4 10 5.4 11.5 11.4 1.2 4.7.5 9.5.7 14.3h-11v-1.3c-.1-3 0-6-.3-8.9-.2-3.2-2.2-5.1-5.1-5.3-3.6-.1-5.6 1.5-6.2 4.9l-.2 2.6v40.6c0 1.3.2 2.6.6 3.8.7 2.4 2.6 3.6 5.4 3.5 2.7 0 4.6-1.3 5.2-3.7.4-1.2.5-2.4.5-3.7V134.5H82Z" class=cls-1 /><path d="M275.4 42.1h-16v23h20.1v10.6h-32V1.2h32v10.5h-20.2v19.7h16v10.7Z" class=cls-2 /><path d="M189.4 87.7h31.9v10.5h-20.1V118H217v10.7h-16v22.9h20.2v10.7h-31.9V87.7ZM266.2 87.6h11.4c.9 0 1.2.3 1.4 1l7.2 24.9.5 1.6.5-1.4 7.3-24.9c.2-1 .6-1.2 1.6-1.2H306.3l-2.3 7.1-11.5 34.8c-.3.7-.4 1.5-.4 2.3v30.4h-11.8V131.6c0-.7-.1-1.5-.3-2.2L266.6 89l-.4-1.3Z" class=cls-1 /><path d="M162 11.8h-12.3V1.1h36.2v10.6h-12.2v64H162V11.8ZM218 11.8h-12.3V1.1h36.2v10.6h-12.2v64H218V11.8ZM323 1.1h11.7v64H354v10.6h-31V1ZM286.3 75.7V1.1h11.6v64h19.3v10.6h-31ZM131.6 1.1h11.2v10.1c0 .3-.2.5-.3.8-2 4.1-3.9 8.2-5.7 12.4-.4.7-.8.9-1.5.9h-4.5l4.5-12.9h-3.7V1.1Z" class=cls-2 /></g></svg>
<svg xmlns=http://www.w3.org/2000/svg version=1.1 height=64 viewBox="0 0 159 53"><title>NPR (National Public Radio)</title><path d="M0 56.6h162.6V0H0v56.6z" style=fill:#fff;fill-rule:evenodd;stroke:none transform="translate(-1.8 -1.8)"/><g style=fill:#ff330d;fill-rule:evenodd;stroke:none><path d="M0 53h53V0H0v53z" style=fill:#ff330d;fill-opacity:1;stroke:none /></g><g style=fill:#000;fill-rule:evenodd;stroke:none><path d="M0 53h53V0H0v53z" style=fill:#000;stroke:none transform=translate(53) /></g><g style=fill:#36c;fill-rule:evenodd;stroke:none><path d="M0 53h53V0H0v53z" style=fill:#36c;fill-opacity:1;stroke:none transform=translate(106) /></g><g style=fill:#fff;fill-rule:evenodd;stroke:none><path d="M17.5 27.6V12c0-2.3-.5-4-1.4-5-.8-1.1-2.3-1.7-4.3-1.7-1 0-2 .3-3 .8S7 7.3 6.3 8.1v19.5H0V.5h4.6L5.7 3c1.8-2 4.3-3 7.7-3C16.6 0 19 1 21 2.9c1.9 2 2.8 4.6 2.8 8v16.7h-6.3z" style=fill:#fff;stroke:none transform="translate(14.2 12.4)"/></g><g style=fill:#fff;fill-rule:evenodd;stroke:none><path d="M10.4 5.4c2.9 0 5 .7 6.2 2 1.3 1.3 2 3.5 2 6.7 0 3-.7 5.2-2 6.6-1.2 1.4-3.3 2.1-6.2 2.1-1.6 0-3-.4-4-1.4V7.2a5.6 5.6 0 0 1 4-1.8zm1.4 22.8c4.1 0 7.4-1.2 9.8-3.6 2.4-2.4 3.6-5.9 3.6-10.3 0-9.5-4.3-14.3-13-14.3-2.3 0-4.3.8-5.9 2.3V.5H0v37.7h6.3V27c1.7.8 3.5 1.2 5.5 1.2z" style=fill:#fff;stroke:none transform="translate(67.2 12.4)"/></g><g style=fill:#fff;fill-rule:evenodd;stroke:none><path d="M15.6 6.4c-1-.7-2.3-1-3.7-1a5 5 0 0 0-3.9 2 7.3 7.3 0 0 0-1.7 4.8v15.4H0V.5h6.3V3c1.8-2 4.1-3.1 7-3.1 2.2 0 3.9.3 5 1l-2.7 5.4z" style=fill:#fff;stroke:none transform="translate(123.8 12.4)"/></g></svg>
<svg xmlns=http://www.w3.org/2000/svg id=text__x28_1:1_x29_ version=1.1 height=64 viewBox="0 0 756 162"><title>Epic Comedy Hour</title><defs></defs><path class=white-svg d="M60 142H29V20h31v10H40v46h16v10H40v46h20v10ZM105 67c0 5-2 9-5 13s-8 6-13 6h-7v56H69V20h18c5 0 10 2 13 6s5 8 5 13v28Zm-12 0V39c0-6-2-9-6-9h-7v46h7c4 0 6-3 6-9ZM125 142h-11V20h11v122ZM172 124c0 5-1 9-4 13-4 4-8 6-14 6s-9-2-13-6c-3-4-4-8-4-13V38c0-5 1-9 4-13a17 17 0 0 1 26 0c4 4 5 8 5 13v15h-11V38c0-6-2-9-7-9-2 0-3 1-5 3l-1 6v86l1 6c1 2 3 3 5 3 5 0 7-3 7-9v-14h11v14ZM265 124c0 5-2 9-5 13s-8 6-13 6-10-2-13-6-5-8-5-13V38c0-5 2-9 5-13s8-6 13-6 10 2 13 6 5 8 5 13v15h-12V38c0-6-2-9-6-9-2 0-4 1-5 3l-2 6v86l2 6c1 2 3 3 5 3 4 0 6-3 6-9v-14h12v14ZM311 124c0 5-2 9-5 13s-8 6-13 6-10-2-13-6-5-8-5-13V38c0-5 2-9 5-13s8-6 13-6 10 2 13 6 5 8 5 13v86Zm-11 0V38c0-6-3-9-7-9-2 0-4 1-5 3l-1 6v86l1 6c1 2 3 3 5 3 4 0 7-3 7-9ZM363 142h-12V77l-9 45-9-45v65h-11V20h11l9 47 10-47h11v122ZM405 142h-31V20h31v10h-20v46h16v10h-16v46h20v10ZM450 123c0 5-2 10-5 13-3 4-8 6-13 6h-18V20h18c5 0 10 2 13 6s5 8 5 13v84Zm-12 0V39c0-6-2-9-6-9h-7v102h7c4 0 6-3 6-9ZM495 20l-8 51a438 438 0 0 0-4 47 1814 1814 0 0 0 0 24h-12v-41l-1-10-3-20-8-51h12l6 46 6-46h12ZM587 142h-11V86h-13v56h-12V20h12v56h13V20h11v122ZM634 124c0 5-2 9-5 13s-8 6-13 6-10-2-13-6-5-8-5-13V38c0-5 2-9 5-13s8-6 13-6 10 2 13 6 5 8 5 13v86Zm-11 0V38c0-6-3-9-7-9-2 0-4 1-5 3l-1 6v86l1 6c1 2 3 3 5 3 4 0 7-3 7-9ZM681 124c0 5-2 9-5 13-4 4-8 6-13 6s-10-2-13-6c-4-4-5-8-5-13V20h11v104l2 6c1 2 2 3 5 3 4 0 6-3 6-9V20h12v104ZM727 142h-11V95c0-6-2-9-7-9h-6v56h-11V20h17c6 0 10 2 14 6 3 4 4 8 4 13v25c0 8-3 13-9 17 6 4 9 9 9 17v44Zm-11-75V39c0-6-2-9-7-9h-6v46h6c5 0 7-3 7-9Z"/></svg>
<img alt="Huntsville Comedy logo" width=64 height=64 src=https://cdn.jsdelivr.net/gh/alexzeecomedy/alexzeecomedy.github.io@main/assets/artwork/HSVComedy_LOGOS-01.svg>
<img alt="Black Panther/Hidden Dragon logo" width=64 height=64 src=https://cdn.jsdelivr.net/gh/alexzeecomedy/alexzeecomedy.github.io@main/assets/artwork/bphd.svg>
</section>
</article>
<div class=main-container>
<aside class="h-card hcard h-card-style">
<img class="u-photo avatar" src=https://cdn.jsdelivr.net/gh/alexzeecomedy/alexzeecomedy.github.io@main/assets/artwork/cheekyzee120.webp alt="Alex Zee" width=120 height=120 loading=lazy>
<svg xmlns=http://www.w3.org/2000/svg class=u-logo width=32 height=32 viewBox="0 0 344.4 344.4"><title>Mandarin House Productions logo</title><g stroke=#000 transform="translate(-21 -14)"><ellipse cx=190.5 cy=186.1 fill=#fff stroke-width=2.4 rx=129.3 ry=125.9 /><path class=red-svg stroke-width=4 d="M193 16A170 170 0 0 0 23 186a170 170 0 0 0 170 171 170 170 0 0 0 171-171A170 170 0 0 0 193 16Zm0 45c66 0 126 60 126 125 0 66-60 126-126 126-65 0-125-60-125-126 0-65 60-125 125-125Z"/><path stroke-width=2 d="m669 317 20 3 2 1 6 1-9-4-18-9 1-5 20-3 9-1-7-1-20-3 1-7 33 6-1 9-20 3h-2l-5 1 5 2 19 9-1 10-34-6zm-8 21 4-4h7q3 2 4 5t-1 8l-3 5 2 1 3 1 3-3v-2q0-2-2-3l3-6q4 2 4 6 1 3-1 8-3 4-6 5t-7 0l-9-4-3-1-1 1-1 1-3-1v-2l1-1v-1q1-3 3-3h4q-3-5-1-10zm8 13 1-4 1-3v-2l-2-1-3-1-2 2v3l1 3 3 2zm-30 22 11 9q6 5 9 1l1-4q-1-3-4-5l-10-9 4-5 15 13 3 2 2 1-4 5-2-1-2-2 1 6-2 5q-3 3-6 3-4 0-7-3l-13-11Zm-25 22 1 1 2 2q-1-5 4-9 3-3 7-1 5 1 8 7 4 5 4 9 0 5-4 7-2 2-5 2l-4-1 2 4 6 7-6 4-17-24-4-5zm8 10q2 4 5 5 2 1 4-1 3-2 2-4l-2-6q-6-8-10-4-2 1-2 4t3 6zm-28 0q3-2 6 0 3 1 4 4 2 4 0 7t-6 5l-6 2 1 1 2 3h3l3-1v-3l6-3q1 4-1 7t-6 5h-8q-4-1-5-5l-4-9-1-3h-2l-2 1-1-4h1l1-1h1l1-1h4l3 3q1-6 6-8zm-3 14 3-1 3-2 1-1v-3l-2-2h-2l-3 2-1 3 1 3zm-20-6 3 20 1 3v3l-6 1-1-3v-3l-2 4-1 2-3 1h-2l-1-5h3l4-3v-6l-2-13zm-22 34v4l-7 1v-5zm-1-31 1 26h-7v-26zm-33-3-3 14q-1 7 4 8l4-1q2-2 2-6l3-13 6 1-3 20-1 3v3l-6-2v-5l-4 4h-5q-4 0-6-3t-1-8l3-16zm-50-23-8 13 12 8 8-12 6 3-18 29-6-4 7-11-12-9-8 12-6-4 19-29zm-39-21q4-4 9-4 5 1 9 5 4 5 4 10t-5 9q-5 4-10 4t-9-5q-4-5-4-10 1-4 6-9zm4 6-4 5q-1 3 1 5 4 5 11-1l4-6q1-2-1-4-4-5-11 1zm-25-16 13-6q6-3 4-7-1-3-4-3-2-1-5 1l-13 6-3-6 18-9 6-3 2 6-4 3 5 1 4 4q2 4 0 7-1 3-6 5l-14 7zm0-56q4-1 7 2 3 2 4 8v8q-1 3-5 5l-2-6 3-2-1-4-1-4-3-1-1 1-1 4v8l-2 4-4 1q-3 1-6-1-3-3-4-8-1-4 1-7 1-4 4-5l2 6q-2 0-2 2v3l1 4h2l2-1v-9l1-4 2-2q1-2 3-2zm8-21q0 6-4 9-3 3-10 3-6 0-10-4-3-3-3-9 0-5 4-8t11-3v17q4 0 6-2l2-3q0-4-3-5v-6q7 2 7 11zm-23-1q0 3 2 4l4 2 1-11-5 2q-2 1-2 3z" style=line-height:1.25;-inkscape-font-specification:quot transform="rotate(177 369 232)"/><path stroke-width=3.6 d="M134 165v67q0 9-7 9h-7l-2-7 7 1q3 0 3-5v-19h-12q-1 17-5 31l-7-3q6-19 6-41v-33zm-17 20h11v-14h-11zm0 20h11v-14h-11zm24-37h41v6h-17v59h20v7h-47v-7h20v-59h-17zm94-3v31h-26v46h-7v-77Zm-26 13h20v-7h-20zm0 13h20v-7h-20zm67-26v67q0 10-7 10h-12l-1-7h11q3 0 3-5v-34h-28v-31Zm-27 13h21v-7h-21zm21 13v-7h-21v7z" style=line-height:1.25;-inkscape-font-specification:Arial /><path stroke-width=7.6 d="M1420 295v-19l90-38v14l-78 34 78 33v14z" style=line-height:1.25;-inkscape-font-specification:Arial;white-space:pre transform="matrix(.01348 .36443 -1.88771 .0026 701 -402)"/><path stroke-width=2 d="M454 545h6l4 4q2 3 2 7l1 8 12-1 1 7-34 3-2-15q0-6 2-9 3-4 8-5zm1 7q-6 0-5 6l1 8 11-1-1-8q0-3-2-4-2-2-4-1zm17-28-19 7-3 1-3 1-2-6 2-1 3-1h-4l-2-1-2-3v-2l5-2 1 3 3 3q3 1 6-1l12-4zm-37-43q5-4 10-3t8 7q4 5 2 10-1 4-6 8-5 3-10 2-5 0-9-6-3-5-2-10t7-8zm3 6q-3 2-4 5v5q4 5 11 0 4-2 5-5 1-2-1-5-3-5-11 0zm-18-38-1 1-1 2q5-2 9 2 4 3 3 7 0 5-4 9-5 5-9 6t-8-2l-3-4v-5l-3 4-6 7-5-5 20-22 4-5zm-8 10q-3 3-3 5-1 3 1 5t5 1l5-4q6-7 2-10-2-2-5-1-2 0-5 4zm-30-5 6-13q3-7-1-9-2-1-5 1l-3 4-6 12-7-3 9-18 3-5 6 3-2 4v1q2-3 5-3l5 1q3 2 4 5t-1 8l-7 15zm-34-40q6 1 8 5 3 4 2 11-2 6-5 9-4 3-10 2-5-1-7-4-3-3-3-7l7 1 1 3q1 2 3 2 5 1 7-7 1-9-4-10h-3q-2 1-2 3l-7-1 3-4 4-3h6zm-36-3q3 0 4 2 2 1 2 5v15h4v5h-4l-2 6h-4v-6h-5v-5h5l-1-13v-3l-3-1-2 1v-5l6-1zm-17 33 1 5-7 2-1-5zm-6-30 5 26-7 1-5-25zm-44 29q-2-6 0-11 1-4 7-7 6-2 10 0 5 1 7 7 3 6 1 11-1 4-7 7-6 2-10 1-5-2-8-8zm7-3 4 6h5q6-3 2-11l-4-5q-2-2-5-1-6 3-2 11zm-41 12 9 11q5 5 8 2 2-1 2-4l-2-5-9-11 5-4 13 16 2 2 2 2-5 4-2-2-2-2v6l-3 4q-3 3-6 2l-7-4-10-13zm-25 41q-3-2-3-6t3-8q3-5 6-6h7l-3 5h-3l-3 3-2 4 1 2 2 1 3-3 7-5 3-1 4 2q3 2 3 6 0 3-3 7t-6 5q-3 2-6 0l3-5h3l2-2 2-4-1-2h-2l-3 2-4 4-3 2h-4l-3-1z" style=line-height:1.25;-inkscape-font-specification:quot transform="rotate(163 283 372)"/></g></svg>
<h2>
<em class=p-honorific-prefix>Mr.</em>
<strong class=p-name><a target=_self class=u-url href=/ rel=home>Alex Zee</a></strong>
</h2>
<p class=u-pronoun><a rel=me href=/pages/verify#pronouns>he/him/they/them</a></p>
<p class=p-job-title>
Stand-up Comedian, Writer, Video Editor, Artist
</p>
<p class=p-role>Performer, Host, Producer</p>
<p class=p-org>Mandarin House Productions</p>
<p class=p-note>
Stand-up comedian, FOSS/privacy enthusiast based in Huntsville, AL. Host of Phusion Comedy Open Mic and editor of Clown College Podcast. Available for bookings and collaborations.
</p>
<a class="u-url u-email" target=_blank rel="noopener noreferrer" href=mailto:alex@alexzeecomedy.com>alex@alexzeecomedy.com</a><br>(<a href=https://useplaintext.email/ rel="noopener noreferrer" target=_blank>plain text email</a>
encouraged)
<a class="u-url u-uid hide" rel="me home" href=/ >alexzeecomedy.com</a>
<a class="u-url hide" rel=me href=https://mastodon.social/@alexzeecomedy>Mastodon</a>
<a class="u-url hide" rel=me href=https://bsky.app/profile/alexzeecomedy.com>Bluesky</a>
<a class="u-url hide" rel=me href=https://pixelfed.social/alexzeecomedy>Pixelfed</a>
<a class="u-url hide" rel=me href=https://spectra.video/c/alexzeecomedy_channel/videos>PeerTube</a>
<a class="u-url hide" rel=me href=https://rant.li/alexzeecomedy>WriteFreely</a>
<a class="u-url hide" rel=me href=https://x.com/alexzeecomedy>X (Formerly Twitter)</a>
<a class="u-url hide" rel=me href=https://www.threads.net/@alexzeecomedy>Threads</a>
<a class="u-url hide" rel=me href=https://github.com/alexzeecomedy>Github</a>
<a class="u-url hide" rel=me href=https://www.instagram.com/alexzeecomedy/ >Instagram</a>
<a class="u-url hide" rel=me href=https://facebook.com/alexzeecomedy>Facebook Page</a>
<a class="u-url hide" rel=me href=https://facebook.com/eezxela>Facebook Profile</a>
<a class="u-url hide" rel=me href=https://www.tiktok.com/@alexzeecomedy>TikTok</a>
<a class="u-url hide" rel=me href=https://www.youtube.com/channel/UCcr6TWor-uXWnheOzg8W0Iw>YouTube</a>
<a class="u-url hide" rel=me href=https://www.twitch.tv/alexzeecomedy>Twitch</a>
<a class="u-url hide" rel=me href=https://lemmy.world/u/alexzeecomedy>Lemmy</a>
<a class="u-url hide" rel=me href=https://www.reddit.com/u/alexzeecomedy>Reddit</a>
<p class=p-category>
Stand-up, Comedy, Writing, Video Editing, Podcasting, Art
</p>
<address class=p-adr>
<em class=p-post-office-box>PO Box 1012</em><br>
<em class=p-locality>Madison</em>,
<em class=p-region>AL</em>
<em class=p-postal-code>35756</em><br>
<abbr class=p-country-name>USA</abbr>
</address>
<p class=p-geo>
<em class=p-latitude>34.693333</em>,
<em class=p-longitude>-86.560833</em>
</p>
<time class=dt-bday>1996-02-02</time>
<pre class="u-key hide">
-----BEGIN PGP PUBLIC KEY BLOCK-----
xsFNBGhWsjABEACZOOCH9UGArL8M7pgzKbJPEmRgGeCXHVn+OZs/Tepvdl+F
y/k75KgXMyIenU6dPcGEs+OpPjzAH1bobGnl/A/BT98mns+RgvDrS30wKpLg
nf9i/UBw8RTDykwnCSiq3w+9O6hbr8BOoB/ZxDTtrE3YVb73UY7VlurU6+Se
FFYt9y0EgL2bw3127b7yabJgVX67p0zegOOduxp24Tx52vaFc810uH6dC6O4
qh6iK9PO5M2ea11WPXk3KEzBFPvBVecoS/ymbWO3NzmBEWl07z9Tc7GWYF65
e39lHBQuE9nRvAGVDKMBHcOQViotI1t61e+oTFT7OYNcilkXTKVXG4lIIjKC
TsW1X9s0dYSloFP8g5r1IQzLG5iAYDbLors0QOcLreXbv3sWoUtR07WmtYjH
Z9c73opoJkB4d9UbWnyfw9mOKHqjErPLAZowoaAJUY0C2dzHyB0SklAp1pbQ
O+poniIcAuDdtMH+QPkDLaFbHPRPnGndR0hXRtJD5diFxRZZnY+sFvNyQtig
woKtYx+K0gHMUina+NUO/YHPC5vICuNqbSjl2cGQ8wO2X8QNPSTVNSDemt/J
Ws/gvxF64tkRnzBXCaeJf5u1MiiaciqDyonkaUA/lrmo1S6j/dPLcfwca2mR
VVdc5NUfZcAeFiEu91oIHbYbsRfaxHWD0K3igwARAQABzSlBbGV4IFplZSBD
b21lZHkgPGFsZXh6ZWVjb21lZHlAZ21haWwuY29tPsLBigQQAQgAPgWCaFay
MAQLCQcICZBmZMJBTtQGwAMVCAoEFgACAQIZAQKbAwIeARYhBKUJTetHV//X
WkrbTWZkwkFO1AbAAABi3w/+KPXRgZHAMfyPFLJNW4HeVYLCz3j/EMh6HwE+
VKCen2yc+KFwo23qwhDgqCZZMrpxKyoOqLYe08mpzUMDVJDIY41dRJ9kHgj7
v6xO6TdKIraYU2y6y+W9AYp1eXoyqAFFBqOWVCy+5LO64DhXv6z6PnSn16dC
KgytmwGizDnjBVW1Gz/HhaZa/Tjwwo2giQ34ccSr50NWT41zjQs8pMnIWOyG
RhqGv5s7J5dwFzP0ABi7OH8DruKfLxJCIn702Cph3jL3SN9jpvZrl098SY/q
sG7SRhq81bpBxqst8ryPN6dx++L/ofAenRNgCZtxXOa8gjjGCFn9K5Yi7Rl5
Yw+CCnvBmjk52j3BSwqdDhJXdSECTwGobWYQktV8FX+KV59LJCKo47vkRCJ+
mPz3F8+OERUKYGLmsdM6ScRCVJK+ddpQatr7aiw2sLgxHytarih/q+Wo5OZ2
G4qMGTJhB/iDgB0FRdsz9awDIVDjt0g0H1RxwrnZEnnOMinjGeUMEqr1lJ/w
ZpY+yhkwQc7IukSnooMj/b4TSklKr3UrWlqMwHIe4kdfuBQRXsTp5PTfg14O
mkz6PZsGBYy6od0gaO8buUxmNfaYD83zm27EwDQviGEX/sqAqWtaw8VT5fQP
6QWy+MU3J4lUqKZ9ImTjkzZ4KgLBb3zTOaCwQewnRWFrPcvOwU0EaFayMAEQ
AN3ewZDyTNfySHkEfRuQgJdjUi688xX8RMhSDeNjMY7IDQ+WUJ9ObJILFOOg
ZTchpRZRjyxbw8sr9lBiAkGrlRVXiTPihlMBnsLzEUa4gQvKfPXkVOgBDJLz
BqXmdInS+wacv7QUeJS6VTIPyb85foyg2C5PLv1UoiNcawxgXTpYifWaJzNf
gLTM4lWHubK0MD5+YOgdwS2Ru3jfFDUNlppwmXtkefs+x+l674Pfyps0hEWe
J8sDhi69KedfQ83fBVMxo/afqlz+CEnkKqax67mUHsf/D1DhFwBZ/iCgoRIZ
psP8fmwRCqePx0OSoI0xf2BCyAw5RBmDANvcjwjgu/I64GbsYH+UyKyGboKn
T1fHY/Tmr8y8xiK7R4rX/m3J0aEvOphxrF1Gl7Ks289Tyy41GMYAGq8aQleT
jSuFL3H8jes3f6MYu4FcPXCGQHH/9A+7mFVp+GOyvo2Ctp6BpI6cJG/DJymq
sNBh0A/IuwpTjmgyjmkH/JOkLTmjD5Ftzg/f/qtkEfUQdWd4jazS63dM2c1W
zngwG8sY1fKo+HeEnsEJAmywLepNyCb9liawpzo6Dd2FEFMwat+e2Ic3qgz2
wdCpRdGvFmRWAnQPMiXuSlPQRd4tY369ng/AI6R3G2BZG8Ot74HiHwh8YuzQ
Ka2MD7oS2Ukpwvjvg49d1T6tABEBAAHCwXYEGAEIACoFgmhWsjAJkGZkwkFO
1AbAApsMFiEEpQlN60dX/9daSttNZmTCQU7UBsAAAFMFD/4sgQQa4MzViRAb
/chQaT5n8FiEZcMN+/GNRfTrigpK/GqNd3tbuC8HBQDI8OUuwVYaxF+jhJ5y
I1lVdlCn/cfrv/oEC/z7KrHsVsmop1mu+GTozsRnHO4s/zoEp89V3QVklGBA
UmFrDhjb/uRa1Wa6jtwrjWB73nXOcjzBwoPqSOB0T5O+DS8gjfcJck+VOlZS
g3QCXbDpr64jludtu/8n1UeA7MudzBiml/E0fp26fvKxUu5yMOcHuXjZJr2j
lZOi54H2yqYEOlCCUenCfHzEUHi8SQMdhXXGBUIXpSOskUeUXARm0LItIxLx
msP1uZ7YJEwtJl99Yh4Qwv6/OyLy7Keedycak369kqVkk8gA6ccrfYY7FE0/
+h13M6MNSzzz8XSGgYQZwKKyX16c9Zm5qGcLk4nMZN3sRveJKxJzQe47wPzy
3jUJyApXV5y0bH2/SgH1tLtcZyZdyJA3iMzbIT6zvP6JdIflEjTv/xxv9tzN
q2eDlc8qs7InzZ4X95sYUXbWfn6uuZLlAeDTbzHE/6K0mjzFYkDZryQEcYV+
P/rEJI+at6YS9GPjBYsymqWcd9O/T2xI+Jx0QnrgDOCCgD1FnIqjaf4s/399
hjoNRtqS/dk/iKQReGoxihAkcLIy0PV+Sb4S10Yqok6CyOMUdC+0nHcQ2CcO
1fNXsVOBhA==
=TTqZ
-----END PGP PUBLIC KEY BLOCK-----
</pre>
<section class=latest-toot>
<h3>Latest Activity</h3>
<div id=now-reading>Loading…</div>
<div id=steam-status>Loading...</div>
<script defer src="https://recentfm.rknight.me/now.js?u=alexzeecomedy"></script>
<script defer src=https://status.lol/alexzeecomedy.js?></script>
</section>
</aside>
<section class=social-section>
<h2>Stand-up Comedian, Alex Zee's Home Base</h2>
<p>
Stay up to date with info from the life and times of stand-up comedian, Alex Zee. Consume responsibly.
</p>
<div class=social-grid>
<a target=_self href=/pages/ class="social-item pages">
<section>
<h3>/Pages</h3>
<svg xmlns=http://www.w3.org/2000/svg aria-hidden=true focusable=false width=48 height=48 class=red-svg viewBox="0 0 256 256">
<path fill=none d="M0 0h256v256H0z"></path>
<path d="M208 32H48a16 16 0 0 0-16 16v160a16 16 0 0 0 16 16h160a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16Zm-21 155a8 8 0 0 1-11 0L69 80a8 8 0 0 1 11-11l107 107a8 8 0 0 1 0 11Z"></path>
</svg>
</section>
<p>Check out my slash pages directory!</p></a>
<a target=_self href=/pages/blog/ class="social-item blog">
<section>
<h3>Latest Blog Post</h3>
<svg xmlns=http://www.w3.org/2000/svg class=orange-svg width=48 height=48 viewBox="0 0 256 256">
<path fill=none d="M0 0h256v256H0z"></path>
<path d="M216 40H40a16 16 0 0 0-16 16v160a8 8 0 0 0 12 7l28-14 28 14a8 8 0 0 0 8 0l28-14 28 14a8 8 0 0 0 8 0l28-14 28 14a8 8 0 0 0 12-7V56a16 16 0 0 0-16-16ZM116 160a4 4 0 0 1-4 4H64a4 4 0 0 1-4-4V96a4 4 0 0 1 4-4h48a4 4 0 0 1 4 4Zm76-8h-48a8 8 0 0 1 0-16h48a8 8 0 0 1 0 16Zm0-32h-48a8 8 0 0 1 0-16h48a8 8 0 0 1 0 16Z"></path>
</svg>
</section>
<p id=blog-area>See my latest blog post!</p></a>
<a target=_self href=/pages/now/ class="social-item now">
<section>
<h3>/Now</h3>
<svg xmlns=http://www.w3.org/2000/svg aria-hidden=true focusable=false width=48 height=48 class=yellow-svg viewBox="0 0 256 256">
<path fill=none d="M0 0h256v256H0z"></path>
<path d="m230 142-96 96a8 8 0 0 1-12 0l-96-96a8 8 0 0 1 6-14h40v-24a8 8 0 0 1 8-8h96a8 8 0 0 1 8 8v24h40a8 8 0 0 1 6 14ZM184 40a8 8 0 0 0-8-8H80a8 8 0 0 0 0 16h96a8 8 0 0 0 8-8Zm0 32a8 8 0 0 0-8-8H80a8 8 0 0 0 0 16h96a8 8 0 0 0 8-8Z"></path>
</svg>
</section>
<p>Playing, reading, listening, watching, etc.</p></a>
<a target=_self href=/pages/verify class="social-item verify">
<section>
<h3>/Verify</h3>
<svg xmlns=http://www.w3.org/2000/svg aria-hidden=true focusable=false width=48 height=48 class=terminal-svg viewBox="0 0 256 256"><path fill=none d="M0 0h256v256H0z"/><path d="M231 111a104 104 0 1 1-86-86 8 8 0 0 1-2 16 88 88 0 0 0-103 87 88 88 0 0 0 22 58 80 80 0 0 1 22-21 4 4 0 0 1 5 0 60 60 0 0 0 78 0 4 4 0 0 1 5 0 80 80 0 0 1 22 21 88 88 0 0 0 22-58 89 89 0 0 0-1-15 8 8 0 1 1 16-2Zm-147 9a44 44 0 1 0 44-44 44 44 0 0 0-44 44Zm154-86a8 8 0 0 0-12 0l-26 27-10-11a8 8 0 0 0-12 12l16 16a8 8 0 0 0 12 0l32-32a8 8 0 0 0 0-12Z"/></svg>
</section>
<p>
Make sure it's me you're following and not some other doofus.
</p></a>
<a target=_self href=/pages/about class="social-item about">
<section>
<h3>/About</h3>
<svg xmlns=http://www.w3.org/2000/svg aria-hidden=true focusable=false width=48 height=48 class=blue-svg viewBox="0 0 256 256">
<path fill=none d="M0 0h256v256H0z"></path>
<path d="M152 80a8 8 0 0 1 8-8h88a8 8 0 0 1 0 16h-88a8 8 0 0 1-8-8Zm96 40h-88a8 8 0 0 0 0 16h88a8 8 0 0 0 0-16Zm0 48h-64a8 8 0 0 0 0 16h64a8 8 0 0 0 0-16Zm-139-26a48 48 0 1 0-58 0c-21 9-37 26-43 48a8 8 0 0 0 8 10h128a8 8 0 0 0 8-10c-6-22-22-39-43-48Z"></path>
</svg>
</section>
<p>A page all about me.</p>
<p>
I'm currently feeling
<img src=https://moods.imood.com/display/uname-alexzeecomedy/fg-FFFFFF/bg-2a2a2a/imood.gif alt="The current mood of alexzeecomedy at www.imood.com" loading=lazy>
</p></a>
<a target=_self href=/pages/interests class="social-item interests">
<section>
<h3>/Interests</h3>
<svg xmlns=http://www.w3.org/2000/svg aria-hidden=true focusable=false width=48 height=48 class=indigo-svg viewBox="0 0 256 256">
<path fill=none d="M0 0h256v256H0z"></path>
<path d="M208 32H48a16 16 0 0 0-16 16v160a16 16 0 0 0 16 16h160a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16ZM104 184H64a8 8 0 0 1 0-16h40a8 8 0 0 1 0 16Zm-48-56a8 8 0 0 1 8-8h32a8 8 0 0 1 0 16H64a8 8 0 0 1-8-8Zm106 58a4 4 0 0 1-4 0c-1-1-38-20-38-46a22 22 0 0 1 40-13 22 22 0 0 1 40 13c0 26-37 45-38 46Zm30-98H64a8 8 0 0 1 0-16h128a8 8 0 0 1 0 16Z"></path>
</svg>
</section>
<p>Things I'm interested and passionate about.</p></a>
<a target=_self href=/pages/now/playing/wordle class="social-item wordle">
<section>
<h3>Wordle</h3>
<svg xmlns=http://www.w3.org/2000/svg aria-hidden=true focusable=false width=48 height=48 class=purple-svg viewBox="0 0 256 256">
<path fill=none d="M0 0h256v256H0z"></path>
<path d="M224 48H32a16 16 0 0 0-16 16v128a16 16 0 0 0 16 16h192a16 16 0 0 0 16-16V64a16 16 0 0 0-16-16Zm-19 95a8 8 0 1 1-13 9l-8-10-8 10a8 8 0 1 1-13-9l8-11-12-4a8 8 0 1 1 5-15l12 4v-13a8 8 0 0 1 16 0v13l12-4a8 8 0 0 1 5 15l-12 4Zm-72 0a8 8 0 1 1-13 9l-8-10-8 10a8 8 0 1 1-13-9l8-11-12-4a8 8 0 1 1 5-15l12 4v-13a8 8 0 0 1 16 0v13l12-4a8 8 0 1 1 5 15l-12 4ZM64 88v80a8 8 0 0 1-16 0V88a8 8 0 0 1 16 0Z"></path>
</svg>
</section>
<p id=wordle-area>See my latest Wordle score!</p></a>
<a target=_self href=/pages/now/playing/connections class="social-item connections">
<section>
<h3>Connections</h3>
<svg xmlns=http://www.w3.org/2000/svg aria-hidden=true focusable=false width=48 height=48 class=white-svg viewBox="0 0 256 256">
<path fill=none d="M0 0h256v256H0z"></path>
<path d="M89 35a8 8 0 0 1 14-6l8 20a8 8 0 0 1-14 6Zm-60 68 20 8a8 8 0 1 0 6-14l-20-8a8 8 0 0 0-6 14Zm198 50-20-8a8 8 0 1 0-6 14l20 8a8 8 0 0 0 6-14Zm-68 48a8 8 0 0 0-14 6l8 20a8 8 0 1 0 14-6Zm79-182a8 8 0 0 0-12-1l-52 53-5-6a32 32 0 0 0-46 0l-17 18a4 4 0 0 0 0 5l62 62a4 4 0 0 0 6 0l16-17a33 33 0 0 0 10-22 32 32 0 0 0-9-24l-6-5 53-52a8 8 0 0 0 0-11ZM86 90a8 8 0 0 0-12 1 8 8 0 0 0 1 11l6 6-16 15a32 32 0 0 0-9 23 33 33 0 0 0 10 23l5 5-53 52a8 8 0 0 0 0 11 8 8 0 0 0 12 1l52-53 5 6a32 32 0 0 0 46 0l15-16 6 7a8 8 0 0 0 12-12Z"></path>
</svg>
</section>
<p id=connections-area>See my latest Connections score!</p></a>
<a target=_self href=/pages/work class="social-item reddit">
<section>
<h3>What I'm making</h3>
<svg xmlns=http://www.w3.org/2000/svg aria-hidden=true focusable=false width=48 height=48 class=orange-svg viewBox="0 0 256 256">
<path fill=none d="M0 0h256v256H0z"></path>
<path d="M152 112a8 8 0 0 1-8 8h-32a8 8 0 0 1 0-16h32a8 8 0 0 1 8 8Zm80-40v128a16 16 0 0 1-16 16H40a16 16 0 0 1-16-16V72a16 16 0 0 1 16-16h40v-8a24 24 0 0 1 24-24h48a24 24 0 0 1 24 24v8h40a16 16 0 0 1 16 16ZM96 56h64v-8a8 8 0 0 0-8-8h-48a8 8 0 0 0-8 8Zm120 58V72H40v42a184 184 0 0 0 88 22 184 184 0 0 0 88-22Z"></path>
</svg>
</section>
<p id=work-area>See my latest clients!</p></a>
<a target=_self href=/pages/tour/grouppictures class="social-item now">
<section>
<h3>Latest Content</h3>
<svg xmlns=http://www.w3.org/2000/svg aria-hidden=true focusable=false width=48 height=48 class=yellow-svg viewBox="0 0 256 256"><path fill=none d="M0 0h256v256H0z"/><path d="M216 40H72a16 16 0 0 0-16 16v16H40a16 16 0 0 0-16 16v112a16 16 0 0 0 16 16h144a16 16 0 0 0 16-16v-16h16a16 16 0 0 0 16-16V56a16 16 0 0 0-16-16Zm-44 32a12 12 0 1 1-12 12 12 12 0 0 1 12-12Zm12 128H40V88h16v80a16 16 0 0 0 16 16h112Zm32-32H72v-47l30-31a8 8 0 0 1 12 0l49 50 26-26a8 8 0 0 1 11 0l16 16v38Z"/></svg>
</section>
<p>Group picture archive!</p></a>
</div>
</section>
</div>
<p class=tau>
<a rel="noopener noreferrer" href=https://cd5k.net/tau/ target=_blank>τ</a>
</p>
<article class=about-section>
<h2>Alexzeecomedy.com is made possible in part by...</h2>
<h3>
... generous contributions of financial and emotional support from viewers like you. Thank you!
</h3>
<blockquote cite=https://biblehub.com/nkjv/matthew/19.htm>
<p>
“And again I say to you, it is easier for a camel to go through the eye of a needle than for a rich man to enter the kingdom of God.”
</p>
</blockquote>
<p>-<cite>Matthew 19:24</cite></p>
<section class=icon-row-post>
<h3>Share</h3>
<a aria-label="Mastodon share" rel="noopener noreferrer" href="https://mastodon.social/share?text=Check%20out%20Alex%20Zee's%20super%20cool%20thing%20he%20said:%20https://alexzeecomedy.com" target=_blank class="sbutton mast" title=Mastodon><svg xmlns=http://www.w3.org/2000/svg width=44 height=44 class=purple-svg viewBox="0 0 256 256">
<path fill=none d="M0 0h256v256H0z"></path>
<path d="M184 32H72a40 40 0 0 0-40 40v120a40 40 0 0 0 40 40h88a8 8 0 0 0 0-16H72a24 24 0 0 1-24-24v-8h136a40 40 0 0 0 40-40V72a40 40 0 0 0-40-40Zm0 104a8 8 0 0 1-16 0v-32a16 16 0 0 0-32 0v32a8 8 0 0 1-16 0v-32a16 16 0 0 0-32 0v32a8 8 0 0 1-16 0v-32a32 32 0 0 1 56-21 32 32 0 0 1 56 21Z"></path>
</svg></a>
<a aria-label="Reddit share" rel="noopener noreferrer" href="https://www.reddit.com/submit?url=https://alexzeecomedy.com" target=_blank title=Reddit><svg xmlns=http://www.w3.org/2000/svg class=orange-svg width=44 height=44 viewBox="0 0 256 256">
<path d=M248,104a32,32,0,0,0-52.94-24.19c-16.75-8.9-36.76-14.28-57.66-15.53l5.19-31.17,17.72,2.72a24,24,0,1,0,2.87-15.74l-26-4a8,8,0,0,0-9.11,6.59L121.2,64.16c-21.84.94-42.82,6.38-60.26,15.65a32,32,0,0,0-42.59,47.74A59,59,0,0,0,16,144c0,21.93,12,42.35,33.91,57.49C70.88,216,98.61,224,128,224s57.12-8,78.09-22.51C228,186.35,240,165.93,240,144a59,59,0,0,0-2.35-16.45A32.16,32.16,0,0,0,248,104ZM72,128a16,16,0,1,1,16,16A16,16,0,0,1,72,128Zm91.75,55.07a76.18,76.18,0,0,1-71.5,0,8,8,0,1,1,7.5-14.14,60.18,60.18,0,0,0,56.5,0,8,8,0,1,1,7.5,14.14ZM168,144a16,16,0,1,1,16-16A16,16,0,0,1,168,144Z></path></svg></a>
<a aria-label="Facebook share" rel="noopener noreferrer" href="/fb/sharer/sharer.php?u=https://alexzeecomedy.com" target=_blank title=Facebook><svg xmlns=http://www.w3.org/2000/svg width=44 height=44 class=blue-svg viewBox="0 0 256 256">
<path d=M232,128a104.16,104.16,0,0,1-91.55,103.26,4,4,0,0,1-4.45-4V152h24a8,8,0,0,0,8-8.53,8.17,8.17,0,0,0-8.25-7.47H136V112a16,16,0,0,1,16-16h16a8,8,0,0,0,8-8.53A8.17,8.17,0,0,0,167.73,80H152a32,32,0,0,0-32,32v24H96a8,8,0,0,0-8,8.53A8.17,8.17,0,0,0,96.27,152H120v75.28a4,4,0,0,1-4.44,4A104.15,104.15,0,0,1,24.07,124.09c2-54,45.74-97.9,99.78-100A104.12,104.12,0,0,1,232,128Z></path></svg></a>
<a aria-label="Twitter share" rel="noopener noreferrer" href="https://twitter.com/share?url=https://alexzeecomedy.com" target=_blank title=Twitter><svg xmlns=http://www.w3.org/2000/svg class=white-svg width=44 height=44 viewBox="0 0 256 256">
<path d=M215,219.85a8,8,0,0,1-7,4.15H160a8,8,0,0,1-6.75-3.71l-40.49-63.63L53.92,221.38a8,8,0,0,1-11.84-10.76l61.77-68L41.25,44.3A8,8,0,0,1,48,32H96a8,8,0,0,1,6.75,3.71l40.49,63.63,58.84-64.72a8,8,0,0,1,11.84,10.76l-61.77,67.95,62.6,98.38A8,8,0,0,1,215,219.85Z></path></svg></a>
<a aria-label="Linkedin share" rel="noopener noreferrer" href="https://www.linkedin.com/sharing/share-offsite/?url=https://alexzeecomedy.com" target=_blank title=Linkedin><svg xmlns=http://www.w3.org/2000/svg width=44 height=44 class=blue-svg viewBox="0 0 256 256">
<path d=M216,24H40A16,16,0,0,0,24,40V216a16,16,0,0,0,16,16H216a16,16,0,0,0,16-16V40A16,16,0,0,0,216,24ZM96,176a8,8,0,0,1-16,0V112a8,8,0,0,1,16,0ZM88,96a12,12,0,1,1,12-12A12,12,0,0,1,88,96Zm96,80a8,8,0,0,1-16,0V140a20,20,0,0,0-40,0v36a8,8,0,0,1-16,0V112a8,8,0,0,1,15.79-1.78A36,36,0,0,1,184,140Z></path></svg></a>
<a aria-label="Tumblr share" rel="noopener noreferrer" href="https://www.tumblr.com/widgets/share/tool?shareSource=legacy&canonicalUrl=https://alexzeecomedy.com" target=_blank title=Tumblr><svg xmlns=http://www.w3.org/2000/svg class=indigo-svg width=44 height=44 viewBox="0 0 256 256"><path fill=none d="M0 0h256v256H0z"/><path d="M152 120v48a8 8 0 0 0 8 8h32a8 8 0 0 1 8 8v48a8 8 0 0 1-8 8h-40a64 64 0 0 1-64-64v-56H64a8 8 0 0 1-8-8V72a8 8 0 0 1 8-8 40 40 0 0 0 40-40 8 8 0 0 1 8-8h32a8 8 0 0 1 8 8v40h40a8 8 0 0 1 8 8v40a8 8 0 0 1-8 8Z"/></svg></a>
<a aria-label="Pinterest share" rel="noopener noreferrer" href="https://pinterest.com/pin/create/button/?url=https://alexzeecomedy.com" target=_blank title=Pinterest><svg xmlns=http://www.w3.org/2000/svg class=red-svg width=44 height=44 viewBox="0 0 256 256"><path fill=none d="M0 0h256v256H0z"/><path d="M240 129c0 56-46 102-103 103a104 104 0 0 1-26-3 4 4 0 0 1-3-5l9-34a61 61 0 0 0 27 6c37 0 67-33 64-73a72 72 0 1 0-139 32 8 8 0 0 0 11 4 8 8 0 0 0 4-10 56 56 0 1 1 108-25c2 30-20 56-48 56a45 45 0 0 1-23-6l15-60a8 8 0 0 0-16-4L93 218a4 4 0 0 1-5 2 104 104 0 0 1-56-93C33 71 79 25 135 24a104 104 0 0 1 105 105Z"/></svg></a>
<a aria-label="Whatsapp share" rel="noopener noreferrer" href="https://wa.me/?text=https://alexzeecomedy.com" target=_blank title=Whatsapp><svg xmlns=http://www.w3.org/2000/svg width=44 height=44 class=terminal-svg viewBox="0 0 256 256"><path fill=none d="M0 0h256v256H0z"/><path d="m153 145 23 12a24 24 0 0 1-24 19 72 72 0 0 1-72-72 24 24 0 0 1 19-24l12 23-10 15a8 8 0 0 0-1 8 56 56 0 0 0 30 30 8 8 0 0 0 8-1Zm79-17a104 104 0 0 1-153 92l-34 11a16 16 0 0 1-20-20l11-34a104 104 0 1 1 196-49Zm-40 24a8 8 0 0 0-4-7l-32-16a8 8 0 0 0-8 0l-15 10a41 41 0 0 1-16-16l10-15a8 8 0 0 0 0-8l-16-32a8 8 0 0 0-7-4 40 40 0 0 0-40 40 88 88 0 0 0 88 88 40 40 0 0 0 40-40Z"/></svg></a>
<a aria-label="Telegram share" rel="noopener noreferrer" href="https://t.me/share/url?url=https://alexzeecomedy.com" target=_blank title=Telegram><svg xmlns=http://www.w3.org/2000/svg width=44 height=44 class=blue-svg viewBox="0 0 256 256"><path fill=none d="M0 0h256v256H0z"/><path d="M229 26a9 9 0 0 0-9-1L17 104a14 14 0 0 0 2 27l53 10v59a16 16 0 0 0 10 15 16 16 0 0 0 18-4l25-26 40 35a16 16 0 0 0 11 4 16 16 0 0 0 5-1 16 16 0 0 0 10-11l41-177a9 9 0 0 0-3-9Zm-53 182-83-72 119-86Z"/></svg></a>
<a aria-label="Email share" rel="noopener noreferrer" href="mailto:?subject=OMG%20Alex%20Zee%20Did%20it%20Again&body=Check%20out%20Alex%20Zee's%20super%20cool%20thing%20he%20said:%20https://alexzeecomedy.com" target=_blank title=Email><svg xmlns=http://www.w3.org/2000/svg class=red-svg width=44 height=44 viewBox="0 0 256 256">
<path fill=none d="M0 0h256v256H0z"></path>
<path d="M224 48H32a8 8 0 0 0-8 8v136a16 16 0 0 0 16 16h176a16 16 0 0 0 16-16V56a8 8 0 0 0-8-8ZM98.71 128 40 181.81V74.19Zm11.84 10.85 12 11.05a8 8 0 0 0 10.82 0l12-11.05 58 53.15H52.57ZM157.29 128 216 74.18v107.64Z"></path></svg></a>
</section>
<p><img alt="Liberapay patrons" width=130 height=28 src="https://img.shields.io/liberapay/patrons/alexzeecomedy?style=for-the-badge&logo=liberapay" loading=lazy></p>
<p>
Everything I post on my site is always free. However if you would like to sample my work involve me in your project please check out the links below!
</p>
<a target=_self class=button-link href=/pages/work>Ways to Watch the Show</a>
<a target=_self class=button-link href=/pages/tip>Ways to /Tip the Show</a>
<a target=_self class=button-link href=/pages/pricing>Ways to Buy a Show</a>
</article>
<article class=about-section>
<h2>Surf the web</h2>
<h3>with stand-up comedian, Alex Zee</h3>
<h4>
Below are a list of webrings, clubs, and directories I am a part of. Check them out and bookmark the "Random" links!
</h4>
<blockquote cite=https://en.wikipedia.org/wiki/Webring>
<p>
"A webring (or web ring) is a collection of websites linked together in a circular structure, usually organized around a specific theme, and often educational or social. They were popular in the 1990s and early 2000s, particularly among amateur websites."
</p>
</blockquote>
<p>-<cite>Wikipedia</cite></p>
<p class=smol-centering>
The Current mood of the Internet is
<a target=_blank rel="noopener noreferrer" href=https://www.imood.com/imood><img src=https://moods.imood.com/internet/current.gif alt="The current mood of the Internet at www.imood.com" loading=lazy></a>
</p>
<div class=nojscarb>
<h3>My website produces</h3>
<div id=wcb class="carbonbadge wcb-d"></div>
</div>
<h3 class=swatch>The Internet Swatch Time is</h3>
<p class=swatch id=swatchClock-nolink>@000</p>
<a class="swatch button-link" href=/pages/links#swatch target=_self>(what is this?)</a>
<h3>Increase my increment!</h3>
<iframe src="//incr.easrng.net/badge?key=alexzeecomedy" loading=lazy class="increment eightthree" title="increment badge" width=88 height=31></iframe>
<div class=small-grid>
<a class="social-item notes" href=/pages/guestbook target=_self>
<section>
<h3>
Guestbook
</h3>
<svg xmlns=http://www.w3.org/2000/svg aria-hidden=true focusable=false width=48 height=48 class=white-svg viewBox="0 0 256 256">
<path d=M160,112a24,24,0,1,1-24-24A24,24,0,0,1,160,112Zm64-72V216a16,16,0,0,1-16,16H64a16,16,0,0,1-16-16V192H32a8,8,0,0,1,0-16H48V136H32a8,8,0,0,1,0-16H48V80H32a8,8,0,0,1,0-16H48V40A16,16,0,0,1,64,24H208A16,16,0,0,1,224,40ZM190.4,163.2A67.88,67.88,0,0,0,163,141.51a40,40,0,1,0-53.94,0A67.88,67.88,0,0,0,81.6,163.2a8,8,0,1,0,12.8,9.6,52,52,0,0,1,83.2,0,8,8,0,1,0,12.8-9.6Z></path>
</svg>
</section>
<p>Sign my guestbook!</p></a>
</div>
<h3>Link to my site!</h3>
<p>Add <code>.eightthree{border:0;image-rendering:pixelated}</code> to your CSS file to make buttons look better when zoomed!</p>
<p>No hotlinking please! Make sure to host stuff on your own <a href=/pages/links#jsdelivr>CDN</a> or <a href=/pages/links#github-pages>server</a>.</p>
<a class=button-link href=/pages/contact>Shoot me a message here if you want me to link you back.</a>
<p><img src=https://cdn.jsdelivr.net/gh/alexzeecomedy/alexzeecomedy.github.io@main/assets/artwork/ALEX-ZEE.png alt="I love you, Gnat :)" width=80 height=15 class=eightthree loading=lazy>
<label for=button-html class=sr-only>Copyable HTML code</label>
<textarea id=button-html>
<a href=https://alexzeecomedy.com rel="noopener noreferrer"><img src=path/to/ALEX-ZEE.png class=eightthree alt=Alexzeecomedy.com width=80 height=15 loading=lazy></a></textarea></p>
<p><img src=https://cdn.jsdelivr.net/gh/alexzeecomedy/alexzeecomedy.github.io@main/assets/artwork/alexzeecomedybutton.webp alt="I love you a lot, Gnat :)" width=88 height=31 class=eightthree loading=lazy>
<label for=small-button-html class=sr-only>Copyable HTML code</label>
<textarea id=small-button-html>
<a href=https://alexzeecomedy.com rel="noopener noreferrer"><img src=path/to/alexzeecomedybutton.webp class=eightthree alt=Alexzeecomedy.com width=88 height=31 loading=lazy></a></textarea></p>
<section class=octo>
<h3>I Octothorp(es). Do you?</h3>
<octo-thorpe>Comedy</octo-thorpe>
<octo-thorpe>Art</octo-thorpe>
<octo-thorpe>FOSS</octo-thorpe>
<octo-thorpe>Privacy</octo-thorpe>
</section>
<noscript><h3>I Octothorp(es). Do you?</h3>
<a rel="noopener noreferrer octo:octothorpes" href=https://octothorp.es/~/comedy>Comedy</a>
<a rel="noopener noreferrer octo:octothorpes" href=https://octothorp.es/~/art>Art</a>
<a rel="noopener noreferrer octo:octothorpes" href=https://octothorp.es/~/foss>FOSS</a>
<a rel="noopener noreferrer octo:octothorpes" href=https://octothorp.es/~/privacy>Privacy</a>
</noscript>
<details class=more-details>
<summary id=webrings>Web Rings</summary>
<h2>Joined</h2>
<div class=small-grid>
<div class="social-item pages">
<div>
<a class=button-link href=/pages/webring>Mandarin House Webring</a>
<svg xmlns=http://www.w3.org/2000/svg aria-hidden=true focusable=false width=48 height=48 class="outlink red-svg" viewBox="0 0 256 256"><path fill=none d="M0 0h256v256H0z"/><path d="M140 80a12 12 0 1 1-12-12 12 12 0 0 1 12 12Zm92 48A104 104 0 1 1 128 24a104 104 0 0 1 104 104Zm-92 48a12 12 0 1 0-12 12 12 12 0 0 0 12-12Zm32-92a44 44 0 0 0-44-44 88 88 0 0 0-47 162 52 52 0 0 1 47-74 44 44 0 0 0 44-44Z"/></svg><svg xmlns=http://www.w3.org/2000/svg aria-hidden=true focusable=false width=48 height=48 class="outlink red-svg" viewBox="0 0 256 256"><path fill=none d="M0 0h256v256H0z"/><path d="M224 48v48a8 8 0 0 1-8 8h-48a8 8 0 0 1-6-14l19-18a79 79 0 0 0-55-22h-1a80 80 0 0 0-55 23 8 8 0 0 1-12-12 96 96 0 0 1 134 0l18-19a8 8 0 0 1 14 6Zm-38 135a80 80 0 0 1-111 1l19-18a8 8 0 0 0-6-14H40a8 8 0 0 0-8 8v48a8 8 0 0 0 14 6l18-19a95 95 0 0 0 66 27h1a95 95 0 0 0 67-27 8 8 0 0 0-12-12Z"/></svg>
<a class=button-link href=https://chalcocabana.codeberg.page target=_blank rel=me>
Previous</a>
<a class=button-link href=https://chalcocabana.github.io target=_blank rel=me>Next</a>
</div>
</div>
<div class="social-item blog">
<div>
<a class=button-link href=https://fediring.net/ rel="directory noopener noreferrer" target=_blank>Fediring</a>
<svg xmlns=http://www.w3.org/2000/svg aria-hidden=true focusable=false width=48 height=48 class="outlink orange-svg" viewBox="0 0 256 256"><path fill=none d="M0 0h256v256H0z"/><path d="M212 96a28 28 0 0 0-11 2l-30-38a28 28 0 1 0-51-16 29 29 0 0 0 0 3L74 66a28 28 0 1 0-29 45l2 47a28 28 0 1 0 33 41l48 13a28 28 0 1 0 49-18l27-43a28 28 0 1 0 8-55Zm-141 8 43 25-42 32a28 28 0 0 0-9-4l-2-47a28 28 0 0 0 10-6Zm79-32a28 28 0 0 0 9-2l30 38a28 28 0 0 0-4 9l-47 3ZM82 174l42-33 16 48a28 28 0 0 0-8 8l-48-13a28 28 0 0 0-2-10Zm74 10h-1l-16-49 47-2a28 28 0 0 0 5 9l-27 43a28 28 0 0 0-8-1ZM126 62a28 28 0 0 0 8 6l-11 48-44-25a28 28 0 0 0 1-7 29 29 0 0 0 0-3Z"/></svg><svg xmlns=http://www.w3.org/2000/svg aria-hidden=true focusable=false width=48 height=48 class="outlink orange-svg" viewBox="0 0 256 256"><path fill=none d="M0 0h256v256H0z"/><path d="M224 48v48a8 8 0 0 1-8 8h-48a8 8 0 0 1-6-14l19-18a79 79 0 0 0-55-22h-1a80 80 0 0 0-55 23 8 8 0 0 1-12-12 96 96 0 0 1 134 0l18-19a8 8 0 0 1 14 6Zm-38 135a80 80 0 0 1-111 1l19-18a8 8 0 0 0-6-14H40a8 8 0 0 0-8 8v48a8 8 0 0 0 14 6l18-19a95 95 0 0 0 66 27h1a95 95 0 0 0 67-27 8 8 0 0 0-12-12Z"/></svg>
<a class=button-link href="https://fediring.net/previous?host=alexzeecomedy.com" target=_blank rel="noopener noreferrer">
Previous</a>
<a class=button-link href="https://fediring.net/next?host=alexzeecomedy.com" target=_blank rel="noopener noreferrer">Next</a>
<a class=button-link href=https://fediring.net/random target=_blank rel="noopener noreferrer">Random</a>
</div>
</div>
<div class="social-item now">
<div>
<a class=button-link href=https://xn--sr8hvo.ws rel="directory noopener noreferrer" target=_blank>IndieWeb Webring</a>
<svg xmlns=http://www.w3.org/2000/svg aria-hidden=true focusable=false width=48 height=48 class="outlink yellow-svg" viewBox="0 0 256 256"><rect width=256 height=256 fill=none /><path d=M216,40H40A16,16,0,0,0,24,56V200a16,16,0,0,0,16,16H216a16,16,0,0,0,16-16V56A16,16,0,0,0,216,40Zm0,16V88H40V56Z /></svg><svg xmlns=http://www.w3.org/2000/svg aria-hidden=true focusable=false width=48 height=48 class="outlink yellow-svg" viewBox="0 0 256 256"><path fill=none d="M0 0h256v256H0z"/><path d="M224 48v48a8 8 0 0 1-8 8h-48a8 8 0 0 1-6-14l19-18a79 79 0 0 0-55-22h-1a80 80 0 0 0-55 23 8 8 0 0 1-12-12 96 96 0 0 1 134 0l18-19a8 8 0 0 1 14 6Zm-38 135a80 80 0 0 1-111 1l19-18a8 8 0 0 0-6-14H40a8 8 0 0 0-8 8v48a8 8 0 0 0 14 6l18-19a95 95 0 0 0 66 27h1a95 95 0 0 0 67-27 8 8 0 0 0-12-12Z"/></svg>
<a class=button-link href=https://xn--sr8hvo.ws/previous target=_blank rel="noopener noreferrer">
Previous</a>
<a class=button-link href=https://xn--sr8hvo.ws/next target=_blank rel="noopener noreferrer">Next</a>
<a class=button-link href=https://xn--sr8hvo.ws/random target=_blank rel="noopener noreferrer">Random</a>
</div>
</div>
<div class="social-item verify">
<div>
<a class=button-link href=https://spaghetti.nekoweb.org/webring rel="directory noopener noreferrer" target=_blank>bolognese webring</a>
<svg xmlns=http://www.w3.org/2000/svg focusable=false width=48 height=48 class="outlink pink-svg" viewBox="0 0 256 256"><path fill=none d="M0 0h256v256H0z"/><path d="M224 104h-8a88 88 0 0 0-176 0h-8a8 8 0 0 0-8 8 104 104 0 0 0 56 92v4a16 16 0 0 0 16 16h64a16 16 0 0 0 16-16v-4a104 104 0 0 0 56-92 8 8 0 0 0-8-8Zm-51-48 6 5a88 88 0 0 0-49 43h-30a72 72 0 0 1 68-48h5Zm-25 48a72 72 0 0 1 41-30 71 71 0 0 1 11 30Zm-20-64a72 72 0 0 1 19 3 88 88 0 0 0-64 61H56a72 72 0 0 1 72-64Z"/></svg><svg xmlns=http://www.w3.org/2000/svg aria-hidden=true focusable=false width=48 height=48 class="outlink pink-svg" viewBox="0 0 256 256"><path fill=none d="M0 0h256v256H0z"/><path d="M224 48v48a8 8 0 0 1-8 8h-48a8 8 0 0 1-6-14l19-18a79 79 0 0 0-55-22h-1a80 80 0 0 0-55 23 8 8 0 0 1-12-12 96 96 0 0 1 134 0l18-19a8 8 0 0 1 14 6Zm-38 135a80 80 0 0 1-111 1l19-18a8 8 0 0 0-6-14H40a8 8 0 0 0-8 8v48a8 8 0 0 0 14 6l18-19a95 95 0 0 0 66 27h1a95 95 0 0 0 67-27 8 8 0 0 0-12-12Z"/></svg>
<a class=button-link href="https://spagwhetti.github.io/redirect.html?to=prev&name=alexzeecomedy" target=_blank rel="noopener noreferrer">
Previous</a>
<a class=button-link href="https://spagwhetti.github.io/redirect.html?to=next&name=alexzeecomedy" target=_blank rel="noopener noreferrer">Next</a>
<a class=button-link href="https://spagwhetti.github.io/redirect.html?to=random&name=alexzeecomedy" target=_blank rel="noopener noreferrer">Random</a>
</div>
</div>
<div class="social-item about">
<div>
<a class=button-link href=https://meta-ring.hedy.dev/ rel="directory noopener noreferrer" target=_blank>Meta Ring</a>
<svg xmlns=http://www.w3.org/2000/svg aria-hidden=true focusable=false class="outlink blue-svg" width=48 height=48 viewBox="0 0 256 256"><path fill=none d="M0 0h256v256H0z"/><path d="M240 80v120a8 8 0 0 1-8 8h-72a24 24 0 0 0-24 24 8 8 0 0 1-5 7 8 8 0 0 1-11-7 24 24 0 0 0-24-24H24a8 8 0 0 1-8-8V80a8 8 0 0 1 8-8h64a32 32 0 0 1 32 32v64a8 8 0 0 0 7 8 8 8 0 0 0 9-8v-64a32 32 0 0 1 32-32h64a8 8 0 0 1 8 8ZM89 56a48 48 0 0 1 36 17 4 4 0 0 0 6 0 48 48 0 0 1 36-17 4 4 0 0 0 4-6 48 48 0 0 0-86 0 4 4 0 0 0 4 6Z"/></svg><svg xmlns=http://www.w3.org/2000/svg aria-hidden=true focusable=false width=48 height=48 class="outlink blue-svg" viewBox="0 0 256 256"><path fill=none d="M0 0h256v256H0z"/><path d="M224 48v48a8 8 0 0 1-8 8h-48a8 8 0 0 1-6-14l19-18a79 79 0 0 0-55-22h-1a80 80 0 0 0-55 23 8 8 0 0 1-12-12 96 96 0 0 1 134 0l18-19a8 8 0 0 1 14 6Zm-38 135a80 80 0 0 1-111 1l19-18a8 8 0 0 0-6-14H40a8 8 0 0 0-8 8v48a8 8 0 0 0 14 6l18-19a95 95 0 0 0 66 27h1a95 95 0 0 0 67-27 8 8 0 0 0-12-12Z"/></svg>
<a class=button-link href=https://meta-ring.hedy.dev/previous target=_blank rel="noopener noreferrer">
Previous</a>
<a class=button-link href=https://meta-ring.hedy.dev/random target=_blank rel="noopener noreferrer">Random</a>
<a class=button-link href=https://meta-ring.hedy.dev/next target=_blank rel="noopener noreferrer">Next</a>
</div>
</div>
<div class="social-item interests">
<div id=a11y class=a11y-webring-club aria-labelledby=a11y-webring-club>
<a class=button-link rel="directory noopener noreferrer" target=_blank id=a11y-webring-club href=https://a11y-webring.club/ >a11y-webring.club</a>
<svg xmlns=http://www.w3.org/2000/svg aria-hidden=true focusable=false width=48 height=48 class="outlink indigo-svg" viewBox="0 0 256 256"><path fill=none d="M0 0h256v256H0z"/><path d="M128 24a104 104 0 1 0 104 104A104 104 0 0 0 128 24Zm0 40a16 16 0 1 1-16 16 16 16 0 0 1 16-16Zm48 56h-40v14l31 46a8 8 0 0 1-14 8l-25-38-25 38a8 8 0 1 1-14-8l31-46v-14H80a8 8 0 0 1 0-16h96a8 8 0 0 1 0 16Z"/></svg><svg xmlns=http://www.w3.org/2000/svg aria-hidden=true focusable=false width=48 height=48 class="outlink indigo-svg" viewBox="0 0 256 256"><path fill=none d="M0 0h256v256H0z"/><path d="M224 48v48a8 8 0 0 1-8 8h-48a8 8 0 0 1-6-14l19-18a79 79 0 0 0-55-22h-1a80 80 0 0 0-55 23 8 8 0 0 1-12-12 96 96 0 0 1 134 0l18-19a8 8 0 0 1 14 6Zm-38 135a80 80 0 0 1-111 1l19-18a8 8 0 0 0-6-14H40a8 8 0 0 0-8 8v48a8 8 0 0 0 14 6l18-19a95 95 0 0 0 66 27h1a95 95 0 0 0 67-27 8 8 0 0 0-12-12Z"/></svg>
<a class=button-link target=_blank rel="noopener noreferrer" referrerpolicy=strict-origin href=https://a11y-webring.club/prev>
Previous</a>
<a class=button-link target=_blank rel="noopener noreferrer" referrerpolicy=strict-origin href=https://a11y-webring.club/random>Random</a>
<a class=button-link target=_blank rel="noopener noreferrer" referrerpolicy=strict-origin href=https://a11y-webring.club/next>Next</a>
</div>
</div>
<div class="social-item wordle">
<div id=webmaster>
<a class=button-link href=https://webmasterwebring.netlify.app rel="directory noopener noreferrer" target=_blank>Webmaster Webring</a>
<svg xmlns=http://www.w3.org/2000/svg aria-hidden=true focusable=false width=48 height=48 class="outlink purple-svg" viewBox="0 0 256 256"><rect width=256 height=256 fill=none /><path d=M216,40H72A16,16,0,0,0,56,56V72H40A16,16,0,0,0,24,88V200a16,16,0,0,0,16,16H184a16,16,0,0,0,16-16V184h16a16,16,0,0,0,16-16V56A16,16,0,0,0,216,40ZM184,88v16H40V88Zm32,80H200V88a16,16,0,0,0-16-16H72V56H216Z /></svg><svg xmlns=http://www.w3.org/2000/svg aria-hidden=true focusable=false width=48 height=48 class="outlink purple-svg" viewBox="0 0 256 256"><path fill=none d="M0 0h256v256H0z"/><path d="M224 48v48a8 8 0 0 1-8 8h-48a8 8 0 0 1-6-14l19-18a79 79 0 0 0-55-22h-1a80 80 0 0 0-55 23 8 8 0 0 1-12-12 96 96 0 0 1 134 0l18-19a8 8 0 0 1 14 6Zm-38 135a80 80 0 0 1-111 1l19-18a8 8 0 0 0-6-14H40a8 8 0 0 0-8 8v48a8 8 0 0 0 14 6l18-19a95 95 0 0 0 66 27h1a95 95 0 0 0 67-27 8 8 0 0 0-12-12Z"/></svg>
<a class=button-link href=https://webmasterwebring.netlify.app?alexzeecomedy-previous target=_blank rel="noopener noreferrer">
Previous</a>
<a class=button-link href=https://webmasterwebring.netlify.app?alexzeecomedy-next target=_blank rel="noopener noreferrer">Next</a>
<a class=button-link href=https://webmasterwebring.netlify.app?alexzeecomedy-random target=_blank rel="noopener noreferrer">Random</a>
</div>
</div>
<div class="social-item pages">
<div>
<a class=button-link href=https://baccyflap.com/noai rel="directory noopener noreferrer" target=_blank>no ai webring</a>
<svg xmlns=http://www.w3.org/2000/svg aria-hidden=true focusable=false width=48 height=48 class="outlink red-svg" viewBox="0 0 256 256"><path fill=none d="M0 0h256v256H0z"/><path d="M200 128a72 72 0 0 1-16 45L83 72a72 72 0 0 1 117 56Zm-144 0a72 72 0 0 0 117 56L72 83a72 72 0 0 0-16 45Zm180 0A108 108 0 1 1 128 20a108 108 0 0 1 108 108Zm-20 0a88 88 0 1 0-88 88 88 88 0 0 0 88-88Z"/></svg><svg xmlns=http://www.w3.org/2000/svg aria-hidden=true focusable=false width=48 height=48 class="outlink red-svg" viewBox="0 0 256 256"><path fill=none d="M0 0h256v256H0z"/><path d="M224 48v48a8 8 0 0 1-8 8h-48a8 8 0 0 1-6-14l19-18a79 79 0 0 0-55-22h-1a80 80 0 0 0-55 23 8 8 0 0 1-12-12 96 96 0 0 1 134 0l18-19a8 8 0 0 1 14 6Zm-38 135a80 80 0 0 1-111 1l19-18a8 8 0 0 0-6-14H40a8 8 0 0 0-8 8v48a8 8 0 0 0 14 6l18-19a95 95 0 0 0 66 27h1a95 95 0 0 0 67-27 8 8 0 0 0-12-12Z"/></svg>
<a class=button-link href="https://baccyflap.com/noai/?prv&s=zee" target=_blank rel="noopener noreferrer">
Previous</a>
<a class=button-link href=https://baccyflap.com/noai/?rnd target=_blank rel="noopener noreferrer">Random</a>
<a class=button-link href="https://baccyflap.com/noai/?nxt&s=zee" target=_blank rel="noopener noreferrer">Next</a>
</div>
</div>
<div class="social-item blog">
<div>
<a rel="directory noopener noreferrer" target=_blank class=button-link href=https://webring.dinhe.net>Retronaut Webring</a>
<svg xmlns=http://www.w3.org/2000/svg aria-hidden=true focusable=false width=48 height=48 class="outlink orange-svg" viewBox="0 0 256 256"><path fill=none d="M0 0h256v256H0z"/><path d="M245 61c-8-14-28-16-58-9a96 96 0 0 0-154 88c-28 29-28 46-22 55 5 9 16 13 30 13a124 124 0 0 0 28-4 96 96 0 0 0 154-88c13-13 21-26 24-36 2-7 1-14-2-19Zm-14 15c-6 22-48 57-87 79-68 39-114 42-119 32-2-2-1-7 2-13a80 80 0 0 1 10-15 96 96 0 0 0 6 14 4 4 0 0 0 4 3 122 122 0 0 0 17-4 331 331 0 0 0 134-77 123 123 0 0 0 12-13 4 4 0 0 0 0-4 96 96 0 0 0-9-13c14-2 27-2 30 4v7Z"/></svg><svg xmlns=http://www.w3.org/2000/svg aria-hidden=true focusable=false width=48 height=48 class="outlink orange-svg" viewBox="0 0 256 256"><path fill=none d="M0 0h256v256H0z"/><path d="M224 48v48a8 8 0 0 1-8 8h-48a8 8 0 0 1-6-14l19-18a79 79 0 0 0-55-22h-1a80 80 0 0 0-55 23 8 8 0 0 1-12-12 96 96 0 0 1 134 0l18-19a8 8 0 0 1 14 6Zm-38 135a80 80 0 0 1-111 1l19-18a8 8 0 0 0-6-14H40a8 8 0 0 0-8 8v48a8 8 0 0 0 14 6l18-19a95 95 0 0 0 66 27h1a95 95 0 0 0 67-27 8 8 0 0 0-12-12Z"/></svg>
<a class=button-link href=https://webring.dinhe.net/prev/https://alexzeecomedy.com target=_blank rel="noopener noreferrer">
Previous</a>
<a class=button-link href=https://webring.dinhe.net/random target=_blank rel="noopener noreferrer">Random</a>
<a class=button-link href=https://webring.dinhe.net/next/https://alexzeecomedy.com target=_blank rel="noopener noreferrer">Next</a>
</div>
</div>
<div class="social-item now">
<div>
<a rel="directory noopener noreferrer" target=_blank class=button-link href=https://silly.city/ >silly.city Webring</a>
<svg xmlns=http://www.w3.org/2000/svg aria-hidden=true focusable=false width=48 height=48 class="outlink yellow-svg" viewBox="0 0 256 256"><rect width=256 height=256 fill=none /><path d=M240,208h-8V88a8,8,0,0,0-8-8H160a8,8,0,0,0-8,8v40H104V40a8,8,0,0,0-8-8H32a8,8,0,0,0-8,8V208H16a8,8,0,0,0,0,16H240a8,8,0,0,0,0-16ZM72,184a8,8,0,0,1-16,0V168a8,8,0,0,1,16,0Zm0-48a8,8,0,0,1-16,0V120a8,8,0,0,1,16,0Zm0-48a8,8,0,0,1-16,0V72a8,8,0,0,1,16,0Zm64,96a8,8,0,0,1-16,0V168a8,8,0,0,1,16,0Zm64,0a8,8,0,0,1-16,0V168a8,8,0,0,1,16,0Zm0-48a8,8,0,0,1-16,0V120a8,8,0,0,1,16,0Z /></svg><svg xmlns=http://www.w3.org/2000/svg aria-hidden=true focusable=false width=48 height=48 class="outlink yellow-svg" viewBox="0 0 256 256"><path fill=none d="M0 0h256v256H0z"/><path d="M224 48v48a8 8 0 0 1-8 8h-48a8 8 0 0 1-6-14l19-18a79 79 0 0 0-55-22h-1a80 80 0 0 0-55 23 8 8 0 0 1-12-12 96 96 0 0 1 134 0l18-19a8 8 0 0 1 14 6Zm-38 135a80 80 0 0 1-111 1l19-18a8 8 0 0 0-6-14H40a8 8 0 0 0-8 8v48a8 8 0 0 0 14 6l18-19a95 95 0 0 0 66 27h1a95 95 0 0 0 67-27 8 8 0 0 0-12-12Z"/></svg>
<a class=button-link href="https://silly.city/prev?user=alexzeecomedy" target=_blank rel="noopener noreferrer">
Previous</a>
<a class=button-link href=https://silly.city/random target=_blank rel="noopener noreferrer">Random</a>
<a class=button-link href="https://silly.city/next?user=alexzeecomedy" target=_blank rel="noopener noreferrer">Next</a>
</div>
</div>
<div class="social-item verify">
<div>
<a rel="directory noopener noreferrer" target=_blank class=button-link href=https://webring.bucketfish.me>the bucket webring</a>
<svg xmlns=http://www.w3.org/2000/svg aria-hidden=true focusable=false width=48 height=48 class="outlink pink-svg" viewBox="0 0 256 256"><path fill=none d="M0 0h256v256H0z"/><path d="M256 208a24 24 0 0 1-48 0c0-18 16-42 17-44a8 8 0 0 1 14 0c1 2 17 26 17 44Zm-124-84a12 12 0 0 0-17-17 12 12 0 0 0 17 17ZM38 18a8 8 0 0 0-12 12l33 32 11-11Zm197 121a8 8 0 0 0 3-13L122 10a8 8 0 0 0-11 0L70 51l41 40a28 28 0 1 1-12 12L59 62l-44 44a24 24 0 0 0 0 34l85 85a24 24 0 0 0 34 0l78-78Z"/></svg><svg xmlns=http://www.w3.org/2000/svg aria-hidden=true focusable=false width=48 height=48 class="outlink pink-svg" viewBox="0 0 256 256"><path fill=none d="M0 0h256v256H0z"/><path d="M224 48v48a8 8 0 0 1-8 8h-48a8 8 0 0 1-6-14l19-18a79 79 0 0 0-55-22h-1a80 80 0 0 0-55 23 8 8 0 0 1-12-12 96 96 0 0 1 134 0l18-19a8 8 0 0 1 14 6Zm-38 135a80 80 0 0 1-111 1l19-18a8 8 0 0 0-6-14H40a8 8 0 0 0-8 8v48a8 8 0 0 0 14 6l18-19a95 95 0 0 0 66 27h1a95 95 0 0 0 67-27 8 8 0 0 0-12-12Z"/></svg>
<a class=button-link href="https://webring.bucketfish.me/redirect.html?to=prev&name=alexzeecomedy" target=_blank rel="noopener noreferrer">
Previous</a>
<a class=button-link href="https://webring.bucketfish.me/redirect.html?to=random&name=alexzeecomedy" target=_blank rel="noopener noreferrer">Random</a>
<a class=button-link href="https://webring.bucketfish.me/redirect.html?to=next&name=alexzeecomedy" target=_blank rel="noopener noreferrer">Next</a>
</div>
</div>
<div class="social-item about">
<div>
<a rel="directory noopener noreferrer" target=_blank class=button-link href=https://cs.sjoy.lol/ >CSS JOY Webring</a>
<svg xmlns=http://www.w3.org/2000/svg aria-hidden=true focusable=false width=48 height=48 class="outlink blue-svg" viewBox="0 0 256 256"><path fill=none d="M0 0h256v256H0z"/><path d="M48 180c0 11 7 20 16 20a14 14 0 0 0 10-4 8 8 0 0 1 11-1 8 8 0 0 1 1 11 30 30 0 0 1-22 10c-18 0-32-16-32-36s14-36 32-36a30 30 0 0 1 21 9 8 8 0 0 1 1 11 8 8 0 0 1-12 1 14 14 0 0 0-10-5c-9 0-16 9-16 20Zm80-9c-4-1-9-2-11-4l-1-1a5 5 0 0 1 2-4c5-3 15-2 20-1a8 8 0 0 0 4-15c-2-1-21-5-33 3a21 21 0 0 0-9 15c-2 15 14 20 23 23 12 3 13 5 13 7 0 3-1 4-2 4-5 3-15 2-20 1a8 8 0 0 0-4 15 61 61 0 0 0 15 2c6 0 12-1 18-4a21 21 0 0 0 9-16c2-17-15-22-24-25Zm64 0c-4-1-9-2-11-4l-1-1a5 5 0 0 1 2-4c5-3 15-2 20-1a8 8 0 0 0 4-15c-2-1-21-5-33 3a21 21 0 0 0-9 15c-2 15 14 20 23 23 12 3 13 5 13 7 0 3-1 4-2 4-5 3-15 2-20 1a8 8 0 0 0-4 15 61 61 0 0 0 15 2c6 0 12-1 18-4a21 21 0 0 0 9-16c2-17-15-22-24-25ZM40 116V40a16 16 0 0 1 16-16h96a8 8 0 0 1 6 2l56 56a8 8 0 0 1 2 6v28a4 4 0 0 1-4 4H44a4 4 0 0 1-4-4Zm112-28h44l-44-44Z"/></svg><svg xmlns=http://www.w3.org/2000/svg aria-hidden=true focusable=false width=48 height=48 class="outlink blue-svg" viewBox="0 0 256 256"><path fill=none d="M0 0h256v256H0z"/><path d="M224 48v48a8 8 0 0 1-8 8h-48a8 8 0 0 1-6-14l19-18a79 79 0 0 0-55-22h-1a80 80 0 0 0-55 23 8 8 0 0 1-12-12 96 96 0 0 1 134 0l18-19a8 8 0 0 1 14 6Zm-38 135a80 80 0 0 1-111 1l19-18a8 8 0 0 0-6-14H40a8 8 0 0 0-8 8v48a8 8 0 0 0 14 6l18-19a95 95 0 0 0 66 27h1a95 95 0 0 0 67-27 8 8 0 0 0-12-12Z"/></svg>
<a class=button-link href="https://webri.ng/webring/cssjoy/previous?via=https://alexzeecomedy.com" target=_blank rel="noopener noreferrer">
Previous</a>
<a class=button-link href="https://webri.ng/webring/cssjoy/random?via=https://alexzeecomedy.com" target=_blank rel="noopener noreferrer">Random</a>
<a class=button-link href="https://webri.ng/webring/cssjoy/next?via=https://alexzeecomedy.com" target=_blank rel="noopener noreferrer">Next</a>
</div>
</div>
<div class="social-item interests">
<div id=static>
<a rel="directory noopener noreferrer" target=_blank class=button-link href=https://static.quest>Static.Quest Web Ring</a>
<svg xmlns=http://www.w3.org/2000/svg aria-hidden=true focusable=false width=48 height=48 class="outlink indigo-svg" viewBox="0 0 256 256"><path fill=none d="M0 0h256v256H0z"/><path d="M202 55a103 103 0 0 0-74-31h-8a8 8 0 0 0-8 8v28L12 121a8 8 0 0 0-3 11l14 22v1a32 32 0 0 0 32 13c14-3 38-7 61 3l-27 36a85 85 0 0 1-20-13 8 8 0 1 0-10 12 103 103 0 0 0 69 26h2a104 104 0 0 0 72-177Zm-78 57a12 12 0 1 1 12-12 12 12 0 0 1-12 12Z"/></svg><svg xmlns=http://www.w3.org/2000/svg aria-hidden=true focusable=false width=48 height=48 class="outlink indigo-svg" viewBox="0 0 256 256"><path fill=none d="M0 0h256v256H0z"/><path d="M224 48v48a8 8 0 0 1-8 8h-48a8 8 0 0 1-6-14l19-18a79 79 0 0 0-55-22h-1a80 80 0 0 0-55 23 8 8 0 0 1-12-12 96 96 0 0 1 134 0l18-19a8 8 0 0 1 14 6Zm-38 135a80 80 0 0 1-111 1l19-18a8 8 0 0 0-6-14H40a8 8 0 0 0-8 8v48a8 8 0 0 0 14 6l18-19a95 95 0 0 0 66 27h1a95 95 0 0 0 67-27 8 8 0 0 0-12-12Z"/></svg>
<a class=button-link href="https://static.quest/previous/?host=alexzeecomedy.com" target=_blank rel="noopener noreferrer">
Previous</a>
<a class=button-link href=https://static.quest/random target=_blank rel="noopener noreferrer">Random</a>
<a class=button-link href="https://static.quest/next/?host=alexzeecomedy.com" target=_blank rel="noopener noreferrer">Next</a>
</div>
</div>
<div class="social-item wordle">
<div id=lissa>
<a rel="directory noopener noreferrer" target=_blank class=button-link href=https://genlissa.baccyflap.com>I'm Gen Lissa</a>
<svg xmlns=http://www.w3.org/2000/svg aria-hidden=true focusable=false width=48 height=48 class="outlink purple-svg" viewBox="0 0 256 256"><path fill=none d="M0 0h256v256H0z"/><path d="M224 128a96 96 0 0 1-162 70 8 8 0 1 1 11-12 80 80 0 1 0-2-115L61 82l17 16a8 8 0 0 1-6 14H32a8 8 0 0 1-8-8V64a8 8 0 0 1 14-6l12 13 10-11a96 96 0 0 1 164 68Zm-96-56a8 8 0 0 0-8 8v48a8 8 0 0 0 4 7l40 24a8 8 0 1 0 8-14l-36-22V80a8 8 0 0 0-8-8Z"/></svg><svg xmlns=http://www.w3.org/2000/svg aria-hidden=true focusable=false width=48 height=48 class="outlink purple-svg" viewBox="0 0 256 256"><path fill=none d="M0 0h256v256H0z"/><path d="M224 48v48a8 8 0 0 1-8 8h-48a8 8 0 0 1-6-14l19-18a79 79 0 0 0-55-22h-1a80 80 0 0 0-55 23 8 8 0 0 1-12-12 96 96 0 0 1 134 0l18-19a8 8 0 0 1 14 6Zm-38 135a80 80 0 0 1-111 1l19-18a8 8 0 0 0-6-14H40a8 8 0 0 0-8 8v48a8 8 0 0 0 14 6l18-19a95 95 0 0 0 66 27h1a95 95 0 0 0 67-27 8 8 0 0 0-12-12Z"/></svg>
<a class=button-link href="https://genlissa.baccyflap.com/?prv&s=ayz" target=_blank rel="noopener noreferrer">
Previous</a>
<a class=button-link href=https://genlissa.baccyflap.com/?rnd target=_blank rel="noopener noreferrer">Random</a>
<a class=button-link href="https://genlissa.baccyflap.com/?nxt&s=ayz" target=_blank rel="noopener noreferrer">Next</a>
</div>
</div>
<div class="social-item pages">
<div id=design-systems-webring class=design-systems-webring>
<a class=button-link rel="directory noopener noreferrer" target=_blank href=https://design-system.club/ >Design Systems Webring</a>
<svg xmlns=http://www.w3.org/2000/svg aria-hidden=true focusable=false width=48 height=48 class="outlink red-svg" viewBox="0 0 256 256"><rect width=256 height=256 fill=none /><path d=M216,40H40A16,16,0,0,0,24,56V200a16,16,0,0,0,16,16H216a16,16,0,0,0,16-16V56A16,16,0,0,0,216,40ZM40,56H216V96H40ZM216,200H112V112H216v88Z /></svg><svg xmlns=http://www.w3.org/2000/svg aria-hidden=true focusable=false width=48 height=48 class="outlink red-svg" viewBox="0 0 256 256"><path fill=none d="M0 0h256v256H0z"/><path d="M224 48v48a8 8 0 0 1-8 8h-48a8 8 0 0 1-6-14l19-18a79 79 0 0 0-55-22h-1a80 80 0 0 0-55 23 8 8 0 0 1-12-12 96 96 0 0 1 134 0l18-19a8 8 0 0 1 14 6Zm-38 135a80 80 0 0 1-111 1l19-18a8 8 0 0 0-6-14H40a8 8 0 0 0-8 8v48a8 8 0 0 0 14 6l18-19a95 95 0 0 0 66 27h1a95 95 0 0 0 67-27 8 8 0 0 0-12-12Z"/></svg>
<a class=button-link rel="noopener noreferrer" referrerpolicy=strict-origin href=https://design-system.club/prev>
Previous</a>
<a class=button-link rel="noopener noreferrer" referrerpolicy=strict-origin href=https://design-system.club/random>Random</a>
<a class=button-link rel="noopener noreferrer" referrerpolicy=strict-origin href=https://design-system.club/next>Next</a>
</div>
</div>
<div class="social-item blog">
<div id=safont>
<a rel="directory noopener noreferrer" target=_blank class=button-link href=https://safonts.club/ >I'm a Safont</a>
<svg xmlns=http://www.w3.org/2000/svg aria-hidden=true focusable=false width=48 height=48 class="outlink orange-svg" viewBox="0 0 256 256"><path fill=none d="M0 0h256v256H0z"/><path d="M200 156c0 7-7 12-16 12s-16-5-16-12 7-12 16-12 16 6 16 12Zm32-100v144a16 16 0 0 1-16 16H40a16 16 0 0 1-16-16V56a16 16 0 0 1 16-16h176a16 16 0 0 1 16 16Zm-89 117L99 69a8 8 0 0 0-14 0L41 173a8 8 0 0 0 14 6l12-27h50l12 27a8 8 0 0 0 14-6Zm73-49c0-15-14-28-32-28a35 35 0 0 0-21 7 8 8 0 0 0 10 13 19 19 0 0 1 11-4c9 0 16 5 16 12v8a35 35 0 0 0-16-4c-18 0-32 13-32 28s14 28 32 28a35 35 0 0 0 17-4 8 8 0 0 0 15-4ZM74 136h36L92 93Z"/></svg><svg xmlns=http://www.w3.org/2000/svg aria-hidden=true focusable=false width=48 height=48 class="outlink orange-svg" viewBox="0 0 256 256"><path fill=none d="M0 0h256v256H0z"/><path d="M224 48v48a8 8 0 0 1-8 8h-48a8 8 0 0 1-6-14l19-18a79 79 0 0 0-55-22h-1a80 80 0 0 0-55 23 8 8 0 0 1-12-12 96 96 0 0 1 134 0l18-19a8 8 0 0 1 14 6Zm-38 135a80 80 0 0 1-111 1l19-18a8 8 0 0 0-6-14H40a8 8 0 0 0-8 8v48a8 8 0 0 0 14 6l18-19a95 95 0 0 0 66 27h1a95 95 0 0 0 67-27 8 8 0 0 0-12-12Z"/></svg>
<a class=button-link href=https://safonts.club/prev/alexzeecomedy.com target=_blank rel="noopener noreferrer">
Previous</a>
<a class=button-link href=https://safonts.club/random target=_blank rel="noopener noreferrer">Random</a>
<a class=button-link href=https://safonts.club/next/alexzeecomedy.com target=_blank rel="noopener noreferrer">Next</a>
</div>
</div>
<div class="social-item blog">
<div id=star>
<a rel="directory noopener noreferrer" target=_blank class=button-link href=https://zacharykai.net/lists/starwars>Star Wars Webring</a>
<svg xmlns=http://www.w3.org/2000/svg aria-hidden=true focusable=false width=48 height=48 class="outlink purple-svg" viewBox="0 0 256 256"><path fill=none d="M0 0h256v256H0z"/><path d="m239 133-32-80a8 8 0 0 0-7-5 8 8 0 0 0-2 0l-62 14V40a8 8 0 0 0-16 0v26L54 80a8 8 0 0 0-5 5l-32 80a8 8 0 0 0-1 3c0 23 25 32 40 32s40-9 40-32a8 8 0 0 0-1-3L67 94l53-12v126h-16a8 8 0 0 0 0 16h48a8 8 0 0 0 0-16h-16V78l51-11-26 66a8 8 0 0 0-1 3c0 23 25 32 40 32s40-9 40-32a8 8 0 0 0-1-3ZM79 168H33l23-58Zm98-32 23-58 23 58Z"/></svg><svg xmlns=http://www.w3.org/2000/svg aria-hidden=true focusable=false width=48 height=48 class="outlink purple-svg" viewBox="0 0 256 256"><path fill=none d="M0 0h256v256H0z"/><path d="M224 48v48a8 8 0 0 1-8 8h-48a8 8 0 0 1-6-14l19-18a79 79 0 0 0-55-22h-1a80 80 0 0 0-55 23 8 8 0 0 1-12-12 96 96 0 0 1 134 0l18-19a8 8 0 0 1 14 6Zm-38 135a80 80 0 0 1-111 1l19-18a8 8 0 0 0-6-14H40a8 8 0 0 0-8 8v48a8 8 0 0 0 14 6l18-19a95 95 0 0 0 66 27h1a95 95 0 0 0 67-27 8 8 0 0 0-12-12Z"/></svg>
<a class=button-link href="https://zacharykai.net/lists/starwars?action=prev" target=_blank rel="noopener noreferrer">
Previous</a>
<a class=button-link href="https://zacharykai.net/lists/starwars?action=random" target=_blank rel="noopener noreferrer">Random</a>
<a class=button-link href="https://zacharykai.net/lists/starwars?action=next" target=_blank rel="noopener noreferrer">Next</a>
</div>
</div>
<div class="social-item now">
<div>
<a class=button-link href=https://risingthumb.github.io/Travelers-of-Agora-Road-webring/ rel="directory noopener noreferrer" target=_blank>Travelers of Agora Road webring</a>
<svg xmlns=http://www.w3.org/2000/svg aria-hidden=true focusable=false width=48 height=48 class="outlink yellow-svg" viewBox="0 0 256 256">
<path fill=none d="M0 0h256v256H0z"></path>
<path d="M239 188 174 72h58a8 8 0 0 0 8-7 8 8 0 0 0-8-9H24a8 8 0 0 0-8 7 8 8 0 0 0 8 9h58L17 188a8 8 0 0 0 1 10 8 8 0 0 0 6 2h92a4 4 0 0 0 4-4v-20a8 8 0 0 1 7-8 8 8 0 0 1 9 8v20a4 4 0 0 0 4 4h92a8 8 0 0 0 6-2 8 8 0 0 0 1-10Zm-103-48a8 8 0 0 1-16 0v-16a8 8 0 0 1 16 0Zm0-52a8 8 0 0 1-16 0v-8a8 8 0 0 1 16 0Z"></path>
</svg><svg xmlns=http://www.w3.org/2000/svg aria-hidden=true focusable=false width=48 height=48 class="outlink yellow-svg" viewBox="0 0 256 256"><path fill=none d="M0 0h256v256H0z"/><path d="M224 48v48a8 8 0 0 1-8 8h-48a8 8 0 0 1-6-14l19-18a79 79 0 0 0-55-22h-1a80 80 0 0 0-55 23 8 8 0 0 1-12-12 96 96 0 0 1 134 0l18-19a8 8 0 0 1 14 6Zm-38 135a80 80 0 0 1-111 1l19-18a8 8 0 0 0-6-14H40a8 8 0 0 0-8 8v48a8 8 0 0 0 14 6l18-19a95 95 0 0 0 66 27h1a95 95 0 0 0 67-27 8 8 0 0 0-12-12Z"/></svg>
<a class=button-link href=https://agoraroad.goeshard.org/alexzeecomedy/prev target=_blank rel="noopener noreferrer">
Previous</a>
<a class=button-link href=https://agoraroad.goeshard.org/alexzeecomedy/next target=_blank rel="noopener noreferrer">Next</a>
</div>
</div>
<div class="social-item verify">
<div>
<a class=button-link href=https://teethinvitro.neocities.org/webring/linuxring/ rel="directory noopener noreferrer" target=_blank>*nixRing</a>
<svg xmlns=http://www.w3.org/2000/svg aria-hidden=true focusable=false width=48 height=48 class="outlink pink-svg" viewBox="0 0 256 256"><path fill=none d="M0 0h256v256H0z"/><path d="M161 210a4 4 0 0 1-3 6H98a4 4 0 0 1-3-6 40 40 0 0 1 66 0Zm69 3a8 8 0 0 1-6 3h-39a4 4 0 0 1-4-3 56 56 0 0 0-106 0 4 4 0 0 1-4 3H32a8 8 0 0 1-6-3 8 8 0 0 1 0-10s7-10 15-29c7-17 15-46 15-86a72 72 0 0 1 144 0c0 40 8 69 15 86 8 19 15 29 15 29a8 8 0 0 1 0 10ZM88 100a12 12 0 1 0 12-12 12 12 0 0 0-12 12Zm79 32a8 8 0 0 0-11-3l-28 14-28-14a8 8 0 0 0-8 14l32 16a8 8 0 0 0 8 0l32-16a8 8 0 0 0 3-11Zm1-32a12 12 0 1 0-12 12 12 12 0 0 0 12-12Z"/></svg><svg xmlns=http://www.w3.org/2000/svg aria-hidden=true focusable=false width=48 height=48 class="outlink pink-svg" viewBox="0 0 256 256"><path fill=none d="M0 0h256v256H0z"/><path d="M224 48v48a8 8 0 0 1-8 8h-48a8 8 0 0 1-6-14l19-18a79 79 0 0 0-55-22h-1a80 80 0 0 0-55 23 8 8 0 0 1-12-12 96 96 0 0 1 134 0l18-19a8 8 0 0 1 14 6Zm-38 135a80 80 0 0 1-111 1l19-18a8 8 0 0 0-6-14H40a8 8 0 0 0-8 8v48a8 8 0 0 0 14 6l18-19a95 95 0 0 0 66 27h1a95 95 0 0 0 67-27 8 8 0 0 0-12-12Z"/></svg>
<a class=button-link href=https://teethinvitro.neocities.org/webring/linuxring/redirect/alexzprev.html target=_blank rel="noopener noreferrer">
Previous</a>
<a class=button-link href=https://teethinvitro.neocities.org/webring/linuxring/redirect/alexznext.html target=_blank rel="noopener noreferrer">Next</a>
</div>
</div>
<div class="social-item notes">
<div>
<a class=button-link href=https://octo-ring.com/list rel="directory noopener noreferrer" target=_blank>
Octo Ring</a>
<svg xmlns=http://www.w3.org/2000/svg aria-hidden=true focusable=false width=48 height=48 class="outlink white-svg" viewBox="0 0 256 256">
<path fill=none d="M0 0h256v256H0z"></path>
<path d="M216 104v8a56 56 0 0 1-48 55 40 40 0 0 1 8 25v40a8 8 0 0 1-8 8h-64a8 8 0 0 1-8-8v-16H72a40 40 0 0 1-40-40 24 24 0 0 0-24-24 8 8 0 0 1 0-16 40 40 0 0 1 40 40 24 24 0 0 0 24 24h24v-8a40 40 0 0 1 8-25 56 56 0 0 1-48-55v-8a58 58 0 0 1 8-28 60 60 0 0 1 5-48 8 8 0 0 1 7-4 60 60 0 0 1 48 24h24a60 60 0 0 1 48-24 8 8 0 0 1 7 4 60 60 0 0 1 5 48 58 58 0 0 1 8 28Z"></path>
</svg><svg xmlns=http://www.w3.org/2000/svg aria-hidden=true focusable=false width=48 height=48 class="outlink white-svg" viewBox="0 0 256 256"><path fill=none d="M0 0h256v256H0z"/><path d="M224 48v48a8 8 0 0 1-8 8h-48a8 8 0 0 1-6-14l19-18a79 79 0 0 0-55-22h-1a80 80 0 0 0-55 23 8 8 0 0 1-12-12 96 96 0 0 1 134 0l18-19a8 8 0 0 1 14 6Zm-38 135a80 80 0 0 1-111 1l19-18a8 8 0 0 0-6-14H40a8 8 0 0 0-8 8v48a8 8 0 0 0 14 6l18-19a95 95 0 0 0 66 27h1a95 95 0 0 0 67-27 8 8 0 0 0-12-12Z"/></svg>
<a class=button-link href=https://alexzeecomedy.com/gh target=_blank rel=me>
Check it out on my GitHub profile!</a>
</div>
</div>
<div class="social-item verify">
<div>
<a class=button-link href=https://theforest.link target=_blank rel="noopener noreferrer">The Forest</a>
<svg xmlns=http://www.w3.org/2000/svg aria-hidden=true focusable=false width=48 height=48 class="outlink pink-svg" viewBox="0 0 256 256"><path fill=none d="M0 0h256v256H0z"/><path d="M231 196a8 8 0 0 1-7 4h-88v40a8 8 0 0 1-16 0v-40H32a8 8 0 0 1-6-13l46-59H48a8 8 0 0 1-6-13l80-104a8 8 0 0 1 12 0l80 104a8 8 0 0 1-6 13h-24l46 59a8 8 0 0 1 1 9Z"/></svg>
<a class=button-link href=https://theforest.link/go-for-a-walk/ target=_blank rel="noopener noreferrer">Walk</a>
</div>
</div>
<div class="social-item verify">
<div>
<div data-wwwebring=https://waywardweb.org/ring.json data-wwwebring-theme=default data-wwwebring-you-are-here=https://alexzeecomedy.com></div>
<noscript><a class="button-link wr" rel="directory noopener noreferrer" target=_blank href=https://waywardweb.org>The Wayward Webring</a>
<svg xmlns=http://www.w3.org/2000/svg aria-hidden=true focusable=false class="outlink pink-svg" width=48 height=48 viewBox="0 0 256 256"><rect width=256 height=256 fill=none /><path d=M208,32H48A16,16,0,0,0,32,48V208a16,16,0,0,0,16,16H208a16,16,0,0,0,16-16V48A16,16,0,0,0,208,32ZM192,184H64a8,8,0,0,1,0-16H192a8,8,0,0,1,0,16Zm0-48H64a8,8,0,0,1,0-16H192a8,8,0,0,1,0,16Zm0-48H64a8,8,0,0,1,0-16H192a8,8,0,0,1,0,16Z /></svg><svg xmlns=http://www.w3.org/2000/svg aria-hidden=true focusable=false width=48 height=48 class="outlink pink-svg" viewBox="0 0 256 256"><path fill=none d="M0 0h256v256H0z"/><path d="M224 48v48a8 8 0 0 1-8 8h-48a8 8 0 0 1-6-14l19-18a79 79 0 0 0-55-22h-1a80 80 0 0 0-55 23 8 8 0 0 1-12-12 96 96 0 0 1 134 0l18-19a8 8 0 0 1 14 6Zm-38 135a80 80 0 0 1-111 1l19-18a8 8 0 0 0-6-14H40a8 8 0 0 0-8 8v48a8 8 0 0 0 14 6l18-19a95 95 0 0 0 66 27h1a95 95 0 0 0 67-27 8 8 0 0 0-12-12Z"/></svg>
<a class="button-link wr" href=https://waywardweb.org/sites/alexzeecomedy.com/previous target=_blank rel="noopener noreferrer">
Previous</a>
<a class="button-link wr" href=https://waywardweb.org/sites/alexzeecomedy.com/next target=_blank rel="noopener noreferrer">Next</a></noscript>
</div>
</div>
</div>
<div id=freespeechwebring>
<noscript><p><a rel="directory noopener noreferrer" target=_blank href=https://town.thecozy.cat/web-revival/freespeechwebring/ >This site is part of the FreeSpeech Webring</a></p></noscript>
</div>
<div id=sovereignwebring>
<noscript><p><a rel="directory noopener noreferrer" target=_blank href=https://sovereignweb.thecozy.cat>This site is part of The Sovreign Webring</a></p></noscript>
</div>
<div id=onlinewire-webring>
<noscript><p><a rel="directory noopener noreferrer" target=_blank href=https://milkyway.moe/onlinewire>This site is part of the OnlineWire Webring</a></p></noscript>
</div>
<div id=focusfirst-webring>
<noscript><p><a rel="directory noopener noreferrer" target=_blank href=https://www.beepbird.net/webring/index.html>This site is part of the Focus First Webring</a></p></noscript>
</div>
<h3 class=melons>Melonland Surf Club</h3>
<div class=menulink>
<div class=surf-badge><object id=melonland-surf-club-dark data="https://cdn.jsdelivr.net/gh/alexzeecomedy/alexzeecomedy.github.io@main/assets/artwork/surf-badge.svg?fill=#ffffff" type=image/svg+xml title="Inner icon: Melonland Surf Club, Outer ring: Surf the webring" class=melon></object>
<object id=melonland-surf-club-light data=https://cdn.jsdelivr.net/gh/alexzeecomedy/alexzeecomedy.github.io@main/assets/artwork/surf-badge.svg type=image/svg+xml title="Inner icon: Melonland Surf Club, Outer ring: Surf the webring" class=melon></object></div></div>
<noscript><p><a rel="directory noopener noreferrer" target=_blank href=https://melonland.net/surf-club>This site is part of the Melonland Surf Club</a></p></noscript>
<h2 id=pending>Pending</h2>
<div id=khwr>
</div>
<div id=cookieclickers>
</div>
<h3>Vapor Ring</h3>
<iframe loading=lazy src=https://rustypawz.neocities.org/widget.html class=vapor-ring title="Vapor Ring Navigation Widget">
</iframe>
<section id=miscri2>
<h3>
<a href="https://miscri.netlify.app/webring?action=prev" target=_blank rel="noopener noreferrer">
Previous</a>
<a href="https://miscri.netlify.app/webring?action=home" target=_blank rel="noopener noreferrer">~misc-ring~</a>
<a href="https://miscri.netlify.app/webring?action=rand" target=_blank rel="noopener noreferrer">Random</a>
<a href="https://miscri.netlify.app/webring?action=next" target=_blank rel="noopener noreferrer">Next</a>
</h3>
<h3>
<a href="https://webri.ng/webring/rssring/previous?via=https%3A%2F%2Falexzeecomedy.com" target=_blank rel="noopener noreferrer">Previous</a>
<a href=https://mxbo.neocities.org/rss/ring.html target=_blank rel="noopener noreferrer">The RSS Webring</a>
<a href="https://webri.ng/webring/rssring/random?via=https%3A%2F%2Falexzeecomedy.com" target=_blank rel="noopener noreferrer">Random</a>
<a href="https://webri.ng/webring/rssring/next?via=https%3A%2F%2Falexzeecomedy.com" target=_blank rel="noopener noreferrer">Next</a>
</h3>
<h3>
<a href=https://1.44mb.club/prev target=_blank rel="noopener noreferrer">Previous</a>
<a href=https://1.44mb.club target=_blank rel="noopener noreferrer">💾</a>
<a href=https://1.44mb.club/random target=_blank rel="noopener noreferrer">Random</a>
<a href=https://1.44mb.club/next target=_blank rel="noopener noreferrer">Next</a>
</h3>
</section></details>
<article id=clubs>
<details class=more-details>
<summary>Clubs/Directories</summary>
<h2>Joined/Listed</h2>
<p><a id=octothorp href=https://octothorp.es/domains rel="directory noopener noreferrer" target=_blank><img src=https://cdn.jsdelivr.net/gh/alexzeecomedy/alexzeecomedy.github.io@main/assets/artwork/octo.png alt="Badge for the Octothorpes main ring" width=88 height=31 class=eightthree loading=lazy></a>
<a href=https://kalechips.net/responsive/directory rel="directory noopener noreferrer" target=_blank>
<img src=https://cdn.jsdelivr.net/gh/alexzeecomedy/alexzeecomedy.github.io@main/assets/artwork/8831-1.png width=88 height=31 alt="Responsive Web Directory" loading=lazy class=eightthree></a>
<a href=https://pinkvampyr.leprd.space/accessiblenet/directory.php rel="directory noopener noreferrer" target=_blank>
<img src=https://cdn.jsdelivr.net/gh/alexzeecomedy/alexzeecomedy.github.io@main/assets/artwork/accessiblenet-button.png width=88 height=31 alt="Accessible Net Directory" loading=lazy class=eightthree></a>
<a href=https://indieseek.xyz/links/entertainment/humor/alex-zee-comedy-home-3134.html rel="directory noopener noreferrer" target=_blank><img src=https://cdn.jsdelivr.net/gh/alexzeecomedy/alexzeecomedy.github.io@main/assets/artwork/indieseek.png alt="Listed in the Indieseek.xyz directory" width=88 height=31 loading=lazy class=eightthree></a>
</p>
<p><a href=https://smoothsailing.asclaria.org/showcase/personal target=_blank rel="directory noopener noreferrer"><img src=https://cdn.jsdelivr.net/gh/alexzeecomedy/alexzeecomedy.github.io@main/assets/artwork/microbutton.png alt="Listed @ smoothsailing.asclaria.org" width=88 height=31 loading=lazy class=eightthree></a>
<a href=https://wiby.me/ target=_blank>
<img src=https://cdn.jsdelivr.net/gh/alexzeecomedy/alexzeecomedy.github.io@main/assets/artwork/wiby.gif width=88 height=31 class=eightthree alt="Wiby.me badge" loading=lazy></a>
<a href="https://linklane.net/links.php?cat=1" rel="directory noopener noreferrer" target=_blank><img src=https://cdn.jsdelivr.net/gh/alexzeecomedy/alexzeecomedy.github.io@main/assets/artwork/byPounce88x31.gif alt="Listed @ LinkLane.Net" width=88 height=31 loading=lazy class=eightthree></a>
<a href=https://url.town/@alexzeecomedy rel="directory noopener noreferrer" target=_blank><img src=https://cdn.jsdelivr.net/gh/alexzeecomedy/alexzeecomedy.github.io@main/assets/artwork/88x31-listed.png alt="Listed @ url.town" width=88 height=31 loading=lazy class=eightthree></a>
</p>
<p><a href=https://omg.alexzeecomedy.com rel=me target=_blank><svg xmlns=http://www.w3.org/2000/svg width=88 height=31 viewBox="0 0 88 31"><path d="M0 0h88v31H0z" style=stroke:#ff69ad;stroke-width:3px;paint-order:fill;fill:#343434 /><g transform="matrix(.07547 0 0 -.07547 -10.8 62)"><title>Default</title><path d="M0 0a79.3 79.3 0 0 0-56.2 23.3l-53 53A79.5 79.5 0 0 0 0 191.8 79.5 79.5 0 0 0 109.2 76.3l-53-53A79.3 79.3 0 0 0 0 0" style=fill:#ff69ad;fill-opacity:1;fill-rule:nonzero;stroke:none transform="translate(318.8 511.4)"/><path d="M0 0a6.2 6.2 0 1 0-12.5 0A6.2 6.2 0 0 0 0 0" style=fill:#461036;fill-opacity:1;fill-rule:nonzero;stroke:none transform="translate(303.1 656.3)"/><path d="M0 0a6.2 6.2 0 1 0-12.5 0A6.2 6.2 0 0 0 0 0Z" style=fill:none;stroke:#461036;stroke-width:6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1 transform="translate(303.1 656.3)"/><path d="M0 0a6.2 6.2 0 1 0-12.5 0A6.2 6.2 0 0 0 0 0" style=fill:#461036;fill-opacity:1;fill-rule:nonzero;stroke:none transform="translate(346.9 656.3)"/><path d="M0 0a6.2 6.2 0 1 0-12.5 0A6.2 6.2 0 0 0 0 0Z" style=fill:none;stroke:#461036;stroke-width:6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1 transform="translate(346.9 656.3)"/><path d="M0 0a25.6 25.6 0 0 1 43.7 0" style=fill:none;stroke:#461036;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1 transform="translate(296.9 631.2)"/><path d="M0 0a31.2 31.2 0 1 1-62.5 0A31.2 31.2 0 0 1 0 0" style=fill:#e34198;fill-opacity:1;fill-rule:nonzero;stroke:none transform="translate(418.8 637.5)"/><path d="M0 0a31.2 31.2 0 1 1-62.5 0A31.2 31.2 0 0 1 0 0" style=fill:#e34198;fill-opacity:1;fill-rule:nonzero;stroke:none transform="translate(281.3 637.5)"/><path d="M0 0a25.6 25.6 0 0 1 43.7 0" style=fill:none;stroke:#461036;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1 transform="translate(296.9 631.2)"/></g><path d="M29 20.1q-1.4 0-2.4-.5-1-.6-1.6-1.6-.6-1-.6-2.2 0-1.3.6-2.4.6-1 1.7-1.5 1-.6 2.4-.6 1.2 0 2.3.6 1 .6 1.6 1.6.5 1 .5 2.2 0 2-1.3 3.2-1.2 1.2-3.3 1.2Zm-1-6.9v1.7l.4 2q.2 1 .5 1.6.3.7.6.7.5 0 .5-.8l-.1-1.8-.3-2-.5-1.7q-.3-.6-.7-.6-.5 0-.5.9Zm17.8 6.6H45q-.3-.2-.3-.4v-.2l.3-.2q.2-.1.2-.6V15q0-.8-.3-1.2-.1-.3-.6-.3h-.5v5.3l.2.2.2.1v.3q0 .2-.2.3l-.7.1h-3.5q-.3-.2-.3-.4v-.2l.2-.2q.3-.1.3-.6V15q0-.8-.2-1.2-.2-.3-.7-.3l-.6.1V19l.2.1q.3.1.3.3 0 .3-.2.4l-.7.1h-3.8q-.3-.2-.3-.4V19l.3-.1.3-.3v-4.9l-.3-.1H34l-.1-.3q0-.3.3-.6l1.7-1h.1l.1-.1h.2l.4-.3.4-.1h.3l.2.1.2.2.1.3.1.4.3.8q.5-1 1.3-1.4.8-.4 1.8-.4.7 0 1.4.4.6.5.9 1.2.6-.8 1.3-1.2.7-.4 1.6-.4l.9.2q.4.1.8.5l.5 1q.2.6.2 1.4v4.4q.1.2.3.2l.2.1v.3q0 .2-.2.3l-.7.1Zm8.6-.8q-2.4 0-3.5-.9-1.2-.8-1.2-2.4 0-1.9 1.5-3 1.4-1.3 3.6-1.3h2.9q1 0 1.6.3.5.2.5.9 0 .3-.3.6-.2.2-.6.2-.3 0-.5-.2l-.5-.4-.6-.4-.8-.2v.1l.5.3.4.3.5.4.4.5.4.6.2.6.1.8q0 1.1-.7 1.9-.6.7-1.8 1 1.6 0 2.4.4.8.5.8 1.2 0 1.2-1.2 1.9-1.3.7-3.8.7-2.4 0-3.5-.5-1.2-.5-1.2-1.5 0-.7.7-1.1.7-.4 1.6-.4.7 0 1 .4.5.3.5.9v.7q0 .6 1 .6.6 0 .9-.4.2-.3.2-1v-.8q0-.3-.2-.5l-.4-.2h-.6Zm-1-5.7.2 2.2.5 1.9q.3.7.7.7.4 0 .4-.7 0-1.2-.2-2.3-.1-1.2-.4-2-.3-.7-.6-.7-.6 0-.6 1ZM66 20q-.8 0-1-.2-.3 0-.3-.3v-.2l.2-.2.4-.3V11.7l-.1-.7q-.1-.2-.5-.2h-.3v-.3q0-.3.3-.5l1.5-.6.8-.3.5-.3.5-.1.3-.1.3-.1h.5l.1.2v9.8l.1.4q0 .2.3.2t.3.4q0 .2-.2.3l-.8.1Zm8.7.3q-1.3 0-2.3-.6-1-.6-1.7-1.6-.5-1-.5-2.2 0-1.3.6-2.3.6-1 1.6-1.6 1-.6 2.4-.6 1.3 0 2.3.6 1 .6 1.6 1.6.6 1 .6 2.2 0 2-1.3 3.2-1.3 1.3-3.3 1.3Zm-1-7 .1 1.8.3 2 .5 1.6q.3.6.7.6.4 0 .4-.8v-1.8l-.4-2q-.2-1-.5-1.6-.3-.7-.6-.7-.5 0-.5 1Zm7.5 6.6h-1q-.2-.1-.2-.4v-.2l.2-.2.4-.3V11.7l-.1-.7q-.1-.2-.5-.2h-.3v-.3q0-.3.3-.5l1.5-.6.8-.3.5-.3.5-.1.3-.1.3-.1h.5l.1.2v9.8l.1.4q0 .2.3.2t.3.4q0 .2-.2.3l-.8.1Z" style=fill:#f783ac;text-wrap-mode:nowrap /><path d="M61.9 20.3q-1 0-1.6-.6-.7-.7-.7-1.7 0-1.2.7-2 .7-.7 1.8-.7 1 0 1.6.6.6.7.6 1.7 0 1.2-.7 2-.6.7-1.7.7Z" style=fill:#f06595;text-wrap-mode:nowrap /></svg></a></p>
<p id=cookie-zero><a rel="directory noopener noreferrer" target=_blank href=https://edleeman.co.uk/cookie-zero>
<img alt="Cookie Zero" loading=lazy width=234 height=30 src=https://cdn.jsdelivr.net/gh/alexzeecomedy/alexzeecomedy.github.io@main/assets/artwork/cookiezero.svg> </a>
</p>
<p><a target=_blank rel="directory noopener noreferrer" href=https://gossipsweb.net><img width=300 height=40 loading=lazy src=https://cdn.jsdelivr.net/gh/alexzeecomedy/alexzeecomedy.github.io@main/assets/artwork/twwmwh-lime.webp alt="This website was made with hands."></a></p>
<h3>
👻 Proud member of
<a href=https://darktheme.club/ rel="directory noopener noreferrer" target=_blank>darktheme.club</a>
👻
</h3>
<h3>My <a href=/pages/links>/Links page</a> is <a href=https://bukmark.club/directory/#section-A rel="directory noopener noreferrer" target=_blank>listed in the Bukmark Club directory
<img src=https://cdn.jsdelivr.net/gh/alexzeecomedy/alexzeecomedy.github.io@main/assets/artwork/button_member.png width=88 height=31 alt="Bukmark Club member" loading=lazy class=eightthree></a></h3>
<h3>
My <a href=/pages/defaults>/Defaults page</a> is
<a href=https://defaults.rknight.me/ rel="directory noopener noreferrer" target=_blank>listed in the /Defaults Directory</a>
</h3>
<h3>
My <a href=/pages/now>/Now page</a> is
<a href=https://nownownow.com/p/R8N4 rel="directory noopener noreferrer" target=_blank>listed in the nownownow.com Directory</a>
</h3>
<h3>
My <a href=https://omg.alexzeecomedy.com/now rel="directory noopener noreferrer" target=_blank>omg.lol/now page</a>
is <a href=https://now.garden/ rel="directory noopener noreferrer" target=_blank>listed in The /now Garden</a>
</h3>
<h3>
My <a href=/pages/hello>/Hello page</a> is
<a href=https://alastairjohnston.com/introducing-hello-pages/ target=_blank rel="directory noopener noreferrer">listed in the /Hello Directory</a>
</h3>
<h3>
My <a href=/pages/interests>/Interests page</a> is
<a href=https://chrisburnell.github.io/interests-directory/ target=_blank rel="directory noopener noreferrer">listed in The /interests Directory</a>
</h3>
<h3>
My <a href=/pages/ai>/AI page</a> is
<a href=https://slashai.page/ rel="directory noopener noreferrer">listed in the SlashAI.page Directory</a>
</h3>
<h3>
My <a href=/pages/uses>/Uses page</a> is
<a href=https://uses.tech/ target=_blank rel="directory noopener noreferrer">listed in the /uses Directory</a>
</h3>
<h3>
<a href=https://xclacksoverhead.org/listing/the-signal target=_blank rel="directory noopener noreferrer">X-Clacks-Overhead</a>
</h3>
<h3>Catch me "Wednesdays at 8:30pm" on <a href=https://hypertext.tv/ch/04 target=_blank rel="directory noopener noreferrer">Hypertext TV Channel 4</a></h3>
<h3><a href="https://marginalia-search.com/site/alexzeecomedy.com?view=info" target=_blank rel="noopener noreferrer">Marginalia Search</a></h3>
<h2 id=pending-club>Pending</h2>
<a href=https://www.list-me.com target=_blank rel="directory noopener noreferrer"><img src=https://cdn.jsdelivr.net/gh/alexzeecomedy/alexzeecomedy.github.io@main/assets/artwork/88x31_002.png alt="Listed @ List-Me.com" width=88 height=31 loading=lazy class=eightthree></a>
<a href=https://blue-pages.bitbucket.io target=_blank rel="directory noopener noreferrer"><img src=https://cdn.jsdelivr.net/gh/alexzeecomedy/alexzeecomedy.github.io@main/assets/artwork/88x31-animated.gif width=88 height=31 loading=lazy alt="The Blue Pages: The Internet's Old Web Directory!" class=eightthree></a>
<a href=https://smallworld.mizuki.world/ target=_blank rel="directory noopener noreferrer"><img src=https://cdn.jsdelivr.net/gh/alexzeecomedy/alexzeecomedy.github.io@main/assets/artwork/button1.png width=88 height=31 loading=lazy alt="Small World, a listing for artists of all kinds on the small web!" class=eightthree></a>
<h3>
<a href=https://blogroll.org/ target=_blank rel="directory noopener noreferrer">Ye Olde Blogroll</a>
</h3>
</details>
<details class=more-details>
<summary>Fanlistings</summary>
<h2>Joined</h2>
<a href=https://decembergirl.net/cats/ target=_blank rel="noopener noreferrer"><img src=https://cdn.jsdelivr.net/gh/alexzeecomedy/alexzeecomedy.github.io@main/assets/artwork/cats100x50_11.gif width=100 height=50 alt="Cats sticker" loading=lazy class=eightthree></a>
<a href=https://fan.leilukin.com/programming/ target=_blank rel="noopener noreferrer"><img src=https://cdn.jsdelivr.net/gh/alexzeecomedy/alexzeecomedy.github.io@main/assets/artwork/100x50-3.png width=100 height=50 alt="Programming Fan sticker" loading=lazy class=eightthree></a>
<a href=https://yaten.net/twinpeaks/ target=_blank rel="noopener noreferrer"><img src=https://cdn.jsdelivr.net/gh/alexzeecomedy/alexzeecomedy.github.io@main/assets/artwork/10050_01.png width=100 height=50 alt="Twin Peaks sticker" loading=lazy class=eightthree></a>
<a href=https://naiad.nu/70s/ target=_blank rel="noopener noreferrer"><img src=https://cdn.jsdelivr.net/gh/alexzeecomedy/alexzeecomedy.github.io@main/assets/artwork/that70s.gif width=100 height=50 alt="That 70s Show sticker" loading=lazy class=eightthree></a>
<a href=https://inspirationally.net/force/ target=_blank rel="noopener noreferrer"><img src=https://cdn.jsdelivr.net/gh/alexzeecomedy/alexzeecomedy.github.io@main/assets/artwork/feu11c.png width=100 height=50 alt="Star Wars Fan sticker" loading=lazy class=eightthree></a>
<h2>Pending</h2>
<a href=https://fans.thislove.nu/html target=_blank rel="noopener noreferrer"><img src=https://cdn.jsdelivr.net/gh/alexzeecomedy/alexzeecomedy.github.io@main/assets/artwork/html100x50_002.png width=100 height=50 alt="HTML sticker" loading=lazy class=eightthree></a>
<a href=https://fans.thislove.nu/css target=_blank rel="noopener noreferrer"><img src=https://cdn.jsdelivr.net/gh/alexzeecomedy/alexzeecomedy.github.io@main/assets/artwork/100x50_01.jpg width=100 height=50 alt="CSS sticker" loading=lazy class=eightthree></a>
<a href=https://planets.corvidae.digital/proton target=_blank rel="noopener noreferrer"><img src=https://cdn.jsdelivr.net/gh/alexzeecomedy/alexzeecomedy.github.io@main/assets/artwork/100x50.png width=100 height=50 alt="Proton Fan sticker" loading=lazy class=eightthree></a>
<a href=https://fans.thislove.nu/mozilla target=_blank rel="noopener noreferrer"><img src=https://cdn.jsdelivr.net/gh/alexzeecomedy/alexzeecomedy.github.io@main/assets/artwork/100x50_002.gif width=100 height=50 alt="Mozilla Fan sticker" loading=lazy class=eightthree></a>
<a href=https://10-31.net/fans/internet/ target=_blank rel="noopener noreferrer"><img src=https://cdn.jsdelivr.net/gh/alexzeecomedy/alexzeecomedy.github.io@main/assets/artwork/100x50-025930.png width=100 height=50 alt="Internet Fan sticker" loading=lazy class=eightthree></a>
<a href=https://fl.with-paranoia.com/iasip/ target=_blank rel="noopener noreferrer"><img src=https://cdn.jsdelivr.net/gh/alexzeecomedy/alexzeecomedy.github.io@main/assets/artwork/1005001.png width=100 height=50 alt="Always Sunny Fan sticker" loading=lazy class=eightthree></a>
</details>
<a class=button-link href=/pages/links>More /Links</a>
</article>
</article>
<footer class=about-section>
<p>Published by <a class="p-author h-card" href=https://alexzeecomedy.com>Alex Zee</a>
on <time class=dt-published datetime="2023-06-29 12:00:00">29<sup>th</sup> June 2023</time> and updated on <time class=dt-updated datetime="2026-03-23 18:00:00">23<sup>rd</sup> March, 2026</time></p>
<p><a href=/gh/alexzeecomedy.github.io/edit/main/index.html rel="noopener noreferrer" target=_blank>Edit this page <svg xmlns=http://www.w3.org/2000/svg aria-hidden=true focusable=false width=24 height=24 class="outlink white-svg" viewBox="0 0 256 256">
<path fill=none d="M0 0h256v256H0z"></path>
<path d="M216 104v8a56 56 0 0 1-48 55 40 40 0 0 1 8 25v40a8 8 0 0 1-8 8h-64a8 8 0 0 1-8-8v-16H72a40 40 0 0 1-40-40 24 24 0 0 0-24-24 8 8 0 0 1 0-16 40 40 0 0 1 40 40 24 24 0 0 0 24 24h24v-8a40 40 0 0 1 8-25 56 56 0 0 1-48-55v-8a58 58 0 0 1 8-28 60 60 0 0 1 5-48 8 8 0 0 1 7-4 60 60 0 0 1 48 24h24a60 60 0 0 1 48-24 8 8 0 0 1 7 4 60 60 0 0 1 5 48 58 58 0 0 1 8 28Z"></path>
</svg></a></p>
<p class=wr>
<a href=/ >Permalink: https://alexzeecomedy.com
<svg xmlns=http://www.w3.org/2000/svg aria-hidden=true focusable=false class="outlink pink-svg" width=24 height=24 viewBox="0 0 256 256">
<rect width=256 height=256 fill=none></rect>
<path d=M216,32H88a8,8,0,0,0-8,8V80H40a8,8,0,0,0-8,8V216a8,8,0,0,0,8,8H168a8,8,0,0,0,8-8V176h40a8,8,0,0,0,8-8V40A8,8,0,0,0,216,32Zm-8,128H176V88a8,8,0,0,0-8-8H96V48H208Z></path></svg></a>
</p>
<p>
<a href=https://z33.click>Permashortlink: https://z33.click
<svg xmlns=http://www.w3.org/2000/svg aria-hidden=true focusable=false class="outlink pink-svg" width=24 height=24 viewBox="0 0 256 256">
<rect width=256 height=256 fill=none></rect>
<path d=M216,32H88a8,8,0,0,0-8,8V80H40a8,8,0,0,0-8,8V216a8,8,0,0,0,8,8H168a8,8,0,0,0,8-8V176h40a8,8,0,0,0,8-8V40A8,8,0,0,0,216,32Zm-8,128H176V88a8,8,0,0,0-8-8H96V48H208Z></path></svg></a>
</p>
</footer>
</main>
<footer>
<nav class=bottom-nav aria-label=footer-nav>
<menu class=nav-links>
<li><a href=/pages/contact>/Contact<svg xmlns=http://www.w3.org/2000/svg aria-hidden=true focusable=false class="menulink red-svg" width=24 height=24 viewBox="0 0 256 256">
<path fill=none d="M0 0h256v256H0z"></path>