-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
thetampamonitor.WordPress.2023-02-14.xml
2382 lines (2052 loc) · 150 KB
/
thetampamonitor.WordPress.2023-02-14.xml
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
<?xml version="1.0" encoding="UTF-8" ?>
<!-- This is a WordPress eXtended RSS file generated by WordPress as an export of your site. -->
<!-- It contains information about your site's posts, pages, comments, categories, and other content. -->
<!-- You may use this file to transfer that content from one site to another. -->
<!-- This file is not intended to serve as a complete backup of your site. -->
<!-- To import this information into a WordPress site follow these steps: -->
<!-- 1. Log in to that site as an administrator. -->
<!-- 2. Go to Tools: Import in the WordPress admin panel. -->
<!-- 3. Install the "WordPress" importer from the list. -->
<!-- 4. Activate & Run Importer. -->
<!-- 5. Upload this file using the form provided on that page. -->
<!-- 6. You will first be asked to map the authors in this export file to users -->
<!-- on the site. For each author, you may choose to map to an -->
<!-- existing user on the site or to create a new user. -->
<!-- 7. WordPress will then import each of the posts, pages, comments, categories, etc. -->
<!-- contained in this file into your site. -->
<!-- generator="WordPress/6.1.1" created="2023-02-14 05:39" -->
<rss version="2.0"
xmlns:excerpt="http://wordpress.org/export/1.2/excerpt/"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:wp="http://wordpress.org/export/1.2/"
>
<channel>
<title>The Tampa Monitor</title>
<link>https://tampamonitor.com</link>
<description>Keeping an eye on the sausage factory inside city hall.</description>
<pubDate>Tue, 14 Feb 2023 05:39:05 +0000</pubDate>
<language>en-US</language>
<wp:wxr_version>1.2</wp:wxr_version>
<wp:base_site_url>https://tampamonitor.com</wp:base_site_url>
<wp:base_blog_url>https://tampamonitor.com</wp:base_blog_url>
<wp:author><wp:author_id>1</wp:author_id><wp:author_login><![CDATA[michaelb]]></wp:author_login><wp:author_email><![CDATA[howdy@michaelbishop.me]]></wp:author_email><wp:author_display_name><![CDATA[michaelb]]></wp:author_display_name><wp:author_first_name><![CDATA[]]></wp:author_first_name><wp:author_last_name><![CDATA[]]></wp:author_last_name></wp:author>
<wp:category>
<wp:term_id>9</wp:term_id>
<wp:category_nicename><![CDATA[council-regular]]></wp:category_nicename>
<wp:category_parent><![CDATA[]]></wp:category_parent>
<wp:cat_name><![CDATA[Council Regular]]></wp:cat_name>
</wp:category>
<wp:category>
<wp:term_id>7</wp:term_id>
<wp:category_nicename><![CDATA[cra]]></wp:category_nicename>
<wp:category_parent><![CDATA[]]></wp:category_parent>
<wp:cat_name><![CDATA[CRA]]></wp:cat_name>
</wp:category>
<wp:category>
<wp:term_id>8</wp:term_id>
<wp:category_nicename><![CDATA[site-news]]></wp:category_nicename>
<wp:category_parent><![CDATA[]]></wp:category_parent>
<wp:cat_name><![CDATA[Site News]]></wp:cat_name>
</wp:category>
<wp:category>
<wp:term_id>1</wp:term_id>
<wp:category_nicename><![CDATA[uncategorized]]></wp:category_nicename>
<wp:category_parent><![CDATA[]]></wp:category_parent>
<wp:cat_name><![CDATA[Uncategorized]]></wp:cat_name>
</wp:category>
<wp:term>
<wp:term_id>6</wp:term_id>
<wp:term_taxonomy><![CDATA[wp_theme]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[blockmag]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[blockmag]]></wp:term_name>
</wp:term>
<wp:term>
<wp:term_id>9</wp:term_id>
<wp:term_taxonomy><![CDATA[category]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[council-regular]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[Council Regular]]></wp:term_name>
</wp:term>
<wp:term>
<wp:term_id>7</wp:term_id>
<wp:term_taxonomy><![CDATA[category]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[cra]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[CRA]]></wp:term_name>
</wp:term>
<wp:term>
<wp:term_id>4</wp:term_id>
<wp:term_taxonomy><![CDATA[wp_template_part_area]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[footer]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[footer]]></wp:term_name>
</wp:term>
<wp:term>
<wp:term_id>3</wp:term_id>
<wp:term_taxonomy><![CDATA[wp_template_part_area]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[header]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[header]]></wp:term_name>
</wp:term>
<wp:term>
<wp:term_id>5</wp:term_id>
<wp:term_taxonomy><![CDATA[wp_theme]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[rainfall]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[rainfall]]></wp:term_name>
</wp:term>
<wp:term>
<wp:term_id>8</wp:term_id>
<wp:term_taxonomy><![CDATA[category]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[site-news]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[Site News]]></wp:term_name>
</wp:term>
<wp:term>
<wp:term_id>2</wp:term_id>
<wp:term_taxonomy><![CDATA[wp_theme]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[twentytwentythree]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[twentytwentythree]]></wp:term_name>
</wp:term>
<wp:term>
<wp:term_id>1</wp:term_id>
<wp:term_taxonomy><![CDATA[category]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[uncategorized]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[Uncategorized]]></wp:term_name>
</wp:term>
<generator>https://wordpress.org/?v=6.1.1</generator>
<image>
<url>https://tampamonitor.com/wp-content/uploads/2022/12/tampa_mural-150x150.jpg</url>
<title>The Tampa Monitor</title>
<link>https://tampamonitor.com</link>
<width>32</width>
<height>32</height>
</image>
<item>
<title><![CDATA[Privacy Policy]]></title>
<link>https://tampamonitor.com/?page_id=3</link>
<pubDate>Sun, 25 Dec 2022 02:00:08 +0000</pubDate>
<dc:creator><![CDATA[michaelb]]></dc:creator>
<guid isPermaLink="false">http://144.202.23.116/?page_id=3</guid>
<description></description>
<content:encoded><![CDATA[<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class="privacy-policy-tutorial">Suggested text: </strong>Our website address is: http://144.202.23.116.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Comments</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class="privacy-policy-tutorial">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Media</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class="privacy-policy-tutorial">Suggested text: </strong>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Cookies</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class="privacy-policy-tutorial">Suggested text: </strong>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select "Remember Me", your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Embedded content from other websites</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class="privacy-policy-tutorial">Suggested text: </strong>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Who we share your data with</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class="privacy-policy-tutorial">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>How long we retain your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class="privacy-policy-tutorial">Suggested text: </strong>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What rights you have over your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class="privacy-policy-tutorial">Suggested text: </strong>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Where we send your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class="privacy-policy-tutorial">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p><!-- /wp:paragraph -->]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>3</wp:post_id>
<wp:post_date><![CDATA[2022-12-25 02:00:08]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2022-12-25 02:00:08]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2022-12-25 02:00:08]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2022-12-25 02:00:08]]></wp:post_modified_gmt>
<wp:comment_status><![CDATA[closed]]></wp:comment_status>
<wp:ping_status><![CDATA[open]]></wp:ping_status>
<wp:post_name><![CDATA[privacy-policy]]></wp:post_name>
<wp:status><![CDATA[draft]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[page]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
<wp:meta_value><![CDATA[default]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title><![CDATA[Custom Styles]]></title>
<link>https://tampamonitor.com/2022/12/24/wp-global-styles-twentytwentythree/</link>
<pubDate>Sun, 25 Dec 2022 02:04:50 +0000</pubDate>
<dc:creator><![CDATA[michaelb]]></dc:creator>
<guid isPermaLink="false">https://tampamonitor.com/2022/12/24/wp-global-styles-twentytwentythree/</guid>
<description></description>
<content:encoded><![CDATA[{"styles":[],"isGlobalStylesUserThemeJSON":true,"version":2}]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>5</wp:post_id>
<wp:post_date><![CDATA[2022-12-24 21:04:50]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2022-12-25 02:04:50]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2023-02-10 01:34:43]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2023-02-10 06:34:43]]></wp:post_modified_gmt>
<wp:comment_status><![CDATA[closed]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[wp-global-styles-twentytwentythree]]></wp:post_name>
<wp:status><![CDATA[publish]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[wp_global_styles]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="wp_theme" nicename="twentytwentythree"><![CDATA[twentytwentythree]]></category>
</item>
<item>
<title><![CDATA[About]]></title>
<link>https://tampamonitor.com/about/</link>
<pubDate>Sun, 25 Dec 2022 03:04:41 +0000</pubDate>
<dc:creator><![CDATA[michaelb]]></dc:creator>
<guid isPermaLink="false">https://tampamonitor.com/?page_id=11</guid>
<description></description>
<content:encoded><![CDATA[<!-- wp:paragraph -->
<p>Hi, I'm <a href="https://michaelbishop.me" data-type="URL" data-id="https://michaelbishop.me">Michael Bishop</a>. Two years ago I started watching all of the City of Tampa's streamed meetings to get a lay of the land and see if I could find a place to contribute. I'm still looking for a place but in the time since I feel like there's a lack of insight into the machine that makes my hometown run. I hope to fill that gap with this site.</p>
<!-- /wp:paragraph -->
<!-- wp:heading {"fontSize":"large"} -->
<h2 class="has-large-font-size">Why did they…</h2>
<!-- /wp:heading -->
<!-- wp:paragraph -->
<p>Admit it. At least once you've seen a government project and asked why did they do it a certain way. At no other level than local do you have a better opportunity to influence how or if or where a project is implemented. But often we don't hear about it until <em>after</em> a project has been approved and funded. I hope to reduce the friction for my neighbors to learn about what our city is planning and doing while advocating for the city to make the information more accessible.</p>
<!-- /wp:paragraph -->
<!-- wp:heading {"fontSize":"large"} -->
<h2 class="has-large-font-size">But it's all there…</h2>
<!-- /wp:heading -->
<!-- wp:paragraph -->
<p>It's great that we have a <a href="https://www.youtube.com/@cityoftampameetings5380">video archive </a>of all Council, Community Revitalization Agency, Variance Review Board, Architectural Review, and Barrio Latino meetings. There are also <a href="https://apps.tampagov.net/cttv_cc_webapp/">transcripts</a> for each meeting generated from the closed captioning. Finally we have the <a href="https://atg.tampagov.net/sirepub/meetresults.aspx">agendas</a> currently housed in SIRE with links to relevant documents for each item. SIRE a third party software that was end-of-lifed December of 2021. The city is in the process of migrating to a digital document platform from the same vendor that provided SIRE. We also have plenty of <a href="https://city-tampa.opendata.arcgis.com">open data</a> on the GIS side of the equation. Finally there is <a href="https://aca-prod.accela.com/TAMPA/Default.aspx">Accela</a>, also recently the topic of conversation at City Council as to its user experience for the public.</p>
<!-- /wp:paragraph -->
<!-- wp:heading {"fontSize":"large"} -->
<h2 class="has-large-font-size">What if…?</h2>
<!-- /wp:heading -->
<!-- wp:paragraph -->
<p>All of this was in one place? Yeah, what if. Until then, that's the gap I hope to fill in hopes of helping educate my neighbors not only on the week to week decisions of council but how to advocate for issues that are important to them and their neighborhood.</p>
<!-- /wp:paragraph -->
<!-- wp:heading {"fontSize":"large"} -->
<h2 class="has-large-font-size">Is it free?</h2>
<!-- /wp:heading -->
<!-- wp:paragraph -->
<p>Yeah, I'm not trying to build a subscription model, at least not at this time. I don't even know if anyone will find this useful. I do intend to add a "buy me a coffee" tip button. I'm also available for web consulting, custom digital map development and slide deck preparation. Drop me an email at <a href="mailto:michael@webjanitor.consulting">michael@webjanitor.consulting</a> if you'd like to discuss a project.</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p></p>
<!-- /wp:paragraph -->]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>11</wp:post_id>
<wp:post_date><![CDATA[2022-12-24 22:04:41]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2022-12-25 03:04:41]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2023-02-10 00:03:00]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2023-02-10 05:03:00]]></wp:post_modified_gmt>
<wp:comment_status><![CDATA[closed]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[about]]></wp:post_name>
<wp:status><![CDATA[publish]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[page]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
</item>
<item>
<title><![CDATA[tampa_mural]]></title>
<link>https://tampamonitor.com/tampa_mural/</link>
<pubDate>Sun, 25 Dec 2022 03:47:34 +0000</pubDate>
<dc:creator><![CDATA[michaelb]]></dc:creator>
<guid isPermaLink="false">https://tampamonitor.com/wp-content/uploads/2022/12/tampa_mural.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>25</wp:post_id>
<wp:post_date><![CDATA[2022-12-24 22:47:34]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2022-12-25 03:47:34]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2022-12-24 22:48:34]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2022-12-25 03:48:34]]></wp:post_modified_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[tampa_mural]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[https://tampamonitor.com/wp-content/uploads/2022/12/tampa_mural.jpg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2022/12/tampa_mural.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";i:800;s:6:"height";i:495;s:4:"file";s:23:"2022/12/tampa_mural.jpg";s:8:"filesize";i:80772;s:5:"sizes";a:3:{s:6:"medium";a:5:{s:4:"file";s:23:"tampa_mural-300x186.jpg";s:5:"width";i:300;s:6:"height";i:186;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:18464;}s:9:"thumbnail";a:5:{s:4:"file";s:23:"tampa_mural-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:8466;}s:12:"medium_large";a:5:{s:4:"file";s:23:"tampa_mural-768x475.jpg";s:5:"width";i:768;s:6:"height";i:475;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:80969;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_image_alt]]></wp:meta_key>
<wp:meta_value><![CDATA[Mural in style of vintage postcard with each letter of word Tampa having different images.]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title><![CDATA[Custom Styles]]></title>
<link>https://tampamonitor.com/2022/12/25/wp-global-styles-rainfall/</link>
<pubDate>Sun, 25 Dec 2022 05:16:50 +0000</pubDate>
<dc:creator><![CDATA[michaelb]]></dc:creator>
<guid isPermaLink="false">https://tampamonitor.com/2022/12/25/wp-global-styles-rainfall/</guid>
<description></description>
<content:encoded><![CDATA[{"version": 2, "isGlobalStylesUserThemeJSON": true }]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>28</wp:post_id>
<wp:post_date><![CDATA[2022-12-25 00:16:50]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2022-12-25 05:16:50]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2022-12-25 00:16:50]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2022-12-25 05:16:50]]></wp:post_modified_gmt>
<wp:comment_status><![CDATA[closed]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[wp-global-styles-rainfall]]></wp:post_name>
<wp:status><![CDATA[publish]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[wp_global_styles]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="wp_theme" nicename="rainfall"><![CDATA[rainfall]]></category>
</item>
<item>
<title><![CDATA[Custom Styles]]></title>
<link>https://tampamonitor.com/2023/02/09/wp-global-styles-blockmag/</link>
<pubDate>Thu, 09 Feb 2023 23:43:57 +0000</pubDate>
<dc:creator><![CDATA[michaelb]]></dc:creator>
<guid isPermaLink="false">https://tampamonitor.com/2023/02/09/wp-global-styles-blockmag/</guid>
<description></description>
<content:encoded><![CDATA[{"version": 2, "isGlobalStylesUserThemeJSON": true }]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>34</wp:post_id>
<wp:post_date><![CDATA[2023-02-09 18:43:57]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2023-02-09 23:43:57]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2023-02-09 18:43:57]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2023-02-09 23:43:57]]></wp:post_modified_gmt>
<wp:comment_status><![CDATA[closed]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[wp-global-styles-blockmag]]></wp:post_name>
<wp:status><![CDATA[publish]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[wp_global_styles]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="wp_theme" nicename="blockmag"><![CDATA[blockmag]]></category>
</item>
<item>
<title><![CDATA[Tampa CRA 02-09-23]]></title>
<link>https://tampamonitor.com/?p=36</link>
<pubDate>Fri, 10 Feb 2023 19:51:13 +0000</pubDate>
<dc:creator><![CDATA[michaelb]]></dc:creator>
<guid isPermaLink="false">https://tampamonitor.com/?p=36</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>36</wp:post_id>
<wp:post_date><![CDATA[2023-02-10 14:51:13]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2023-02-10 19:51:13]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2023-02-10 14:51:13]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2023-02-10 19:51:13]]></wp:post_modified_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[open]]></wp:ping_status>
<wp:post_name><![CDATA[__trashed]]></wp:post_name>
<wp:status><![CDATA[trash]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[post]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_trash_meta_status]]></wp:meta_key>
<wp:meta_value><![CDATA[draft]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_trash_meta_time]]></wp:meta_key>
<wp:meta_value><![CDATA[1676058673]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_desired_post_slug]]></wp:meta_key>
<wp:meta_value><![CDATA[]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title><![CDATA[Tampa CRA 02-09-23]]></title>
<link>https://tampamonitor.com/2023/02/09/tampa-cra-02-09-23/</link>
<pubDate>Fri, 10 Feb 2023 00:45:35 +0000</pubDate>
<dc:creator><![CDATA[michaelb]]></dc:creator>
<guid isPermaLink="false">https://tampamonitor.com/?p=38</guid>
<description></description>
<content:encoded><![CDATA[<!-- wp:embed {"url":"https://www.youtube.com/watch?v=tPH3jjaOeP4","type":"video","providerNameSlug":"youtube","responsive":true,"className":"wp-embed-aspect-16-9 wp-has-aspect-ratio"} -->
<figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
https://www.youtube.com/watch?v=tPH3jjaOeP4
</div><figcaption class="wp-element-caption">Tampa Community Revitalization Agency February 09, 2023</figcaption></figure>
<!-- /wp:embed -->
<!-- wp:heading -->
<h2>Agenda</h2>
<!-- /wp:heading -->
<!-- wp:paragraph -->
<p><a href="https://atg.tampagov.net/sirepub/mtgviewer.aspx?meetid=7057&doctype=AGENDA">Original document</a> including links to supporting documents. Note, Agenda item number links to the section of the meeting for that item on Youtube.</p>
<!-- /wp:paragraph -->
<!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|30","right":"var:preset|spacing|30","bottom":"var:preset|spacing|30","left":"var:preset|spacing|30"}}},"backgroundColor":"tertiary","layout":{"type":"constrained"}} -->
<div class="wp-block-group has-tertiary-background-color has-background" style="padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)"><!-- wp:paragraph {"fontSize":"large"} -->
<p class="has-large-font-size">1</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>Current Channelside CAC Chair, Kimberlee Curtis to appear and provide a verbal report outlining activities and/or concerns of said CAC.</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph {"fontSize":"small"} -->
<p class="has-small-font-size"><em>(Original Motion, requesting said monthly report, initiated by Saul-Sena/Miranda on December 11, 2008</em>)</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p><strong>Continued until 3-9-23</strong></p>
<!-- /wp:paragraph --></div>
<!-- /wp:group -->
<!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|30","right":"var:preset|spacing|30","bottom":"var:preset|spacing|30","left":"var:preset|spacing|30"}}},"backgroundColor":"tertiary","layout":{"type":"constrained"}} -->
<div class="wp-block-group has-tertiary-background-color has-background" style="padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)"><!-- wp:paragraph {"fontSize":"large"} -->
<p class="has-large-font-size">2</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>CRA Director's Monthly Report</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph {"fontSize":"small"} -->
<p class="has-small-font-size"><em>(Original motion initiated by Gudes-Miranda on January 12, 2023)</em></p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p><strong>Continued until 3-9-23</strong></p>
<!-- /wp:paragraph --></div>
<!-- /wp:group -->
<!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|30","right":"var:preset|spacing|30","bottom":"var:preset|spacing|30","left":"var:preset|spacing|30"}}},"backgroundColor":"tertiary","layout":{"type":"constrained"}} -->
<div class="wp-block-group has-tertiary-background-color has-background" style="padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)"><!-- wp:paragraph {"fontSize":"large"} -->
<p class="has-large-font-size"><a href="https://youtu.be/tPH3jjaOeP4?t=3315">3</a></p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>Staff to appear and provide a report on utilizing CRA funding to make parks more accessible for those with disabilities.</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph {"fontSize":"small"} -->
<p class="has-small-font-size"><em>(Original motion initiated by Viera-Maniscalco on August 18, 2022)</em></p>
<!-- /wp:paragraph -->
<!-- wp:heading {"fontSize":"large"} -->
<h2 class="has-large-font-size">Notes</h2>
<!-- /wp:heading -->
<!-- wp:paragraph -->
<p>Item 3 regarding ADA compliance and accessibility is one of those items that generally goes unnoticed but is a big step for this city. Parks & Rec director Sherisha Hills makes an important point that while our city parks are ADA compliant by state standards, that doesn't make them accessible. Prior to this plan, the city was looking at a 13 year timeline to get all of our parks accessible. This CRA funding will reduce that to 6 years and includes inclusive playground equipment.</p>
<!-- /wp:paragraph --></div>
<!-- /wp:group -->
<!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|30","right":"var:preset|spacing|30","bottom":"var:preset|spacing|30","left":"var:preset|spacing|30"}}},"backgroundColor":"tertiary","layout":{"type":"constrained"}} -->
<div class="wp-block-group has-tertiary-background-color has-background" style="padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)"><!-- wp:paragraph {"fontSize":"large"} -->
<p class="has-large-font-size"><a href="https://youtu.be/tPH3jjaOeP4?t=4050">4</a></p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>Nicole Travis, Administrator for Development and Economic Opportunity and Interim CRA Director, to report on recommendations on structuring and budgeting staff; further, that Staff to present a recommended structure, that includes the staffing that is needed when housing dollars are added, and address budgeting and staffing issues to implement the type of programs that are being requested by the CRA. In addition, look at the governance of the CACs, and how that structure works and how the board can gain efficiencies.</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph {"fontSize":"small"} -->
<p class="has-small-font-size"><em>(Original motion initiated by Carlson-Miranda on September 8, 2022)(Continued with a revised motion from December 8, 2022)</em></p>
<!-- /wp:paragraph -->
<!-- wp:heading {"fontSize":"large"} -->
<h2 class="has-large-font-size">Notes</h2>
<!-- /wp:heading -->
<!-- wp:paragraph -->
<p>Item 4 is an even more under the radar discussion about the mechanics of how the city's CRA department is organized and operates. Acting Director Nicole Travis outlines the inefficiencies of running each district in a silo and has developed a plan to break out of the silos, bring all of the staff under one roof and play to the strengths of our current staff by aligning them with roles best suited for their experience, versus the current system where a couple of staff members must wear multiple hats for the district they work within. A retreat with the incoming CRA board was scheduled for June 8th so there's going to be a bit of suspense as to whether the incoming board furthers or changes this discussion.</p>
<!-- /wp:paragraph --></div>
<!-- /wp:group -->
<!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|30","right":"var:preset|spacing|30","bottom":"var:preset|spacing|30","left":"var:preset|spacing|30"}}},"backgroundColor":"tertiary","layout":{"type":"constrained"}} -->
<div class="wp-block-group has-tertiary-background-color has-background" style="padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)"><!-- wp:paragraph {"fontSize":"large"} -->
<p class="has-large-font-size">5</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>CRA Staff to appear and provide an update on possible adjustments to the recruitment and activity possibilities to the East Tampa Summer Youth Employment Program development and compare to other CRA’s programs.</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph {"fontSize":"small"} -->
<p class="has-small-font-size"><em>(Original motion initiated by Hurtak-Citro on May 12, 2022)(Motion for update initiated by Gudes-Miranda on September 8, 2022) (Continued from December 8, 2022)</em></p>
<!-- /wp:paragraph -->
<!-- wp:heading {"fontSize":"large"} -->
<h2 class="has-large-font-size">Notes</h2>
<!-- /wp:heading -->
<!-- wp:paragraph -->
<p>Memorandum from Alis Drumgo, Deputy Administrator of Development and Economic Opportunity, requesting that said agenda item be continued to March 9, 2023. (To be R/F)</p>
<!-- /wp:paragraph --></div>
<!-- /wp:group -->
<!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|30","right":"var:preset|spacing|30","bottom":"var:preset|spacing|30","left":"var:preset|spacing|30"}}},"backgroundColor":"tertiary","layout":{"type":"constrained"}} -->
<div class="wp-block-group has-tertiary-background-color has-background" style="padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)"><!-- wp:paragraph {"fontSize":"large"} -->
<p class="has-large-font-size">6</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>CRA staff to come back with a proposed planned outline, budget and draft agreement between CRA and the Tampa Theatre.</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph {"fontSize":"small"} -->
<p class="has-small-font-size"><em>(Update motion initiated by Carlson-Miranda on January 12, 2023)</em></p>
<!-- /wp:paragraph -->
<!-- wp:heading {"fontSize":"large"} -->
<h2 class="has-large-font-size">Notes</h2>
<!-- /wp:heading -->
<!-- wp:paragraph -->
<p>Continued to March 9, 2023.</p>
<!-- /wp:paragraph --></div>
<!-- /wp:group -->
<!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|30","right":"var:preset|spacing|30","bottom":"var:preset|spacing|30","left":"var:preset|spacing|30"}}},"backgroundColor":"tertiary","layout":{"type":"constrained"}} -->
<div class="wp-block-group has-tertiary-background-color has-background" style="padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)"><!-- wp:paragraph {"fontSize":"large"} -->
<p class="has-large-font-size">7</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>Be Parks, CRA Communications and Project Coordinator, to speak on Branding and Marketing.</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph {"fontSize":"small"} -->
<p class="has-small-font-size"><em>(Original motion initiated by Miranda-Gudes on January 12, 2023)</em></p>
<!-- /wp:paragraph -->
<!-- wp:heading {"fontSize":"large"} -->
<h2 class="has-large-font-size">Notes</h2>
<!-- /wp:heading -->
<!-- wp:paragraph -->
<p>The final item is centered around branding for the CRA and the board feedback is a perfect example of what I learned in web development as "bike shedding", best described as <a href="https://en.wikipedia.org/wiki/Law_of_triviality">Parkinson's law of triviality</a>. The real issue is that each district in the CRA has run like its own entity with proposals from CACs for spending up to $100,000 for branding and marketing for just that area. Normalizing the branding seems fitting in conjunction with the discussion from item 4 on restructuring the CRA in the manner proposed.</p>
<!-- /wp:paragraph --></div>
<!-- /wp:group -->
<!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|30","right":"var:preset|spacing|30","bottom":"var:preset|spacing|30","left":"var:preset|spacing|30"}}},"backgroundColor":"tertiary","layout":{"type":"constrained"}} -->
<div class="wp-block-group has-tertiary-background-color has-background" style="padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)"><!-- wp:paragraph {"fontSize":"large"} -->
<p class="has-large-font-size">8</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p><br>Community Redevelopment Agency Staff, to provide a monthly report of CRA staff activities.</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph {"fontSize":"small"} -->
<p class="has-small-font-size"><em>(Original motion, requesting said monthly report, initiated by Saul-Sena/Mulhern on December 11, 2008.) (Amended motion to change reports to bi-monthly initiated by Maniscalco-Carlson on September 08, 2022.)</em></p>
<!-- /wp:paragraph -->
<!-- wp:heading {"fontSize":"large"} -->
<h2 class="has-large-font-size">Notes</h2>
<!-- /wp:heading -->
<!-- wp:paragraph -->
<p>Continued until 4-13-23</p>
<!-- /wp:paragraph --></div>
<!-- /wp:group -->
<!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|30","right":"var:preset|spacing|30","bottom":"var:preset|spacing|30","left":"var:preset|spacing|30"}}},"backgroundColor":"tertiary","layout":{"type":"constrained"}} -->
<div class="wp-block-group has-tertiary-background-color has-background" style="padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)"><!-- wp:paragraph {"fontSize":"large"} -->
<p class="has-large-font-size"><a href="https://youtu.be/tPH3jjaOeP4?t=3016">9</a></p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p><br>Historic East Ybor and Gary Neighborhood Association (HEYGNA) Ybor City CAC Appointment.</p>
<!-- /wp:paragraph --></div>
<!-- /wp:group -->
<!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|30","right":"var:preset|spacing|30","bottom":"var:preset|spacing|30","left":"var:preset|spacing|30"}}},"backgroundColor":"tertiary","layout":{"type":"constrained"}} -->
<div class="wp-block-group has-tertiary-background-color has-background" style="padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)"><!-- wp:paragraph {"fontSize":"large"} -->
<p class="has-large-font-size"><a href="https://youtu.be/tPH3jjaOeP4?t=3053">10</a></p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p><br>West Tampa CRA Community Advisory Committee Appointment.</p>
<!-- /wp:paragraph --></div>
<!-- /wp:group -->
<!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|30","right":"var:preset|spacing|30","bottom":"var:preset|spacing|30","left":"var:preset|spacing|30"}}},"backgroundColor":"tertiary","layout":{"type":"constrained"}} -->
<div class="wp-block-group has-tertiary-background-color has-background" style="padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)"><!-- wp:paragraph {"fontSize":"large"} -->
<p class="has-large-font-size">11</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>Agreement for Design-Build Services with Phinazee Construction Consulting Services, Inc. (the Design-Build firm) for the redevelopment of Salcines Park which is located at the northeast corner of West Main Street and North Howard Avenue.</p>
<!-- /wp:paragraph -->
<!-- wp:heading {"fontSize":"large"} -->
<h2 class="has-large-font-size">Notes</h2>
<!-- /wp:heading -->
<!-- wp:paragraph -->
<p>Removed from agenda and added to Council 3-16-23 meeting agenda.</p>
<!-- /wp:paragraph --></div>
<!-- /wp:group -->
<!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|30","right":"var:preset|spacing|30","bottom":"var:preset|spacing|30","left":"var:preset|spacing|30"}}},"backgroundColor":"tertiary","layout":{"type":"constrained"}} -->
<div class="wp-block-group has-tertiary-background-color has-background" style="padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)"><!-- wp:paragraph {"fontSize":"large"} -->
<p class="has-large-font-size"><a href="https://youtu.be/tPH3jjaOeP4?t=3078">12</a></p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>Resolution of the Community Redevelopment Agency of the City of Tampa, Florida, approving a Community Redevelopment Agency Grant Funding Agreement for construction/rehabilitation by and between said Community Redevelopment Agency (“CRA”) and Health Matters Pharmacy West, LLC (“Grant Recipient”); providing for a grant not to exceed $350,000 from the CRA to the grant recipient as reimbursement for hard construction costs arising from the construction/rehabilitation of a health care and wellness facility including pharmacy services on property located at 5110 North 40th Street within the East Tampa Community Redevelopment Area; authorizing execution of said Community Redevelopment Grant Funding Agreement by the Chair of the CRA and attestation by the CRA Secretary; providing an effective date.</p>
<!-- /wp:paragraph --></div>
<!-- /wp:group -->
<!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|30","right":"var:preset|spacing|30","bottom":"var:preset|spacing|30","left":"var:preset|spacing|30"}}},"backgroundColor":"tertiary","layout":{"type":"constrained"}} -->
<div class="wp-block-group has-tertiary-background-color has-background" style="padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)"><!-- wp:paragraph {"fontSize":"large"} -->
<p class="has-large-font-size"><a href="https://youtu.be/tPH3jjaOeP4?t=3190">13</a></p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>Resolution of the Community Redevelopment Agency of the City of Tampa, Florida, approving a Community Redevelopment Agency Grant Funding Agreement for construction by and between said Community Redevelopment Agency (“CRA”) and The Skills Center, Inc., The Skills Center Group, Inc., and the Skills Center Holdings, LLC (collectively, the “Grant Recipients”); providing for a grant not to exceed $500,000 from the CRA to the Grant Recipients as reimbursement for hard construction costs arising from the construction of a community center for purposes of skills, job and vocational training, community services and related programs and services located at 5107 North 22nd Street and 2502 East Wilder Avenue within the East Tampa Community Redevelopment Area; authorizing execution of said Community Redevelopment Grant Funding Agreement by the Chair of the CRA and attestation by the CRA Secretary; providing an effective date.</p>
<!-- /wp:paragraph --></div>
<!-- /wp:group -->
<!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|30","right":"var:preset|spacing|30","bottom":"var:preset|spacing|30","left":"var:preset|spacing|30"}}},"backgroundColor":"tertiary","layout":{"type":"constrained"}} -->
<div class="wp-block-group has-tertiary-background-color has-background" style="padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)"><!-- wp:paragraph {"fontSize":"large"} -->
<p class="has-large-font-size"><a href="https://youtu.be/tPH3jjaOeP4?t=3240">14</a></p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>Resolution approving a Façade Grant not to exceed $26,048.00 and execution of a Grant Agreement including a Notice of Facade Grant Agreement and Restrictive Covenants between the Community Redevelopment Agency of the City of Tampa, Florida, and Ybor Bungalow Adventure, LLC, to fund façade improvements on property located at 2208 East 2nd Avenue, Tampa, Florida; approving the subordination of the restrictive covenants created thereby under specified circumstances; providing an effective date.</p>
<!-- /wp:paragraph --></div>
<!-- /wp:group -->
<!-- wp:heading {"fontSize":"large"} -->
<h2 class="has-large-font-size">Notes</h2>
<!-- /wp:heading -->
<!-- wp:paragraph -->
<p>Items 9, 10, 12, 13 and 14 require action by the CRA Board and were heard first.</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>Public comments focused primarily on the issue with Memorial Cemetery and its sale.</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>Full<a href="https://apps.tampagov.net/cttv_cc_webapp/Agenda.aspx?pkey=2455"> transcript</a>.</p>
<!-- /wp:paragraph -->]]></content:encoded>
<excerpt:encoded><![CDATA[Recording and Agenda for Tampa Community Redevelopment Agency meeting February 09. 2023 with notes.]]></excerpt:encoded>
<wp:post_id>38</wp:post_id>
<wp:post_date><![CDATA[2023-02-09 19:45:35]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2023-02-10 00:45:35]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2023-02-13 14:47:52]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2023-02-13 19:47:52]]></wp:post_modified_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[open]]></wp:ping_status>
<wp:post_name><![CDATA[tampa-cra-02-09-23]]></wp:post_name>
<wp:status><![CDATA[publish]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[post]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="cra"><![CDATA[CRA]]></category>
<wp:postmeta>
<wp:meta_key><![CDATA[_oembed_fa71f5ff9917e695437c6537c7dc0916]]></wp:meta_key>
<wp:meta_value><![CDATA[<iframe title="CRA 2/9/23" width="500" height="281" src="https://www.youtube.com/embed/tPH3jjaOeP4?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_oembed_time_fa71f5ff9917e695437c6537c7dc0916]]></wp:meta_key>
<wp:meta_value><![CDATA[1676089357]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
<wp:meta_value><![CDATA[44]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_oembed_080a0a94b1eb6e53234065d7206522ed]]></wp:meta_key>
<wp:meta_value><![CDATA[<iframe title="CRA 2/9/23" width="660" height="371" src="https://www.youtube.com/embed/tPH3jjaOeP4?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_oembed_time_080a0a94b1eb6e53234065d7206522ed]]></wp:meta_key>
<wp:meta_value><![CDATA[1676008770]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
<wp:meta_value><![CDATA[1]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title><![CDATA[CRA]]></title>
<link>https://tampamonitor.com/2023/02/09/tampa-cra-02-09-23/cra-2/</link>
<pubDate>Fri, 10 Feb 2023 00:57:07 +0000</pubDate>
<dc:creator><![CDATA[michaelb]]></dc:creator>
<guid isPermaLink="false">https://tampamonitor.com/wp-content/uploads/2023/02/CRA.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>44</wp:post_id>
<wp:post_date><![CDATA[2023-02-09 19:57:07]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2023-02-10 00:57:07]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2023-02-09 19:57:07]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2023-02-10 00:57:07]]></wp:post_modified_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[cra-2]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>38</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[https://tampamonitor.com/wp-content/uploads/2023/02/CRA.jpg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2023/02/CRA.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";i:1300;s:6:"height";i:980;s:4:"file";s:15:"2023/02/CRA.jpg";s:8:"filesize";i:244831;s:5:"sizes";a:4:{s:6:"medium";a:5:{s:4:"file";s:15:"CRA-300x226.jpg";s:5:"width";i:300;s:6:"height";i:226;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:19759;}s:5:"large";a:5:{s:4:"file";s:16:"CRA-1024x772.jpg";s:5:"width";i:1024;s:6:"height";i:772;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:104944;}s:9:"thumbnail";a:5:{s:4:"file";s:15:"CRA-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:11754;}s:12:"medium_large";a:5:{s:4:"file";s:15:"CRA-768x579.jpg";s:5:"width";i:768;s:6:"height";i:579;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:68437;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title><![CDATA[Quiet Kick Off]]></title>
<link>https://tampamonitor.com/2023/02/09/quiet-kick-off/</link>
<pubDate>Fri, 10 Feb 2023 01:10:01 +0000</pubDate>
<dc:creator><![CDATA[michaelb]]></dc:creator>
<guid isPermaLink="false">https://tampamonitor.com/?p=47</guid>
<description></description>
<content:encoded><![CDATA[<!-- wp:paragraph -->
<p>I'm going to give this a go and am beginning with the week of February 7, 2023 (current week) and will back fill January as I move forward. My goal with Meeting Notes is to not editorialize and leave that to blog posts which can link to one or more meetings with associated agenda and notes.</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>I will be honest, I do not have high hopes for what ever is replacing SIRE however I'm holding out hope. Having the agenda condensed to just the item numbers along with the embedded meeting I'm hoping to encourage more people to watch the meetings themselves. I'll probably experiment with grabbing timestamp links for each agenda item so if you're really only interested in a particular item, you can easily access that point of the meeting. Experiment because I haven't used web controls on Youtube in quite some time, I mostly stream from the Apple TV. That's about to change.</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>I am on the fence about comments and am considering opening them up. With my exit from social media platforms it feels there could be a place for constructive conversations about the process more so than a particular agenda item.</p>
<!-- /wp:paragraph -->]]></content:encoded>
<excerpt:encoded><![CDATA[Hello world. An initial note from the editor as the gears start moving.]]></excerpt:encoded>
<wp:post_id>47</wp:post_id>
<wp:post_date><![CDATA[2023-02-09 20:10:01]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2023-02-10 01:10:01]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2023-02-10 23:24:08]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2023-02-11 04:24:08]]></wp:post_modified_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[open]]></wp:ping_status>
<wp:post_name><![CDATA[quiet-kick-off]]></wp:post_name>
<wp:status><![CDATA[publish]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[post]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="site-news"><![CDATA[Site News]]></category>
<wp:postmeta>
<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
<wp:meta_value><![CDATA[62]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title><![CDATA[Tampa Future Land Use Map]]></title>
<link>https://tampamonitor.com/tampa-future-land-use-map/</link>
<pubDate>Fri, 10 Feb 2023 04:05:36 +0000</pubDate>
<dc:creator><![CDATA[michaelb]]></dc:creator>
<guid isPermaLink="false">https://tampamonitor.com/?page_id=56</guid>
<description></description>
<content:encoded><![CDATA[<!-- wp:paragraph -->
<p>The city has a great collection of GIS data however they do not have a Future Land Use map as that's mainly Hillsborough Planning Commission. I've cobbled together a quick map that still needs a legend to be of any use and I plan on adding the ability to toggle between current zoning and FLU, something I also do not believe exists but I have seen use cases for it during city council meetings.</p>
<!-- /wp:paragraph -->
<!-- wp:group {"layout":{"type":"constrained"}} -->
<div class="wp-block-group"><!-- wp:html -->
<iframe width="100%" height="400px" src="https://api.mapbox.com/styles/v1/miklb/cl9llj1he000014mzuqy5q2kk.html?title=false&access_token=pk.eyJ1IjoibWlrbGIiLCJhIjoiY2lvMHdva3EyMTl4eHU2bHlidjliazNidSJ9.pZrw_roD2lO_F89wTNRntg&zoomwheel=false#13.16/27.94173/-82.47171/348.8/42" title="Monochrome" style="border:none;"></iframe>
<!-- /wp:html --></div>
<!-- /wp:group -->]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>56</wp:post_id>
<wp:post_date><![CDATA[2023-02-09 23:05:36]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2023-02-10 04:05:36]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2023-02-09 23:06:46]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2023-02-10 04:06:46]]></wp:post_modified_gmt>
<wp:comment_status><![CDATA[closed]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[tampa-future-land-use-map]]></wp:post_name>
<wp:status><![CDATA[publish]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[page]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:postmeta>
<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
<wp:meta_value><![CDATA[57]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title><![CDATA[future_land_use]]></title>
<link>https://tampamonitor.com/tampa-future-land-use-map/future_land_use/</link>
<pubDate>Fri, 10 Feb 2023 04:02:40 +0000</pubDate>
<dc:creator><![CDATA[michaelb]]></dc:creator>
<guid isPermaLink="false">https://tampamonitor.com/wp-content/uploads/2023/02/future_land_use.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>57</wp:post_id>
<wp:post_date><![CDATA[2023-02-09 23:02:40]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2023-02-10 04:02:40]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2023-02-09 23:02:40]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2023-02-10 04:02:40]]></wp:post_modified_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[future_land_use]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>56</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[https://tampamonitor.com/wp-content/uploads/2023/02/future_land_use-jpg.webp]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2023/02/future_land_use-jpg.webp]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:10:{s:5:"width";i:804;s:6:"height";i:812;s:4:"file";s:32:"2023/02/future_land_use-jpg.webp";s:8:"filesize";i:112474;s:5:"sizes";a:3:{s:6:"medium";a:6:{s:4:"file";s:28:"future_land_use-297x300.webp";s:5:"width";i:297;s:6:"height";i:300;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:26272;s:7:"sources";a:1:{s:10:"image/webp";a:2:{s:4:"file";s:28:"future_land_use-297x300.webp";s:8:"filesize";i:26272;}}}s:9:"thumbnail";a:6:{s:4:"file";s:28:"future_land_use-150x150.webp";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:13070;s:7:"sources";a:1:{s:10:"image/webp";a:2:{s:4:"file";s:28:"future_land_use-150x150.webp";s:8:"filesize";i:13070;}}}s:12:"medium_large";a:6:{s:4:"file";s:28:"future_land_use-768x776.webp";s:5:"width";i:768;s:6:"height";i:776;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:90366;s:7:"sources";a:1:{s:10:"image/webp";a:2:{s:4:"file";s:28:"future_land_use-768x776.webp";s:8:"filesize";i:90366;}}}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}s:14:"dominant_color";s:6:"c4b8b0";s:16:"has_transparency";b:0;s:7:"sources";a:1:{s:10:"image/webp";a:2:{s:4:"file";s:24:"future_land_use-jpg.webp";s:8:"filesize";i:112474;}}s:14:"original_image";s:19:"future_land_use.jpg";}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title><![CDATA[keyboard_typing]]></title>
<link>https://tampamonitor.com/2023/02/09/quiet-kick-off/keyboard_typing/</link>
<pubDate>Fri, 10 Feb 2023 04:19:24 +0000</pubDate>
<dc:creator><![CDATA[michaelb]]></dc:creator>
<guid isPermaLink="false">https://tampamonitor.com/wp-content/uploads/2023/02/keyboard_typing.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>62</wp:post_id>
<wp:post_date><![CDATA[2023-02-09 23:19:24]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2023-02-10 04:19:24]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2023-02-09 23:20:33]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2023-02-10 04:20:33]]></wp:post_modified_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[keyboard_typing]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>47</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[https://tampamonitor.com/wp-content/uploads/2023/02/keyboard_typing-jpg.webp]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2023/02/keyboard_typing-jpg.webp]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:10:{s:5:"width";i:1154;s:6:"height";i:1132;s:4:"file";s:32:"2023/02/keyboard_typing-jpg.webp";s:8:"filesize";i:175932;s:5:"sizes";a:4:{s:6:"medium";a:6:{s:4:"file";s:28:"keyboard_typing-300x294.webp";s:5:"width";i:300;s:6:"height";i:294;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:30302;s:7:"sources";a:1:{s:10:"image/webp";a:2:{s:4:"file";s:28:"keyboard_typing-300x294.webp";s:8:"filesize";i:30302;}}}s:5:"large";a:6:{s:4:"file";s:30:"keyboard_typing-1024x1004.webp";s:5:"width";i:1024;s:6:"height";i:1004;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:135704;s:7:"sources";a:1:{s:10:"image/webp";a:2:{s:4:"file";s:30:"keyboard_typing-1024x1004.webp";s:8:"filesize";i:135704;}}}s:9:"thumbnail";a:6:{s:4:"file";s:28:"keyboard_typing-150x150.webp";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:15132;s:7:"sources";a:1:{s:10:"image/webp";a:2:{s:4:"file";s:28:"keyboard_typing-150x150.webp";s:8:"filesize";i:15132;}}}s:12:"medium_large";a:6:{s:4:"file";s:28:"keyboard_typing-768x753.webp";s:5:"width";i:768;s:6:"height";i:753;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:95990;s:7:"sources";a:1:{s:10:"image/webp";a:2:{s:4:"file";s:28:"keyboard_typing-768x753.webp";s:8:"filesize";i:95990;}}}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}s:14:"dominant_color";s:6:"b3b3b3";s:16:"has_transparency";b:0;s:7:"sources";a:1:{s:10:"image/webp";a:2:{s:4:"file";s:24:"keyboard_typing-jpg.webp";s:8:"filesize";i:175932;}}s:14:"original_image";s:19:"keyboard_typing.jpg";}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_image_alt]]></wp:meta_key>
<wp:meta_value><![CDATA[Line sketch of hands typing on keyboard.]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title><![CDATA[The Machine]]></title>
<link>https://tampamonitor.com/the-machine/</link>
<pubDate>Fri, 10 Feb 2023 07:19:19 +0000</pubDate>
<dc:creator><![CDATA[michaelb]]></dc:creator>
<guid isPermaLink="false">https://tampamonitor.com/?page_id=77</guid>
<description></description>
<content:encoded><![CDATA[<!-- wp:paragraph -->
<p><em>How exactly is the sausage made?</em></p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>Tampa has an elected mayor and seven member city council serving four year terms. Currently they are elected in off years with an upcoming election March 7, 2023. 3 members of the council are city wide (at-large) while the remaining four are by district. District 4, South Tampa, District 5 encompasses downtown, Ybor and East Tampa. District 6 West Tampa and Seminole Heights and District 7 North Tampa. The mayor sets the priorities for the city and manages the <strong>how</strong>. Council must approve the mayors budget and individual expenditures. Council can also modify the <a href="https://library.municode.com/fl/tampa/codes/code_of_ordinances">municipal code</a> by passing ordinances. The mayor may veto an ordinance with council given the opportunity to override the veto with a supermajority (five or more votes.)</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>Council may also pass resolutions which are about as worthless as the paper they are written on but is used to show support on an issue.</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>Council is also key to development and land use in Tampa serving as a "quasi judicial" body in rezoning hearings. They are bound by state law as to what information they can use to make a decision with little leeway until you get into variance requests related to a rezoning.</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>Finally, City Council also serves as the Community Redevelopment Agency (CRA) board. CRAs are by law meant to reduce slum and blight. Tampa currently has 9 CRAs including downtown, Channel Side, Ybor, East Tampa, West Tampa and Drew Park. Each CRA has a citizen advisory council that shapes how the funds earmarked for their CRA is spent, however the CRA board has the final word. Arguments could be made that the city of Tampa has abused the CRA process and arguments are being made several of those districts should be sunsetted and declare victory.</p>
<!-- /wp:paragraph -->]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>77</wp:post_id>
<wp:post_date><![CDATA[2023-02-10 02:19:19]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2023-02-10 07:19:19]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2023-02-10 02:19:19]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2023-02-10 07:19:19]]></wp:post_modified_gmt>
<wp:comment_status><![CDATA[closed]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[the-machine]]></wp:post_name>
<wp:status><![CDATA[publish]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[page]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
</item>
<item>
<title><![CDATA[Tampa City Council PM 2-9-23]]></title>
<link>https://tampamonitor.com/2023/02/10/tampa-city-council-pm-2-9-23/</link>
<pubDate>Sat, 11 Feb 2023 04:19:23 +0000</pubDate>
<dc:creator><![CDATA[michaelb]]></dc:creator>
<guid isPermaLink="false">https://tampamonitor.com/?p=85</guid>
<description></description>
<content:encoded><![CDATA[<!-- wp:embed {"url":"https://www.youtube.com/watch?v=ndGgaajMTBc","type":"video","providerNameSlug":"youtube","responsive":true,"className":"wp-embed-aspect-16-9 wp-has-aspect-ratio"} -->
<figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
https://www.youtube.com/watch?v=ndGgaajMTBc
</div><figcaption class="wp-element-caption">Tampa City Council Evening Meeting February 9, 2023</figcaption></figure>
<!-- /wp:embed -->
<!-- wp:heading {"fontSize":"large"} -->
<h2 class="has-large-font-size">Agenda</h2>
<!-- /wp:heading -->
<!-- wp:paragraph -->
<p><a href="https://atg.tampagov.net/sirepub/mtgviewer.aspx?meetid=7121&doctype=AGENDA">Original Document</a> including links to supporting documents. Note, Agenda item number and file links to the section of the meeting for that item on Youtube.</p>
<!-- /wp:paragraph -->
<!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|30","right":"var:preset|spacing|30","bottom":"var:preset|spacing|30","left":"var:preset|spacing|30"}}},"backgroundColor":"tertiary","layout":{"type":"constrained"}} -->
<div class="wp-block-group has-tertiary-background-color has-background" style="padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)"><!-- wp:paragraph {"fontSize":"large"} -->
<p class="has-large-font-size">1 - File No. CM23-79783</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>Presentation of commendation to Isabel Bequer, a Senior at the Academy of Holy Names, for winning the Gold Medal at the USS Tampa Post #5 Oratorical Contest; and Emily Peake, a Sophomore at Cambridge Christian School for winning the Silver Medal at the USS Tampa Post #5 Oratorical Contest.</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph {"fontSize":"small"} -->
<p class="has-small-font-size"><em>(Original motion initiated by Miranda-Maniscalco on January 26, 2023)</em></p>
<!-- /wp:paragraph -->
<!-- wp:heading {"fontSize":"large"} -->
<h2 class="has-large-font-size">Notes</h2>
<!-- /wp:heading -->
<!-- wp:paragraph -->
<p><strong>Recipient unable to attend to received commendation.</strong></p>
<!-- /wp:paragraph --></div>
<!-- /wp:group -->
<!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|30","right":"var:preset|spacing|30","bottom":"var:preset|spacing|30","left":"var:preset|spacing|30"}}},"backgroundColor":"tertiary","layout":{"type":"constrained"}} -->
<div class="wp-block-group has-tertiary-background-color has-background" style="padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)"><!-- wp:paragraph {"fontSize":"large"} -->
<p class="has-large-font-size"><a href="https://youtu.be/ndGgaajMTBc?t=1027">2 - File No. REZ-22-89</a></p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>Continued Public Hearing from October 6, 2022 and December 1, 2022 on application of Olusolabomi Olusanya requesting to rezone property generally located at 3410 N. 11TH Street from RS-50 to PD (Planned Development, Residential Single-Family Detached).<em>(</em></p>
<!-- /wp:paragraph -->
<!-- wp:heading {"fontSize":"large"} -->
<h2 class="has-large-font-size">Notes</h2>
<!-- /wp:heading -->
<!-- wp:paragraph -->
<p>Non controversial item that passed first reading unanimously.</p>
<!-- /wp:paragraph --></div>
<!-- /wp:group -->
<!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|30","right":"var:preset|spacing|30","bottom":"var:preset|spacing|30","left":"var:preset|spacing|30"}}},"backgroundColor":"tertiary","layout":{"type":"constrained"}} -->
<div class="wp-block-group has-tertiary-background-color has-background" style="padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)"><!-- wp:paragraph {"fontSize":"large"} -->
<p class="has-large-font-size">3 - File No. REZ-22-107</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>Continued Public Hearing from December 1, 2022 on application of Global Engineering requesting to rezone property generally located at 1206 W. Lemon Street from RS-50 to PD (Residential Single-Family Attached).<em>(</em></p>
<!-- /wp:paragraph -->
<!-- wp:heading {"fontSize":"large"} -->
<h2 class="has-large-font-size">Notes</h2>
<!-- /wp:heading -->
<!-- wp:paragraph -->
<p><strong><strong>Email from Stephen Michelini, applicant's representative, requesting a continuance to March 9, 2023, for said public hearing. (To be R/F)</strong></strong></p>
<!-- /wp:paragraph --></div>
<!-- /wp:group -->
<!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|30","right":"var:preset|spacing|30","bottom":"var:preset|spacing|30","left":"var:preset|spacing|30"}}},"backgroundColor":"tertiary","layout":{"type":"constrained"}} -->
<div class="wp-block-group has-tertiary-background-color has-background" style="padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)"><!-- wp:paragraph {"fontSize":"large"} -->
<p class="has-large-font-size"><a href="https://youtu.be/ndGgaajMTBc?t=2403">4 - File No. REZ-22-65</a></p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>Continued Public Hearing from December 8, 2022, on application of Azam Elsheikh requesting to rezone property generally located at 2304 N. Highland Avenue from RM-24 to PD (Residential Single-Family Attached).</p>
<!-- /wp:paragraph -->
<!-- wp:heading {"fontSize":"large"} -->
<h2 class="has-large-font-size">Notes</h2>
<!-- /wp:heading -->