4 |
5 | by {{ book.data.author }} {% if book.data.favorite %}★{% endif %}
6 |
7 |
8 | {{ book.templateContent }}
9 |
10 |
--------------------------------------------------------------------------------
/src/_includes/components/latest.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/_includes/components/youtube.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
10 |
11 |
--------------------------------------------------------------------------------
/src/_includes/layouts/home.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: layouts/default.html
3 | ---
4 |
5 | {{ content }}
6 |
--------------------------------------------------------------------------------
/src/assets/css/components/buttons.css:
--------------------------------------------------------------------------------
1 | .button {
2 | display: inline-block;
3 | padding: 0.25em 1em;
4 | border-radius: var(--l--border-radius-s);
5 | font-size: var(--t--size-s);
6 | font-weight: var(--t--weight-medium);
7 | }
8 |
9 | .button--primary {
10 | background: var(--c--blue-500);
11 | color: var(--c--pure-white);
12 | transition: background 100ms ease-out;
13 | &:hover {
14 | background: var(--c--blue-600);
15 | transition: background 50ms ease-out;
16 | }
17 | &:active {
18 | background: var(--c--blue-700);
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/src/assets/css/components/definition.css:
--------------------------------------------------------------------------------
1 | .definition--link {
2 | text-decoration-style: dotted;
3 | }
4 |
5 | .definition--link:hover {
6 | color: currentColor;
7 | background: var(--c--yellow-100);
8 | }
9 |
10 | .definition--list * + * {
11 | margin-top: 0;
12 | }
13 |
14 | .definition:target {
15 | padding: 0.25em 0.5em;
16 | margin-left: -0.5em;
17 | margin-right: -0.5em;
18 | background-color: var(--c--yellow-25);
19 | border-radius: 4px;
20 | }
21 |
22 | .definition--term {
23 | font-weight: var(--t--weight-bold);
24 | }
25 |
--------------------------------------------------------------------------------
/src/assets/css/components/email.css:
--------------------------------------------------------------------------------
1 | .email p {
2 | font-family: var(--t--family-sans);
3 | }
4 |
5 | .email-form {
6 | display: flex;
7 | gap: 0 1em;
8 |
9 | & button {
10 | flex: 0 1 auto;
11 | }
12 |
13 | & .field {
14 | flex: 1 1 auto;
15 | }
16 |
17 | & input {
18 | width: 100%;
19 | margin-top: 0;
20 | }
21 | }
22 |
23 | @media (--l--breakpoint-s) {
24 | .button {
25 | padding: calc(var(--l--space-xs) * 2) 0;
26 | font-size: var(--t--size-m);
27 | margin-top: calc(var(--l--space-xs) * 2);
28 | }
29 | .email-form {
30 | flex-direction: column;
31 |
32 | & input {
33 | font-size: var(--t--size-m);
34 |
35 | }
36 | }
37 | }
--------------------------------------------------------------------------------
/src/assets/css/components/linkArrow.css:
--------------------------------------------------------------------------------
1 | .linkArrow {
2 | display: inline-block;
3 | width: 0.5em;
4 | height: 0.5em;
5 | margin: 0;
6 | vertical-align: middle;
7 | stroke: currentcolor;
8 | fill: none;
9 |
10 | & path {
11 | stroke-width: 0.05em;
12 | }
13 | }
14 |
15 | .linkArrow--line {
16 | opacity: 0;
17 | transition: opacity 100ms ease-out;
18 | }
19 |
20 | .linkArrow--tip {
21 | transform: translateX(0);
22 | transition: transform 100ms ease-out;
23 | }
24 |
25 | a:hover .linkArrow--line {
26 | transition-duration: 50ms;
27 | opacity: 1;
28 | }
29 | a:hover .linkArrow--tip {
30 | transition-duration: 50ms;
31 | transform: translateX(0.18em);
32 | }
--------------------------------------------------------------------------------
/src/assets/css/components/sectionHeader.css:
--------------------------------------------------------------------------------
1 | .sectionHeader {
2 | display: flex;
3 | gap: var(--l--space-xs);
4 | }
5 |
6 | .sectionHeader--name,
7 | .sectionHeader--divider,
8 | .sectionHeader--link {
9 | margin: 0;
10 | }
11 |
12 | .sectionHeader--name,
13 | .sectionHeader--link {
14 | font-size: var(--t--size-s);
15 | flex: 0 1 auto;
16 | line-height: 0.75;
17 | }
18 |
19 | .sectionHeader--name {
20 | font-weight: var(--t--weight-medium);
21 | color: var(--c--gray-900);
22 | }
23 |
24 | .sectionHeader--divider {
25 | flex: 1 1 auto;
26 | border-bottom: 1px solid var(--c--gray-50);
27 | }
28 |
29 | .sectionHeader--link a {
30 | text-decoration: none;
31 | color: var(--c--theme-text-secondary);
32 | }
--------------------------------------------------------------------------------
/src/assets/css/components/swatch.css:
--------------------------------------------------------------------------------
1 | .swatch {
2 | display: inline-block;
3 | width: 0.75em;
4 | height: 0.75em;
5 | border-radius: calc(var(--l--border-radius-s) / 2);
6 | margin-top: 0;
7 | margin-left: 0.125em;
8 | box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
9 | white-space: nowrap;
10 | }
11 |
--------------------------------------------------------------------------------
/src/assets/css/components/tweet.css:
--------------------------------------------------------------------------------
1 | .eleventy-plugin-embed-twitter {
2 | display: flex;
3 | justify-content: center;
4 | }
--------------------------------------------------------------------------------
/src/assets/css/pages/about.css:
--------------------------------------------------------------------------------
1 | .about--top {
2 | display: flex;
3 | gap: 2rem;
4 | }
5 |
6 | .about--intro {
7 | flex: 1 1 66%;
8 | }
9 |
10 | .about--photo {
11 | flex: 1 1 33%;
12 | }
13 |
14 | .about--photo img {
15 | height: auto;
16 | max-width: 100%;
17 | border-radius: 50%;
18 | }
19 |
20 | .about--job-header {
21 | display: flex;
22 | gap: var(--l--space-s);
23 | align-items: center;
24 | }
25 |
26 | .about--job-date {
27 | font-family: var(--t--font-family-mono);
28 | color: var(--c--theme-text-secondary);
29 | }
30 |
31 | @media (--l--breakpoint-s) {
32 | .about--top {
33 | flex-direction: column-reverse;
34 | }
35 |
36 | .about--intro,
37 | .about--photo {
38 | flex: 1 1 auto;
39 | }
40 |
41 | .about--photo {
42 | max-width: 10rem;
43 | }
44 | }
45 |
--------------------------------------------------------------------------------
/src/assets/css/pages/writing.css:
--------------------------------------------------------------------------------
1 | .writing--year {
2 | font-size: var(--t--size-s);
3 | }
4 |
5 | .writing--section + .writing--section {
6 | margin-top: var(--l--space-l);
7 | }
--------------------------------------------------------------------------------
/src/assets/ethics/ethics.11tydata.json:
--------------------------------------------------------------------------------
1 | {
2 | "layout": "layouts/ethics.html",
3 | "tags": ["ethics", "writing"],
4 | "activePage": "writing"
5 | }
--------------------------------------------------------------------------------
/src/assets/favicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/favicon.png
--------------------------------------------------------------------------------
/src/assets/fonts/GeistMonoVariableVF.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/fonts/GeistMonoVariableVF.woff2
--------------------------------------------------------------------------------
/src/assets/fonts/InterVariable-Italic.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/fonts/InterVariable-Italic.woff2
--------------------------------------------------------------------------------
/src/assets/fonts/InterVariable.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/fonts/InterVariable.woff2
--------------------------------------------------------------------------------
/src/assets/fonts/charter_variable.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/fonts/charter_variable.woff2
--------------------------------------------------------------------------------
/src/assets/fonts/charter_variable_italic.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/fonts/charter_variable_italic.woff2
--------------------------------------------------------------------------------
/src/assets/images/accessibility-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/accessibility-1.jpg
--------------------------------------------------------------------------------
/src/assets/images/accessibility-2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/accessibility-2.jpg
--------------------------------------------------------------------------------
/src/assets/images/accessibility-3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/accessibility-3.png
--------------------------------------------------------------------------------
/src/assets/images/accessibility-4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/accessibility-4.png
--------------------------------------------------------------------------------
/src/assets/images/albumart-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/albumart-1.jpg
--------------------------------------------------------------------------------
/src/assets/images/albumart-10.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/albumart-10.jpg
--------------------------------------------------------------------------------
/src/assets/images/albumart-11.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/albumart-11.jpg
--------------------------------------------------------------------------------
/src/assets/images/albumart-12.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/albumart-12.jpg
--------------------------------------------------------------------------------
/src/assets/images/albumart-13.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/albumart-13.jpg
--------------------------------------------------------------------------------
/src/assets/images/albumart-14.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/albumart-14.jpg
--------------------------------------------------------------------------------
/src/assets/images/albumart-15.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/albumart-15.jpg
--------------------------------------------------------------------------------
/src/assets/images/albumart-16.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/albumart-16.jpg
--------------------------------------------------------------------------------
/src/assets/images/albumart-17.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/albumart-17.jpg
--------------------------------------------------------------------------------
/src/assets/images/albumart-18.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/albumart-18.jpg
--------------------------------------------------------------------------------
/src/assets/images/albumart-19.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/albumart-19.jpg
--------------------------------------------------------------------------------
/src/assets/images/albumart-2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/albumart-2.jpg
--------------------------------------------------------------------------------
/src/assets/images/albumart-20.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/albumart-20.jpg
--------------------------------------------------------------------------------
/src/assets/images/albumart-21.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/albumart-21.jpg
--------------------------------------------------------------------------------
/src/assets/images/albumart-22.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/albumart-22.jpg
--------------------------------------------------------------------------------
/src/assets/images/albumart-23.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/albumart-23.jpg
--------------------------------------------------------------------------------
/src/assets/images/albumart-24.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/albumart-24.jpg
--------------------------------------------------------------------------------
/src/assets/images/albumart-25.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/albumart-25.jpg
--------------------------------------------------------------------------------
/src/assets/images/albumart-26.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/albumart-26.jpg
--------------------------------------------------------------------------------
/src/assets/images/albumart-27.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/albumart-27.jpg
--------------------------------------------------------------------------------
/src/assets/images/albumart-28.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/albumart-28.jpg
--------------------------------------------------------------------------------
/src/assets/images/albumart-29.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/albumart-29.jpg
--------------------------------------------------------------------------------
/src/assets/images/albumart-3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/albumart-3.jpg
--------------------------------------------------------------------------------
/src/assets/images/albumart-30.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/albumart-30.jpg
--------------------------------------------------------------------------------
/src/assets/images/albumart-31.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/albumart-31.jpg
--------------------------------------------------------------------------------
/src/assets/images/albumart-32.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/albumart-32.jpg
--------------------------------------------------------------------------------
/src/assets/images/albumart-33.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/albumart-33.jpg
--------------------------------------------------------------------------------
/src/assets/images/albumart-34.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/albumart-34.jpg
--------------------------------------------------------------------------------
/src/assets/images/albumart-35.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/albumart-35.jpg
--------------------------------------------------------------------------------
/src/assets/images/albumart-4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/albumart-4.jpg
--------------------------------------------------------------------------------
/src/assets/images/albumart-5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/albumart-5.jpg
--------------------------------------------------------------------------------
/src/assets/images/albumart-6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/albumart-6.jpg
--------------------------------------------------------------------------------
/src/assets/images/albumart-7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/albumart-7.jpg
--------------------------------------------------------------------------------
/src/assets/images/albumart-8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/albumart-8.jpg
--------------------------------------------------------------------------------
/src/assets/images/albumart-9.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/albumart-9.jpg
--------------------------------------------------------------------------------
/src/assets/images/alignment.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/alignment.jpg
--------------------------------------------------------------------------------
/src/assets/images/annealing-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/annealing-1.jpg
--------------------------------------------------------------------------------
/src/assets/images/annealing-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/annealing-2.png
--------------------------------------------------------------------------------
/src/assets/images/annealing-3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/annealing-3.jpg
--------------------------------------------------------------------------------
/src/assets/images/annealing-4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/annealing-4.jpg
--------------------------------------------------------------------------------
/src/assets/images/annealing-5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/annealing-5.jpg
--------------------------------------------------------------------------------
/src/assets/images/annealing-6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/annealing-6.jpg
--------------------------------------------------------------------------------
/src/assets/images/annealing-7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/annealing-7.jpg
--------------------------------------------------------------------------------
/src/assets/images/annealing-8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/annealing-8.jpg
--------------------------------------------------------------------------------
/src/assets/images/annealing-9.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/annealing-9.jpg
--------------------------------------------------------------------------------
/src/assets/images/annealing-og.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/annealing-og.jpg
--------------------------------------------------------------------------------
/src/assets/images/anxiety-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/anxiety-1.jpg
--------------------------------------------------------------------------------
/src/assets/images/archpaper-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/archpaper-1.png
--------------------------------------------------------------------------------
/src/assets/images/archpaper-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/archpaper-2.png
--------------------------------------------------------------------------------
/src/assets/images/archpaper-3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/archpaper-3.png
--------------------------------------------------------------------------------
/src/assets/images/archpaper-4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/archpaper-4.png
--------------------------------------------------------------------------------
/src/assets/images/archpaper-5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/archpaper-5.png
--------------------------------------------------------------------------------
/src/assets/images/archpaper-6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/archpaper-6.png
--------------------------------------------------------------------------------
/src/assets/images/argos-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/argos-1.png
--------------------------------------------------------------------------------
/src/assets/images/argos-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/argos-2.png
--------------------------------------------------------------------------------
/src/assets/images/argos-3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/argos-3.png
--------------------------------------------------------------------------------
/src/assets/images/argos-4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/argos-4.png
--------------------------------------------------------------------------------
/src/assets/images/argos-5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/argos-5.png
--------------------------------------------------------------------------------
/src/assets/images/argos-6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/argos-6.png
--------------------------------------------------------------------------------
/src/assets/images/argos-7.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/argos-7.png
--------------------------------------------------------------------------------
/src/assets/images/argos-8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/argos-8.png
--------------------------------------------------------------------------------
/src/assets/images/beyond10x.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/beyond10x.jpg
--------------------------------------------------------------------------------
/src/assets/images/bluf.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/bluf.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-0.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-0.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-1.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-10.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-10.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-11-22-63.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-11-22-63.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-11.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-11.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-12.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-12.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-13.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-13.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-14.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-14.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-15.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-15.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-16.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-16.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-17.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-17.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-1776.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-1776.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-2.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-21-lessons.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-21-lessons.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-3.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-4.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-5.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-6.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-7.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-8.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-9.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-9.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-a-memory-called-empire.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-a-memory-called-empire.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-a-wizard-of-earthsea.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-a-wizard-of-earthsea.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-altered-carbon.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-altered-carbon.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-american-colossus.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-american-colossus.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-and-then-there-were-none.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-and-then-there-were-none.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-articulating-design-decisions.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-articulating-design-decisions.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-atomic-habits.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-atomic-habits.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-benjamin-franklin.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-benjamin-franklin.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-bird-by-bird.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-bird-by-bird.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-black-swan.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-black-swan.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-blue-mars.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-blue-mars.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-borne.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-borne.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-brave-new-work.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-brave-new-work.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-bringing-up-the-bodies.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-bringing-up-the-bodies.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-chernobyl.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-chernobyl.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-children-of-time.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-children-of-time.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-competing-against-luck.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-competing-against-luck.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-cover.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-cover.png
--------------------------------------------------------------------------------
/src/assets/images/book-creative-selection.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-creative-selection.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-dare-to-lead.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-dare-to-lead.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-dark-matter.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-dark-matter.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-deception-point.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-deception-point.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-design-unbound.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-design-unbound.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-discussing-design.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-discussing-design.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-do-i-make-myself-clear.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-do-i-make-myself-clear.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-dreams-of-a-final-theory.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-dreams-of-a-final-theory.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-einstein.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-einstein.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-endurance.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-endurance.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-energy.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-energy.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-exhalation.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-exhalation.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-genghis-khan.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-genghis-khan.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-going-to-pieces.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-going-to-pieces.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-good-services.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-good-services.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-good-strategy-bad-strategy.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-good-strategy-bad-strategy.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-good-to-great.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-good-to-great.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-green-mars.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-green-mars.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-guns-germs-and-steel.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-guns-germs-and-steel.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-helgoland.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-helgoland.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-high-output-management.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-high-output-management.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-hooked.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-hooked.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-how-the-world-really-works.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-how-the-world-really-works.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-how-to-do-nothing.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-how-to-do-nothing.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-instantiation.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-instantiation.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-journey-to-the-edge-of-reason.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-journey-to-the-edge-of-reason.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-kill-chain.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-kill-chain.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-leaders-eat-last.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-leaders-eat-last.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-leviathan-wakes.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-leviathan-wakes.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-masters-of-doom.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-masters-of-doom.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-murder-on-the-orient-express.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-murder-on-the-orient-express.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-on-writing.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-on-writing.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-org-design-for-design-orgs.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-org-design-for-design-orgs.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-pandemic.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-pandemic.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-patriot-games.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-patriot-games.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-permutation-city.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-permutation-city.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-piranesi.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-piranesi.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-project-hail-mary.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-project-hail-mary.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-radical-candor.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-radical-candor.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-recursion.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-recursion.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-red-mars.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-red-mars.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-red-notice.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-red-notice.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-rescuing-prometheus.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-rescuing-prometheus.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-rocket-men.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-rocket-men.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-several-short-sentences-about-writing.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-several-short-sentences-about-writing.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-shanzhai.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-shanzhai.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-slaughterhouse-five.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-slaughterhouse-five.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-stories-of-your-life-and-others.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-stories-of-your-life-and-others.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-termination-shock.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-termination-shock.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-the-art-of-taking-action.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-the-art-of-taking-action.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-the-beginning-of-infinity.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-the-beginning-of-infinity.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-the-bomber-mafia.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-the-bomber-mafia.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-the-clockwork-universe.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-the-clockwork-universe.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-the-code-breaker.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-the-code-breaker.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-the-design-of-everyday-things.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-the-design-of-everyday-things.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-the-evolution-of-cooperation.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-the-evolution-of-cooperation.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-the-fifth-season.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-the-fifth-season.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-the-freeze-frame-revolution.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-the-freeze-frame-revolution.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-the-goal.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-the-goal.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-the-grid.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-the-grid.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-the-guns-of-august.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-the-guns-of-august.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-the-hard-thing-about-hard-things.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-the-hard-thing-about-hard-things.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-the-hunt-for-red-october.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-the-hunt-for-red-october.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-the-idea-factory.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-the-idea-factory.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-the-innovators-dilemma.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-the-innovators-dilemma.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-the-machine-that-changed-the-world.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-the-machine-that-changed-the-world.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-the-maltese-falcon.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-the-maltese-falcon.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-the-mastermind.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-the-mastermind.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-the-ministry-for-the-future.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-the-ministry-for-the-future.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-the-mirror-and-the-light.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-the-mirror-and-the-light.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-the-mythical-man-month.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-the-mythical-man-month.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-the-obstacle-is-the-way.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-the-obstacle-is-the-way.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-the-phoenix-project.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-the-phoenix-project.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-the-price-of-peace.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-the-price-of-peace.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-the-quiet-americans.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-the-quiet-americans.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-the-selfish-gene.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-the-selfish-gene.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-the-splendid-and-the-vile.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-the-splendid-and-the-vile.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-the-square-and-the-tower-diagram.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-the-square-and-the-tower-diagram.png
--------------------------------------------------------------------------------
/src/assets/images/book-the-square-and-the-tower.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-the-square-and-the-tower.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-the-ten-most-beautiful-experiments.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-the-ten-most-beautiful-experiments.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-the-way-of-zen.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-the-way-of-zen.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-thinking-fast-and-slow.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-thinking-fast-and-slow.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-thinking-in-services.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-thinking-in-services.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-thinking-in-systems.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-thinking-in-systems.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-tinker-tailor-soldier-spy.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-tinker-tailor-soldier-spy.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-to-start-a-war.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-to-start-a-war.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-tomorrow-and-tomorrow-and-tomorrow.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-tomorrow-and-tomorrow-and-tomorrow.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-trillion-dollar-coach.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-trillion-dollar-coach.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-twenty-bits.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-twenty-bits.jpg
--------------------------------------------------------------------------------
/src/assets/images/book-wolf-hall.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/book-wolf-hall.jpg
--------------------------------------------------------------------------------
/src/assets/images/books-2019.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/books-2019.jpg
--------------------------------------------------------------------------------
/src/assets/images/boring-1.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/boring-1.jpeg
--------------------------------------------------------------------------------
/src/assets/images/boring-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/boring-2.png
--------------------------------------------------------------------------------
/src/assets/images/brand-0.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/brand-0.jpg
--------------------------------------------------------------------------------
/src/assets/images/brand-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/brand-1.jpg
--------------------------------------------------------------------------------
/src/assets/images/brand-2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/brand-2.jpg
--------------------------------------------------------------------------------
/src/assets/images/brand-3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/brand-3.jpg
--------------------------------------------------------------------------------
/src/assets/images/brand-4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/brand-4.jpg
--------------------------------------------------------------------------------
/src/assets/images/brand-5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/brand-5.jpg
--------------------------------------------------------------------------------
/src/assets/images/brand-6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/brand-6.jpg
--------------------------------------------------------------------------------
/src/assets/images/brand-7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/brand-7.jpg
--------------------------------------------------------------------------------
/src/assets/images/brand-8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/brand-8.jpg
--------------------------------------------------------------------------------
/src/assets/images/brand-9.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/brand-9.jpg
--------------------------------------------------------------------------------
/src/assets/images/care-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/care-1.jpg
--------------------------------------------------------------------------------
/src/assets/images/care-2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/care-2.jpg
--------------------------------------------------------------------------------
/src/assets/images/care-3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/care-3.jpg
--------------------------------------------------------------------------------
/src/assets/images/change_1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/change_1.png
--------------------------------------------------------------------------------
/src/assets/images/code-0.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/code-0.jpg
--------------------------------------------------------------------------------
/src/assets/images/code-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/code-1.jpg
--------------------------------------------------------------------------------
/src/assets/images/code-10.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/code-10.jpg
--------------------------------------------------------------------------------
/src/assets/images/code-11.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/code-11.jpg
--------------------------------------------------------------------------------
/src/assets/images/code-2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/code-2.jpg
--------------------------------------------------------------------------------
/src/assets/images/code-3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/code-3.jpg
--------------------------------------------------------------------------------
/src/assets/images/code-4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/code-4.jpg
--------------------------------------------------------------------------------
/src/assets/images/code-5.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/code-5.gif
--------------------------------------------------------------------------------
/src/assets/images/code-5.webm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/code-5.webm
--------------------------------------------------------------------------------
/src/assets/images/code-6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/code-6.jpg
--------------------------------------------------------------------------------
/src/assets/images/code-7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/code-7.jpg
--------------------------------------------------------------------------------
/src/assets/images/code-8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/code-8.jpg
--------------------------------------------------------------------------------
/src/assets/images/code-9.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/code-9.jpg
--------------------------------------------------------------------------------
/src/assets/images/collaborative-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/collaborative-1.jpg
--------------------------------------------------------------------------------
/src/assets/images/collaborative-2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/collaborative-2.jpg
--------------------------------------------------------------------------------
/src/assets/images/collaborative-3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/collaborative-3.jpg
--------------------------------------------------------------------------------
/src/assets/images/collaborative-4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/collaborative-4.jpg
--------------------------------------------------------------------------------
/src/assets/images/collaborative-5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/collaborative-5.jpg
--------------------------------------------------------------------------------
/src/assets/images/compounding-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/compounding-1.png
--------------------------------------------------------------------------------
/src/assets/images/compounding-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/compounding-2.png
--------------------------------------------------------------------------------
/src/assets/images/compounding-3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/compounding-3.jpg
--------------------------------------------------------------------------------
/src/assets/images/compounding-4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/compounding-4.jpg
--------------------------------------------------------------------------------
/src/assets/images/cons-0.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/cons-0.jpg
--------------------------------------------------------------------------------
/src/assets/images/cons-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/cons-1.jpg
--------------------------------------------------------------------------------
/src/assets/images/cons-2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/cons-2.jpg
--------------------------------------------------------------------------------
/src/assets/images/copilot-branding-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/copilot-branding-1.png
--------------------------------------------------------------------------------
/src/assets/images/copilot-branding-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/copilot-branding-2.png
--------------------------------------------------------------------------------
/src/assets/images/copilot-branding-3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/copilot-branding-3.png
--------------------------------------------------------------------------------
/src/assets/images/copilot-branding-4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/copilot-branding-4.png
--------------------------------------------------------------------------------
/src/assets/images/copilot-branding-5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/copilot-branding-5.png
--------------------------------------------------------------------------------
/src/assets/images/copilot-designSystem-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/copilot-designSystem-2.png
--------------------------------------------------------------------------------
/src/assets/images/copilot-designSystem.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/copilot-designSystem.png
--------------------------------------------------------------------------------
/src/assets/images/copilot-goals-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/copilot-goals-1.png
--------------------------------------------------------------------------------
/src/assets/images/copilot-goals-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/copilot-goals-2.png
--------------------------------------------------------------------------------
/src/assets/images/copilot-goals-3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/copilot-goals-3.png
--------------------------------------------------------------------------------
/src/assets/images/copilot-goals-4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/copilot-goals-4.png
--------------------------------------------------------------------------------
/src/assets/images/copilot-goals-5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/copilot-goals-5.png
--------------------------------------------------------------------------------
/src/assets/images/copilot-goals-6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/copilot-goals-6.png
--------------------------------------------------------------------------------
/src/assets/images/copilot-goals-7.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/copilot-goals-7.png
--------------------------------------------------------------------------------
/src/assets/images/copilot-hero.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/copilot-hero.png
--------------------------------------------------------------------------------
/src/assets/images/copilot-thumbnail-dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/copilot-thumbnail-dark.png
--------------------------------------------------------------------------------
/src/assets/images/copilot-thumbnail-light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/copilot-thumbnail-light.png
--------------------------------------------------------------------------------
/src/assets/images/copilot-web-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/copilot-web-1.png
--------------------------------------------------------------------------------
/src/assets/images/copilot-web-2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/copilot-web-2.jpg
--------------------------------------------------------------------------------
/src/assets/images/copilot-web-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/copilot-web-2.png
--------------------------------------------------------------------------------
/src/assets/images/copilot-web-3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/copilot-web-3.png
--------------------------------------------------------------------------------
/src/assets/images/copilot-web-4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/copilot-web-4.png
--------------------------------------------------------------------------------
/src/assets/images/copying-0.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/copying-0.jpg
--------------------------------------------------------------------------------
/src/assets/images/copying-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/copying-1.jpg
--------------------------------------------------------------------------------
/src/assets/images/copying-10.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/copying-10.jpg
--------------------------------------------------------------------------------
/src/assets/images/copying-11.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/copying-11.jpg
--------------------------------------------------------------------------------
/src/assets/images/copying-12.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/copying-12.jpg
--------------------------------------------------------------------------------
/src/assets/images/copying-13.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/copying-13.jpg
--------------------------------------------------------------------------------
/src/assets/images/copying-14.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/copying-14.jpg
--------------------------------------------------------------------------------
/src/assets/images/copying-15.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/copying-15.jpg
--------------------------------------------------------------------------------
/src/assets/images/copying-2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/copying-2.jpg
--------------------------------------------------------------------------------
/src/assets/images/copying-3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/copying-3.jpg
--------------------------------------------------------------------------------
/src/assets/images/copying-4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/copying-4.jpg
--------------------------------------------------------------------------------
/src/assets/images/copying-5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/copying-5.jpg
--------------------------------------------------------------------------------
/src/assets/images/copying-6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/copying-6.jpg
--------------------------------------------------------------------------------
/src/assets/images/copying-7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/copying-7.jpg
--------------------------------------------------------------------------------
/src/assets/images/copying-8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/copying-8.jpg
--------------------------------------------------------------------------------
/src/assets/images/copying-9.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/copying-9.jpg
--------------------------------------------------------------------------------
/src/assets/images/crews-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/crews-1.jpg
--------------------------------------------------------------------------------
/src/assets/images/crystal-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/crystal-1.jpg
--------------------------------------------------------------------------------
/src/assets/images/crystal-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/crystal-1.png
--------------------------------------------------------------------------------
/src/assets/images/cty-0.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/cty-0.jpg
--------------------------------------------------------------------------------
/src/assets/images/cty-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/cty-1.jpg
--------------------------------------------------------------------------------
/src/assets/images/cty-10.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/cty-10.jpg
--------------------------------------------------------------------------------
/src/assets/images/cty-2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/cty-2.jpg
--------------------------------------------------------------------------------
/src/assets/images/cty-3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/cty-3.jpg
--------------------------------------------------------------------------------
/src/assets/images/cty-4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/cty-4.jpg
--------------------------------------------------------------------------------
/src/assets/images/cty-5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/cty-5.jpg
--------------------------------------------------------------------------------
/src/assets/images/cty-6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/cty-6.jpg
--------------------------------------------------------------------------------
/src/assets/images/cty-7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/cty-7.jpg
--------------------------------------------------------------------------------
/src/assets/images/cty-8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/cty-8.jpg
--------------------------------------------------------------------------------
/src/assets/images/cty-9.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/cty-9.jpg
--------------------------------------------------------------------------------
/src/assets/images/curious-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/curious-1.jpg
--------------------------------------------------------------------------------
/src/assets/images/datum-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/datum-1.png
--------------------------------------------------------------------------------
/src/assets/images/datum-10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/datum-10.png
--------------------------------------------------------------------------------
/src/assets/images/datum-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/datum-2.png
--------------------------------------------------------------------------------
/src/assets/images/datum-3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/datum-3.png
--------------------------------------------------------------------------------
/src/assets/images/datum-4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/datum-4.png
--------------------------------------------------------------------------------
/src/assets/images/datum-5.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/datum-5.jpeg
--------------------------------------------------------------------------------
/src/assets/images/datum-6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/datum-6.png
--------------------------------------------------------------------------------
/src/assets/images/datum-7.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/datum-7.png
--------------------------------------------------------------------------------
/src/assets/images/datum-8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/datum-8.png
--------------------------------------------------------------------------------
/src/assets/images/datum-9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/datum-9.png
--------------------------------------------------------------------------------
/src/assets/images/default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/default.png
--------------------------------------------------------------------------------
/src/assets/images/delight-0.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/delight-0.jpg
--------------------------------------------------------------------------------
/src/assets/images/delight-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/delight-1.jpg
--------------------------------------------------------------------------------
/src/assets/images/delight-2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/delight-2.jpg
--------------------------------------------------------------------------------
/src/assets/images/delight-3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/delight-3.jpg
--------------------------------------------------------------------------------
/src/assets/images/deontology-01.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/deontology-01.jpg
--------------------------------------------------------------------------------
/src/assets/images/deontology-02.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/deontology-02.jpg
--------------------------------------------------------------------------------
/src/assets/images/deontology-03.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/deontology-03.jpg
--------------------------------------------------------------------------------
/src/assets/images/design-api-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/design-api-1.jpg
--------------------------------------------------------------------------------
/src/assets/images/design-api-2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/design-api-2.jpg
--------------------------------------------------------------------------------
/src/assets/images/design-api-3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/design-api-3.jpg
--------------------------------------------------------------------------------
/src/assets/images/design-api-4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/design-api-4.jpg
--------------------------------------------------------------------------------
/src/assets/images/design-api-5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/design-api-5.jpg
--------------------------------------------------------------------------------
/src/assets/images/design-apis-01.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/design-apis-01.png
--------------------------------------------------------------------------------
/src/assets/images/design-apis-02.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/design-apis-02.jpg
--------------------------------------------------------------------------------
/src/assets/images/design-by-wire-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/design-by-wire-1.jpg
--------------------------------------------------------------------------------
/src/assets/images/design-by-wire-2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/design-by-wire-2.jpg
--------------------------------------------------------------------------------
/src/assets/images/design-ml-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/design-ml-1.jpg
--------------------------------------------------------------------------------
/src/assets/images/designing-change.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/designing-change.jpg
--------------------------------------------------------------------------------
/src/assets/images/desk-0.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/desk-0.jpg
--------------------------------------------------------------------------------
/src/assets/images/distributed-0.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/distributed-0.jpg
--------------------------------------------------------------------------------
/src/assets/images/distributed-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/distributed-1.jpg
--------------------------------------------------------------------------------
/src/assets/images/distributed-2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/distributed-2.jpg
--------------------------------------------------------------------------------
/src/assets/images/distributed-3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/distributed-3.jpg
--------------------------------------------------------------------------------
/src/assets/images/doubt.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/doubt.jpg
--------------------------------------------------------------------------------
/src/assets/images/doubt.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/doubt.png
--------------------------------------------------------------------------------
/src/assets/images/ds-0.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/ds-0.jpg
--------------------------------------------------------------------------------
/src/assets/images/engagement.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/engagement.jpg
--------------------------------------------------------------------------------
/src/assets/images/ethics_0_1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/ethics_0_1.jpg
--------------------------------------------------------------------------------
/src/assets/images/ethics_1_0.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/ethics_1_0.jpg
--------------------------------------------------------------------------------
/src/assets/images/ethics_cover.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/ethics_cover.jpg
--------------------------------------------------------------------------------
/src/assets/images/ethics_head.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/ethics_head.jpg
--------------------------------------------------------------------------------
/src/assets/images/everyday-design-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/everyday-design-1.jpg
--------------------------------------------------------------------------------
/src/assets/images/everyday-design.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/everyday-design.jpg
--------------------------------------------------------------------------------
/src/assets/images/exercise-0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/exercise-0.png
--------------------------------------------------------------------------------
/src/assets/images/exercise-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/exercise-1.png
--------------------------------------------------------------------------------
/src/assets/images/exercise-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/exercise-2.png
--------------------------------------------------------------------------------
/src/assets/images/exercise-3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/exercise-3.jpg
--------------------------------------------------------------------------------
/src/assets/images/exercise-4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/exercise-4.jpg
--------------------------------------------------------------------------------
/src/assets/images/exercise-5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/exercise-5.png
--------------------------------------------------------------------------------
/src/assets/images/feedback.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/feedback.jpg
--------------------------------------------------------------------------------
/src/assets/images/fiori-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/fiori-1.png
--------------------------------------------------------------------------------
/src/assets/images/fiori-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/fiori-2.png
--------------------------------------------------------------------------------
/src/assets/images/fiori-3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/fiori-3.png
--------------------------------------------------------------------------------
/src/assets/images/fiori-4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/fiori-4.png
--------------------------------------------------------------------------------
/src/assets/images/fiori-5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/fiori-5.png
--------------------------------------------------------------------------------
/src/assets/images/fiori-6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/fiori-6.png
--------------------------------------------------------------------------------
/src/assets/images/fix-0.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/fix-0.jpg
--------------------------------------------------------------------------------
/src/assets/images/gap-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/gap-1.png
--------------------------------------------------------------------------------
/src/assets/images/gap-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/gap-2.png
--------------------------------------------------------------------------------
/src/assets/images/gap-3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/gap-3.png
--------------------------------------------------------------------------------
/src/assets/images/generating-color-palettes-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/generating-color-palettes-1.png
--------------------------------------------------------------------------------
/src/assets/images/generating-color-palettes-10.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/generating-color-palettes-10.jpg
--------------------------------------------------------------------------------
/src/assets/images/generating-color-palettes-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/generating-color-palettes-2.png
--------------------------------------------------------------------------------
/src/assets/images/generating-color-palettes-3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/generating-color-palettes-3.png
--------------------------------------------------------------------------------
/src/assets/images/generating-color-palettes-4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/generating-color-palettes-4.png
--------------------------------------------------------------------------------
/src/assets/images/generating-color-palettes-5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/generating-color-palettes-5.png
--------------------------------------------------------------------------------
/src/assets/images/generating-color-palettes-6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/generating-color-palettes-6.png
--------------------------------------------------------------------------------
/src/assets/images/generating-color-palettes-7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/generating-color-palettes-7.jpg
--------------------------------------------------------------------------------
/src/assets/images/generating-color-palettes-8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/generating-color-palettes-8.jpg
--------------------------------------------------------------------------------
/src/assets/images/generating-color-palettes-9.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/generating-color-palettes-9.jpg
--------------------------------------------------------------------------------
/src/assets/images/generative-og-0a.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/generative-og-0a.jpg
--------------------------------------------------------------------------------
/src/assets/images/generative-og-0b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/generative-og-0b.jpg
--------------------------------------------------------------------------------
/src/assets/images/generative-og-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/generative-og-1.jpg
--------------------------------------------------------------------------------
/src/assets/images/generative-og-10.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/generative-og-10.jpg
--------------------------------------------------------------------------------
/src/assets/images/generative-og-11.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/generative-og-11.jpg
--------------------------------------------------------------------------------
/src/assets/images/generative-og-12.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/generative-og-12.jpg
--------------------------------------------------------------------------------
/src/assets/images/generative-og-13.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/generative-og-13.jpg
--------------------------------------------------------------------------------
/src/assets/images/generative-og-14.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/generative-og-14.jpg
--------------------------------------------------------------------------------
/src/assets/images/generative-og-15.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/generative-og-15.jpg
--------------------------------------------------------------------------------
/src/assets/images/generative-og-16.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/generative-og-16.jpg
--------------------------------------------------------------------------------
/src/assets/images/generative-og-17.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/generative-og-17.jpg
--------------------------------------------------------------------------------
/src/assets/images/generative-og-18.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/generative-og-18.jpg
--------------------------------------------------------------------------------
/src/assets/images/generative-og-2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/generative-og-2.jpg
--------------------------------------------------------------------------------
/src/assets/images/generative-og-3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/generative-og-3.jpg
--------------------------------------------------------------------------------
/src/assets/images/generative-og-4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/generative-og-4.jpg
--------------------------------------------------------------------------------
/src/assets/images/generative-og-5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/generative-og-5.jpg
--------------------------------------------------------------------------------
/src/assets/images/generative-og-6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/generative-og-6.jpg
--------------------------------------------------------------------------------
/src/assets/images/generative-og-7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/generative-og-7.jpg
--------------------------------------------------------------------------------
/src/assets/images/generative-og-8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/generative-og-8.jpg
--------------------------------------------------------------------------------
/src/assets/images/generative-og-9.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/generative-og-9.jpg
--------------------------------------------------------------------------------
/src/assets/images/github-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/github-1.png
--------------------------------------------------------------------------------
/src/assets/images/github-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/github-2.png
--------------------------------------------------------------------------------
/src/assets/images/github-3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/github-3.png
--------------------------------------------------------------------------------
/src/assets/images/github-4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/github-4.png
--------------------------------------------------------------------------------
/src/assets/images/github-5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/github-5.png
--------------------------------------------------------------------------------
/src/assets/images/github-6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/github-6.png
--------------------------------------------------------------------------------
/src/assets/images/goldilocks-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/goldilocks-1.png
--------------------------------------------------------------------------------
/src/assets/images/goldilocks-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/goldilocks-2.png
--------------------------------------------------------------------------------
/src/assets/images/goldilocks-3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/goldilocks-3.png
--------------------------------------------------------------------------------
/src/assets/images/handandbrain.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/handandbrain.jpg
--------------------------------------------------------------------------------
/src/assets/images/handandbrain_small.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/handandbrain_small.jpg
--------------------------------------------------------------------------------
/src/assets/images/intuition-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/intuition-1.jpg
--------------------------------------------------------------------------------
/src/assets/images/intuition-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/intuition-1.png
--------------------------------------------------------------------------------
/src/assets/images/intuition-2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/intuition-2.jpg
--------------------------------------------------------------------------------
/src/assets/images/intuition-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/intuition-2.png
--------------------------------------------------------------------------------
/src/assets/images/intuition-3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/intuition-3.jpg
--------------------------------------------------------------------------------
/src/assets/images/intuition-a.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/intuition-a.png
--------------------------------------------------------------------------------
/src/assets/images/jit-0.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/jit-0.jpg
--------------------------------------------------------------------------------
/src/assets/images/jit-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/jit-1.jpg
--------------------------------------------------------------------------------
/src/assets/images/jit-2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/jit-2.jpg
--------------------------------------------------------------------------------
/src/assets/images/knowthyself.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/knowthyself.jpg
--------------------------------------------------------------------------------
/src/assets/images/learning-0.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/learning-0.jpg
--------------------------------------------------------------------------------
/src/assets/images/learning-to-see-orbit-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/learning-to-see-orbit-1.jpg
--------------------------------------------------------------------------------
/src/assets/images/learning-to-see-orbit-2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/learning-to-see-orbit-2.jpg
--------------------------------------------------------------------------------
/src/assets/images/looms.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/looms.jpg
--------------------------------------------------------------------------------
/src/assets/images/management-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/management-1.png
--------------------------------------------------------------------------------
/src/assets/images/maps-0.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/maps-0.jpg
--------------------------------------------------------------------------------
/src/assets/images/maps-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/maps-1.jpg
--------------------------------------------------------------------------------
/src/assets/images/maps-2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/maps-2.jpg
--------------------------------------------------------------------------------
/src/assets/images/maps-3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/maps-3.jpg
--------------------------------------------------------------------------------
/src/assets/images/maps-4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/maps-4.jpg
--------------------------------------------------------------------------------
/src/assets/images/maps-5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/maps-5.jpg
--------------------------------------------------------------------------------
/src/assets/images/maps-6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/maps-6.png
--------------------------------------------------------------------------------
/src/assets/images/maps-7.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/maps-7.png
--------------------------------------------------------------------------------
/src/assets/images/matt.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/matt.jpg
--------------------------------------------------------------------------------
/src/assets/images/meetings-0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/meetings-0.png
--------------------------------------------------------------------------------
/src/assets/images/meetings-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/meetings-1.png
--------------------------------------------------------------------------------
/src/assets/images/meetings-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/meetings-2.png
--------------------------------------------------------------------------------
/src/assets/images/montage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/montage.png
--------------------------------------------------------------------------------
/src/assets/images/nfts-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/nfts-1.jpg
--------------------------------------------------------------------------------
/src/assets/images/nfts-2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/nfts-2.jpg
--------------------------------------------------------------------------------
/src/assets/images/paradox-ab-testing.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/paradox-ab-testing.jpg
--------------------------------------------------------------------------------
/src/assets/images/picturesofwebsites-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/picturesofwebsites-1.jpg
--------------------------------------------------------------------------------
/src/assets/images/picturesofwebsites-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/picturesofwebsites-2.png
--------------------------------------------------------------------------------
/src/assets/images/picturesofwebsites.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/picturesofwebsites.jpg
--------------------------------------------------------------------------------
/src/assets/images/polish-0.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/polish-0.jpg
--------------------------------------------------------------------------------
/src/assets/images/polish-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/polish-1.jpg
--------------------------------------------------------------------------------
/src/assets/images/polish-2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/polish-2.jpg
--------------------------------------------------------------------------------
/src/assets/images/polish-3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/polish-3.jpg
--------------------------------------------------------------------------------
/src/assets/images/polish-4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/polish-4.jpg
--------------------------------------------------------------------------------
/src/assets/images/polish-5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/polish-5.jpg
--------------------------------------------------------------------------------
/src/assets/images/postindustrial-0.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/postindustrial-0.jpg
--------------------------------------------------------------------------------
/src/assets/images/postindustrial-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/postindustrial-1.jpg
--------------------------------------------------------------------------------
/src/assets/images/postindustrial-10.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/postindustrial-10.jpg
--------------------------------------------------------------------------------
/src/assets/images/postindustrial-11.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/postindustrial-11.jpg
--------------------------------------------------------------------------------
/src/assets/images/postindustrial-12.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/postindustrial-12.jpg
--------------------------------------------------------------------------------
/src/assets/images/postindustrial-2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/postindustrial-2.jpg
--------------------------------------------------------------------------------
/src/assets/images/postindustrial-3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/postindustrial-3.jpg
--------------------------------------------------------------------------------
/src/assets/images/postindustrial-4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/postindustrial-4.jpg
--------------------------------------------------------------------------------
/src/assets/images/postindustrial-5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/postindustrial-5.jpg
--------------------------------------------------------------------------------
/src/assets/images/postindustrial-6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/postindustrial-6.jpg
--------------------------------------------------------------------------------
/src/assets/images/postindustrial-7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/postindustrial-7.jpg
--------------------------------------------------------------------------------
/src/assets/images/postindustrial-8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/postindustrial-8.jpg
--------------------------------------------------------------------------------
/src/assets/images/postindustrial-9.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/postindustrial-9.jpg
--------------------------------------------------------------------------------
/src/assets/images/practice-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/practice-1.jpg
--------------------------------------------------------------------------------
/src/assets/images/product-thinking-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/product-thinking-1.jpg
--------------------------------------------------------------------------------
/src/assets/images/pulse-0.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/pulse-0.jpg
--------------------------------------------------------------------------------
/src/assets/images/pulse-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/pulse-1.png
--------------------------------------------------------------------------------
/src/assets/images/pulse-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/pulse-2.png
--------------------------------------------------------------------------------
/src/assets/images/pulse-3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/pulse-3.png
--------------------------------------------------------------------------------
/src/assets/images/recipe-0.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/recipe-0.jpg
--------------------------------------------------------------------------------
/src/assets/images/same-0.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/same-0.jpg
--------------------------------------------------------------------------------
/src/assets/images/same-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/same-1.png
--------------------------------------------------------------------------------
/src/assets/images/same-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/same-2.png
--------------------------------------------------------------------------------
/src/assets/images/same-3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/same-3.png
--------------------------------------------------------------------------------
/src/assets/images/same-4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/same-4.jpg
--------------------------------------------------------------------------------
/src/assets/images/seeing-0.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/seeing-0.jpg
--------------------------------------------------------------------------------
/src/assets/images/seeing-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/seeing-1.png
--------------------------------------------------------------------------------
/src/assets/images/seeing-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/seeing-2.png
--------------------------------------------------------------------------------
/src/assets/images/seeing-3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/seeing-3.jpg
--------------------------------------------------------------------------------
/src/assets/images/seeing-4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/seeing-4.jpg
--------------------------------------------------------------------------------
/src/assets/images/seeing-5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/seeing-5.jpg
--------------------------------------------------------------------------------
/src/assets/images/seeing-5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/seeing-5.png
--------------------------------------------------------------------------------
/src/assets/images/seeing-6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/seeing-6.jpg
--------------------------------------------------------------------------------
/src/assets/images/seeing-6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/seeing-6.png
--------------------------------------------------------------------------------
/src/assets/images/seeing-7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/seeing-7.jpg
--------------------------------------------------------------------------------
/src/assets/images/seeing-7.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/seeing-7.png
--------------------------------------------------------------------------------
/src/assets/images/seeing-8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/seeing-8.png
--------------------------------------------------------------------------------
/src/assets/images/service.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/service.jpg
--------------------------------------------------------------------------------
/src/assets/images/sh-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/sh-1.jpg
--------------------------------------------------------------------------------
/src/assets/images/sh-2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/sh-2.jpg
--------------------------------------------------------------------------------
/src/assets/images/sh-hero.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/sh-hero.png
--------------------------------------------------------------------------------
/src/assets/images/sh-service-blueprint.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/sh-service-blueprint.jpg
--------------------------------------------------------------------------------
/src/assets/images/snapchat-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/snapchat-1.jpg
--------------------------------------------------------------------------------
/src/assets/images/spacetime-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/spacetime-1.png
--------------------------------------------------------------------------------
/src/assets/images/spacetime-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/spacetime-2.png
--------------------------------------------------------------------------------
/src/assets/images/spacetime-3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/spacetime-3.png
--------------------------------------------------------------------------------
/src/assets/images/spacetime-4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/spacetime-4.png
--------------------------------------------------------------------------------
/src/assets/images/spacetime-5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/spacetime-5.png
--------------------------------------------------------------------------------
/src/assets/images/spacetime-6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/spacetime-6.png
--------------------------------------------------------------------------------
/src/assets/images/spacetime-7.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/spacetime-7.png
--------------------------------------------------------------------------------
/src/assets/images/spacetime-8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/spacetime-8.png
--------------------------------------------------------------------------------
/src/assets/images/spacetime-v.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/spacetime-v.mp4
--------------------------------------------------------------------------------
/src/assets/images/spacetime-v.ogv:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/spacetime-v.ogv
--------------------------------------------------------------------------------
/src/assets/images/stripe-dashboard-1-dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/stripe-dashboard-1-dark.png
--------------------------------------------------------------------------------
/src/assets/images/stripe-dashboard-1-light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/stripe-dashboard-1-light.png
--------------------------------------------------------------------------------
/src/assets/images/stripe-dashboard-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/stripe-dashboard-1.png
--------------------------------------------------------------------------------
/src/assets/images/stripe-dashboard-10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/stripe-dashboard-10.png
--------------------------------------------------------------------------------
/src/assets/images/stripe-dashboard-11.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/stripe-dashboard-11.png
--------------------------------------------------------------------------------
/src/assets/images/stripe-dashboard-12.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/stripe-dashboard-12.png
--------------------------------------------------------------------------------
/src/assets/images/stripe-dashboard-13.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/stripe-dashboard-13.png
--------------------------------------------------------------------------------
/src/assets/images/stripe-dashboard-14.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/stripe-dashboard-14.png
--------------------------------------------------------------------------------
/src/assets/images/stripe-dashboard-15.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/stripe-dashboard-15.mp4
--------------------------------------------------------------------------------
/src/assets/images/stripe-dashboard-16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/stripe-dashboard-16.png
--------------------------------------------------------------------------------
/src/assets/images/stripe-dashboard-17.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/stripe-dashboard-17.png
--------------------------------------------------------------------------------
/src/assets/images/stripe-dashboard-18.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/stripe-dashboard-18.png
--------------------------------------------------------------------------------
/src/assets/images/stripe-dashboard-19.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/stripe-dashboard-19.png
--------------------------------------------------------------------------------
/src/assets/images/stripe-dashboard-2-dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/stripe-dashboard-2-dark.png
--------------------------------------------------------------------------------
/src/assets/images/stripe-dashboard-2-light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/stripe-dashboard-2-light.png
--------------------------------------------------------------------------------
/src/assets/images/stripe-dashboard-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/stripe-dashboard-2.png
--------------------------------------------------------------------------------
/src/assets/images/stripe-dashboard-20.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/stripe-dashboard-20.png
--------------------------------------------------------------------------------
/src/assets/images/stripe-dashboard-21.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/stripe-dashboard-21.png
--------------------------------------------------------------------------------
/src/assets/images/stripe-dashboard-22.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/stripe-dashboard-22.png
--------------------------------------------------------------------------------
/src/assets/images/stripe-dashboard-3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/stripe-dashboard-3.png
--------------------------------------------------------------------------------
/src/assets/images/stripe-dashboard-4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/stripe-dashboard-4.png
--------------------------------------------------------------------------------
/src/assets/images/stripe-dashboard-5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/stripe-dashboard-5.png
--------------------------------------------------------------------------------
/src/assets/images/stripe-dashboard-6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/stripe-dashboard-6.png
--------------------------------------------------------------------------------
/src/assets/images/stripe-dashboard-7.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/stripe-dashboard-7.png
--------------------------------------------------------------------------------
/src/assets/images/stripe-dashboard-8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/stripe-dashboard-8.png
--------------------------------------------------------------------------------
/src/assets/images/stripe-dashboard-9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/stripe-dashboard-9.png
--------------------------------------------------------------------------------
/src/assets/images/stripe-dashboard-thumbnail-dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/stripe-dashboard-thumbnail-dark.png
--------------------------------------------------------------------------------
/src/assets/images/stripe-dashboard-thumbnail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/stripe-dashboard-thumbnail.png
--------------------------------------------------------------------------------
/src/assets/images/stripe-desktop-hero.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/stripe-desktop-hero.png
--------------------------------------------------------------------------------
/src/assets/images/stripe-mobile-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/stripe-mobile-1.png
--------------------------------------------------------------------------------
/src/assets/images/stripe-mobile-10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/stripe-mobile-10.png
--------------------------------------------------------------------------------
/src/assets/images/stripe-mobile-11.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/stripe-mobile-11.png
--------------------------------------------------------------------------------
/src/assets/images/stripe-mobile-12.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/stripe-mobile-12.png
--------------------------------------------------------------------------------
/src/assets/images/stripe-mobile-13.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/stripe-mobile-13.png
--------------------------------------------------------------------------------
/src/assets/images/stripe-mobile-14.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/stripe-mobile-14.png
--------------------------------------------------------------------------------
/src/assets/images/stripe-mobile-15.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/stripe-mobile-15.png
--------------------------------------------------------------------------------
/src/assets/images/stripe-mobile-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/stripe-mobile-2.png
--------------------------------------------------------------------------------
/src/assets/images/stripe-mobile-3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/stripe-mobile-3.png
--------------------------------------------------------------------------------
/src/assets/images/stripe-mobile-4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/stripe-mobile-4.png
--------------------------------------------------------------------------------
/src/assets/images/stripe-mobile-5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/stripe-mobile-5.png
--------------------------------------------------------------------------------
/src/assets/images/stripe-mobile-6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/stripe-mobile-6.png
--------------------------------------------------------------------------------
/src/assets/images/stripe-mobile-7.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/stripe-mobile-7.png
--------------------------------------------------------------------------------
/src/assets/images/stripe-mobile-8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/stripe-mobile-8.png
--------------------------------------------------------------------------------
/src/assets/images/stripe-mobile-9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/stripe-mobile-9.png
--------------------------------------------------------------------------------
/src/assets/images/stripe-mobile-hero.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/stripe-mobile-hero.png
--------------------------------------------------------------------------------
/src/assets/images/stripe-mobile-thumbnail-dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/stripe-mobile-thumbnail-dark.png
--------------------------------------------------------------------------------
/src/assets/images/stripe-mobile-thumbnail-light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/stripe-mobile-thumbnail-light.png
--------------------------------------------------------------------------------
/src/assets/images/subway-1-crop.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/subway-1-crop.png
--------------------------------------------------------------------------------
/src/assets/images/subway-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/subway-1.jpg
--------------------------------------------------------------------------------
/src/assets/images/subway-2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/subway-2.jpg
--------------------------------------------------------------------------------
/src/assets/images/subway-3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/subway-3.jpg
--------------------------------------------------------------------------------
/src/assets/images/subway-4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/subway-4.jpg
--------------------------------------------------------------------------------
/src/assets/images/subway-5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/subway-5.jpg
--------------------------------------------------------------------------------
/src/assets/images/subway-6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/subway-6.jpg
--------------------------------------------------------------------------------
/src/assets/images/subway-7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/subway-7.jpg
--------------------------------------------------------------------------------
/src/assets/images/subway-8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/subway-8.jpg
--------------------------------------------------------------------------------
/src/assets/images/subway-9.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/subway-9.jpg
--------------------------------------------------------------------------------
/src/assets/images/tables-0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/tables-0.png
--------------------------------------------------------------------------------
/src/assets/images/tables-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/tables-1.png
--------------------------------------------------------------------------------
/src/assets/images/tables-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/tables-2.png
--------------------------------------------------------------------------------
/src/assets/images/tables-3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/tables-3.png
--------------------------------------------------------------------------------
/src/assets/images/tables-4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/tables-4.png
--------------------------------------------------------------------------------
/src/assets/images/tables-5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/tables-5.png
--------------------------------------------------------------------------------
/src/assets/images/tables-6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/tables-6.png
--------------------------------------------------------------------------------
/src/assets/images/tinydata-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/tinydata-1.png
--------------------------------------------------------------------------------
/src/assets/images/tinydata-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/tinydata-2.png
--------------------------------------------------------------------------------
/src/assets/images/tinydata-3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/tinydata-3.png
--------------------------------------------------------------------------------
/src/assets/images/tinydata-4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/tinydata-4.png
--------------------------------------------------------------------------------
/src/assets/images/tinydata-5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/tinydata-5.png
--------------------------------------------------------------------------------
/src/assets/images/tinydata-6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/tinydata-6.png
--------------------------------------------------------------------------------
/src/assets/images/ui-density-01.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/ui-density-01.jpg
--------------------------------------------------------------------------------
/src/assets/images/ui-density-02.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/ui-density-02.jpg
--------------------------------------------------------------------------------
/src/assets/images/ui-density-03.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/ui-density-03.jpg
--------------------------------------------------------------------------------
/src/assets/images/ui-density-04.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/ui-density-04.jpg
--------------------------------------------------------------------------------
/src/assets/images/ui-density-04.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/ui-density-04.png
--------------------------------------------------------------------------------
/src/assets/images/ui-density-05.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/ui-density-05.png
--------------------------------------------------------------------------------
/src/assets/images/ui-density-06.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/ui-density-06.jpg
--------------------------------------------------------------------------------
/src/assets/images/ui-density-07.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/ui-density-07.jpg
--------------------------------------------------------------------------------
/src/assets/images/ui-density-08.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/ui-density-08.jpg
--------------------------------------------------------------------------------
/src/assets/images/ui-density-09.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/ui-density-09.jpg
--------------------------------------------------------------------------------
/src/assets/images/ui-density-10.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/ui-density-10.gif
--------------------------------------------------------------------------------
/src/assets/images/ui-density-11.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/ui-density-11.jpg
--------------------------------------------------------------------------------
/src/assets/images/ui-density-12.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/ui-density-12.jpg
--------------------------------------------------------------------------------
/src/assets/images/ui-density-13.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/ui-density-13.jpg
--------------------------------------------------------------------------------
/src/assets/images/ui-density-14.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/ui-density-14.jpg
--------------------------------------------------------------------------------
/src/assets/images/ui-density-15.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/ui-density-15.jpg
--------------------------------------------------------------------------------
/src/assets/images/variable-1.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/variable-1.gif
--------------------------------------------------------------------------------
/src/assets/images/variablefonts-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/variablefonts-1.png
--------------------------------------------------------------------------------
/src/assets/images/virtue-01.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/virtue-01.jpg
--------------------------------------------------------------------------------
/src/assets/images/virtue-02.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/virtue-02.jpg
--------------------------------------------------------------------------------
/src/assets/images/virtue-03.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/virtue-03.jpg
--------------------------------------------------------------------------------
/src/assets/images/wayfinding-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/wayfinding-1.jpg
--------------------------------------------------------------------------------
/src/assets/images/wayfinding-2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/wayfinding-2.jpg
--------------------------------------------------------------------------------
/src/assets/images/wayfinding-3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/wayfinding-3.jpg
--------------------------------------------------------------------------------
/src/assets/images/wayfinding-4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/wayfinding-4.jpg
--------------------------------------------------------------------------------
/src/assets/images/wayfinding-5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/wayfinding-5.png
--------------------------------------------------------------------------------
/src/assets/images/website-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/website-1.jpg
--------------------------------------------------------------------------------
/src/assets/images/working-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/working-1.jpg
--------------------------------------------------------------------------------
/src/assets/images/workshop-0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/workshop-0.png
--------------------------------------------------------------------------------
/src/assets/images/workshop-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/workshop-1.png
--------------------------------------------------------------------------------
/src/assets/images/workshop-2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/workshop-2.jpg
--------------------------------------------------------------------------------
/src/assets/images/workshop-3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/workshop-3.jpg
--------------------------------------------------------------------------------
/src/assets/images/wsj-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/wsj-1.jpg
--------------------------------------------------------------------------------
/src/assets/images/wsj-2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/wsj-2.jpg
--------------------------------------------------------------------------------
/src/assets/images/wsj-3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/wsj-3.jpg
--------------------------------------------------------------------------------
/src/assets/images/wsj-4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/wsj-4.jpg
--------------------------------------------------------------------------------
/src/assets/images/wsj-4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/wsj-4.png
--------------------------------------------------------------------------------
/src/assets/images/wsj-5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/wsj-5.jpg
--------------------------------------------------------------------------------
/src/assets/images/wsj-6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/wsj-6.jpg
--------------------------------------------------------------------------------
/src/assets/images/wsj-7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/wsj-7.jpg
--------------------------------------------------------------------------------
/src/assets/images/wsj-8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/wsj-8.jpg
--------------------------------------------------------------------------------
/src/assets/images/wsj-bg.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/wsj-bg.jpg
--------------------------------------------------------------------------------
/src/assets/images/wsjfonts-0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/wsjfonts-0.png
--------------------------------------------------------------------------------
/src/assets/images/wsjfonts-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/wsjfonts-1.png
--------------------------------------------------------------------------------
/src/assets/images/wsjfonts-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/wsjfonts-2.png
--------------------------------------------------------------------------------
/src/assets/images/wsjfonts-3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/wsjfonts-3.png
--------------------------------------------------------------------------------
/src/assets/images/wsjfonts-4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/wsjfonts-4.png
--------------------------------------------------------------------------------
/src/assets/images/wsjfonts-5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/wsjfonts-5.png
--------------------------------------------------------------------------------
/src/assets/images/wsjfonts-6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/wsjfonts-6.png
--------------------------------------------------------------------------------
/src/assets/images/wsjhomepage.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/wsjhomepage.jpg
--------------------------------------------------------------------------------
/src/assets/images/wsjmag-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/wsjmag-1.jpg
--------------------------------------------------------------------------------
/src/assets/images/wsjmag-2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/wsjmag-2.jpg
--------------------------------------------------------------------------------
/src/assets/images/wsjmag-cover.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/images/wsjmag-cover.jpg
--------------------------------------------------------------------------------
/src/assets/js/intuition.js:
--------------------------------------------------------------------------------
1 | const updateResult = () => {
2 | const results = document.querySelector(".intuition--results .intuition--value");
3 |
4 | const intuition = document.querySelector('#intuition').value;
5 | const data = document.querySelector('#data').value;
6 | const correct = Math.pow(10, document.querySelector('#correct').value);
7 | const cost = Math.pow(10, document.querySelector('#cost').value);
8 |
9 |
10 | results.innerHTML = ((intuition - data) * ( correct) + (cost)).toFixed(2);
11 | }
12 |
13 | window.addEventListener("DOMContentLoaded", () => {
14 | document.querySelectorAll('input').forEach((element) => {
15 | element.addEventListener("change", updateResult)
16 | })
17 | })
--------------------------------------------------------------------------------
/src/assets/pages/pages.json:
--------------------------------------------------------------------------------
1 | {
2 | "layout": "layouts/post.html"
3 | }
--------------------------------------------------------------------------------
/src/assets/projects/projects.json:
--------------------------------------------------------------------------------
1 | {
2 | "layout": "layouts/project.html",
3 | "tags": ["projects"],
4 | "activePage": "projects"
5 | }
--------------------------------------------------------------------------------
/src/assets/reading/1491.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: 1491
3 | subtitle: New Revelations of the Americas Before Columbus
4 | date: 2018-05-22
5 | author: Charles Mann
6 | cover: /images/book-5.jpg
7 | ---
8 |
9 | I really enjoyed this book. I gave it a shot after doing half of “Enlightenment Now” and half of “Skin in the Game;” both extremely self-aggrandizing and dripping with ego. 1491 is neither of those things. Mann does an admirable job of telling a wide array of stories about the pre-Columbus Americas. He puts his ideas into historic and contemporary context, and doesn’t condescend or ignore the lay reader. His theories about Indians (I still have a hard time with the fact that he insists on calling them Indians) are extremely novel (to me), but don’t seem extreme. Overall, solid historic non-fiction.
--------------------------------------------------------------------------------
/src/assets/reading/21-lessons-for-the-21st-century.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: 21 Lessons for the 21st Century
3 | author: Yuval Noah Harari
4 | date: 2019-03-20
5 | cover: /images/book-21-lessons.jpg
6 | ---
7 |
8 | This one wasn't as good as _Sapiens_, but was enjoyable nonetheless. Here's one of my favorite passages:
9 |
10 | > Humans were always far better at inventing tools than using them wisely. It is easier to manipulate a river by building a dam than it is to predict all the complex consequences this will have for the wider ecological system. Similarly, it will be easier to redirect the flow of our minds than to divine what that will do to our personal psychology or to our social systems.
--------------------------------------------------------------------------------
/src/assets/reading/america-colossus.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: American Colossus
3 | subtitle: 'The Triumph of Capitalism, 1865-1900'
4 | date: 2020-07-19
5 | author: H.W. Brands
6 | cover: /images/book-american-colossus.jpg
7 | ---
8 |
9 | It's definitely worthwhile spending some time understanding the growth and evolution of capitalism, especially as it pertains to the emergence of the United States as a world power. This book is full of historical facts, mostly organized around the "great men" of the gilded age: John Astor, J.P. Morgan, John Rockafeller Andrew Carnegie, etc. etc. But I really struggled to stay engaged with the information that the book offered. It stuck primary to the what, who, and when, and carefully tiptoed around the why.
10 |
11 | I guess I'm going to have to _Das Kapital_.
--------------------------------------------------------------------------------
/src/assets/reading/bad-blood.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: 'Bad Blood'
3 | subtitle: Secrets and Lies in a Silicon Valley Startup
4 | date: 2018-06-10
5 | author: John Carreyrou
6 | cover: /images/book-7.jpg
7 | ---
8 |
9 | This one’s a really good page-turner. It follows the course of Theranos from being a twinkle in Elizabeth Holmes’ eye all the way up to early 2018. It is **amazing** just how much deception and fraud was going on at the highest levels of this company, and how so many people were willing to turn a blind eye to it. Carreyrou’s writing is super straightforward, and while he is a player in the story, he comes across pretty impartial in the whole matter.
10 |
11 | Bonus: you’ll get the Taylor Swift song stuck in your head every time you read.
12 |
13 |
--------------------------------------------------------------------------------
/src/assets/reading/ball-lightning.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: Ball Lightning
3 | date: 2018-12-10
4 | author: Cixin Liu
5 | cover: /images/book-15.jpg
6 | ---
7 |
8 | *Three-Body Problem* was one of my favorite reads of 2017. The scope of the trilogy, the twists and turns of logic and narrative, the unique perspective of the author; *Three-Body Problem* had everything I love in hard science fiction. I went into *Ball Lightning* expecting the same experience, or maybe something close to it. I was a little disappointed.
9 |
10 | What I like most about hard sci-fi is that it doesn't lean on suspension of disbelief as much as other genres of sci-fi and fantasy. *Ball Lightning* has a lot of hand-waving moments that skirt the constraints of reality, making it harder for to be invests in the characters or the world Cixin builds.
--------------------------------------------------------------------------------
/src/assets/reading/brave-new-work.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: Brave New Work
3 | subtitle: Are You Ready to Reinvent Your Organization?
4 | author: Aaron Dignan
5 | date: 2019-05-17
6 | cover: /images/book-brave-new-work.jpg
7 | ---
8 |
9 | I got the chance to work with Aaron when he was leading a company called Undercurrent. His approach to work was so unique, and so clearly articulated, that I can still detect his impact on the folks he employed, 5 years after Undercurrent ceased to exist.
10 |
11 | It was really nice to read all of Aaron's advice summed up in a simple package. I use a lot of these techniques in my day-to-day: consent-driven decision making, inclusive meetings, and managing in the present. The schools of thought that created these concepts are also fascinating; if you get a chance, do some further reading based on the references in the book.
--------------------------------------------------------------------------------
/src/assets/reading/dark-matter.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: Dark Matter
3 | author: Blake Crouch
4 | date: 2020-03-05
5 | cover: /images/book-dark-matter.jpg
6 | ---
7 |
8 | After reading and enjoying [_Recursion_](/reading/recursion), I decided to give _Dark Matter_ a shot. It has many of the same hallmarks; twisting labyrinths of plotlines woken together by a central technological concept, creating tension for the main characters in incredibly personal ways. I think _Recursion_ is the better book, though. _Dark Matter_'s main character is a little flat, and his physical relationship with his wife is a little too commonly exploited for plot padding. Overall, a solid breezy read, but nothing quite as memorable as the most recent incarnation.
--------------------------------------------------------------------------------
/src/assets/reading/deception-point.md:
--------------------------------------------------------------------------------
1 | ---
2 |
3 | title: Deception Point
4 | author: Dan Brown
5 | date: 2023-08-14
6 | cover: /images/book-deception-point.jpg
7 | ---
8 |
9 | I picked this up because of my fond memories of reading _The DaVinci Code_ and _Angels and Demons_ as a teen. However, it fell significantly short of expectations. The characters came across as flat and uninspired, lacking the depth and complexity that would make the reader invest in their journeys.
10 |
11 | The narrative was bogged down by lengthy exposition, which not only disrupted the pace but also felt like a tedious lecture at times. The plot, while aiming for a grand reveal, was overwrought and its predictability sapped the thrill out of the unfolding mystery.
--------------------------------------------------------------------------------
/src/assets/reading/dreaming-the-beatles.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: 'Dreaming the Beatles'
3 | subtitle: The Love Story of One Band and the Whole World
4 | date: 2018-01-04
5 | author: Rob Sheffield
6 | cover: /images/book-0.jpg
7 | ---
8 |
9 | I’ve consumed a lot of Beatles-related media, and this book is the closest to a relatable version of the Story as I’ve found. It does an especially good job of proving the Beatles relevant to 2018.
10 |
11 | Ancillary benefit: it’s just really good music writing. We’ve all read a lot of bad music writing in our lives, so you understand why this is a big deal.
--------------------------------------------------------------------------------
/src/assets/reading/endurance.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: Endurance
3 | subtitle: Shackleton's Incredible Voyage
4 | date: 2019-04-24
5 | author: Alfred Lansing
6 | cover: /images/book-endurance.jpg
7 | ---
8 |
9 | Shackleton and his team went through an incredible ordeal. It's impossible to imagine what it's like to be completely stranded for three years in one of the harshest environments on earth, thousands of miles from the scraps of civilization. Not a single crew member died. How is this possible? Beyond that, the crew kept meticulous notes, even took photos of their ship being crushed by the ice.
10 |
11 | An amazing fact: the expedition lasted the length of the first World War. The crew learned about it all retroactively. After all they went through, they returned to a completely different world.
--------------------------------------------------------------------------------
/src/assets/reading/exhalation.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: Exhalation
3 | subtitle: Stories
4 | author: Ted Chiang
5 | date: 2019-05-17
6 | cover: /images/book-exhalation.jpg
7 | favorite: true
8 | ---
9 |
10 | Black Mirror x Borges — great short stories that explore some traditionally sci-fi concepts from more of a prodding, philosophical standpoint. The best part about Chiang's stories are the feels ... instead of being Borges-style think pieces, you get lots of emotional depth. Especially with the parrot.
--------------------------------------------------------------------------------
/src/assets/reading/going-to-pieces-without-falling-apart.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: Going to Pieces Without Falling Apart
3 | subtitle: A Buddhist Perspective on Wholeness
4 | author: Mark Epstein
5 | cover: /images/book-going-to-pieces.jpg
6 | date: 2020-11-21
7 | ---
8 |
9 | I'm always hungry for more Buddhist writing. I feel like I haven't quite found the right reliable source for self-guided study, so I'll often pick up books purely on the basis of being vaguely about Buddhism. This book had a lot of great material to offer — specifically around the concept of nothingness, emptiness, and personal development within that space. However, the framing of the journey to understanding the self within the context of a sexual experience (the last chapter is about orgasms) was a little hard to reckon with.
--------------------------------------------------------------------------------
/src/assets/reading/good-services.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: Good Services
3 | subtitle: How to design services that work
4 | date: 2020-04-20
5 | author: Lou Downe
6 | cover: /images/book-good-services.jpg
7 | favorite: true
8 | ---
9 |
10 | _Good Services_ is a straightforward, to-the-point guide to designing services to provide the best outcomes for their users. The book is structured around 15 principles for service design; the author, Lou Downe, developed the principles in practice as the pioneer of service design in the UK government. This approach led [UK.gov](https://www.gov.uk/) to be the standard of excellence by which all government services websites are measured.
11 |
12 | Bonus: the book is very well designed. I read mostly on a Kindle these days, so it's nice to spend some time with a really solid piece of paper and ink.
--------------------------------------------------------------------------------
/src/assets/reading/good-to-great.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: Good to Great
3 | subtitle: Why Some Companies Make the Leap ... and Others Don't
4 | author: James C. Collins
5 | date: 2018-07-04
6 | cover: /images/book-good-to-great.jpg
7 | ---
8 |
9 | A decent overview of some of the strategies that companies have taken to accelerate their growth and achieve success. Includes some interesting case studies of companies like Fannie Mae, Circuit City, and Wells Fargo; however, given the fact that all those companies eventually found themselves in hot water, it's easy to call Collins' assessment into question.
10 |
11 | Level Five Leadership, Hedgehog vs. Fox, the Stockdale Paradox, all of these are good mental models to apply to business. All of them are easy to Google, and I'd reckon that's just as good as reading this book.
--------------------------------------------------------------------------------
/src/assets/reading/hooked.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: Hooked
3 | subtitle: How to Build Habit-Forming Products
4 | author: Nir Eyal
5 | date: 2020-02-03
6 | cover: /images/book-hooked.jpg
7 | favorite: false
8 | ---
9 |
10 | Hooked has gotten a lot of play in product-land since it was published in 2014. I'm always trying to understand the mindset of the product folks I work with, so I figured it would be a good read.
11 |
12 | The book left me feeling icky. For most of the book, Eyal harmlessly outlines the basics of the reward pattens of behavioral psych with a practical eye towards application in digital products. The part that made me see red was Eyal’s emphasis of variable reward as the key to inducing habit; while maybe defensible in the context of the book, variable rewards are squarely in the “catnip for sociopaths” category.
--------------------------------------------------------------------------------
/src/assets/reading/leviathan-wakes.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: Leviathan Wakes
3 | subtitle: 'The Expanse #1'
4 | author: James S. A. Corey
5 | date: 2019-03-30
6 | cover: /images/book-leviathan-wakes.jpg
7 | ---
8 |
9 | I tried to get Sasha to watch the TV show with me, but failed. So I started to read the book instead. I haven't read any more of the 'Expanse' series, so it's difficult to assess where the hype comes from. In part, I think it's a blending of genres; there's the typical science fiction bent, but there's also a bit of noir, and a dash of post-apocalyptic distopia.
10 |
11 | The whole book revolves around a mystery. Oddly, the mystery is solved at the end of the second act. This means the ending of the book feels like a foregone conclusion.
--------------------------------------------------------------------------------
/src/assets/reading/on-grand-strategy.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: On Grand Strategy
3 | date: 2018-06-15
4 | author: John Lewis Gaddis
5 | cover: /images/book-8.jpg
6 | ---
7 |
8 | I honestly can’t remember why I picked this up: maybe an Amazon recommendation, maybe a reference somewhere in management book recommendations. I read it in the middle of my tenure at The Wall Street Journal, probably hoping to pick up some tips for navigating complex political workplaces.
9 |
10 | Gaddis spins a series of essays on ‘grand’ strategy, specifically western white male strategy (with occasional references to Sun Tzu). His writing tends towards stream-of-consciousness, and tends to harp on the same few themes of realism and focus. This isn’t a strong recommendation, unless you really need more motivation to read Machiavelli.
--------------------------------------------------------------------------------
/src/assets/reading/pandemic.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: Pandemic
3 | subtitle: 'The Extinction Files #1'
4 | author: A. G. Riddle
5 | date: 2019-10-10
6 | cover: /images/book-pandemic.jpg
7 | ---
8 |
9 | I picked this up looking for a break after reading a few heavy non-fiction titles. It delivered exactly that: an entertaining read with enough science to keep my brain busy. Specifically, the book includes some ideas from epidemiology, as its heroes have day jobs in agencies like the Centers for Disease Control. The conclusion of the book strays a little bit too far into Dan Brown conspiracy fodder, which means it was ultimately pretty forgettable.
--------------------------------------------------------------------------------
/src/assets/reading/piranesi.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: Piranesi
3 | author: Susanna Clarke
4 | date: 2020-12-15
5 | cover: /images/book-piranesi.jpg
6 | favorite: true
7 | ---
8 |
9 | Wow. I picked up _Piranesi_ on a recommendation from the almighty algorithm, desparate for a read that wasn't historical nonfiction or standard-fare sci-fi. The book defies any genre description, other than maybe "mythological psychological fantasy fiction," but even that is pretty misleading. It's a great story, unusual in its willingness to leave the reader feeling uncertain and disoriented. It's a short, easy read, and incredibly memorable.
--------------------------------------------------------------------------------
/src/assets/reading/reading.11tydata.json:
--------------------------------------------------------------------------------
1 | {
2 | "layout": "layouts/book.html",
3 | "tags": ["reading"],
4 | "activePage": "reading"
5 | }
6 |
--------------------------------------------------------------------------------
/src/assets/reading/shanzhai.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: Shanzhai
3 | subtitle: Deconstruction in Chinese
4 | date: 2019-12-11
5 | author: Byung-Chul Han and Philippa Hurd
6 | cover: /images/book-shanzhai.jpg
7 | ---
8 |
9 | Such a cool thing to read about: concepts that we take for granted like originality, authorship, and duplication are understood entirely different in East Asia. I wonder if it's possible it is to maintain a truly global marketplace of both ideas and goods when there are some things (like art or literature) which are valued so totally differently by different people. In the west, duplicating something removes all value from the end result, whereas in China a duplicate is often more valuable than the original. Such a completely different way of understanding creativity — do you think it's possible to adopt this viewpoint as an outsider?
10 |
--------------------------------------------------------------------------------
/src/assets/reading/the-black-swan.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: The Black Swan
3 | subtitle: The Impact of the Highly Improbable
4 | author: Nassim Taleb
5 | date: 2019-06-20
6 | cover: /images/book-black-swan.jpg
7 | ---
8 |
9 | I have a love-hate relationship with Taleb. His writing is dripping with ego. The book might as well be called _I Was Right,_ since that's the subject most of the time. But I have to hand it to Taleb, the way he tends to be right about things is interesting. I really resonate with the sentiment that people tend to take shortcuts and overlook data when the goal is certainty. Particularly this quote:
10 |
11 | > The more information you give someone, the more hypotheses they will formulate along the way, and the worse off they will be. They see more random noise and mistake it for information.
--------------------------------------------------------------------------------
/src/assets/reading/the-fifth-season.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: The Fifth Season
3 | subtitle: 'The Broken Earth #1'
4 | date: 2019-03-05
5 | author: N.K. Jemisin
6 | cover: /images/book-the-fifth-season.jpg
7 | ---
8 |
9 | I picked up this book after seeing it won the Hugo Award in 2016. I love sci-fi, but had never really gotten into fantasy. This book promised to be a bridge between the two.
10 |
11 | Jemisin builds a really fascinating world throughout the book. I enjoyed the way she avoids a lot of typical fantasy tropes, and her storytelling techniques work really well. However, the story suffers from a really common symptom of fantasy: the god-like character who is all powerful and can theoretically solve any crisis instantly without much trouble. This trope makes conflict much less dramatic, and ultimately takes the suspense out of the story.
--------------------------------------------------------------------------------
/src/assets/reading/the-foundation-trilogy.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: 'The Foundation Trilogy'
3 | date: 2018-03-25
4 | author: Isaac Asimov
5 | cover: /images/book-3.jpg
6 | ---
7 |
8 | It won the Hugo Award for “Best All-Time Series” in 1966, so I figured I’d give it a read. Boy howdy, is it a good science fiction.
9 |
10 | If you’ve read Three Body Problem, you’ll get a lot of the same themes: lots of logic twists and loops, lots of time and space covered. The characters that Asimov creates are super-neat, though; they have a lot of depth to them, even when he spins one up for a chapter or two.
11 |
12 | You can sense the author’s interest in the series waxing and waning throughout, but even at it’s most “etc etc stuff happened etc etc” it’s a nice read. When it really clips, it’s un-put-down-able.
--------------------------------------------------------------------------------
/src/assets/reading/the-quiet-americans.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: The Quiet Americans
3 | subtitle: Four CIA Spies at the Dawn of the Cold War - a Tragedy in Three Acts
4 | author: Scott Anderson
5 | date: 2020-10-30
6 | cover: /images/book-the-quiet-americans.jpg
7 | ---
8 |
9 | It's great to read about the beginnings of the CIA. I had absolutely zero previous knowledge the of origins of the agency going in; the author does a great job of placing the characters in the context of the postwar years. There are parts of the book that read like a gripping spy thriller, highlighting the skill and ingenuity of the four men profiled. However, the characters don't interact in the way I was expecting. The book reads less like a cohesive narrative, and more like the stems of 4 separate biographies spliced together into a single volume.
--------------------------------------------------------------------------------
/src/assets/reading/thinking-fast-and-slow.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: Thinking, Fast and Slow
3 | author: Daniel Kahneman
4 | date: 2019-09-01
5 | cover: /images/book-thinking-fast-and-slow.jpg
6 | favorite: true
7 | ---
8 |
9 | It's hard to overstate the value of understanding bias. This book is a must-read: Kahneman has such a talent for unraveling the counter-intuitive nature of bias, heuristics, and the way people make decisions. His research with Amos Tversky (called _prosepect theory_) has influenced economics in ways I can't understand, but the effect is recognizable when you book a hotel online (scarcity bias at play) or check out on Amazon.
10 |
11 | The sections of the book on expert intuition were especially relevant at the time I read them, and helped me to write an essay called [Intuition vs. Data](/writing/intuition/).
--------------------------------------------------------------------------------
/src/assets/reading/why-buddhism-is-true.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: Why Buddhism is True
3 | date: 2018-03-08
4 | author: Robert Wright
5 | cover: /images/book-2.jpg
6 | favorite: true
7 | ---
8 |
9 | This was one of my favorite reads in a long time. In it, Wright connects some of the ideas and practices of modern/secular/Western Buddhism to the science of well-being. His writing is straightforward and crystal-clear. He connects his ideas to his own meditation practice, which in turn helped me continue my own practice.
10 |
11 | The downside to Wright’s version of Buddhism is that it is narrow and personalized to the author’s experience as a Westerner. To me, part of the appeal of Buddhism is in its mystery, the fundamentally non-intuitive parts, the deftness with which it transcends Western logic and orderliness.
--------------------------------------------------------------------------------
/src/assets/speaking/speaking.11tydata.json:
--------------------------------------------------------------------------------
1 | {
2 | "layout": "layouts/default.html",
3 | "tags": ["speaking"],
4 | "activePage": "speaking"
5 | }
--------------------------------------------------------------------------------
/src/assets/tokens/dummy.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ilikescience/mhs11/5a42d6c74ecd49cd7d2c6fe7dbcc579c2eed5e7c/src/assets/tokens/dummy.json
--------------------------------------------------------------------------------
/src/assets/writing/google-search.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: What google search shows us about the future of product design
3 | og:
4 | title: What google search shows us about the future of product design
5 | description: An article on UX Booth
6 | date: 2019-09-10
7 | tags: [design]
8 | external: true
9 | external_url: https://www.uxbooth.com/articles/what-google-search-shows-us-about-future-of-product-design/
10 | ---
11 |
12 | You can read this article on [UX Booth](https://www.uxbooth.com/articles/what-google-search-shows-us-about-future-of-product-design/).
--------------------------------------------------------------------------------
/src/assets/writing/index.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: layouts/home.html
3 | eleventyExcludeFromCollections: true
4 | ---
5 |
6 | {% assign posts = collections.writing | reverse %}
7 | {% assign lastDate = "" %}
8 | {% for post in posts %}
9 | {% assign postYear = post.date | date: "%Y" %}
10 | {% if postYear != lastDate %}
11 | {% if lastDate != "" %}
12 |
13 | {% endif %}
14 |