generated from ThakaSartu/coral
-
Notifications
You must be signed in to change notification settings - Fork 0
/
munas_toy_box.html
2104 lines (1831 loc) · 165 KB
/
munas_toy_box.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<style>
/* LAYOUTS */
/* ##6panel4collages use equallateral images */
.sixpanel {
align-items: stretch;
/* flex-flow: row nowrap; */
flex-direction: row;
flex-wrap: nowrap;
line-height: 0;
justify-content: center;
align-content: stretch;
height: 100%;
/* min-width: fit-content; */
/* max-width: max-content; */
width: 100%;
display: grid;
box-shadow: rgba(240, 46, 170, 0.4) 5px 5px, rgba(240, 46, 170, 0.3) 10px 10px, rgba(240, 46, 170, 0.2) 15px 15px, rgba(240, 46, 170, 0.1) 20px 20px, rgba(240, 46, 170, 0.05) 25px 25px;
grid-template-columns: auto auto auto;
object-fit: contain;
}
.sixpanel>div {
border: 1px solid #b4e853;
}
.sixpanel>img {
display: block;
object-fit: contain;
max-width: 100%;
border: 0px solid #b4e853;
}
/* GiTHUB_LOGO##TEAM_SPiRiT!!! */
/* 4-6images
/* IMAN_FRUM_SOMALiA_MY_MOMMA */
.pinupGallery {
width: 100%;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
gap: 15px;
object-fit: contain;
}
.pinupImage {
width: 100px;
flex: 1 0 auto;
}
.featured-pinupImage {
flex: 0 0 100%;
}
/* ##TWO_PANEL_LAYOUT_ADDED_7_28_2022_FOR_SPLiT_SCREEN_POSTS */
/* ##TWO_PANEL_LAYOUT_ADDED_7_28_2022_FOR_SPLiT_SCREEN_POSTS */
.twoPanelSpread {
margin: 0px;
padding: 0px;
box-shadow: rgba(240, 46, 170, 0.4) 5px 5px, rgba(240, 46, 170, 0.3) 10px 10px, rgba(240, 46, 170, 0.2) 15px 15px, rgba(240, 46, 170, 0.1) 20px 20px, rgba(240, 46, 170, 0.05) 25px 25px;
background: url(https://raw.githubusercontent.com/ThakaRashard/bubblegumpop/gh-pages/img/810MATRiX.webp ) center repeat;
}
.row {
display: flex;
flex-direction: row;
flex-wrap: wrap;
width: 100%;
}
.panelColumn {
display: flex;
flex-direction: column;
flex-basis: 100%;
flex: 1;
overflow: hidden;
}
.leftColumn {
background-color: #2470ff;
width: 100%;
}
.leftColumn img {
flex-shrink: 0;
min-width: 100%;
min-height: 100%;
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
}
.rightColumn {
background-color: #c9ff23;
}
.rightColumn img {
flex-shrink: 0;
min-width: 100%;
min-height: 100%;
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
}
.twoPanelSpread>img {
max-width: 100%;
max-height: 100%;
}
/* 3PANEL_SPREAD_WORKS_WELL_WITH_SQUARE_AND_VERTiCAL_iMAGES */
.flex3BorderedPaddedROW {
display: flex;
align-items: stretch;
/* flex-flow: row nowrap; */
flex-direction: row;
flex-wrap: nowrap;
justify-content: center;
align-content: stretch;
height: 100%;
padding: 15px;
gap: 5px;
width: 100%;
height: 100%;
object-fit: cover;
overflow: hidden;
}
.flex3BorderedPaddedROW>div {
border: 1px solid #c9ff23;
border-radius: 1px;
padding: 8px;
}
.flex3BorderedPaddedROW>img {
border: 3px dotted #c9ff23;
border-radius: 1px;
padding: 8px;
}
/* FLEX_BOX_FOR_3_IMAGES */
.flex-container {
display: flex;
align-items: stretch;
flex-flow: row nowrap;
flex-direction: row;
flex-wrap: nowrap;
justify-content: center;
align-content: stretch;
height: 100%;
padding: 15px;
gap: 5px;
}
.flex-container>div {
border: 1px solid #c9ff23;
border-radius: 1px;
padding: 8px;
}
/* 4PANEL_SPREAD_CREATED_FOR_SARTUS_MODELiNG_ENERGY, many uses tho to feature things ##ASK_DiDO */
.panel4-container {
display: flex;
justify-content: space-evenly;
width: 100%;
height: 100%;
object-fit: cover;
overflow: hidden;
height: 100%;
padding: 0px;
gap: 5px;
}
/* EXPANDiNG_GALLERY_##HTMLPUG_PORT_OF */
:root {
--magnifier: 6;
--gap: 1vmin;
--transition: 0.5s;
}
.expandingGallery {
width: 100%;
height: 90vmin;
display: flex;
align-items: center;
justify-content: center;
gap: var(--gap);
}
.expandingGallery>img {
--brightness: 0.75;
--grayscale: 1;
transition: flex var(--transition), filter var(--transition);
height: 100%;
object-fit: cover;
overflow: hidden;
flex: 1;
}
.expandingGallery>img:hover {
flex: var(--magnifier);
}
</style>
<div id="MUNAS_NAVBLOCK"></div>
<div class="neonText">
## Hole to another universe
<ul>
<li><a href="https://thakarashard.github.io/BUBBLEGUMPOP_MUNA/">1 ###BUBBLEGUMPOP_MUWAH###BLOG###########היים##</a></li>
<li><a href="https://soundcloud.com/munilong">2 ###TO_MUNi_LONG'S##SOUNDCLOUD##################</a></li>
<li><a href="https://www.munilong.com/">3 # MY_RECORD_LABEL########################</a></li>
<li><a href="https://twitter.com/munilong">4 # UNiVERSAL_KONTAKT##联系##接触##اتصل##접촉##যোগাযোগ#</a></li>
<li>1 # HOLE_TO_ANOTHER_UNiVERSE###BLOG######################</li>
<li>2 # TO###MY_RESUME#######################################</li>
<li>3 # ANOTHER###SANDBOX####################################</li>
<li>4 # UNiVERSALCONTACKT####################################</li>
</ul>
</div>
<img src="https://www.adbranch.com/wp-content/uploads/chrysler_dodge_charger_1970-610x307.jpg">
<div class='twoPanelSpread'>
<div class='row'>
<div class='panelColumn'>
<div class='leftColumn'>
<img src="https://www.graffiti.org/sfb/refa2002oakland04.jpg" alt="##BUBBLEGUM_POP##IS_HERE_TO_STAY" >
</div>
</div>
<div class='panelColumn'>
<div class='rightColumn'>
<img src="https://i.pinimg.com/originals/3d/d1/9f/3dd19f9c5c7f126af27ba530d94ab168.jpg" alt="Girl in a jacket" >
</div>
</div>
</div>
</div>
<img src="https://raw.githubusercontent.com/ThakaRashard/bubblegumpop/gh-pages/img/I_HAVE_NOT_LOGGED_IN_IN_OVER_TWO_WEEKS.PNG">
<p> <span class="firstcharacter">PiNTEREST LocksOutFATHERS"</span>
It has been over two weeks since I have logged in. I found Sartu, my kidnapped wife from Ethiopia via ##ALPHARETTA. The previous time I found her she exclaimed "That's My Husband!!", and the captors refused to let her go. Im at a point in my life where I have gathered my life partners. The truth is that is too much power. I went to ##DANCE411 in Atlanta for sometime between parenting, working as a ##DevOps_ENGiNEER, and ##JiUJiTSU. A group of women that are blowing up the RnB Chitlin_Circuit of today chose me as thier dance husband... My from my understanding 4th cousin Muna and 8th cousin Sartu from ##ETHiO_SOMOLiA and about 10 other women decided we would start a business to support our artistic endevors and care for our children. They were all kidnapped with our children and sold into a ##PROSTiTUTION_MARKET_in_SOUTHERN_CALiFORNiA... We have relationships outdoors, but the pimps rape them systematically for use in a global ##SEX_TOURiSM_TRADE. The Human traffickers stole and steal everything I reaccquire to get on the internet. And when I travel to use computers at local librays in #LOS_ANGELES_COUNTY, I am severely stalked, attacked, poisoned with chemical weapons and randomly aharrassed. I was using pinterest to serve up internet content for our large families spiritual needs. Those of us from Africa are Muslims, and we had a semi-healthy stint with Jehovahs Witnesses. So we are a very spiritually minded family. However many of the pimps are anti god that we are dealing with... People on the late night show and everything are involved. Long story short.. Pinterest was our watering hole. I could post content bulletin board #style, and interact with my wives and children in passing as we wait for my old job JPL to step in the CIA/FBi/US_MARSHALLS and other services in law enforcement has helped us contact since Erikas dissapearance was taken in by the ##DEKALB_COUNTY_SHRIFFs office and they told me to post constantly to stay visible... People dissapear when the dont post in this era of ##ECONOMIC_ASSASINATION_of_FATHERS_FOR_THE_PURPOSE_OF_PROSTITUTITUING_HEALTHY_FAMiLiES
</p>
<iframe width="100%" height="300" scrolling="no" frameborder="no" allow="autoplay" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/596188557&color=%236c5c34&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&show_teaser=true&visual=true"></iframe>
[CSS performance optimization](https://developer.mozilla.org/en-US/docs/Learn/Performance/CSS)
[HTML_CSS_RENDERiNG_PERFORMANCE_BASiCS](https://developer.mozilla.org/en-US/docs/Web/Performance/Fundamentals)
<iframe width="100%" height="300" scrolling="no" frameborder="no" allow="autoplay" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/643348296&color=%2312bad0&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&show_teaser=true&visual=true"></iframe>
[FoNT_FALLBACK](https://medium.com/swlh/full-text-styling-with-a-single-line-of-css-838e8c666f4d)
<div class="flex-container">
<div class="item1"> <img src="https://raw.githubusercontent.com/ThakaRashard/bubblegumpop/gh-pages/img/SartUBreast_inTOXiCATE_Me.gif" /></div>
<div class="item2"> <img src="https://raw.githubusercontent.com/ThakaRashard/bubblegumpop/gh-pages/img/SartUBreast_inTOXiCATE_Me.gif" /></div>
<div class="item3"> <img src="https://raw.githubusercontent.com/ThakaRashard/bubblegumpop/gh-pages/img/SartUBreast_inTOXiCATE_Me.gif" /></div>
</div>
<iframe src="https://gcp-embeds.datpiff.com/mixtape/1021737/" width="100%" height="270" frameborder="0"></iframe>
<iframe width="100%" height="300" scrolling="no" frameborder="no" allow="autoplay" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/1202841862&color=%23211f21&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&show_teaser=true&visual=true"></iframe>
<iframe width="100%" height="300" scrolling="no" frameborder="no" allow="autoplay" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/293177372&color=%23a09c94&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&show_teaser=true&visual=true"></iframe>
<iframe src="https://gcp-embeds.datpiff.com/mixtape/770917/" width="100%" height="270" frameborder="0"></iframe>
<iframe width="100%" height="300" scrolling="no" frameborder="no" allow="autoplay" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/899207614&color=%23053c78&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&show_teaser=true&visual=true"></iframe>
<iframe src="https://gcp-embeds.datpiff.com/mixtape/26747/" width="100%" height="270" frameborder="0"></iframe>
<img src="https://www.graffiti.org/sfb/dashdkrip_refa1.jpg" >
<p> <span class="firstcharacter">Dash</span> R.I.P. by Refa1
I rocked this Burner(Freestyle)...for a lil' homie who was Murdered (2005) by the gang drama in Oakland. His Name was "Dash"DK-crew. This Kid was a young 16 yr old aspiring Writer/Artist Who's life was stolen by the ignorance of the white power mind- control media. That same media which possesses the latino gangs of Oakland through self hatred. I felt that it was necessary to give him a royal burial because his potential was cut off...no one knows what this young man could've been. When we as a community don't take responsibility for our children and each other, we are cutting our futures short. Our potential is to be living free and moving in harmony with the universe. This slave system is working to murder and steal our future,we can not allow that to take place. Stand up for your people, Love them, Respect them and defend our future. Lil' Dash's spirit lives on... Rest in Power young warrior, be one with the Sun.
-Refa TNS ...East Side Oakland</p>
<iframe width="100%" height="300" scrolling="no" frameborder="no" allow="autoplay" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/529255686&color=%236c6c54&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&show_teaser=true&visual=true"></iframe><div style="font-size: 10px; color: #cccccc;line-break: anywhere;word-break: normal;overflow: hidden;white-space: nowrap;text-overflow: ellipsis; font-family: Interstate,Lucida Grande,Lucida Sans Unicode,Lucida Sans,Garuda,Verdana,Tahoma,sans-serif;font-weight: 100;"><a href="https://soundcloud.com/erfun-almasi" title="Erfun Almasi" target="_blank" style="color: #cccccc; text-decoration: none;">Erfun Almasi</a> · <a href="https://soundcloud.com/erfun-almasi/an-ending-a-beginning" title="Dustin O'Halloran - An Ending, A Beginning" target="_blank" style="color: #cccccc; text-decoration: none;">##DEAR_REFA__THAT_SONGs_FOR_##DASH##</a></div>
<img src="https://www.graffiti.org/sfb/05204.jpg">
<img src="https://www.graffiti.org/sfb/zore_skew_krash_king_oakland.jpg">
<img src="https://www.graffiti.org/sfb/apex_sfb2005b.jpg">
<div class='twoPanelSpread'>
<div class='row'>
<div class='panelColumn'>
<div class='leftColumn'>
<img src="https://www.graffiti.org/sfb/refa2002oakland04.jpg" alt="##BUBBLEGUM_POP##IS_HERE_TO_STAY" >
</div>
</div>
<div class='panelColumn'>
<div class='rightColumn'>
<img src="https://www.graffiti.org/sfb/refa2002oakland04.jpg" alt="Girl in a jacket" >
</div>
</div>
</div>
</div>
<img src="https://www.graffiti.org/atl/3161842448_f805cdca4f_o.jpg">
<img src="https://www.graffiti.org/atl/viper_totem2_54266a_o.jpg">
<img src="https://www.vibe.com/wp-content/uploads/2018/02/donuts570-1518104684.jpg" >
<img src="https://www.graffiti.org/atl/viper_totem2_4038f9c_o.jpg" alt="##ATLANTA_GRAFFiTi##IS_HERE_TO_STAY" >
<audio controls class="broken-width">
<source src="https://github.com/ThakaRashard/bubblegumpop/raw/gh-pages/audio/Imaginary_Playmates128kbps_RNE_and_ANGELA.mp3" type="audio/mp3" />
Your browser does not support the <code>audio</code> element.
</audio>
<div class='twoPanelSpread'>
<div class='row'>
<div class='panelColumn'>
<div class='leftColumn'>
<img src="https://i.pinimg.com/564x/7c/12/0f/7c120fcfaba943300a402cd1d86e99ed.jpg" alt="##BUBBLEGUM_POP##IS_HERE_TO_STAY" >
</div>
</div>
<div class='panelColumn'>
<div class='rightColumn'>
<img src="https://image-aws-us-west-2.vsco.co/12f8b0/56497/5fc4b3191d78313c14000005/vsco5fc4b35d36f40.jpg" alt="Girl in a jacket" >
</div>
</div>
</div>
</div>
<div class='twoPanelSpread'>
<div class='row'>
<div class='panelColumn'>
<div class='leftColumn'>
<img src="https://akns-images.eonline.com/eol_images/Entire_Site/20191026/rs_634x951-191126075307-Normani-634.jpg" alt="##BUBBLEGUM_POP##IS_HERE_TO_STAY" >
</div>
</div>
<div class='panelColumn'>
<div class='rightColumn'>
<img src="https://i.pinimg.com/originals/54/a5/60/54a5602868bda61c73bad1c97c3448d5.jpg" alt="Girl in a jacket" >
</div>
</div>
</div>
</div>
<div class='twoPanelSpread'>
<div class='row'>
<div class='panelColumn'>
<div class='leftColumn'>
<img src="https://i.pinimg.com/originals/b1/a5/31/b1a531387792bd946642e80ac2a1487d.jpg" alt="##BUBBLEGUM_POP##IS_HERE_TO_STAY" >
</div>
</div>
<div class='panelColumn'>
<div class='rightColumn'>
<img src="https://hips.hearstapps.com/hmg-prod.s3.amazonaws.com/images/oct-digital-cover-11-12-1573592748.jpg" alt="Girl in a jacket" >
</div>
</div>
</div>
</div>
<div class='some-page-wrapper'>
<div class='row'>
<div class='column'>
<div class='blue-column'>
<img src="https://lh4.googleusercontent.com/vcr_xIzszUWnLC0ed3ONKnIrRQ9WKyQS-SmwPyRGHGBAPa1Ujiws2G7QH_4R8u2cXq5bSJ9WPIncccXCdmgqqBd30CMlfu9rfKHoms4W0sR3dgSgpXNF2mHyvBMDQacn1NpLWrYW" alt="Girl in a jacket" >
</div>
</div>
<div class='column'>
<div class='green-column'>
<img src="https://lh4.googleusercontent.com/vcr_xIzszUWnLC0ed3ONKnIrRQ9WKyQS-SmwPyRGHGBAPa1Ujiws2G7QH_4R8u2cXq5bSJ9WPIncccXCdmgqqBd30CMlfu9rfKHoms4W0sR3dgSgpXNF2mHyvBMDQacn1NpLWrYW" alt="Girl in a jacket" >
</div>
</div>
</div>
</div>
<img src="https://assets.vogue.com/photos/5f9089a160138c079b7b38d5/16:9/w_1280,c_limit/00_social.jpg">
<div class="pinupGallery">
<img class="pinupImage featured-pinupImage" src="https://mir-s3-cdn-cf.behance.net/project_modules/2800_opt_1/bd2087144034631.62851b973d0ff.jpg" alt="">
<img class="pinupImage" src="https://mir-s3-cdn-cf.behance.net/project_modules/2800_opt_1/bd2087144034631.62851b973d0ff.jpg" alt="">
<img class="pinupImage" src="https://mir-s3-cdn-cf.behance.net/project_modules/2800_opt_1/bd2087144034631.62851b973d0ff.jpg" alt="">
<img class="pinupImage" src="https://mir-s3-cdn-cf.behance.net/project_modules/2800_opt_1/bd2087144034631.62851b973d0ff.jpg" alt="">
</div>
<img src="https://im.vsco.co/aws-us-west-2/12f8b0/56497/5fc45a98e1ebb64f08283c25/vsco5fc45a9961d50.jpg" alt="Girl in a jacket" >
<div class='twoPanelSpread'>
<div class='row'>
<div class='panelColumn'>
<div class='leftColumn'>
<img src="https://d1a3azwbayblep.cloudfront.net/etwatermark.php?image=media765/0007655105/0007655105_SM_1433397196.jpg" alt="##BUBBLEGUM_POP##IS_HERE_TO_STAY" >
</div>
</div>
<div class='panelColumn'>
<div class='rightColumn'>
<img src="https://d1a3azwbayblep.cloudfront.net/etwatermark.php?image=media765/0007655105/0007655105_SM_1433397196.jpg" alt="Girl in a jacket" >
</div>
</div>
</div>
</div>
<div class="pinupGallery">
<img class="pinupImage featured-pinupImage" src="https://mir-s3-cdn-cf.behance.net/project_modules/2800_opt_1/bd2087144034631.62851b973d0ff.jpg" alt="">
<img class="pinupImage" src="https://mir-s3-cdn-cf.behance.net/project_modules/2800_opt_1/bd2087144034631.62851b973d0ff.jpg" alt="">
<img class="pinupImage" src="https://mir-s3-cdn-cf.behance.net/project_modules/2800_opt_1/bd2087144034631.62851b973d0ff.jpg" alt="">
<img class="pinupImage" src="https://mir-s3-cdn-cf.behance.net/project_modules/2800_opt_1/bd2087144034631.62851b973d0ff.jpg" alt="">
</div>
<img src="https://raw.githubusercontent.com/ThakaRashard/bubblegumpop/gh-pages/img/National-Geographics-Madagascar-Pages-LOWQ-2000P.jpg">
<img src="https://raw.githubusercontent.com/ThakaRashard/bubblegumpop/gh-pages/img/SARTU2600.PNG">
<img src="https://raw.githubusercontent.com/ThakaRashard/bubblegumpop/gh-pages/img/SARTU2600c.PNG">
<img src="https://raw.githubusercontent.com/ThakaRashard/bubblegumpop/gh-pages/img/SARTU2600b.PNG">
<iframe width="100%" height="315" src="https://www.youtube.com/embed/vfJxDuHkpz4" title="YouTube video player" frameborder="0" allowfullscreen></iframe>
<img src="https://www.graffiti.org/atl/over_never_marietta_pawn_shop.jpg">
<img src="https://www.graffiti.org/atl/totem2_bua_wall_2_6_2006.jpg">
<img src="https://www.graffiti.org/atl/mylk_bua_wall_2_1_2006.jpg">
<img src="https://www.graffiti.org/atl/farwall_5_2006.jpg">
<img src="https://www.graffiti.org/atl/farwall_3_2006.jpg">
<img src="https://www.graffiti.org/atl/farwall_7_2006.jpg">
<img src="https://www.graffiti.org/atl/bua_wall_3_3_2006.jpg">
<img src="https://www.graffiti.org/atl/bua_column_3_2006.jpg">
<img src="https://www.graffiti.org/atl/wall_4_3_2006.jpg">
<img src="https://www.graffiti.org/atl/rine_atl11.jpg">
<img src="https://www.graffiti.org/atl/rine_atl09.jpg">
<img src="https://www.graffiti.org/atl/rine_atl10.jpg">
<img src="https://www.graffiti.org/atl/severam7.jpg">
<img src="https://www.graffiti.org/atl/revsev.jpg">
<img src="https://www.graffiti.org/atl/hence.jpg">
<img src="https://www.graffiti.org/atl/joe1.jpg">
<img src="https://www.graffiti.org/atl/eros1.jpg">
<img src="https://www.graffiti.org/atl/kast1.jpg">
<img src="https://www.graffiti.org/atl/62tm.jpg">
<img src="https://www.graffiti.org/atl/61tm.jpg">
<img src="https://www.graffiti.org/atl/68tm.jpg">
<img src="https://www.graffiti.org/atl/63tm.jpg">
<img src="https://www.graffiti.org/atl/am71.jpg">
<img src="https://www.graffiti.org/atl/anime4.jpg">
<img src="https://www.graffiti.org/atl/man.jpg">
<img src="https://www.graffiti.org/atl/noah.jpg">
<img src="https://www.graffiti.org/atl/civicwall.jpg">
<img src="http://www.patrikwallner.com/wp-content/uploads/2015/10/National-Geographics-Madagascar-Pages-LOWQ-2000P.jpg">
<img src="https://www.graffiti.org/mesa/such-pink-tackz.jpg" alt="Such, Lady Pink, Tackz AM7">
<iframe width="100%" height="300" scrolling="no" frameborder="no" allow="autoplay" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/291997699&color=%23919191&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&show_teaser=true&visual=true"></iframe>
<iframe width="100%" height="300" scrolling="no" frameborder="no" allow="autoplay" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/1011790114&color=%2370543c&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&show_teaser=true&visual=true"></iframe>
<iframe width="100%" height="400" scrolling="no" frameborder="no" allow="autoplay" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/1202773675&color=%23f40c38&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&show_teaser=true&visual=true"></iframe>
<iframe width="100%" height="300" scrolling="no" frameborder="no" allow="autoplay" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/1283041291&color=%23b3b18d&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&show_teaser=true&visual=true"></iframe>
<iframe width="100%" height="300" scrolling="no" frameborder="no" allow="autoplay" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/1284508618&color=%234cb4e4&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&show_teaser=true&visual=true"></iframe>
<iframe width="100%" height="300" scrolling="no" frameborder="no" allow="autoplay" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/1259032933&color=%23f40c38&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&show_teaser=true&visual=true"></iframe>
<iframe width="100%" height="300" scrolling="no" frameborder="no" allow="autoplay" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/668365295&color=%239c142a&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&show_teaser=true&visual=true"></iframe>
<iframe width="100%" height="300" scrolling="no" frameborder="no" allow="autoplay" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/1154264626&color=%239c142a&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&show_teaser=true&visual=true"></iframe>
<iframe width="100%" height="400" scrolling="no" frameborder="no" allow="autoplay" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/477282462&color=%23c18d76&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&show_teaser=true&visual=true"></iframe>
<iframe width="100%" height="350" scrolling="no" frameborder="no" allow="autoplay" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/308016226&color=%23646464&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&show_teaser=true&visual=true"></iframe>
<iframe width="100%" height="400" scrolling="no" frameborder="no" allow="autoplay" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/280458113&color=%23b4e4f4&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&show_teaser=true&visual=true"></iframe>
<iframe width="100%" height="300" scrolling="no" frameborder="no" allow="autoplay" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/293177372&color=%23a09c94&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&show_teaser=true&visual=true"></iframe>
<iframe width="100%" height="300" scrolling="no" frameborder="no" allow="autoplay" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/1296091366&color=%2370543c&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&show_teaser=true&visual=true"></iframe>
<iframe width="100%" height="300" scrolling="no" frameborder="no" allow="autoplay" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/425539491&color=%234cacb4&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&show_teaser=true&visual=true"></iframe>
<iframe width="100%" height="300" scrolling="no" frameborder="no" allow="autoplay" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/1044274951&color=%23845424&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&show_teaser=true&visual=true"></iframe>
<iframe width="100%" height="300" scrolling="no" frameborder="no" allow="autoplay" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/1298136826&color=%234cacb4&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&show_teaser=true&visual=true"></iframe>
<img src="https://apod.nasa.gov/apod/image/1803/Cycle-Panel-1024px.jpg">
<center>
<b> Phases of the Moon </b> <br>
<b>Image Credit &
<a href="lib/about_apod.html#srapply">Copyright</a>: </b>
<a href="http://www.jfgout.com">Jean-Francois Gout</a>,
<a href="http://www.pbase.com/polakis/">Tom Polakis</a>
</center> <p>
<b> Explanation: </b>
<a href="ap171203.html">Look at the Moon</a>
every night and its visible sunlit portion gradually changes.
<a href="https://svs.gsfc.nasa.gov/4604">In phases progressing</a>
from New Moon to Full Moon to New Moon again,
a lunar cycle or lunation is completed in about 29.5 days.
Top left to bottom right, these frames show the range of
lunar phases for 25 consecutive nights beginning on January 18,
following an
<a href="https://www.youtube.com/watch?v=iLTgUvGLxxA">almost
complete lunation</a>.
They skip the 2 days just after and 2 days before
<a href="http://www.astrophoto.fr/new_moon_2013july8.html">New Moon</a>,
when the lunar phase is at best a narrow crescent, close to the Sun
and <a href="ap080411.html">really hard to see</a>.
Of course, mostly clear Arizona night skies and a little help from
a friend were required to complete this lunar cycle project,
imaging in early evening for the first half and
late evening and early morning for the second half of the lunation.
For extra credit, the cycle was centered on the Full Moon of January 31.
That was the second Full Moon in January, when the Moon was near lunar
orbit perigee and took on reddish hues during a
<a href="https://www.nasa.gov/feature/
super-blue-blood-moon-coming-jan-31">total lunar eclipse</a>.
</div>
<img src="https://apod.nasa.gov/apod/image/2009/PairsMoonPace.jpg">
<center>
<b> Moon Pairs and the Synodic Month </b> <br>
<b>Image Credit &
<a href="lib/about_apod.html#srapply">Copyright</a>: </b>
<a href="https://greenflash.photo/about-me/">Marcella Giulia Pace</a>
</center> <p>
<b> Explanation: </b>
<a href="https://moon.nasa.gov/observe-the-moon-night/about/overview/">Observe the Moon</a> each night and
its visible sunlit portion will gradually change.
<a href="https://svs.gsfc.nasa.gov/Gallery/moonphase.html">In phases progressing</a>
from New Moon to Full Moon to New Moon again, a lunar cycle or
<a href="http://astropixels.com/ephemeris/moon/synodicmonth2001.html">synodic month</a>
is completed in about 29.5 days.
They look full, but top left to bottom right these panels do
show the range of lunar phases for a complete
<a href="https://greenflash.photo/portfolio/august-2019-all-moon-phases-in-a-month/">synodic month during August 2019</a>
from Ragusa, Sicily, Italy, planet Earth.
For this lunar cycle project the panels organize
images of the lunar phases in pairs.
Each individual image is paired with another image separated by
about 15 days, or approximately half a synodic month.
As a result the opposite sunlit portions complete the
lunar disk and the shadow line at the boundary of lunar night and day, the
terminator, steadily marches across the Moon's
<a href="http://lroc.sese.asu.edu/posts/293">familiar nearside</a>.
For extra credit, what lunar phase would you pair with the Moon tonight?
<img src="https://apod.nasa.gov/apod/image/1505/AuroraNorway_Richardsen_1080.jpg" >
<b> An Unexpected Aurora over Norway </b> <br>
<b> Image Credit & Copyright: </b>
<a href="http://trichardsen.smugmug.com/About-me">Tommy Richardsen</a>
<p>
<b> Explanation: </b>
Sometimes the sky lights up unexpectedly.
A trip to northern Norway to photograph
<a href="http://www.nasa.gov/mission_pages/sunearth/news/gallery/aurora-index.html"
>auroras</a> was not going as well as hoped.
It was now past midnight in
<a href="http://en.wikipedia.org/wiki/Nordreisa">Steinsvik</a>,
<a href="http://en.wikipedia.org/wiki/Troms">Troms</a>, in northern
<a href="http://en.wikipedia.org/wiki/Norway">Norway</a>, and the date was 2014 February 8.
Despite
<a href="http://spaceweather.com/archive.php?view=1&day=08&month=02&year=2014"
>recent activity</a> on the Sun, the skies were
<a href="http://www.shizarium.ru/wp-content/gallery/animals5/34520-114759-ba1d04b3a7e17d10d0a272533ca71316.jpg">disappointing</a>.
Therefore, the astrophotographer began packing up to go.
His brother began searching for a missing lens cap.
When the sky suddenly exploded with
<a href="ap141103.html">spectacular aurora</a>.
Reacting quickly,
<a href="http://www.tommyrichardsen.com/Store/Nightscapes/i-27DK9gn"
>a sequence</a> detailing dramatic
<a href="http://www.webexhibits.org/causesofcolor/4D.html">green</a> curtains was captured,
with the bright Moon near the image center, and the lens-cap seeking brother on the far right.
The <a href="ap110328.html">auroral flare</a> lasted only a few minutes,
but the memory of this event, the photographer speculates, will last much longer.
<div class='some-page-wrapper'>
<div class='row'>
<div class='column'>
<div class='blue-column'>
<img src="https://apod.nasa.gov/apod/image/9701/pillars3_hst.jpg" alt="Girl in a jacket" >
</div>
</div>
<div class='column'>
<div class='green-column'>
<img src="https://apod.nasa.gov/apod/image/9701/pillars3_hst.jpg" alt="Girl in a jacket" >
</div>
</div>
</div>
<a href="https://slate.com/technology/2017/03/did-the-cia-really-astrally-project-to-mars-in-1984.html">##DID_THE_CIA##ASTRAL_PROJECT_TO_MARS</a>
<a href="https://comicbook.com/irl/news/cia-documents-leak-extrasensory-perception-mind-telepathy-reveal/">##EXTRA_SENSORY_PERCEPTION##</a>
<a href="https://www.vice.com/en/article/7k9qag/how-to-escape-the-confines-of-time-and-space-according-to-the-cia">##RAVEN_AT_VICE_KNOWS_PSYCHIC_SHIT##</a>
<a href="https://www.nsa.gov/portals/75/documents/news-features/declassified-documents/cryptologs/cryptolog_85.pdf">##NSA_TYPESHIT_wit_DAH_SOViETS</a>
<a href="https://jamesaconrad.com/TK/US-government-interest-in-telekinesis-and-psychokinesis.html">##PSYCHIC_ARMY##ALEX_JONES_and_DAVID_ICK_KNOW_ALL_ABOUT_IT</a>
<a href="https://youtu.be/tWpQNexUZUQ">##LETHAL_ENFORCERS_2##GUN_FIGHTERS##</a><a href="https://youtu.be/6nwA8oPkaSg">##FORZA5_STi</a><a href="https://www.youtube.com/embed/O9MIvIVWq3E">##SQUARE_ENIX_KNOWS_THAKA_WANTS##A_DRIVING_GAME##</a> <a href="https://en.wikipedia.org/wiki/Stargate_Project">##STARGATE_PROJECT##</a>
<a href="https://www.californiapsychics.com/blog/psychic-tools-abilities/benefits-reading-remote-viewing-psychic.html">The Benefits of Reading with a Remote Viewing Psychic</a><a href="https://www.cia.gov/readingroom/docs/CIA-RDP96-00792R000700620001-2.pdf">##PARAPSYCHOLOGY_COMMUNiCATiON_BARRiERS</a>
<a href="https://www.gaia.com/article/what-is-remote-viewing">What is Remote Viewing?</a>
<a href="https://www.cia.gov/readingroom/docs/CIA-RDP96-00787R000200080050-9.pdf">##TELEPATHY_COULD_BE_REAL##</a> <a href="https://www.cia.gov/readingroom/docs/CIA-RDP96-00792R000300420008-1.pdf"> ##PSYCHIC_MAGNIFICATION## </a><a href="https://www.cia.gov/readingroom/docs/CIA-RDP96-00789R003300190006-0.pdf">##NONiNVASiVE_BRAiN_WORK##</a>
<a href="https://www.cia.gov/readingroom/docs/CIA-RDP96-00792R000400030001-0.pdf"> EXPERIMENTAL DREAM TELEPATHY-CLAIRVOYANCE AND GEOMAGNETIC ACTIVITY (MICHAEL PERSINGER) </a> <a href="https://www.cia.gov/readingroom/docs/CIA-RDP96-00787R000300180001-1.pdf"> ##EFFORTS_TO_IMPROVE_REMOTE_VIEWING##</a>
<a href="https://www.cia.gov/readingroom/docs/NSA-RDP96X00790R000100040012-1.pdf"> ##TELEKINESIS## </a>
<a href="https://www.cia.gov/readingroom/docs/CIA-RDP96-00792R000400100005-8.pdf"> PARAPSYCHOLOGY ##THE_ANGLOS_-->VS<--_THE_LATiNS##</a>
<a href="https://www.cia.gov/readingroom/freedom-information-act-5-usc-%C2%A7552"> ##THE_SOCIAL_MEDIA_COMPANIES_VIOLATED##THE_FREEDOM_OF_INFORMATION_ACT_IN_SUPRESSING
THE_SEARCH_FOR_THAKA_BEKELE_SELASSIE_aka_RASHARD_IMAN_KELLY_AHMEDs_FAMILY##</a>
<iframe width="100%" height="315" src="https://www.youtube.com/embed/pZ7Cc-OVTGg" title="YouTube video player" frameborder="0" allowfullscreen></iframe>
<iframe width="100%" height="315" src="https://www.youtube.com/embed/8BCwDA67CqY" title="YouTube video player" frameborder="0" allowfullscreen></iframe>
<a href="http://www.wefunkradio.com/"> #### TUNE_IN --> WeFunK_RADIO [##STREAMING## </a>
<a href="http://www.wefunkradio.com/show/498/play_aa"> WeFunk_RADIO_BACK_EPISODE --> EPISODE_498] </a>
<iframe width="100%" height="315" src="https://www.youtube.com/embed/kg3bXR-JyVs" title="YouTube video player" frameborder="0" allowfullscreen></iframe>
<div>
<div class='row'>
<div class='column'>
<div class='blue-column'>
<img src="https://i.ibb.co/bHzN2nZ/DEHi-Ji-A-LOVELY-Open-Mi-C.png" alt="Girl in a jacket" >
</div>
</div>
<div class='column'>
<div class='green-column'>
<img src="https://i.ibb.co/bHzN2nZ/DEHi-Ji-A-LOVELY-Open-Mi-C.png" alt="Girl in a jacket" >
</div>
</div>
<div class='column'>
<div class='blue-column'>
<img src="https://i.ibb.co/bHzN2nZ/DEHi-Ji-A-LOVELY-Open-Mi-C.png" alt="Girl in a jacket" >
</div>
</div>
</div>
Desolate, alone, tearfully searching, suddenly blinded by a tall dark and dreadlocked beauty. She painted a perfect picture around a perfect face and frame. She didn't bother to learn about his past cause she's caught up in this moment of visual bliss.
She took him in knowing fully well that she's not the only flower he's sippin nectar from. She's misguided by her mixed up illusions of love. Either she's watched too many fake ass love/drama movies, read too many romance novels, watched her parents in a disfunctional relationship spiraling down hill (thinking that's just how it is), or she just doesn't know what a real man is.
When the two of them make love (have sex), her mind is blown into the clouds, she returns to Atlantis, her spirit uplifted. Ready she is to plan their future garden, ignoring the weeds mixed in with the seed.
He drops hints of annoyance, never goes out of his way any more for her cause she's caught. Another fish in his sea. So she gives him space thinking absense makes the heart grow fonder. If you let someone go, and then they return, they belong to you, right?
Late at night her fingers wonder over the buttons on the phone, dialing his number, wanting some of what she's been missing some of his good "love".
He answers and quickly agrees at this late hour to come and give her a dosed of his medicine so that she may dream lovely dream. She no longer tossing and turning in bed. Twenty five minutes is all he needs and he will be there. Preperation begins. Mad dash to shower, shave (its winter so legs sometimes are forgotten with out the sun), light candles and incense, sheets fresh, madina oil dabed in all the right places, for this "her man" that is on his way.
Confusion
He KNOWS it's just sex, "we just kicking it, just chillin, connnecting even", he thinks in his head as he drives to her house. He imagines the hurting he's gonna put on her, giving her what she wants, right?
On the other end she's confusing and equating the feeling she gets when he's inside of her, the movement his body makes in sync with her's, the sweet and soft kisses of passion (lust), the eagerness of his return to her temple, with L-O-V-E.
Who is wrong in this situation, her assumptions or his free mind state? No boundaries were set, no plan. Many women fall into this catagory of believing love and sex go hand in hand. While Men, if not told directly what the intent is, will think nothing of having sex without commitment. The answer to all of this I believe is communication in the very begging, and waiting to explore the sexual realms of each other. Spirituallity should be the basis for all relationships, but as of right now 8 out of 10 times it's sex, in my researched, experienced opinion.
Lets start listening as well as speaking our hearts, instead of painting false pictures of clear situations. Love yourself and your divine mate will apear before your eyes, with no searching involved. But you must me ready physically, mentally, culturally, and spiritually.
just my view on thangs - Dehejia
</div>
<div class='some-page-wrapper'>
<div class='row'>
<div class='column'>
<div class='blue-column'>
<img src="https://i.ibb.co/wJvpMx2/DEHi-Ji-A-LOVELY.png" alt="Girl in a jacket" >
</div>
</div>
<div class='column'>
<div class='green-column'>
<img src="https://i.ibb.co/wJvpMx2/DEHi-Ji-A-LOVELY.png" alt="Girl in a jacket" >
</div>
</div>
</div>
Desolate, alone, tearfully searching, suddenly blinded by a tall dark and dreadlocked beauty. She painted a perfect picture around a perfect face and frame. She didn't bother to learn about his past cause she's caught up in this moment of visual bliss.
She took him in knowing fully well that she's not the only flower he's sippin nectar from. She's misguided by her mixed up illusions of love. Either she's watched too many fake ass love/drama movies, read too many romance novels, watched her parents in a disfunctional relationship spiraling down hill (thinking that's just how it is), or she just doesn't know what a real man is.
When the two of them make love (have sex), her mind is blown into the clouds, she returns to Atlantis, her spirit uplifted. Ready she is to plan their future garden, ignoring the weeds mixed in with the seed.
He drops hints of annoyance, never goes out of his way any more for her cause she's caught. Another fish in his sea. So she gives him space thinking absense makes the heart grow fonder. If you let someone go, and then they return, they belong to you, right?
Late at night her fingers wonder over the buttons on the phone, dialing his number, wanting some of what she's been missing some of his good "love".
He answers and quickly agrees at this late hour to come and give her a dosed of his medicine so that she may dream lovely dream. She no longer tossing and turning in bed. Twenty five minutes is all he needs and he will be there. Preperation begins. Mad dash to shower, shave (its winter so legs sometimes are forgotten with out the sun), light candles and incense, sheets fresh, madina oil dabed in all the right places, for this "her man" that is on his way.
Confusion
He KNOWS it's just sex, "we just kicking it, just chillin, connnecting even", he thinks in his head as he drives to her house. He imagines the hurting he's gonna put on her, giving her what she wants, right?
On the other end she's confusing and equating the feeling she gets when he's inside of her, the movement his body makes in sync with her's, the sweet and soft kisses of passion (lust), the eagerness of his return to her temple, with L-O-V-E.
Who is wrong in this situation, her assumptions or his free mind state? No boundaries were set, no plan. Many women fall into this catagory of believing love and sex go hand in hand. While Men, if not told directly what the intent is, will think nothing of having sex without commitment. The answer to all of this I believe is communication in the very begging, and waiting to explore the sexual realms of each other. Spirituallity should be the basis for all relationships, but as of right now 8 out of 10 times it's sex, in my researched, experienced opinion.
Lets start listening as well as speaking our hearts, instead of painting false pictures of clear situations. Love yourself and your divine mate will apear before your eyes, with no searching involved. But you must me ready physically, mentally, culturally, and spiritually.
just my view on thangs - Dehejia
</div>
<a href="https://board.okayplayer.com/okp.php?az=show_mesg&forum=20&topic_id=7575&mesg_id=7589&page=" >###OKAY_PLAYER_SLUM_VILLAGE_ENTRY_BY_MY_DEPARTED_FRIEND##ALPHONSO_GREGORY##</a>
Check it my flow be 3 parts like a Trinity
But me be one man rolling through Infinity\
I walk miles and miles through Slum Villages
Looking for MC�s to start scrimmages\ But they
styles is all Tainted so when I came with the realness
they all fainted\ They hearts are weak like heart attack patients\
My flows like blood they just couldn�t take it\
The blood I pump its turns to acid burning you Kats
with my hot classics\ I call you Kats XBOX�s
because your games can fit in my pocket\ Moving through
engines like a piston my style you can call it mad Precision\
I�m built Ford tough but I�m Focused\ No smoking mirrors no hocus-pocus
My flows no joke like the city of Detroit wrote this\ Writing rhymes heavy like
T3, Baatin, and Elzhi\ I be the rhyme synthesizer I size up rhymes to make
them liver so when I cut ya it feels like the barber\
My competition had them all wishing that I would quite this game because I got them
all looking lame like kids walking cripple my girl she got big nipples and she
throws fits when she thinks she got a big pimple those holes in her face are called
dimples\ Most of you Kats got holes in your rhymes and that�s why the XBOX is
Mine
"Thoughts and dreams drip from your mouth, onto my tongue, down my throat to my heart"-symphonygoddess
"I wish I wasn't me sometimes"-BiLal
"The slowest melodies coated me, soothing rhythms stoked the fire in my belly, music was the lamb that made a loin out of me"-esthero
Po'ADDiX http://www.geocities.com/sb202us/index.htm
"Thoughts and dreams drip from your mouth, onto my tongue, down my throat to my heart"-symphonygoddess
"I wish I wasn't me sometimes"-BiLal
##_TOKIMONSTA##IS_COMING##IN_Ah_BOUT_10_DAYS_OR_LESS
<iframe width="100%" height="315" src="https://www.youtube.com/embed/9ENMHp4DKEk" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<iframe width="100%" height="315" src="https://www.youtube.com/embed/Jf63Wv6Atl8" title="YouTube video player" frameborder="0" allowfullscreen></iframe>
<iframe width="100%" height="315" src="https://www.youtube.com/embed/zrY8TPi0kIs" title="YouTube video player" frameborder="0" allowfullscreen></iframe>
<video controls width="100%">
<source src="https://mirkoreisser.de/wp-content/uploads/2022/03/NFT_DAIMforUkraine_ArtistForUkraine_2022_Preview.mp4"
type="video/mp4">
Sorry, your browser doesn't support embedded videos.
</video>
<div class='twoPanelSpread'>
<div class='row'>
<div class='panelColumn'>
<div class='leftColumn'>
<img src="https://www.bhphotovideo.com/cdn-cgi/image/format=auto,fit=scale-down,width=500,quality=95/https://www.bhphotovideo.com/images/images500x500/canon_5554c002_rf_5_2mm_f_2_8l_dual_1633518555_1665911.jpg" alt="##BUBBLEGUM_POP##IS_HERE_TO_STAY" >
</div>
</div>
<div class='panelColumn'>
<div class='rightColumn'>
<img src="https://static.bhphoto.com/images/multiple_images/images500x500/1633518955_IMG_1616416.jpg" alt="Girl in a jacket" >
</div>
</div>
</div>
</div>
<img src="https://i.discogs.com/4fW7p6CcV1euzfubea03VC9oD3x2tqASxnfjOdeMItI/rs:fit/g:sm/q:90/h:600/w:595/czM6Ly9kaXNjb2dz/LWRhdGFiYXNlLWlt/YWdlcy9SLTEwMDk5/MzUyLTE0OTE1OTE2/NzEtODIwMS5qcGVn.jpeg" >
<div class='twoPanelSpread'>
<div class='row'>
<div class='panelColumn'>
<div class='leftColumn'>
<img src="https://i.discogs.com/rPv_MZPxS8iZgQITvzOgEo2WV5yd-gbWldGRhwedjpU/rs:fit/g:sm/q:90/h:371/w:600/czM6Ly9kaXNjb2dz/LWRhdGFiYXNlLWlt/YWdlcy9SLTEwMDk5/MzUyLTE0OTE1OTE2/NzEtMzY0Ni5qcGVn.jpeg" alt="##BUBBLEGUM_POP##IS_HERE_TO_STAYaHOLE_TO_ANOTHER_UNIVERSE_IS_OUR_FANART_FROM_THE_SQUARE_ENIX_GAME_LIFE_IS_STRANGE" >
</div>
</div>
<div class='panelColumn'>
<div class='rightColumn'>
<img src="https://i.discogs.com/rPv_MZPxS8iZgQITvzOgEo2WV5yd-gbWldGRhwedjpU/rs:fit/g:sm/q:90/h:371/w:600/czM6Ly9kaXNjb2dz/LWRhdGFiYXNlLWlt/YWdlcy9SLTEwMDk5/MzUyLTE0OTE1OTE2/NzEtMzY0Ni5qcGVn.jpeg" alt="HOLE_TO_ANOTHER_UNIVERSE_IS_MY_FANART_FROM_THE_SQUARE_ENIX_GAME_LIFE_IS_STRANGE" >
</div>
</div>
</div>
</div>
<img src="https://raw.githubusercontent.com/ThakaRashard/bubblegumpop/gh-pages/img/Screenshot%202022-07-01%2012.48.33%20AM.png" >
<img src="https://raw.githubusercontent.com/ThakaRashard/bubblegumpop/gh-pages/img/Screenshot%202022-07-01%2012.49.16%20AM.png" >
https://youtu.be/QaR843im04A
<div class='some-page-wrapper'>
<div class='row'>
<div class='column'>
<div class='blue-column'>
<a href="https://www.youtube.com/watch?v=7TRStCd7qYU"> <img src="https://github.com/ThakaRashard/holetoanotheruniverse/blob/gh-pages/img/vsco5cfd9f85d1d95.jpg?raw=true" alt="Girl in a jacket" > </a>
</div>
</div>
<div class='column'>
<div class='green-column'>
<a href="https://www.youtube.com/watch?v=rOGWygPcv78"> <img src="https://github.com/ThakaRashard/holetoanotheruniverse/blob/gh-pages/img/vsco5cfd9f85d1d95.jpg?raw=true" alt="Girl in a jacket" > </a>
</div>
</div>
</div>
</div>
<div class='some-page-wrapper'>
<div class='row'>
<div class='column'>
<div class='blue-column'>
<a href="https://www.youtube.com/watch?v=ARtRsMnTqQc"> <img src="https://raw.githubusercontent.com/ThakaRashard/holetoanotheruniverse/gh-pages/img/WEenNWEE.jpg" alt="Girl in a jacket" > </a>
</div>
</div>
<div class='column'>
<div class='green-column'>
<a href="https://youtu.be/ZmPfxMBNilg"> <img src="https://raw.githubusercontent.com/ThakaRashard/holetoanotheruniverse/gh-pages/img/WEenNWEE.jpg" alt="Girl in a jacket" > </a>
</div>
</div>
</div>
</div>
<div class='twoPanelSpread'>
<div class='row'>
<div class='panelColumn'>
<div class='leftColumn'>
<img src="https://upload.wikimedia.org/wikipedia/en/4/42/Mulatto_%22Bitch_from_Da_Souf%22.png" alt="##BUBBLEGUM_POP##IS_HERE_TO_STAY" >
</div>
</div>
<div class='panelColumn'>
<div class='rightColumn'>
<img src="https://images.genius.com/e340ddf6971616a68049fecc163ec30c.1000x1000x1.png" alt="##BUBBLEGUM_POP##IS_HERE_TO_STAY" >
</div>
</div>
</div>
</div>
<div class='twoPanelSpread'>
<div class='row'>
<div class='panelColumn'>
<div class='leftColumn'>
<img src="https://mirkoreisser.de/wp-admin/admin-ajax.php?action=kernel&p=image&src=WyJ3cC1jb250ZW50XC91cGxvYWRzXC8yMDE5XC8xMFwvTWlya28tUmVpc3Nlci1EQUlNX0ZpbmVBcnQtUHJpbnRzX21yZjMxNzU2LTY0OS5qcGciLFtbInR5cGUiLFsid2VicCIsIjg1Il1dXV0%3D&hash=41e376ca3b4a1a3be4163f0ca652ae78" alt="##DAiM_IS_HERE_TO_STAY_WiTH_BUBBLEGUMPOP" >
</div>
</div>
<div class='panelColumn'>
<div class='rightColumn'>
<img src="https://mirkoreisser.de/wp-admin/admin-ajax.php?action=kernel&p=image&src=WyJ3cC1jb250ZW50XC91cGxvYWRzXC8yMDE5XC8xMFwvTWlya28tUmVpc3Nlci1EQUlNX0ZpbmVBcnQtUHJpbnRzX21yZjMxNzU2LTY0OS5qcGciLFtbInR5cGUiLFsid2VicCIsIjg1Il1dXV0%3D&hash=41e376ca3b4a1a3be4163f0ca652ae78" alt="Girl in a jacket" >
</div>
</div>
</div>
</div>
<iframe width="100%" height="300" scrolling="no" frameborder="no" allow="autoplay" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/1254671677&color=%23a89c90&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&show_teaser=true&visual=true"></iframe>
<iframe width="100%" height="300" scrolling="no" frameborder="no" allow="autoplay" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/1297575751&color=%23cbcbcb&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&show_teaser=true&visual=true"></iframe>
<img src="https://www.graffiti.org/atl/sever_totem2_hense_b12df1_b.jpg" >
<img src="https://im.vsco.co/aws-us-west-2/12f8b0/56497/5fc456bce1ebb64f08283bf2/vsco5fc456bd41267.jpg" >
<img src="https://im.vsco.co/aws-us-west-2/12f8b0/56497/5fc458d2e1ebb64f08283c10/vsco5fc458d330a8d.jpg" >
<iframe width="100%" height="300" scrolling="no" frameborder="no" allow="autoplay" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/1153502092&color=%236c3f42&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&show_teaser=true&visual=true"></iframe>
<img src="https://ftp.icm.edu.pl/packages/graffiti.old/boston/zelot_rath_turn_kem5_prey06.jpg" >
<img src="https://im.vsco.co/aws-us-west-2/12f8b0/56497/5fc45b01e1ebb64f08283c31/vsco5fc45b027a916.jpg" >
<img src="https://ftp.icm.edu.pl/packages/graffiti.old/boston/zealot_aves_mise_tint_boston_2006.jpg" >
<img src="https://im.vsco.co/aws-us-west-2/12f8b0/56497/5fc538211d7831291c000007/vsco5fc538244c543.jpg" >
<img src="https://www.graffiti.org/boston/mise_back_boston_2006_71.jpg" >
<img src="https://im.vsco.co/aws-us-west-2/12f8b0/56497/600b63321d78311648000003/vsco600b633468109.jpg" >
<img src="https://www.graffiti.org/boston/a36wet.jpg" >
<img src="https://im.vsco.co/aws-us-west-2/12f8b0/56497/600b63321d78311648000001/vsco600b633af04a1.jpg" >
<img src="https://www.graffiti.org/atl/haze7.jpg" >
<img src="https://image-aws-us-west-2.vsco.co/12f8b0/56497/60218c77ef098d3a41bfa7ad/vsco60218c793112f.jpg" >
<iframe width="100%" height="300" scrolling="no" frameborder="no" allow="autoplay" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/1208259943&color=%236c3f42&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&show_teaser=true&visual=true"></iframe>
<iframe width="100%" height="300" scrolling="no" frameborder="no" allow="autoplay" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/747778534&color=%236c3f42&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&show_teaser=true&visual=true"></iframe>
<iframe width="100%" height="300" scrolling="no" frameborder="no" allow="autoplay" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/390462771&color=%238c8c8c&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&show_teaser=true&visual=true"></iframe>
<div class='twoPanelSpread'>
<div class='row'>
<div class='panelColumn'>
<div class='leftColumn'>
<img src="//im.vsco.co/aws-us-west-2/12f8b0/56497/60256dab80d02b397eaa596b/vsco60256daca8c2c.jpg?w=350&dpr=1" alt="##BUBBLEGUM_POP##IS_HERE_TO_STAY" >
</div>
</div>
<div class='panelColumn'>
<div class='rightColumn'>
<img src="//im.vsco.co/aws-us-west-2/12f8b0/56497/60256dab80d02b397eaa596b/vsco60256daca8c2c.jpg?w=350&dpr=1" alt="##BUBBLEGUM_POP##IS_HERE_TO_STAY" >
</div>
</div>
</div>
</div>
<img src="https://i.discogs.com/jNB0ym679sbB-AhjVnk9FExyO0XNV3h_gNV5jTZUtW4/rs:fit/g:sm/q:90/h:355/w:600/czM6Ly9kaXNjb2dz/LWRhdGFiYXNlLWlt/YWdlcy9BLTYwOTEw/LTEzODg4MDIxNzEt/Nzk0NC5qcGVn.jpeg" >
<img src="https://thesource.com/wp-content/uploads/2022/02/AB3A9173-700x400.jpg" >
<div class="divAlbumReview" style="background-image: url( https://i.slkimg.com/isv1/artist/v5aa5fa46a24672bf/168214/1290171/web/3/center/5,0/300x300.jpg); no-repeat center center fixed" >
<img style="float:left;width:50%;" src="https://i.discogs.com/FXr1dApzVjeUrr1_Zvd8EfnrH2llviPnYdRWS3nGeFA/rs:fit/g:sm/q:90/h:600/w:600/czM6Ly9kaXNjb2dz/LWRhdGFiYXNlLWlt/YWdlcy9SLTEzMTE3/MjEtMTYyNjU5NjYx/NS02NTMyLmpwZWc.jpeg" />
<img style="float:right;width:50%;" src="https://i.discogs.com/l6EPHxxFytxo2nyj9SOhUPaaKusc6l41wE7EdtN9BvQ/rs:fit/g:sm/q:90/h:598/w:600/czM6Ly9kaXNjb2dz/LWRhdGFiYXNlLWlt/YWdlcy9SLTEzMTE3/MjEtMTYyNjU5NjYx/NS02MjQ2LmpwZWc.jpeg" />
<p class="pdivAlbumReview">
<span class="firstcharacter">The Supremes – I Hear A Symphony
Label: Motown – M5-147V1</span>
From DiSCOGS, the free encyclopedia
Format:
Vinyl, LP, Album, Reissue
Country: US
Released: 1981
Genre: Funk / Soul, Pop
Style: Rhythm & Blues, Soul
A1 Stranger In Paradise
Composed By [Music] – Alexander Borodin
Written-By – George Forrest, Robert Craig Wright
A2 Yesterday
Producer – Norman Whitfield
Written-By – Lennon-McCartney
A3 I Hear A Symphony
Written-By – Holland-Dozier-Holland
A4 Unchained Melody
Written-By – Alex North, Hy Zaret
A5 With A Song In My Heart
Written-By – Rodgers & Hart
A6 Without A Song
Written-By – Billy Rose, Edward Eliscu, Vincent Youmans
B1 My World Is Empty Without You
Written-By – Holland-Dozier-Holland
B2 A Lover's Concerto
Written-By – Denny Randell, Sandy Linzer
B3 Any Girl In Love (Knows What I'm Going Through)
Written-By – Holland-Dozier-Holland
B4 Wonderful, Wonderful
Written-By – Ben Raleigh, Sherman Edwards
B5 Everything Is Good About You
Written-By – Edward Holland, Jr., James Dean (3)
B6 He's All I Got
Written-By – Holland-Dozier-Holland
Backing Vocals – Florence Ballard, Mary Wilson
Lead Vocals – Diana Ross
Producer – Holland & Dozier (tracks: A1, A3 to B6)
"1st pressings" of this release are “MM 643 Mono” or MS 643 Stereo”, they have a full color front artwork with no border only a top white banner with Stereo text. Back cover states copyright 1966 in lower left corner.
Reissues have copyright 1966 info in middle of back panel and have full front framing white border with Stereo in text on top.</p>
<iframe width="100%" height="315" src="https://www.youtube.com/embed/bpL1TTxffO0" title="YouTube video player" allowfullscreen></iframe>
</div>
[HUMA](https://www.pinterest.com/pin/7107311903800054/)
<a href="https://youtu.be/DFMEBquxeO8" target="_blank" ><img src="https://www.typedifferent.com/fonts/bd_rainbow/bd_rainbow_example1.jpg" /> </a>
<img src="https://thesource.com/wp-content/uploads/2022/02/AB3A9173-700x400.jpg" alt="####KALI_IS_MY_WIFE_AS_WELL_MUNA_is_STILL_MUNI##BUBBLEGUM_POP##IS_HERE_TO_STAY" >
<img src="https://i.ytimg.com/vi/WaLr2R2Dxuc/maxresdefault.jpg" alt="####KALI_IS_MY_WIFE_AS_WELL_MUNA_is_STILL_MUNI##BUBBLEGUM_POP##IS_HERE_TO_STAY" >
<a href="https://youtu.be/Qw-HQxpewWI" alt="DEAR_SAATU##_ITS_TIME_FOR_A_DEEP_SURPRISE" ><img src="https://f4.bcbits.com/img/a4167468696_10.jpg" alt="##BUBBLEGUM_POP##IS_HERE_TO_STAY" > </a>
<div class='twoPanelSpread'>
<div class='row'>
<div class='panelColumn'>
<div class='leftColumn'>
<img src="https://raw.githubusercontent.com/ThakaRashard/bubblegumpop/gh-pages/img/NATURALMYSTIC45a.jpg" alt="##BUBBLEGUM_POP##IS_HERE_TO_STAY" >
</div>
</div>
<div class='panelColumn'>
<div class='rightColumn'>
<img src="https://i.discogs.com/-cZrLCOY7Z_umwRKPsdQjjiSrwopzp17V5OMFZOP-Ms/rs:fit/g:sm/q:90/h:600/w:588/czM6Ly9kaXNjb2dz/LWRhdGFiYXNlLWlt/YWdlcy9SLTEzNzM5/NjMtMTU4NzQ4OTE4/OC03OTE5LmpwZWc.jpeg" alt="Girl in a jacket" >
</div>
</div>
</div>
</div>
<p class="codepen" data-height="300" data-default-tab="html,result" data-slug-hash="mdBOwOG" data-user="thakarashard" style="height: 300px; box-sizing: border-box; display: flex; align-items: center; justify-content: center; border: 2px solid; margin: 1em 0; padding: 1em;">
<span>See the Pen <a href="https://codepen.io/thakarashard/pen/mdBOwOG">
NEON TEXT </a> by ThakaRashard (<a href="https://codepen.io/thakarashard">@thakarashard</a>)
on <a href="https://codepen.io">CodePen</a>.</span>
</p>
<script async src="https://cpwebassets.codepen.io/assets/embed/ei.js"></script>
<h2> [Hook: Rell]
Came up out the darkness, searching for light
I know home is where my heart is
And now nothing seems right
I tried to make peace and cut my losses
And carry on somehow
But I've come much too far, man
Too late to turn back now, here I go again
Here I go again
Here I go again
Here I go again
</h2>
<h2> SHAKE THAT LOAD OFF
</h2>
<h2> SHAKE THAT LOAD OFF
</h2>
<h2> SHAKE THAT LOAD OFF
</h2>
<h2> SHAKE THAT LOAD OFF
</h2>
<h2> SHAKE THAT LOAD OFF
</h2>
<div class='twoPanelSpread'>
<div class='row'>
<div class='panelColumn'>
<div class='leftColumn'>
<img src="https://raw.githubusercontent.com/ThakaRashard/bubblegumpop/gh-pages/img/NATURALMYSTIC45a.jpg" alt="##BUBBLEGUM_POP##IS_HERE_TO_STAY" >
</div>
</div>
<div class='panelColumn'>
<div class='rightColumn'>
<img src="https://raw.githubusercontent.com/ThakaRashard/bubblegumpop/gh-pages/img/bob-marley-natural-mystic-12-hear-lee-perry-roots-dub-reggae-daddy-kool_9210518.jpg" alt="Girl in a jacket" >
</div>
</div>
</div>
</div>
<a href="https://youtu.be/DFMEBquxeO8" target="_blank" ><img src="https://raw.githubusercontent.com/ThakaRashard/bubblegumpop/gh-pages/img/VAliD_CSS_ERiKA_THANKS_SO_MUCH_FOR_THE_MEMORIES_AND_SUPPORT_IN_TELEPATHYTHE_oTHER_night.PNG" > </a>