-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathbookmarks_12_28_21.html
3284 lines (3214 loc) · 521 KB
/
bookmarks_12_28_21.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html><html><head>
<title>bookmarks_12_28_21</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="file:///c:\Users\bryan\.vscode-insiders\extensions\shd101wyy.markdown-preview-enhanced-0.6.1\node_modules\@shd101wyy\mume\dependencies\katex\katex.min.css">
<style>
/**
* prism.js Github theme based on GitHub's theme.
* @author Sam Clarke
*/
code[class*="language-"],
pre[class*="language-"] {
color: #333;
background: none;
font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
text-align: left;
white-space: pre;
word-spacing: normal;
word-break: normal;
word-wrap: normal;
line-height: 1.4;
-moz-tab-size: 8;
-o-tab-size: 8;
tab-size: 8;
-webkit-hyphens: none;
-moz-hyphens: none;
-ms-hyphens: none;
hyphens: none;
}
/* Code blocks */
pre[class*="language-"] {
padding: .8em;
overflow: auto;
/* border: 1px solid #ddd; */
border-radius: 3px;
/* background: #fff; */
background: #f5f5f5;
}
/* Inline code */
:not(pre) > code[class*="language-"] {
padding: .1em;
border-radius: .3em;
white-space: normal;
background: #f5f5f5;
}
.token.comment,
.token.blockquote {
color: #969896;
}
.token.cdata {
color: #183691;
}
.token.doctype,
.token.punctuation,
.token.variable,
.token.macro.property {
color: #333;
}
.token.operator,
.token.important,
.token.keyword,
.token.rule,
.token.builtin {
color: #a71d5d;
}
.token.string,
.token.url,
.token.regex,
.token.attr-value {
color: #183691;
}
.token.property,
.token.number,
.token.boolean,
.token.entity,
.token.atrule,
.token.constant,
.token.symbol,
.token.command,
.token.code {
color: #0086b3;
}
.token.tag,
.token.selector,
.token.prolog {
color: #63a35c;
}
.token.function,
.token.namespace,
.token.pseudo-element,
.token.class,
.token.class-name,
.token.pseudo-class,
.token.id,
.token.url-reference .token.variable,
.token.attr-name {
color: #795da3;
}
.token.entity {
cursor: help;
}
.token.title,
.token.title .token.punctuation {
font-weight: bold;
color: #1d3e81;
}
.token.list {
color: #ed6a43;
}
.token.inserted {
background-color: #eaffea;
color: #55a532;
}
.token.deleted {
background-color: #ffecec;
color: #bd2c00;
}
.token.bold {
font-weight: bold;
}
.token.italic {
font-style: italic;
}
/* JSON */
.language-json .token.property {
color: #183691;
}
.language-markup .token.tag .token.punctuation {
color: #333;
}
/* CSS */
code.language-css,
.language-css .token.function {
color: #0086b3;
}
/* YAML */
.language-yaml .token.atrule {
color: #63a35c;
}
code.language-yaml {
color: #183691;
}
/* Ruby */
.language-ruby .token.function {
color: #333;
}
/* Markdown */
.language-markdown .token.url {
color: #795da3;
}
/* Makefile */
.language-makefile .token.symbol {
color: #795da3;
}
.language-makefile .token.variable {
color: #183691;
}
.language-makefile .token.builtin {
color: #0086b3;
}
/* Bash */
.language-bash .token.keyword {
color: #0086b3;
}
/* highlight */
pre[data-line] {
position: relative;
padding: 1em 0 1em 3em;
}
pre[data-line] .line-highlight-wrapper {
position: absolute;
top: 0;
left: 0;
background-color: transparent;
display: block;
width: 100%;
}
pre[data-line] .line-highlight {
position: absolute;
left: 0;
right: 0;
padding: inherit 0;
margin-top: 1em;
background: hsla(24, 20%, 50%,.08);
background: linear-gradient(to right, hsla(24, 20%, 50%,.1) 70%, hsla(24, 20%, 50%,0));
pointer-events: none;
line-height: inherit;
white-space: pre;
}
pre[data-line] .line-highlight:before,
pre[data-line] .line-highlight[data-end]:after {
content: attr(data-start);
position: absolute;
top: .4em;
left: .6em;
min-width: 1em;
padding: 0 .5em;
background-color: hsla(24, 20%, 50%,.4);
color: hsl(24, 20%, 95%);
font: bold 65%/1.5 sans-serif;
text-align: center;
vertical-align: .3em;
border-radius: 999px;
text-shadow: none;
box-shadow: 0 1px white;
}
pre[data-line] .line-highlight[data-end]:after {
content: attr(data-end);
top: auto;
bottom: .4em;
}html body{font-family:"Helvetica Neue",Helvetica,"Segoe UI",Arial,freesans,sans-serif;font-size:16px;line-height:1.6;color:#333;background-color:#fff;overflow:initial;box-sizing:border-box;word-wrap:break-word}html body>:first-child{margin-top:0}html body h1,html body h2,html body h3,html body h4,html body h5,html body h6{line-height:1.2;margin-top:1em;margin-bottom:16px;color:#000}html body h1{font-size:2.25em;font-weight:300;padding-bottom:.3em}html body h2{font-size:1.75em;font-weight:400;padding-bottom:.3em}html body h3{font-size:1.5em;font-weight:500}html body h4{font-size:1.25em;font-weight:600}html body h5{font-size:1.1em;font-weight:600}html body h6{font-size:1em;font-weight:600}html body h1,html body h2,html body h3,html body h4,html body h5{font-weight:600}html body h5{font-size:1em}html body h6{color:#5c5c5c}html body strong{color:#000}html body del{color:#5c5c5c}html body a:not([href]){color:inherit;text-decoration:none}html body a{color:#08c;text-decoration:none}html body a:hover{color:#00a3f5;text-decoration:none}html body img{max-width:100%}html body>p{margin-top:0;margin-bottom:16px;word-wrap:break-word}html body>ul,html body>ol{margin-bottom:16px}html body ul,html body ol{padding-left:2em}html body ul.no-list,html body ol.no-list{padding:0;list-style-type:none}html body ul ul,html body ul ol,html body ol ol,html body ol ul{margin-top:0;margin-bottom:0}html body li{margin-bottom:0}html body li.task-list-item{list-style:none}html body li>p{margin-top:0;margin-bottom:0}html body .task-list-item-checkbox{margin:0 .2em .25em -1.8em;vertical-align:middle}html body .task-list-item-checkbox:hover{cursor:pointer}html body blockquote{margin:16px 0;font-size:inherit;padding:0 15px;color:#5c5c5c;background-color:#f0f0f0;border-left:4px solid #d6d6d6}html body blockquote>:first-child{margin-top:0}html body blockquote>:last-child{margin-bottom:0}html body hr{height:4px;margin:32px 0;background-color:#d6d6d6;border:0 none}html body table{margin:10px 0 15px 0;border-collapse:collapse;border-spacing:0;display:block;width:100%;overflow:auto;word-break:normal;word-break:keep-all}html body table th{font-weight:bold;color:#000}html body table td,html body table th{border:1px solid #d6d6d6;padding:6px 13px}html body dl{padding:0}html body dl dt{padding:0;margin-top:16px;font-size:1em;font-style:italic;font-weight:bold}html body dl dd{padding:0 16px;margin-bottom:16px}html body code{font-family:Menlo,Monaco,Consolas,'Courier New',monospace;font-size:.85em !important;color:#000;background-color:#f0f0f0;border-radius:3px;padding:.2em 0}html body code::before,html body code::after{letter-spacing:-0.2em;content:"\00a0"}html body pre>code{padding:0;margin:0;font-size:.85em !important;word-break:normal;white-space:pre;background:transparent;border:0}html body .highlight{margin-bottom:16px}html body .highlight pre,html body pre{padding:1em;overflow:auto;font-size:.85em !important;line-height:1.45;border:#d6d6d6;border-radius:3px}html body .highlight pre{margin-bottom:0;word-break:normal}html body pre code,html body pre tt{display:inline;max-width:initial;padding:0;margin:0;overflow:initial;line-height:inherit;word-wrap:normal;background-color:transparent;border:0}html body pre code:before,html body pre tt:before,html body pre code:after,html body pre tt:after{content:normal}html body p,html body blockquote,html body ul,html body ol,html body dl,html body pre{margin-top:0;margin-bottom:16px}html body kbd{color:#000;border:1px solid #d6d6d6;border-bottom:2px solid #c7c7c7;padding:2px 4px;background-color:#f0f0f0;border-radius:3px}@media print{html body{background-color:#fff}html body h1,html body h2,html body h3,html body h4,html body h5,html body h6{color:#000;page-break-after:avoid}html body blockquote{color:#5c5c5c}html body pre{page-break-inside:avoid}html body table{display:table}html body img{display:block;max-width:100%;max-height:100%}html body pre,html body code{word-wrap:break-word;white-space:pre}}.markdown-preview{width:100%;height:100%;box-sizing:border-box}.markdown-preview .pagebreak,.markdown-preview .newpage{page-break-before:always}.markdown-preview pre.line-numbers{position:relative;padding-left:3.8em;counter-reset:linenumber}.markdown-preview pre.line-numbers>code{position:relative}.markdown-preview pre.line-numbers .line-numbers-rows{position:absolute;pointer-events:none;top:1em;font-size:100%;left:0;width:3em;letter-spacing:-1px;border-right:1px solid #999;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.markdown-preview pre.line-numbers .line-numbers-rows>span{pointer-events:none;display:block;counter-increment:linenumber}.markdown-preview pre.line-numbers .line-numbers-rows>span:before{content:counter(linenumber);color:#999;display:block;padding-right:.8em;text-align:right}.markdown-preview .mathjax-exps .MathJax_Display{text-align:center !important}.markdown-preview:not([for="preview"]) .code-chunk .btn-group{display:none}.markdown-preview:not([for="preview"]) .code-chunk .status{display:none}.markdown-preview:not([for="preview"]) .code-chunk .output-div{margin-bottom:16px}.scrollbar-style::-webkit-scrollbar{width:8px}.scrollbar-style::-webkit-scrollbar-track{border-radius:10px;background-color:transparent}.scrollbar-style::-webkit-scrollbar-thumb{border-radius:5px;background-color:rgba(150,150,150,0.66);border:4px solid rgba(150,150,150,0.66);background-clip:content-box}html body[for="html-export"]:not([data-presentation-mode]){position:relative;width:100%;height:100%;top:0;left:0;margin:0;padding:0;overflow:auto}html body[for="html-export"]:not([data-presentation-mode]) .markdown-preview{position:relative;top:0}@media screen and (min-width:914px){html body[for="html-export"]:not([data-presentation-mode]) .markdown-preview{padding:2em calc(50% - 457px + 2em)}}@media screen and (max-width:914px){html body[for="html-export"]:not([data-presentation-mode]) .markdown-preview{padding:2em}}@media screen and (max-width:450px){html body[for="html-export"]:not([data-presentation-mode]) .markdown-preview{font-size:14px !important;padding:1em}}@media print{html body[for="html-export"]:not([data-presentation-mode]) #sidebar-toc-btn{display:none}}html body[for="html-export"]:not([data-presentation-mode]) #sidebar-toc-btn{position:fixed;bottom:8px;left:8px;font-size:28px;cursor:pointer;color:inherit;z-index:99;width:32px;text-align:center;opacity:.4}html body[for="html-export"]:not([data-presentation-mode])[html-show-sidebar-toc] #sidebar-toc-btn{opacity:1}html body[for="html-export"]:not([data-presentation-mode])[html-show-sidebar-toc] .md-sidebar-toc{position:fixed;top:0;left:0;width:300px;height:100%;padding:32px 0 48px 0;font-size:14px;box-shadow:0 0 4px rgba(150,150,150,0.33);box-sizing:border-box;overflow:auto;background-color:inherit}html body[for="html-export"]:not([data-presentation-mode])[html-show-sidebar-toc] .md-sidebar-toc::-webkit-scrollbar{width:8px}html body[for="html-export"]:not([data-presentation-mode])[html-show-sidebar-toc] .md-sidebar-toc::-webkit-scrollbar-track{border-radius:10px;background-color:transparent}html body[for="html-export"]:not([data-presentation-mode])[html-show-sidebar-toc] .md-sidebar-toc::-webkit-scrollbar-thumb{border-radius:5px;background-color:rgba(150,150,150,0.66);border:4px solid rgba(150,150,150,0.66);background-clip:content-box}html body[for="html-export"]:not([data-presentation-mode])[html-show-sidebar-toc] .md-sidebar-toc a{text-decoration:none}html body[for="html-export"]:not([data-presentation-mode])[html-show-sidebar-toc] .md-sidebar-toc ul{padding:0 1.6em;margin-top:.8em}html body[for="html-export"]:not([data-presentation-mode])[html-show-sidebar-toc] .md-sidebar-toc li{margin-bottom:.8em}html body[for="html-export"]:not([data-presentation-mode])[html-show-sidebar-toc] .md-sidebar-toc ul{list-style-type:none}html body[for="html-export"]:not([data-presentation-mode])[html-show-sidebar-toc] .markdown-preview{left:300px;width:calc(100% - 300px);padding:2em calc(50% - 457px - 150px);margin:0;box-sizing:border-box}@media screen and (max-width:1274px){html body[for="html-export"]:not([data-presentation-mode])[html-show-sidebar-toc] .markdown-preview{padding:2em}}@media screen and (max-width:450px){html body[for="html-export"]:not([data-presentation-mode])[html-show-sidebar-toc] .markdown-preview{width:100%}}html body[for="html-export"]:not([data-presentation-mode]):not([html-show-sidebar-toc]) .markdown-preview{left:50%;transform:translateX(-50%)}html body[for="html-export"]:not([data-presentation-mode]):not([html-show-sidebar-toc]) .md-sidebar-toc{display:none}
html body:before {
content: "Failed to compile `style.less`. NameError: Property '$font-primary' is undefined in input on line 10, column 18:
9 html {
10 font-family: $font-primary;
11 font-size: 110%;
" !important;
padding: 2em !important;
}
.mume.mume { display: none !important; }
</style>
</head>
<body for="html-export">
<div class="mume markdown-preview ">
<h1 class="mume-header" id="bookmarks">Bookmarks</h1>
<div class="code-chunk" data-id="code-chunk-id-0" data-cmd="toc"><div class="input-div"><div class="btn-group"><div class="run-btn btn"><span>▶︎</span></div><div class="run-all-btn btn">all</div></div><div class="status">running...</div></div><div class="output-div"></div></div><h3 class="mume-header" id="table-of-contents">Table Of Contents:</h3>
<ul>
<li><a href="#bookmarks">Bookmarks</a>
<ul>
<li><a href="#table-of-contents">Table Of Contents:</a></li>
<li><a href="#norwex">NORWEX</a></li>
<li><a href="#resources">RESOURCES</a></li>
<li><a href="#aa">a/A</a></li>
<li><a href="#netlify">netlify</a></li>
<li><a href="#python">PYTHON</a></li>
<li><a href="#react-redux">React-Redux</a></li>
<li><a href="#amazon">AMAZON</a></li>
<li><a href="#github">GITHUB</a></li>
<li><a href="#misc">MISC</a></li>
<li><a href="#amazingggg">AMAZINGGGG</a></li>
<li><a href="#free-stuff">free-stuff</a></li>
</ul>
</li>
</ul>
<br>
<hr>
<br>
<ul>
<li>[✅ ] <a href="https://www.stackbit.com/blog/migrating-from-medium-a-developers-guide/"><em><strong>Migrating From Medium - A Developer'sGuide</strong></em></a></li>
<li>[✅] <a href="https://app.chatbot.com/dashboard/61665d6f8f5ea700073455ce"><em><strong>Blank Bot |ChatBot.com</strong></em></a></li>
<li>[✅] <a href="https://stackbit-gatsby-theme-diy-libris.netlify.app/"><em><strong>Home | Stackbit DIYTheme</strong></em></a></li>
<li>[✅] <a href="https://lambdaschool.instructure.com/courses/1492"><em><strong>Career Readiness</strong></em></a></li>
<li>[✅] <a href="https://github.com/bgoonz/My-Medium-Blog/blob/master/index.html"><em><strong>My-Medium-Blog/index.html at master ·bgoonz/My-Medium-Blog</strong></em></a></li>
<li>[✅] <a href="http://www.unit-conversion.info/texttools/filter-lines/#data"><em><strong>Filter lines - Linetools</strong></em></a></li>
<li>[✅] <a href="https://gist.github.com/bgoonz/8b120d11dddae8dc6b364e709ebcb8b2/raw/02ea2ca51ce2e5d93cb37382a03e67f5ce452872/codepens.md"><em><strong>gist.github.com</strong></em></a></li>
<li>[✅] <a href="https://codepen.io/bgoonz/pen/KKvXPgG"><em><strong>Responsive iFrames Pattern Grid</strong></em></a></li>
<li>[✅] <a href="https://gist.github.com/bgoonz/a19a0276bb467a94d4b3836e4bc1d2ea"><em><strong>rotate.html</strong></em></a></li>
<li>[✅] <a href="https://github.com/bgoonz/Web_Utility_Tools/edit/master/basic-tools/README.md"><em><strong>Editing Web_Utility_Tools/README.md at master ·bgoonz/Web_Utility_Tools</strong></em></a></li>
<li>[✅] <a href="https://codesandbox.io/dashboard/home?workspace=da478b6b-a4b4-4f0b-bf97-6036bfd8dc97"><em><strong>Dashboard -CodeSandbox</strong></em></a></li>
<li>[✅] <a href="https://codesandbox.io/s/rotate-348q3?file=/index.html:1294-1298"><em><strong>ROTATE -CodeSandbox</strong></em></a></li>
<li>[✅] <a href="https://codesandbox.io/s/generalutil-rg787?file=/index.html:310-316"><em><strong>generalutil -CodeSandbox</strong></em></a></li>
<li>[✅] <a href="https://348q3.csb.app/"><em><strong>Bootstrap Example</strong></em></a></li>
<li>[✅] <a href="https://stackoverflow.com/questions/17710039/full-page-iframe"><em><strong>html - Full Page <iframe> - StackOverflow</strong></em></a></li>
<li>[✅] <a href="https://bgoonz-blog.netlify.app/docs/tools/dev-utilities/"><em><strong>General Utilities |webdevhub</strong></em></a></li>
<li>[✅] <a href="https://alpha.stackbit.com/studio/6142b621c92b2b00c7bbb301/"><em><strong>diligent-sun - StackbitApp</strong></em></a></li>
<li>[✅] <a href="https://links-shortcut-site.vercel.app/"><em><strong>My Links</strong></em></a></li>
<li>[✅] <a href="https://github.com/bgoonz/Web_Utility_Tools"><em><strong>bgoonz/Web_Utility_Tools</strong></em></a></li>
<li>[✅] <a href="https://codesandbox.io/s/bold-surf-xfsiq?file=/index.html"><em><strong>bold-surf-xfsiq -CodeSandbox</strong></em></a></li>
<li>[✅] <a href="https://account.microsoft.com/devices?refd=account.microsoft.com"><em><strong>Microsoft account |Devices</strong></em></a></li>
<li>[✅] <a href="https://ui.ads.microsoft.com/campaign/digitalmarketing?signout=true&mcae=True&ccuisrc=4"><em><strong>Digital Marketing Center SignIn</strong></em></a></li>
<li>[✅] <a href="https://business.facebook.com/bgoooonz-107075937574448/settings/?tab=messaging"><em><strong>bgoooonz |Facebook</strong></em></a></li>
<li>[✅] <a href="https://www.facebook.com/ads/manager/account_settings/information/?act=118873289&pid=p1&page=account_settings&tab=account_information"><em><strong>AdsManager</strong></em></a></li>
<li>[✅] <a href="https://blog.marketo.com/2017/11/7-tips-making-website-content-interactive.html"><em><strong>7 Tips for Making Your Website ContentInteractive</strong></em></a></li>
<li>[✅] <a href="https://blog.marketo.com/2016/06/3-ways-to-grow-your-business-with-user-generated-content.html"><em><strong>3 Ways to Use User-Generated Content (UGC) -Marketo</strong></em></a></li>
<li>[✅] <a href="https://gist.github.com/bgoonz/eed3aac699664cc215af336f57dbee2c"><em><strong>social-media-share.html</strong></em></a></li>
<li>[✅] <a href="https://www.google.com/search?q=can+you+add+wordpress+to+non+wordpress+site&oq=can+you+add+wordpress+to+non+wordpress+site&aqs=chrome..69i57j33i160.9635j0j7&sourceid=chrome&ie=UTF-8"><em><strong>can you add wordpress to non wordpress site - GoogleSearch</strong></em></a></li>
<li>[✅] <a href="https://wordpress.com/activity-log/webcomponents390576979.wordpress.com"><em><strong>Activity ‹ Web-components ---WordPress.com</strong></em></a></li>
<li>[✅] <a href="https://app.netlify.com/sites/ds-algo-official/deploys/61b6a65a3b158e000844b4d5"><em><strong>Deploy details |ds-algo-official</strong></em></a></li>
<li>[✅] <a href="https://v1.stackbit.com/studio/609b2d7c71a5dd0016f36326/#/docs/javascript/nan"><em><strong>BGOONZBLOG2 - StackbitApp</strong></em></a></li>
<li>[✅] <a href="https://github.com/bgoonz/BGOONZ_BLOG_2.0/pull/1275"><em><strong>Merge pull request #1274 from bgoonz/preview by bgoonz · Pull Request#1275 ·bgoonz/BGOONZ_BLOG_2.0</strong></em></a></li>
<li>[✅] <a href="https://github.com/bgoonz/BGOONZ_BLOG_2.0/pull/1270"><em><strong>Preview by bgoonz · Pull Request #1270 ·bgoonz/BGOONZ_BLOG_2.0</strong></em></a></li>
<li>[✅] <a href="https://app.netlify.com/sites/bgoonz-blog/deploys"><em><strong>Deploys |bgoonz-blog</strong></em></a></li>
<li>[✅] <a href="https://github.com/nimbella/netlify-plugin-nimbella#readme"><em><strong>nimbella/netlify-plugin-nimbella: A Nimbella plugin to extend NetlifySites with support for portable and stateful serverlessAPIs.</strong></em></a></li>
<li>[✅] <a href="https://github.com/bgoonz/BGOONZ_BLOG_2.0/pull/1264"><em><strong>Merge pull request #1263 from bgoonz/master by bgoonz · Pull Request#1264 ·bgoonz/BGOONZ_BLOG_2.0</strong></em></a></li>
<li>[✅] <a href="https://github.com/bgoonz/BGOONZ_BLOG_2.0/network/dependencies"><em><strong>Dependencies ·bgoonz/BGOONZ_BLOG_2.0</strong></em></a></li>
<li>[✅] <a href="https://github.com/trekhleb/js-image-carver"><em><strong>trekhleb/js-image-carver: 🌅 Content-aware image resizer and objectremover based on Seam Carvingalgorithm</strong></em></a></li>
<li>[✅] <a href="https://github.com/bgoonz/BGOONZ_BLOG_2.0/pull/1271"><em><strong>Preview by bgoonz · Pull Request #1271 ·bgoonz/BGOONZ_BLOG_2.0</strong></em></a></li>
<li>[✅] <a href="https://github.com/trekhleb/nodejs-master-class"><em><strong>trekhleb/nodejs-master-class: 🛠 This repository contains the homeworkassignment for Node.js Master Class that is focused on building aRESTful API, web app GUI, and a CLI in plain Node JS with no NPM or3rd-party libraries</strong></em></a></li>
<li>[✅] <a href="https://github.com/side-projects-42/trekhleb.github.io/blob/master/apollo.config.js"><em><strong>trekhleb.github.io/apollo.config.js at master ·side-projects-42/trekhleb.github.io</strong></em></a></li>
<li>[✅] <a href="https://stackoverflow.com/questions/63124161/attempted-import-error-switch-is-not-exported-from-react-router-dom"><em><strong>reactjs - Attempted import error: 'Switch' is not exported from'react-router-dom' - StackOverflow</strong></em></a></li>
<li>[✅] <a href="https://cheatsheets-42.netlify.app/"><em><strong>Stackbit Fresh Theme</strong></em></a></li>
<li>[✅] <a href="https://github.com/bgoonz/mini-tools-v3"><em><strong>bgoonz/mini-tools-v3</strong></em></a></li>
<li>[✅] <a href="https://mail.google.com/mail/u/0/?tab=rm&ogbl#inbox"><em><strong>Inbox (175) - [email protected] -Gmail</strong></em></a></li>
<li>[✅] <a href="https://app.gitbook.com/">****</a></li>
<li>[✅] <a href="https://github.com/adam-p/markdown-here/wiki/Markdown-Here-Cheatsheet"><em><strong>Markdown Here Cheatsheet · adam-p/markdown-hereWiki</strong></em></a></li>
<li>[✅] <a href="https://github.com/bgoonz/mini-tools-v3/pulls"><em><strong>Pull requests ·bgoonz/mini-tools-v3</strong></em></a></li>
<li>[✅] <a href="https://stackoverflow.com/questions/43858441/emoji-look-up-table-and-algorithm"><em><strong>android - emoji look up table and algorithm - StackOverflow</strong></em></a></li>
<li>[✅] <a href="https://vercel.com/bgoonz/mini-tools-v3"><em><strong>mini-tools-v3 -- Overview --Vercel</strong></em></a></li>
<li>[✅] <a href="https://bgoonz-blog-2-0.vercel.app/blog/blogwcomments/"><em><strong>ExpressJS Apis |webdevhub</strong></em></a></li>
<li>[✅] <a href="https://mail.google.com/mail/u/0/?tab=rm&ogbl#search/Tips+fo/FMfcgzGllMDQdVMdZlCWDhWNZTWMdkdK"><em><strong>collaborate? - [email protected] -Gmail</strong></em></a></li>
<li>[✅] <a href="https://www.blogtrepreneur.com/"><em><strong>Entrepreneur Blog | Blogtrepreneur</strong></em></a></li>
<li>[✅] <a href="https://scottyseo.com/"><em><strong>Technical SEO Consultant for eCommerce, Javascript & Large ScaleWebsites - ScottySEO</strong></em></a></li>
<li>[✅] <a href="https://github.com/account_verifications?recommend_plan=true"><em><strong>Please verify your emailaddress</strong></em></a></li>
<li>[✅] <a href="https://www.linkedin.com/in/bryan-guner-046199128/"><em><strong>(2) Bryan (bgoonz (on most social media)) Guner |LinkedIn</strong></em></a></li>
<li>[✅] <a href="https://github.com/bgoonz/BGOONZ_BLOG_2.0/pull/1276"><em><strong>Merge pull request #1275 from bgoonz/master by bgoonz · Pull Request#1276 ·bgoonz/BGOONZ_BLOG_2.0</strong></em></a></li>
<li>[✅] <a href="https://v1.stackbit.com/studio/61a171aa5c760600c8e0277b/#/style-guide/"><em><strong>Cheatsheets - StackbitApp</strong></em></a></li>
<li>[✅] <a href="https://app.netlify.com/teams/bgoonz/overview"><em><strong>Team overview |Netlify</strong></em></a></li>
<li>[✅] <a href="https://app.stackbit.com/create/theme"><em><strong>Stackbit App</strong></em></a></li>
<li>[✅] <a href="https://github.com/bgoonz/Web_Utility_Tools/deployments/activity_log?environment=github-pages"><em><strong>Deployments ·bgoonz/Web_Utility_Tools</strong></em></a></li>
<li>[✅] <a href="https://cheatsheets-42.netlify.app/about/"><em><strong>About Me</strong></em></a></li>
<li>[✅] <a href="https://github.com/bgoonz/Cheat-Sheets/pull/35"><em><strong>Discuss and review the changes in this comparison with others. Learnabout pull requests 9 commits 45 files changed by bgoonz · Pull Request#35 ·bgoonz/Cheat-Sheets</strong></em></a></li>
<li>[✅] <a href="https://github.com/bgoonz/Cheat-Sheets/compare/preview...master"><em><strong>Comparing preview...master ·bgoonz/Cheat-Sheets</strong></em></a></li>
<li>[✅] <a href="https://github.com/bgoonz/Cheat-Sheets/pull/34"><em><strong>Preview by bgoonz · Pull Request #34 ·bgoonz/Cheat-Sheets</strong></em></a></li>
<li>[✅] <a href="https://v1.stackbit.com/studio/609b2d7c71a5dd0016f36326/"><em><strong>BGOONZBLOG2 - StackbitApp</strong></em></a></li>
<li>[✅] <a href="https://github.com/bgoonz/BGOONZ_BLOG_2.0/pull/1281"><em><strong>Merge pull request #1280 from bgoonz/preview by bgoonz · Pull Request#1281 ·bgoonz/BGOONZ_BLOG_2.0</strong></em></a></li>
<li>[✅] <a href="https://app.netlify.com/sites/bgoonz-blog/settings/deploys"><em><strong>Build & deploy | Sitesettings</strong></em></a></li>
<li>[✅] <a href="https://github.com/bgoonz/bgoonz/edit/master/README.md"><em><strong>Editing bgoonz/README.md at master ·bgoonz/bgoonz</strong></em></a></li>
<li>[✅] <a href="https://github.com/executablebooks?q=&type=all&language=jupyter+notebook&sort=stargazers"><em><strong>ExecutableBooks</strong></em></a></li>
<li>[✅] <a href="https://github.com/adam-p/s3-file-list-page"><em><strong>adam-p/s3-file-list-page: List files in directories of S3-hostedwebsites</strong></em></a></li>
<li>[✅] <a href="https://github.com/leeoniya/reMarked.js"><em><strong>leeoniya/reMarked.js: client-side HTML >markdown</strong></em></a></li>
<li>[✅] <a href="http://leeoniya.github.io/reMarked.js/"><em><strong>reMarked.js Demo</strong></em></a></li>
<li>[✅] <a href="https://github.com/marketplace/actions/markdown-embed-code-from-file"><em><strong>Markdown Embed Code From File · Actions · GitHubMarketplace</strong></em></a></li>
<li>[✅] <a href="https://github.com/executablebooks/thebe"><em><strong>executablebooks/thebe: Turn static HTML pages into live documents withJupyter kernels.</strong></em></a></li>
<li>[✅] <a href="https://sphinx-copybutton.readthedocs.io/en/latest/"><em><strong>Sphinx-copybutton --- SphinxCopybutton</strong></em></a></li>
<li>[✅] <a href="https://github.com/bgoonz/bgoonz/blob/master/README.md"><em><strong>bgoonz/README.md at master ·bgoonz/bgoonz</strong></em></a></li>
<li>[✅] <a href="https://www.geeksforgeeks.org/how-to-make-a-pagination-using-html-and-css/"><em><strong>How to make a Pagination using HTML and CSS ? -GeeksforGeeks</strong></em></a></li>
<li>[✅] <a href="https://vercel.com/new/import?s=https%3A%2F%2Fgithub.com%2Fbgoonz%2FWeb_Utility_Tools"><em><strong>New Project --Vercel</strong></em></a></li>
<li>[✅] <a href="https://www.linkedin.com/feed/"><em><strong>(2) Feed | LinkedIn</strong></em></a></li>
<li>[✅] <a href="https://v1.stackbit.com/studio/61a171aa5c760600c8e0277b/#/blog/index.html"><em><strong>Cheatsheets - StackbitApp</strong></em></a></li>
<li>[✅] <a href="https://github.com/bgoonz/Cheat-Sheets/pull/43"><em><strong>Preview by bgoonz · Pull Request #43 ·bgoonz/Cheat-Sheets</strong></em></a></li>
<li>[✅] <a href="https://github.com/bgoonz/Cheat-Sheets/pull/41"><em><strong>Preview by bgoonz · Pull Request #41 ·bgoonz/Cheat-Sheets</strong></em></a></li>
<li>[✅] <a href="https://github.com/executablebooks/sphinx-copybutton/blob/master/sphinx_copybutton/_static/copybutton.css"><em><strong>sphinx-copybutton/copybutton.css at master ·executablebooks/sphinx-copybutton</strong></em></a></li>
<li>[✅] <a href="https://cheatsheets-42.netlify.app/blog/"><em><strong>Blog</strong></em></a></li>
<li>[✅] <a href="https://app.netlify.com/sites/bgoonz-blog/deploys/61bd17ca07e79e0007167687"><em><strong>Deploy details |bgoonz-blog</strong></em></a></li>
<li>[✅] <a href="https://github.com/bgoonz/Web_Utility_Tools/settings/pages"><em><strong>Pages</strong></em></a></li>
<li>[✅] <a href="https://www.addthis.com/dashboard#tool-config/pub/ra-60dcec1ece575946/pco/rpin/behavior"><em><strong>AddThis Dashboard | ToolGallery</strong></em></a></li>
<li>[✅] <a href="https://bgoonz.github.io/Web_Utility_Tools/"><em><strong>directory</strong></em></a></li>
<li>[✅] <a href="https://developer.mozilla.org/en-US/docs/Learn/Getting_started_with_the_web"><em><strong>Getting started with the Web - Learn web development |MDN</strong></em></a></li>
<li>[✅] <a href="https://github.com/bgoonz/Cheat-Sheets/pulls"><em><strong>Pull requests ·bgoonz/Cheat-Sheets</strong></em></a></li>
<li>[✅] <a href="https://v1.stackbit.com/studio/609b2d7c71a5dd0016f36326/#/docs/articles/node-package-manager/"><em><strong>BGOONZBLOG2 - StackbitApp</strong></em></a></li>
<li>[✅] <a href="https://github.com/bgoonz/BGOONZ_BLOG_2.0/pull/1290"><em><strong>fix by bgoonz · Pull Request #1290 ·bgoonz/BGOONZ_BLOG_2.0</strong></em></a></li>
<li>[✅] <a href="https://v1.stackbit.com/studio/609b2d7c71a5dd0016f36326/#/blog/"><em><strong>BGOONZBLOG2 - StackbitApp</strong></em></a></li>
<li>[✅] <a href="https://bgoonz-blog.netlify.app/blog/"><em><strong>Blog</strong></em></a></li>
<li>[✅] <a href="https://dabblet.com/help/index.html"><em><strong>Help ✿ dabblet.com</strong></em></a></li>
<li>[✅] <a href="https://github.com/side-projects-42/dabblet"><em><strong>side-projects-42/dabblet: An interactive CSSplayground</strong></em></a></li>
<li>[✅] <a href="https://dabblet.com/"><em><strong>The first commented line is your dabblet's title ✿dabblet.com</strong></em></a></li>
<li>[✅] <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/Specificity"><em><strong>Specificity - CSS: Cascading Style Sheets |MDN</strong></em></a></li>
<li>[✅] <a href="https://github.com/bgoonz/BGOONZ_BLOG_2.0/pull/1289"><em><strong>Merge pull request #1288 from bgoonz/preview by bgoonz · Pull Request#1289 ·bgoonz/BGOONZ_BLOG_2.0</strong></em></a></li>
<li>[✅] <a href="https://app.netlify.com/sites/bgoonz-blog/deploys/61bd3b5f01322c0008ab94d9"><em><strong>Deploy details |bgoonz-blog</strong></em></a></li>
<li>[✅] <a href="https://docs.netlify.com/functions/configure-and-deploy/#configure-the-functions-folder"><em><strong>Configure and deploy functions | NetlifyDocs</strong></em></a></li>
<li>[✅] <a href="https://docs.netlify.com/functions/configure-and-deploy/"><em><strong>Configure and deploy functions | NetlifyDocs</strong></em></a></li>
<li>[✅] <a href="https://app.netlify.com/teams/bgoonz/builds/61bd2979b88ebd0008ff6fc4"><em><strong>Deploy details |Netlify</strong></em></a></li>
<li>[✅] <a href="https://github.com/bgoonz/bgoonz"><em><strong>bgoonz/bgoonz:https://bgoonz.github.io/bgoonz/</strong></em></a></li>
<li>[✅] <a href="https://webdevhub.ghost.io/ghost/#/editor/page/61b2ce65539c2c002f6242a8"><em><strong>JavaScript Cheatsheet: -WebDevHub</strong></em></a></li>
<li>[✅] <a href="https://webdevhub.ghost.io/about/"><em><strong>WebDevHub</strong></em></a></li>
<li>[✅] <a href="https://webdevhub.ghost.io/ghost/#/tags/data-structures"><em><strong>WebDevHub</strong></em></a></li>
<li>[✅] <a href="https://ghost.org/docs/tutorials/google-custom-search/"><em><strong>Tutorial: How to Add Google Custom Search toGhost</strong></em></a></li>
<li>[✅] <a href="https://demo.ghost.io/"><em><strong>Ghost</strong></em></a></li>
<li>[✅] <a href="https://github.com/pydata/pydata-sphinx-theme"><em><strong>pydata/pydata-sphinx-theme: Bootstrap-based sphinx theme from thePyData community</strong></em></a></li>
<li>[✅] <a href="https://pydata-sphinx-theme.readthedocs.io/en/latest/user_guide/install.html"><em><strong>Installation --- PyData Sphinx Theme 0.7.1documentation</strong></em></a></li>
<li>[✅] <a href="https://github.com/academic-resources/pydata-sphinx-theme"><em><strong>academic-resources/pydata-sphinx-theme: Bootstrap-based sphinx themefrom the PyDatacommunity</strong></em></a></li>
<li>[✅] <a href="https://signin.aws.amazon.com/signin?redirect_uri=https%3A%2F%2Faws.amazon.com%2Fmarketplace%2Ffulfillment%3FproductId%3D1785272a-0cd3-4998-be1e-322501822a4c%26ref_%3Ddtl_psb_continue%26isauthcode%3Dtrue&client_id=arn%3Aaws%3Aiam%3A%3A015428540659%3Auser%2Fawsmp-contessa&forceMobileApp=0"><em><strong>Amazon Web ServicesSign-In</strong></em></a></li>
<li>[✅] <a href="https://aws.amazon.com/devops/what-is-devops/?nc1=f_cc"><em><strong>What is DevOps? - Amazon Web Services(AWS)</strong></em></a></li>
<li>[✅] <a href="https://linuxize.com/post/how-to-install-postman-on-ubuntu-20-04/"><em><strong>How to Install Postman on Ubuntu 20.04 |Linuxize</strong></em></a></li>
<li>[✅] <a href="https://pip.pypa.io/en/stable/user_guide/"><em><strong>User Guide - pip documentationv21.3.1</strong></em></a></li>
<li>[✅] <a href="https://github.com/side-projects-42/markdown-embed-code"><em><strong>side-projects-42/markdown-embed-code: Action to synchronize "any"code in markdown with an external file. No more managing code as plaintext.</strong></em></a></li>
<li>[✅] <a href="https://github.com/executablebooks/markdown-it-py"><em><strong>executablebooks/markdown-it-py: Markdown parser, done right. 100%CommonMark support, extensions, syntax plugins & high speed. Now inPython!</strong></em></a></li>
<li>[✅] <a href="https://github.com/side-projects-42/data-science-notes?organization=side-projects-42&organization=side-projects-42"><em><strong>side-projects-42/data-science-notes: Open-source project hosted athttps://makeuseofdata.com to crowdsource a robust collection of notesrelated to data science (math, visualization, modeling,etc)</strong></em></a></li>
<li>[✅] <a href="https://gist.github.com/bgoonz/fc23cdfc1a266059a7fde3ad963221db"><em><strong>inject-iframe.js</strong></em></a></li>
<li>[✅] <a href="https://search.google.com/search-console/security-issues?resource_id=https%3A%2F%2Fbgoonz-blog.netlify.app%2F"><em><strong>Securityissues</strong></em></a></li>
<li>[✅] <a href="https://search.google.com/search-console/insights/?utm_source=search_console&utm_medium=search_console&utm_campaign=search_console_dashboard&resource_id=https://bgoonz-blog.netlify.app/"><em><strong>Siteoverview</strong></em></a></li>
<li>[✅] <a href="https://search.google.com/search-console/welcome?new_domain_name=master--bgoonz-blog.netlify.app"><em><strong>Welcome to Google SearchConsole</strong></em></a></li>
<li>[✅] <a href="https://codepen.io/bgoonz/pen/LYLJZrW"><em><strong>Privacy-Policy</strong></em></a></li>
<li>[✅] <a href="https://github.com/bgoonz/the-game-of-life/blob/master/lib/jquery-ui.css"><em><strong>the-game-of-life/jquery-ui.css at master ·bgoonz/the-game-of-life</strong></em></a></li>
<li>[✅] <a href="https://github.com/academic-resources/LABS-web"><em><strong>academic-resources/LABS-web</strong></em></a></li>
<li>[✅] <a href="https://github.com/kosamari"><em><strong>kosamari (Mariko Kosaka)</strong></em></a></li>
<li>[✅] <a href="https://chromestatus.com/samples"><em><strong>Chrome Platform Status</strong></em></a></li>
<li>[✅] <a href="https://googlechrome.github.io/samples/file-constructor/index.html"><em><strong>File ConstructorSample</strong></em></a></li>
<li>[✅] <a href="https://developer.chrome.com/blog/new-in-devtools-96/?utm_source=devtools#hide-cors-errors"><em><strong>What's New In DevTools (Chrome 96) - ChromeDevelopers</strong></em></a></li>
<li>[✅] <a href="https://github.com/bgoonz/figure-out-when-you-will-or-have-crossed-the-1B-second-mark/runs/4574074988?check_suite_focus=true"><em><strong>Create google.yml ·bgoonz/figure-out-when-you-will-or-have-crossed-the-1B-second-mark@8a4d230</strong></em></a></li>
<li>[✅] <a href="https://github.com/bgoonz/figure-out-when-you-will-or-have-crossed-the-1B-second-mark/tree/master/.github/workflows"><em><strong>figure-out-when-you-will-or-have-crossed-the-1B-second-mark/.github/workflowsat master ·bgoonz/figure-out-when-you-will-or-have-crossed-the-1B-second-mark</strong></em></a></li>
<li>[✅] <a href="https://figure-out-when-you-will-or-have-crossed-the-1-b-second-mark.vercel.app/"><em><strong>One BillionSeconds</strong></em></a></li>
<li>[✅] <a href="https://stackoverflow.com/questions/69554485/eslint-error-must-use-import-to-load-es-module"><em><strong>javascript - ESlint - Error: Must use import to load ES Module - StackOverflow</strong></em></a></li>
<li>[✅] <a href="https://github.com/eslint/eslint/issues/12319"><em><strong>`ERR_REQUIRE_ESM` when requiring `.eslintrc.js` · Issue #12319 ·eslint/eslint</strong></em></a></li>
<li>[✅] <a href="https://github.com/nodejs/modules/issues/389"><em><strong>Script-based configuration files in "type": "module" packages ·Issue #389 ·nodejs/modules</strong></em></a></li>
<li>[✅] <a href="https://github.com/eslint/eslint/issues/15157"><em><strong>Bug: using babel-eslint parser throws error · Issue #15157 ·eslint/eslint</strong></em></a></li>
<li>[✅] <a href="https://github.com/ironhack-labs"><em><strong>Ironhack Labs</strong></em></a></li>
<li>[✅] <a href="https://www.codefactor.io/repository/new"><em><strong>Add Repository</strong></em></a></li>
<li>[✅] <a href="https://github.com/bgoonz/BGOONZ_BLOG_2.0/deployments/activity_log?environment=Production"><em><strong>Deployments ·bgoonz/BGOONZ_BLOG_2.0</strong></em></a></li>
<li>[✅] <a href="https://vercel.com/bgoonz/bgoonz-blog-2-0/35t9cKT3ncUU2PkCw4xff4DHBYDt/functions"><em><strong>bgoonz-blog-2-0 --Functions</strong></em></a></li>
<li>[✅] <a href="https://vercel.com/bgoonz/bgoonz-blog-2-0"><em><strong>bgoonz-blog-2-0 -- Overview --Vercel</strong></em></a></li>
<li>[✅] <a href="https://github.com/codespaces"><em><strong>Codespaces</strong></em></a></li>
<li>[✅] <a href="https://web-dev-collaborative-mdn-ajax-nav-example-x5w7x7w443qx6.github.dev/"><em><strong>Get Started - mdn-ajax-nav-example <span class="katex-display"><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML" display="block"><semantics><mrow><mi>C</mi><mi>o</mi><mi>d</mi><mi>e</mi><mi>s</mi><mi>p</mi><mi>a</mi><mi>c</mi><mi>e</mi><mi>s</mi></mrow><annotation encoding="application/x-tex">Codespaces</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="base"><span class="strut" style="height:0.8888799999999999em;vertical-align:-0.19444em;"></span><span class="mord mathnormal" style="margin-right:0.07153em;">C</span><span class="mord mathnormal">o</span><span class="mord mathnormal">d</span><span class="mord mathnormal">es</span><span class="mord mathnormal">p</span><span class="mord mathnormal">a</span><span class="mord mathnormal">ces</span></span></span></span></span> - Visual Studio Code- Insiders -Codespaces</strong></em></a></li>
<li>[✅] <a href="https://logflare.app/sources/16980"><em><strong>bgoonz-blog2.all | Logflare | Cloudflare, Vercel & ElixirLogging</strong></em></a></li>
<li>[✅] <a href="https://vercel.com/dashboard/integrations/icfg_QmZ1fBvTzv2NqtFyArTByRRW41F45bEdKhmPtVrrFsd5Vy"><em><strong>Dashboard --Vercel</strong></em></a></li>
<li>[✅] <a href="https://vercel.com/dashboard/integrations/icfg_qR6D3QbnwsfkVEIi5E9XJ9LA"><em><strong>Dashboard --Vercel</strong></em></a></li>
<li>[✅] <a href="https://www.sanity.io/create/integrations/vercel/configure?configurationId=icfg_qR6D3QbnwsfkVEIi5E9XJ9LA"><em><strong>Sanity.io <>Vercel</strong></em></a></li>
<li>[✅] <a href="https://www.meetup.com/github/events/282753494/"><em><strong>How to attract non-code contributions to your OSS projects |Meetup</strong></em></a></li>
<li>[✅] <a href="https://marketingplatform.google.com/home/integrations?authuser=0"><em><strong>PlatformHome</strong></em></a></li>
<li>[✅] <a href="https://analytics.google.com/analytics/web/?authuser=0#/p284713814/reports/dashboard/edit?params=_u..nav%3Dmaui&r=firebase-overview&ruid=firebase-overview,app,firebase&collectionId=app"><em><strong>Analytics</strong></em></a></li>
<li>[✅] <a href="https://surveys.google.com/your-surveys"><em><strong>Google Surveys - Your Surveys</strong></em></a></li>
<li>[✅] <a href="https://accounts.google.com/ServiceLogin/webreauth?ltmpl=ds&cd=_PDS&service=dartsearch&passive=false&continue=https%3A%2F%2Fsearchads.google.com%3A443%2Fds%2Fcm%2Fcm%3Fauthuser%3D0&authuser=0&flowName=GlifWebSignIn&flowEntry=ServiceLogin"><em><strong>Sign in - GoogleAccounts</strong></em></a></li>
<li>[✅] <a href="https://analytics.google.com/analytics/web/?authuser=0#/analysis/p284713814"><em><strong>Analytics</strong></em></a></li>
<li>[✅] <a href="https://marketingplatform.google.com/about/campaign-manager-360/benefits/"><em><strong>Ad serving and measurement - Campaign Manager360</strong></em></a></li>
<li>[✅] <a href="https://developers.google.com/tag-platform/tag-manager/web/datalayer"><em><strong>The data layer | Google Tag Manager for Web | GoogleDevelopers</strong></em></a></li>
<li>[✅] <a href="https://optimize.google.com/optimize/home/?authuser=0#/accounts/4704489453/containers/14804290/experiments/6"><em><strong>web-dev-hub | Details -Optimize</strong></em></a></li>
<li>[✅] <a href="https://tagmanager.google.com/?authuser=0#/container/accounts/6004306073/containers/47892406/workspaces/5"><em><strong>Google TagManager</strong></em></a></li>
<li>[✅] <a href="https://analytics.google.com/analytics/web/?authuser=0#/a204228125p281933678/admin/streams/table/"><em><strong>Analytics</strong></em></a></li>
<li>[✅] <a href="https://www.xml-sitemaps.com/se-bot-simulator.html?go=1&pageurl=https%3A%2F%2Fpdfcrowd.com%2Fcontact%2F&se=googlebot"><em><strong>Search Engine Robot Simulator - XML SitemapsGenerator</strong></em></a></li>
<li>[✅] <a href="https://pdfcrowd.com/save-to-pdf/"><em><strong>Save to PDF Link - Pdfcrowd</strong></em></a></li>
<li>[✅] <a href="https://github.com/bgoonz/BGOONZ_BLOG_2.0/wiki/DOM-standard.md"><em><strong>DOM standard.md · bgoonz/BGOONZ_BLOG_2.0 Wiki ·GitHub</strong></em></a></li>
<li>[✅] <a href="https://www.codeproject.com/Articles/1214409/Learn-YAML-in-five-minutes"><em><strong>Learn YAML in five minutes! -CodeProject</strong></em></a></li>
<li>[✅] <a href="https://www.postgresqltutorial.com/postgresql-sample-database/"><em><strong>PostgreSQL SampleDatabase</strong></em></a></li>
<li>[✅] <a href="https://www.google.com/search?q=define:boolean"><em><strong>define:boolean - GoogleSearch</strong></em></a></li>
<li>[✅] <a href="https://mail.google.com/mail/u/0/?tab=rm&ogbl#inbox/FMfcgzGllVnXGggKsxPVbmNkFRtQNKDx"><em><strong>https://bgoonz-blog.netlify.app/ is now associated with GoogleAnalytics property bgoonzblog2 - [email protected] -Gmail</strong></em></a></li>
<li>[✅] <a href="https://search.google.com/search-console/index/drilldown?resource_id=https%3A%2F%2Fbgoonz-blog.netlify.app%2F&item_key=CAMYEyAE&hl=en"><em><strong>Coverage</strong></em></a></li>
<li>[✅] <a href="https://search.google.com/search-console/index/drilldown?resource_id=https%3A%2F%2Fbgoonz-blog.netlify.app%2F&item_key=CAMYFCAE&hl=en"><em><strong>Coverage</strong></em></a></li>
<li>[✅] <a href="https://search.google.com/search-console/inspect?resource_id=https%3A%2F%2Fbgoonz-blog.netlify.app%2F&id=4N5exYHORt2HLM1-veXXcg&alt_id=7ezhCZdVNi9rVRMcNyTG0w&hl=en"><em><strong>URLInspection</strong></em></a></li>
<li>[✅] <a href="https://ads.google.com/aw/campaigns/new?ocid=684885266&cmpnInfo=%7B%228%22%3A%22a4C43E97B-E3CC-4677-8342-2995EDB48A41--21%22%7D&euid=511440374&__u=5714947526&uscid=684885266&__c=9965720834&authuser=0&subid=ww-ww-et-g-aw-a-vasquette_ads_cons_1%21o2m--ahpm-0000000097-0000000000"><em><strong>New campaign - 121-718-5098 - GoogleAds</strong></em></a></li>
<li>[✅] <a href="https://ads.google.com/aw/productlinks/webmaster?ocid=684885266&euid=511440374&__u=5714947526&uscid=684885266&__c=9965720834&authuser=0"><em><strong>Webmaster - 121-718-5098 - GoogleAds</strong></em></a></li>
<li>[✅] <a href="https://ads.google.com/aw/audiencemanager?ocid=684885266&euid=511440374&__u=5714947526&uscid=684885266&__c=9965720834&authuser=0"><em><strong>Error 404 (NotFound)!!1</strong></em></a></li>
<li>[✅] <a href="https://support.google.com/google-ads/answer/7474166?&ref_topic=10551093"><em><strong>Fix Customer Match issues with list upload, small list size, or lowvolume - Google AdsHelp</strong></em></a></li>
<li>[✅] <a href="https://search.google.com/search-console/performance/search-analytics?resource_id=https%3A%2F%2Fbgoonz-blog.netlify.app%2F"><em><strong>Performance</strong></em></a></li>
<li>[✅] <a href="https://www.google.com/webmasters/tools/site-message-view?hl=en&siteUrl=https://bgoonz-blog.netlify.app/&message-filter=all&grid.r=0&msgid=AB9YKzIE0ZJC3VxbsKGJtwIKi8zCTeS-gtThNvv5j8hcAT2sPFvwYEs8hYNqvn0rcw13VkQmRYALqvavS3NP2mTcXfFUVIjANA"><em><strong>Search Console - Messages for bgoonz-blog.netlify.app -https://bgoonz-blog.netlify.app/</strong></em></a></li>
<li>[✅] <a href="https://search.google.com/search-console?utm_source=wnc_376106&utm_medium=gamma&utm_campaign=wnc_376106&utm_content=msg_743502&hl=en&resource_id=https://bgoonz-blog.netlify.app/"><em><strong>Overview</strong></em></a></li>
<li>[✅] <a href="https://pagespeed.web.dev/report?url=https%3A%2F%2Fbgoonz-blog.netlify.app%2F&hl=en"><em><strong>PageSpeedInsights</strong></em></a></li>
<li>[✅] <a href="https://developers.google.com/search/docs/advanced/crawling/special-tags?hl=en"><em><strong>Meta and Inline Tags that Google Understands | Google Search Central | GoogleDevelopers</strong></em></a></li>
<li>[✅] <a href="https://www.crunchboard.com/profiles/password/edit?reset_password_token=KWe7DRyaxBYNscdf9Pny"><em><strong>Tech, Startup and Engineering Jobs - Crunchboard JobBoard</strong></em></a></li>
<li>[✅] <a href="https://www.crunchboard.com/profiles/sign_in"><em><strong>Profile Log In | CrunchboardJobs</strong></em></a></li>
<li>[✅] <a href="https://search.google.com/search-console/inspect?resource_id=https%3A%2F%2Fbgoonz-blog.netlify.app%2F&id=1gWYKw-w4CbfzTmluSiWGg&alt_id=r9fMCTrzdYrYn5CE0BOv3Q&hl=en"><em><strong>URLInspection</strong></em></a></li>
<li>[✅] <a href="https://github.com/whatwg/dom"><em><strong>whatwg/dom: DOM Standard</strong></em></a></li>
<li>[✅] <a href="https://dom.spec.whatwg.org/"><em><strong>DOM Standard</strong></em></a></li>
<li>[✅] <a href="https://html.spec.whatwg.org/"><em><strong>HTML Standard</strong></em></a></li>
<li>[✅] <a href="https://www.notion.so/webdevhub42/8fd156c397c74d608c89448b4418cb65?v=454afa2feb5d4958ae6a8575f236601a&p=e26cfaadf3034650a2c66af8e6fa6486"><em><strong>MyLinks</strong></em></a></li>
<li>[✅] <a href="https://www.xml-sitemaps.com/html-sitemap.html"><em><strong>HTML Sitemap Explained - How to create HTML Sitemaps and how does ithelp a website - XML SitemapsGenerator</strong></em></a></li>
<li>[✅] <a href="https://www.facebook.com/checkpoint/?next=https%3A%2F%2Fwww.facebook.com%2Fdialog%2Foauth%3Fclient_id%3D533518033351325%26redirect_uri%3Dhttps%253A%252F%252Fapp.dynomapper.com%252Fscn-social-auth%252Fhauth%253Fhauth.done%253DFacebook%26state%3D814a7f0ea0f02219e03cfddf4daf59b7%26sdk%3Dphp-sdk-3.2.3%26scope%3Dpublic_profile%252Cemail%26display%3Dpage%26ret%3Dlogin%26fbapp_pres%3D0%26logger_id%3D31bced98-556a-4cf3-8a04-ae8d7c1eb7d7%26tp%3Dunspecified%26cbt%3D1639933424494"><em><strong>Facebook</strong></em></a></li>
<li>[✅] <a href="https://developers.google.com/blogger/docs/3.0/reference/posts/search?apix=true&apix_params=%7B%22blogId%22%3A%2210%22%2C%22q%22%3A%22JavaScript%22%2C%22fetchBodies%22%3Atrue%2C%22orderBy%22%3A%22PUBLISHED%22%7D#try-it"><em><strong>Posts: search | Blogger | GoogleDevelopers</strong></em></a></li>
<li>[✅] <a href="https://draft.blogger.com/blog/earnings/2114927300735556507"><em><strong>Blogger:Earnings</strong></em></a></li>
<li>[✅] <a href="https://www.google.com/adsense/new/u/0/pub-7131725540181116/home"><em><strong>Home -- GoogleAdSense</strong></em></a></li>
<li>[✅] <a href="https://developers.google.com/search/docs/advanced/guidelines/webmaster-guidelines?hl=en&_ga=2.47561892.2010395531.1639933504-972587081.1639933504&visit_id=1639931578542-8725338968151920159&rd=1"><em><strong>Webmaster Guidelines | Google Search Central | GoogleDevelopers</strong></em></a></li>
<li>[✅] <a href="https://developers.google.com/search/docs/advanced/guidelines/webmaster-guidelines?hl=en&_ga=2.47561892.2010395531.1639933504-972587081.1639933504&visit_id=1639931578542-8725338968151920159&rd=1#general"><em><strong>Webmaster Guidelines | Google Search Central | GoogleDevelopers</strong></em></a></li>
<li>[✅] <a href="https://support.google.com/programmable-search/answer/4513882?hl=en&ref_topic=4513742"><em><strong>Create a search engine - Programmable Search EngineHelp</strong></em></a></li>
<li>[✅] <a href="https://programmablesearchengine.google.com/cse/setup/basic?cx=54896af6e2f16ea45"><em><strong>Programmable Search -Basic</strong></em></a></li>
<li>[✅] <a href="https://bgoonz-blog.netlify.app/docs/tools/Archive"><em><strong>Archive |webdevhub</strong></em></a></li>
<li>[✅] <a href="https://github.com/Web-Dev-Collaborative/LABS-web"><em><strong>Web-Dev-Collaborative/LABS-web</strong></em></a></li>
<li>[✅] <a href="https://www.youtube.com/watch?v=A_l0qrPUJds"><em><strong>JAMstack Course - Build websites that are simpler, faster, and moresecure - YouTube</strong></em></a></li>
<li>[✅] <a href="https://www.netlify.com/blog/2020/03/12/learn-jamstack-with-a-free-3.5-hour-video-of-demos-and-examples/?utm_source=fcc-jamstack-course&utm_medium=phil-pnh&utm_campaign=devex"><em><strong>Learn JAMstack in Free 3.5 Hour Video Course - Demos &Examples</strong></em></a></li>
<li>[✅] <a href="https://gridsound.com/daw/"><em><strong>*GridSound</strong></em></a></li>
<li>[✅] <a href="https://discord.com/channels/442778850829795330/442778851534307339"><em><strong>general</strong></em></a></li>
<li>[✅] <a href="https://github.com/bit101/tones"><em><strong>bit101/tones</strong></em></a></li>
<li>[✅] <a href="https://tonejs.github.io/"><em><strong>Tone.js</strong></em></a></li>
<li>[✅] <a href="https://github.com/goldfire/howler.js/"><em><strong>goldfire/howler.js: Javascript audio library for the modernweb.</strong></em></a></li>
<li>[✅] <a href="https://github.com/bgoonz/random-list-of-embedable-content"><em><strong>bgoonz/random-list-of-embedable-content</strong></em></a></li>
<li>[✅] <a href="https://xsound.jp/"><em><strong>XSound - Powerful Audio Features Easily ! -</strong></em></a></li>
<li>[✅] <a href="https://ptsjs.org/"><em><strong>Pts.js</strong></em></a></li>
<li>[✅] <a href="https://developer.mozilla.org/en-US/docs/Web/API/Web_Audio_API/Basic_concepts_behind_Web_Audio_API"><em><strong>Basic concepts behind Web Audio API - Web APIs |MDN</strong></em></a></li>
<li>[✅] <a href="https://developer.mozilla.org/en-US/docs/Web/API/Web_Audio_API/Using_Web_Audio_API"><em><strong>Using the Web Audio API - Web APIs |MDN</strong></em></a></li>
<li>[✅] <a href="https://developer.mozilla.org/en-US/docs/Web/API/Web_Audio_API/Advanced_techniques"><em><strong>Advanced techniques: Creating and sequencing audio - Web APIs |MDN</strong></em></a></li>
<li>[✅] <a href="https://developer.mozilla.org/en-US/docs/Web/Media/Autoplay_guide"><em><strong>Autoplay guide for media and Web Audio APIs - Web media technologies |MDN</strong></em></a></li>
<li>[✅] <a href="https://developer.mozilla.org/en-US/docs/Web/API/Web_Audio_API/Using_IIR_filters"><em><strong>Using IIR filters - Web APIs |MDN</strong></em></a></li>
<li>[✅] <a href="https://developer.mozilla.org/en-US/docs/Web/API/Web_Audio_API/Visualizations_with_Web_Audio_API"><em><strong>Visualizations with Web Audio API - Web APIs |MDN</strong></em></a></li>
<li>[✅] <a href="https://developer.mozilla.org/en-US/docs/Web/API/Web_Audio_API/Web_audio_spatialization_basics"><em><strong>Web audio spatialization basics - Web APIs |MDN</strong></em></a></li>
<li>[✅] <a href="https://developer.mozilla.org/en-US/docs/Web/API/Web_Audio_API/Controlling_multiple_parameters_with_ConstantSourceNode"><em><strong>Controlling multiple parameters with ConstantSourceNode - Web APIs |MDN</strong></em></a></li>
<li>[✅] <a href="https://www.html5rocks.com/en/tutorials/webaudio/positional_audio/"><em><strong>Mixing Positional Audio and WebGL - HTML5Rocks</strong></em></a></li>
<li>[✅] <a href="https://www.html5rocks.com/en/tutorials/webaudio/games/"><em><strong>Developing Game Audio with the Web Audio API - HTML5Rocks</strong></em></a></li>
<li>[✅] <a href="https://developer.mozilla.org/en-US/docs/Web/API/OscillatorNode"><em><strong>OscillatorNode - Web APIs |MDN</strong></em></a></li>
<li>[✅] <a href="https://developer.mozilla.org/en-US/docs/Web/API/Web_Audio_API"><em><strong>Web Audio API - Web APIs |MDN</strong></em></a></li>
<li>[✅] <a href="https://www.jotform.com/blog/html5-filesystem-api-create-files-store-locally-using-javascript-webkit/"><em><strong>HTML5: FileSystem API - Create Files and Store Them Locally UsingJavaScript and Webkit | The JotFormBlog</strong></em></a></li>
<li>[✅] <a href="https://www.jotform.com/integrations/"><em><strong>Online Form Integrations| JotForm</strong></em></a></li>
<li>[✅] <a href="https://codepen.io/bgoonz/pen/eYvrgpe"><em><strong>gsuiOscilloscope</strong></em></a></li>
<li>[✅] <a href="https://github.com/gridsound/export"><em><strong>gridsound/export: ( this project's code is temporarily deprecated, wehave to use daw-core here) Render and download a GridSound file in.wav</strong></em></a></li>
<li>[✅] <a href="https://gridsound.github.io/export/#"><em><strong>GridSound - Export</strong></em></a></li>
<li>[✅] <a href="https://www.algolia.com/users/password/new"><em><strong>Forgot your password? |Algolia</strong></em></a></li>
<li>[✅] <a href="https://github.com/bgoonz/MihirBegMusicV3"><em><strong>bgoonz/MihirBegMusicV3: FinalItteration</strong></em></a></li>
<li>[✅] <a href="https://docs.citrix.com/"><em><strong>Home - Citrix Product Documentation</strong></em></a></li>
<li>[✅] <a href="https://headlesscommercesummit.com/"><em><strong>Headless Commerce Summit |Netlify</strong></em></a></li>
<li>[✅] <a href="https://app.netlify.com/teams/bgoonz/builds/60bb6115a63d1e000737aacf"><em><strong>Deploy details | Bryan C Guner'steam</strong></em></a></li>
<li>[✅] <a href="https://codepen.io/bgoonz/pen/eYvMwKL"><em><strong>Navigation bar with circle flexible highlightPOC</strong></em></a></li>
<li>[✅] <a href="https://github.com/bgoonz/next-netlify-starter"><em><strong>bgoonz/next-netlify-starter</strong></em></a></li>
<li>[✅] <a href="https://60bb398322d0e12b13ce5f92--next-jamstack.netlify.app/"><em><strong>Next.jsStarter!</strong></em></a></li>
<li>[✅] <a href="https://github.com/vercel/next.js"><em><strong>vercel/next.js: The React Framework</strong></em></a></li>
<li>[✅] <a href="https://github.com/bgoonz?tab=repositories"><em><strong>Your Repositories</strong></em></a></li>
<li>[✅] <a href="https://jamstack.org/generators/gitbook/"><em><strong>GitBook | Jamstack</strong></em></a></li>
<li>[✅] <a href="https://github.com/GitbookIO/gitbook"><em><strong>GitbookIO/gitbook: 📝 Modern documentation format and toolchain usingGit and Markdown</strong></em></a></li>
<li>[✅] <a href="https://jamstack.org/generators/docusaurus/"><em><strong>Docusaurus | Jamstack</strong></em></a></li>
<li>[✅] <a href="https://github.com/facebook/docusaurus"><em><strong>facebook/docusaurus: Easy to maintain open source documentationwebsites.</strong></em></a></li>
<li>[✅] <a href="https://github.blog/2016-02-01-working-with-submodules/"><em><strong>Working with submodules | The GitHubBlog</strong></em></a></li>
<li>[✅] <a href="https://mail.google.com/mail/u/0/?tab=rm&ogbl#inbox/FMfcgzGkXdDbDmbhBgNtMpNJNDNGGDWN"><em><strong>LeetCode Weekly Digest - [email protected] -Gmail</strong></em></a></li>
<li>[✅] <a href="https://leetcode.com/problems/race-car/"><em><strong>Race Car - LeetCode</strong></em></a></li>
<li>[✅] <a href="https://github.com/leetcode-notes/Algorithm-Pratice-Questions-LeetCode"><em><strong>leetcode-notes/Algorithm-Pratice-Questions-LeetCode</strong></em></a></li>
<li>[✅] <a href="https://github.com/bgoonz/ask-me-anything"><em><strong>bgoonz/ask-me-anything</strong></em></a></li>
<li>[✅] <a href="https://www.google.com/search?q=free+audio+samples+for+music+production&oq=free+audio+samples&aqs=chrome.4.69i57j0l9.9257j0j7&sourceid=chrome&ie=UTF-8"><em><strong>free audio samples for music production - GoogleSearch</strong></em></a></li>
<li>[✅] <a href="https://www.factmag.com/2017/03/25/best-free-sample-packs-download/"><em><strong>21 great free sample packs for producers on abudget</strong></em></a></li>
<li>[✅] <a href="https://www.autodafe.net/your-account-downloads/customer/downloads.html"><em><strong>YourAccount</strong></em></a></li>
<li>[✅] <a href="https://app.netlify.com/sites/best-celery-b2d7c/overview"><em><strong>Site overview |best-celery-b2d7c</strong></em></a></li>
<li>[✅] <a href="https://www.google.com/search?q=contentful&oq=contentful&aqs=chrome..69i57j35i39j0i20i263j0l2j69i65l3.1869j0j7&sourceid=chrome&ie=UTF-8"><em><strong>contentful - GoogleSearch</strong></em></a></li>
<li>[✅] <a href="https://cofounderstown.com/edit/quick-guide-big-o-notation-memoization-4436e"><em><strong>All Interests -Cofounderstown</strong></em></a></li>
<li>[✅] <a href="https://www.wordstream.com/blog/ws/2016/07/19/medium-optimization-tips"><em><strong>7 Medium Optimization Tips To Get Your Articles To Go Hot |WordStream</strong></em></a></li>
<li>[✅] <a href="https://sheet.best/"><em><strong>sheet.best · Turn your google sheets into a RESTAPI</strong></em></a></li>
<li>[✅] <a href="https://hq.app/app/?product_tour_id=20873"><em><strong>HQ App</strong></em></a></li>
<li>[✅] <a href="https://buildbootstrap.com/#"><em><strong>BuildBootstrap · Grid layout builder for Bootstrap 3,4</strong></em></a></li>
<li>[✅] <a href="https://dev.to/codebubb/weird-and-wonderful-things-i-found-in-public-gists-1heg"><em><strong>Weird and wonderful things I found in public Gists - DEV Community👩‍💻👨‍💻</strong></em></a></li>
<li>[✅] <a href="https://app.netlify.com/sites/tender-bartik-074feb/overview"><em><strong>Site overview |tender-bartik-074feb</strong></em></a></li>
<li>[✅] <a href="https://github.com/bgoonz/github-reference-repo"><em><strong>bgoonz/github-reference-repo: just some stuff to help keep mesane</strong></em></a></li>
<li>[✅] <a href="https://docs.netlify.com/functions/overview/"><em><strong>Functions overview | NetlifyDocs</strong></em></a></li>
<li>[✅] <a href="https://functions-playground.netlify.app/"><em><strong>Netlify Functions Examples</strong></em></a></li>
<li>[✅] <a href="https://listjs.com/examples/add-get-remove/"><em><strong>Example to showcase the add, get and remove methods. -List.js</strong></em></a></li>
<li>[✅] <a href="https://towardsdatascience.com/uploading-large-files-to-github-dbef518fa1a"><em><strong>Uploading Large Files to GitHub. 3 ways to avoid getting errormessages... | by Eden Au | Towards DataScience</strong></em></a></li>
<li>[✅] <a href="https://rtyley.github.io/bfg-repo-cleaner/"><em><strong>BFG Repo-Cleaner by rtyley</strong></em></a></li>
<li>[✅] <a href="https://github.community/t/how-can-i-download-a-specific-folder-from-a-github-repo/278"><em><strong>How can I download a specific folder from a GitHub repo? - GitHub Help/ How to use Git and GitHub - GitHub SupportCommunity</strong></em></a></li>
<li>[✅] <a href="https://docs.google.com/document/d/e/2PACX-1vS9N2Ushu10Gb9pT2WrP1tZg61Q7L4nidlNQs7IB7y828fR_vOKyGaq4pWszcCwyOYr4ttMag-UM_Uu/pub"><em><strong>Resume</strong></em></a></li>
<li>[✅] <a href="https://analytics.google.com/analytics/web/#/m/p258860576/dashboard/overview?params=_u..nav%3Dclassic"><em><strong>Analytics</strong></em></a></li>
<li>[✅] <a href="https://datastudio.google.com/u/0/reporting/0B5FF6JBKbNJxOWItcWo2SVVVeGc/page/LjD"><em><strong>Welcome to Data Studio! (Start here) › Nextsteps</strong></em></a></li>
<li>[✅] <a href="https://developers.google.com/datastudio/connector/get-started"><em><strong>Get Started with Community Connectors | GoogleDevelopers</strong></em></a></li>
<li>[✅] <a href="https://codelabs.developers.google.com/codelabs/community-connectors#5"><em><strong>Connect and visualize all your data in DataStudio</strong></em></a></li>
<li>[✅] <a href="https://groups.google.com/g/data-studio-developers/c/p9xSxN_O8GM"><em><strong><span class="katex-display"><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML" display="block"><semantics><mrow><mi>O</mi><mi>p</mi><mi>p</mi><mi>o</mi><mi>r</mi><mi>t</mi><mi>u</mi><mi>n</mi><mi>i</mi><mi>t</mi><mi>y</mi></mrow><annotation encoding="application/x-tex">Opportunity</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="base"><span class="strut" style="height:0.8777699999999999em;vertical-align:-0.19444em;"></span><span class="mord mathnormal">Opp</span><span class="mord mathnormal" style="margin-right:0.02778em;">or</span><span class="mord mathnormal">t</span><span class="mord mathnormal">u</span><span class="mord mathnormal">ni</span><span class="mord mathnormal">t</span><span class="mord mathnormal" style="margin-right:0.03588em;">y</span></span></span></span></span>: Be a Community Visualizations LaunchPartner</strong></em></a></li>
<li>[✅] <a href="https://developers.google.com/datastudio/visualization/developer-preview/"><em><strong>Community Visualizations Developer Preview | GoogleDevelopers</strong></em></a></li>
<li>[✅] <a href="https://developers.google.com/datastudio/visualization/define-config"><em><strong>Defining the visualization config | CommunityVisualizations</strong></em></a></li>
<li>[✅] <a href="https://script.google.com/home/start"><em><strong>Getting Started - Apps Script</strong></em></a></li>
<li>[✅] <a href="https://codelabs.developers.google.com/codelabs/webauthn-reauth#1"><em><strong>Build your first WebAuthnapp</strong></em></a></li>
<li>[✅] <a href="https://glitch.com/edit/#!/entertaining-night-garment"><em><strong>Glitch :・゚ ✧</strong></em></a></li>
<li>[✅] <a href="https://glitch.com/edit/#!/planet-sore-dragon?path=.env%3A1%3A0"><em><strong>Glitch:・゚ ✧</strong></em></a></li>
<li>[✅] <a href="https://glitch.com/edit/#!/planet-sore-dragon?path=README.md%3A1%3A0"><em><strong>Glitch:・゚ ✧</strong></em></a></li>
<li>[✅] <a href="https://fourtonfish.com/projects/"><em><strong>Projects 💻 | Four Ton Fish</strong></em></a></li>
<li>[✅] <a href="https://glitch.happyfox.com/kb/section/6/"><em><strong>Projects - Glitch Support</strong></em></a></li>
<li>[✅] <a href="https://glitch.happyfox.com/?login=1"><em><strong>Login - Glitch Support</strong></em></a></li>
<li>[✅] <a href="https://glitch.happyfox.com/kb/article/5-will-glitch-clean-up-my-code-formatting/"><em><strong>Will Glitch clean up my code formatting? - GlitchSupport</strong></em></a></li>
<li>[✅] <a href="https://glitch.com/help/kb/article/18-how-do-i-store-secrets-credentials-or-private-data/"><em><strong>How do I store secrets, credentials or private data? - GlitchSupport</strong></em></a></li>
<li>[✅] <a href="https://glitch.com/edit/#!/hello-express"><em><strong>README.md -- hello-express</strong></em></a></li>
<li>[✅] <a href="https://support.glitch.com/"><em><strong>(1) Glitch Support</strong></em></a></li>
<li>[✅] <a href="https://pdfcrowd.com/doc/api/"><em><strong>Pdfcrowd API - Convert between images, HTML andPDF</strong></em></a></li>
<li>[✅] <a href="https://pdfcrowd.com/playground/html-to-pdf/215489555df04ee1a871/"><em><strong>Pdfcrowd APIPlayground</strong></em></a></li>
<li>[✅] <a href="https://www.sohamkamani.com/blog/javascript/2018-06-24-oauth-with-node-js/"><em><strong>Implementing OAuth 2.0 with Node.js🔐</strong></em></a><br>
<br></li>
</ul>
<hr>
<br>
<h3 class="mume-header undefined" id="norwex">NORWEX</h3>
<ul>
<li>[✅] <a href="https://cloud.mongodb.com/v2/602ab21c5ea9a66164cb9ea6#clusters"><em><strong>Clusters | Atlas: MongoDBAtlas</strong></em></a></li>
<li>[✅] <a href="https://cloud.digitalocean.com/apps/2dbced50-862f-4cc5-ad63-2d4ce73e7591?i=cf4d7b"><em><strong>sample-react - DigitalOcean AppPlatform</strong></em></a></li>
<li>[✅] <a href="https://cloud.digitalocean.com/databases/db-postgresql-nyc1-36625?i=cf4d7b"><em><strong>Database -DigitalOcean</strong></em></a></li>
<li>[✅] <a href="https://us-west-2.console.aws.amazon.com/cloudshell/home?region=us-west-2#55cbb775-5cb7-4a60-907a-d3c6d0bc3816"><em><strong>AWSCloudShell</strong></em></a></li>
<li>[✅] <a href="https://www.developerdrive.com/20-best-tools-for-react-development/"><em><strong>20 Best Tools for React Development - DeveloperDrive</strong></em></a></li>
<li>[✅] <a href="https://reactstudio.com/"><em><strong>React Studio</strong></em></a></li>
<li>[✅] <a href="https://cloud.mongodb.com/v2#/org/602fce78f7612354fa1876dd/projects"><em><strong>Projects | Cloud: MongoDBCloud</strong></em></a></li>
<li>[✅] <a href="https://docs.mongodb.com/realm/services/json-expressions/"><em><strong>JSON Expressions --- MongoDBRealm</strong></em></a></li>
<li>[✅] <a href="https://www.smashingmagazine.com/2009/06/45-incredibly-useful-web-design-checklists-and-questionnaires/"><em><strong>45 Incredibly Useful Web Design Checklists and Questionnaires ---SmashingMagazine</strong></em></a></li>
<li>[✅] <a href="https://googlechrome.github.io/lighthouse/viewer/?psiurl=https%3A%2F%2Fgoofy-euclid-1cd736.netlify.app%2F&strategy=mobile&category=performance&category=accessibility&category=best-practices&category=seo&category=pwa&utm_source=lh-chrome-ext"><em><strong>Lighthouse ReportViewer</strong></em></a></li>
<li>[✅] <a href="https://flounder-flower-xpaw.squarespace.com/config/settings/advanced/import-export"><em><strong>Resources---</strong></em></a></li>
<li>[✅] <a href="https://app.snipcart.com/dashboard/discounts"><em><strong>Dashboard</strong></em></a></li>
<li>[✅] <a href="https://norwex.vercel.app/"><em><strong>https://norwex.vercel.app</strong></em></a></li>
<li>[✅] <a href="https://www.back4app.com/docs/get-started/welcome"><em><strong>Welcome to Back4App Documentation | Back4appGuides</strong></em></a></li>
<li>[✅] <a href="https://www.back4app.com/docs/get-started/parse-sdk"><em><strong>Add Back4App to your App project | Back4appGuides</strong></em></a></li>
<li>[✅] <a href="https://parse-dashboard.back4app.com/apps/b0062eac-d6cd-40fe-bfc7-12a3189a0880/browser"><em><strong>undefined - ParseDashboard</strong></em></a></li>
<li>[✅] <a href="https://www.back4app.com/database/search"><em><strong>Databases | Database Hub</strong></em></a></li>
<li>[✅] <a href="https://parse-dashboard.back4app.com/apps/9e5db051-bc0a-483a-8404-3ffbcf985372/browser/link"><em><strong>link - ParseDashboard</strong></em></a></li>
<li>[✅] <a href="https://www.back4app.com/database/back4app/user-registration-template"><em><strong>Complete User Registration | DatabaseHub</strong></em></a></li>
<li>[✅] <a href="https://www.back4app.com/database/how-it-works"><em><strong>How it works | DatabaseHub</strong></em></a></li>
<li>[✅] <a href="https://gitlab.com/bryan.guner.dev/web-dev-notes-resource-site1"><em><strong>Bryan Guner / Web Dev Notes Resource Site1 ·GitLab</strong></em></a></li>
<li>[✅] <a href="https://norwex.biz/en_US/blog/biobased"><em><strong>Norwex USA</strong></em></a></li>
<li>[✅] <a href="https://app.netlify.com/sites/agitated-villani-11a1f4/deploys/603428b2162e2f00c130d1b1"><em><strong>Deploy details |agitated-villani-11a1f4</strong></em></a></li>
<li>[✅] <a href="https://docs.netlify.com/forms/notifications/"><em><strong>Form notifications | NetlifyDocs</strong></em></a></li>
<li>[✅] <a href="https://github.com/bgoonz/one-click-hugo-cms/import"><em><strong>bgoonz/one-click-hugo-cms: Import aRepository</strong></em></a></li>
<li>[✅] <a href="https://cloud.digitalocean.com/networking/domains/tw85i7mu.epizy.com?i=cf4d7b"><em><strong>Control Panel -DigitalOcean</strong></em></a></li>
<li>[✅] <a href="https://www.sitepoint.com/ultimate-testing-checklist/"><em><strong>The Ultimate Testing Checklist -SitePoint</strong></em></a></li>
<li>[✅] <a href="https://www.searchenginejournal.com/evaluate-website-quality/233555/#close"><em><strong>50 Questions You Must Ask to Evaluate the Quality of YourWebsite</strong></em></a></li>
<li>[✅] <a href="https://terrymorris.net/bestpractices/"><em><strong>Web Design Best PracticesChecklist</strong></em></a></li>
<li>[✅] <a href="http://drpete.co/?topic=25-point-website-usability-checklist"><em><strong>25-point Website Usability Checklist --DrPete.co</strong></em></a></li>
<li>[✅] <a href="http://www.bestwebdesignschools.com/2009/usabilityedu-25-incredibly-useful-usability-cheat-sheets-checklists/"><em><strong>Usability.Edu: 25 Incredibly Useful Usability Cheat Sheets & Checklists| Designer City,USA</strong></em></a></li>
<li>[✅] <a href="https://css-tricks.com/common-sense-seo-checklist/"><em><strong>Common Sense SEO Checklist |CSS-Tricks</strong></em></a></li>
<li>[✅] <a href="https://www.sitepoint.com/ultimate-seo-checklist/"><em><strong>The Ultimate SEO Checklist -SitePoint</strong></em></a></li>
<li>[✅] <a href="http://maxdesign.com.au/news/checklist/"><em><strong>Web standards checklist</strong></em></a></li>
<li>[✅] <a href="https://www.youtube.com/"><em><strong>YouTube</strong></em></a></li>
<li>[✅] <a href="https://rockthecradle.herokuapp.com/"><em><strong>Rock the Cradle</strong></em></a></li>
<li>[✅] <a href="https://aws.amazon.com/registration-confirmation/"><em><strong>RegistrationConfirmation</strong></em></a></li>
<li>[✅] <a href="https://imgur.com/gallery/XQ0LqyA"><em><strong>Norwex - Imgur</strong></em></a></li>
<li>[✅] <a href="https://console.aws.amazon.com/billing/home?#/"><em><strong>Billing ManagementConsole</strong></em></a></li>
<li>[✅] <a href="https://console.aws.amazon.com/cloud9/ide/d9dcb43345934f86bec541f5e832b25e"><em><strong>bgoon - AWSCloud9</strong></em></a></li>
<li>[✅] <a href="https://imgur.com/a/OmuV5YB"><em><strong>Imgur: The magic of the Internet</strong></em></a></li>
<li>[✅] <a href="https://developer.mongodb.com/how-to/use-atlas-on-heroku/"><em><strong>Using MongoDB Atlas onHeroku</strong></em></a></li>
<li>[✅] <a href="https://search.google.com/search-console/insights/?resource_id=https%3A%2F%2Fbgoonz-blog.netlify.app%2F&hl=en"><em><strong>Siteoverview</strong></em></a></li>
<li>[✅] <a href="https://dev.to/lydiahallie/javascript-visualized-promises-async-await-5gke"><em><strong>⭐️🎀 JavaScript Visualized: Promises & Async/Await -DEV</strong></em></a></li>
<li>[✅] <a href="https://accounts.google.com/b/0/AddMailService"><em><strong>Gmail</strong></em></a></li>
<li>[✅] <a href="https://youtube.com/"><em><strong>YouTube</strong></em></a></li>
<li>[✅] <a href="https://maps.google.com/"><em><strong>Maps</strong></em></a></li>
<li>[✅] <a href="https://alf.nu/RegexGolf"><em><strong>Regex Golf</strong></em></a></li>
<li>[✅] <a href="https://mail.google.com/mail/u/0/?tab=rm&ogbl#inbox/FMfcgxwKkRPFZWvGwtwmlzFsWktrmRpm"><em><strong>What is the best future cryptocurrency? - [email protected] -Gmail</strong></em></a></li>
<li>[✅] <a href="https://fontawesome.com/start/confirm"><em><strong>Start Confirmation | FontAwesome</strong></em></a></li>
<li>[✅] <a href="https://www.knowi.com/blog/what-is-elastic-search/"><em><strong>Elasticsearch: What it is, How it works, and what it's usedfor</strong></em></a></li>
<li>[✅] <a href="https://github.com/elastic/elasticsearch"><em><strong>elastic/elasticsearch: Open Source, Distributed, RESTful SearchEngine</strong></em></a></li>
<li>[✅] <a href="https://www.elastic.co/downloads/elasticsearch"><em><strong>Download Elasticsearch Free | Get Started Now | Elastic |Elastic</strong></em></a></li>
<li>[✅] <a href="https://www.google.com/search?q=how+to+run+a+bat+file+from+cmd&rlz=1C1UEAD_enUS928US928&oq=how+to+run+a+bat+file+&aqs=chrome.1.69i57j0i457j0l4j0i395l4.7136j1j7&sourceid=chrome&ie=UTF-8"><em><strong>how to run a bat file from cmd - GoogleSearch</strong></em></a></li>
<li>[✅] <a href="https://www.elastic.co/guide/en/elasticsearch/reference/current/getting-started-install.html"><em><strong>Get Elasticsearch up and running | Elasticsearch Reference <span class="katex-display"><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML" display="block"><semantics><mrow><mn>7.10</mn></mrow><annotation encoding="application/x-tex">7.10</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="base"><span class="strut" style="height:0.64444em;vertical-align:0em;"></span><span class="mord">7.10</span></span></span></span></span> |Elastic</strong></em></a></li>
<li>[✅] <a href="https://cloud.elastic.co/deployments/d13f360dd89346b3bcdad11d3e611b91"><em><strong><span class="katex-display"><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML" display="block"><semantics><mrow><mi>d</mi><mn>13</mn><mi>f</mi><mn>36</mn></mrow><annotation encoding="application/x-tex">d13f36</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="base"><span class="strut" style="height:0.8888799999999999em;vertical-align:-0.19444em;"></span><span class="mord mathnormal">d</span><span class="mord">13</span><span class="mord mathnormal" style="margin-right:0.10764em;">f</span><span class="mord">36</span></span></span></span></span> Overview --- ElasticCloud</strong></em></a></li>
<li>[✅] <a href="https://www.elastic.co/guide/en/elasticsearch/reference/6.8/get-started-enable-security.html"><em><strong>Enable Elasticsearch security features | Elasticsearch Reference<span class="katex-display"><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML" display="block"><semantics><mrow><mn>6.8</mn></mrow><annotation encoding="application/x-tex">6.8</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="base"><span class="strut" style="height:0.64444em;vertical-align:0em;"></span><span class="mord">6.8</span></span></span></span></span> |Elastic</strong></em></a></li>
<li>[✅] <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Using_promises"><em><strong>Using Promises - JavaScript |MDN</strong></em></a></li>
<li>[✅] <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp"><em><strong>RegExp - JavaScript |MDN</strong></em></a></li>
<li>[✅] <a href="https://medium.com/p/920fb6ab9d0a/edit"><em><strong>Editing Bash Commands That Save Me Time and Frustration --Medium</strong></em></a></li>
<li>[✅] <a href="https://reposhub.com/python-full-stack-web-frameworks?sort_by=star"><em><strong>164+ Best Python Web Frameworks frameworks, libraries, software andresourcese</strong></em></a></li>
<li>[✅] <a href="https://reposhub.com/search/?repo=1&term=react&catalogId=all&pg=2"><em><strong>5204+ results found in all categories |ReposHub</strong></em></a></li>
<li>[✅] <a href="https://gist.github.com/bgoonz/ee4f14d4d117f4e2b175d6c8c6a2f582"><em><strong>react-skills</strong></em></a></li>
<li>[✅] <a href="https://github.com/Ebazhanov/linkedin-skill-assessments-quizzes"><em><strong>Ebazhanov/linkedin-skill-assessments-quizzes: Full reference ofLinkedIn answers 2021 for skill assessments, LinkedIn test, questionsand answers (aws-lambda, rest-api, javascript, react, git, html, jquery,mongodb, java, css, python, machine-learning, power-point) linkedinexcel test lösungen, linkedin machine learningtest</strong></em></a></li>
<li>[✅] <a href="https://www.google.com/search?q=WebDevHub+netlify&sxsrf=ALeKk01rMI1W6QSY6bTSzTJwoxhS1AVYEw%3A1625290780664&ei=HPjfYJqIKIbKtQa7rJuYBQ&oq=WebDevHub+netlify&gs_lcp=Cgdnd3Mtd2l6EAMyBwghEAoQoAE6BwgAEEcQsAM6BAgjECc6BggAEAoQHjoICAAQFhAKEB5KBAhBGABQq8gEWPjZBGD22wRoAXACeACAAVaIAcYGkgECMTKYAQCgAQGqAQdnd3Mtd2l6yAEEwAEB&sclient=gws-wiz&ved=0ahUKEwiaho39l8bxAhUGZc0KHTvWBlMQ4dUDCA8&uact=5"><em><strong>WebDevHub netlify - GoogleSearch</strong></em></a></li>
<li>[✅] <a href="https://stackshare.io/api#plans"><em><strong>StackShare API (Beta) - get the tech stack behind over 1.5 millioncompanies and counting | StackShare</strong></em></a></li>
<li>[✅] <a href="https://stackshare.io/feed/advice"><em><strong>Stack Advice | StackShare</strong></em></a></li>
<li>[✅] <a href="https://github.com/graphql/graphiql"><em><strong>graphql/graphiql: GraphiQL & the GraphQL LSP Reference Ecosystem forbuilding browser & IDE tools.</strong></em></a></li>
<li>[✅] <a href="https://github.com/graphql/graphiql/tree/main/examples"><em><strong>graphiql/examples at main ·graphql/graphiql</strong></em></a></li>
<li>[✅] <a href="https://codesandbox.io/s/graphiql-js-next-example-forked-z1pew"><em><strong>graphiql-js-next-example (forked) -CodeSandbox</strong></em></a></li>
<li>[✅] <a href="https://codesandbox.io/s/github/react-bootstrap/code-sandbox-examples/tree/master/basic"><em><strong>CodeSandbox</strong></em></a></li>
<li>[✅] <a href="https://www.w3schools.com/html/html_formatting.asp"><em><strong>HTML TextFormatting</strong></em></a></li>
<li>[✅] <a href="https://gist.github.com/bgoonz"><em><strong>bgoonz's gists</strong></em></a></li>
<li>[✅] <a href="https://gist.github.com/pierrejoubert73/902cc94d79424356a8d20be2b382e1ab"><em><strong>How to add a collapsible section inmarkdown.</strong></em></a></li>
<li>[✅] <a href="https://github.com/bgoonz/linktree"><em><strong>bgoonz/linktree</strong></em></a></li>
<li>[✅] <a href="https://github.com/MichaelBarney/LinkFree"><em><strong>MichaelBarney/LinkFree: A free and open source alternative toLinkTree</strong></em></a></li>
<li>[✅] <a href="https://dashboard.pusher.com/apps/1229152/getting_started"><em><strong>Getting Started - slick-valley-728 - Channels -Pusher</strong></em></a></li>
<li>[✅] <a href="https://www.npmjs.com/package/composer-cli"><em><strong>composer-cli - npm</strong></em></a></li>
<li>[✅] <a href="https://www.labnol.org/internet/github-gist-tutorial/28499/"><em><strong>What You Can Do With Gists on Github? - DigitalInspiration</strong></em></a></li>
<li>[✅] <a href="https://gist.github.com/fredrick?page=6"><em><strong>fredrick's gists</strong></em></a></li>
<li>[✅] <a href="https://github.com/notslang/tidy-markdown"><em><strong>notslang/tidy-markdown: Beautify Markdown, fixing formatting mistakesand standardizing syntax</strong></em></a></li>
<li>[✅] <a href="https://www.npmjs.com/package/tidy-markdown"><em><strong>tidy-markdown - npm</strong></em></a></li>
<li>[✅] <a href="https://joeyh.name/code/moreutils/"><em><strong>moreutils</strong></em></a></li>
<li>[✅] <a href="http://myrepos.branchable.com/"><em><strong>myrepos</strong></em></a></li>
<li>[✅] <a href="https://github.com/stigtsp/moreutils"><em><strong>stigtsp/moreutils: moreutils - forked fromgit://git.joeyh.name/moreutils</strong></em></a></li>
<li>[✅] <a href="https://www.freecodecamp.org/news/how-i-analyzed-a-million-medium-articles-to-learn-how-many-claps-great-stories-get-d688cf92759f/"><em><strong>How I analyzed a million Medium articles to learn how many claps greatstoriesget</strong></em></a></li>
<li>[✅] <a href="https://github.com/harrisonjansma/2020_Notes"><em><strong>harrisonjansma/2020_Notes: A collection of notes regarding varioustopics. (Bash, PyTorch, Spark,etc.)</strong></em></a></li>
<li>[✅] <a href="https://medium.com/search/tags?q=Web"><em><strong>Medium</strong></em></a></li>
<li>[✅] <a href="https://github.com/bgoonz/web-dev-notes-resource-site/network"><em><strong>Network Graph ·bgoonz/web-dev-notes-resource-site</strong></em></a></li>
<li>[✅] <a href="https://wakatime.com/dashboard"><em><strong>Dashboard · WakaTime</strong></em></a></li>
<li>[✅] <a href="https://badgerati.github.io/Pode/Getting-Started/FirstApp/"><em><strong>Building your first Pode app -Pode</strong></em></a></li>
<li>[✅] <a href="https://medium.com/@japheth.yates/the-complete-wsl2-gui-setup-2582828f4577"><em><strong>The complete WSL2 + GUI setup. |Medium</strong></em></a></li>
<li>[✅] <a href="https://www.cs.usfca.edu/~galles/visualization/source.html"><em><strong>Data StructureVisualization</strong></em></a></li>
<li>[✅] <a href="https://vimeo.com/499765814/af0e465cbd"><em><strong>Oct-JSX and React Router Intro October onVimeo</strong></em></a></li>
<li>[✅] <a href="https://us-west-2.console.aws.amazon.com/cloudformation/designer/home?region=us-west-2&templateURL=https%3A%2F%2Fs3.us-west-2.amazonaws.com%2Fcloudformation-templates-us-west-2%2FWindows_Roles_And_Features.template#"><em><strong>AWS CloudFormationDesigner</strong></em></a></li>
<li>[✅] <a href="http://www.employee-at-will.com/swagger-ui.html#/web-mvc-links-handler"><em><strong>SwaggerUI</strong></em></a></li>
<li>[✅] <a href="https://swapi.dev/documentation"><em><strong>SWAPI - The Star Wars API</strong></em></a></li>
<li>[✅] <a href="https://www.npmjs.com/package/@wcd/bgoonz.02-using-effects-fork-klwaxmkx"><em><strong>@wcd/bgoonz.02-using-effects-fork-klwaxmkx -npm</strong></em></a></li>
<li>[✅] <a href="https://developer.apple.com/library/archive/documentation/AppleApplications/Reference/SafariWebContent/OptimizingforSafarioniPhone/OptimizingforSafarioniPhone.html#//apple_ref/doc/uid/TP40006517-SW1"><em><strong>Optimizing WebContent</strong></em></a></li>
<li>[✅] <a href="https://dezadkins.github.io/#main"><em><strong>Dez Adkins | Full-Stack Software Engineer & AudioEngineer</strong></em></a></li>
<li>[✅] <a href="https://zube.io/bgoonz/test/epics"><em><strong>test | Epics</strong></em></a></li>
<li>[✅] <a href="https://www.youtube.com/watch?v=xNc-xhH8kkk&ab_channel=FreeToChooseNetwork"><em><strong>(5) Milton Friedman Speaks - Myths That Conceal Reality -YouTube</strong></em></a></li>
<li>[✅] <a href="http://solam.co/loops/music-making-web-browser.htm"><em><strong>Music making on the Web browser (a collection of tool URLs) - ...Loopsmultiplayer musicperformances</strong></em></a></li>
<li>[✅] <a href="https://www.pluralsight.com/guides/using-fetch-with-github-api-v3"><em><strong>Using Fetch with Github API V3 |Pluralsight</strong></em></a></li>
<li>[✅] <a href="https://us6.admin.mailchimp.com/login/verify/"><em><strong>Login Verification |Mailchimp</strong></em></a></li>
<li>[✅] <a href="https://github.com/bgoonz/BGOONZ_BLOG_2.0/commits/master?before=dd6e4cf8fb2af22d573780908c0541b9a3c60cc9+245&branch=master"><em><strong>stab</strong></em></a></li>
<li>[✅] <a href="https://www.section.io/engineering-education/authors/saiharsha-balasubramaniam/"><em><strong>Saiharsha Balasubramaniam | Engineering Education (EngEd) Program |Section</strong></em></a></li>
<li>[✅] <a href="https://github.com/wowchemy"><em><strong>Wowchemy</strong></em></a></li>
<li>[✅] <a href="https://snipcart.com/blog/jamstack"><em><strong>The Jamstack in 2021: Why (and How) to Get Started -Snipcart</strong></em></a></li>
<li>[✅] <a href="https://medium.com/walmartglobaltech/time-series-similarity-using-dynamic-time-warping-explained-9d09119e48ec"><em><strong>Time Series Similarity Using Dynamic Time Warping -Explained | byAbhishek Mishra | Walmart Global Tech Blog |Medium</strong></em></a></li>
<li>[✅] <a href="https://freefrontend.com/javascript-carousels/"><em><strong>37 JavaScriptCarousels</strong></em></a></li>
<li>[✅] <a href="https://transform.tools/css-to-js"><em><strong>CSS to JS Objects</strong></em></a></li>
<li>[✅] <a href="http://linuxcommand.org/lc3_adv_new_script.php"><em><strong>Linux Command Line Adventure:new_script</strong></em></a></li>
<li>[✅] <a href="https://sayed.cyou/#resume"><em><strong>Abu Sayed -- Best Web, Game, XR | Developer | Engineer |BANGLADESH</strong></em></a><br>
<br></li>
</ul>
<hr>
<br>
<h3 class="mume-header undefined" id="resources">RESOURCES</h3>
<ul>
<li>[✅] <a href="http://javascriptguide.herokuapp.com/"><em><strong>JavaScript Guide</strong></em></a></li>
<li>[✅] <a href="https://open.appacademy.io/login"><em><strong>App Academy Open</strong></em></a></li>
<li>[✅] <a href="https://sites.google.com/bartimee.com/opticos-studios/home?authuser=0"><em><strong>OpticosStudios</strong></em></a></li>
<li>[✅] <a href="https://phoenixnap.com/kb/tag/nodejs"><em><strong>nodejs Archives | Knowledge Base byphoenixNAP</strong></em></a></li>
<li>[✅] <a href="https://github.com/HubSpot"><em><strong>HubSpot</strong></em></a></li>
<li>[✅] <a href="https://free-for.dev/#/?id=artifact-repos"><em><strong>Free for developers</strong></em></a></li>
<li>[✅] <a href="https://web.dev/measure/"><em><strong>Measure</strong></em></a></li>
<li>[✅] <a href="https://imagetagger.bit-bots.de/tools/"><em><strong>Bit-Bots ImageTagger</strong></em></a></li>
<li>[✅] <a href="https://app.hackernoon.com/stats"><em><strong>Hacker Noon 2.0</strong></em></a></li>
<li>[✅] <a href="https://zube.io/bgoonz/test/w/workspace-1/kanban"><em><strong>Workspace 1 |Kanban</strong></em></a></li>
<li>[✅] <a href="https://github.com/github"><em><strong>GitHub</strong></em></a></li>
<li>[✅] <a href="https://nootropicsdepot.com/phenylpiracetam-100mg-capsules/?gclid=Cj0KCQjwvr6EBhDOARIsAPpqUPFsx3_Lf2tCCe8Wt0ZrenS2fzYBAwoyZii9iqL5JSUf3z1yzIrvLwwaAruPEALw_wcB"><em><strong>Buy Phenylpiracetam Capsules | NootropicsDepot</strong></em></a></li>
<li>[✅] <a href="https://app.launchdarkly.com/default/production/quickstart"><em><strong>Quickstart -tutorial</strong></em></a></li>
<li>[✅] <a href="https://pdf2md.morethan.io/"><em><strong>PDF to Markdown</strong></em></a></li>
<li>[✅] <a href="https://greasyfork.org/en/scripts/by-site/medium.com"><em><strong>User scripts formedium.com</strong></em></a></li>
<li>[✅] <a href="https://airtable.com/shrEWfoUwxdiirz6Z"><em><strong>Labs Matching Form (FT39)</strong></em></a></li>
<li>[✅] <a href="https://github.com/bgoonz?tab=followers"><em><strong>Your Followers</strong></em></a></li>
<li>[✅] <a href="https://www.notion.so/Labs-Products-3bb84f4061c3482fa1e364df53958436"><em><strong>LabsProducts</strong></em></a></li>
<li>[✅] <a href="https://www.notion.so/Roadmap-Human-Rights-First-Blue-Witness-cf3845cacc04456db5f8f51829126d31"><em><strong>Roadmap: Human Rights First: BlueWitness</strong></em></a></li>
<li>[✅] <a href="https://lambdaschool.zoom.us/j/8192480906?_x_zm_rtaid=rKDyyMtsRseJ0gQXA1kX4Q.1632759883775.803c44d9cd9b53f4b61eb21b3b754e3c&_x_zm_rhtaid=617#success"><em><strong>Launch Meeting -Zoom</strong></em></a></li>
<li>[✅] <a href="https://airtable.com/shrJuhl4XMMAkZiil/tbltOGDrMIhMTXSeo/viwCHhwcrK7xJJ8Ha/recGgAot6vVkbsE3l"><em><strong>Airtable - Labs FT39 (TeamView)</strong></em></a></li>
<li>[✅] <a href="https://drive.google.com/drive/folders/1TFUiSL74BDd16by4NFXzJ3SpQXPRTnym"><em><strong>HRF Asylum - GoogleDrive</strong></em></a></li>
<li>[✅] <a href="https://login.okta.com/?SAMLRequest=fc%2B7CsJAEAXQXvAflu1NNJUMeZBGELTx1a%2FrYILJTtyZGD%2FfSBRiYzlw77lMnD3rSj3Qc0ku0YtgrhU6S5fSXRN9PKxmS52l00nMpq6iBvJWCrfDe4ss6vStRe9aDzmGIZfo1jsgwyWDMzUyiIV9vt1AH4XGk5ClSvewUgMNa%2BYW%2FVj5jxhm9NLP67QQaSAMu64L6CYmsFSHlnzT4ZlLwTgcL6Sf8%2FeX9AU%3D"><em><strong>Okta AccountChooser</strong></em></a></li>
<li>[✅] <a href="https://github.com/michaelquintdev"><em><strong>michaelquintdev (Michael Quint)</strong></em></a></li>
<li>[✅] <a href="https://github.com/bgoonz"><em><strong>bgoonz (Bryan C Guner)</strong></em></a></li>
<li>[✅] <a href="https://www.figma.com/files/recent?fuid=952681639916081043"><em><strong>Recently viewed --Figma</strong></em></a></li>
<li>[✅] <a href="https://calendar.google.com/calendar/u/0/r?cid=Y19mMTZidmhuc2RzcDhlcGNrY2luc3U0OTc4Z0Bncm91cC5jYWxlbmRhci5nb29nbGUuY29t"><em><strong>Google Calendar - 4 days, starting Monday, September 27,2021</strong></em></a></li>
<li>[✅] <a href="https://lambdaschool.notion.site/Labs-Learner-Guide-cd09a9c47fd14f36a8b7fec281d871c1"><em><strong>Labs LearnerGuide</strong></em></a></li>
<li>[✅] <a href="https://secondcareerdevs.com/"><em><strong>Second Career Devs | Home</strong></em></a></li>
<li>[✅] <a href="https://devjourney.info/"><em><strong>Every journey starts with one step | DevJourneyPodcast</strong></em></a></li>
<li>[✅] <a href="https://noke.com/"><em><strong>Nokē | Smart Security Solutions</strong></em></a></li>
<li>[✅] <a href="https://app.meratas.com/dashboard"><em><strong>Meratas</strong></em></a></li>
<li>[✅] <a href="https://console.firebase.google.com/u/1/project/lambda-prep/functions"><em><strong>lambda-prep -- Functions -- Firebaseconsole</strong></em></a></li>
<li>[✅] <a href="https://fireship.io/lessons/firebase-quickstart/"><em><strong>Firebase Quickstart</strong></em></a></li>
<li>[✅] <a href="https://console.aws.amazon.com/route53/v2/hostedzones#ListRecordSets/Z0468584ECPQ4P88HZMO"><em><strong>Route 53 Console HostedZones</strong></em></a></li>
<li>[✅] <a href="https://app.sli.do/event/qsqwkhz9/live/questions"><em><strong>User Interface I</strong></em></a></li>
<li>[✅] <a href="https://colab.research.google.com/github/googlecolab/colabtools/blob/master/notebooks/colab-github-demo.ipynb#scrollTo=wKJ4bd5rt1wy"><em><strong>colab-github-demo.ipynb -Colaboratory</strong></em></a></li>
<li>[✅] <a href="https://github.com/30-seconds"><em><strong>30 seconds</strong></em></a></li>
<li>[✅] <a href="https://developers.google.com/custom-search/docs/tutorial/introduction"><em><strong>Introduction | Programmable Search Engine | GoogleDevelopers</strong></em></a></li>
<li>[✅] <a href="https://app.daily.dev/bgoonz"><em><strong>Bryan C Guner | daily.dev</strong></em></a></li>
<li>[✅] <a href="https://disk.yandex.com/client/disk"><em><strong>Yandex.Disk</strong></em></a></li>
<li>[✅] <a href="https://shepherdjs.dev/"><em><strong>Shepherd --- Guide your users through a tour of yourapp.</strong></em></a></li>
<li>[✅] <a href="https://themes.3rdwavemedia.com/bootstrap-templates/resume/free-bootstrap4-resume-cv-template-for-developers-pillar/"><em><strong>Pillar - Free Bootstrap 4 Resume/CV Template for Developers | UX &Bootstrap</strong></em></a></li>
<li>[✅] <a href="https://bgoonz-blog.netlify.app/#gsc.tab=0"><em><strong>Web-Dev-Hub</strong></em></a></li>
<li>[✅] <a href="https://random-list-of-embedable-content.vercel.app/#gsc.tab=0"><em><strong>Document</strong></em></a></li>
<li>[✅] <a href="https://lambdaschool.instructure.com/courses/1173"><em><strong>WEB43 - 2.1 - AppliedJavaScript</strong></em></a></li>
<li>[✅] <a href="https://lambdaschool.instructure.com/courses/1145"><em><strong>WEB43 - 2.2 - Intro toReact</strong></em></a></li>
<li>[✅] <a href="https://lambdaschool.instructure.com/courses/1148"><em><strong>WEB43 - 2.3 - Single PageApplications</strong></em></a></li>
<li>[✅] <a href="https://lambdaschool.instructure.com/courses/1120"><em><strong>WEB43 - 2.4 - WEB Unit 2Build</strong></em></a></li>
<li>[✅] <a href="https://lambdaschool.instructure.com/courses/1248"><em><strong>WEB43 - 3.1 - AdvancedReact</strong></em></a></li>
<li>[✅] <a href="https://lambdaschool.instructure.com/courses/1218"><em><strong>WEB43 - 3.2 - Advanced StateManagement</strong></em></a></li>
<li>[✅] <a href="https://lambdaschool.instructure.com/courses/1239"><em><strong>WEB43 - 3.3 - Advanced WebApplications</strong></em></a></li>
<li>[✅] <a href="https://lambdaschool.instructure.com/courses/1219"><em><strong>WEB43 - 3.4 - WEB Unit 3Build</strong></em></a></li>
<li>[✅] <a href="https://app.netlify.com/sites/bgoonz-games/deploys/6102010e8520650008be1fa2"><em><strong>Deploy details |Deploys</strong></em></a></li>
<li>[✅] <a href="https://bgoonz-games.netlify.app/"><em><strong>CodePen - Responsive iFrames PatternGrid</strong></em></a></li>
<li>[✅] <a href="https://bgoonz.blogspot.com/"><em><strong>web-dev-hub</strong></em></a></li>
<li>[✅] <a href="https://app.stackbit.com/studio/609b2d7c71a5dd0016f36326#/docs/gallery"><em><strong>StackbitApp</strong></em></a></li>
<li>[✅] <a href="https://github.com/bgoonz/BGOONZ_BLOG_2.0/pull/400"><em><strong>(2) hi by bgoonz · Pull Request #400 ·bgoonz/BGOONZ_BLOG_2.0</strong></em></a></li>
<li>[✅] <a href="https://bgoonz-blog.netlify.app/docs"><em><strong>Web Dev Hub</strong></em></a></li>
<li>[✅] <a href="https://bgoonz-blog.netlify.app/docs/#gsc.tab=0"><em><strong>Web Dev Hub</strong></em></a></li>
<li>[✅] <a href="https://replit.com/@bgoonz/would-you-rather-1#wyr/templates/index.html"><em><strong>would you rather 🟦🟥-1 -Replit</strong></em></a></li>
<li>[✅] <a href="https://github.com/bgoonz/Games"><em><strong>bgoonz/Games</strong></em></a></li>
<li>[✅] <a href="https://bgoonz.github.io/Games/"><em><strong>CodePen - Responsive iFrames PatternGrid</strong></em></a></li>
<li>[✅] <a href="https://docs.netlify.com/configure-builds/file-based-configuration/"><em><strong>File-based configuration | NetlifyDocs</strong></em></a></li>
<li>[✅] <a href="https://programmablesearchengine.google.com/cse/lookandfeel/customize?cx=b9b42c05e18ccf4ab"><em><strong>Programmable Search - Customize look andfeel</strong></em></a></li>
<li>[✅] <a href="https://programmablesearchengine.google.com/cse/setup/basic?cx=b9b42c05e18ccf4ab"><em><strong>Programmable Search -Basic</strong></em></a></li>
<li>[✅] <a href="https://www.addthis.com/dashboard#gallery/pub/ra-60dcec1ece575946"><em><strong>AddThis Dashboard | ToolGallery</strong></em></a></li>
<li>[✅] <a href="https://github.com/bgoonz/Lambda"><em><strong>bgoonz/Lambda</strong></em></a></li>
<li>[✅] <a href="https://github.com/Web-Dev-Collaborative/pageres"><em><strong>Web-Dev-Collaborative/pageres: Capture websitescreenshots</strong></em></a></li>
<li>[✅] <a href="https://github.com/pkrumins?tab=repositories&q=&type=source&language=javascript&sort="><em><strong>pkrumins (Peter Krumins) /Repositories</strong></em></a></li>
<li>[✅] <a href="https://app.netlify.com/start/repos/Lambda-April%2FLinks"><em><strong>Create a new site |Netlify</strong></em></a></li>
<li>[✅] <a href="https://elements.envato.com/?irgwc=1&clickid=09Ny6rRzWxyLRYawUx0Mo372UkESVU0%3ANwBpzQ0&iradid=298927&utm_campaign=elements_af_78798&iradtype=ONLINE_TRACKING_LINK&irmptype=mediapartner&utm_medium=affiliate&utm_source=impact_radius&mp=Speckyboy%20Design%20Magazine"><em><strong>Envato Elements: Unlimited Stock Videos, Music, Photos &Graphics</strong></em></a></li>
<li>[✅] <a href="https://www.browserling.com/about"><em><strong>About Browserling Inc.</strong></em></a></li>
<li>[✅] <a href="https://replit.com/talk/learn/The-most-useful-python-modules-for-beginners/51066"><em><strong>The most useful python modules for beginners -Replit</strong></em></a></li>
<li>[✅] <a href="https://replit.com/talk/learn/Replit-Git-Tutorial/23331"><em><strong>Repl.it + Git Tutorial -Replit</strong></em></a></li>
<li>[✅] <a href="https://replit.com/talk/learn/count-the-number-of-visits-to-a-website-using-Expressjs-MongoDB-part-1/25480"><em><strong>count the number of visits to a website using Express.js, MongoDB -part1 -Replit</strong></em></a></li>
<li>[✅] <a href="https://replit.com/talk/learn/Replit-DB/43305"><em><strong>Repl.it DB - Replit</strong></em></a></li>
<li>[✅] <a href="https://replit.com/@RolandJLevy/css-image-gallery-with-slides"><em><strong>css: image gallery with slides -Replit</strong></em></a></li>
<li>[✅] <a href="https://replit.com/@RolandJLevy/js-useful-apis"><em><strong>js: useful apis -Replit</strong></em></a></li>
<li>[✅] <a href="https://replit.com/@RolandJLevy/js-audio-sound-play"><em><strong>js: audio sound play -Replit</strong></em></a></li>
<li>[✅] <a href="https://replit.com/@RolandJLevy/js-speech-to-text-app"><em><strong>js: speech-to-text-app -Replit</strong></em></a></li>
<li>[✅] <a href="https://github.com/Web-Dev-Collaborative/js-all-in-one-search-with-autocomplete"><em><strong>Web-Dev-Collaborative/js-all-in-one-search-with-autocomplete</strong></em></a></li>
<li>[✅] <a href="https://js-all-in-one-search-with-autocomplete.rolandjlevy.repl.co/"><em><strong>All-in-one Search🔍</strong></em></a></li>
<li>[✅] <a href="https://rolandlevy.co.uk/#projects"><em><strong>Roland's portfolio 👨‍💻</strong></em></a></li>
<li>[✅] <a href="https://github.com/Web-Dev-Collaborative/portfolio-website/network/members"><em><strong>Forks ·Web-Dev-Collaborative/portfolio-website</strong></em></a></li>
<li>[✅] <a href="https://www.sitepoint.com/dom-tips-techniques-parent-child-siblings/"><em><strong>DOM Tips and Techniques: Parent, Child, and Siblings -SitePoint</strong></em></a></li>
<li>[✅] <a href="https://modest-booth-4e17df.netlify.app/directory.html"><em><strong>C:/MY-WEB-DEV/__Projects/Medium_Articles</strong></em></a></li>
<li>[✅] <a href="https://modest-booth-4e17df.netlify.app/originals/2021-03-06_postgresql-setup-for-windows---wsl-ubuntu-801672ab7089"><em><strong>PostgreSQL Setup For Windows &WSL/Ubuntu</strong></em></a></li>
<li>[✅] <a href="https://modest-booth-4e17df.netlify.app/originals/2021-03-05_express-quick-sheet-8f93762c59ca"><em><strong>Express QuickSheet</strong></em></a></li>
<li>[✅] <a href="https://modest-booth-4e17df.netlify.app/originals/2021-03-06_emmet-cheat-sheet-24758e628d37"><em><strong>Emmet CheatSheet</strong></em></a></li>
<li>[✅] <a href="https://codesandbox.io/s/github/carbon-design-system/ibm-dotcom-library/tree/master/packages/react/examples/codesandbox/components/ButtonGroup"><em><strong>Loading... -CodeSandbox</strong></em></a></li>
<li>[✅] <a href="https://codesandbox.io/s/github/carbon-design-system/carbon/tree/main/packages/react/examples/custom-data-table-state-manager"><em><strong>carbon-components-react-example-fully-customized-data-table -CodeSandbox</strong></em></a></li>
<li>[✅] <a href="https://codesandbox.io/s/kind-waterfall-i0h8p"><em><strong>kind-waterfall-i0h8p -CodeSandbox</strong></em></a></li>
<li>[✅] <a href="https://codesandbox.io/s/github/carbon-design-system/carbon/tree/main/packages/components/examples/codesandbox?file=/src/index.js"><em><strong>carbon-components-getting-started -CodeSandbox</strong></em></a></li>
<li>[✅] <a href="https://www.gatsbyjs.com/dashboard/f9296337-b3bc-4dfc-8a42-2af2b6425579/sites/2b48510b-2d18-4a80-94bd-3494b9f0e2ae/settings/general"><em><strong>Gatsby Cloud | gatsby-gitbook-starter | SiteSettings</strong></em></a></li>
<li>[✅] <a href="https://www.gatsbyjs.com/dashboard/organization/f9296337-b3bc-4dfc-8a42-2af2b6425579/sites/provision/organization"><em><strong>GatsbyCloud</strong></em></a></li>
<li>[✅] <a href="https://app.contentful.com/spaces/8bi3kosknnn4/entries/5UxuJGeP3irgQmFkPhDFK1?previousEntries=3prNQrzzp00phXBxPut7jb,2XNR9ZPfpYxTxDIsWPGZZU,7rAwllcIgfMmDotTDmTlVZ"><em><strong>dani california --- Content --- Contentful Apps ---Contentful</strong></em></a></li>
<li>[✅] <a href="https://app.contentful.com/spaces/8bi3kosknnn4/entries/4rjEnhW5Rge0lcYk0Jw6Yk?previousEntries=3prNQrzzp00phXBxPut7jb,2XNR9ZPfpYxTxDIsWPGZZU"><em><strong>Contentful</strong></em></a></li>
<li>[✅] <a href="https://compose.contentful.com/spaces/8bi3kosknnn4/page/4FEkMRmbdbCGwslxwdeefn"><em><strong>Content - Contentful Apps - ContentfulCompose</strong></em></a></li>
<li>[✅] <a href="https://launch.contentful.com/spaces/i31un640bs1z"><em><strong>Contentful Launch</strong></em></a></li>
<li>[✅] <a href="https://compose.contentful.com/spaces/i31un640bs1z/setup/getting-started"><em><strong>ContentfulCompose</strong></em></a></li>
<li>[✅] <a href="https://app.contentful.com/spaces/i31un640bs1z/home"><em><strong>Space home --- mywebdev ---Contentful</strong></em></a></li>
<li>[✅] <a href="https://github.com/gatsbyjs/gatsby/tree/master/docs/docs"><em><strong>gatsby/docs/docs at master ·gatsbyjs/gatsby</strong></em></a></li>
<li>[✅] <a href="https://www.algolia.com/apps/P7DAHWQACD/dashboard"><em><strong>Overview | Algolia</strong></em></a></li>
<li>[✅] <a href="https://app.netlify.com/sites/knowledge-bas42/deploys"><em><strong>Deploys |knowledge-bas42</strong></em></a></li>
<li>[✅] <a href="https://master--knowledge-bas42.netlify.app/"><em><strong>Welcome to the Contentful help center | Contentful helpcenter</strong></em></a></li>
<li>[✅] <a href="https://github.com/bgoonz/knowledge-base/tree/master"><em><strong>bgoonz/knowledge-base</strong></em></a></li>
<li>[✅] <a href="https://knowledge-bas42.netlify.app/"><em><strong>Welcome to the Contentful help center | Contentful helpcenter</strong></em></a></li>
<li>[✅] <a href="https://app.contentful.com/spaces/i31un640bs1z/api/keys/1aDtx7CNJhiz4tzYU0vAO9"><em><strong>APIs --- mywebdev --- master-2021-05-07 ---Contentful</strong></em></a></li>
<li>[✅] <a href="https://www.google.com/search?q=issues+downloading+zip+files+from+github&oq=issues+downloading+zip+files+from+github&aqs=chrome..69i57j33i22i29i30l4.8940j1j15&sourceid=chrome&ie=UTF-8"><em><strong>issues downloading zip files from github - GoogleSearch</strong></em></a></li>
<li>[✅] <a href="https://app.netlify.com/teams/bgoonz/overview"><em><strong>Team overview | Bryan C Guner'steam</strong></em></a></li>
<li>[✅] <a href="https://docs.netlify.com/domains-https/netlify-dns/?_ga=2.62273577.467205373.1622769350-706151009.1622769350"><em><strong>Netlify DNS | NetlifyDocs</strong></em></a></li>
<li>[✅] <a href="https://mediatemple.net/blog/web-development-tech/10-tips-before-you-buy-a-domain-name/"><em><strong>10 Tips Before You Buy a Domain Name - The Media TempleBlog</strong></em></a></li>
<li>[✅] <a href="https://www.google.com/search?q=best+web+development+github+repos&oq=best+web+development+github+repos&aqs=chrome..69i57j33i22i29i30.8548j0j7&sourceid=chrome&ie=UTF-8"><em><strong>best web development github repos - GoogleSearch</strong></em></a></li>
<li>[✅] <a href="https://thesmartcoder.dev/9-popular-github-repos-for-every-web-developer/"><em><strong>9 Popular GitHub Repos For Every WebDeveloper</strong></em></a></li>
<li>[✅] <a href="https://levelup.gitconnected.com/10-github-repos-that-can-help-you-grow-as-a-web-developer-56a640d9771a"><em><strong>10 GitHub Repos That Can Help You Grow as a Web Developer | by Daan |Level UpCoding</strong></em></a></li>
<li>[✅] <a href="https://github.com/minimaxir/big-list-of-naughty-strings"><em><strong>minimaxir/big-list-of-naughty-strings: The Big List of Naughty Stringsis a list of strings which have a high probability of causing issueswhen used as user-inputdata.</strong></em></a></li>
<li>[✅] <a href="https://github.com/DopplerHQ/awesome-interview-questions"><em><strong>DopplerHQ/awesome-interview-questions: A curated awesome list of listsof interview questions. Feel free tocontribute!</strong></em></a></li>
<li>[✅] <a href="https://github.com/LeCoupa/awesome-cheatsheets"><em><strong>LeCoupa/awesome-cheatsheets: 👩‍💻👨‍💻 Awesome cheatsheets for popularprogramming languages, frameworks and development tools. They includeeverything you should know in one singlefile.</strong></em></a></li>
<li>[✅] <a href="https://github.com/leonardomso/33-js-concepts"><em><strong>leonardomso/33-js-concepts: 📜 33 JavaScript concepts every developershould know.</strong></em></a></li>
<li>[✅] <a href="https://thesmartcoder.dev/10-awesome-github-repos-every-web-developer-should-know/"><em><strong>10 Awesome Github Repos Every Web Developer ShouldKnow</strong></em></a></li>
<li>[✅] <a href="https://github.com/Web-Dev-Collaborative?language=&page=9&q=&sort=stargazers&type="><em><strong>Web-Dev-Collab</strong></em></a></li>
<li>[✅] <a href="https://github.com/bgoonz/python-scripts"><em><strong>bgoonz/python-scripts</strong></em></a></li>
<li>[✅] <a href="https://github.com/bgoonz/Learning-Assets"><em><strong>bgoonz/Learning-Assets</strong></em></a></li>
<li>[✅] <a href="http://ourpcsolution.blogspot.com/2014/01/run-trial-software-forever.html"><em><strong>Top 5 ways to use trial software forever | Our PCSolution</strong></em></a></li>
<li>[✅] <a href="https://developers.google.com/custom-search/docs/element"><em><strong>Programmable Search Element Control API | Programmable SearchEngine</strong></em></a></li>
<li>[✅] <a href="https://github.com/bgoonz/Full-Text-Search"><em><strong>bgoonz/Full-Text-Search</strong></em></a></li>
<li>[✅] <a href="https://docs.netlify.com/domains-https/netlify-dns/dns-records/"><em><strong>DNS records | NetlifyDocs</strong></em></a></li>
<li>[✅] <a href="https://github.com/bgoonz/bgoonz.github.io"><em><strong>bgoonz/bgoonz.github.io</strong></em></a></li>
<li>[✅] <a href="https://github.com/bgoonz/My-Web-Dev-Archive"><em><strong>bgoonz/My-Web-Dev-Archive:archive</strong></em></a></li>
<li>[✅] <a href="https://search.google.com/search-console/sitemaps?resource_id=https%3A%2F%2Fflounder-flower-xpaw.squarespace.com%2F&hl=en"><em><strong>Sitemaps</strong></em></a></li>
<li>[✅] <a href="https://lambdaschoolsso.okta.com/login/login.htm?fromURI=%2Fapp%2FUserHome&message=You+were+signed+out+because+your+session+timed+out."><em><strong>lambdaschool-org-177932 - SignIn</strong></em></a></li>
<li>[✅] <a href="https://lambdaschoolsso.okta.com/"><em><strong>lambdaschool-org-177932 - Sign In</strong></em></a></li>
<li>[✅] <a href="https://lambdaschool.com/"><em><strong>Online Coding School and Bootcamp | LambdaSchool</strong></em></a></li>
<li>[✅] <a href="https://www.google.com/search?q=adding+google+search+bar+to+netlify+website&oq=adding+google+search+bar+to+netlify+website&aqs=chrome..69i57.11145j1j7&sourceid=chrome&ie=UTF-8"><em><strong>adding google search bar to netlify website - GoogleSearch</strong></em></a></li>
<li>[✅] <a href="https://www.netlify.com/blog/2016/09/22/making-netlifys-website-fully-searchable/"><em><strong>Making Netlify's website fully searchable |Netlify</strong></em></a></li>
<li>[✅] <a href="https://cse.google.com/cse/setup/advanced?cx=07d4440552681e18d"><em><strong>Programmable Search -Advanced</strong></em></a></li>
<li>[✅] <a href="https://search.google.com/search-console/performance/search-analytics?resource_id=https%3A%2F%2Fflounder-flower-xpaw.squarespace.com%2F"><em><strong>Performance</strong></em></a></li>
<li>[✅] <a href="https://support.google.com/webmasters/answer/9008080#domain_name_verification&zippy=%2Cdomain-name-provider"><em><strong>Verify your site ownership - Search ConsoleHelp</strong></em></a></li>
<li>[✅] <a href="https://search.google.com/search-console/not-verified?original_url=/search-console/ownership&original_resource_id"><em><strong>Welcome to Google SearchConsole</strong></em></a></li>
<li>[✅] <a href="https://www.reddit.com/r/learnprogramming/comments/cgbpli/netlify_website_is_not_visible_in_google_search/"><em><strong>Netlify website is not visible in google search :learnprogramming</strong></em></a></li>
<li>[✅] <a href="https://dashboard.heroku.com/apps"><em><strong>Personal apps | Heroku</strong></em></a></li>
<li>[✅] <a href="https://devcenter.heroku.com/articles/heroku-cli#download-and-install"><em><strong>The Heroku CLI | Heroku DevCenter</strong></em></a></li>
<li>[✅] <a href="https://www.google.com/search?q=ubuntu+get+list+of+manually+installed+packages&oq=ubuntu+get+list+of+&aqs=chrome.1.69i57j35i39j0l8.5824j0j7&sourceid=chrome&ie=UTF-8"><em><strong>ubuntu get list of manually installed packages - GoogleSearch</strong></em></a></li>
<li>[✅] <a href="https://www.iotransfer.net/tips/download-all-instagram-photos-from-any-user-670.php"><em><strong>5 Quick Ways to Download All Instagram Photos from AnyUser</strong></em></a></li>
<li>[✅] <a href="https://github.com/bgoonz/Markdown-Templates"><em><strong>bgoonz/Markdown-Templates</strong></em></a></li>
<li>[✅] <a href="https://github.com/TheAlgorithms"><em><strong>The Algorithms</strong></em></a></li>
<li>[✅] <a href="https://github.com/TheAlgorithms/Python"><em><strong>TheAlgorithms/Python: All Algorithms implemented inPython</strong></em></a></li>
<li>[✅] <a href="https://github.com/TheAlgorithms/Javascript"><em><strong>TheAlgorithms/Javascript: A repository for All algorithms implementedin Javascript (for educational purposesonly)</strong></em></a></li>
<li>[✅] <a href="https://github.com/trekhleb/javascript-algorithms"><em><strong>trekhleb/javascript-algorithms: 📝 Algorithms and data structuresimplemented in JavaScript with explanations and links to furtherreadings</strong></em></a></li>
<li>[✅] <a href="https://www.google.com/search?q=Leetcode+python+solutions+github&safe=active&sxsrf=ALeKk00m2SCc2-qpPasXOApwZpPcLTowgA%3A1623053591196&ei=F9W9YP-yC43WtAbrnJ9I&oq=Leetcode+python+solutions+github&gs_lcp=Cgdnd3Mtd2l6EAMyAggAOgcIABBHELADOgQIABANOgYIABAHEB46CAgAEAgQBxAeOgYIABANEB46CAgAEAgQDRAeUMBjWL1tYK9vaAFwAngAgAH8AYgB-AWSAQU3LjAuMZgBAKABAaoBB2d3cy13aXrIAQjAAQE&sclient=gws-wiz&ved=0ahUKEwi_moTmiYXxAhUNK80KHWvOBwkQ4dUDCA4&uact=5"><em><strong>Leetcode python solutions github - GoogleSearch</strong></em></a></li>
<li>[✅] <a href="https://github.com/search?q=react"><em><strong>Search · react</strong></em></a></li>
<li>[✅] <a href="https://github.com/facebook/react"><em><strong>facebook/react: A declarative, efficient, and flexible JavaScriptlibrary for building userinterfaces.</strong></em></a></li>
<li>[✅] <a href="https://github.com/my-lambda-projects/Lambda-School-Build-Weeks"><em><strong>my-lambda-projects/Lambda-School-Build-Weeks</strong></em></a></li>
<li>[✅] <a href="https://www.javascripttutorial.net/nodejs-tutorial/npm-list/#:~:text=Use%20the%20npm%20list%20to,show%20packages%20in%20the%20devDependencies%20."><em><strong>An Essential Guide to npm list Command By PracticalExamples</strong></em></a></li>
<li>[✅] <a href="https://vercel.com/anywherefitness/frontend/DwReJK5MMGDBojjDLgmCgPoxJ9nE"><em><strong>frontend -- DeploymentOverview</strong></em></a></li>
<li>[✅] <a href="https://frontend-36d746b4y-anywherefitness.vercel.app/login"><em><strong>AnywhereFitness</strong></em></a></li>
<li>[✅] <a href="https://dashboard.heroku.com/apps/anywherefitnessbe43/deploy/heroku-git"><em><strong>anywherefitnessbe43 · Heroku-git |Heroku</strong></em></a></li>
<li>[✅] <a href="https://dashboard.heroku.com/apps/anywherefitnessbe43/resources"><em><strong>anywherefitnessbe43 · Resources |Heroku</strong></em></a></li>
<li>[✅] <a href="https://dashboard.heroku.com/apps/secret-peak-42801/deploy/github"><em><strong>secret-peak-42801 · GitHub |Heroku</strong></em></a></li>
<li>[✅] <a href="https://dashboard.heroku.com/apps/secret-peak-42801/activity/builds/735d9d2d-a601-4c03-8c48-a3805974defd"><em><strong>secret-peak-42801 · Build |Heroku</strong></em></a></li>
<li>[✅] <a href="https://devcenter.heroku.com/articles/heroku-postgresql#provisioning-heroku-postgres"><em><strong>Heroku Postgres | Heroku DevCenter</strong></em></a></li>
<li>[✅] <a href="https://www.google.com/search?q=vscode+map+imports+and+exports&oq=vscode+map+imports+and+exports&aqs=chrome..69i57j33i299.7170j1j7&sourceid=chrome&ie=UTF-8"><em><strong>vscode map imports and exports - GoogleSearch</strong></em></a></li>
<li>[✅] <a href="https://github.com/heroku/legacy-cli/issues/1366"><em><strong>Unable to heroku login because of .netrc permission issue · Issue#1366 ·heroku/legacy-cli</strong></em></a></li>
<li>[✅] <a href="https://knexjs.org/"><em><strong>Knex.js - A SQL Query Builder for Javascript</strong></em></a></li>
<li>[✅] <a href="https://gist.github.com/NigelEarle/80150ff1c50031e59b872baf0e474977"><em><strong>Setup Knex withNode.js</strong></em></a></li>
<li>[✅] <a href="https://www.taniarascia.com/node-express-postgresql-heroku/"><em><strong>Build a Node.js, Express, & PostgreSQL REST API | TaniaRascia</strong></em></a></li>
<li>[✅] <a href="https://www.google.com/search?q=knex+cheat+sheet&oq=knex+ch&aqs=chrome.1.69i57j0i20i263i512l2j0i512l4j69i60.3185j0j7&sourceid=chrome&ie=UTF-8"><em><strong>knex cheat sheet - GoogleSearch</strong></em></a></li>
<li>[✅] <a href="https://devhints.io/knex"><em><strong>Knex cheatsheet</strong></em></a></li>
<li>[✅] <a href="https://dev.to/hoanganhlam/knex-cheat-sheet-79o"><em><strong>Knex Cheat Sheet - DEVCommunity</strong></em></a></li>
<li>[✅] <a href="https://knexjs.org/#Schema"><em><strong>Knex.js - A SQL Query Builder forJavascript</strong></em></a></li>
<li>[✅] <a href="https://app.codesignal.com/test/FaWitY3sMPt9RC3eC/task/hBdpmqM9c9r6gjMDz"><em><strong>CodeSignal</strong></em></a></li>
<li>[✅] <a href="https://gist.github.com/bgoonz/f7a563ef575fdbfb52928060679387e0/edit"><em><strong>Editingjs-interview-questions.md</strong></em></a></li>
<li>[✅] <a href="https://app.codesignal.com/test/id7HD9pYStrQfmbip"><em><strong>CodeSignal</strong></em></a></li>
<li>[✅] <a href="https://github.com/bgoonz/python-gitbook"><em><strong>bgoonz/python-gitbook</strong></em></a></li>
<li>[✅] <a href="https://replit.com/@bgoonz/DATASTRUCPYTHONNOTES-3#GCA-prep.py"><em><strong>DATA_STRUC_PYTHON_NOTES-3 -Replit</strong></em></a></li>
<li>[✅] <a href="https://www.google.com/search?q=veritasium+simple+math+problem&oq=veritasium+simple+math+problem&aqs=chrome..69i57j33i160j33i299.9395j0j7&sourceid=chrome&ie=UTF-8"><em><strong>veritasium simple math problem - GoogleSearch</strong></em></a></li>
<li>[✅] <a href="https://medium.com/me/settings"><em><strong>Medium</strong></em></a></li>
<li>[✅] <a href="https://github.com/Archive-42/SandboxJS/deployments/activity_log?environment=github-pages"><em><strong>Deployments ·Archive-42/SandboxJS</strong></em></a></li>
<li>[✅] <a href="https://archive-42.github.io/SandboxJS/"><em><strong>SandboxJS: JavaScript "Sandboxes" for the webbrowser</strong></em></a></li>
<li>[✅] <a href="https://github.com/zricethezav?language=javascript&tab=stars"><em><strong>zricethezav (Zachary Rice) /Starred</strong></em></a></li>
<li>[✅] <a href="https://github.com/qeeqbox/social-analyzer"><em><strong>qeeqbox/social-analyzer: API, CLI & Web App for analyzing & finding aperson's profile across +900 social media \ websites (Detections areupdated regularly)</strong></em></a></li>
<li>[✅] <a href="https://github.com/jbrooksuk/node-summary"><em><strong>jbrooksuk/node-summary: Node module that summarizes text using a naivesummarization algorithm</strong></em></a></li>
<li>[✅] <a href="https://github.com/JupiterOne/graph-gitleaks-findings"><em><strong>JupiterOne/graph-gitleaks-findings</strong></em></a></li>
<li>[✅] <a href="https://github.com/zricethezav/website"><em><strong>zricethezav/website: zrice.net -- a website forme</strong></em></a></li>
<li>[✅] <a href="https://github.com/zricethezav/gifs"><em><strong>zricethezav/gifs: gifs forreadmes</strong></em></a></li>
<li>[✅] <a href="https://www.google.com/search?q=html.brow.shhttps%3A%2F%2Fgithub.com%2Fzricethezav%2Fzachstalks&oq=html.brow.shhttps%3A%2F%2Fgithub.com%2Fzricethezav%2Fzachstalks&aqs=chrome..69i57j69i58.1180j0j4&sourceid=chrome&ie=UTF-8"><em><strong>html.brow.shhttps://github.com/zricethezav/zachstalks - GoogleSearch</strong></em></a></li>
<li>[✅] <a href="https://github.com/zricethezav/emails"><em><strong>zricethezav/emails: harvest emails fromgithub</strong></em></a></li>
<li>[✅] <a href="https://app.codesignal.com/test/uQTr7k2nPe8FBcpZe/task/SLpe8d5suowooEGSG"><em><strong>CodeSignal</strong></em></a></li>
<li>[✅] <a href="https://gist.github.com/bgoonz/b5075e30e34832475a3fa90210f26a64"><em><strong>front-end-guide.md</strong></em></a></li>
<li>[✅] <a href="https://builtwith.com/?https%3a%2f%2fmaster--bgoonz-blog.netlify.app%2f"><em><strong>master--bgoonz-blog.netlify.app TechnologyProfile</strong></em></a></li>
<li>[✅] <a href="https://app.gitbook.com/@bgoonz42/s/datastructures-in-pytho/abstract-data-structures/untitled-1/untitled-2"><em><strong>Searching -datastructures-in-python</strong></em></a></li>
<li>[✅] <a href="https://bgoonz.github.io/github-stats-website/"><em><strong>Bryan C Guner</strong></em></a></li>
<li>[✅] <a href="https://github.com/trending/javascript?since=weekly"><em><strong>Trending JavaScript repositories on GitHub thisweek</strong></em></a></li>
<li>[✅] <a href="https://github.com/filebrowser/filebrowser"><em><strong>filebrowser/filebrowser: 📂 Web FileBrowser</strong></em></a></li>
<li>[✅] <a href="https://github.com/awesome-selfhosted/awesome-selfhosted"><em><strong>awesome-selfhosted/awesome-selfhosted: A list of Free Software networkservices and web applications which can be hosted on your ownservers</strong></em></a></li>
<li>[✅] <a href="https://github.com/hakimel/reveal.js"><em><strong>hakimel/reveal.js: The HTML PresentationFramework</strong></em></a></li>
<li>[✅] <a href="https://github.com/Web-Dev-Collaborative/reactjs-interview-questions"><em><strong>Web-Dev-Collaborative/reactjs-interview-questions: List of top 500ReactJS Interview Questions & Answers....Coding exercise questions arecomingsoon!!</strong></em></a></li>
<li>[✅] <a href="https://docs.python.org/3.9/tutorial/errors.html"><em><strong>8. Errors and Exceptions --- Python 3.9.7documentation</strong></em></a></li>
<li>[✅] <a href="https://www.jeffgeerling.com/blog/2018/get-list-all-users-public-github-repositories-using-github-api-and-jq"><em><strong>Get a list of all a user's public GitHub repositories using GitHub APIand jq | JeffGeerling</strong></em></a></li>
<li>[✅] <a href="https://marketplace.visualstudio.com/items?itemName=figstack.vsc"><em><strong>Figstack - Visual StudioMarketplace</strong></em></a></li>
<li>[✅] <a href="https://shell.cloud.google.com/?walkthrough_tutorial_id=cloud_run_cloud_code_create_service&show=ide&environment_deployment=ide"><em><strong>CloudShell</strong></em></a></li>
<li>[✅] <a href="https://github.com/bgoonz/BGOONZ_BLOG_2.0/wiki/Technologies-Used.md"><em><strong>Technologies Used.md · bgoonz/BGOONZ_BLOG_2.0Wiki</strong></em></a></li>
<li>[✅] <a href="https://cloud.google.com/sdk/docs/install#deb"><em><strong>Installing Cloud SDK | Cloud SDK Documentation | GoogleCloud</strong></em></a></li>
<li>[✅] <a href="https://cloud.google.com/"><em><strong>Cloud Computing Services | Google Cloud</strong></em></a></li>
<li>[✅] <a href="https://cloud.google.com/sdk/docs/quickstarts"><em><strong>Quickstarts | Cloud SDK Documentation | GoogleCloud</strong></em></a></li>
<li>[✅] <a href="https://cloud.google.com/sdk/auth_success"><em><strong>You are now authenticated with the Google CloudSDK!</strong></em></a></li>
<li>[✅] <a href="https://app.stackbit.com/studio/609b2d7c71a5dd0016f36326#/blog/interview-questions-js"><em><strong>bgoonz - StackbitApp</strong></em></a></li>
<li>[✅] <a href="https://github.com/bgoonz/BGOONZ_BLOG_2.0/pull/882"><em><strong>(2) hi by bgoonz · Pull Request #882 ·bgoonz/BGOONZ_BLOG_2.0</strong></em></a></li>
<li>[✅] <a href="https://app.stackbit.com/studio/60c3546f52e5bb0019dcbea4"><em><strong>Quick-Post-Blog - StackbitApp</strong></em></a></li>
<li>[✅] <a href="https://github.com/bgoonz/BGOONZ_BLOG_2.0/pull/881"><em><strong>(1) interview-questions-js.md: added by bgoonz · Pull Request #881 ·bgoonz/BGOONZ_BLOG_2.0</strong></em></a></li>
<li>[✅] <a href="https://console.cloud.google.com/functions/add?storageBucketName=web-serve&project=studious-pulsar-298821"><em><strong>Create function from prototype -- Cloud Functions -- My Project 78672-- Google CloudPlatform</strong></em></a></li>
<li>[✅] <a href="https://console.cloud.google.com/marketplace/product/google-cloud-platform/cloud-storage?folder=&organizationId=&project=jupyter-320000"><em><strong>Cloud Storage -- Marketplace -- jupyter -- Google CloudPlatform</strong></em></a></li>
<li>[✅] <a href="https://cloud.google.com/storage/docs/?hl=en_US&_ga=2.91592984.-387416667.1631330034#code-samples"><em><strong>Cloud Storage documentation | GoogleCloud</strong></em></a></li>
<li>[✅] <a href="https://github.com/side-projects-42/nodejs-storage"><em><strong>side-projects-42/nodejs-storage: Node.js client for Google CloudStorage: unified object storage for developers and enterprises, fromlive data serving to data analytics/ML to dataarchiving.</strong></em></a></li>
<li>[✅] <a href="https://amber-chicken-08c7elej.ws-us15.gitpod.io/"><em><strong>Preview README.md - nodejs-storage - GitpodCode</strong></em></a></li>
<li>[✅] <a href="https://gitpod.io/integrations"><em><strong>Integrations --- Gitpod</strong></em></a></li>
<li>[✅] <a href="https://console.cloud.google.com/storage/browser?_ga=2.237457600.1998419613.1631330034-387416667.1631330034&pli=1&project=studious-pulsar-298821&prefix="><em><strong>Browser -- Cloud Storage -- My Project 78672 -- Google CloudPlatform</strong></em></a></li>
<li>[✅] <a href="https://console.cloud.google.com/navigation-error;errorUrl=%2Fdataflow%2Fcreatejob%3Ftemplate%3DGCS_Text_to_Cloud_PubSub&jobName%3Dweb-serve&inputFilePattern%3Dgs:%252F%252Fweb-serve%252F*&confirmMsg%3Dtrue&project%3Dstudious-pulsar-298821?project=studious-pulsar-298821"><em><strong>Error -- Dataflow -- My Project 78672 -- Google CloudPlatform</strong></em></a></li>
<li>[✅] <a href="https://www.google.com/search?q=gs%3A%2F%2Fpotluck&oq=gs%3A%2F%2Fpotluck&aqs=chrome..69i57j69i58.604j0j7&sourceid=chrome&ie=UTF-8"><em><strong>gs://potluck - GoogleSearch</strong></em></a><br>
<br></li>
</ul>
<hr>
<br>
<h3 class="mume-header undefined" id="aa">a/A</h3>
<ul>
<li>[✅] <a href="https://onedrive.live.com/?authkey=%21AOZ4VcHpVkP%5F0qM&id=87D8B8560BFDB191%21272283&cid=87D8B8560BFDB191"><em><strong>aa -OneDrive</strong></em></a></li>
<li>[✅] <a href="https://github.com/ALW93/App-Academy"><em><strong>ALW93/App-Academy: Notes taken from Homework Reading & Lectures +Objectives for App Academy's July 13th Cohort, feel free to use asneeded. Will be updated as often aspossible!</strong></em></a></li>
<li>[✅] <a href="https://github.com/Erick-Bravo"><em><strong>Erick-Bravo (Erick Bravo)</strong></em></a></li>
<li>[✅] <a href="https://github.com/cynthiaspence7827?tab=repositories"><em><strong>cynthiaspence7827 /Repositories</strong></em></a></li>
<li>[✅] <a href="https://github.com/ahan8927"><em><strong>ahan8927 (Aaron Hanson)</strong></em></a></li>
<li>[✅] <a href="https://www.pythonkitchen.com/legally-free-python-books-list/"><em><strong>Legally Free Python Books List - Pythonkitchen</strong></em></a></li>
<li>[✅] <a href="https://www.google.com/search?q=javascript+problem+guide&rlz=1C1CHBF_enUS916US916&oq=javascript+problem+guide&aqs=chrome..69i57j69i64.6957j0j7&sourceid=chrome&ie=UTF-8"><em><strong>javascript problem guide - GoogleSearch</strong></em></a></li>
<li>[✅] <a href="https://developer.mozilla.org/en-US/docs/Learn/JavaScript/Howto"><em><strong>Solve common problems in your JavaScript code - Learn web development| MDN</strong></em></a></li>
<li>[✅] <a href="http://vswebessentials.com/download"><em><strong>Download - Web Essentials</strong></em></a></li>
<li>[✅] <a href="https://brilliant.org/practice/searching/?p=3"><em><strong>Searching Practice Problems Online |Brilliant</strong></em></a></li>
<li>[✅] <a href="https://brilliant.org/practice/the-speed-of-algorithms/?chapter=intro-to-algorithms"><em><strong>The Speed of Algorithms Practice Problems Online |Brilliant</strong></em></a></li>
<li>[✅] <a href="https://ghost.org/changelog/markdown/"><em><strong>The Ultimate Guide to Writing & Publishing withMarkdown</strong></em></a></li>
<li>[✅] <a href="https://github.com/NorthwoodsSoftware/GoJS"><em><strong>NorthwoodsSoftware/GoJS: JavaScript diagramming library for interactiveflowcharts, org charts, design tools, planning tools, visuallanguages.</strong></em></a></li>
<li>[✅] <a href="https://github.com/rough-stuff/rough-notation"><em><strong>rough-stuff/rough-notation: Create and animate hand-drawn annotationson a web page</strong></em></a></li>
<li>[✅] <a href="https://github.com/mifi/editly"><em><strong>mifi/editly: Slick, declarative command line video editing &API</strong></em></a></li>
<li>[✅] <a href="https://v8.dev/docs/stack-trace-api"><em><strong>Stack trace API · V8</strong></em></a></li>
<li>[✅] <a href="https://github.com/microsoft/vscode-jshint/issues/3"><em><strong>"Failed to load jshint library" · Issue #3 ·microsoft/vscode-jshint</strong></em></a></li>
<li>[✅] <a href="https://benwong.me/how-to-move-the-visual-studio-code-extensions-folder-on-windows/"><em><strong>How to move the Visual Studio Code extensions folder on Windows |benwong.me</strong></em></a></li>
<li>[✅] <a href="https://github.com/jshint/fixmyjs"><em><strong>jshint/fixmyjs: Automatically fix silly linterrors.</strong></em></a></li>
<li>[✅] <a href="https://marketplace.visualstudio.com/items?itemName=MadsKristensen.WebEssentials2019"><em><strong>Web Essentials 2019 - Visual StudioMarketplace</strong></em></a></li>
<li>[✅] <a href="https://jshint.com/install/"><em><strong>Download and install</strong></em></a></li>
<li>[✅] <a href="https://github.com/jshint/jshint"><em><strong>jshint/jshint: JSHint is a tool that helps to detect errors andpotential problems in your JavaScriptcode</strong></em></a></li>
<li>[✅] <a href="https://specificity.keegan.st/"><em><strong>Specificity Calculator</strong></em></a></li>
<li>[✅] <a href="https://nodejs.dev/learn/get-http-request-body-data-using-nodejs"><em><strong>Get HTTP request body data usingNode.js</strong></em></a></li>
<li>[✅] <a href="http://marylark.com/wk12-quiz.html"><em><strong>Mary Lark - Full Stack Engineer</strong></em></a></li>
<li>[✅] <a href="https://www.npmjs.com/package/@appacademy/cra-template-simple"><em><strong>@appacademy/cra-template-simple -npm</strong></em></a></li>
<li>[✅] <a href="https://create-react-app.dev/docs/custom-templates/"><em><strong>Custom Templates</strong></em></a></li>
<li>[✅] <a href="https://www.sololearn.com/Course/react/"><em><strong>React + Redux | SoloLearn: Learn to code forFREE!</strong></em></a></li>
<li>[✅] <a href="https://app.sli.do/event/qiefmfrm/live/questions"><em><strong>September Online</strong></em></a></li>
<li>[✅] <a href="https://www.db-fiddle.com/f/7fnLq7sZNknYPfm6U2xEAH/0"><em><strong>DB Fiddle - SQL DatabasePlayground</strong></em></a></li>
<li>[✅] <a href="https://quizlet.com/537605563/week-10-flash-cards/?x=1qqt"><em><strong>Week 10 Flashcards |Quizlet</strong></em></a><br>
<br></li>
</ul>
<hr>
<br>
<h3 class="mume-header undefined" id="netlify">netlify</h3>
<ul>
<li>[✅] <a href="https://www6.waybackmachinedownloader.com/website-downloader-online/"><em><strong>Website Downloader Online - Copy Any Site - Download AllFiles</strong></em></a></li>
<li>[✅] <a href="https://www6.waybackmachinedownloader.com/website-downloader-online/file_editor-website-downloader-online/?url=files/demo/vithalreddy.com_bryan.guner_gmail.com_i6i0p2kqg9"><em><strong>Website Downloader Online - ScrapingResults</strong></em></a></li>
<li>[✅] <a href="https://www.netlify.com/jamstack/"><em><strong>Welcome to the Jamstack | What, Why, and How ofJamstack</strong></em></a></li>
<li>[✅] <a href="https://app.netlify.com/sites/relaxed-noyce-f774b9/deploys/6073993d07b36aa5d39da796"><em><strong>Deploy details |relaxed-noyce-f774b9</strong></em></a></li>
<li>[✅] <a href="https://jamstack.org/glossary/"><em><strong>Glossary of Jamstack Terminology |Jamstack</strong></em></a></li>
<li>[✅] <a href="https://www.gatsbyjs.com/docs/quick-start"><em><strong>Quick Start | Gatsby</strong></em></a></li>
<li>[✅] <a href="https://jamstack.org/headless-cms/"><em><strong>Headless CMS - Top Content Management Systems |Jamstack</strong></em></a></li>
<li>[✅] <a href="https://www.netlify.com/products/build/"><em><strong>Netlify Build | Netlify</strong></em></a></li>
<li>[✅] <a href="https://www.netlify.com/products/edge/"><em><strong>Netlify Edge | Netlify</strong></em></a><br>
<br></li>
</ul>
<hr>
<br>
<h3 class="mume-header undefined" id="python">PYTHON</h3>
<ul>
<li>[✅] <a href="https://www.figstack.com/app/complexity"><em><strong>Time Complexity</strong></em></a><br>
<br></li>
</ul>
<hr>
<br>
<h3 class="mume-header undefined" id="react-redux">React-Redux</h3>
<ul>
<li>[✅] <a href="https://github.com/bgoonz/Potluck-Planner/commits/master"><em><strong>Commits ·bgoonz/Potluck-Planner</strong></em></a></li>
<li>[✅] <a href="https://trello.com/b/JN4HNaJX/kanban-template"><em><strong>Kanban Template |Trello</strong></em></a></li>
<li>[✅] <a href="https://app.stackbit.com/studio/609b4fbcfbe480001870d75e/"><em><strong>StackbitApp</strong></em></a></li>