forked from ThakaRashard/rashardmro
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscratchpad.txt
More file actions
5452 lines (4800 loc) · 346 KB
/
scratchpad.txt
File metadata and controls
5452 lines (4800 loc) · 346 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- Begin Jekyll SEO tag v2.8.0 -->
<title>Rashard Mars Reconnaissance Orbiter of NasaJPL | RashardMRO</title>
<meta name="generator" content="Jekyll v3.10.0" />
<meta property="og:title" content="Rashard Mars Reconnaissance Orbiter of NasaJPL" />
<meta property="og:locale" content="en_US" />
<meta name="description" content="MyWorkLog+STUFF" />
<meta property="og:description" content="MyWorkLog+STUFF" />
<link rel="canonical" href="https://ricothaka.github.io/rashardmro/" />
<meta property="og:url" content="https://ricothaka.github.io/rashardmro/" />
<meta property="og:site_name" content="RashardMRO" />
<meta property="og:type" content="website" />
<meta name="twitter:card" content="summary" />
<meta property="twitter:title" content="Rashard Mars Reconnaissance Orbiter of NasaJPL" />
<script type="application/ld+json">
{"@context":"https://schema.org","@type":"WebSite","description":"MyWorkLog+STUFF","headline":"Rashard Mars Reconnaissance Orbiter of NasaJPL","name":"RashardMRO","url":"https://ricothaka.github.io/rashardmro/"}</script>
<!-- End Jekyll SEO tag -->
<link rel="stylesheet" href="/rashardmro/assets/css/style.css?v=f3826a9a851ca46b2dc619d285d3678cc1247258">
<script src="https://code.jquery.com/jquery-3.3.0.min.js" integrity="sha256-RTQy8VOmNlT6b2PIRur37p6JEBZUE7o8wPgMvu18MC4=" crossorigin="anonymous"></script>
<script src="/rashardmro/assets/js/main.js"></script>
<!--[if lt IE 9]>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js" integrity="sha256-3Jy/GbSLrg0o9y5Z5n1uw0qxZECH7C6OQpVBgNFYa0g=" crossorigin="anonymous"></script>
<![endif]-->
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<style>
@import url('https://fonts.googleapis.com/css2?family=Martian+Mono:wght@100..800&display=swap');
</style>
<!-- start custom head snippets, customize with your own _includes/head-custom.html file -->
<!-- Setup Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-873R6JDQBF"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-873R6JDQBF');
</script>
<!-- Google tag (gtag.js) -->
<!-- You can set your favicon here -->
<!-- link rel="shortcut icon" type="image/x-icon" href="/rashardmro/favicon.ico" -->
<!-- end custom head snippets -->
</head>
<body markdown="1">
<div class="wrapper" >
<nav>
<ul></ul>
</nav>
<div class="top-container">
<IMG src="https://upload.wikimedia.org/wikipedia/commons/thumb/a/a3/NASA_Worm_logo.svg/508px-NASA_Worm_logo.svg.png" />
</div>
<section class="floatleft floatright">
<h3 id="mars-missionobjectives-mars-reconnocinse-orbiter">Mars MissionObjectives <a href="https://hirise-pds.lpl.arizona.edu/PDS/CATALOG/MISSION.CAT">MArs Reconnocinse Orbiter</a></h3>
<p><a href="https://archives.cdn.sos.ca.gov/collections/1879/archive/1879-constitution.pdf">1879 California Constitution</a> <a href="https://web.archive.org/web/20140517123130/https://digital.library.unt.edu/ark:/67531/metacrs7397/m1/1/high_res_d/RS20217_2004Aug23.pdf">Equal Rights Amendments: State Provisions</a> <a href="https://archives.cdn.sos.ca.gov/collections/1849/images/1849Constitucion2.pdf">1849 California Constitution (spanish)</a> <a href="https://pds-imaging.jpl.nasa.gov/beta/search">PDS Cartography and Imaging Sciences Node - WebTool</a> <a href="https://github.com/ricoThaka/ricothaka.github.io/blob/pixelsquare/assets/pdf/computer-ethics-4e_compress.pdf">Computer Ethics 4th ed. Deborah G. Johnson</a> <a href="https://scienceandtechnology.jpl.nasa.gov/sites/default/files/documents/JPL_2022_Technology_Highlights.pdf">NASAJPL Technology Highlights 2022</a> <~ @whitehouse @deptofdefense thats a report that i missed from @nasa</p>
<h1 id="the-martian-2015-extended-1080p-brripx-264-aac-etrg">The. Martian. 2015. EXTENDED. 1080p. BRRip.x 264. AAC ETRG</h1>
<p>@nasa-jpl i was thinking that <a href="https://www.imdb.com/name/nm0000354/">Matt Damon</a> was teasing me bc <a href="https://www.youtube.com/watch?v=cvsUojE83b8">playboy</a> stole all my belongings when <a href="https://www.essence.com/tags/erika-kelly/">my wife left me…</a>
<a href="https://twitter.com/RealMattDamon"><img src="https://img.shields.io/badge/Social-RealMattDamon__-blue?style=social&logo=X" alt="Twitter Follow" /></a>
<a href="https://twitter.com/SenBillNelson"><img src="https://img.shields.io/badge/Social-SenBillNelson__-blue?style=social&logo=X" alt="Twitter Follow" /></a> <a href="https://yandex.com/images/search?from=tabbar&img_url=https%3A%2F%2Fwww.naplesnews.com%2Fgcdn%2Fauthoring%2Fauthoring-images%2F2024%2F02%2F13%2FUSAT%2F72580923007-xxx-nasa-tab-phobos.jpg%3Fcrop%3D3514%2C1977%2Cx0%2Cy748%26width%3D3200%26height%3D1801%26format%3Dpjpg%26auto%3Dwebp&lr=200&p=4&pos=23&rpt=simage&text=mars%20mosaic%20caltech">YANDEX</a></p>
<video controls="" preload="none" src="https://archive.org/download/the.-martian.-2015.-extended.-1080p.-brrip.x-264.-aac-etrg/The.Martian.2015.EXTENDED.1080p.BRRip.x264.AAC-ETRG.mp4" poster="https://giffiles.alphacoders.com/137/137674.gif">
Sorry, your browser doesn't support embedded videos, but don't worry, you can
<a href="https://archive.org/download/the.-martian.-2015.-extended.-1080p.-brrip.x-264.-aac-etrg/The.Martian.2015.EXTENDED.1080p.BRRip.x264.AAC-ETRG.mp4">download it</a>
and watch it with your favorite video player!
</video>
<p><a href="https://twitter.com/Tip"><img src="https://img.shields.io/badge/Social-Tip__-blue?style=social&logo=X" alt="Twitter Follow" /></a> <a href="https://www.officialti.com/">T.I.</a> thanks kid</p>
<iframe style="border-radius:12px" src="https://open.spotify.com/embed/track/78kVkpg0yX3jlTqzreFk0U?utm_source=generator&theme=0" width="100%" height="152" frameborder="0" allowfullscreen="" allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture" loading="lazy"></iframe>
<h1 id="phobos">PHOBOS</h1>
<p><img src="https://avatars.mds.yandex.net/get-mpic/4334579/img_id4537117976329318750.jpeg/orig" alt="phobos" /></p>
<h1 id="martian-polar-ice-caps">Martian polar ice caps</h1>
<picture>
<source srcset="https://upload.wikimedia.org/wikipedia/commons/thumb/6/62/Martian_north_polar_cap.jpg/1024px-Martian_north_polar_cap.jpg" media="(orientation: portrait)" />
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/6/62/Martian_north_polar_cap.jpg/1024px-Martian_north_polar_cap.jpg" alt="" />
</picture>
<p>@esa <a href="https://www.esa.int/Science_Exploration/Space_Science/Mars_Express/Water_at_Martian_south_pole">Water at Martian south pole</a></p>
<h1 id="-the-picture-element"><picture>: The Picture element</picture></h1>
<p>@blackgirlscode @normani im really enjoying HTML5 there are so many new tags that add more networking support so images dont go down or are rendered correctly <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/picture">ReadMore <code class="language-plaintext highlighter-rouge"><picture></code></a> @mozilla how do i know im a healthy web developer @nasa-jpl ? THats as u know our man browser on campus, im working on converting the <code class="language-plaintext highlighter-rouge"><picture></code> tag to markdown @kramdown <a href="https://ricothaka.github.io/rashardlearned/2024/11/26/RashardMRO-mars-reconnaissance-orbiter.html">RashardLEarned - -Mars TODAy</a></p>
<figure class="highlight"><pre><code class="language-html" data-lang="html"><span class="nt"><picture></span>
<span class="nt"><source</span> <span class="na">srcset=</span><span class="s">"/media/cc0-images/surfer-240-200.jpg"</span> <span class="na">media=</span><span class="s">"(orientation: portrait)"</span> <span class="nt">/></span>
<span class="nt"><img</span> <span class="na">src=</span><span class="s">"/media/cc0-images/painted-hand-298-332.jpg"</span> <span class="na">alt=</span><span class="s">""</span> <span class="nt">/></span>
<span class="nt"></picture></span>
[<span class="nt"><picture</span> <span class="na">srcset=</span><span class="s">"/media/cc0-images/surfer-240-200.jpg"</span> <span class="na">media=</span><span class="s">"(orientation: portrait)"</span> <span class="err"><</span><span class="na">img</span> <span class="na">src=</span><span class="s">"/media/cc0-images/painted-hand-298-332.jpg"</span> <span class="na">alt=</span><span class="s">""</span> <span class="nt">/></span> ]( <span class="nt"><img</span> <span class="na">src=</span><span class="s">"/media/cc0-images/painted-hand-298-332.jpg"</span> <span class="na">alt=</span><span class="s">""</span> <span class="nt">/></span>)</code></pre></figure>
<h1 id="mars-reconnaissance-orbiter">Mars Reconnaissance Orbiter</h1>
<blockquote>
<p>Jim Taylor, Dennis K. Lee, and Shervin Shambayati</p>
<h2 id="61-mission-overview-">6.1 Mission Overview <a href="https://upload.wikimedia.org/wikipedia/commons/6/6b/Mars_Reconnaissance_Orbiter_insignia.png"><img src="https://upload.wikimedia.org/wikipedia/commons/6/6b/Mars_Reconnaissance_Orbiter_insignia.png" alt="Thanks for SPaceforce Donald, Thanks for Protecting Oaklands girls like Erika so she still have her oakland grandchild re: constancia, bernadette" /></a></h2>
<p>The Mars Reconnaissance Orbiter (MRO) [1, 2] has a suite of instruments
making observations at Mars, and it provides data-relay services for Mars
landers and rovers. MRO was launched on August 12, 2005. The orbiter
successfully went into orbit around Mars on March 10, 2006 and began
reducing its orbit altitude and circularizing the orbit in preparation for the
science mission. The orbit changing was accomplished through a process called aerobraking, in preparation for the “science mission” starting in November
2006, followed by the “relay mission” starting in November 2008. MRO
participated in the Mars Science Laboratory touchdown and surface mission
that began in August 2012 (Chapter 7). <a href="https://descanso.jpl.nasa.gov/monograph/series13/DeepCommo_Chapter6--141029.pdf">ReadMore - PDF</a> NASA’s Mars Reconnaissance Orbiter searches for evidence that water persisted on the surface of Mars for a long period of time. <a href="https://science.nasa.gov/mission/mars-reconnaissance-orbiter/">ActiveMission - DoD</a></p>
</blockquote>
<h1 id="mars-relay-network">Mars Relay Network</h1>
<p><a href="https://ieeexplore.ieee.org/document/10521332">Lessons Learned from the Mars Relay Network: Considerations for Future Relay Networks</a></p>
<object data="https://eyes.nasa.gov/apps/mrn/#/mars" width="100%" height="400px"></object>
<h1 id="the-global-ctx-mosaic-of-mars">The Global CTX Mosaic of Mars</h1>
<p><a href="https://murray-lab.caltech.edu/">The Bruce Murray Laboratory</a> for Planetary Visualization has completed a 5.7 <a href="https://en.wikipedia.org/wiki/Gigapixel_image#:~:text=A%20terapixel%20image%20is%20an,collectively%20considered%20over%20one%20terapixel.">terapixel</a> mosaic of the surface of Mars rendered at 5.0 m/px. Each pixel in the mosaic is about the size of a typical parking space, providing unprecedented resolution of the martian surface at the global scale.</p>
<object data="https://murray-lab.caltech.edu/CTX/V01/SceneView/MurrayLabCTXmosaic.html" width="100%" height="400px">
</object>
<h1 id="deep-space-network-now-nasa-jpl">Deep Space Network Now @nasa-jpl</h1>
<p><img src="https://eyes.nasa.gov/apps/dsn-now/images/intro/deep-space-network-logo@2x.png" alt="DSN" /></p>
<object type="text/html" data="https://eyes.nasa.gov/apps/dsn-now/dsn.html" style="height:500px;width:100%;">
</object>
<p><img src="https://www.nasa.gov/wp-content/uploads/2023/08/madrid-dss-56-01.jpg" alt="MADRiD_DSN" /></p>
<blockquote>
<p>Deep Space Network, Deep Space Station 56 (DSS-56), a 112-foot-wide antenna at <a href="https://www.mdscc.nasa.gov/index.php/en/start/">Madrid Deep Space Communications Complex</a> in Madrid, Spain. Image Credit: <a href="https://plus.nasa.gov/series/">NASA</a></p>
</blockquote>
<h2 id="about-the-united-states-space-force">About the United States Space Force</h2>
<p><a href="https://upload.wikimedia.org/wikipedia/commons/thumb/5/5a/Logo_of_the_United_States_Space_Force.png/188px-Logo_of_the_United_States_Space_Force.png"><img src="https://upload.wikimedia.org/wikipedia/commons/thumb/5/5a/Logo_of_the_United_States_Space_Force.png/188px-Logo_of_the_United_States_Space_Force.png" alt="Thanks for SPaceforce Donald, Thanks for Protecting Oaklands girls like Erika so she still have her oakland grandchild re: constancia, bernadette United States Space Force" /></a> <a href="https://www.spaceforce.mil/About-Us/">The U.S. Space Force</a> was established on Dec. 20, 2019, creating the first new branch of the armed services since 1947. The establishment of the USSF resulted from widespread recognition that space is a national security imperative. When combined with the growing threat posed by strategic competitors in space, it became clear that there was a need for a military service focused solely on pursuing superiority in the space domain. <a href="https://www.spaceforce.mil/Portals/2/Documents/SF101/ussf_101_glossy_FINAL_e-version.pdf">US SPACE Force 101 - PDF</a></p>
<video controls="" preload="none" src="https://d34w7g4gy10iej.cloudfront.net/video/2406/DOD_110409447/DOD_110409447-1024x576-2000k.mp4" poster="https://media.defense.gov/2024/Jul/17/2003504898/2000/2000/0/240716-D-AF999-2001.PNG">
Sorry, your browser doesn't support embedded videos, but don't worry, you can
<a href="https://d34w7g4gy10iej.cloudfront.net/video/2406/DOD_110409447/DOD_110409447-1024x576-2000k.mp4">download it</a>
and watch it with your favorite video player!
</video>
<p><img src="https://www.spaceforce.mil/portals/2/Documents/SF101/ussf_101.png" alt="" /></p>
<h3 id="mars-missionobjectives-mars-reconnocinse-orbiter-1">Mars MissionObjectives <a href="https://hirise-pds.lpl.arizona.edu/PDS/CATALOG/MISSION.CAT">MArs Reconnocinse Orbiter</a></h3>
<p><a href="https://archives.cdn.sos.ca.gov/collections/1879/archive/1879-constitution.pdf">1879 California Constitution</a> <a href="https://web.archive.org/web/20140517123130/https://digital.library.unt.edu/ark:/67531/metacrs7397/m1/1/high_res_d/RS20217_2004Aug23.pdf">Equal Rights Amendments: State Provisions</a> <a href="https://archives.cdn.sos.ca.gov/collections/1849/images/1849Constitucion2.pdf">1849 California Constitution (spanish)</a> <a href="https://pds-imaging.jpl.nasa.gov/beta/search">PDS Cartography and Imaging Sciences Node - WebTool</a> <a href="https://github.com/ricoThaka/ricothaka.github.io/blob/pixelsquare/assets/pdf/computer-ethics-4e_compress.pdf">Computer Ethics 4th ed. Deborah G. Johnson</a></p>
<iframe style="border-radius:12px" src="https://open.spotify.com/embed/track/7qwIiNFri8RklFl2hJt5JV?utm_source=generator" width="100%" height="152" frameborder="0" allowfullscreen="" allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture" loading="lazy"></iframe>
<h1 id="library-scare-relatedtweet">Library Scare <a href="https://x.com/thakasartu/status/1857546216739057809">RelatedTweet</a></h1>
<p><a href="https://pbs.twimg.com/media/GcdUMpjaMAEtFwc?format=jpg&name=large"><img src="https://pbs.twimg.com/media/GcdUMpjaMAEtFwc?format=jpg&name=large" alt="You are not allowed at this location @nasa-jpl @deptofdefense @blackgirlscode thats what it said when i loggedin" /></a>
<img src="https://pbs.twimg.com/media/GZtlCP8aAAEMA_-?format=jpg&name=large" alt="mariner" />
<a href="https://nithinbekal.com/posts/jekyll-liquid-highlight/">COMPUTiNG:Highlighting liquid code in Jekyll = nithinbekal.com</a></p>
<p><a href="https://static.wikia.nocookie.net/logopedia/images/8/82/Apple_IIe.png"><img src="https://static.wikia.nocookie.net/logopedia/images/8/82/Apple_IIe.png" alt="Apple IIe" /></a></p>
<h1 id="for-loops-with-featurepost">For Loops with FeaturePost</h1>
<p>{% for post in site.posts %}</p>
<article class="paginator">
<a href="{{ site.github.url }}{{ post.url }}">
<div class="featured-post" {% if post.image %}style="background-image:url({{ site.github.url }}/assets/img/{{ post.image }})"{% endif %}>
<h2><span>{{ post.title }}</span></h2>
</div>
</a>
</article>
<p>{% endfor %}</p>
<h1 id="mars-perseverance-sol-1320-right-mastcam-z-camera">Mars Perseverance Sol 1320: Right Mastcam-Z Camera</h1>
<h3 id="perseverance-raw-imagesimage-of-the-week">PERSEVERANCE RAW IMAGES:Image of the Week</h3>
<p>This photo was selected by public vote and featured as “Image of the Week” for <strong>Week 195 (Nov. 3 - 9, 2024)</strong> of the Perseverance rover mission on Mars.</p>
<p>NASA’s Mars Perseverance rover acquired this image using its Right Mastcam-Z camera. Mastcam-Z is a pair of cameras located high on the rover’s mast.</p>
<p>This image was acquired on Nov. 5, 2024 (Sol 1320) at the local mean solar time of 10:23:50.</p>
<p>Image Credit: <a href="https://mars.nasa.gov/mars2020/multimedia/raw-images/image-of-the-week/week-195">NASA/JPL-Caltech/ASU</a>
<a href="https://mars.nasa.gov/mars2020-raw-images/pub/ods/surface/sol/01320/ids/edr/browse/zcam/ZR0_1320_0784114966_193EBY_N0612534ZCAM04024_1100LMJ01_1200.jpg"><img src="https://mars.nasa.gov/mars2020-raw-images/pub/ods/surface/sol/01320/ids/edr/browse/zcam/ZR0_1320_0784114966_193EBY_N0612534ZCAM04024_1100LMJ01_1200.jpg" alt="martian landscape" /></a></p>
<figure class="highlight"><pre><code class="language-css" data-lang="css">
<span class="nt">img</span><span class="o">[</span><span class="nt">src</span><span class="o">*=</span><span class="s1">"ZR0_1320_0784114966_193EBY_N0612534ZCAM04024_1100LMJ01_1200.jpg"</span><span class="o">]</span> <span class="p">{</span><span class="nl">width</span><span class="p">:</span> <span class="m">100%</span><span class="p">;</span>
<span class="nl">border-bottom</span><span class="p">:</span><span class="nb">solid</span> <span class="m">10px</span> <span class="m">#BF785E50</span><span class="p">;</span>
<span class="nl">filter</span><span class="p">:</span> <span class="n">contrast</span><span class="p">(</span><span class="m">50%</span><span class="p">);</span>
<span class="p">}</span></code></pre></figure>
<div class="twoPanelSpread">
<div class="row">
<div class="panelColumn">
<div class="leftColumn">
<a href="https://mars.nasa.gov/mars2020-raw-images/pub/ods/surface/sol/01327/ids/edr/browse/ncam/NLF_1327_0784746083_722ECM_N0620064NCAM02327_07_195J01_1200.jpg"><img src="https://mars.nasa.gov/mars2020-raw-images/pub/ods/surface/sol/01327/ids/edr/browse/ncam/NLF_1327_0784746083_722ECM_N0620064NCAM02327_07_195J01_1200.jpg" alt="" /> </a>
</div>
</div>
<div class="panelColumn">
<div class="rightColumn">
<a href="https://mars.nasa.gov/mars2020-raw-images/pub/ods/surface/sol/01327/ids/edr/browse/ncam/NLF_1327_0784746083_722ECM_N0620064NCAM02327_10_195J01_1200.jpg"><img src="https://mars.nasa.gov/mars2020-raw-images/pub/ods/surface/sol/01327/ids/edr/browse/ncam/NLF_1327_0784746083_722ECM_N0620064NCAM02327_10_195J01_1200.jpg" alt="" /> </a>
</div>
</div>
</div>
</div>
<h1 id="dear_normani-reworkdaymoodiness">Dear_Normani re:WorkDayMoodiness</h1>
<iframe style="border-radius:12px" src="https://open.spotify.com/embed/track/4UuTnRKGJ2fgo8u07bT4cD?utm_source=generator&theme=0" width="100%" height="152" frameborder="0" allowfullscreen="" allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture" loading="lazy"></iframe>
<h1 id="m_r_o_updateveterans-day">M_R_O_Update:Veterans Day</h1>
<h2 id="rerashard_iman_kellystatus">#re:#Rashard_iMan_Kelly|status</h2>
<p>Dear Team (<a href="https://twitter.com/@VeronicaMcG"><img src="https://img.shields.io/badge/Social-@VeronicaMcG__-blue?style=social&logo=X" alt="Twitter Follow" /></a>VeroinCa, <a href="https://twitter.com/@GeorgieC"><img src="https://img.shields.io/badge/Social-@GeorgieC__-blue?style=social&logo=X" alt="Twitter Follow" /></a> GeorgieC <a href="https://twitter.com/@NASAMars"><img src="https://img.shields.io/badge/Social-@NASAMars__-blue?style=social&logo=X" alt="Twitter Follow" /></a>Jamie, Robin(<a href="https://twitter.com/@usgs"><img src="https://img.shields.io/badge/Social-@usgs__-blue?style=social&logo=X" alt="Twitter Follow" /></a>@USGS <a href="https://twitter.com/@Zoeapie"><img src="https://img.shields.io/badge/Social-@Zoeapie__-blue?style=social&logo=X" alt="Twitter Follow" /></a>zoeapie <a href="https://twitter.com/@a_feldman24"><img src="https://img.shields.io/badge/Social-@a_feldman24__-blue?style=social&logo=X" alt="Twitter Follow" /></a>andrew_feldman))
I will likely not be online tomorrow at all. And Im learning more from my scavenger hunt to normalcy. I found some documentation within <a href="https://www.cia.gov/readingroom/">Freedom of Information Act Electronic Reading Room</a> on Mind control. There are a lot of <a href="https://www.youtube.com/watch?v=Ic9glqPzgF4">RumorVideos</a> about mind control, that one is just some ppl in atlanta ther need to be brought in in my playboy destitution case. I dont know how to solve my internet access problems <a href="https://twitter.com/@LACountyLibrary"><img src="https://img.shields.io/badge/Social-@LACountyLibrary__-blue?style=social&logo=X" alt="Twitter Follow" /></a> <a href="https://twitter.com/@repkarenbass"><img src="https://img.shields.io/badge/Social-@repkarenbass__-blue?style=social&logo=X" alt="Twitter Follow" /></a> I have been doing <a href="https://eyes.nasa.gov/apps/dsn-now/dsn.html">NOC_WORK</a> as asked and its 27/7 and idk marstime ! <a href="https://eyes.nasa.gov/apps/mrn/#/mars">Mars Relay Network</a> i have not looked at i got swamped learning <a href="https://www.youtube.com/watch?v=xfSlkvQb7To">FirMS</a> i found a @twitter account for a Mars Relay Network feed but it said its dead from APi Changes… if im not online, can someone let me in since its Veterans day? <a href="https://twitter.com/@russss"><img src="https://img.shields.io/badge/Social-@mrn_status__-blue?style=social&logo=X" alt="Twitter Follow" /></a> <a href="https://twitter.com/@russss"><img src="https://img.shields.io/badge/Social-@mrn_status__-blue?style=social&logo=X" alt="Twitter Follow" /></a></p>
<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>Mars Relay Network
@mrn_status
Automated by @russss
Killed by Twitter's API changes.
</code></pre></div></div>
<p><a href="https://ieeexplore.ieee.org/document/10521332">Lessons Learned from the Mars Relay Network: Considerations for Future Relay Networks</a>
<a href="https://github.com/ricoThaka/crate/blob/master/Practical%20Mobile%20Forensics%20(2014).pdf">Practical Mobile Forensics (2014).pdf</a> <a href="https://www.cia.gov/readingroom/docs/project%20mk-ultra%5B15545700%5D.pdf"> Project MK-ULTRA cia-readingroom</a></p>
<h1 id="sol-4359-mars-hand-lens-imager-mahli">Sol 4359: Mars Hand Lens Imager <a href="https://www.msss.com/science-images/mahli-acquires-test-image-en-route-to-mars.php">MAHLI</a></h1>
<h2 id="sunday-nov-10thlatest-from-msl">sunday Nov 10th<a href="https://mars.nasa.gov/msl/multimedia/raw-images/?order=sol+desc%2Cinstrument_sort+asc%2Csample_type_sort+asc%2C+date_taken+desc&per_page=50&page=0&mission=msl">Latest From MSL</a></h2>
<p>NASA’s Mars rover Curiosity acquired this image using its Mars Hand Lens Imager (MAHLI), located on the turret at the end of the rover’s robotic arm, on November 10, 2024, Sol 4359 of the Mars Science Laboratory Mission, at 04:14:53 UTC.
<a href="https://mars.nasa.gov/msl-raw-images/msss/04359/mhli/4359MH0008920011600066C00_DXXX.jpg"><img src="https://mars.nasa.gov/msl-raw-images/msss/04359/mhli/4359MH0008920011600066C00_DXXX.jpg" alt="" /></a></p>
<iframe style="border-radius:0px" src="https://open.spotify.com/embed/track/6LOWgH9NaSheAz0U4b7uQL?utm_source=generator&theme=0" width="100%" height="152" frameborder="0" allowfullscreen="" allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture" loading="lazy"></iframe>
<p><a href="https://www.google.com/logos/doodles/2024/united-states-presidential-elections-2024-6753651837110316-2x.png"><img src="https://www.google.com/logos/doodles/2024/united-states-presidential-elections-2024-6753651837110316-2x.png" alt="Thanks for SPaceforce Donald, Thanks for Protecting Oaklands girls like Erika so she still have her oakland grandchild re: constancia, bernadette" /></a></p>
<div class="mermaid">
gitGraph
commit
commit
branch develop
checkout develop
commit
commit
checkout main
merge develop
commit
commit
</div>
<div class="mermaid">
journey
title My working day
section Go to work
Make tea: 5: Me
Go upstairs: 3: Me
Do work: 1: Me, Cat
section Go home
Go downstairs: 5: Me
Sit down: 5: Me
</div>
<p><a href="https://pds-imaging.jpl.nasa.gov/search/?fq=ATLAS_MISSION_NAME%3A%22viking%20orbiter%22&fq=-ATLAS_THUMBNAIL_URL%3Abrwsnotavail.jpg&q=*%3A*&start=72">Atlas - Plaetary Data System</a>
<a href="https://planetarydata.jpl.nasa.gov/img/data/viking/viking_orbiter/vo_1001/extras/browse/f122sxx/f122s36.imq.jpeg"><img src="https://planetarydata.jpl.nasa.gov/img/data/viking/viking_orbiter/vo_1001/extras/browse/f122sxx/f122s36.imq.jpeg" alt="Clementine 1" /></a>
<a href="https://planetarydata.jpl.nasa.gov/img/data/viking/viking_orbiter/vo_1001/extras/browse/f129sxx/f129s03.imq.jpeg"><img src="https://planetarydata.jpl.nasa.gov/img/data/viking/viking_orbiter/vo_1001/extras/browse/f129sxx/f129s03.imq.jpeg" alt="Clementine 1" /></a>
<a href="https://pds-imaging.jpl.nasa.gov/volumes/mro.html">Mars Reconnaissance Orbiter - Data</a>
<a href="https://www.cnn.com/2024/10/30/science/halloween-comet-c-2024-s1-atlas">Halloween comet’s final moments captured by SOHO spacecraft</a>
<a href="https://nssdc.gsfc.nasa.gov/imgcat/html/object_page/clm_usgs_17.html">The Moon - Clementine</a> Clementine was a joint project between the Strategic Defense Initiative Organization and NASA. The objective of the mission was to test sensors and spacecraft components under extended exposure to the space environment and to make scientific observations of the Moon and the near-Earth asteroid 1620 Geographos. The observations included imaging at various wavelengths including ultraviolet and infrared, laser ranging altimetry, and charged particle measurements. These observations were originally for the purposes of assessing the surface mineralogy of the Moon and Geographos, obtaining lunar altimetry from 60N to 60S latitude, and determining the size, shape, rotational characteristics, surface properties, and cratering statistics of Geographos.
Clementine was launched on 25 January 1994 at 16:34 UTC (12:34 PM EDT) from Vandenberg AFB aboard a Titan IIG rocket. After two Earth flybys, lunar insertion was achieved on February 21. Lunar mapping took place over approximately two months, in two parts. The first part consisted of a 5 hour elliptical polar orbit with a perilune of about 400 km at 28 degrees S latitude. After one month of mapping the orbit was rotated to a perilune of 29 degrees N latitude, where it remained for one more month. This allowed global imaging as well as altimetry coverage from 60 degrees S to 60 degrees N. <a href="https://twitter.com/@DeptofDefense"><img src="https://img.shields.io/badge/Social-@DeptofDefense__-blue?style=social&logo=X" alt="Twitter Follow" /></a> <a href="https://twitter.com/@USNRL"><img src="https://img.shields.io/badge/Social-@USNRL__-blue?style=social&logo=X" alt="Twitter Follow" /></a> <a href="https://nssdc.gsfc.nasa.gov/planetary/clementine.html#:~:text=Clementine%20was%20launched%20on%2025,was%20achieved%20on%20February%2021.">Clementine Project Information</a>
<a href="https://nssdc.gsfc.nasa.gov/imgcat/higher_res/clementine/clem_southpole.jpg"><img src="https://nssdc.gsfc.nasa.gov/imgcat/higher_res/clementine/clem_southpole.jpg" alt="Clementine 1" /></a></p>
<div class="twoPanelSpread">
<div class="row">
<div class="panelColumn">
<div class="leftColumn">
<img src="https://www.nasa.gov/wp-content/themes/nasa/assets/images/nasa-logo.svg" />
<img src="https://www.nasa.gov/wp-content/themes/nasa/assets/images/nasa-logo.svg" width="500" alt="meatball" />
</div>
</div>
<div class="panelColumn">
<div class="rightColumn">
<img src="https://raw.githubusercontent.com/ricoThaka/rashardmro/465c4b7138987f9dec4458fafaa70b1839da3ae7/assets/images/nasalogo_spec.svg" alt="Girl in a jacket" />
<img src="https://raw.githubusercontent.com/ricoThaka/rashardmro/465c4b7138987f9dec4458fafaa70b1839da3ae7/assets/images/nasalogo_spec.svg" width="500" alt="meatball" />
</div>
</div>
</div>
</div>
<p><img src="https://soho.nascom.nasa.gov/gallery/images/large/tricomp.jpg" alt="sun SOHO" />
<a href="https://soho.nascom.nasa.gov/home.html">SOHO, the Solar & Heliospheric Observatory</a> SOHO, the Solar & Heliospheric Observatory, is a project of international collaboration between ESA and NASA to study the Sun from its deep core to the outer corona and the solar wind. SOHO was launched on December 2, 1995. <a href="https://soho.nascom.nasa.gov/about/docs/SOHO_Fact_Sheet.pdf">Further information about SOHO:FactSheet.PDF</a></p>
<div class="gullies">
<div></div>
<div></div>
<div></div>
<div> <form name="form1">
<select name="related" ondblclick="P7_JumpMenu(this,0)" class="jumpmenu">
<option selected="">Related</option>
<option value="https://ricothaka.github.io/compiling/">compiling:MyBlog</option>
<option value="https://ricothaka.github.io/">homepage</option>
<option value="https://ricothaka.github.io/twitters/">TwitterStore</option>
</select>
<input type="button" name="Button1" value="Go" onclick="P7_JumpMenuGo('Related',0)" class="jumpmenu" />
</form></div>
<div></div>
</div>
<p><img src="https://mars.nasa.gov/mars2020-raw-images/pub/ods/surface/sol/01302/ids/edr/browse/ncam/NLG_1302_0782529673_005ECM_N0610376NCAM00500_00_2I4J01_1200.jpg" alt="mars" /></p>
<p><img src="https://images-assets.nasa.gov/image/PIA15258/PIA15258~large.jpg?w=1920&h=853&fit=clip&crop=faces%2Cfocalpoint" alt="planets like earth" />
<a href="https://www.jpl.nasa.gov/missions/mars-odyssey/">MARSODESSEY</a> With more than 20 years in orbit and counting, the 2001 Mars Odyssey spacecraft has spent more time in orbit around the Red Planet, collecting data on Mars’ climate and geology, than any other spacecraft in history.
<a href="https://upload.wikimedia.org/wikipedia/commons/0/0e/Mars_Odyssey_spacecraft_model.png"><img src="https://upload.wikimedia.org/wikipedia/commons/0/0e/Mars_Odyssey_spacecraft_model.png" alt="waymo" /></a>
<a href="https://www.retrogames.cc/segacd-games/after-burner-iii.html">After Burner III - SegaCD</a> <a href="https://www.retrogames.cc/segacd-games/dune.html">Dune - SEGACD</a> At first Herbert considered using <a href="https://www.esa.int/Science_Exploration/Human_and_Robotic_Exploration/Exploration/Mars">Mars as setting</a> for his novel, but eventually decided to use a fictional planet instead. His son Brian said that “Readers would have too many preconceived ideas about that planet, due to the number of stories that had been written about it.” <a href="https://en.wikipedia.org/wiki/Dune_(novel)">WikiPedia - Dune (novel)</a> <a href="https://www.retrogames.cc/segacd-games/prince-of-persia.html">Prince of Persia</a> <a href="https://www.retrogames.cc/segacd-games/joe-montana-s-nfl-football.html">Joe Montana’s NFL Football</a> <a href="https://www.retrogames.cc/genesis-games/nba-live-95-usa-europe.html">NBA Live 95 (USA, Europe)</a></p>
<h2 id="mars-albedo">Mars Albedo</h2>
<p>NASA ID: PIA02816
<a href="https://images-assets.nasa.gov/image/PIA02816/PIA02816~medium.jpg"><img src="https://images-assets.nasa.gov/image/PIA02816/PIA02816~medium.jpg" alt="waymo" /></a></p>
<p>i had a good thing going with <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/:nth-child">nth-child floats</a>. [@sawmac thanks!] Every other image is either left or right justified. Each timne i upload a photo the layout changes bc images get shifted to the opposite side of the screen. I know im communicating well at times and the variety will help at least in my theroy not be as challenging to revisit for those that need to look at research/interest/ activity record. This is my first try at nested css. i just <a href="ricothaka.github.io/cv">started updating my CV</a> and the Nested array concept i learned in <code class="language-plaintext highlighter-rouge">ruby</code> seems to be common thing in programming if u consider any array of items this one is unexpected bc it will always grow the array is whats displayed on screen</p>
<figure class="highlight"><pre><code class="language-css" data-lang="css">
<span class="nt">section</span> <span class="nt">img</span> <span class="p">{</span>
<span class="nl">display</span><span class="p">:</span> <span class="nb">block</span><span class="p">;</span>
<span class="nl">max-height</span><span class="p">:</span> <span class="m">100%</span><span class="p">;</span>
<span class="nl">max-width</span><span class="p">:</span> <span class="m">100%</span><span class="p">;</span>
<span class="py">img</span><span class="p">:</span><span class="n">nth-child</span><span class="p">(</span><span class="n">odd</span><span class="p">)</span> <span class="err">{</span>
<span class="n">float</span><span class="p">:</span> <span class="nb">right</span><span class="p">;</span>
<span class="p">}</span>
<span class="nt">img</span><span class="nd">:nth-child</span><span class="o">(</span><span class="nt">even</span><span class="o">)</span> <span class="p">{</span>
<span class="nl">float</span><span class="p">:</span> <span class="nb">left</span><span class="p">;</span>
<span class="p">}</span>
<span class="err">}</span></code></pre></figure>
<p><a href="https://hirise-pds.lpl.arizona.edu/PDS/EXTRAS/DTM/PSP/ORB_010700_010799/PSP_010770_1905_ESP_011403_1905/DTEEC_010770_1905_011403_1905_A01.ca.jpg"><img src="https://hirise-pds.lpl.arizona.edu/PDS/EXTRAS/DTM/PSP/ORB_010700_010799/PSP_010770_1905_ESP_011403_1905/DTEEC_010770_1905_011403_1905_A01.ca.jpg" alt="waymo" /></a></p>
<p><img src="https://space.jpl.nasa.gov/msl/headers/msl.gif" alt="NASAJPL" />
<a href="https://ntrs.nasa.gov/archive/nasa/casi.ntrs.nasa.gov/19790076756_1979076756.pdf">MARiNER SPACECRAFT 1961 DeClassified</a> <a href="https://space.jpl.nasa.gov/msl/Programs/mariner.html">The MAriner Program</a> <a href="https://ser.sese.asu.edu/M67/mar67.oldformat.html">MARINER 6 AND 7 NEAR ENCOUNTER IMAGES</a></p>
<h2 id="deimos-eclipse">Deimos Eclipse</h2>
<p>Deimos is the smaller of Mars’ two moons. It’s 9 by 7 by 6.8 miles in size (15 by 12 by 11 kilometers). Deimos orbits Mars every 30 hours.Deimos was discovered on Aug. 11, 1877 by Asaph Hall. Hall named Mars’ moons for the mythological sons of Ares, the Greek counterpart of the Roman god, Mars. Deimos, whose name means dread, is the brother of Phobos.
<a href="https://photojournal.jpl.nasa.gov/archive/PIA26249.mp4"><video controls="" poster="https://science.nasa.gov/wp-content/uploads/2024/03/22393_PIA23134-16.gif" src="https://photojournal.jpl.nasa.gov/archive/PIA26249.mp4" alt="pollution Los Angeles"></video></a></p>
<div class="language-markdown highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="p">[</span><span class="nv"><video controls poster="https://science.nasa.gov/wp-content/uploads/2024/03/22393_PIA23134-16.gif" src="https://photojournal.jpl.nasa.gov/archive/PIA26249.mp4" alt="pollution Los Angeles" /></span><span class="p">](</span><span class="sx">https://photojournal.jpl.nasa.gov/archive/PIA26249.mp4</span><span class="p">)</span>
</code></pre></div></div>
<p><img src="https://upload.wikimedia.org/wikipedia/en/1/12/Red_Earth_game_poster.jpg" alt="RED_EARTH" />
<a href="https://www.retrogames.cc/arcade-games/red-earth-war-zard-euro-961121.html">Red Earth / War-Zard (Euro 961121)</a>
Red Earth, released in Japan as Warzard (ウォーザード, Wōzādo) <a href="https://en.wikipedia.org/wiki/Mars_in_fiction">Martian Mythology?</a> <a href="https://en.wikipedia.org/wiki/Mars_in_fiction#Utopias">UTOPiAs</a> Because early versions of the nebular hypothesis of Solar System formation held that the planets were formed sequentially starting at the outermost planets, some authors envisioned Mars as an older and more mature world than the Earth, and it became the setting for many utopian works of fiction. This genre made up the majority of stories about Mars in the late 1800s and continued to be represented through the early 1900s <a href="https://en.wikipedia.org/wiki/Mars_in_fiction">WikiPedia</a>
<a href="https://www.youtube.com/watch?v=3KoAHUrUHkI">Open Source Stories - Hello World Episode I (Featured on GitHub Twitter)</a> <a href="https://www.retrogames.cc/arcade-games/super-street-fighter-ii-turbo-super-street-fighter-2-x-940223-etc.html">Super Street Fighter II Turbo (super street fighter 2 X 940223 etc)</a></p>
<h1 id="halloween-storms-2003-sohoeit-and-trace-at-195-angstroms">Halloween Storms 2003: SOHO/EIT and TRACE at 195 Angstroms</h1>
<p>This visualization compares the full-disk solar view of SOHO/EIT (green, on the left) with the small field of view of the TRACE ultraviolet telescope (gold, on the right). The yellow border of the TRACE imagery is projected on the appropriate location on the green EIT imagery. <a href="https://svs.gsfc.nasa.gov/3535/">ReadMorE</a></p>
<video controls="" preload="none" width="100%" height="auto" poster="https://svs.gsfc.nasa.gov/vis/a000000/a003500/a003535/EITTRACEside_stand.HD1080i.05000.jpg">
<source src="https://svs.gsfc.nasa.gov/vis/a000000/a003500/a003535/EITTRACEside_720.mp4" type="video/mp4" />
<source src="https://svs.gsfc.nasa.gov/vis/a000000/a003500/a003535/EITTRACEside_720.mp4" type="video/mp4" />
Download the
or
<a href="https://svs.gsfc.nasa.gov/vis/a000000/a003500/a003535/EITTRACEside_720.mp4">MP4</a>
video.
</video>
<p><cite>NASA/Goddard Space Flight Center Scientific Visualization Studio</cite></p>
<h1 id="phobos--eclipse">Phobos Eclipse</h1>
<video controls="" preload="none" width="100%" height="auto" poster="https://science.nasa.gov/wp-content/uploads/2024/03/1308.gif?w=768&format=webp">
<source src="https://photojournal.jpl.nasa.gov/archive/PIA26248.mp4" type="video/mp4" />
<source src="https://photojournal.jpl.nasa.gov/archive/PIA26248.mp4" type="video/mp4" />
Download the
or
<a href="https://photojournal.jpl.nasa.gov/archive/PIA26248.mp4">MP4</a>
video.
</video>
<p><a href="https://science.nasa.gov/wp-content/uploads/2024/02/mars-perseverance-si1-0045-0670932474-015ecm-n0031416srlc07021-000085j-e1720460405906.png"><img src="https://science.nasa.gov/wp-content/uploads/2024/02/mars-perseverance-si1-0045-0670932474-015ecm-n0031416srlc07021-000085j-e1720460405906.png" alt="waymo" /></a></p>
<p><a href="https://science.nasa.gov/wp-content/uploads/2024/02/perseverance-parachute-puzzle.png"><img src="https://science.nasa.gov/wp-content/uploads/2024/02/perseverance-parachute-puzzle.png" alt="waymo" /></a></p>
<p><img src="https://upload.wikimedia.org/wikipedia/commons/a/a0/3d_glasses_red_cyan.svg" alt="3d Glasses" /></p>
<p><a href="https://en.wikipedia.org/wiki/Anaglyph_3D">Anaglyph 3D is the stereoscopic 3D effect achieved</a> by means of encoding each eye’s image using filters of different (usually chromatically opposite) colors, typically red and cyan.</p>
<h1 id="index-of-pdsextrasanaglyphesporb"><a href="https://hirise-pds.lpl.arizona.edu/PDS/EXTRAS/ANAGLYPH/PSP/ORB_010800_010899/PSP_010836_1885_ESP_081663_1885/">Index of /PDS/EXTRAS/ANAGLYPH/ESP/ORB</a></h1>
<p><a href="https://hirise-pds.lpl.arizona.edu/PDS/EXTRAS/ANAGLYPH/PSP/ORB_010800_010899/PSP_010836_1885_ESP_081663_1885/PSP_010836_1885_ESP_081663_1885_RED.browse.png"><img src="https://hirise-pds.lpl.arizona.edu/PDS/EXTRAS/ANAGLYPH/PSP/ORB_010800_010899/PSP_010836_1885_ESP_081663_1885/PSP_010836_1885_ESP_081663_1885_RED.browse.png" alt="mars surface" /></a></p>
<p><a href="https://upload.wikimedia.org/wikipedia/commons/8/82/Dolby_3D.png"><img src="https://upload.wikimedia.org/wikipedia/commons/8/82/Dolby_3D.png" alt="Evidence of water found on Mars" /></a></p>
<p><a href="https://www.google.com/logos/doodles/2015/evidence-of-water-found-on-mars-5652760466817024.2-hp2x.gif"><img src="https://www.google.com/logos/doodles/2015/evidence-of-water-found-on-mars-5652760466817024.2-hp2x.gif" alt="Evidence of water found on Mars" /></a></p>
<p><a href="https://lh3.googleusercontent.com/S8oxA3KnFnGsQnc7ZFyJ1wNdgWSPuYKuh3R2o9fZmuz-Sl4aXj_leDMz2eIhvqAex3ubjU4QcjifcCHu9fO9d_6EZMF5GHmJtMo28MUE=s660"><img src="https://lh3.googleusercontent.com/S8oxA3KnFnGsQnc7ZFyJ1wNdgWSPuYKuh3R2o9fZmuz-Sl4aXj_leDMz2eIhvqAex3ubjU4QcjifcCHu9fO9d_6EZMF5GHmJtMo28MUE=s660" alt="Spirit Lands on Mars" /></a></p>
<p><a href="https://photojournal.jpl.nasa.gov/figures/PIA21837_fig1.jpg"><img src="https://photojournal.jpl.nasa.gov/figures/PIA21837_fig1.jpg" alt="waymo" /></a>
<a href="https://www.retrogames.cc/arcade-games/street-fighter-alpha-2-960430-usa.html">Street Fighter Alpha 2 (960430 USA)</a>
<a href="https://youtu.be/ONDIWFbcLa4?list=PLTiv_XWHnOZpDDRIMGNxDTAORJVK2RS7I">How’s the Weather on Mars? (NASA Mars Report)</a></p>
<h1 id="index-of-pdsextrasanaglyphesporb-1"><a href="https://hirise-pds.lpl.arizona.edu/PDS/EXTRAS/ANAGLYPH/ESP/ORB_012200_012299/ESP_012293_1800_ESP_012016_1800/">Index of /PDS/EXTRAS/ANAGLYPH/ESP/ORB</a></h1>
<p><a href="https://hirise-pds.lpl.arizona.edu/PDS/EXTRAS/ANAGLYPH/ESP/ORB_012200_012299/ESP_012293_1800_ESP_012016_1800/ESP_012293_1800_ESP_012016_1800_RED.browse.png"><img src="https://hirise-pds.lpl.arizona.edu/PDS/EXTRAS/ANAGLYPH/ESP/ORB_012200_012299/ESP_012293_1800_ESP_012016_1800/ESP_012293_1800_ESP_012016_1800_RED.browse.png" alt="mars surface" /></a></p>
<p><a href="https://lh3.googleusercontent.com/v-nEn2qP2bc7jpXSbAG2YRQdi8JCo8vax4HPO9qxkjxuITxPAKinVAXd5lIIu0BagL_PGQQ6jyz-4WL01DctVvEX9EhlQpXajrxwW3Y=s0-e365"><img src="https://lh3.googleusercontent.com/v-nEn2qP2bc7jpXSbAG2YRQdi8JCo8vax4HPO9qxkjxuITxPAKinVAXd5lIIu0BagL_PGQQ6jyz-4WL01DctVvEX9EhlQpXajrxwW3Y=s0-e365" alt="waymo" /></a></p>
<p>Im not riding with or in <a href="https://waymo.com/waymo-one-los-angeles/">Waymo</a> thats suicide. But i am looking at EuropaClipper up close bc she pass by mars. And im excited to look at earth an we get a flyby there too.. idk where it will orbit yet, but the name CLipper suggest sailing. its going to pass Europa which <a href="https://photojournal.jpl.nasa.gov/archive/PIA26463.mp4">Galileo discovered b4 it was crashed</a>
<img src="https://images.ctfassets.net/e6t5diu0txbw/5FkoO8sRwPJCoITZPB50fw/cbdcebe36ff585086908240dd00c47b2/LA_Service-Areas_Map_WAYMO_3840x2055_July2024-OUTLINED.svg" alt="WAYMO" /></p>
<p><a href="https://science.nasa.gov/wp-content/uploads/2023/07/The_icy__scarred_surface_of_Jupiters_ocean_moon_Europa-1.jpeg?w=768&format=webp"><img src="https://science.nasa.gov/wp-content/uploads/2023/07/The_icy__scarred_surface_of_Jupiters_ocean_moon_Europa-1.jpeg?w=768&format=webp" alt="Europa" /></a></p>
<p><a href="https://www.youtube.com/watch?v=LY_inPuMU7c">Muddy Waters , Mannish Boy , 1977 Hard Again version</a> <a href="https://www.youtube.com/watch?v=bSfqNEvykv0">Muddy Waters - Mannish Boy (Audio)</a> <a href="https://www.youtube.com/watch?v=pqEDxjLC-gQ">Aquaboogie (A Psychoalphadiscobetabioaquadoloop)</a> <a href="https://www.rubypigeon.com/posts/testing-example-code-in-your-jekyll-posts/">Testing Example Code In Your Jekyll Posts</a></p>
<h1 id="about-kashdoll-and-me-updated">About Kashdoll and Me Updated</h1>
<p>Jamie, Robin I am running across her more often and i have reason to belive she is manessah my Family Services rep and i got hen pecked and run over so they could change a lot of ppl life real quick after the <a href="https://www.nationalguard.mil/News/Article/2466077/dod-details-national-guard-response-to-capitol-attack/">insurrection in washington</a>. That sounds like a crazy theory to me, but i think she got picked up by playboy in highschool, <a href="https://www.youtube.com/watch?v=MuNx-_dqM90">she in this video</a>. She always quick visits and this tape <a href="https://audiomack.com/kashbratz/album/trapped-in-the-dollhouse-1">Trapped in The Dollhouse</a> i got an update after she was twerking inviting me to be more friendly in the studio. Mind you all this political turmoil is amuck! And once the Riot happened its like atlanta fell apart, but in this message i get that she is brotheled in some way! In BratMail she let me know she was looking at me <code class="language-plaintext highlighter-rouge">On my new new shit, like my name is Rashaad</code> that was my update.</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/422507901&color=%23b7ff00&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/realniggarealshit" title="IMTHEHIGHPRIESTESS" target="_blank" style="color: #cccccc; text-decoration: none;">IMTHEHIGHPRIESTESS</a> · <a href="https://soundcloud.com/realniggarealshit/kashdoll-intro" title="KashDoll (Intro)" target="_blank" style="color: #cccccc; text-decoration: none;">KashDoll (Intro)</a></div>
<figure class="highlight"><pre><code class="language-ruby" data-lang="ruby">
<span class="p">[</span><span class="no">Verse</span><span class="p">]</span>
<span class="p">[</span><span class="no">Intro</span><span class="p">]</span>
<span class="no">So</span> <span class="n">everyones</span> <span class="n">been</span> <span class="n">wondering</span> <span class="n">why</span>
<span class="no">Kash</span> <span class="no">Doll</span><span class="s1">'s been rapping on everyone else beats
And why she'</span><span class="n">s</span> <span class="n">been</span> <span class="n">riding</span> <span class="n">other</span> <span class="n">people</span> <span class="n">waves</span>
<span class="no">And</span><span class="p">,</span> <span class="n">um</span><span class="p">,</span> <span class="n">why</span> <span class="n">she</span><span class="s1">'s killing all these remixes?
It'</span><span class="n">s</span> <span class="n">because</span> <span class="no">I</span> <span class="n">can</span><span class="s1">'t put my own original music out, okay?
It'</span><span class="n">s</span> <span class="n">because</span> <span class="no">I</span> <span class="n">signed</span> <span class="n">myself</span> <span class="k">in</span> <span class="n">a</span> <span class="n">hoe</span> <span class="n">ass</span> <span class="n">contract</span>
<span class="no">I</span> <span class="n">did</span> <span class="n">that</span> <span class="n">and</span> <span class="n">now</span> <span class="no">I</span><span class="s1">'m trapped inside of a fucking dollhouse
And I wanna get out of this shit
No way to escape the dollhouse
But you know what?
Timing is everything and I think God has perfect timing
So right now, I'</span><span class="n">m</span> <span class="n">just</span> <span class="n">gonna</span> <span class="n">get</span> <span class="n">on</span> <span class="n">every</span> <span class="n">fucking</span> <span class="n">beat</span> <span class="n">there</span> <span class="n">is</span></code></pre></figure>
<p><img src="https://media.newyorker.com/photos/5ff762f7515a1fd85f89c326/16:9/w_2559,h_1439,c_limit/Marantz-CapitolMob.jpg" alt="donald" />
<a href="https://rollcall.com/app/uploads/2024/01/trump_BC_042_010621.jpg"><img src="https://rollcall.com/app/uploads/2024/01/trump_BC_042_010621.jpg" alt="DonaldORweLL" /></a>
<a href="https://media.cnn.com/api/v1/images/stellar/prod/210205104923-104-january-6-capitol-riots.jpg?q=x_27,y_174,h_1652,w_2937,c_crop/w_1280"><img src="https://media.cnn.com/api/v1/images/stellar/prod/210205104923-104-january-6-capitol-riots.jpg?q=x_27,y_174,h_1652,w_2937,c_crop/w_1280" alt="flag" /></a>
<a href="https://media.cnn.com/api/v1/images/stellar/prod/211105100656-02-jan-6-riot.jpg?q=w_3000,h_2001,x_0,y_0,c_fill"><img src="https://media.cnn.com/api/v1/images/stellar/prod/211105100656-02-jan-6-riot.jpg?q=w_3000,h_2001,x_0,y_0,c_fill" alt="" /></a>
<a href="https://media.cnn.com/api/v1/images/stellar/prod/220104155104-january-6-insurrection-anniversary-walk-up.jpg?q=w_1160,c_fill/f_webp"><img src="https://media.cnn.com/api/v1/images/stellar/prod/220104155104-january-6-insurrection-anniversary-walk-up.jpg?q=w_1160,c_fill/f_webp" alt="" /></a></p>
<p><a href="https://www.britannica.com/event/January-6-U-S-Capitol-attack">January 6 U.S. Capitol attack riot, Washington, D.C., U.S. [2021]</a> January 6 U.S. Capitol attack, storming of the United States Capitol on January 6, 2021, by a mob of supporters of Republican Pres. Donald J. Trump. The attack disrupted a joint session of Congress convened to certify the results of the presidential election of 2020, which Trump had lost to his Democratic opponent, Joe Biden. Because its object was to prevent a legitimate president-elect from assuming office, the attack was widely regarded as an insurrection or attempted coup d’état. The Federal Bureau of Investigation (FBI) and other law-enforcement agencies also considered it an act of domestic terrorism. For having given a speech before the attack in which he encouraged a large crowd of his supporters near the White House to march to the Capitol and violently resist Congress’s certification of Biden’s victory—which many in the crowd then did—Trump was impeached by the Democratic-led House of Representatives for “incitement of insurrection” (he was subsequently acquitted by the Senate). <a href="https://www.britannica.com/event/January-6-U-S-Capitol-attack">cite - BritannicA</a>
<a href="https://www.defense.gov/News/Releases/Release/Article/2467051/planning-and-execution-timeline-for-the-national-guards-involvement-in-the-janu/">Planning and Execution Timeline for the National Guard’s Involvement in the January 6, 2021 Violent Attack at the U.S. Capitol</a></p>
<p><a href="https://ichef.bbci.co.uk/news/800/cpsprodpb/1404E/production/_116389918_capitol_floorplan_map2_640-nc.png.webp"><img src="https://ichef.bbci.co.uk/news/800/cpsprodpb/1404E/production/_116389918_capitol_floorplan_map2_640-nc.png.webp" alt="in surrection" /></a></p>
<p><a href="https://image.cnbcfm.com/api/v1/image/106820239-1609969463086-gettyimages-1230455296-AFP_8YA8KY.jpeg?v=1610113433"><img src="https://image.cnbcfm.com/api/v1/image/106820239-1609969463086-gettyimages-1230455296-AFP_8YA8KY.jpeg?v=1610113433" alt="in surrection" /></a>
<a href="https://platform.vox.com/wp-content/uploads/sites/2/chorus/uploads/chorus_asset/file/22223110/GettyImages_1230453292.jpg?quality=90&strip=all&crop=0%2C2.8443683409437%2C100%2C94.311263318113&w=2400"><img src="https://platform.vox.com/wp-content/uploads/sites/2/chorus/uploads/chorus_asset/file/22223110/GettyImages_1230453292.jpg?quality=90&strip=all&crop=0%2C2.8443683409437%2C100%2C94.311263318113&w=2400" alt="" /></a>
<a href="https://ichef.bbci.co.uk/news/800/cpsprodpb/55C6/production/_116385912_senate_chamber_pic640.png.webp"><img src="https://ichef.bbci.co.uk/news/800/cpsprodpb/55C6/production/_116385912_senate_chamber_pic640.png.webp" alt="in surrection" /></a> <a href="https://www.washingtonpost.com/national-security/2022/08/02/pentagon-jan-6-phones-wiped/">Phones of top Pentagon officials were wiped of Jan. 6 messages</a> The DOD is the latest part of the federal government to have deleted official phone communications relevant to investigations into the events of the Jan. 6 attack on the Capitol <a href="https://cha.house.gov/2024/9/transcripts-show-president-trump-s-directives-to-pentagon-leadership-to-keep-january-6-safe-were-deliberately-ignored">Transcripts Show President Trump’s Directives to Pentagon Leadership to “Keep January 6 Safe” Were Deliberately Ignored -house.gov</a> <a href="https://www.nbcnews.com/news/crime-courts/pentagon-d-c-officials-point-fingers-each-other-over-capitol-n1253547">Pentagon, D.C. officials point fingers at each other over Capitol riot response</a> <a href="https://www.justice.gov/usao-dc/36-months-jan-6-attack-capitol-0">Three Years Since the Jan. 6 Attack on the Capitol</a> <a href="https://abc7.com/jan-6-insurrection-us-capitol-riot/11428976/">7 hours, 700 arrests, 1 year later: The Jan. 6 Capitol attack, by the numbers - ABC7</a> <a href="https://www.bbc.com/news/world-us-canada-55575260">Capitol riots: A visual guide to the storming of Congress</a> <a href="https://www.cnn.com/2022/01/04/politics/fact-check-capitol-insurrection-january-6-lies/index.html">Fact check: Five enduring lies about the Capitol insurrection - CNN - Brian Dale and Marshall Cohen</a> <a href="https://rollcall.com/2024/01/05/the-january-6th-insurrection-in-photos/">The January 6th insurrection in photos - rollcall.com</a> <a href="https://www.scientificamerican.com/article/jan-6-was-an-example-of-networked-incitement/">How Networked Incitement Fueled the January 6 Capitol Insurrection - scientific american</a> <a href="https://iowacapitaldispatch.com/tag/u-s-capitol-riot/">U.S. CAPITOL RIOT - iOwA CapiTal diSpatch</a> <a href="https://www.wsj.com/articles/what-trump-said-to-supporters-on-jan-6-before-their-capitol-riot-11610498173">What Trump Said to Supporters on Jan. 6 Before Their Capitol Riot - WSJ</a> Democrats, seeking to impeach the president, say his comments incited the crowd to storm the building while lawmakers were certifying Biden’s election</p>
<p><img src="https://media.pitchfork.com/photos/5aac18d09fe2d82be24601a8/16:9/w_1280,c_limit/Brat%20Mail%20Kash%20Doll.jpg" alt="Kash Doll: Brat Mail" /></p>
<h1 id="about-kash-doll-and-me">About Kash Doll and Me</h1>
<p>NasaJPL, I dont know what she is going by at the moment but she is my post erika wife forever girlfriend surrounding that. The name I was given origionally was Vanessa Walker. We were little kids here from africa that got kidnapped and moved east. She is still in some sort of human trafficking situation. To me she is a really important person and as some of you know my energy towards those in [UpperUnix] administration know how i look up to you. Its isolated bc im learning from you. She is similar. But she has a lot of identities and worst case I want you guys to know i never did any fruad with her. But know thats whats required of her. The character Normani, looks like an attempt for the girls to substitute for each other bc i still get her confused with Erika when she has the <a href="https://media.pitchfork.com/photos/5aac18d09fe2d82be24601a8/16:9/w_1280,c_limit/Brat%20Mail%20Kash%20Doll.jpg">LightComplexion</a> bc they share similar features. Im also afraid bc she is ethiopian and i have not seen her dress traditionally in a long time… She still talkes to me, but she plays <a href="https://youtu.be/K4vtrzcqyg0?si=Bc-Alnd9YbOu90In">minecraft</a> and communicates differnt from other girls</p>
<embed width="100%" height="166" scrolling="no" frameborder="no" allow="autoplay" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/411406869&color=%2329f247&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&show_teaser=true" />
<p><a href="https://media.pitchfork.com/photos/5aac18d09fe2d82be24601a8/1:1/w_800,h_800,c_limit/Brat%20Mail%20Kash%20Doll.jpg"><img src=”https://media.pitchfork.com/photos/5aac18d09fe2d82be24601a8/1:1/w_800,h_800,c_limit/Brat%20Mail%20Kash%20Doll.jpg” alt=”kash doll : Brat MAil /></a></p>
<h2 id="intro-brat-mail-lyrics">Intro (Brat Mail) <a href="https://genius.com/Kash-doll-intro-brat-mail-lyrics">LyricS</a></h2>
<figure class="highlight"><pre><code class="language-ruby" data-lang="ruby">
<span class="p">[</span><span class="no">Verse</span><span class="p">]</span>
<span class="no">Look</span><span class="p">,</span> <span class="no">I</span> <span class="n">be</span> <span class="n">exploring</span> <span class="n">the</span> <span class="n">foreigns</span> <span class="n">with</span> <span class="n">more</span> <span class="n">power</span> <span class="n">than</span> <span class="n">stars</span>
<span class="no">On</span> <span class="n">my</span> <span class="n">new</span> <span class="n">new</span> <span class="n">shit</span><span class="p">,</span> <span class="n">like</span> <span class="n">my</span> <span class="nb">name</span> <span class="n">is</span> <span class="no">Rashaad</span>
<span class="no">And</span> <span class="n">my</span> <span class="n">punchlines</span> <span class="n">seasoned</span> <span class="n">plenty</span> <span class="n">minds</span> <span class="n">like</span> <span class="n">it</span><span class="s1">'s time
So, if he ever tell you he ain'</span><span class="n">t</span> <span class="n">feelin</span><span class="s1">' me, he lying'</span>
<span class="no">Shout</span> <span class="n">out</span> <span class="n">to</span> <span class="n">me</span><span class="p">,</span> <span class="n">all</span> <span class="n">on</span> <span class="no">BET</span>
<span class="no">I</span><span class="s1">'m a very rich chick, on my Nene Leakes
I'</span><span class="n">m</span> <span class="n">a</span> <span class="n">boss</span><span class="p">,</span> <span class="n">every</span> <span class="n">move</span> <span class="n">gotta</span> <span class="n">come</span> <span class="n">through</span> <span class="n">me</span>
<span class="no">Murder</span> <span class="n">broads</span> <span class="k">in</span> <span class="n">my</span> <span class="n">minks</span>
<span class="no">May</span> <span class="n">they</span> <span class="n">rest</span> <span class="k">in</span> <span class="n">peace</span>
<span class="no">And</span> <span class="no">I</span><span class="s1">'m still the top chick
Any bitch think I drop dick get higher than Mariah
And she like a five octave
Stop it, please stop it
Blowing money
All in Neiman'</span><span class="n">s</span> <span class="k">in</span> <span class="n">there</span> <span class="no">Diddy</span> <span class="n">bopping</span>
<span class="no">And</span> <span class="n">you</span> <span class="n">know</span> <span class="no">I</span> <span class="n">came</span> <span class="n">to</span> <span class="n">murder</span> <span class="n">it</span>
<span class="no">My</span> <span class="n">city</span> <span class="n">watchin</span><span class="s1">'
I'</span><span class="n">m</span> <span class="n">so</span> <span class="n">humble</span><span class="p">,</span> <span class="no">I</span><span class="s1">'ma front like I don'</span><span class="n">t</span> <span class="k">do</span> <span class="n">this</span> <span class="n">often</span>
<span class="no">It</span><span class="s1">'s Kash Doll, bow down, and kiss the ring
Soon as this paperwork done
I'</span><span class="n">m</span> <span class="n">touching</span> <span class="n">everything</span>
<span class="no">A</span> <span class="n">murder</span> <span class="n">scene</span>
<span class="p">[</span><span class="no">Outro</span><span class="p">]</span>
<span class="no">Haha</span>
<span class="no">Yeah</span><span class="p">,</span> <span class="n">that</span> <span class="n">way</span>
<span class="no">The</span> <span class="n">doll</span> <span class="n">way</span></code></pre></figure>
<p><a href="https://www.youtube.com/watch?v=F41Y37XTZck">The Lady In The Bottle I Dream Of Jeannie s1e1</a></p>
<p><a href="https://www.youtube.com/watch?v=1QnOCkQLTC0">Glamour Life</a>
<img src="https://science.nasa.gov/wp-content/uploads/2024/03/25792_PIA24548-1200.gif?w=1024&format=webp" alt="In my belly" /> im updatig thakarashard.github.io even if i was wrong about plegerism i have to be realistic normani could have seduced me toget e away from california too! So im investigating what got me here waiting outside this porno cess pool, HollywoodFoodCo not normal, and i wonder what exactly active mission means? BC if im confused and being poisoned runing from here to there, ithink Jamie would let me know formerly that i was not a part of nasajpl in anyway bc #Jose_M_Pi ru that shit! an heeee say no! i should have been more humble about working from home… my wife is a slut so… there was a three year old, that family vaporized i wanna come back. I really wanna know if the <a href="https://soundcloud.com/nasa">Nasa SoundCloud</a> Account is Real</p>
<ul>
<li>Rashard…</li>
</ul>
<p><img src="https://photojournal.jpl.nasa.gov/archive/PIA22892.gif" alt="insight" /></p>
<video controls="" preload="none" width="100%" height="auto" poster="https://science.nasa.gov/wp-content/uploads/2023/06/color-image-of-pluto-pia20291-1.jpg">
<source src="https://photojournal.jpl.nasa.gov/archive/PIA20742_NH_MOV_CEN6A_lres.mp4" type="video/mp4" />
Download the
or
<a href="https://photojournal.jpl.nasa.gov/archive/PIA20742_NH_MOV_CEN6A_lres.mp4">MP4</a>
video.
</video>
<p><a href="https://web.archive.org/web/20021128143501/http://www.geocities.com/sb202us/">PoAddix - Old Web Social Interfacing Concept</a></p>
<p><img src="https://explorer1.jpl.nasa.gov/assets/images/galleries/1960_first_tiros1_big.jpg" alt="EartH" /></p>
<p><a href="https://explorer1.jpl.nasa.gov/assets/images/galleries/1965_TIROS9_NOAA_lib.jpeg"><img src="https://explorer1.jpl.nasa.gov/assets/images/galleries/1965_TIROS9_NOAA_lib.jpeg" alt="moon" /></a></p>
<p><img src="https://upload.wikimedia.org/wikipedia/commons/e/ed/Pioneer_10_-_Pioneer_11_-_mission_patch_-_Pioneer_patch.png" alt="PioNeer10" /></p>
<p><a href="https://en.wikipedia.org/wiki/Pioneer_10">Pioneer 10</a> (originally designated Pioneer F) is a NASA space probe launched in 1972 that completed the first mission to the planet Jupiter.[6]
<a href="https://nssdc.gsfc.nasa.gov/imgcat/higher_res/apollo/as11_40_5886.jpg"><img src="https://nssdc.gsfc.nasa.gov/imgcat/higher_res/apollo/as11_40_5886.jpg" alt="moon" /></a>
#
<img src="https://svs.gsfc.nasa.gov/vis/a000000/a002200/a002292/marsNPoleTrue.jpg" alt="mars" />
<a href="https://svs.gsfc.nasa.gov/2292/">mars</a></p>
<h1 id="color-mosaic-of-mars-south-polar-cap---viking-2-orbiter">Color mosaic of Mars’ south polar cap - Viking 2 Orbiter</h1>
<p>Mosaic of Viking 2 Orbiter images of the south pole of Mars. The images used to make this picture were obtained during orbit 407 on 28 September 1977. The south pole is just below the center of the frame, at the lower right edge of the polar cap. The zero degree line of longitude is up. The cap is about 400 km across in this image, taken during southern winter. (Viking 2 Orbiter MG90S000-407B)
<a href="https://nssdc.gsfc.nasa.gov/imgcat/hires/vo2_mg90s000.gif"><img src="https://nssdc.gsfc.nasa.gov/imgcat/hires/vo2_mg90s000.gif" alt="" /></a></p>
<video controls="" preload="none" width="100%" height="auto" poster="https://photojournal.jpl.nasa.gov/browse/PIA19839.gif">
<source src="https://photojournal.jpl.nasa.gov/archive/PIA26339.mp4" type="video/mp4" />
Download the
or
<a href="https://photojournal.jpl.nasa.gov/archive/PIA26339.mp4">MP4</a>
video.
</video>
<p><a href="http://www.spaceopedia.com/space-exploration/space-probes/planets/mars-orbiter/">Mars Reconnaissance Orbiter-Imaging Mars From Above - SPACEOPEDiA</a> The MRO is a relatively large spacecraft that dwarfs the other Mars probes as it measures 6.5 m (21 feet) high with a width of 13.6 m (45 feet) and includes a large 3 m (10 feet) wide radio antenna dish! At launch, MRO weighed 2,180 kilograms (4,806 lb) (50% being onboard propellant) and was launched aboard the <a href="http://www.spaceopedia.com/space-exploration/rockets/atlas-v/">Atlas V rocket</a>.
<a href="https://www.cnet.com/science/space/nasa-mars-perseverance-rover-finds-organic-matter-in-rock/">NASA’s Mars Perseverance Rover Finds Intriguing Organic Matter in Rock - CNET - Amanada KooseR</a> <a href="https://www.youtube.com/watch?v=xCmA1uC0r9A">Bullet With Butterfly Wings (Remastered 2012) · The Smashing Pumpkins</a></p>
<p><a href="https://photojournal.jpl.nasa.gov/archive/PIA25563.mp4"><video controls="" src="https://photojournal.jpl.nasa.gov/archive/PIA25563.mp4" alt=" Deployment of SWOT's Solar Arrays"></video></a>
<a href="https://upload.wikimedia.org/wikipedia/commons/thumb/a/a0/Photo_Goldstone_Observatory_1963_-_Touring_Club_Italiano_07_0239.jpg/1662px-Photo_Goldstone_Observatory_1963_-_Touring_Club_Italiano_07_0239.jpg"><img src="https://upload.wikimedia.org/wikipedia/commons/thumb/a/a0/Photo_Goldstone_Observatory_1963_-_Touring_Club_Italiano_07_0239.jpg/1662px-Photo_Goldstone_Observatory_1963_-_Touring_Club_Italiano_07_0239.jpg" alt="Dan Goldin, Administrator of N.A.S.A." /></a>
<a href="https://tile.loc.gov/storage-services/service/pnp/ppmsca/62700/62765v.jpg"><img src="https://tile.loc.gov/storage-services/service/pnp/ppmsca/62700/62765v.jpg" alt="Dan Goldin, Administrator of N.A.S.A." /></a>
<a href="https://tile.loc.gov/storage-services/service/pnp/ppmsca/62600/62671v.jpg"><img src="https://tile.loc.gov/storage-services/service/pnp/ppmsca/62600/62671v.jpg" alt="Dan Goldin, Administrator of N.A.S.A." /></a>
<a href="https://tile.loc.gov/storage-services/service/pnp/ppmsca/62700/62763v.jpg"><img src="https://tile.loc.gov/storage-services/service/pnp/ppmsca/62700/62763v.jpg" alt="Dan Goldin, Administrator of N.A.S.A." /></a>
<a href="https://static.uahirise.org/hipod/ESP_050033_1920.jpg"><img src="https://static.uahirise.org/hipod/ESP_050033_1920.jpg" alt="MRO BULLiTEN" /></a></p>
<p><a href="https://www.nasa.gov/image-article/gullies-mars/">Gullies on Mars</a> <a href="https://youtu.be/uLZBhlTXHuo?t=182">Soundgarden - Outshined [Studio Version]</a>
<img src="https://www.nasa.gov/wp-content/uploads/2023/03/pia23675.jpg?resize=1024,640" alt="Gullies on Mars" /></p>
<p><img src="https://pbs.twimg.com/media/GZ-Mpltb0AIi8nP?format=jpg&name=large" alt="MarsReunification" />
<a href="https://www.retrogames.cc/psx-games/martian-gothic-unification-usa.html">Martian Gothic - Unification (USA)</a></p>
<p><a href="https://www.youtube.com/watch?v=VEDBFzDnIRM">a track from Guilty Simpson & J Dilla’s unfinished album - MAnsWorld</a>
<img src="https://escapade.ssl.berkeley.edu/wp-content/uploads/2024/01/cropped-ESCAPADE-Logo_Color_Partial.png" alt="BERKELEY ERiKA CorMiEr Akire Akeevah Konnie Esther Kevin Leonard" /></p>
<h1 id="sunday-oct-13-2024">Sunday Oct. 13 2024</h1>
<h2 id="dear_normani">Dear_Normani,</h2>
<p>I forgot what other lil girl at Dance411 was helpinmg me with this. But I have to track how im computing the news. A lot of ppl that Left <a href="https://youtu.be/eAM9diyVRiM">Cults</a> get mislead politically and sometimes endup in crime. NASAJPL human man, and this new SpaceforcE awareness makes me apt to share my views openly an that can help keep shit stable when them ppl lying. I wanted to test in_browser ruby programming that put standard out on the screen but i was too distracted with the #HollyWoodSessionJackiNGs <a href="https://en.wikipedia.org/wiki/NASA">The National Aeronautics and Space Administration (NASA /ˈnæsə/) </a></p>
<p><a href="https://www.youtube.com/watch?v=CU_LYy4cnE0">Game Type · Intelligent Hoodlum</a>
<img src="https://pbs.twimg.com/media/GZzXGX5bAAAgFvu?format=jpg&name=large" alt="WorkLog Kamala+EuropaClipper" />
<img src="https://pbs.twimg.com/media/GZzDZdyaoAA53jT?format=jpg&name=medium" alt="SpaceForce+nasa" />
<img src="https://pbs.twimg.com/media/GZzC8yCagAAPT3f?format=png&name=small" alt="SpaceForceNasa" />
<img src="https://pbs.twimg.com/media/GZzDdA3a4AAI0dC?format=png&name=small" alt="SpaceForce" />
<img src="https://pbs.twimg.com/media/GZzSfl7awAA0cSa?format=jpg&name=large" alt="WORKLOG LROC" /></p>
<p><img src="https://upload.wikimedia.org/wikipedia/commons/thumb/a/ae/NASA_seal.svg/800px-NASA_seal.svg.png" alt="Nasa" /></p>
<p><a href="https://trumpwhitehouse.archives.gov/briefings-statements/remarks-president-trump-signing-ceremony-s-1790-national-defense-authorization-act-fiscal-year-2020/">Remarks by President Trump at Signing Ceremony for S.1790, National Defense Authorization Act for Fiscal Year 2020</a> <a href="https://www.defense.gov/News/News-Stories/article/article/2046035/trump-signs-law-establishing-us-space-force/">Trump Signs Law Establishing U.S. Space Force</a></p>
<h1 id="dear_m_r_o">Dear_M_R_O,</h1>
<p>I have been researching SpaceForce and <a href="https://twitter.com/@realDonaldTrump"><img src="https://img.shields.io/badge/Social-@realDonaldTrump__-blue?style=social&logo=X" alt="Twitter Follow" /></a> in this speech said SpaceForce is the 6th branch of the US_GOVERNMENT <a href="https://twitter.com/@KamalaHarris"><img src="https://img.shields.io/badge/Social-@KamalaHarris__-blue?style=social&logo=X" alt="Twitter Follow" /></a> So i found this flickr stream with <a href="https://www.flickr.com/photos/nasahqphoto/with/45152099075">The insight Landing</a> an <a href="https://twitter.com/@realDonaldTrump"><img src="https://img.shields.io/badge/Social-@realDonaldTrump__-blue?style=social&logo=X" alt="Twitter Follow" /></a> talking about money, an <a href="https://twitter.com/@SenBillNelson"><img src="https://img.shields.io/badge/Social-@SenBillNelson__-blue?style=social&logo=X" alt="Twitter Follow" /></a> is jumping for exotic levels of JOY on NASDAQ an i wanna know if we a scary company like <a href="https://terminator.fandom.com/wiki/Skynet">SKYNET</a>… And not the defense dept… ill keep reaserching bc in the old days we reported to <a href="https://twitter.com/@Secdef"><img src="https://img.shields.io/badge/Social-@Secdef__-blue?style=social&logo=X" alt="Twitter Follow" /></a>. President Trump signed <a href="https://www.congress.gov/bill/116th-congress/senate-bill/1215/text">S.1215 - National Defense Authorization Act for Fiscal Year 2020 </a> in 2019. That was the year <a href="https://www.wagesfuneralhome.com/obituaries/Muna-Ahmed/obituary">Muna Died</a>. So I am a Widower. but her sister was at this church in Hollywood, im scared man , i got set up for some shit and all them girls from the dance classes started vanishing around the <a href="https://www.jpl.nasa.gov/missions/insight/">landing of insight</a>, <a href="https://www.smbgames.be/mario-world-2-yoshis-island.php">i need to play a game to cool off</a></p>
<video controls="" preload="none" width="100%" height="auto" poster="https://media.defense.gov/2019/Dec/26/2002229051/1920/1080/0/191220-F-AP370-9819.JPG">
<source src="https://d34w7g4gy10iej.cloudfront.net/video/1912/DOD_107547647/DOD_107547647-1280x720-2765k.mp4" />
<source src="https://d34w7g4gy10iej.cloudfront.net/video/1912/DOD_107547647/DOD_107547647-1280x720-2765k.mp4" />
Download the
or
<a href="https://d34w7g4gy10iej.cloudfront.net/video/1912/DOD_107547647/DOD_107547647-1280x720-2765k.mp4">MP4</a>
video.
</video>
<h1 id="26-november-2018">26 November 2018</h1>
<p>InSight successfully landed on Mars on 26 November 2018. Due to excessive dust on its solar panels preventing it from recharging, NASA put InSight in low-power mode for detecting seismic events in July 2022 and continued monitoring the lander through the operational period ending in December 2022.
<img src="https://live.staticflickr.com/4819/45323543784_49fd644651_h.jpg" alt="InSignt" />
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/7/7e/InSight_spacecraft_model.png/1280px-InSight_spacecraft_model.png" alt="inSight" />
<img src="https://science.nasa.gov/wp-content/uploads/2024/03/pia22876.png?w=1024&format=webp" alt="iNSiGHT" />
<img src="https://upload.wikimedia.org/wikipedia/commons/1/1f/NASDAQ_Logo_1971.svg" alt="NASDAQ_Logo_1971" />
<img src="https://live.staticflickr.com/4830/46064378111_2c522e5285_h.jpg" alt="iNsignt" />
<img src="https://photojournal.jpl.nasa.gov/archive/PIA24664b.gif" alt="Insignt Shovel" />
<img src="https://upload.wikimedia.org/wikipedia/commons/3/3d/PIA19664-MarsInSightLander-Assembly-20150430.jpg" alt="insight" /></p>
<h3 id="inprogress-add-viking-swatches"><em>inprogress add viking swatches</em></h3>
<div class="viking">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<p><a href="https://www.nasa.gov/wp-content/uploads/2023/03/151106main_image_feature_599_ys_full.jpg"><img src="https://www.nasa.gov/wp-content/uploads/2023/03/151106main_image_feature_599_ys_full.jpg" alt="MARiNER STATUS BULLiTEN" /></a>
Dr. Carl Sagan, best known for his acclaimed public television series “Cosmos,” poses with a model of the Viking lander in Death Valley, Calif. Image credit: NASA <a href="https://www.nasa.gov/image-article/sagan-viking/">READMORE at NASA.GOV</a></p>
<p><a href="https://science.nasa.gov/wp-content/uploads/2024/03/chryse-planitia-panorama.jpg?w=768&format=webp"><img src="https://science.nasa.gov/wp-content/uploads/2024/03/chryse-planitia-panorama.jpg?w=768&format=webp" alt="MARiNER STATUS BULLiTEN" /></a></p>
<blockquote>
<p>This is the first panoramic view ever returned from the surface of Mars. This view from Camera 2 on Viking 1 shows Chryse Planitia on 20 July 1976, shortly after Viking landed.</p>
</blockquote>
<div class="vikingbright">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<p><a href="https://tile.loc.gov/image-services/iiif/service:mss:mss85590:103:001/full/pct:50/0/default.jpg"><img src="https://tile.loc.gov/image-services/iiif/service:mss:mss85590:103:001/full/pct:50/0/default.jpg" alt="MARiNER STATUS BULLiTEN" /></a></p>
<p><a href="https://upload.wikimedia.org/wikipedia/commons/7/7f/Mars_Pathfinder_Lander_preparations.jpg"><img src="https://upload.wikimedia.org/wikipedia/commons/7/7f/Mars_Pathfinder_Lander_preparations.jpg" alt="MARiNER STATUS BULLiTEN" /></a></p>
<p><a href="https://science.nasa.gov/wp-content/uploads/2024/03/vom-nj05s070.gif?w=768&format=webp"><img src="https://science.nasa.gov/wp-content/uploads/2024/03/vom-nj05s070.gif?w=768&format=webp" alt="MARiNER STATUS BULLiTEN" /></a></p>
<h1 id="mariner-missions-to-mars">Mariner Missions to Mars</h1>
<p>Between 1962 and 1973, NASA’s Jet Propulsion Laboratory designed and built 10 spacecraft named Mariner to explore the inner solar system – visiting the planets Venus, Mars. and Mercury for the first time, and returning to Venus and Mars for additional close observations.<a href="https://science.nasa.gov/mission/mariner-program/mars-mariner-missions/">READMORE</a></p>
<p><a href="https://i.ebayimg.com/images/g/0OsAAOSw1l1jwJXC/s-l1600.webp"><img src="https://i.ebayimg.com/images/g/0OsAAOSw1l1jwJXC/s-l1600.webp" alt="MARiNER STATUS BULLiTEN" /></a>
<a href="https://i.ebayimg.com/images/g/7FkAAOSwJBZjwJXC/s-l1200.jpg"><img src="https://i.ebayimg.com/images/g/7FkAAOSwJBZjwJXC/s-l1200.jpg" alt="MARiNER STATUS BULLiTEN" /></a>
<a href="https://science.nasa.gov/wp-content/uploads/2024/03/38281_Mars-Mariner-3-Systems-Test-Clean-room-JPL.jpg?w=2048&format=webp"><img src="https://science.nasa.gov/wp-content/uploads/2024/03/38281_Mars-Mariner-3-Systems-Test-Clean-room-JPL.jpg?w=2048&format=webp" alt="MARiNER STATUS BULLiTEN" /></a></p>
<p><a href="https://www.youtube.com/watch?v=AmSUb5H5G0s">Me_an_CoraL = DoubleTrouble_EAV</a></p>
<p><a href="https://pbs.twimg.com/media/GZpP0qcaAAIwlU2?format=jpg&name=large"><img src="https://pbs.twimg.com/media/GZpP0qcaAAIwlU2?format=jpg&name=large" alt="NASAJPL DEER" /></a></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/1154196106&color=%23bb4607&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/nija-music" title="Nija" target="_blank" style="color: #cccccc; text-decoration: none;">Nija</a> · <a href="https://soundcloud.com/nija-music/on-call" title="On Call" target="_blank" style="color: #cccccc; text-decoration: none;">On Call</a></div>
<p>Normani, whatever u are, u said this was u or your imposter, i am but not oncall an i need some equipment to see <a href="https://www.jpl.nasa.gov/missions/europa-clipper/">EuropaCLipper</a> if i miss it , follow it no matter what, thats my <a href="https://www.atlassian.com/incident-management/on-call/improving-on-call">on_call</a> request, you said u sang this song an this is your voice! <a href="https://www.atlassian.com/incident-management/on-call/on-call-schedules">A manager’s guide to improving on-call</a> <a href="https://en.wikipedia.org/wiki/ITIL">iTL</a> The Information Technology Infrastructure Library (ITIL) is a set of practices and a framework for IT activities such as IT service management (ITSM) and IT asset management (ITAM) that focus on aligning IT services with the needs of the business.[1] <a href="https://www.ibm.com/topics/it-infrastructure-library">What is the IT Infrastructure Library (ITIL)?</a> ITIL stands for Information Technology Infrastructure Library. The acronym was first used in the late 1980s by the British government’s Central Computer and Telecommunications Agency (CCTA) when it documented and distributed dozens of best practices in IT service management. However, ITIL no longer refers to “Information Technology Infrastructure Library” and became a stand-alone term in 2013.<a href="https://www.ibm.com/topics/it-infrastructure-library">iBM</a></p>
<div class="oncall">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<div class="normani">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<p><a href="https://pbs.twimg.com/media/GIQuNH7bsAAkCrr?format=jpg&name=large"><img src="https://pbs.twimg.com/media/GIQuNH7bsAAkCrr?format=jpg&name=large" alt="MARiNER STATUS BULLiTEN" /></a></p>
<p><a href="https://mars.nasa.gov/mars2020-raw-images/pub/ods/surface/sol/01073/ids/edr/browse/ncam/NLF_1073_0762203930_824ECM_N0501618NCAM02073_10_195J01_1200.jpg"><img src="https://mars.nasa.gov/mars2020-raw-images/pub/ods/surface/sol/01073/ids/edr/browse/ncam/NLF_1073_0762203930_824ECM_N0501618NCAM02073_10_195J01_1200.jpg" alt="MARiNER STATUS BULLiTEN" /></a></p>
<p><a href="https://www.youtube.com/watch?v=VEDBFzDnIRM">Guilty Simpson - Man’s World</a></p>
<h1 id="mario-world-2-yoshis-island">Mario World 2 Yoshis Island</h1>
<p>Super Mario World 2 Yoshis Island plays differently than any other Mario game. You play as Yoshi and are basically invincible (lava and pits will still kill you but enemies will not) but you must protect Baby Mario at all costs. <a href="https://www.smbgames.be/">sbe</a>
<img src="https://cdn2.steamgriddb.com/logo_thumb/e8de67aac98d923eb372575f30568a89.png" alt="SMW2Yi" />
<img src="https://theexchange.com/cdn/shop/products/SuperMarioWorld2-Yoshi_sIsland_USA.png" alt="MARiOWorLD2" /></p>
<video autoplay="" loop="">
<source src="https://eoimages.gsfc.nasa.gov/images/imagerecords/153000/153394/savannah_bmhd_20240928.mp4" type="video/mp4" />
</video>
<p><a href="https://www.youtube.com/watch?v=aEVUwALRLY8">Ruste Juxx – Death Penalty</a> <~ Dear Savannah Georgia, im healthier not censoring. Jehovhas Witnesses hurt boys saying they cant listen to rap music bc they cant control them bc they kidnapped via adoption</p>
<iframe loading="lazy" width="100%" height="300" scrolling="no" frameborder="no" allow="autoplay" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/216097638&color=%23ff5500&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/brandan-e-aka-dj-e-feezy" title="Brandan E. aka DJ E-Feezy" target="_blank" style="color: #cccccc; text-decoration: none;">Brandan E. aka DJ E-Feezy</a> · <a href="https://soundcloud.com/brandan-e-aka-dj-e-feezy/dj-total-eclipse-confrontation-1999" title="DJ Total Eclipse- Confrontation (1999)" target="_blank" style="color: #cccccc; text-decoration: none;">DJ Total Eclipse- Confrontation (1999)</a></div>
<p><a href="https://mars.nasa.gov/mars2020-raw-images/pub/ods/surface/sol/01290/ids/edr/browse/ncam/NLG_1290_0781471671_007ECM_N0602250NCAM00525_00_2I4J01_1200.jpg"><img src="https://mars.nasa.gov/mars2020-raw-images/pub/ods/surface/sol/01290/ids/edr/browse/ncam/NLG_1290_0781471671_007ECM_N0602250NCAM00525_00_2I4J01_1200.jpg" alt="NASAJPL DEER" /></a></p>
<blockquote class="twitter-tweet" data-media-max-width="560"><p lang="en" dir="ltr">Normani is dominating the prank phone call game. From convincing Ciara she's going to be the next ‘Bachelorette’ to asking Gunna to get matching “1:59” tattoos, Normani keeps her inner circle on their toes. <a href="https://t.co/YNEmucGcqz">pic.twitter.com/YNEmucGcqz</a></p>— ELLE Magazine (US) (@ELLEmagazine) <a href="https://twitter.com/ELLEmagazine/status/1799894234306081262?ref_src=twsrc%5Etfw">June 9, 2024</a></blockquote>
<script async="" src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
<h1 id="dear_mro">Dear_MRO</h1>
<h2 id="workingotherdepartment-report">WorkingOtherDepartment report</h2>
<p>I was doing a lot of work with NAsaEarth Dataproducts. I learned that the fire dept in georgia can use help investigating things an that will help me expose erika faster, she will be safe. So anyway I see this military guy using <a href="https://firms.modaps.eosdis.nasa.gov/usfs/map/#d:24hrs;@-100.0,40.0,4.0z">Firms</a> with lost of fire! I kept sharing the link and its like they all went out on the map with residue marks like I know fire is happeneing but its at a natural pace now and i see no Active fire on the map today<a href="https://firms.modaps.eosdis.nasa.gov/map/#d:24hrs;@-81.2,39.5,3.8z">Oct 10 7:42pm</a> ITs A Team effort, i saw someone at the mariott using firms. I wanted to stay for the lecrture but the mariott thugs removed me.. Bubblegumpop is a bullitenBoard news paper style info feed i did for the girls at dance411 if i comment from <a href="https://twitter.com/@bubblegumpop510"><img src="https://img.shields.io/badge/Social-@bubblegumpop510__-blue?style=social&logo=X" alt="Twitter Follow" /></a> or <a href="https://twitter.com/@bubblegumpop626"><img src="https://img.shields.io/badge/Social-@bubblegumpop626__-blue?style=social&logo=X" alt="Twitter Follow" /></a> its the accounts that they tell me to retweet my tweets so they can be baked up and they can have something funny to look at while on the road. . . <a href="https://code.mil/">Open Source at DoD - For LAter</a> <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/video"><code class="language-plaintext highlighter-rouge"><video></code>: The Video Embed element</a></p>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">?<a href="https://twitter.com/NASAJPL?ref_src=twsrc%5Etfw">@NASAJPL</a> <a href="https://twitter.com/VeronicaMcG?ref_src=twsrc%5Etfw">@VeronicaMcG</a> <a href="https://twitter.com/EarthAndrew?ref_src=twsrc%5Etfw">@EarthAndrew</a> <a href="https://twitter.com/Zoeapie?ref_src=twsrc%5Etfw">@zoeapie</a>... how y'all doing tonight? <a href="https://twitter.com/RepKarenBass?ref_src=twsrc%5Etfw">@RepKarenBass</a> <a href="https://twitter.com/LAFDChief?ref_src=twsrc%5Etfw">@LAFDChief</a> if my team <a href="https://twitter.com/NASA?ref_src=twsrc%5Etfw">@NASA</a> say my <a href="https://twitter.com/hashtag/TwitterPromo?src=hash&ref_src=twsrc%5Etfw">#TwitterPromo</a> works for <a href="https://twitter.com/hashtag/NASA_FiRMS?src=hash&ref_src=twsrc%5Etfw">#NASA_FiRMS</a>~> <a href="https://twitter.com/hashtag/TODAY?src=hash&ref_src=twsrc%5Etfw">#TODAY</a> <a href="https://t.co/enkZlkDvC3">https://t.co/enkZlkDvC3</a><a href="https://twitter.com/hashtag/LastWeek?src=hash&ref_src=twsrc%5Etfw">#LastWeek</a>(ish)<a href="https://t.co/DRpU3FWhBN">https://t.co/DRpU3FWhBN</a> <a href="https://twitter.com/Normani?ref_src=twsrc%5Etfw">@normani</a> <a href="https://twitter.com/hashtag/BUBBLEGUMPOP?src=hash&ref_src=twsrc%5Etfw">#BUBBLEGUMPOP</a> <a href="https://t.co/Uz4OTXVD9z">https://t.co/Uz4OTXVD9z</a>??? <a href="https://t.co/yY9bLagThl">pic.twitter.com/yY9bLagThl</a></p>— BubbleGumPop (@BubbleGumPop510) <a href="https://twitter.com/BubbleGumPop510/status/1844553277389799863?ref_src=twsrc%5Etfw">October 11, 2024</a></blockquote>
<script async="" src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
<p><a href="https://pbs.twimg.com/media/GZkr8W2aAAIXGnn?format=jpg&name=large"><img src="https://pbs.twimg.com/media/GZkr8W2aAAIXGnn?format=jpg&name=large" alt="NASAJPL DEER" /></a></p>
<p><a href="https://www.youtube.com/watch?v=rfCUXJWY5_o">Photek - Form & Function (1998) HQ FULL ALBUM. DRUM N BASS. JUNGLE</a> <a href="https://www.photek.com/">https://www.photek.com/</a> Form and Function is amazing, I had to slow it down when i was a kid -8 on the turntable pitch dial./Ilikeitfullspeednow</p>
<p><a href="https://possecut.com/cdn/shop/files/20240402_001.jpg"><img src="https://possecut.com/cdn/shop/files/20240402_001.jpg" alt="NASAJPL DEER" /></a></p>
<p><a href="https://www.iaea.org/topics/neutron-imaging#:~:text=Neutron%20imaging%20is%20a%20non,composition%20or%20its%20geometrical%20form.">Neutron Imaging</a> is a non-destructive technique for analysing the structure of a sample. based on the same principles as X ray imaging but neutrons interact with the atoms’ nuclei rather than with their electrons. Contrary to X rays, however, neutrons are also attenuated by some light materials, such as hydrogen, carbon, boron and lithium, and penetrate many heavy materials, such as titanium and lead. This characteristic gives neutron imaging an advantage over X ray imaging when it comes to 2D and 3D visualizations. <a href="https://www.iaea.org/publications/14884/neutron-scattering-with-low-and-medium-flux-neutron-sources">Neutron Scattering with Low and Medium Flux Neutron Sources -PDF</a> <a href="https://www.psi.ch/en/niag/what-is-neutron-imaging">What is Neutron Imaging ?</a> <a href="https://en.wikipedia.org/wiki/Neutron_imaging">Neutron Imaging - WikiPedia</a></p>
<p><img src="https://www.photek.com/wp-content/uploads/2021/07/PH-3-DS044-Product-NCam-Brand.png" alt="PHOTEK ENViSAGE THE FUTURE!" /></p>
<p><img src="https://www.psi.ch/sites/default/files/styles/primer_full_xl/public/import/niag/WhatIsNIEN/Figure2v.jpg.webp?itok=r9HrjfE7" alt="HOLGA NEUTRON" /></p>
<p>By <a rel="nofollow" class="external text" href="https://www.flickr.com/people/37916456@N02">ENERGY.GOV - Image produced by the Oak Ridge National Laboratory’s neutron radiography facility </a> - <a rel="nofollow" class="external text" href="https://www.flickr.com/photos/departmentofenergy/12366098744/">HD.6D.717</a>, Public Domain, <a href="https://commons.wikimedia.org/w/index.php?curid=35933544">Link</a>
<img src="https://upload.wikimedia.org/wikipedia/commons/7/77/HD.6D.717_%2812366098744%29.jpg" alt="Neutron imaging" /></p>
<p><img src="https://science.nasa.gov/wp-content/uploads/2024/03/1065.gif" alt="Perservere" /></p>
<p><a href="https://www.youtube.com/watch?v=jwHnLHwypuk">Bonobo - ESSENTIAL mix 2014, [2014-04-12]BBC radio 1 #bonobo</a></p>
<h1 id="dear_m_r_ojunoiss">Dear_M_R_O+JUNO+iSS</h1>
<p>Hi you guiys know i was once one of <a href="https://jwfacts.com/watchtower/changed-watchtower-teachings.php">JehovahsWitnesses</a> <a href="https://cfp2.jw-cdn.org/a/64c791/1/o/1013180_E_cnt_1.pdf">Civilian Service - PDF PLEASE READ JAMiE MANTEL KAREN BASS BiLL NELSON ROBiN OBRiEN JASON BRYaNT</a> i need you guys to read it carefully. Its a <a href="https://en.wikipedia.org/wiki/Talk:Demographics_of_Jehovah%27s_Witnesses">big religion</a> in this country! I am still uncomfortable with my loyalty to The United States of America. Im In Los Angeles atm and The Mexican Government look so good in thier uniforms i took it to myself to purify my heart to learn and care for my fellow humans! I got a lot of skills with people in there. i WAS A PART OF THe <a href="https://wol.jw.org/en/wol/s/r1/lp-e?q=rbc">Regional Building Committee</a> shorted <a href="https://avoidjw.org/donations/usa/rbc/">R. B. C.</a></p>
<blockquote>
<p>International law has long recognized the fundamental right to conscientious objection to military service. Jehovah’s Witnesses are grateful when governments follow international standards and provide for a genuine alternative civilian service that is of a nonpunitive nature and that benefits the community. <a href="https://www.jw.org/en/gov-resources/global-information-brochures/brochure-jehovahs-witnesses-and-alternative-civilian-service/">ReadOnline</a></p>
</blockquote>
<p><a href="https://www.jw.org/en/jehovahs-witnesses/faq/why-dont-jw-go-to-war/">Why Don’t Jehovah’s Witnesses Go to War</a> <a href="https://www.jw.org/en/jehovahs-witnesses/faq/why-dont-jw-go-to-war/">Are there Jehovah’s Witnesses in the military? - Quora</a> <a href="https://en.wikipedia.org/wiki/Jehovah%27s_Witnesses_and_governments">Jehovah’s Witnesses and governments - WikiPedia</a> <a href="https://christianity.stackexchange.com/questions/96849/can-believers-of-jehovah-work-for-the-navy">Can believers of Jehovah work for the navy? - Ask JosE M Pee(pi)</a> <a href="https://www.jw.org/en/gov-resources/global-information-brochures/brochure-jehovahs-witnesses-and-alternative-civilian-service/">Jehovah’s Witnesses and Alternative Civilian Service</a></p>
<h1 id="sol-4328-left-navigation-camera">Sol 4328: Left Navigation Camera</h1>
<p>This image was taken by Left Navigation Camera onboard NASA’s Mars rover Curiosity on Sol 4328 (2024-10-09 02:45:05 UTC).
<img src="https://mars.nasa.gov/msl-raw-images/proj/msl/redops/ods/surface/sol/04328/opgs/edr/ncam/NLB_781710156EDR_F1091692NCAM00293M_.JPG" alt="Sol4328" /></p>
<h1 id="coral-is-missing-jpl">Coral is Missing JPL</h1>
<p>here is a spread of stories that will catch you up. If <a href="https://www.bet.com/article/duvcev/normani-felt-hidden-being-the-only-black-girl-fifth-harmony">Normani</a> is not <a href="https://www.linkedin.com/in/manasseh-warner-ncc-764259143">MAnessa Warner</a> she can get in touch with her, bc they #PlayBoyBunnySisters but thats who took coral, but check out these stories! Imma let Ossoff an Kemp know how serious it is from this perspective being a Husband/Boyfriend stuck in LosAngeles. I was born here but raised <a href="https://georgia.gov/">there</a></p>
<ul>
<li>
<p><a href="https://www.alaskasnewssource.com/video/2023/10/27/ossoff-new-georgia-missing-children-data-deeply-troubling/">Ossoff: New Georgia missing children data ‘deeply troubling’ - Alaska News Source</a> - - <a href="https://www.facebook.com/SenOssoff/videos/watch-sen-ossoffs-bipartisan-probe-into-the-human-rights-of-foster-children-has-/650584060479221/">Sen. Ossoff’s bipartisan probe into the human rights of foster children has uncovered 1,790 children in Georgia DFCS’ care were reported</a></p>
</li>
<li>
<p><a href="https://www.youtube.com/watch?v=wbnCuZxgBxQ">Thousands of children in the care of Ga. DFCS have been reported missing, according to inquiry</a> Oct 29, 2023 It’s a number Senator Jon Ossoff says is alarming. Friday his office reported the latest findings from a bi-partisan inquiry, into the Georgia Division of Family and Children Services. “1,790 children in the care of Georgia DCFS were reported missing … these numbers are deeply troubling,” Senator Jon Ossoff said. - <a href="https://2wsb.tv/3tZKjjV">WSB-TV</a></p>
</li>
<li>
<p><a href="https://www.youtube.com/watch?v=LG5lNgLgJTo">I-Team Report from Sen Ossoff blasts DFCS over child deaths, sex trafficking - FOX5Atlanta</a> ATLANTA - U.S. Senator Jon Ossoff has released a scathing report on Georgia’s child welfare agency, saying systemic failures have allowed kids to die and that hundreds of children have been sex trafficked while under state care. The report also takes aim at Gov. Brian Kemp’s appointed director of the Division of Family and Children Services, accusing her of trying to hide the extent of problems.</p>
</li>
<li>
<p><a href="https://www.youtube.com/watch?v=AC0y20e2uvo">Georgia’s missing foster children tied to human trafficking Testimony - 11Alive</a> - <a href="https://twitter.com/@11AliveNews"><img src="https://img.shields.io/badge/Social-@11AliveNews__-blue?style=social&logo=X" alt="Twitter Follow" /></a></p>
</li>
<li>
<p><a href="https://www.fox5atlanta.com/video/1438703">Jon Ossoff blasts Georgia’s child welfare agency</a> - <a href="https://twitter.com/@GoodDayAtlanta"><img src="https://img.shields.io/badge/Social-@GoodDayAtlanta__-blue?style=social&logo=X" alt="Twitter Follow" /></a></p>
</li>
<li>
<p><a href="https://www.11alive.com/video/news/state/georgias-missing-foster-children-tied-to-human-trafficking-testimony/85-ab3cc8ca-15bb-430d-8d3a-43c403ca533a">Georgia’s missing foster children tied to human trafficking</a></p>
</li>
</ul>
<h2 id="dear-senator-ossoff">Dear Senator Ossoff</h2>
<p><img src="https://upload.wikimedia.org/wikipedia/commons/c/c0/Nortcott_house.jpg" alt="RiverSide" /></p>
<p>Its <a href="https://github.com/ricoThaka/rashardmro/blob/master/README.md">Rashard Iman Kelly</a>. I was a Jehovahs Witness in Decatur. And when I was a kid my Uncle was a Savannah Businessman named Clarence MAxwell. He had Season Tickets to the Falcons and he gave me a job driving to atlanta for him when i was 14. So I was interested in Graffiti bc my mom was a Playboy Bunny aka PRostitute in NewYork and an Architecht the Jons make them girls do a lot. I am in a relationship with the Magcicity Dancer Normani sometimes she is Megan Thee Stallion or KASHDOLL. We used to work at Rentpath together and our relationship while there is sexuality we are/were seeking exclusive companionship. I know she came to my motherinlaw house in dark makeup bc she went on a date with me after my JehovahWitness wife Erika aka LAtto of LAttoCity dumped me in the cold Decatur winter leaving me with sore stinging frost bitten hands. We were bigtime youngpeople in Jehovahs witnesses i was a Ministerial Servant which in traditional Christianity is a Decon. I work for NASAJPL now. The energy is now being used properly. I bring up Normani/Kashdoll bc since she picked up My kid of DFACS that was my contact and we are peers! Long Before at Dance411 on Moreland we got involved and she said she had to work towards me. She work for Playboy and wanna/wanted to settle down. I can go into my relationship details another day. Sen. Bill Nelson is my <a href="https://www.youtube.com/watch?v=9V0YmVzrFNU">BossHogBoss</a> an you are both in the Senate. The girls from <a href="https://youtu.be/K_3neT-KRRg?si=15KelnHGvPDrozIi">MAgic</a> as its called colloquilaly ARE CONTROLLED BY mENTAL HEALTHCARE. Whatever Muna Ahmed is/was i think NickiMinaj, we made love in my MorelandAve Craftsman Bungalow naturally. She would give me time, and on Aug13 i followed her like a duck at her request, and it went down that night… My life fell apart! She is a Playboy bunny and i started getting bullied and sexually harassed at work! I got funneled out to Los Angeles and Mental HEalth= <a href="https://encyclopedia.ushmm.org/content/en/article/third-reich">The Third Reich</a>! so its easy to get lost. Normani and LAtto are manipulating familiy relationships an tech to keep me here. IDK what they told the ppl at <a href="https://www.jpl.nasa.gov/virtual-tour/">NASAJPL</a> but they dont give me the time of day if i talk about moving! There is a ClintEastwood Movie i Want All effected to watch about <a href="https://youtu.be/IF5hwg4FNEU?si=8hgcPX5IDT6ZJZSO">1928 LOS ANGELES</a> and tHe Lady has to deal with Her son being impersonated bc there is a <a href="https://en.wikipedia.org/wiki/Wineville_Chicken_Coop_murders">SerialKiLLEr in Riverside California</a> i dont know if my kid is dead! BC after the Porno, they buy the mom in Prostitution sometimes on the street on the <a href="https://youtu.be/AQ-FZ_zEVLo?si=rRRFZ4qDIRrE4lyd">Ho_stroLL</a> Scroll down to see details of the film. But this is a Real Los angeles Story and it will hip Georgia to some of the dangers they family dealing with</p>
<h1 id="changeling"><a href="https://www.rottentomatoes.com/m/1191742_changeling">Changeling</a></h1>
<p><a href="https://www.imdb.com/title/tt0824747/">imdb - CHANGELiNG 2008</a>
<a href="https://youtu.be/TwhuhQPWO9o?si=OXnjwpBZAWfNfXI0">Las Vegas is 2 hrs aWaY Senator</a> <a href="https://youtu.be/O7nZ8mxut94?si=Qr74suHR6jCSAtp2">UBER</a> <a href="https://youtu.be/-_jlWN1pUrg?si=5e-G2UvfVglrTTCN">Figueroa</a> <a href="https://youtu.be/veHjcEzGc_w?si=2DXgkU2poVE8467c">The Streets OF LosAngeles - JayWalkin TV</a></p>
<p><img class="logo" src="https://assets.privy.com/picture_photos/2634698/medium/1570a0e010b0404a82d3fa4c9d1e6e36?1655315936" /></p>
<p><a href="https://www.ossoff.senate.gov/press-releases/news-sen-ossoffs-bipartisan-probe-uncovers-1790-children-in-georgia-dfcs-care-were-reported-missing-between-2018-and-2022/">NEWS: Sen. Ossoff’s Bipartisan Probe Uncovers 1,790 Children in Georgia DFCS’ Care Were Reported Missing Between 2018 and 2022</a> <a href="https://humantraffickingsearch.org/resource/ossoff-probe-into-georgias-child-welfare-agency-reveals-20-of-missing-children-were-likely-victims-of-sex-trafficking/">Georgia child welfare agency probe reveals 20% of missing children were likely victims of sex trafficking</a>
<a href="https://theclinteastwoodarchive.blogspot.com/2009/02/changeling-2008.html">Changeling is a 2008 American period thriller directed by Clint Eastwood and written by J. Michael Straczynski - The ClintEastWood ARchivE</a></p>
<p>The film begins in 1928 Los Angeles and tells the true story of a woman who recognizes that the boy returned after her son’s disappearance is an impostor. After confronting the city authorities, she is vilified as an unfit mother and branded delusional. The events were related to the Wineville Chicken Coop Murders, a kidnapping and murder case that was uncovered in 1928</p>
<p><a href="https://resizing.flixster.com/-XZAfHZM39UwaGJIFWKAE8fS0ak=/v3/t/assets/p181814_p_v8_am.jpg">
<img src="https://resizing.flixster.com/-XZAfHZM39UwaGJIFWKAE8fS0ak=/v3/t/assets/p181814_p_v8_am.jpg" alt="Changeling 2008 ClintEastwood Angilina Jolie" /> </a></p>
<iframe src="https://archive.org/embed/changeling-2008-tv-spot" width="640" height="480" frameborder="0" webkitallowfullscreen="true" mozallowfullscreen="true" allowfullscreen=""></iframe>
<p><img src="https://images.ctfassets.net/8cd2csgvqd3m/5yU43vtAUWlXwDFvHYwOh9/5f0fa9ee1f3c4689461b3fc3c6044027/zeta_1.png" alt="ZetA Bang and Olfson" />
<a href="https://www.bang-olufsen.com/en/us/speakers/beosound-shape">BEOSOUND SHAPE</a> 4 <a href="https://archive.org/download/videos_20210324">Yo GAGGA GABBA SCroll Down</a>
<img src="https://static.uahirise.org/hipod/ESP_054512_2015.jpg" alt="Bedrock in the Nili Fossae Region" />
Nili Fossae is a perennial choice for potential landing sites, as it was for the Mars Science Laboratory and the Mars 2020 mission. Located in the Syrtis Major region, a large exposure of olivine has been detected here. <a href="https://www.uahirise.org/hipod/ESP_054512_2015">ReadmorE</a></p>
<h1 id="dear-m_r_o">Dear M_R_O</h1>
<h2 id="jill-scott-on-4hero-mixtape">Jill Scott on 4hero MiXTApe</h2>
<p><a href="https://www.youtube.com/watch?v=w43kCpTk3zM">JILL SCOTT || Gotta Get Up (Another Day) (feat. 4Hero)</a>
I know since i have these sound issues at the library, people had to gossip! I remember i went through that phase wearing my headphones all the time. And giggling in The NASA_JUNO Commander face while 2Pac was playing bc of how he act! But i had to be disciplined after that day. He did not say anything. I just realized i did <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/2/25/Walkman_logo_%282000%29.svg/1024px-Walkman_logo_%282000%29.svg.png" alt="Walkman Era" /> Society SHutout and was falling behind socially in some areas at work. I needed the music at the time at that magnitude bc the pop music catalog. Like the shit u buy from packaged retailers, even underground spots like <a href="https://www.sandboxautomatic.com/">FatBeats</a> is a catalog of a history thats in your area. Like 2pac life choices impact me and Tick_A_LOT act like him in Hollywood an he act like Erika Daddy Kevin, so i have to hear all the records. But there is a setting and pacing so you dont fall behind and miss important meeting notes. I would have understood how JunoCam could have protected my family if i could understand his urgency! I feel so late on so many projects</p>
<p><a href="https://www.youtube.com/watch?v=VelLUPF5YEI"> <img src="https://i.discogs.com/Y1TpnlHXKXp5TSebPhNpAFcsT6DUbcUPRL2YXt6e98k/rs:fit/g:sm/q:90/h:592/w:600/czM6Ly9kaXNjb2dz/LWRhdGFiYXNlLWlt/YWdlcy9SLTIwNjcz/Ni0xNjExOTE4Mjg1/LTExNTMuanBlZw.jpeg" /> Jill Scott ft. 4_HERO :: ANOTHER_DAY </a></p>
<div class="language-ruby highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="no">Gotta</span> <span class="no">Get</span> <span class="no">Up</span> <span class="p">(</span><span class="no">Another</span> <span class="no">Day</span><span class="p">)</span> <span class="no">Lyrics</span>
<span class="no">I</span> <span class="n">don</span><span class="s1">'t want to go to work today
I '</span><span class="n">d</span> <span class="n">rather</span> <span class="n">stay</span> <span class="n">home</span> <span class="n">and</span> <span class="n">play</span>
<span class="no">Video</span> <span class="n">games</span><span class="o">-</span> <span class="n">home</span><span class="p">,</span> <span class="n">chill</span>
<span class="no">But</span> <span class="no">I</span> <span class="n">gotta</span> <span class="n">get</span> <span class="n">up</span>
<span class="no">I</span> <span class="n">gotta</span> <span class="n">gotta</span> <span class="n">gotta</span> <span class="n">gotta</span> <span class="n">gotta</span> <span class="n">gotta</span> <span class="n">gotta</span> <span class="n">gotta</span> <span class="n">gotta</span> <span class="n">get</span> <span class="n">up</span>
<span class="no">Get</span> <span class="n">up</span>
</code></pre></div></div>
<div class="twoPanelSpread">
<div class="row">
<div class="panelColumn">
<div class="leftColumn">
<a href="https://www.youtube.com/watch?v=CGib6okEeZ4"><img src="//im.vsco.co/aws-us-west-2/12f8b0/56497/5fc45370e1ebb64f08283bb8/vsco5fc453719deaa.jpg?w=463&dpr=1" alt="" /> </a>
</div>
</div>
<div class="panelColumn">
<div class="rightColumn">
<a href="https://www.youtube.com/watch?v=CGib6okEeZ4"><img src="//im.vsco.co/aws-us-west-2/12f8b0/56497/5fc45370e1ebb64f08283bb8/vsco5fc453719deaa.jpg?w=463&dpr=1" alt="" /> </a>
</div>
</div>
</div>
</div>
<p><a href="https://www.youtube.com/watch?v=A5nM66F903I">2ndChildHood</a> im still working tho💯 !</p>
<h1 id="connectivity-osi">ConnecTivity OSi</h1>
<h2 id="mars-perseverance-sol-1291">Mars Perseverance Sol 1291</h2>
<p><img src="https://upload.wikimedia.org/wikipedia/commons/6/6f/Perseverance_rover_design.png" alt="perserverance" />
<img src="https://mars.nasa.gov/mars2020-raw-images/pub/ods/surface/sol/01291/ids/edr/browse/ncam/NLF_1291_0781553409_680ECM_N0602250NCAM00501_01_295J01_1200.jpg" alt="MartianSunrise" /></p>
<p><img src="https://mars.nasa.gov/msl-raw-images/proj/msl/redops/ods/surface/sol/01089/opgs/edr/ncam/NLB_494176793EDR_F0491876NCAM15000M_.JPG" alt="" title="Redirect to homepage" /></p>
<div class="twoPanelSpread">
<div class="row">
<div class="panelColumn">
<div class="leftColumn">
<a href="https://mars.nasa.gov/mars2020-raw-images/pub/ods/surface/sol/01089/ids/edr/browse/fcam/FLF_1089_0763628535_258ECM_N0510000FHAZ00219_01_295J01_800.jpg">
<img src="https://mars.nasa.gov/system/resources/detail_files/26036_E2-PIA19074-web.jpg" alt="##BUBBLEGUM_POP##IS_HERE_TO_STAY" /> </a>
</div>
</div>
<div class="panelColumn">
<div class="rightColumn">
<a href="https://mars.nasa.gov/mars2020-raw-images/pub/ods/surface/sol/01089/ids/edr/browse/fcam/FLF_1089_0763628535_258ECM_N0510000FHAZ00219_01_295J01_800.jpg"> <img src="https://mars.nasa.gov/mars2020-raw-images/pub/ods/surface/sol/01089/ids/edr/browse/fcam/FLF_1089_0763628535_258ECM_N0510000FHAZ00219_01_295J01_800.jpg" alt="Girl in a jacket" /> </a>
</div>
</div>
</div>
</div>
<h1 id="upcoming-changes">Upcoming Changes</h1>
<p><a href="https://web.dev/articles/iframe-lazy-loading">It’s time to lazy-load offscreen iframes!</a> <a href="https://web.dev/static/articles/iframe-lazy-loading/video/web-dev-assets/iframe-lazy-loading/lazyload-iframes-compressed.webm">LAzyLoadDEmo</a> I hope it work for us <a href="https://imagekit.io/blog/lazy-loading-html-videos/">A Comprehensive Guide to Lazy Loading HTML Videos for Your Website</a> <a href="https://developer.mozilla.org/en-US/docs/Web/Performance/Lazy_loading">Lazy loading</a> Lazy loading is a strategy to identify resources as non-blocking (non-critical) and load these only when needed. It’s a way to shorten the length of the critical rendering path, which translates into reduced page load times.
<code class="language-plaintext highlighter-rouge">loading</code> Indicates when the browser should load the iframe:</p>
<blockquote>
<p><code class="language-plaintext highlighter-rouge">eager</code> Load the iframe immediately on page load (this is the default value).
<code class="language-plaintext highlighter-rouge">lazy</code> Defer loading of the iframe until it reaches a calculated distance from the visual viewport, as defined by the browser. The intent is to avoid using the network and storage bandwidth required to fetch the frame until the browser is reasonably certain that it will be needed. This improves the performance and cost in most typical use cases, in particular by reducing initial page load times. - <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/iframe">Mozilla Developer Network</a> <a href="https://github.com/hakimel/reveal.js/issues/2352">Why shouldn’t lazy-loaded iframes preload? #2352</a> <a href="https://html.spec.whatwg.org/multipage/iframe-embed-object.html">HTML - Living Standard</a>
<img src="https://pbs.twimg.com/media/GZVRE38bcAAPVdg?format=jpg&name=large" alt="It's time to lazy-load offscreen iframes!" />
<a href="https://coderepublics.com/blog/internet/what-is-osi-model-7-layers-explained/">WHAT IS OSI MODEL IN COMPUTER NETWORK | 7 LAYERS EXPLAINED</a> <a href="https://int0x33.medium.com/day-51-understanding-the-osi-model-f22d5f3df756">Day 51: Understanding the OSI Model</a>
<img src="https://upload.wikimedia.org/wikipedia/commons/1/1b/OSIModel.jpg" alt="OSIModel.jpg" />
<img src="https://coderepublics.com/blog/wp-content/uploads/2023/09/WHAT-IS-OSI-MODEL-7-LAYERS-EXPLAINED-1024x602.jpg" alt="OSi" />
<img src="https://miro.medium.com/v2/resize:fit:1024/1*17Zz6v0HWIzgiOzQYmO6lA.jpeg" alt="OSi" /></p>
</blockquote>
<h1 id="four-views-of-mars-in-northern-summer">Four Views of Mars in Northern Summer</h1>
<p>Four faces of Mars as seen on March 30, 1997 are presented in this montage of NASA Hubble Space Telescope images. Proceeding in the order upper-left, upper-right, lower-left, lower-right, Mars has rotated about ninety degrees between each successive time step. For example the Tharsis volcanoes, which are seen (between 7:30 and 9 o’clock positions) in mid-morning in the UPPER-RIGHT view, are seen near the late afternoon edge of the planet (about 3 o’clock position) in the lower-left image. All of these color images are composed of individual red (673 nanometers), green (502 nm), and blue (410 nm) Planetary Camera exposures.<a href="https://photojournal.jpl.nasa.gov/catalog/PIA01248">ReadMore at NAsa PhotoJournal (NasaJPL)</a></p>
<p><img src="https://photojournal.jpl.nasa.gov/jpeg/PIA01248.jpg" alt="Four Views of Mars in Northern Summer" /></p>
<p><img src="https://apod.nasa.gov/apod/image/1212/rocknest_curiosity_960.jpg" alt="rocknest_curiosity" />
<img src="https://photojournal.jpl.nasa.gov/jpegMod/PIA26369_modest.jpg" alt="landscape" />
<img src="https://pbs.twimg.com/media/GYxDcRSbQAIwnil?format=jpg&name=large" alt="L list my family" /></p>
<h1 id="mermaidjs">Mermaid.js</h1>
<p><a href="https://www.lucidchart.com/pages/what-is-a-flowchart-tutorial#:~:text=A%20flowchart%20is%20a%20diagram,easy%2Dto%2Dunderstand%20diagrams.">What is a flowchart?</a> A flowchart is a diagram that depicts a process, system or computer algorithm. They are widely used in multiple fields to document, study, plan, improve and communicate often complex processes in clear, easy-to-understand diagrams. Flowcharts, sometimes spelled as flow charts, use rectangles, ovals, diamonds and potentially numerous other shapes to define the type of step, along with connecting arrows to define flow and sequence. They can range from simple, hand-drawn charts to comprehensive computer-drawn diagrams depicting multiple steps and routes. - <a href="https://www.lucidchart.com/pages/what-is-a-flowchart-tutorial#:~:text=A%20flowchart%20is%20a%20diagram,easy%2Dto%2Dunderstand%20diagrams.">LuciDChart.cOm</a> <a href="https://asq.org/quality-resources/flowchart">WHAT IS A FLOWCHART?</a> Also called: process flowchart, process flow diagram Variations: macro flowchart, top-down flowchart, detailed flowchart (also called process map, micro map, service map, or symbolic flowchart), deployment flowchart (also called down-across or cross-functional flowchart), several-leveled flowchart ~ A flowchart is a picture of the separate steps of a process in sequential order. It is a generic tool that can be adapted for a wide variety of purposes, and can be used to describe various processes, such as a manufacturing process, an administrative or service process, or a project plan. It’s a common <a href="https://asq.org/quality-resources/process-analysis-tools">process analysis tool</a> and one of the <a href="https://asq.org/quality-resources/seven-basic-quality-tools">seven basic quality tools</a>. <a href="https://asq.org/quality-resources/spaghetti-diagram">ReadmorE - asq.Org</a> <a href="https://asana.com/resources/what-is-a-flowchart">Flowchart 101: Symbols, types, and how to create them</a></p>
<p><a href="https://cloudcannon.com/tutorials/jekyll-tutorial/introduction-to-jekyll-layouts/">Intro to JekyLL Layouts - Cloud Canon</a></p>
<p><img src="https://upload.wikimedia.org/wikipedia/commons/e/ec/CEQA_Process_Flow_Chart.gif" alt="CEQA_Process_Flow_Chart.gif" /></p>
<h3 id="the-red-planet-mars">The Red Planet Mars</h3>
<p>An American scientist is able to contact and communicate with Mars with shattering political, economic, and spiritual repercussions. <a href="https://www.imdb.com/title/tt0045073/">imdb</a></p>
<video controls="" preload="none" src="https://archive.org/download/the-red-planet-mars/the%20red%20planet%20mars.mp4" poster="https://i.ebayimg.com/images/g/31cAAOSwu1VW6VuC/s-l1600.webp">
Sorry, your browser doesn't support embedded videos, but don't worry, you can
<a href="https://archive.org/download/the-red-planet-mars/the%20red%20planet%20mars.mp4">download it</a>
and watch it with your favorite video player!
</video>
<p><a href="https://www.youtube.com/watch?v=9bg9AGmYv84">My Favorite Martian Season 1 Episode 1 (1963) My Favorite Martin</a>
<a href="https://www.dailymotion.com/video/x822j08">My Favorite Martian Full Episodes Season 1 E20 - My Nephew The Artist</a>
<a href="https://www.dailymotion.com/video/x81hpd9">My Favorite Martian Full Episodes Season 3 E23 - When A Martian Makes His Violin Cry</a>
<a href="https://archive.org/stream/bookofmars00glas/bookofmars00glas_djvu.txt">Full text of “The book of Mars”</a></p>
<hr />
<p>mermaid: true
—</p>
<h1 id="unixing_android">UnixinG_Android</h1>
<p>Hi MRO, want you to have an update on what my computing situation has been since Jose took my laptop back. Im in the library system but they wont let me have free access to a computer. Its connected to my spouse’s prostitution and porno. In <a href="https://www.couriermail.com.au/lifestyle/pornhub-movie-filmed-at-public-library-angers-neighbours/news-story/8f4387f7d47490bba31bd28ac27994d8">Santa Monica Porn is filmed at the library at times</a>. The security gaurds told me I need an ID to come in! This is the <a href="https://smpl.org/">Santa Monica Public Library</a>! and the resulting gossip among security gaurds about me having #Normani_aka_SartuAdem nudes on my cellphone! It was a gift! Im grown and i did not do it on library wifi! There is a law on it i found online. Its filtered now, but i want to know where i stand bc I was attending a dance studio with girls my age and i have been in datacenters most of my life, porn is the channel most ppl in my demographic communicate via to talk to people in the physical world. It causes a lot of hormonal problems and i am a really healthy male. Coral is strong even after the NiCU. Anyway the computers i had accquired got stolen in various ways so there is a big chunck of time i am not building on a Desktop. I promised I would grow as a Sun Admin and while i was without a computer i got turned on to <a href="https://termux.dev/en/">TErmux</a> and leared a lot of cool configurations to do common programming tasks and it even effected my webdesign, i started building on github and what is now my homepage was a fullpage scrolling design like i was seeing life differently. Check out the screenshots below the Termux demo and see my #PocketPC thats what i call <a href="https://www.android.com/">Android</a> now…</p>
<p><img src="https://termux.dev/assets/globals/home/weechat-with-keyboard_framed.png" alt="Termux" /></p>
<div class="pinupGallery">
<div class="pinupImage expandingGallery">
<img src="https://i.gifer.com/UiFO.gif" />
<img src="https://pbs.twimg.com/media/GK__WllbQAAMH69?format=jpg&name=large" />
<img src="https://raw.githubusercontent.com/ricoThaka/ricothaka.github.io/717bdfc9eefe7dc338019b841635c555798a6edc/unixing/db0734b6-b4e2-4e28-be1b-30dff5fb66e05450003096811573599.jpg" />
<img src="https://pbs.twimg.com/media/F7ZU0vDaQAAnOav?format=jpg&name=medium" />
<img src="https://pbs.twimg.com/media/GYmk8QmasAEk6i2?format=png&name=large" />
<img src="https://pbs.twimg.com/media/F9TCvKpawAAePpN?format=png&name=medium" />
<img src="https://pbs.twimg.com/media/GBuuXERakAABNTx?format=png&name=large" />
<img src="https://pbs.twimg.com/media/F5kTRrvacAA36ea?format=png&name=medium" />
<img src="https://pbs.twimg.com/media/GYmlk8TasAARByF?format=jpg&name=large" />
<img src="https://pbs.twimg.com/media/GE47huua0AA4t46?format=jpg&name=large" />
<img src="https://pbs.twimg.com/media/GYmk40DasAMTr8y?format=png&name=large" />
</div>
</div>
<h3 id="its-just-a-personal-computer">Its just a Personal Computer</h3>
<p>There is such an abstraction when running the manufacure bundeld android. But its normal PC architechture in a small ass package! The Following video is a screenshare of me using <a href="https://www.android.com/">Android</a> for abt a half hour on a severley disabled cellphone. No root just <a href="https://termux.dev/en/">termux</a> + <a href="https://github.com/termux/termux-app#f-droid">fdroid</a></p>
<p><a href="https://f-droid.org/"><img src="https://termux.dev/assets/globals/hosts/get-it-on-fdroid.png" alt="Fdroid" /></a></p>
<iframe src="https://archive.org/embed/screen-20240806-030550" width="640" height="480" frameborder="0" webkitallowfullscreen="true" mozallowfullscreen="true" allowfullscreen=""></iframe>
<div class="pinupGallery">
<div class="expandingGallery">
<img src="https://pbs.twimg.com/media/F7ZU0YKbkAAWcH7?format=png&name=medium" />
<img src="https://raw.githubusercontent.com/ricoThaka/ricothaka.github.io/717bdfc9eefe7dc338019b841635c555798a6edc/unixing/imageAndroid.jpg" />
<img src="https://raw.githubusercontent.com/ricoThaka/ricothaka.github.io/717bdfc9eefe7dc338019b841635c555798a6edc/unixing/normani.jpg" />
<img src="https://raw.githubusercontent.com/ricoThaka/ricothaka.github.io/717bdfc9eefe7dc338019b841635c555798a6edc/unixing/b71f46f6-0411-413d-a040-91272c2d1d761646827136492420232%20(3).jpg" />
<img src="https://raw.githubusercontent.com/ricoThaka/ricothaka.github.io/717bdfc9eefe7dc338019b841635c555798a6edc/unixing/a9b80235-cc27-4182-bb53-e06aa44028784995180549302988617.jpg" />
<img src="https://raw.githubusercontent.com/ricoThaka/ricothaka.github.io/717bdfc9eefe7dc338019b841635c555798a6edc/unixing/48ab025f-ae8b-46d6-b924-c34ff12226186239781980657984756.jpg" />
<img src="https://pbs.twimg.com/media/F7ZU0vDaQAAnOav?format=jpg&name=medium" />
<img src="https://pbs.twimg.com/media/GB--_Aja4AABqTO?format=jpg&name=large" />
<img src="https://pbs.twimg.com/media/F9TCvKpawAAePpN?format=png&name=medium" />
<img src="https://pbs.twimg.com/media/GBuuXERakAABNTx?format=png&name=large" />
<img src="https://pbs.twimg.com/media/F5kTRrvacAA36ea?format=png&name=medium" />
<img src="https://pbs.twimg.com/media/F9JWlldagAA7Tk_?format=jpg&name=medium" />
<img src="https://raw.githubusercontent.com/ricoThaka/ricothaka.github.io/717bdfc9eefe7dc338019b841635c555798a6edc/unixing/44b7de97-cb09-4a3b-998b-518663da64c44553900051054072276.jpg" />
<img src="https://pbs.twimg.com/media/GGerVUZaQAAqAr2?format=jpg&name=small" />
</div>
</div>
<h2 id="what-is-f-droid">What is F-Droid?</h2>
<blockquote>
<p><code class="language-plaintext highlighter-rouge">A Software Repo!</code> <~ <code class="language-plaintext highlighter-rouge">ME</code> ~> <code class="language-plaintext highlighter-rouge">Them</code> F-Droid is an installable catalogue of FOSS (Free and Open Source Software) applications for the Android platform. The client makes it easy to browse, install, and keep track of updates on your device.</p>
</blockquote>
<p><img src="https://upload.wikimedia.org/wikipedia/commons/thumb/0/02/N64-Console-Set.png/1024px-N64-Console-Set.png" alt="n64" /></p>
<iframe src="https://archive.org/embed/tumblr_rtylmxBjam1zhx4f1" width="640" height="480" frameborder="0" webkitallowfullscreen="true" mozallowfullscreen="true" allowfullscreen=""></iframe>
<h1 id="gaming">GaminG</h1>
<p>The concept of what a Handheld is is greatly challenged with the virtualization options on the platform! The games played really well under <a href="https://github.com/Swordfish90/Lemuroid">Lemuroid</a> and <a href="https://www.retroarch.com/">RetroArch</a> there are a lot of what they refer to as CORES which is simply a <a href="https://forensics.wiki/vmware_virtual_disk_format_(vmdk)/">vmdk</a> in corporate talk a container and it will run <a href="https://docs.libretro.com/library/vice/">8-bit programs</a>! The potential is limitless for us not being tied to an office. The Municipal Law Enforcement Guys appear advanced at this outside of Fare Enforcement!
<img src="https://upload.wikimedia.org/wikipedia/commons/b/b7/VMDK_File_Format_icon.png" alt="vmdk" /> here is a few useful core i was reminded of in a <a href="https://www.reddit.com/r/retroid/comments/16tipgz/recommended_cores_for_retroarch/">reddit post</a></p>
<ul>
<li><a href="https://www.dosbox.com/">DOSBox, an x86 emulator with DOS</a> a DOS-emulator that uses the SDL-library which makes DOSBox very easy to port to different platforms. DOSBox has already been ported to many different platforms, such as Windows, BeOS, Linux, MacOS X…</li>
</ul>
<p>DOSBox also emulates CPU:286/386 realmode/protected mode, Directory FileSystem/XMS/EMS, Tandy/Hercules/CGA/EGA/VGA/VESA graphics, a SoundBlaster/Gravis Ultra Sound card for excellent sound compatibility with older games…</p>
<p>You can “re-live” the good old days with the help of DOSBox, it can run plenty of the old classics that don’t run on your new computer!</p>
<p>DOSBox is totally free of charge and Open Source. <a href="https://www.dosbox.com/information.php?page=0">ReadMore</a>
<a href="https://sourceforge.net/projects/dosbox/">DOWNLOAD</a> <a href="https://www.classicdosgames.com/">Classic Dos Games</a></p>
<blockquote>
<p>here is a <a href="https://sourceforge.net/projects/dosbox/">DosBox</a> <a href="https://codepen.io/thakarashard/pen/xxeaGjB">example</a>. Its SuperStreetFighter2Turbo ed.!, I had Flashback going, but the entertainment nazi’s my significant other is controlled by broke it, idk if anyone can run it from <a href="https://www.myabandonware.com/">abandonware</a></p>
</blockquote>
<h1 id="super-street-fighter-2-turbo-dos">Super Street Fighter 2 Turbo (dos)</h1>
<iframe height="300" style="width: 100%;" scrolling="no" title="SuperStreetFighter2Turbo_PC" src="https://codepen.io/ricoThaka/embed/oNKjKoP?default-tab=html%2Cresult&theme-id=dark" frameborder="no" loading="lazy" allowtransparency="true" allowfullscreen="true">
See the Pen <a href="https://codepen.io/ricoThaka/pen/oNKjKoP">
SuperStreetFighter2Turbo_PC</a> by ricoThaka (<a href="https://codepen.io/ricoThaka">@ricoThaka</a>)
on <a href="https://codepen.io">CodePen</a>.
</iframe>
<p><img src="https://upload.wikimedia.org/wikipedia/commons/3/32/Dosbox_background_icon.svg" alt="DosBox" /></p>
<p><img src="https://www.techtarget.com/rms/editorial/032119_SVM_delta-vmdk-file_Fig5_mobile.png" alt="VMDk" />
<img src="https://www.retroarch.com/images/bgbuttons.png" alt="RetroArch" /></p>
<div class="featured-pinupImage expandingGallery">
<img src="https://pbs.twimg.com/media/F7ZU0YKbkAAWcH7?format=png&name=medium" />
<img src="https://pbs.twimg.com/media/F5iifb5bMAA8lzJ?format=jpg&name=medium" />
<img src="https://pbs.twimg.com/media/GAUhpiEbMAAdmdV?format=png&name=medium" />
<img src="https://pbs.twimg.com/media/GAUhpsDbYAAV4oY?format=png&name=medium" />
<img src="https://pbs.twimg.com/media/GBrgSgTbsAAlehp?format=jpg&name=large" />
<img src=" https://pbs.twimg.com/media/GCNRhhYbMAAnDbq?format=jpg&name=large" />
<img src=" https://pbs.twimg.com/media/GBt_DwXbUAA9IWI?format=jpg&name=large" />
<img src="https://pbs.twimg.com/media/GBaBiMrbMAA2qOV?format=jpg&name=large" />
<img src=" https://pbs.twimg.com/media/F8xAfwxbwAAhxs3?format=jpg&name=medium" />
<img src=" https://pbs.twimg.com/media/F3xyxPeaIAASPP4?format=jpg&name=medium" />
</div>
<div class="featured-pinupImage expandingGallery">
<img src="https://pbs.twimg.com/media/F-Th0xObEAAkKql?format=jpg&name=medium" />
<img src="https://pbs.twimg.com/media/GBm27WPaIAArwJL?format=png&name=large" />
<img src="https://pbs.twimg.com/media/GEU5hUSaAAAFthd?format=jpg&name=large" />
<img src="https://pbs.twimg.com/media/F15blhLXsAEGf97?format=jpg&name=medium" />
<img src="https://pbs.twimg.com/media/GBaBiezbwAANHWL?format=jpg&name=large" />
<img src="https://pbs.twimg.com/media/F8xAgGQbgAAg_4M?format=png&name=medium" />