-
Notifications
You must be signed in to change notification settings - Fork 0
/
sample_posts.json
1162 lines (1162 loc) · 58.4 KB
/
sample_posts.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"post_id": "185bb492-e993-4f69-9b88-e55b59da7567",
"post_author": "user_95",
"created_at": "2023-10-24T12:55:53.722524",
"modified_at": "2024-02-28T17:09:42.572027",
"post_text": "Let's paws for a moment to appreciate the majesty of cats \ud83d\udc31 Their grace and agility never fail to amaze me! \ud83d\ude3b #CatLove #FelineFun",
"txt_embedding": []
},
{
"post_id": "25df52d2-1c88-4bf5-9330-57a8ec70252e",
"post_author": "user_25",
"created_at": "2023-11-29T08:20:18.615077",
"modified_at": "2024-06-03T23:10:47.900154",
"post_text": "Did you know that cats spend about 70% of their lives sleeping? \ud83d\ude3a That's the dream life! \ud83d\udecc #Catnap #LazyCat",
"txt_embedding": []
},
{
"post_id": "ea28e66b-66bb-438e-90d1-935a694c8309",
"post_author": "user_66",
"created_at": "2023-11-12T02:30:22.667367",
"modified_at": "2024-05-27T12:31:25.222205",
"post_text": "Whiskers are not just cute accessories for cats, they are essential tools for their sensory perception \ud83d\udc08 Let's hear it for whisker power! \ud83d\udc3e #CatFacts",
"txt_embedding": []
},
{
"post_id": "2ac14671-23b9-46cd-bfbd-64baee663bd2",
"post_author": "user_81",
"created_at": "2024-08-30T01:35:19.998039",
"modified_at": "2023-09-24T21:06:54.970966",
"post_text": "Happy Caturday everyone! \ud83d\udcc5 It's the purr-fect day to relax and spend quality time with your feline friends \ud83d\ude38 #CaturdayVibes",
"txt_embedding": []
},
{
"post_id": "20f5eea3-680c-4c20-8b38-adf9995c4337",
"post_author": "user_40",
"created_at": "2024-03-08T18:06:10.952929",
"modified_at": "2024-03-08T08:45:13.022358",
"post_text": "Cat moms are the real MVPs, always there to provide love, care, and endless cuddles to their fur babies \ud83d\udc69\u200d\ud83d\udc67\u200d\ud83d\udc66 Show some love for all the wonderful cat moms out there! \ud83d\udc96 #CatMom",
"txt_embedding": []
},
{
"post_id": "0b340270-0051-4aed-82e8-d530e8e672b8",
"post_author": "user_69",
"created_at": "2023-12-13T03:46:30.300491",
"modified_at": "2023-10-11T02:57:07.468702",
"post_text": "Every cat has its own unique purr-sonality \ud83d\ude3a Some are adventurous, others are cuddly, but all are special in their own way \ud83c\udf1f #CatPurrsonality",
"txt_embedding": []
},
{
"post_id": "e3e5a15d-77c4-456b-a2a8-5f79580a965c",
"post_author": "user_10",
"created_at": "2024-06-21T05:10:00.562370",
"modified_at": "2024-07-23T06:41:45.653491",
"post_text": "There's something magical about watching a cat play with a ball of yarn \ud83e\uddf6 It's like witnessing pure joy in motion! \ud83d\udc3e #PlayfulKitty",
"txt_embedding": []
},
{
"post_id": "9c3967c1-5871-481e-906e-c59addd42545",
"post_author": "user_10",
"created_at": "2024-06-11T12:21:45.884649",
"modified_at": "2024-02-07T08:05:21.010120",
"post_text": "Fluffy cats are like living clouds of softness and love \ud83d\udc95 Who can resist their charm and irresistible cuddles? \ud83d\ude3b #FluffyLove",
"txt_embedding": []
},
{
"post_id": "6b8b258c-1273-4bfb-85d7-614d7909d809",
"post_author": "user_82",
"created_at": "2024-05-08T15:57:44.916180",
"modified_at": "2024-02-07T12:15:21.896758",
"post_text": "Clawsome fact: Cats' whiskers are so sensitive that they can detect even the slightest changes in their environment \ud83c\udf3f Truly fascinating creatures! \ud83d\udc31 #WhiskerWisdom",
"txt_embedding": []
},
{
"post_id": "d741bf19-6c07-4b14-948b-ef7ca5377e17",
"post_author": "user_4",
"created_at": "2024-07-07T19:21:55.200165",
"modified_at": "2024-08-22T03:44:35.693412",
"post_text": "To all the cat dads out there, your love and support for your feline family members never go unnoticed \ud83d\udc68\u200d\ud83d\udc67\u200d\ud83d\udc66 Keep being pawsome! \ud83d\udc3e #CatDad",
"txt_embedding": []
},
{
"post_id": "afaf61e5-0295-4e22-a785-e54424a6f5b0",
"post_author": "user_29",
"created_at": "2023-10-19T15:53:04.367620",
"modified_at": "2024-07-27T07:29:49.349458",
"post_text": "Cats may be independent creatures, but they also crave companionship and love \ud83d\udc96 Let's make sure to give them the attention and care they deserve \ud83d\ude3a #CatLove",
"txt_embedding": []
},
{
"post_id": "da675754-26de-449a-bb7d-1738547c488b",
"post_author": "user_55",
"created_at": "2023-10-18T11:05:32.252913",
"modified_at": "2024-06-24T10:03:37.012750",
"post_text": "In a world full of chaos, cats provide a sense of calm and tranquility \ud83c\udf1f Their presence can truly be a soothing balm for the soul \ud83d\udc31 #CatTherapy",
"txt_embedding": []
},
{
"post_id": "a6dcf5d5-0a41-41d6-8025-77dee61039fc",
"post_author": "user_97",
"created_at": "2024-08-30T11:05:14.236261",
"modified_at": "2024-08-15T13:57:29.760799",
"post_text": "The way cats effortlessly navigate their surroundings with grace and agility is truly mesmerizing \ud83d\udc3e They are the epitome of elegance in motion! \ud83d\ude3b #GracefulCats",
"txt_embedding": []
},
{
"post_id": "83e34989-012d-4e78-85ae-e33943163b03",
"post_author": "user_73",
"created_at": "2024-03-05T06:22:09.275848",
"modified_at": "2024-03-22T11:48:31.803503",
"post_text": "Cats have a way of finding the most comfortable spots to take a nap \ud83d\udecc Whether it's a cozy bed or a sunlit windowsill, they know how to relax in style! \ud83d\ude3a #CatNapGoals",
"txt_embedding": []
},
{
"post_id": "cedc8b83-b9e6-4f1a-9e98-e2d53e7f742c",
"post_author": "user_10",
"created_at": "2024-06-25T10:40:39.647355",
"modified_at": "2024-01-22T14:24:14.045412",
"post_text": "Just like humans, cats communicate through a variety of vocalizations, body language, and of course, purring \ud83d\ude38 It's a beautiful language of love and connection \ud83d\udc08 #CatCommunication",
"txt_embedding": []
},
{
"post_id": "2f19eae6-5639-4546-8d40-d844b2395593",
"post_author": "user_7",
"created_at": "2023-11-13T09:19:50.517469",
"modified_at": "2023-09-29T20:32:42.223731",
"post_text": "Cats are natural hunters, but they also have a playful and curious side that can't be ignored \ud83d\udc31 Keep those toys coming for endless entertainment! \ud83c\udf89 #PlayfulFelines",
"txt_embedding": []
},
{
"post_id": "0eeb8220-4cf3-461b-9b03-b1763c7814e4",
"post_author": "user_31",
"created_at": "2024-06-28T13:34:01.029080",
"modified_at": "2023-12-30T13:18:11.322810",
"post_text": "The bond between a cat and its human is truly special and unique \ud83c\udf1f It's a relationship built on trust, love, and mutual understanding \ud83d\ude3b #CatHumanBond",
"txt_embedding": []
},
{
"post_id": "546d97ef-71e7-4209-95e0-1644acc3dc2d",
"post_author": "user_73",
"created_at": "2024-06-03T01:36:10.011526",
"modified_at": "2024-03-06T11:49:38.786492",
"post_text": "Cat eyes are mesmerizing windows to their souls, revealing depths of mystery and wisdom \ud83c\udf0c Those captivating gazes hold endless secrets \ud83d\udc3e #CatEyes",
"txt_embedding": []
},
{
"post_id": "100195ce-177c-4c24-8866-a0084d94fe94",
"post_author": "user_52",
"created_at": "2024-01-20T01:52:53.943415",
"modified_at": "2024-04-15T18:15:36.997755",
"post_text": "No matter how big or small, young or old, every cat deserves a loving home where they can feel safe, cherished, and truly valued \ud83d\udc95 Let's be their voice and advocates for their well-being \ud83d\udc31 #AdoptDontShop",
"txt_embedding": []
},
{
"post_id": "7b7b0738-3e6b-471e-a203-78af6efb8f9e",
"post_author": "user_89",
"created_at": "2024-02-07T14:18:51.624684",
"modified_at": "2024-02-02T00:43:05.528828",
"post_text": "\ud83c\udfa7 Dive into a world of soulful melodies with this Must-Listen album that will uplift your spirits and soothe your soul. \ud83c\udfb5 #MusicRecommendation",
"txt_embedding": []
},
{
"post_id": "25d1865b-1d3c-4e2a-b899-15ba9b91abc8",
"post_author": "user_36",
"created_at": "2024-04-19T07:32:45.817315",
"modified_at": "2024-06-12T23:29:41.116821",
"post_text": "\ud83c\udfb6 Feeling the Friday vibes with these electrifying beats! Turn up the volume and let the music take you on a journey. \ud83c\udfa7\ud83d\udd25",
"txt_embedding": []
},
{
"post_id": "ccb059b0-0c34-4155-9d3d-8586fbc2e304",
"post_author": "user_89",
"created_at": "2024-02-01T08:44:49.675825",
"modified_at": "2024-09-06T19:46:51.313336",
"post_text": "\ud83c\udd95 Discover the latest release from your favorite artist - it's a game-changer! Get ready to be blown away by their musical genius. \ud83c\udf1f\ud83c\udfb6",
"txt_embedding": []
},
{
"post_id": "e06d35e6-2498-45a9-ab97-8384839fd6ab",
"post_author": "user_90",
"created_at": "2024-05-02T07:38:57.391999",
"modified_at": "2024-06-07T00:52:09.865005",
"post_text": "\ud83d\udc4c Looking for a new playlist to elevate your mood? Check out these handpicked tracks that will make your day brighter. \ud83c\udfb5\ud83d\udcab",
"txt_embedding": []
},
{
"post_id": "54d215ee-5200-4829-a9e5-87c2ff7fa418",
"post_author": "user_37",
"created_at": "2024-02-22T06:48:51.164197",
"modified_at": "2024-01-29T10:55:14.610832",
"post_text": "\u2764\ufe0f Share your all-time favorite song with us! Let's create a thread filled with musical gems that speak to our hearts. #MusicIsLife",
"txt_embedding": []
},
{
"post_id": "27d1075b-1fc7-452e-9b3a-9c5a2fc03b52",
"post_author": "user_92",
"created_at": "2024-01-12T19:23:45.873876",
"modified_at": "2024-05-27T13:49:18.905584",
"post_text": "\ud83c\udfa7 Unwind after a long day with this chill playlist that will transport you to a state of relaxation and tranquility. \ud83c\udf3f\ud83c\udfb5",
"txt_embedding": []
},
{
"post_id": "bca87b26-f03e-43f7-b7ea-22ccbb329c92",
"post_author": "user_37",
"created_at": "2023-10-18T05:38:14.876985",
"modified_at": "2024-05-31T08:20:57.925962",
"post_text": "\ud83d\udd25 Get ready to dance the night away with these high-energy tracks that will have you moving and grooving in no time! \ud83c\udfb6\ud83d\udc83",
"txt_embedding": []
},
{
"post_id": "246f00c1-8768-4b6f-a0bd-42d39af0e83b",
"post_author": "user_40",
"created_at": "2024-08-12T23:40:13.141707",
"modified_at": "2024-07-26T02:58:39.558130",
"post_text": "\ud83c\udfb5 Music is the universal language of mankind. Let's celebrate its power to connect us all through the beauty of harmonies and rhythms. \ud83c\udf0d\ud83c\udfb6",
"txt_embedding": []
},
{
"post_id": "9c61d667-9498-41ee-99ec-6bd58e7f8677",
"post_author": "user_56",
"created_at": "2024-04-19T03:07:38.614161",
"modified_at": "2024-04-25T18:22:05.010831",
"post_text": "\ud83d\ude4c Calling all music lovers! Share one song that never fails to lift your spirits and bring a smile to your face. Let's spread the joy of music together. \ud83c\udfb5\ud83d\ude0a",
"txt_embedding": []
},
{
"post_id": "cd023549-2dfa-432b-a171-259b89f026bd",
"post_author": "user_70",
"created_at": "2024-08-07T20:14:08.541155",
"modified_at": "2023-09-23T13:04:51.893424",
"post_text": "\u2b50 Explore a hidden gem in the world of music with this Top Pick recommendation that deserves to be heard by music enthusiasts everywhere. \ud83c\udfa7\ud83c\udfb6",
"txt_embedding": []
},
{
"post_id": "795d6ef2-1d37-4bf9-9d79-68c33aac5c92",
"post_author": "user_79",
"created_at": "2024-07-06T13:40:21.909868",
"modified_at": "2024-05-08T18:37:52.551985",
"post_text": "\ud83d\udc4c Need a mood booster? Look no further than this feel-good playlist that will brighten even the gloomiest of days. \ud83c\udf08\ud83c\udfb5",
"txt_embedding": []
},
{
"post_id": "18f9248e-438d-49e3-a5bb-ffcbda4b3bec",
"post_author": "user_72",
"created_at": "2024-07-23T12:56:20.011059",
"modified_at": "2024-02-20T05:09:07.022199",
"post_text": "\ud83d\udd25 Rock out to these electrifying guitar solos that will leave you in awe of the sheer talent and passion behind each note. \ud83c\udfb8\ud83c\udfb6",
"txt_embedding": []
},
{
"post_id": "d2be7651-cb1f-4d70-a108-d3a04969a331",
"post_author": "user_10",
"created_at": "2023-09-30T22:48:46.970615",
"modified_at": "2023-11-01T15:43:39.557898",
"post_text": "\ud83c\udfa7 Let the music be your guide as you embark on a journey of self-discovery and emotional exploration through the power of melodies and lyrics. \ud83c\udf0c\ud83c\udfb5",
"txt_embedding": []
},
{
"post_id": "b967714d-22ce-414f-b623-d70f6820cb25",
"post_author": "user_60",
"created_at": "2024-01-20T17:23:35.238931",
"modified_at": "2024-02-23T20:37:51.190887",
"post_text": "\u2764\ufe0f Music has a way of touching our hearts in ways words cannot. Share a song that holds a special place in your heart and let its magic inspire others. \ud83c\udfb6\ud83d\udc96",
"txt_embedding": []
},
{
"post_id": "1ac38353-38c5-4804-a971-061aba1e5fb1",
"post_author": "user_84",
"created_at": "2024-07-27T07:01:09.635233",
"modified_at": "2023-12-13T20:54:03.610668",
"post_text": "\ud83c\udd95 Discover new artists and fresh sounds with this curated playlist of up-and-coming talents who are redefining the music industry one song at a time. \ud83c\udf1f\ud83c\udfb5",
"txt_embedding": []
},
{
"post_id": "39968298-efef-4072-ab46-2b47d8545c80",
"post_author": "user_24",
"created_at": "2024-01-09T08:28:41.459335",
"modified_at": "2024-06-17T08:58:47.175391",
"post_text": "\ud83c\udf1f Lose yourself in the enchanting world of classical music with these timeless masterpieces that have stood the test of time and continue to captivate audiences worldwide. \ud83c\udfbb\ud83c\udfb6",
"txt_embedding": []
},
{
"post_id": "b4127e7b-6b89-4787-b96e-e32ebbb8dcf1",
"post_author": "user_16",
"created_at": "2023-10-19T04:14:04.117103",
"modified_at": "2024-04-24T23:06:06.233173",
"post_text": "\ud83c\udfb6 Get lost in the rhythm of the night with this infectious playlist that promises to keep you grooving until the break of dawn. \ud83d\udd7a\ud83c\udf19",
"txt_embedding": []
},
{
"post_id": "3bb66b26-6132-4130-8d7e-d3348994dd65",
"post_author": "user_23",
"created_at": "2024-03-03T20:52:13.480954",
"modified_at": "2024-02-21T14:25:26.413073",
"post_text": "\ud83d\udc4c Elevate your workout routine with these high-energy tracks that will push you to go the extra mile and achieve your fitness goals. \ud83c\udfcb\ufe0f\u200d\u2642\ufe0f\ud83c\udfa7",
"txt_embedding": []
},
{
"post_id": "a7ccb2ec-973c-42fe-a035-159ebb4114dc",
"post_author": "user_60",
"created_at": "2023-11-08T17:25:29.953125",
"modified_at": "2023-09-19T14:02:36.879459",
"post_text": "\ud83d\udd25 Feel the adrenaline rush with this heart-pounding mix of epic movie soundtracks that will make you feel like the hero of your own cinematic adventure. \ud83c\udfac\ud83c\udfb5",
"txt_embedding": []
},
{
"post_id": "877db745-a36a-4e63-a169-4f1f1bf8849e",
"post_author": "user_3",
"created_at": "2024-07-21T02:22:13.094602",
"modified_at": "2024-01-11T04:03:06.116054",
"post_text": "\ud83c\udf0d Let's join hands in solidarity to create a better world for all. #SocialActivism #Change #Solidarity",
"txt_embedding": []
},
{
"post_id": "b2637c61-fbfa-4622-9329-72d0f9058150",
"post_author": "user_13",
"created_at": "2024-08-21T08:19:37.601536",
"modified_at": "2024-07-15T20:31:35.564174",
"post_text": "\ud83d\uddf3\ufe0f Your voice matters. Use your vote to make a difference in your community. #SpeakUp #Vote",
"txt_embedding": []
},
{
"post_id": "81574198-70df-4264-8353-96085c8e955c",
"post_author": "user_54",
"created_at": "2023-11-16T03:32:37.390013",
"modified_at": "2023-11-28T10:59:44.112951",
"post_text": "\ud83d\udce3 Speak up for those who cannot. Your activism can spark change. #Activism #Justice",
"txt_embedding": []
},
{
"post_id": "cc8adbaf-d50f-4b65-9d1d-2c0a0567b006",
"post_author": "user_66",
"created_at": "2024-03-18T11:38:56.332275",
"modified_at": "2024-04-11T04:47:41.558061",
"post_text": "\ud83e\udd1d Together, we can build a community where everyone feels safe and valued. #Community #NoHate",
"txt_embedding": []
},
{
"post_id": "45943673-990c-4dc5-8961-5662340f80ff",
"post_author": "user_46",
"created_at": "2024-04-24T11:43:30.643213",
"modified_at": "2023-12-22T23:45:51.843732",
"post_text": "\u2696\ufe0f Stand for justice. Fight against inequality and discrimination. #Justice #Equality",
"txt_embedding": []
},
{
"post_id": "0cef38bc-9880-409d-8889-c4b88d60659e",
"post_author": "user_61",
"created_at": "2023-12-24T22:21:19.598989",
"modified_at": "2024-07-09T09:39:40.715346",
"post_text": "\ud83d\udce2 Raise your voice against social injustices. Let's make our voices heard. #SpeakUp #Activism",
"txt_embedding": []
},
{
"post_id": "3b3687c4-605e-434d-8d02-e88856b6c7a9",
"post_author": "user_79",
"created_at": "2023-12-21T00:31:15.000554",
"modified_at": "2024-01-08T11:58:23.712223",
"post_text": "\ud83d\udeab Hate has no place in our society. Let's spread love and acceptance. #NoHate #LoveWins",
"txt_embedding": []
},
{
"post_id": "41c225f7-22c1-48f4-a1c6-1ae81b91bcdd",
"post_author": "user_11",
"created_at": "2023-10-16T05:57:19.846773",
"modified_at": "2024-04-05T09:53:42.296595",
"post_text": "\u270a\ud83c\udfff Black lives matter. Let's work towards ending systemic racism and inequality. #BlackLivesMatter #Equality",
"txt_embedding": []
},
{
"post_id": "0ee0ccaf-2acf-46b9-bae3-e13f9d548d1f",
"post_author": "user_67",
"created_at": "2024-05-31T00:35:14.490808",
"modified_at": "2024-09-02T18:57:58.903818",
"post_text": "\ud83c\udf08 Transgender rights are human rights. Let's support and uplift our transgender community. #TransGenderRights #Equality",
"txt_embedding": []
},
{
"post_id": "0e2499b3-37cc-4186-af0e-4cd0a3cf4a6f",
"post_author": "user_18",
"created_at": "2024-07-26T00:04:35.723328",
"modified_at": "2024-03-04T03:30:16.052922",
"post_text": "\ud83d\udce3 It's time to take action against climate change. Our planet needs us now more than ever. #ClimateChange #ActNow",
"txt_embedding": []
},
{
"post_id": "d04ae350-bea6-419f-ab6b-fe82dfeff965",
"post_author": "user_74",
"created_at": "2023-10-13T16:02:52.734410",
"modified_at": "2023-12-07T00:59:04.066746",
"post_text": "\ud83c\udf0d Every small act of kindness contributes to a bigger change. Let's spread positivity and compassion. #Change #Kindness",
"txt_embedding": []
},
{
"post_id": "92127f31-ba2a-4444-aebf-cf1ba36bf2b8",
"post_author": "user_14",
"created_at": "2023-10-25T19:00:26.511079",
"modified_at": "2024-04-14T16:46:18.887520",
"post_text": "\ud83d\uddf3\ufe0f Voting is not just a right, it's a responsibility. Make your voice count in shaping the future. #Vote #Responsibility",
"txt_embedding": []
},
{
"post_id": "f2c84c59-0828-4c76-bb1d-b1833745aed8",
"post_author": "user_60",
"created_at": "2024-05-19T23:30:05.169272",
"modified_at": "2024-03-23T03:44:43.141049",
"post_text": "\u2696\ufe0f We must strive for a society where justice is accessible to all, not just a privilege for some. #Justice #Equality",
"txt_embedding": []
},
{
"post_id": "f74092db-8c3a-4da4-aaaf-0c648ba61d49",
"post_author": "user_85",
"created_at": "2024-03-08T23:46:06.596118",
"modified_at": "2024-08-08T14:12:40.689122",
"post_text": "\ud83d\udce2 Let's amplify the voices of marginalized communities. Together, we can create a more inclusive world. #SpeakUp #Inclusion",
"txt_embedding": []
},
{
"post_id": "60f65461-cf65-4ba9-ba5e-6a2dd99c7f78",
"post_author": "user_78",
"created_at": "2024-06-18T16:10:10.892978",
"modified_at": "2024-01-30T11:40:26.970047",
"post_text": "\ud83e\udd1d Building a strong community starts with understanding and respecting each other's differences. #Community #Diversity",
"txt_embedding": []
},
{
"post_id": "af5906a7-d13f-4490-a76c-931b8290f647",
"post_author": "user_2",
"created_at": "2024-07-02T01:23:56.475104",
"modified_at": "2023-11-29T05:47:59.953496",
"post_text": "\ud83d\udeab Say no to discrimination in all its forms. Embrace diversity and celebrate uniqueness. #NoHate #Diversity",
"txt_embedding": []
},
{
"post_id": "18612260-388a-4565-b8c8-bc0c7ef6379a",
"post_author": "user_59",
"created_at": "2024-08-13T15:38:43.917510",
"modified_at": "2023-12-09T01:46:32.819476",
"post_text": "\u270a\ud83c\udffd Solidarity is our strength. Let's unite for a common cause and stand up against oppression. #Solidarity #Unity",
"txt_embedding": []
},
{
"post_id": "667aad32-5e7c-4bf9-8f1b-228d3a7955c5",
"post_author": "user_76",
"created_at": "2024-05-13T09:18:35.647746",
"modified_at": "2024-07-15T12:41:59.795978",
"post_text": "\ud83c\udf08 Love is love. Let's create a world where everyone can love freely and without fear. #LoveIsLove #Equality",
"txt_embedding": []
},
{
"post_id": "6614e92a-70de-4ad8-b5c2-2f0ef6699f5c",
"post_author": "user_95",
"created_at": "2024-08-31T21:52:50.381791",
"modified_at": "2024-01-13T18:45:17.243743",
"post_text": "\ud83d\udce3 Be the change you wish to see in the world. Your actions have the power to inspire others. #Change #Inspiration",
"txt_embedding": []
},
{
"post_id": "7023dc3d-7a59-4df8-9af0-236469a8a106",
"post_author": "user_53",
"created_at": "2024-03-08T12:07:33.838861",
"modified_at": "2023-12-02T04:36:42.642752",
"post_text": "\ud83c\udf0d Our planet is our home. Let's protect it and work towards a sustainable future for all. #ClimateAction #Sustainability",
"txt_embedding": []
},
{
"post_id": "6695551b-b0c3-4da5-be87-0f823a7eab49",
"post_author": "user_10",
"created_at": "2024-08-07T19:00:34.377995",
"modified_at": "2024-04-21T21:10:03.541199",
"post_text": "Get ready to cozy up in San Francisco's iconic fog blanket! \ud83c\udf01 Embrace the chilly embrace of Karl the Fog as he weaves his misty magic over the Golden Gate. \ud83c\udf2b\ufe0f #SFWeather",
"txt_embedding": []
},
{
"post_id": "011bc679-4dbe-4aac-a84b-7581df1811f1",
"post_author": "user_62",
"created_at": "2024-03-08T23:23:37.808062",
"modified_at": "2024-07-03T12:13:39.420198",
"post_text": "Mornings in San Francisco be like: waking up to a world wrapped in a dreamy foggy embrace. \ud83c\udf09\u2601\ufe0f Let's sip our coffee and watch the city awaken in the mist. #KarlTheFog",
"txt_embedding": []
},
{
"post_id": "08d925a9-bfad-4046-baff-ab8ac17ed884",
"post_author": "user_26",
"created_at": "2024-05-08T04:06:42.409124",
"modified_at": "2024-04-13T12:07:20.063878",
"post_text": "Feeling the chill in the air as the fog rolls in? \ud83e\udde5 Bundle up and take a stroll along the waterfront, where the mist dances with the Golden Gate Bridge. \ud83c\udf01 #SFWeather",
"txt_embedding": []
},
{
"post_id": "ee979df9-1460-451e-832f-a043a78617ad",
"post_author": "user_28",
"created_at": "2023-09-18T14:30:41.323727",
"modified_at": "2024-05-04T12:37:30.270099",
"post_text": "There's something magical about San Francisco's foggy nights. \ud83c\udf03\u2728 The city takes on a whole new charm as the mist swirls around the skyscrapers. \ud83c\udfd9\ufe0f #FoggyNight",
"txt_embedding": []
},
{
"post_id": "8d319e36-dd82-48bd-b91a-67104b994497",
"post_author": "user_29",
"created_at": "2024-06-10T17:07:53.028100",
"modified_at": "2024-06-06T01:14:59.970039",
"post_text": "As the fog settles over the city, it's the perfect time to explore San Francisco's hidden gems. \ud83d\uddfa\ufe0f Let the mist guide you to new adventures! \ud83c\udf2b\ufe0f #ExploreSF",
"txt_embedding": []
},
{
"post_id": "c89e73c8-8106-4219-9756-61b3b9eb2e33",
"post_author": "user_35",
"created_at": "2024-08-08T11:30:02.462703",
"modified_at": "2023-09-25T03:58:56.314772",
"post_text": "When the fog descends, it's like the city gets wrapped in a cozy blanket of mist. \ud83c\udf01 Take a moment to enjoy the peaceful beauty of a foggy day in San Francisco. \ud83c\udf25\ufe0f #Serenity",
"txt_embedding": []
},
{
"post_id": "36d0634f-f896-4d5e-a992-a34099b4af44",
"post_author": "user_32",
"created_at": "2023-11-20T00:42:56.970662",
"modified_at": "2024-09-12T06:54:14.950365",
"post_text": "San Francisco's fog is nature's way of giving the city a touch of mystery and allure. \ud83c\udf09\u2728 Who knows what secrets lie hidden in the mist? #MistyMornings",
"txt_embedding": []
},
{
"post_id": "2307a5eb-cd93-459f-8e76-1204cb91211e",
"post_author": "user_45",
"created_at": "2024-06-13T23:03:15.389959",
"modified_at": "2024-09-15T21:42:52.068417",
"post_text": "The fog may obscure the view, but it also adds an element of intrigue to San Francisco's skyline. \ud83c\udf01\ud83c\udf2b\ufe0f Embrace the beauty of the unknown as Karl the Fog works his magic. #CityMysteries",
"txt_embedding": []
},
{
"post_id": "64a8bb3c-4855-4d58-8b92-a86f1664641f",
"post_author": "user_4",
"created_at": "2024-08-11T17:14:38.339892",
"modified_at": "2024-06-03T08:33:54.366001",
"post_text": "When the fog rolls in, it's like the city takes on a whole new persona. \ud83c\udf01\ud83c\udfad San Francisco becomes a stage where mist and light dance in harmony. #FoggyMagic",
"txt_embedding": []
},
{
"post_id": "09af4061-fd56-4912-a193-bd3bb62b9978",
"post_author": "user_97",
"created_at": "2024-06-08T13:07:23.327381",
"modified_at": "2023-11-09T09:56:37.790342",
"post_text": "San Francisco's fog is a reminder that beauty can be found even in the gloomiest of days. \ud83c\udf27\ufe0f\ud83c\udf01 Let's appreciate the artistry of Karl the Fog as he paints the city in shades of gray. #BeautyInFog",
"txt_embedding": []
},
{
"post_id": "74532d8b-6cb0-4a1d-b028-77b36c8469f6",
"post_author": "user_9",
"created_at": "2024-06-29T10:04:05.558135",
"modified_at": "2024-05-15T00:13:55.921493",
"post_text": "The fog may cloak the city in a veil of mystery, but it also brings a sense of calm and tranquility. \ud83c\udf2b\ufe0f\ud83e\uddd8\u200d\u2640\ufe0f Take a moment to breathe in the misty air and find your inner peace. #Mindfulness",
"txt_embedding": []
},
{
"post_id": "4a911945-58f1-436c-8e7f-b1c0de81cedd",
"post_author": "user_68",
"created_at": "2024-03-20T16:08:34.503836",
"modified_at": "2024-09-14T00:20:06.728000",
"post_text": "In the embrace of the fog, San Francisco takes on a timeless quality. \ud83c\udf01\u23f3 Let's savor the moment and appreciate the ephemeral beauty of a misty day in the city. #TimelessSF",
"txt_embedding": []
},
{
"post_id": "febc645d-c748-443b-89b4-719bf9e36e1a",
"post_author": "user_14",
"created_at": "2024-06-14T21:13:55.280817",
"modified_at": "2024-01-27T09:03:36.621326",
"post_text": "As the fog descends over the bay, it's like a gentle reminder to slow down and appreciate the simple pleasures of life. \ud83d\udeb6\u200d\u2642\ufe0f\ud83c\udf09 Let's take a leisurely stroll and enjoy the misty ambiance. #SlowDown",
"txt_embedding": []
},
{
"post_id": "8ba578e5-463e-4136-bc19-50a0a5fed5eb",
"post_author": "user_55",
"created_at": "2024-04-18T18:23:59.969649",
"modified_at": "2024-08-05T01:59:09.633834",
"post_text": "San Francisco's fog is like a shroud that adds a touch of drama to the city's landscape. \ud83c\udfad\ud83c\udf01 Embrace the theatricality of Karl the Fog's performances! #FoggyDrama",
"txt_embedding": []
},
{
"post_id": "3106aa90-e2d5-4573-b557-23eb1b4e3827",
"post_author": "user_9",
"created_at": "2024-01-24T22:04:21.300102",
"modified_at": "2024-04-25T08:42:30.516456",
"post_text": "When the fog envelops the city, it's like a soft whisper from nature to pause and reflect. \ud83e\udd14\ud83c\udf01 Take a moment to ponder life's mysteries in the misty embrace of San Francisco. #ReflectiveMoments",
"txt_embedding": []
},
{
"post_id": "10515d94-07a9-44c2-b1e0-c1a579f103ed",
"post_author": "user_59",
"created_at": "2024-06-12T00:36:47.558900",
"modified_at": "2024-06-16T05:39:13.848147",
"post_text": "The fog may obscure the horizon, but it also opens up new perspectives on the city's iconic landmarks. \ud83c\udf09\ud83c\udf01 Let's admire the beauty of the Golden Gate Bridge as it emerges from the mist. #IconicViews",
"txt_embedding": []
},
{
"post_id": "c123212e-6fc6-4cda-b84e-2d3ea783cd9b",
"post_author": "user_95",
"created_at": "2024-06-05T06:12:40.457100",
"modified_at": "2024-02-14T11:49:11.228808",
"post_text": "In the heart of the fog, San Francisco reveals its true essence: a city of contrasts and hidden treasures. \ud83c\udf01\ud83d\udd0d Explore beyond the mist and discover the soul of the city. #CityEssence",
"txt_embedding": []
},
{
"post_id": "23d00613-3798-41e0-aa55-46c6cdf43291",
"post_author": "user_4",
"created_at": "2024-05-18T21:32:04.066060",
"modified_at": "2024-01-16T14:47:31.913917",
"post_text": "As the fog weaves its magic over the city, it's a reminder that nature holds the ultimate power over urban landscapes. \ud83c\udf01\ud83c\udf3f Let's respect and appreciate the forces of nature at play. #NaturePower",
"txt_embedding": []
},
{
"post_id": "200937db-5b9d-4b21-aad4-f57edfd099f5",
"post_author": "user_46",
"created_at": "2023-10-22T23:30:39.546473",
"modified_at": "2024-08-03T19:54:02.966820",
"post_text": "When the fog blankets the city, it's like a veil of anonymity that allows San Francisco to reinvent itself with each passing day. \ud83c\udf01\ud83d\udcad Embrace the ever-changing nature of the city under Karl the Fog's watchful eye. #Reinvention",
"txt_embedding": []
},
{
"post_id": "e58b86c7-7405-419c-92bb-64b45d1c48c8",
"post_author": "user_56",
"created_at": "2024-02-03T21:21:27.989377",
"modified_at": "2024-07-07T14:30:56.282554",
"post_text": "Exciting news for California! The High Speed Rail project is making great progress, connecting major cities like never before. \ud83d\ude84\ud83c\udf09 #HighSpeedRail #Infrastructure",
"txt_embedding": []
},
{
"post_id": "b7c14836-7543-4c9d-a53e-ffc8d506453b",
"post_author": "user_80",
"created_at": "2024-05-29T09:08:14.680307",
"modified_at": "2024-03-03T08:13:38.165576",
"post_text": "Fresno residents, get ready for the future of transportation! The High Speed Rail will bring new opportunities for growth and connectivity. \ud83d\udee4\ufe0f\ud83d\ude86 #Fresno #BulletTrain",
"txt_embedding": []
},
{
"post_id": "7b924b5b-186f-4f86-83ae-ad9fca9fb1be",
"post_author": "user_3",
"created_at": "2024-05-22T04:43:16.112235",
"modified_at": "2023-10-08T13:38:09.181607",
"post_text": "Despite some delays, the California High Speed Rail project remains a crucial investment in our state's future. Let's keep pushing for completion! \ud83d\udea7\ud83d\ude84 #HighSpeedRail #Progress",
"txt_embedding": []
},
{
"post_id": "13450f73-c398-4de5-93fc-89afd0f97252",
"post_author": "user_75",
"created_at": "2024-08-10T18:09:39.758050",
"modified_at": "2024-01-19T23:16:51.791766",
"post_text": "From San Francisco to Los Angeles in a flash! The High Speed Rail will revolutionize travel between two of California's biggest cities. \ud83d\ude84\ud83c\udf09 #SFtoLA",
"txt_embedding": []
},
{
"post_id": "b8c07df5-7b2e-45d3-b05a-46181b9ffb9b",
"post_author": "user_82",
"created_at": "2024-05-15T13:52:40.163794",
"modified_at": "2024-08-30T11:46:52.163603",
"post_text": "The High Speed Rail project not only benefits commuters but also promotes eco-friendly transportation solutions for a sustainable future. \ud83c\udf0e\ud83d\ude84 #HighSpeedRail #EcoFriendly",
"txt_embedding": []
},
{
"post_id": "3c19d151-dbd6-4c85-8fb6-c150f2fb7934",
"post_author": "user_92",
"created_at": "2024-07-07T01:18:42.033978",
"modified_at": "2023-09-26T12:31:58.153889",
"post_text": "Construction of the High Speed Rail is underway, shaping the future of public transportation in California. Stay tuned for updates on this transformative project! \ud83d\ude84\ud83d\udea7 #HighSpeedRail",
"txt_embedding": []
},
{
"post_id": "dcb171dc-2875-4ce3-b297-e68abbaff5f2",
"post_author": "user_47",
"created_at": "2024-01-12T00:29:23.133076",
"modified_at": "2024-06-08T15:03:41.240670",
"post_text": "The timeline for the High Speed Rail project may have shifted, but the vision of a more connected California remains steadfast. \ud83d\udd52\ud83d\ude84 #HighSpeedRail #Timeline",
"txt_embedding": []
},
{
"post_id": "ad0447f6-bb1d-4bbb-8dce-f06de324623c",
"post_author": "user_58",
"created_at": "2023-10-13T10:51:20.315408",
"modified_at": "2024-02-26T09:54:35.430327",
"post_text": "Federal funding plays a vital role in the development of the High Speed Rail, ensuring that this ambitious project stays on track. \ud83d\udcb0\ud83d\ude84 #HighSpeedRail #FederalFunding",
"txt_embedding": []
},
{
"post_id": "c4b8e7d1-414d-46da-b488-1921ce0635ca",
"post_author": "user_19",
"created_at": "2023-10-02T20:46:33.913234",
"modified_at": "2024-07-10T12:24:50.249061",
"post_text": "As challenges arise, so does the determination to see the High Speed Rail project through to completion. Together, we can build a better future for California's transportation. \ud83d\ude84\ud83c\udf09 #HighSpeedRail",
"txt_embedding": []
},
{
"post_id": "d3406082-41b8-4f04-8f7c-28fa48aa6af6",
"post_author": "user_64",
"created_at": "2023-10-28T07:41:55.162545",
"modified_at": "2024-01-26T01:40:55.399493",
"post_text": "Join the conversation on the future of transportation in California! The High Speed Rail project is a game-changer for our state. \ud83d\ude84\ud83d\udee4\ufe0f #HighSpeedRail",
"txt_embedding": []
},
{
"post_id": "95deabb4-ea18-41f1-a087-106c27c3d680",
"post_author": "user_25",
"created_at": "2023-10-12T13:10:00.432164",
"modified_at": "2024-05-03T01:12:10.807212",
"post_text": "Investing in the High Speed Rail isn't just about building tracks\u2014it's about creating jobs, improving infrastructure, and shaping a better tomorrow. \ud83d\ude84\ud83c\udfd7\ufe0f #HighSpeedRail",
"txt_embedding": []
},
{
"post_id": "78fde71c-bdfe-4526-963b-50205ef7a54f",
"post_author": "user_15",
"created_at": "2024-03-05T05:28:19.321979",
"modified_at": "2023-10-13T14:09:04.437680",
"post_text": "Excited to see the progress made on the High Speed Rail project! This innovative infrastructure will redefine how we travel across California. \ud83d\ude84\ud83c\udf09 #HighSpeedRail",
"txt_embedding": []
},
{
"post_id": "44f1596a-dd27-40dc-904e-439e3fa4ad99",
"post_author": "user_28",
"created_at": "2024-03-23T21:26:21.591953",
"modified_at": "2023-12-26T04:13:54.300230",
"post_text": "Public support is key to the success of the High Speed Rail project. Let's rally together to ensure this transformative initiative reaches its full potential. \ud83d\ude84\ud83d\udc65 #HighSpeedRail",
"txt_embedding": []
},
{
"post_id": "b9fc4b18-88c8-414a-a09b-f8c8ecdd0fe2",
"post_author": "user_26",
"created_at": "2024-09-01T00:36:07.162749",
"modified_at": "2023-09-23T06:47:34.224884",
"post_text": "California's High Speed Rail isn't just a train\u2014it's a symbol of progress, innovation, and a commitment to a sustainable future. \ud83d\ude84\ud83c\udf3f #HighSpeedRail",
"txt_embedding": []
},
{
"post_id": "fad67ef3-d764-4a10-8c97-449152d1e0f2",
"post_author": "user_11",
"created_at": "2024-01-22T06:19:39.620116",
"modified_at": "2024-09-06T04:20:50.788371",
"post_text": "Despite setbacks, the High Speed Rail project remains a beacon of hope for improved transportation, economic growth, and environmental sustainability. \ud83d\ude84\ud83c\udf10 #HighSpeedRail",
"txt_embedding": []
},
{
"post_id": "5a3f1930-d34a-4997-8279-0e439511c874",
"post_author": "user_28",
"created_at": "2024-07-02T04:56:10.334795",
"modified_at": "2024-07-06T13:03:02.337927",
"post_text": "Let's not lose sight of the long-term benefits the High Speed Rail project will bring to California. Stay informed and engaged in this important initiative. \ud83d\ude84\ud83d\udee4\ufe0f #HighSpeedRail",
"txt_embedding": []
},
{
"post_id": "ccedc80f-34ee-4a9a-a93c-4f7f5f65d32b",
"post_author": "user_66",
"created_at": "2024-04-02T17:11:38.648932",
"modified_at": "2024-04-09T21:43:28.378575",
"post_text": "The High Speed Rail project faces challenges, but with perseverance and community support, we can overcome obstacles and pave the way for a brighter future. \ud83d\ude84\ud83c\udf1e #HighSpeedRail",
"txt_embedding": []
},
{
"post_id": "3bb24da9-103b-4170-81d5-fde6dd9e436e",
"post_author": "user_48",
"created_at": "2024-03-10T11:52:29.023377",
"modified_at": "2024-06-21T18:17:53.767762",
"post_text": "California's commitment to the High Speed Rail project demonstrates bold leadership in advancing modern transportation solutions. Let's keep the momentum going! \ud83d\ude84\ud83c\udf09 #HighSpeedRail",
"txt_embedding": []
},
{
"post_id": "c29ba583-c058-429d-8f3f-8a149918af8c",
"post_author": "user_5",
"created_at": "2024-08-07T23:09:13.423962",
"modified_at": "2024-05-20T07:35:17.229074",
"post_text": "The High Speed Rail project is more than just a mode of transportation\u2014it's a bold statement about California's dedication to progress and connectivity. \ud83d\ude84\ud83c\udf1f #HighSpeedRail",
"txt_embedding": []
},
{
"post_id": "fedf0a63-67a9-4ad9-bef8-b4891cca2f8c",
"post_author": "user_18",
"created_at": "2023-10-09T10:39:01.417165",
"modified_at": "2024-08-20T19:56:37.587909",
"post_text": "\ud83c\udf0a Dive into the open water and let the waves carry you to new adventures! \ud83c\udfca\u200d\u2642\ufe0f #OpenWater #Swim",
"txt_embedding": []
},
{
"post_id": "a1a4658f-511c-4ec3-9a6d-82011ca5219f",
"post_author": "user_81",
"created_at": "2023-11-30T15:53:21.707224",
"modified_at": "2024-08-05T00:28:47.863247",
"post_text": "\ud83d\udea9 Buoy markers guide the way, marking the path for swimmers braving the open water challenge. \ud83c\udfc5 #Endurance",
"txt_embedding": []
},
{
"post_id": "8360f760-0c6a-42ba-9943-280171dd68ff",
"post_author": "user_61",
"created_at": "2024-02-18T11:09:03.395005",
"modified_at": "2023-11-14T00:39:03.149130",
"post_text": "\ud83c\udf05 Rise and shine for a breathtaking sunrise swim in the open water, surrounded by nature's beauty. \ud83c\udf1e #SunriseSwim",
"txt_embedding": []
},
{
"post_id": "1a5d77bf-0c6d-4615-9c3f-017fc618e583",
"post_author": "user_47",
"created_at": "2024-05-30T04:56:02.286210",
"modified_at": "2024-05-13T08:07:05.201609",
"post_text": "\ud83d\udc2c Glide through the water and witness the beauty of marine wildlife in their natural habitat. \ud83c\udf0a #Nature #Wildlife",
"txt_embedding": []
},
{
"post_id": "70b0334e-a70a-421b-8a1a-ea8e1e133d39",
"post_author": "user_3",
"created_at": "2024-07-24T08:10:28.866721",
"modified_at": "2024-06-16T07:38:25.443640",
"post_text": "\ud83d\udcaa Embrace the open water as a place of endless challenge and self-discovery. \ud83c\udfca\u200d\u2642\ufe0f #Challenge",
"txt_embedding": []
},
{
"post_id": "fd4a94ab-f701-4bd0-af98-f08d83ec30eb",
"post_author": "user_83",
"created_at": "2024-08-28T08:32:59.363658",
"modified_at": "2024-04-24T19:37:10.332593",
"post_text": "\u23f1\ufe0f Timing is everything in open water swimming \u2013 every stroke counts towards the finish line. \ud83d\udd70\ufe0f #Timing",
"txt_embedding": []
},
{
"post_id": "95940dc9-e7fc-468b-b041-60acd04a77ac",
"post_author": "user_38",
"created_at": "2024-08-08T09:07:39.762958",
"modified_at": "2024-08-11T18:09:55.819635",
"post_text": "\ud83e\udd76 Conquer the chill of cold water and feel the exhilaration of overcoming the elements. \u2744\ufe0f #ColdWater",
"txt_embedding": []
},
{
"post_id": "ccbef6dd-dd64-4310-bc0b-bd1a85ba61c1",
"post_author": "user_71",
"created_at": "2024-04-08T00:46:02.704801",
"modified_at": "2024-06-28T19:28:05.867118",
"post_text": "\ud83c\udfde\ufe0f Explore the open water and reconnect with the serenity of nature, finding peace in every stroke. \ud83c\udf3f #Nature",
"txt_embedding": []
},
{
"post_id": "9500a9a4-14fa-4213-ac44-e21eb28df3ff",
"post_author": "user_6",
"created_at": "2024-02-13T09:45:19.151410",
"modified_at": "2024-04-16T20:41:42.306711",
"post_text": "\ud83c\udfc5 Alcatraz awaits those brave enough to swim its open waters, a true test of endurance and determination. \ud83c\udf0a #Alcatraz",
"txt_embedding": []
},
{
"post_id": "d713b7df-3684-459f-b812-55202efe7c32",
"post_author": "user_57",
"created_at": "2024-06-17T03:31:09.344414",
"modified_at": "2024-04-13T21:26:01.646552",
"post_text": "\ud83d\udea9 Navigate the tides with precision using tide charts, a crucial tool for open water swimmers. \ud83c\udf0a #TideCharts",
"txt_embedding": []
},
{
"post_id": "0c718762-aaf2-4e50-9f09-f40a01ecc490",
"post_author": "user_91",
"created_at": "2023-10-12T04:25:54.991970",
"modified_at": "2023-11-12T13:38:02.637878",
"post_text": "\ud83c\udfca\u200d\u2642\ufe0f Triathletes thrive in the open water, combining swimming with cycling and running for the ultimate challenge. \ud83c\udfc5 #Triathlon",
"txt_embedding": []
},
{
"post_id": "1e703b97-f187-4f30-b425-f8ff4494f814",
"post_author": "user_37",
"created_at": "2023-12-29T13:15:04.942968",
"modified_at": "2024-04-16T09:14:30.545817",
"post_text": "\ud83c\udf05 Start your day with an invigorating open water swim, setting the tone for a day full of possibilities. \ud83c\udfca\u200d\u2642\ufe0f #SunriseSwim",
"txt_embedding": []
},
{
"post_id": "39b5902a-df61-478d-ae56-e102007b50e8",
"post_author": "user_12",
"created_at": "2023-10-11T15:36:35.534860",
"modified_at": "2023-11-03T15:25:41.089508",
"post_text": "\ud83d\udc2c Dive deep into the open water and discover a world teeming with marine life, a true aquatic adventure. \ud83c\udf0a #Wildlife",
"txt_embedding": []
},
{
"post_id": "5bcd6b78-9073-482d-8207-f0a64c01e021",
"post_author": "user_1",
"created_at": "2023-12-25T14:06:33.155989",
"modified_at": "2024-04-24T11:07:21.406414",
"post_text": "\ud83d\udcaa The open water beckons those seeking to push their limits and test their physical and mental strength. \ud83c\udfca\u200d\u2642\ufe0f #Challenge",
"txt_embedding": []
},
{
"post_id": "5c0b5a5d-fb7d-499d-8293-e2ded90ef1c4",
"post_author": "user_84",
"created_at": "2023-12-17T02:24:58.330220",
"modified_at": "2024-04-08T23:51:16.793801",
"post_text": "\u23f1\ufe0f Precision is key in open water swimming \u2013 every stroke, every breath, every moment counts towards success. \ud83d\udd70\ufe0f #Timing",
"txt_embedding": []
},
{
"post_id": "f898f4d6-26c5-433c-b46c-ef7d3fd422fc",
"post_author": "user_21",
"created_at": "2023-10-09T06:00:44.734715",
"modified_at": "2024-07-02T18:28:06.345387",
"post_text": "\ud83e\udd76 Embrace the chill of cold water as a reminder of your resilience and determination in the face of adversity. \u2744\ufe0f #ColdWater",
"txt_embedding": []
},
{
"post_id": "5722f819-5a4f-461c-8e98-2cecc4121a65",
"post_author": "user_64",
"created_at": "2023-09-22T06:57:50.792780",
"modified_at": "2023-12-17T05:11:55.232695",
"post_text": "\ud83c\udfde\ufe0f Lose yourself in the vast expanse of open water, finding solace and freedom in the embrace of nature. \ud83c\udf05 #Nature",
"txt_embedding": []
},
{
"post_id": "275afaab-bc43-4a3a-afb5-24d41dc0e81c",
"post_author": "user_80",
"created_at": "2024-04-02T18:06:52.199673",
"modified_at": "2024-08-28T07:43:01.117122",
"post_text": "\ud83c\udfc5 Conquer the iconic Alcatraz swim and write your name in the history of open water endurance challenges. \ud83c\udf0a #Alcatraz",
"txt_embedding": []
},
{
"post_id": "4822fc17-4a2b-443a-a1c1-a11ececf1d23",
"post_author": "user_4",
"created_at": "2024-06-12T08:22:18.402672",
"modified_at": "2023-11-26T11:34:25.997302",
"post_text": "\ud83d\udea9 Chart your course with precision using tide charts, ensuring a safe and successful open water swim. \ud83c\udf0a #TideCharts",
"txt_embedding": []
},
{
"post_id": "c7a63bda-ebcc-4a18-8ca4-db09fbad5c74",
"post_author": "user_53",
"created_at": "2024-09-10T12:49:29.886655",
"modified_at": "2023-12-26T00:13:21.055245",
"post_text": "Let's get creative with this fundraiser. We need to think outside the box to raise enough money for the cause.",
"txt_embedding": []
},
{
"post_id": "be78e562-7ac3-48c8-b025-f6a1004012da",
"post_author": "user_47",
"created_at": "2024-05-01T04:59:41.257954",
"modified_at": "2023-10-04T01:36:51.291445",
"post_text": "Blues Brothers movie is a classic.",
"txt_embedding": []
},
{
"post_id": "d53ed10d-2235-4c5d-8c7e-aec51cca3c10",
"post_author": "user_90",
"created_at": "2024-07-14T12:42:55.563534",
"modified_at": "2024-02-01T21:55:01.825036",
"post_text": "Research is clear on the epidemiological impact of the COVID-19 pandemic.",
"txt_embedding": []
},
{
"post_id": "c94de0d1-882a-4227-a22f-ff1e4e82fdc1",
"post_author": "user_7",
"created_at": "2024-08-02T20:25:04.670091",
"modified_at": "2023-11-25T00:31:19.716300",
"post_text": "Confetti is an environmental nightmare, try these green alternatives at your wedding.",
"txt_embedding": []
},
{
"post_id": "7a6e0d20-b6cc-4bba-a985-4f5ada57d064",
"post_author": "user_82",
"created_at": "2024-03-09T18:56:39.261205",
"modified_at": "2024-06-14T02:00:24.534798",
"post_text": "The calendar year is based on the revolutions of the Earth around the Sun and that is why you have four seasons represented in playing cards.",
"txt_embedding": []
},
{
"post_id": "266f7d8f-9c0f-49d2-9d91-e2cc01f8cd2a",
"post_author": "user_64",
"created_at": "2024-05-06T00:18:45.758383",
"modified_at": "2023-10-21T11:46:27.780570",
"post_text": "Looking for some Monday motivation? You've got this! \ud83d\udcaa",
"txt_embedding": []
},
{
"post_id": "9f881e62-9b65-42f4-bb92-d2a7f40f6731",
"post_author": "user_54",
"created_at": "2024-05-07T23:53:50.281868",
"modified_at": "2023-12-21T02:30:41.159515",
"post_text": "Remember to stay hydrated throughout the day. \ud83d\udca7",
"txt_embedding": []
},
{
"post_id": "9c0fd68a-5ded-4c0d-b2c4-9cf9dadc77ac",
"post_author": "user_7",
"created_at": "2023-12-21T09:33:57.319427",
"modified_at": "2023-09-17T22:27:17.679267",
"post_text": "These wild chipmunks took over the campground.",
"txt_embedding": []
},
{
"post_id": "0e0f4241-57be-4323-bd7d-80e1379e1fa7",
"post_author": "user_66",
"created_at": "2023-09-22T22:24:35.175987",
"modified_at": "2024-05-11T05:49:00.618325",
"post_text": "Celebrate your wins, no matter how small they may seem. \ud83c\udfc6",
"txt_embedding": []
},
{
"post_id": "4295817e-8d72-4d42-834e-80b124f57729",
"post_author": "user_71",
"created_at": "2023-12-23T07:12:45.567192",
"modified_at": "2024-05-01T13:36:26.478650",
"post_text": "Mediation and yoga. Who needs them when you have cotton candy and roller coasters? \ud83c\udf6d",
"txt_embedding": []