├── .babelrc.js ├── .gitignore ├── .nojekyll ├── CNAME ├── README.md ├── components ├── BlockLink.js ├── Container.js ├── Flex.js └── PostHeader.js ├── docs ├── .nojekyll ├── CNAME ├── _next │ └── static │ │ ├── 3CQjeo_UXtpFrWg8sBpOH │ │ └── pages │ │ │ ├── _app.js │ │ │ ├── _error.js │ │ │ ├── advice-on-change.js │ │ │ ├── chaos-design.js │ │ │ ├── common-vim.js │ │ │ ├── component-styling-api.js │ │ │ ├── components-ai.js │ │ │ ├── design-reading.js │ │ │ ├── design-systems.js │ │ │ ├── developing-ui.js │ │ │ ├── dogma.js │ │ │ ├── essential-vim-plugins.js │ │ │ ├── getting-critiqued.js │ │ │ ├── good-css.js │ │ │ ├── index.js │ │ │ ├── learning-css.js │ │ │ ├── line-height.js │ │ │ ├── living-with-jxnblk.js │ │ │ ├── mobile-first-css.js │ │ │ ├── randoma11y.js │ │ │ ├── reading-material.js │ │ │ ├── scalable-css.js │ │ │ ├── the-veil-of-ignorance.js │ │ │ ├── too-many-tools.js │ │ │ ├── vim-as-a-design-tool.js │ │ │ ├── web-design-procss.js │ │ │ ├── webfonts.js │ │ │ ├── what-are-classes-for.js │ │ │ └── what-is-css-for.js │ │ ├── E8defA3CZu3RQS651Mxt5 │ │ └── pages │ │ │ ├── _app.js │ │ │ ├── _error.js │ │ │ ├── advice-on-change.js │ │ │ ├── chaos-design.js │ │ │ ├── common-vim.js │ │ │ ├── component-styling-api.js │ │ │ ├── components-ai.js │ │ │ ├── design-reading.js │ │ │ ├── design-systems.js │ │ │ ├── developing-ui.js │ │ │ ├── dogma.js │ │ │ ├── essential-vim-plugins.js │ │ │ ├── getting-critiqued.js │ │ │ ├── good-css.js │ │ │ ├── index.js │ │ │ ├── learning-css.js │ │ │ ├── line-height.js │ │ │ ├── living-with-jxnblk.js │ │ │ ├── mobile-first-css.js │ │ │ ├── randoma11y.js │ │ │ ├── reading-material.js │ │ │ ├── scalable-css.js │ │ │ ├── the-veil-of-ignorance.js │ │ │ ├── too-many-tools.js │ │ │ ├── vim-as-a-design-tool.js │ │ │ ├── web-design-procss.js │ │ │ ├── webfonts.js │ │ │ ├── what-are-classes-for.js │ │ │ └── what-is-css-for.js │ │ ├── asg_WsY94HcFhQa3N-sAR │ │ └── pages │ │ │ ├── _app.js │ │ │ ├── _error.js │ │ │ ├── advice-on-change.js │ │ │ ├── chaos-design.js │ │ │ ├── common-vim.js │ │ │ ├── component-styling-api.js │ │ │ ├── components-ai.js │ │ │ ├── design-reading.js │ │ │ ├── design-systems.js │ │ │ ├── developing-ui.js │ │ │ ├── dogma.js │ │ │ ├── essential-vim-plugins.js │ │ │ ├── getting-critiqued.js │ │ │ ├── good-css.js │ │ │ ├── index.js │ │ │ ├── learning-css.js │ │ │ ├── line-height.js │ │ │ ├── living-with-jxnblk.js │ │ │ ├── mobile-first-css.js │ │ │ ├── randoma11y.js │ │ │ ├── reading-material.js │ │ │ ├── scalable-css.js │ │ │ ├── the-veil-of-ignorance.js │ │ │ ├── too-many-tools.js │ │ │ ├── vim-as-a-design-tool.js │ │ │ ├── web-design-procss.js │ │ │ ├── webfonts.js │ │ │ ├── what-are-classes-for.js │ │ │ └── what-is-css-for.js │ │ ├── chunks │ │ ├── 0.js │ │ ├── 0.js.map │ │ └── commons.5d95a14873fce403f456.js │ │ ├── development │ │ ├── dll │ │ │ └── dll_2011977376de5c4d4cfb.js │ │ └── pages │ │ │ ├── _app.js │ │ │ ├── _app.js.map │ │ │ ├── _error.js │ │ │ ├── _error.js.map │ │ │ ├── chaos-design.js.map │ │ │ ├── component-styling-api.js.map │ │ │ ├── components-ai.js.map │ │ │ ├── design-reading.js │ │ │ ├── design-reading.js.map │ │ │ ├── getting-critiqued.js.map │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ └── next │ │ │ └── dist │ │ │ └── pages │ │ │ └── _error.js.map │ │ ├── fL05--B3MVOvdDL_16AkZ │ │ └── pages │ │ │ ├── _app.js │ │ │ ├── _error.js │ │ │ ├── advice-on-change.js │ │ │ ├── chaos-design.js │ │ │ ├── common-vim.js │ │ │ ├── component-styling-api.js │ │ │ ├── components-ai.js │ │ │ ├── design-reading.js │ │ │ ├── design-systems.js │ │ │ ├── developing-ui.js │ │ │ ├── dogma.js │ │ │ ├── essential-vim-plugins.js │ │ │ ├── getting-critiqued.js │ │ │ ├── good-css.js │ │ │ ├── index.js │ │ │ ├── learning-css.js │ │ │ ├── line-height.js │ │ │ ├── living-with-jxnblk.js │ │ │ ├── mobile-first-css.js │ │ │ ├── randoma11y.js │ │ │ ├── reading-material.js │ │ │ ├── scalable-css.js │ │ │ ├── the-veil-of-ignorance.js │ │ │ ├── too-many-tools.js │ │ │ ├── vim-as-a-design-tool.js │ │ │ ├── web-design-procss.js │ │ │ ├── webfonts.js │ │ │ ├── what-are-classes-for.js │ │ │ └── what-is-css-for.js │ │ ├── runtime │ │ ├── amp.js │ │ ├── amp.js.map │ │ ├── main-c29dd18b0819bc878f70.js │ │ ├── main.js │ │ ├── main.js.map │ │ ├── webpack-a79426b5e11f0ba5879d.js │ │ ├── webpack.js │ │ └── webpack.js.map │ │ └── webpack │ │ ├── 0048261267f994f36eee.hot-update.json │ │ ├── 011adccf8b2b349a6fb1.hot-update.json │ │ ├── 03dfd1bfe5f92ff1eb43.hot-update.json │ │ ├── 055aafe829831afb1e35.hot-update.json │ │ ├── 059467ac8041ddc2bbcd.hot-update.json │ │ ├── 0665b2d23a61b17576da.hot-update.json │ │ ├── 06cf66fd5c9cc5342823.hot-update.json │ │ ├── 070a1661d456f85ec19a.hot-update.json │ │ ├── 081dc4b46d8e922943cb.hot-update.json │ │ ├── 0840fd3a0566e86ccace.hot-update.json │ │ ├── 0b2d05c035186c35039d.hot-update.json │ │ ├── 0c3e9f8f9acfc5154b96.hot-update.json │ │ ├── 0d6d5a796dc71a29d3f2.hot-update.json │ │ ├── 0d9a3c2ca8d519a7a63f.hot-update.json │ │ ├── 0e2789eaa36923ad0168.hot-update.json │ │ ├── 0e4264db75dad4adae23.hot-update.json │ │ ├── 138a24132ff4bbaabc73.hot-update.json │ │ ├── 146f6461beb9b4baec0f.hot-update.json │ │ ├── 165cc22091608cff608b.hot-update.json │ │ ├── 172f6c268389c146d98b.hot-update.json │ │ ├── 1a33e8ffdd28dfeb1586.hot-update.json │ │ ├── 1aff77d355b618df2324.hot-update.json │ │ ├── 1b869bce634a8e698d11.hot-update.json │ │ ├── 1c2883db12da74be7aaf.hot-update.json │ │ ├── 1dbf55b075a2db8bc79f.hot-update.json │ │ ├── 1e67e8864d80752692cb.hot-update.json │ │ ├── 1e72cf97604c52d4fcce.hot-update.json │ │ ├── 1fceb218f779a63b2a01.hot-update.json │ │ ├── 1fe99719c04c9574a229.hot-update.json │ │ ├── 205de5e47da65287473c.hot-update.json │ │ ├── 213bb9d7de9517af72c8.hot-update.json │ │ ├── 22cebf36c805a75e5970.hot-update.json │ │ ├── 23de5ab3fb222b5ad892.hot-update.json │ │ ├── 24df7c37d47c0e080976.hot-update.json │ │ ├── 2556612c55798d315089.hot-update.json │ │ ├── 26ea9005daf1013bdf87.hot-update.json │ │ ├── 279afafcd5241f907f14.hot-update.json │ │ ├── 285d7e45f2cdf5876080.hot-update.json │ │ ├── 28ebc397900e960ae531.hot-update.json │ │ ├── 2aea372dab314cc06ef7.hot-update.json │ │ ├── 2eaa6ab20da174f4ef01.hot-update.json │ │ ├── 2f910f26c423deb19f8b.hot-update.json │ │ ├── 2f99119ffbda434dea40.hot-update.json │ │ ├── 2faa0a2d3d1949359d4e.hot-update.json │ │ ├── 302c2a712fb3ed0aff22.hot-update.json │ │ ├── 305cb3c91fc0afdc9767.hot-update.json │ │ ├── 306a273e2b69bbbf42da.hot-update.json │ │ ├── 30c00aff4c8116d64c15.hot-update.json │ │ ├── 31ed11f60ee8fd9c9293.hot-update.json │ │ ├── 3239bc830f8e8515d9a1.hot-update.json │ │ ├── 32bf4a4d04c5ea5671dd.hot-update.json │ │ ├── 34ac75a8276652681ba4.hot-update.json │ │ ├── 35e405a22a0ad58aca3a.hot-update.json │ │ ├── 364283d580da244d10bf.hot-update.json │ │ ├── 3671c8b23f8edd2182f5.hot-update.json │ │ ├── 36dc70a11a266c378c58.hot-update.json │ │ ├── 3915eec81d5f0b9e87b2.hot-update.json │ │ ├── 396cde3d69612f9fef65.hot-update.json │ │ ├── 3a00e418b172e0b20371.hot-update.json │ │ ├── 3a0f458a07f139be7e7e.hot-update.json │ │ ├── 3a32d53d551cfb6f6a7e.hot-update.json │ │ ├── 3aec1bc6b3ebfaeeb11d.hot-update.json │ │ ├── 3c328d2d66fba948ecd1.hot-update.json │ │ ├── 3d248e5643d25b35182d.hot-update.json │ │ ├── 3e1a3d813f1bec5a8fda.hot-update.json │ │ ├── 3e4f3316f8708a441475.hot-update.json │ │ ├── 3f052686bc4df9e3d306.hot-update.json │ │ ├── 3f2d17d9c6b313c29ff4.hot-update.json │ │ ├── 427da216d47a6385c1db.hot-update.json │ │ ├── 441e743963f0e4137012.hot-update.json │ │ ├── 4496f4338e910fbe0885.hot-update.json │ │ ├── 4567eb334abfc6be8ef2.hot-update.json │ │ ├── 46a4aeda7e6af836315d.hot-update.json │ │ ├── 47d6003f6805d4972bb5.hot-update.json │ │ ├── 49d2bf31b791d156a34c.hot-update.json │ │ ├── 4a119587f53db6cb61e0.hot-update.json │ │ ├── 4a674dc9d4d1c82617a9.hot-update.json │ │ ├── 4cd024ab53a2a74db47f.hot-update.json │ │ ├── 4d02725df2432dff3993.hot-update.json │ │ ├── 4e004cef168f02aae09c.hot-update.json │ │ ├── 4ef18666953166fac222.hot-update.json │ │ ├── 53ec9dffa55a9e7c423b.hot-update.json │ │ ├── 54897949f1203c9d9aed.hot-update.json │ │ ├── 551d44771ca80562ba9f.hot-update.json │ │ ├── 55580a4c13b16cee517e.hot-update.json │ │ ├── 56d112a02e656e7067cf.hot-update.json │ │ ├── 58980e6a0da3d821736c.hot-update.json │ │ ├── 58c3703145f5d92eac69.hot-update.json │ │ ├── 594f610a3377bdaa255d.hot-update.json │ │ ├── 597dc50ee85fb7d97fa8.hot-update.json │ │ ├── 59ffa4adaaa6482e250b.hot-update.json │ │ ├── 5ad86523a198fff9579e.hot-update.json │ │ ├── 5d4efcf165d444bc76fc.hot-update.json │ │ ├── 5eb5f4b37afd4333234a.hot-update.json │ │ ├── 5f7beb97c70f0919e19c.hot-update.json │ │ ├── 6051fe5f89bdab0fde84.hot-update.json │ │ ├── 610f086bee32d2a0aadb.hot-update.json │ │ ├── 617e585d1c8339fe17b5.hot-update.json │ │ ├── 631a099a77c9d0932b66.hot-update.json │ │ ├── 638c966e2da610d3bcc6.hot-update.json │ │ ├── 64945242b9fb971cc6ed.hot-update.json │ │ ├── 65712f1116eec976503c.hot-update.json │ │ ├── 672660edd42338b61317.hot-update.json │ │ ├── 68ce4fb244545253fa91.hot-update.json │ │ ├── 6982e9d1f5641ec0a6af.hot-update.json │ │ ├── 698a782d12c6f81e04d9.hot-update.json │ │ ├── 6df18c1c6e2f55844045.hot-update.json │ │ ├── 6e8658d55b03ff7c03b5.hot-update.json │ │ ├── 700f4eccf447be315bbc.hot-update.json │ │ ├── 704e4710ca83d141edd7.hot-update.json │ │ ├── 71347451f6198fd64d20.hot-update.json │ │ ├── 767b06a30b14c96b93b1.hot-update.json │ │ ├── 7753923949a9e7fb7d13.hot-update.json │ │ ├── 77854e3537f93aff503d.hot-update.json │ │ ├── 778cb4f7046d94adc2ee.hot-update.json │ │ ├── 77e46e6a6580528f4a98.hot-update.json │ │ ├── 79552ca958a1ebe507d0.hot-update.json │ │ ├── 7a95f47c2cff9c26b813.hot-update.json │ │ ├── 7e3cce21a2f9dae4d2fa.hot-update.json │ │ ├── 7e5b0b21fa760e6d4458.hot-update.json │ │ ├── 805568adb9d2dc07086c.hot-update.json │ │ ├── 8572e085abb877675e8e.hot-update.json │ │ ├── 879eefb9959b745b4b7a.hot-update.json │ │ ├── 8924ef619df74f404856.hot-update.json │ │ ├── 8a8055c7da15cf3b09a2.hot-update.json │ │ ├── 8adcbffa6e4ee20b7b39.hot-update.json │ │ ├── 8bed456447636619360c.hot-update.json │ │ ├── 8e4d3bf6f5aa8bab4f81.hot-update.json │ │ ├── 8e91c004b944607abeb5.hot-update.json │ │ ├── 925a1899eda2692e72ee.hot-update.json │ │ ├── 9326c17774fbaf8680b6.hot-update.json │ │ ├── 95647be9fce482bd43bc.hot-update.json │ │ ├── 95e3fcb56bbd317a9817.hot-update.json │ │ ├── 97ae6bf8c8de1ca37253.hot-update.json │ │ ├── 9827ead01cc88946f512.hot-update.json │ │ ├── 984b5775aedc7e201e00.hot-update.json │ │ ├── 9a8d642c71931d0c4228.hot-update.json │ │ ├── 9e1a2913d1c40644de38.hot-update.json │ │ ├── a16ca1bebe5086376b1d.hot-update.json │ │ ├── a2239893a580ac406747.hot-update.json │ │ ├── a2ab9b99c0b0a6736934.hot-update.json │ │ ├── a2c75b679ec063837ca4.hot-update.json │ │ ├── a72201a084dc038ffce4.hot-update.json │ │ ├── a9491ed9e72ffed90547.hot-update.json │ │ ├── a94d961f87dfcb25860f.hot-update.json │ │ ├── aada849bcab260d6f448.hot-update.json │ │ ├── ac9ba84995b418f4f4fb.hot-update.json │ │ ├── ac9d2604902f20d7ff2b.hot-update.json │ │ ├── ae54cac580891db582b8.hot-update.json │ │ ├── aea7f85b7d7e91e55140.hot-update.json │ │ ├── af6d93e1193d10213825.hot-update.json │ │ ├── af98dedac617b80811e3.hot-update.json │ │ ├── afc8c991bd28d6953e97.hot-update.json │ │ ├── b1b2523b1fd67dc9ece9.hot-update.json │ │ ├── b1df0248d9668010c623.hot-update.json │ │ ├── b34adc17f140e5c936d8.hot-update.json │ │ ├── b51b4aebd664c0f89107.hot-update.json │ │ ├── b75d3813e9fa39df3e6c.hot-update.json │ │ ├── b83efc627be441192b06.hot-update.json │ │ ├── b8c662b4e9e276bb8749.hot-update.json │ │ ├── b966ba742958e5363bed.hot-update.json │ │ ├── b984e0b26ad7e19767f8.hot-update.json │ │ ├── b986191a5d437c4db4a7.hot-update.json │ │ ├── ba42d7e5377e1f3425f5.hot-update.json │ │ ├── bd2869fa91fc6dcb362d.hot-update.json │ │ ├── be1962ab114dbcd22429.hot-update.json │ │ ├── be1ff9a01bba0cfe8e66.hot-update.json │ │ ├── c07312194cf5fbd05471.hot-update.json │ │ ├── c0836d5fb07f11528003.hot-update.json │ │ ├── c162f13f5dee56c11ef2.hot-update.json │ │ ├── c1c56057d705c173d0f7.hot-update.json │ │ ├── c305ca4e0d068433d676.hot-update.json │ │ ├── c39a8d7b0cb5aa4c15c7.hot-update.json │ │ ├── c452f1b916138ee2f2cd.hot-update.json │ │ ├── c580c83093f1efc038a8.hot-update.json │ │ ├── c5a39f63bc63effa02b6.hot-update.json │ │ ├── c5f9fb1b020678199fc6.hot-update.json │ │ ├── c639cd9145a773ef9f59.hot-update.json │ │ ├── c86e383122da98c22666.hot-update.json │ │ ├── ca7b68101f50ca649d38.hot-update.json │ │ ├── cca39079edb98adf97ee.hot-update.json │ │ ├── ccdbbb6821969b06099a.hot-update.json │ │ ├── cd2fa30c5ea78d665cdc.hot-update.json │ │ ├── ce2227996e40af603c6e.hot-update.json │ │ ├── d1aa48640beb75a93a61.hot-update.json │ │ ├── d2753f0b48a5da965789.hot-update.json │ │ ├── d64f8e26fec5ba4f8338.hot-update.json │ │ ├── d65b167806d10c7e10c3.hot-update.json │ │ ├── d9d9d9e2729e0e520ae4.hot-update.json │ │ ├── da2f2de7b0ec589124ff.hot-update.json │ │ ├── da63f85b98b1084ea45e.hot-update.json │ │ ├── daefbfcbf64cf0da1418.hot-update.json │ │ ├── dbecb89cbcc48cdac672.hot-update.json │ │ ├── dc0d75cef9fe54130297.hot-update.json │ │ ├── dd23c80fa99512deab65.hot-update.json │ │ ├── e2a7370b52e1499c8255.hot-update.json │ │ ├── e38f24af06ad1556a983.hot-update.json │ │ ├── e428f38813344af0469b.hot-update.json │ │ ├── e562fc3a599e3883365e.hot-update.json │ │ ├── ea0c84a19dfdcdf40b37.hot-update.json │ │ ├── eb294e661c1ac5cebb70.hot-update.json │ │ ├── ebdba0468fe6d22c3fc7.hot-update.json │ │ ├── ebfc1752c306c8796450.hot-update.json │ │ ├── ed8d7e5e6fea4e5ff43e.hot-update.json │ │ ├── ee1a84bd0975156b5859.hot-update.json │ │ ├── ef1538b93f1de1de2c77.hot-update.json │ │ ├── f0e24cb57ed42ef49fca.hot-update.json │ │ ├── f1a0d32484b342d12327.hot-update.json │ │ ├── f20d55838bd6ca954598.hot-update.json │ │ ├── f38b7c6e76f10783d70d.hot-update.json │ │ ├── f515647f5e5fc0f42d03.hot-update.json │ │ ├── f72b31bec6b707acb4f9.hot-update.json │ │ ├── f784326d706136f2d124.hot-update.json │ │ ├── f7e9bb2ad1e1eb1c3663.hot-update.json │ │ ├── f80a0b36be3e5333196d.hot-update.json │ │ ├── f9c50ce9c2e1d0948054.hot-update.json │ │ ├── f9e93f504bc8bbad7feb.hot-update.json │ │ ├── ff883cbd8ab7490433a1.hot-update.json │ │ ├── ffda1664a1547a7a8173.hot-update.json │ │ └── static │ │ └── development │ │ └── pages │ │ ├── design-reading.js.0048261267f994f36eee.hot-update.js │ │ ├── design-reading.js.0048261267f994f36eee.hot-update.js.map │ │ ├── design-reading.js.011adccf8b2b349a6fb1.hot-update.js │ │ ├── design-reading.js.011adccf8b2b349a6fb1.hot-update.js.map │ │ ├── design-reading.js.03dfd1bfe5f92ff1eb43.hot-update.js │ │ ├── design-reading.js.03dfd1bfe5f92ff1eb43.hot-update.js.map │ │ ├── design-reading.js.055aafe829831afb1e35.hot-update.js │ │ ├── design-reading.js.055aafe829831afb1e35.hot-update.js.map │ │ ├── design-reading.js.059467ac8041ddc2bbcd.hot-update.js │ │ ├── design-reading.js.059467ac8041ddc2bbcd.hot-update.js.map │ │ ├── design-reading.js.0665b2d23a61b17576da.hot-update.js │ │ ├── design-reading.js.0665b2d23a61b17576da.hot-update.js.map │ │ ├── design-reading.js.06cf66fd5c9cc5342823.hot-update.js │ │ ├── design-reading.js.06cf66fd5c9cc5342823.hot-update.js.map │ │ ├── design-reading.js.070a1661d456f85ec19a.hot-update.js │ │ ├── design-reading.js.070a1661d456f85ec19a.hot-update.js.map │ │ ├── design-reading.js.0840fd3a0566e86ccace.hot-update.js │ │ ├── design-reading.js.0840fd3a0566e86ccace.hot-update.js.map │ │ ├── design-reading.js.0c3e9f8f9acfc5154b96.hot-update.js │ │ ├── design-reading.js.0c3e9f8f9acfc5154b96.hot-update.js.map │ │ ├── design-reading.js.0d6d5a796dc71a29d3f2.hot-update.js │ │ ├── design-reading.js.0d6d5a796dc71a29d3f2.hot-update.js.map │ │ ├── design-reading.js.0d9a3c2ca8d519a7a63f.hot-update.js │ │ ├── design-reading.js.0d9a3c2ca8d519a7a63f.hot-update.js.map │ │ ├── design-reading.js.0e2789eaa36923ad0168.hot-update.js │ │ ├── design-reading.js.0e2789eaa36923ad0168.hot-update.js.map │ │ ├── design-reading.js.0e4264db75dad4adae23.hot-update.js │ │ ├── design-reading.js.0e4264db75dad4adae23.hot-update.js.map │ │ ├── design-reading.js.138a24132ff4bbaabc73.hot-update.js │ │ ├── design-reading.js.138a24132ff4bbaabc73.hot-update.js.map │ │ ├── design-reading.js.146f6461beb9b4baec0f.hot-update.js │ │ ├── design-reading.js.146f6461beb9b4baec0f.hot-update.js.map │ │ ├── design-reading.js.165cc22091608cff608b.hot-update.js │ │ ├── design-reading.js.165cc22091608cff608b.hot-update.js.map │ │ ├── design-reading.js.172f6c268389c146d98b.hot-update.js │ │ ├── design-reading.js.172f6c268389c146d98b.hot-update.js.map │ │ ├── design-reading.js.1a33e8ffdd28dfeb1586.hot-update.js │ │ ├── design-reading.js.1a33e8ffdd28dfeb1586.hot-update.js.map │ │ ├── design-reading.js.1aff77d355b618df2324.hot-update.js │ │ ├── design-reading.js.1aff77d355b618df2324.hot-update.js.map │ │ ├── design-reading.js.1b869bce634a8e698d11.hot-update.js │ │ ├── design-reading.js.1b869bce634a8e698d11.hot-update.js.map │ │ ├── design-reading.js.1c2883db12da74be7aaf.hot-update.js │ │ ├── design-reading.js.1c2883db12da74be7aaf.hot-update.js.map │ │ ├── design-reading.js.1dbf55b075a2db8bc79f.hot-update.js │ │ ├── design-reading.js.1dbf55b075a2db8bc79f.hot-update.js.map │ │ ├── design-reading.js.1e67e8864d80752692cb.hot-update.js │ │ ├── design-reading.js.1e67e8864d80752692cb.hot-update.js.map │ │ ├── design-reading.js.1e72cf97604c52d4fcce.hot-update.js │ │ ├── design-reading.js.1e72cf97604c52d4fcce.hot-update.js.map │ │ ├── design-reading.js.1fceb218f779a63b2a01.hot-update.js │ │ ├── design-reading.js.1fceb218f779a63b2a01.hot-update.js.map │ │ ├── design-reading.js.205de5e47da65287473c.hot-update.js │ │ ├── design-reading.js.205de5e47da65287473c.hot-update.js.map │ │ ├── design-reading.js.213bb9d7de9517af72c8.hot-update.js │ │ ├── design-reading.js.213bb9d7de9517af72c8.hot-update.js.map │ │ ├── design-reading.js.22cebf36c805a75e5970.hot-update.js │ │ ├── design-reading.js.22cebf36c805a75e5970.hot-update.js.map │ │ ├── design-reading.js.23de5ab3fb222b5ad892.hot-update.js │ │ ├── design-reading.js.23de5ab3fb222b5ad892.hot-update.js.map │ │ ├── design-reading.js.24df7c37d47c0e080976.hot-update.js │ │ ├── design-reading.js.24df7c37d47c0e080976.hot-update.js.map │ │ ├── design-reading.js.26ea9005daf1013bdf87.hot-update.js │ │ ├── design-reading.js.26ea9005daf1013bdf87.hot-update.js.map │ │ ├── design-reading.js.279afafcd5241f907f14.hot-update.js │ │ ├── design-reading.js.279afafcd5241f907f14.hot-update.js.map │ │ ├── design-reading.js.285d7e45f2cdf5876080.hot-update.js │ │ ├── design-reading.js.285d7e45f2cdf5876080.hot-update.js.map │ │ ├── design-reading.js.28ebc397900e960ae531.hot-update.js │ │ ├── design-reading.js.28ebc397900e960ae531.hot-update.js.map │ │ ├── design-reading.js.2aea372dab314cc06ef7.hot-update.js │ │ ├── design-reading.js.2aea372dab314cc06ef7.hot-update.js.map │ │ ├── design-reading.js.2eaa6ab20da174f4ef01.hot-update.js │ │ ├── design-reading.js.2eaa6ab20da174f4ef01.hot-update.js.map │ │ ├── design-reading.js.2f910f26c423deb19f8b.hot-update.js │ │ ├── design-reading.js.2f910f26c423deb19f8b.hot-update.js.map │ │ ├── design-reading.js.2f99119ffbda434dea40.hot-update.js │ │ ├── design-reading.js.2f99119ffbda434dea40.hot-update.js.map │ │ ├── design-reading.js.2faa0a2d3d1949359d4e.hot-update.js │ │ ├── design-reading.js.2faa0a2d3d1949359d4e.hot-update.js.map │ │ ├── design-reading.js.302c2a712fb3ed0aff22.hot-update.js │ │ ├── design-reading.js.302c2a712fb3ed0aff22.hot-update.js.map │ │ ├── design-reading.js.305cb3c91fc0afdc9767.hot-update.js │ │ ├── design-reading.js.305cb3c91fc0afdc9767.hot-update.js.map │ │ ├── design-reading.js.30c00aff4c8116d64c15.hot-update.js │ │ ├── design-reading.js.30c00aff4c8116d64c15.hot-update.js.map │ │ ├── design-reading.js.31ed11f60ee8fd9c9293.hot-update.js │ │ ├── design-reading.js.31ed11f60ee8fd9c9293.hot-update.js.map │ │ ├── design-reading.js.3239bc830f8e8515d9a1.hot-update.js │ │ ├── design-reading.js.3239bc830f8e8515d9a1.hot-update.js.map │ │ ├── design-reading.js.32bf4a4d04c5ea5671dd.hot-update.js │ │ ├── design-reading.js.32bf4a4d04c5ea5671dd.hot-update.js.map │ │ ├── design-reading.js.34ac75a8276652681ba4.hot-update.js │ │ ├── design-reading.js.34ac75a8276652681ba4.hot-update.js.map │ │ ├── design-reading.js.35e405a22a0ad58aca3a.hot-update.js │ │ ├── design-reading.js.35e405a22a0ad58aca3a.hot-update.js.map │ │ ├── design-reading.js.3671c8b23f8edd2182f5.hot-update.js │ │ ├── design-reading.js.3671c8b23f8edd2182f5.hot-update.js.map │ │ ├── design-reading.js.36dc70a11a266c378c58.hot-update.js │ │ ├── design-reading.js.36dc70a11a266c378c58.hot-update.js.map │ │ ├── design-reading.js.3915eec81d5f0b9e87b2.hot-update.js │ │ ├── design-reading.js.3915eec81d5f0b9e87b2.hot-update.js.map │ │ ├── design-reading.js.3a0f458a07f139be7e7e.hot-update.js │ │ ├── design-reading.js.3a0f458a07f139be7e7e.hot-update.js.map │ │ ├── design-reading.js.3a32d53d551cfb6f6a7e.hot-update.js │ │ ├── design-reading.js.3a32d53d551cfb6f6a7e.hot-update.js.map │ │ ├── design-reading.js.3aec1bc6b3ebfaeeb11d.hot-update.js │ │ ├── design-reading.js.3aec1bc6b3ebfaeeb11d.hot-update.js.map │ │ ├── design-reading.js.3c328d2d66fba948ecd1.hot-update.js │ │ ├── design-reading.js.3c328d2d66fba948ecd1.hot-update.js.map │ │ ├── design-reading.js.3d248e5643d25b35182d.hot-update.js │ │ ├── design-reading.js.3d248e5643d25b35182d.hot-update.js.map │ │ ├── design-reading.js.3e1a3d813f1bec5a8fda.hot-update.js │ │ ├── design-reading.js.3e1a3d813f1bec5a8fda.hot-update.js.map │ │ ├── design-reading.js.3e4f3316f8708a441475.hot-update.js │ │ ├── design-reading.js.3e4f3316f8708a441475.hot-update.js.map │ │ ├── design-reading.js.3f052686bc4df9e3d306.hot-update.js │ │ ├── design-reading.js.3f052686bc4df9e3d306.hot-update.js.map │ │ ├── design-reading.js.3f2d17d9c6b313c29ff4.hot-update.js │ │ ├── design-reading.js.3f2d17d9c6b313c29ff4.hot-update.js.map │ │ ├── design-reading.js.441e743963f0e4137012.hot-update.js │ │ ├── design-reading.js.441e743963f0e4137012.hot-update.js.map │ │ ├── design-reading.js.4496f4338e910fbe0885.hot-update.js │ │ ├── design-reading.js.4496f4338e910fbe0885.hot-update.js.map │ │ ├── design-reading.js.4567eb334abfc6be8ef2.hot-update.js │ │ ├── design-reading.js.4567eb334abfc6be8ef2.hot-update.js.map │ │ ├── design-reading.js.46a4aeda7e6af836315d.hot-update.js │ │ ├── design-reading.js.46a4aeda7e6af836315d.hot-update.js.map │ │ ├── design-reading.js.47d6003f6805d4972bb5.hot-update.js │ │ ├── design-reading.js.47d6003f6805d4972bb5.hot-update.js.map │ │ ├── design-reading.js.49d2bf31b791d156a34c.hot-update.js │ │ ├── design-reading.js.49d2bf31b791d156a34c.hot-update.js.map │ │ ├── design-reading.js.4a119587f53db6cb61e0.hot-update.js │ │ ├── design-reading.js.4a119587f53db6cb61e0.hot-update.js.map │ │ ├── design-reading.js.4a674dc9d4d1c82617a9.hot-update.js │ │ ├── design-reading.js.4a674dc9d4d1c82617a9.hot-update.js.map │ │ ├── design-reading.js.4cd024ab53a2a74db47f.hot-update.js │ │ ├── design-reading.js.4cd024ab53a2a74db47f.hot-update.js.map │ │ ├── design-reading.js.4e004cef168f02aae09c.hot-update.js │ │ ├── design-reading.js.4e004cef168f02aae09c.hot-update.js.map │ │ ├── design-reading.js.4ef18666953166fac222.hot-update.js │ │ ├── design-reading.js.4ef18666953166fac222.hot-update.js.map │ │ ├── design-reading.js.53ec9dffa55a9e7c423b.hot-update.js │ │ ├── design-reading.js.53ec9dffa55a9e7c423b.hot-update.js.map │ │ ├── design-reading.js.54897949f1203c9d9aed.hot-update.js │ │ ├── design-reading.js.54897949f1203c9d9aed.hot-update.js.map │ │ ├── design-reading.js.551d44771ca80562ba9f.hot-update.js │ │ ├── design-reading.js.551d44771ca80562ba9f.hot-update.js.map │ │ ├── design-reading.js.55580a4c13b16cee517e.hot-update.js │ │ ├── design-reading.js.55580a4c13b16cee517e.hot-update.js.map │ │ ├── design-reading.js.58980e6a0da3d821736c.hot-update.js │ │ ├── design-reading.js.58980e6a0da3d821736c.hot-update.js.map │ │ ├── design-reading.js.58c3703145f5d92eac69.hot-update.js │ │ ├── design-reading.js.58c3703145f5d92eac69.hot-update.js.map │ │ ├── design-reading.js.594f610a3377bdaa255d.hot-update.js │ │ ├── design-reading.js.594f610a3377bdaa255d.hot-update.js.map │ │ ├── design-reading.js.597dc50ee85fb7d97fa8.hot-update.js │ │ ├── design-reading.js.597dc50ee85fb7d97fa8.hot-update.js.map │ │ ├── design-reading.js.59ffa4adaaa6482e250b.hot-update.js │ │ ├── design-reading.js.59ffa4adaaa6482e250b.hot-update.js.map │ │ ├── design-reading.js.5ad86523a198fff9579e.hot-update.js │ │ ├── design-reading.js.5ad86523a198fff9579e.hot-update.js.map │ │ ├── design-reading.js.5d4efcf165d444bc76fc.hot-update.js │ │ ├── design-reading.js.5d4efcf165d444bc76fc.hot-update.js.map │ │ ├── design-reading.js.5eb5f4b37afd4333234a.hot-update.js │ │ ├── design-reading.js.5eb5f4b37afd4333234a.hot-update.js.map │ │ ├── design-reading.js.5f7beb97c70f0919e19c.hot-update.js │ │ ├── design-reading.js.5f7beb97c70f0919e19c.hot-update.js.map │ │ ├── design-reading.js.6051fe5f89bdab0fde84.hot-update.js │ │ ├── design-reading.js.6051fe5f89bdab0fde84.hot-update.js.map │ │ ├── design-reading.js.617e585d1c8339fe17b5.hot-update.js │ │ ├── design-reading.js.617e585d1c8339fe17b5.hot-update.js.map │ │ ├── design-reading.js.631a099a77c9d0932b66.hot-update.js │ │ ├── design-reading.js.631a099a77c9d0932b66.hot-update.js.map │ │ ├── design-reading.js.638c966e2da610d3bcc6.hot-update.js │ │ ├── design-reading.js.638c966e2da610d3bcc6.hot-update.js.map │ │ ├── design-reading.js.64945242b9fb971cc6ed.hot-update.js │ │ ├── design-reading.js.64945242b9fb971cc6ed.hot-update.js.map │ │ ├── design-reading.js.672660edd42338b61317.hot-update.js │ │ ├── design-reading.js.672660edd42338b61317.hot-update.js.map │ │ ├── design-reading.js.68ce4fb244545253fa91.hot-update.js │ │ ├── design-reading.js.68ce4fb244545253fa91.hot-update.js.map │ │ ├── design-reading.js.6982e9d1f5641ec0a6af.hot-update.js │ │ ├── design-reading.js.6982e9d1f5641ec0a6af.hot-update.js.map │ │ ├── design-reading.js.6e8658d55b03ff7c03b5.hot-update.js │ │ ├── design-reading.js.6e8658d55b03ff7c03b5.hot-update.js.map │ │ ├── design-reading.js.700f4eccf447be315bbc.hot-update.js │ │ ├── design-reading.js.700f4eccf447be315bbc.hot-update.js.map │ │ ├── design-reading.js.704e4710ca83d141edd7.hot-update.js │ │ ├── design-reading.js.704e4710ca83d141edd7.hot-update.js.map │ │ ├── design-reading.js.71347451f6198fd64d20.hot-update.js │ │ ├── design-reading.js.71347451f6198fd64d20.hot-update.js.map │ │ ├── design-reading.js.767b06a30b14c96b93b1.hot-update.js │ │ ├── design-reading.js.767b06a30b14c96b93b1.hot-update.js.map │ │ ├── design-reading.js.7753923949a9e7fb7d13.hot-update.js │ │ ├── design-reading.js.7753923949a9e7fb7d13.hot-update.js.map │ │ ├── design-reading.js.77854e3537f93aff503d.hot-update.js │ │ ├── design-reading.js.77854e3537f93aff503d.hot-update.js.map │ │ ├── design-reading.js.778cb4f7046d94adc2ee.hot-update.js │ │ ├── design-reading.js.778cb4f7046d94adc2ee.hot-update.js.map │ │ ├── design-reading.js.77e46e6a6580528f4a98.hot-update.js │ │ ├── design-reading.js.77e46e6a6580528f4a98.hot-update.js.map │ │ ├── design-reading.js.79552ca958a1ebe507d0.hot-update.js │ │ ├── design-reading.js.79552ca958a1ebe507d0.hot-update.js.map │ │ ├── design-reading.js.7a95f47c2cff9c26b813.hot-update.js │ │ ├── design-reading.js.7a95f47c2cff9c26b813.hot-update.js.map │ │ ├── design-reading.js.7e5b0b21fa760e6d4458.hot-update.js │ │ ├── design-reading.js.7e5b0b21fa760e6d4458.hot-update.js.map │ │ ├── design-reading.js.805568adb9d2dc07086c.hot-update.js │ │ ├── design-reading.js.805568adb9d2dc07086c.hot-update.js.map │ │ ├── design-reading.js.8572e085abb877675e8e.hot-update.js │ │ ├── design-reading.js.8572e085abb877675e8e.hot-update.js.map │ │ ├── design-reading.js.879eefb9959b745b4b7a.hot-update.js │ │ ├── design-reading.js.879eefb9959b745b4b7a.hot-update.js.map │ │ ├── design-reading.js.8924ef619df74f404856.hot-update.js │ │ ├── design-reading.js.8924ef619df74f404856.hot-update.js.map │ │ ├── design-reading.js.8a8055c7da15cf3b09a2.hot-update.js │ │ ├── design-reading.js.8a8055c7da15cf3b09a2.hot-update.js.map │ │ ├── design-reading.js.8adcbffa6e4ee20b7b39.hot-update.js │ │ ├── design-reading.js.8adcbffa6e4ee20b7b39.hot-update.js.map │ │ ├── design-reading.js.8bed456447636619360c.hot-update.js │ │ ├── design-reading.js.8bed456447636619360c.hot-update.js.map │ │ ├── design-reading.js.8e4d3bf6f5aa8bab4f81.hot-update.js │ │ ├── design-reading.js.8e4d3bf6f5aa8bab4f81.hot-update.js.map │ │ ├── design-reading.js.8e91c004b944607abeb5.hot-update.js │ │ ├── design-reading.js.8e91c004b944607abeb5.hot-update.js.map │ │ ├── design-reading.js.925a1899eda2692e72ee.hot-update.js │ │ ├── design-reading.js.925a1899eda2692e72ee.hot-update.js.map │ │ ├── design-reading.js.95647be9fce482bd43bc.hot-update.js │ │ ├── design-reading.js.95647be9fce482bd43bc.hot-update.js.map │ │ ├── design-reading.js.95e3fcb56bbd317a9817.hot-update.js │ │ ├── design-reading.js.95e3fcb56bbd317a9817.hot-update.js.map │ │ ├── design-reading.js.97ae6bf8c8de1ca37253.hot-update.js │ │ ├── design-reading.js.97ae6bf8c8de1ca37253.hot-update.js.map │ │ ├── design-reading.js.9827ead01cc88946f512.hot-update.js │ │ ├── design-reading.js.9827ead01cc88946f512.hot-update.js.map │ │ ├── design-reading.js.984b5775aedc7e201e00.hot-update.js │ │ ├── design-reading.js.984b5775aedc7e201e00.hot-update.js.map │ │ ├── design-reading.js.9a8d642c71931d0c4228.hot-update.js │ │ ├── design-reading.js.9a8d642c71931d0c4228.hot-update.js.map │ │ ├── design-reading.js.9e1a2913d1c40644de38.hot-update.js │ │ ├── design-reading.js.9e1a2913d1c40644de38.hot-update.js.map │ │ ├── design-reading.js.a16ca1bebe5086376b1d.hot-update.js │ │ ├── design-reading.js.a16ca1bebe5086376b1d.hot-update.js.map │ │ ├── design-reading.js.a2239893a580ac406747.hot-update.js │ │ ├── design-reading.js.a2239893a580ac406747.hot-update.js.map │ │ ├── design-reading.js.a2ab9b99c0b0a6736934.hot-update.js │ │ ├── design-reading.js.a2ab9b99c0b0a6736934.hot-update.js.map │ │ ├── design-reading.js.a2c75b679ec063837ca4.hot-update.js │ │ ├── design-reading.js.a2c75b679ec063837ca4.hot-update.js.map │ │ ├── design-reading.js.a72201a084dc038ffce4.hot-update.js │ │ ├── design-reading.js.a72201a084dc038ffce4.hot-update.js.map │ │ ├── design-reading.js.a9491ed9e72ffed90547.hot-update.js │ │ ├── design-reading.js.a9491ed9e72ffed90547.hot-update.js.map │ │ ├── design-reading.js.a94d961f87dfcb25860f.hot-update.js │ │ ├── design-reading.js.a94d961f87dfcb25860f.hot-update.js.map │ │ ├── design-reading.js.ac9ba84995b418f4f4fb.hot-update.js │ │ ├── design-reading.js.ac9ba84995b418f4f4fb.hot-update.js.map │ │ ├── design-reading.js.ac9d2604902f20d7ff2b.hot-update.js │ │ ├── design-reading.js.ac9d2604902f20d7ff2b.hot-update.js.map │ │ ├── design-reading.js.ae54cac580891db582b8.hot-update.js │ │ ├── design-reading.js.ae54cac580891db582b8.hot-update.js.map │ │ ├── design-reading.js.aea7f85b7d7e91e55140.hot-update.js │ │ ├── design-reading.js.aea7f85b7d7e91e55140.hot-update.js.map │ │ ├── design-reading.js.af6d93e1193d10213825.hot-update.js │ │ ├── design-reading.js.af6d93e1193d10213825.hot-update.js.map │ │ ├── design-reading.js.afc8c991bd28d6953e97.hot-update.js │ │ ├── design-reading.js.afc8c991bd28d6953e97.hot-update.js.map │ │ ├── design-reading.js.b1b2523b1fd67dc9ece9.hot-update.js │ │ ├── design-reading.js.b1b2523b1fd67dc9ece9.hot-update.js.map │ │ ├── design-reading.js.b1df0248d9668010c623.hot-update.js │ │ ├── design-reading.js.b1df0248d9668010c623.hot-update.js.map │ │ ├── design-reading.js.b51b4aebd664c0f89107.hot-update.js │ │ ├── design-reading.js.b51b4aebd664c0f89107.hot-update.js.map │ │ ├── design-reading.js.b75d3813e9fa39df3e6c.hot-update.js │ │ ├── design-reading.js.b75d3813e9fa39df3e6c.hot-update.js.map │ │ ├── design-reading.js.b83efc627be441192b06.hot-update.js │ │ ├── design-reading.js.b83efc627be441192b06.hot-update.js.map │ │ ├── design-reading.js.b8c662b4e9e276bb8749.hot-update.js │ │ ├── design-reading.js.b8c662b4e9e276bb8749.hot-update.js.map │ │ ├── design-reading.js.b966ba742958e5363bed.hot-update.js │ │ ├── design-reading.js.b966ba742958e5363bed.hot-update.js.map │ │ ├── design-reading.js.b984e0b26ad7e19767f8.hot-update.js │ │ ├── design-reading.js.b984e0b26ad7e19767f8.hot-update.js.map │ │ ├── design-reading.js.b986191a5d437c4db4a7.hot-update.js │ │ ├── design-reading.js.b986191a5d437c4db4a7.hot-update.js.map │ │ ├── design-reading.js.ba42d7e5377e1f3425f5.hot-update.js │ │ ├── design-reading.js.ba42d7e5377e1f3425f5.hot-update.js.map │ │ ├── design-reading.js.bd2869fa91fc6dcb362d.hot-update.js │ │ ├── design-reading.js.bd2869fa91fc6dcb362d.hot-update.js.map │ │ ├── design-reading.js.be1962ab114dbcd22429.hot-update.js │ │ ├── design-reading.js.be1962ab114dbcd22429.hot-update.js.map │ │ ├── design-reading.js.be1ff9a01bba0cfe8e66.hot-update.js │ │ ├── design-reading.js.be1ff9a01bba0cfe8e66.hot-update.js.map │ │ ├── design-reading.js.c07312194cf5fbd05471.hot-update.js │ │ ├── design-reading.js.c07312194cf5fbd05471.hot-update.js.map │ │ ├── design-reading.js.c0836d5fb07f11528003.hot-update.js │ │ ├── design-reading.js.c0836d5fb07f11528003.hot-update.js.map │ │ ├── design-reading.js.c162f13f5dee56c11ef2.hot-update.js │ │ ├── design-reading.js.c162f13f5dee56c11ef2.hot-update.js.map │ │ ├── design-reading.js.c1c56057d705c173d0f7.hot-update.js │ │ ├── design-reading.js.c1c56057d705c173d0f7.hot-update.js.map │ │ ├── design-reading.js.c305ca4e0d068433d676.hot-update.js │ │ ├── design-reading.js.c305ca4e0d068433d676.hot-update.js.map │ │ ├── design-reading.js.c452f1b916138ee2f2cd.hot-update.js │ │ ├── design-reading.js.c452f1b916138ee2f2cd.hot-update.js.map │ │ ├── design-reading.js.c580c83093f1efc038a8.hot-update.js │ │ ├── design-reading.js.c580c83093f1efc038a8.hot-update.js.map │ │ ├── design-reading.js.c5a39f63bc63effa02b6.hot-update.js │ │ ├── design-reading.js.c5a39f63bc63effa02b6.hot-update.js.map │ │ ├── design-reading.js.c5f9fb1b020678199fc6.hot-update.js │ │ ├── design-reading.js.c5f9fb1b020678199fc6.hot-update.js.map │ │ ├── design-reading.js.c639cd9145a773ef9f59.hot-update.js │ │ ├── design-reading.js.c639cd9145a773ef9f59.hot-update.js.map │ │ ├── design-reading.js.c86e383122da98c22666.hot-update.js │ │ ├── design-reading.js.c86e383122da98c22666.hot-update.js.map │ │ ├── design-reading.js.ca7b68101f50ca649d38.hot-update.js │ │ ├── design-reading.js.ca7b68101f50ca649d38.hot-update.js.map │ │ ├── design-reading.js.cca39079edb98adf97ee.hot-update.js │ │ ├── design-reading.js.cca39079edb98adf97ee.hot-update.js.map │ │ ├── design-reading.js.ccdbbb6821969b06099a.hot-update.js │ │ ├── design-reading.js.ccdbbb6821969b06099a.hot-update.js.map │ │ ├── design-reading.js.cd2fa30c5ea78d665cdc.hot-update.js │ │ ├── design-reading.js.cd2fa30c5ea78d665cdc.hot-update.js.map │ │ ├── design-reading.js.ce2227996e40af603c6e.hot-update.js │ │ ├── design-reading.js.ce2227996e40af603c6e.hot-update.js.map │ │ ├── design-reading.js.d1aa48640beb75a93a61.hot-update.js │ │ ├── design-reading.js.d1aa48640beb75a93a61.hot-update.js.map │ │ ├── design-reading.js.d2753f0b48a5da965789.hot-update.js │ │ ├── design-reading.js.d2753f0b48a5da965789.hot-update.js.map │ │ ├── design-reading.js.d64f8e26fec5ba4f8338.hot-update.js │ │ ├── design-reading.js.d64f8e26fec5ba4f8338.hot-update.js.map │ │ ├── design-reading.js.d65b167806d10c7e10c3.hot-update.js │ │ ├── design-reading.js.d65b167806d10c7e10c3.hot-update.js.map │ │ ├── design-reading.js.d9d9d9e2729e0e520ae4.hot-update.js │ │ ├── design-reading.js.d9d9d9e2729e0e520ae4.hot-update.js.map │ │ ├── design-reading.js.da2f2de7b0ec589124ff.hot-update.js │ │ ├── design-reading.js.da2f2de7b0ec589124ff.hot-update.js.map │ │ ├── design-reading.js.da63f85b98b1084ea45e.hot-update.js │ │ ├── design-reading.js.da63f85b98b1084ea45e.hot-update.js.map │ │ ├── design-reading.js.daefbfcbf64cf0da1418.hot-update.js │ │ ├── design-reading.js.daefbfcbf64cf0da1418.hot-update.js.map │ │ ├── design-reading.js.dbecb89cbcc48cdac672.hot-update.js │ │ ├── design-reading.js.dbecb89cbcc48cdac672.hot-update.js.map │ │ ├── design-reading.js.dc0d75cef9fe54130297.hot-update.js │ │ ├── design-reading.js.dc0d75cef9fe54130297.hot-update.js.map │ │ ├── design-reading.js.dd23c80fa99512deab65.hot-update.js │ │ ├── design-reading.js.dd23c80fa99512deab65.hot-update.js.map │ │ ├── design-reading.js.e2a7370b52e1499c8255.hot-update.js │ │ ├── design-reading.js.e2a7370b52e1499c8255.hot-update.js.map │ │ ├── design-reading.js.e38f24af06ad1556a983.hot-update.js │ │ ├── design-reading.js.e38f24af06ad1556a983.hot-update.js.map │ │ ├── design-reading.js.e428f38813344af0469b.hot-update.js │ │ ├── design-reading.js.e428f38813344af0469b.hot-update.js.map │ │ ├── design-reading.js.e562fc3a599e3883365e.hot-update.js │ │ ├── design-reading.js.e562fc3a599e3883365e.hot-update.js.map │ │ ├── design-reading.js.ea0c84a19dfdcdf40b37.hot-update.js │ │ ├── design-reading.js.ea0c84a19dfdcdf40b37.hot-update.js.map │ │ ├── design-reading.js.eb294e661c1ac5cebb70.hot-update.js │ │ ├── design-reading.js.eb294e661c1ac5cebb70.hot-update.js.map │ │ ├── design-reading.js.ebfc1752c306c8796450.hot-update.js │ │ ├── design-reading.js.ebfc1752c306c8796450.hot-update.js.map │ │ ├── design-reading.js.ed8d7e5e6fea4e5ff43e.hot-update.js │ │ ├── design-reading.js.ed8d7e5e6fea4e5ff43e.hot-update.js.map │ │ ├── design-reading.js.ee1a84bd0975156b5859.hot-update.js │ │ ├── design-reading.js.ee1a84bd0975156b5859.hot-update.js.map │ │ ├── design-reading.js.ef1538b93f1de1de2c77.hot-update.js │ │ ├── design-reading.js.ef1538b93f1de1de2c77.hot-update.js.map │ │ ├── design-reading.js.f0e24cb57ed42ef49fca.hot-update.js │ │ ├── design-reading.js.f0e24cb57ed42ef49fca.hot-update.js.map │ │ ├── design-reading.js.f1a0d32484b342d12327.hot-update.js │ │ ├── design-reading.js.f1a0d32484b342d12327.hot-update.js.map │ │ ├── design-reading.js.f38b7c6e76f10783d70d.hot-update.js │ │ ├── design-reading.js.f38b7c6e76f10783d70d.hot-update.js.map │ │ ├── design-reading.js.f515647f5e5fc0f42d03.hot-update.js │ │ ├── design-reading.js.f515647f5e5fc0f42d03.hot-update.js.map │ │ ├── design-reading.js.f72b31bec6b707acb4f9.hot-update.js │ │ ├── design-reading.js.f72b31bec6b707acb4f9.hot-update.js.map │ │ ├── design-reading.js.f7e9bb2ad1e1eb1c3663.hot-update.js │ │ ├── design-reading.js.f7e9bb2ad1e1eb1c3663.hot-update.js.map │ │ ├── design-reading.js.f80a0b36be3e5333196d.hot-update.js │ │ ├── design-reading.js.f80a0b36be3e5333196d.hot-update.js.map │ │ ├── design-reading.js.f9c50ce9c2e1d0948054.hot-update.js │ │ ├── design-reading.js.f9c50ce9c2e1d0948054.hot-update.js.map │ │ ├── design-reading.js.f9e93f504bc8bbad7feb.hot-update.js │ │ ├── design-reading.js.f9e93f504bc8bbad7feb.hot-update.js.map │ │ ├── design-reading.js.ff883cbd8ab7490433a1.hot-update.js │ │ ├── design-reading.js.ff883cbd8ab7490433a1.hot-update.js.map │ │ ├── design-reading.js.ffda1664a1547a7a8173.hot-update.js │ │ ├── design-reading.js.ffda1664a1547a7a8173.hot-update.js.map │ │ ├── index.js.0b2d05c035186c35039d.hot-update.js │ │ ├── index.js.0b2d05c035186c35039d.hot-update.js.map │ │ ├── index.js.1fe99719c04c9574a229.hot-update.js │ │ ├── index.js.1fe99719c04c9574a229.hot-update.js.map │ │ ├── index.js.306a273e2b69bbbf42da.hot-update.js │ │ ├── index.js.306a273e2b69bbbf42da.hot-update.js.map │ │ ├── index.js.65712f1116eec976503c.hot-update.js │ │ ├── index.js.65712f1116eec976503c.hot-update.js.map │ │ ├── index.js.c39a8d7b0cb5aa4c15c7.hot-update.js │ │ └── index.js.c39a8d7b0cb5aa4c15c7.hot-update.js.map ├── advice-on-change │ └── index.html ├── chaos-design │ └── index.html ├── common-vim │ └── index.html ├── component-styling-api │ └── index.html ├── components-ai │ └── index.html ├── design-reading │ └── index.html ├── design-systems │ └── index.html ├── developing-ui │ └── index.html ├── dogma │ └── index.html ├── essential-vim-plugins │ └── index.html ├── getting-critiqued │ └── index.html ├── good-css │ └── index.html ├── index.html ├── learning-css │ └── index.html ├── line-height │ └── index.html ├── living-with-jxnblk │ └── index.html ├── mobile-first-css │ └── index.html ├── reading-material │ └── index.html ├── scalable-css │ └── index.html ├── the-veil-of-ignorance │ └── index.html ├── too-many-tools │ └── index.html ├── vim-as-a-design-tool │ └── index.html ├── web-design-procss │ └── index.html ├── webfonts │ └── index.html ├── what-are-classes-for │ └── index.html └── what-is-css-for │ └── index.html ├── elements ├── A.js ├── Abbr.js ├── Address.js ├── Article.js ├── Aside.js ├── B.js ├── Br.js ├── Button.js ├── Circle.js ├── Cite.js ├── Code.js ├── Data.js ├── Dd.js ├── Details.js ├── Div.js ├── Dl.js ├── Dt.js ├── Em.js ├── Fieldset.js ├── Footer.js ├── Form.js ├── H1.js ├── H2.js ├── H3.js ├── H4.js ├── H5.js ├── H6.js ├── Header.js ├── Hr.js ├── I.js ├── Img.js ├── Input.js ├── InputCheckbox.js ├── InputEmail.js ├── InputFile.js ├── InputNumber.js ├── InputPassword.js ├── InputRadio.js ├── InputSearch.js ├── InputSubmit.js ├── InputTelephone.js ├── InputText.js ├── InputUrl.js ├── Kbd.js ├── Label.js ├── Legend.js ├── Li.js ├── Main.js ├── Nav.js ├── Ol.js ├── P.js ├── Path.js ├── Polygon.js ├── Polyline.js ├── Pre.js ├── Progress.js ├── Q.js ├── Rect.js ├── S.js ├── Samp.js ├── Section.js ├── Select.js ├── Small.js ├── Span.js ├── Strong.js ├── Sub.js ├── Summary.js ├── Sup.js ├── Svg.js ├── Table.js ├── Tbody.js ├── Td.js ├── Textarea.js ├── Tfoot.js ├── Th.js ├── Thead.js ├── Time.js ├── Tr.js ├── U.js ├── Ul.js ├── Var.js └── index.js ├── env-config.js ├── img ├── city.jpg ├── jkl.jpg ├── logo.svg └── photo.jpg ├── jsx.js ├── next.config.js ├── package.json ├── pages ├── _app.js ├── _document.js ├── advice-on-change.md ├── chaos-design.js ├── common-vim.md ├── component-styling-api.md ├── components-ai.js ├── design-reading.md ├── design-systems.md ├── developing-ui.md ├── dogma.md ├── essential-vim-plugins.md ├── getting-critiqued.md ├── good-css.md ├── index.js ├── learning-css.md ├── line-height.md ├── living-with-jxnblk.md ├── mobile-first-css.md ├── randoma11y.md ├── reading-material.md ├── scalable-css.md ├── the-veil-of-ignorance.md ├── too-many-tools.md ├── vim-as-a-design-tool.md ├── web-design-procss.md ├── webfonts.mdx ├── what-are-classes-for.md └── what-is-css-for.md ├── theme.js └── yarn.lock /.babelrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/.babelrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | node_modules 3 | .next 4 | -------------------------------------------------------------------------------- /.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | https://mrmrs.cc/writing 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/README.md -------------------------------------------------------------------------------- /components/BlockLink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/components/BlockLink.js -------------------------------------------------------------------------------- /components/Container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/components/Container.js -------------------------------------------------------------------------------- /components/Flex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/components/Flex.js -------------------------------------------------------------------------------- /components/PostHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/components/PostHeader.js -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | https://mrmrs.cc/writing 2 | -------------------------------------------------------------------------------- /docs/_next/static/3CQjeo_UXtpFrWg8sBpOH/pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/3CQjeo_UXtpFrWg8sBpOH/pages/_app.js -------------------------------------------------------------------------------- /docs/_next/static/3CQjeo_UXtpFrWg8sBpOH/pages/_error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/3CQjeo_UXtpFrWg8sBpOH/pages/_error.js -------------------------------------------------------------------------------- /docs/_next/static/3CQjeo_UXtpFrWg8sBpOH/pages/advice-on-change.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/3CQjeo_UXtpFrWg8sBpOH/pages/advice-on-change.js -------------------------------------------------------------------------------- /docs/_next/static/3CQjeo_UXtpFrWg8sBpOH/pages/chaos-design.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/3CQjeo_UXtpFrWg8sBpOH/pages/chaos-design.js -------------------------------------------------------------------------------- /docs/_next/static/3CQjeo_UXtpFrWg8sBpOH/pages/common-vim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/3CQjeo_UXtpFrWg8sBpOH/pages/common-vim.js -------------------------------------------------------------------------------- /docs/_next/static/3CQjeo_UXtpFrWg8sBpOH/pages/component-styling-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/3CQjeo_UXtpFrWg8sBpOH/pages/component-styling-api.js -------------------------------------------------------------------------------- /docs/_next/static/3CQjeo_UXtpFrWg8sBpOH/pages/components-ai.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/3CQjeo_UXtpFrWg8sBpOH/pages/components-ai.js -------------------------------------------------------------------------------- /docs/_next/static/3CQjeo_UXtpFrWg8sBpOH/pages/design-reading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/3CQjeo_UXtpFrWg8sBpOH/pages/design-reading.js -------------------------------------------------------------------------------- /docs/_next/static/3CQjeo_UXtpFrWg8sBpOH/pages/design-systems.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/3CQjeo_UXtpFrWg8sBpOH/pages/design-systems.js -------------------------------------------------------------------------------- /docs/_next/static/3CQjeo_UXtpFrWg8sBpOH/pages/developing-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/3CQjeo_UXtpFrWg8sBpOH/pages/developing-ui.js -------------------------------------------------------------------------------- /docs/_next/static/3CQjeo_UXtpFrWg8sBpOH/pages/dogma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/3CQjeo_UXtpFrWg8sBpOH/pages/dogma.js -------------------------------------------------------------------------------- /docs/_next/static/3CQjeo_UXtpFrWg8sBpOH/pages/essential-vim-plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/3CQjeo_UXtpFrWg8sBpOH/pages/essential-vim-plugins.js -------------------------------------------------------------------------------- /docs/_next/static/3CQjeo_UXtpFrWg8sBpOH/pages/getting-critiqued.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/3CQjeo_UXtpFrWg8sBpOH/pages/getting-critiqued.js -------------------------------------------------------------------------------- /docs/_next/static/3CQjeo_UXtpFrWg8sBpOH/pages/good-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/3CQjeo_UXtpFrWg8sBpOH/pages/good-css.js -------------------------------------------------------------------------------- /docs/_next/static/3CQjeo_UXtpFrWg8sBpOH/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/3CQjeo_UXtpFrWg8sBpOH/pages/index.js -------------------------------------------------------------------------------- /docs/_next/static/3CQjeo_UXtpFrWg8sBpOH/pages/learning-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/3CQjeo_UXtpFrWg8sBpOH/pages/learning-css.js -------------------------------------------------------------------------------- /docs/_next/static/3CQjeo_UXtpFrWg8sBpOH/pages/line-height.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/3CQjeo_UXtpFrWg8sBpOH/pages/line-height.js -------------------------------------------------------------------------------- /docs/_next/static/3CQjeo_UXtpFrWg8sBpOH/pages/living-with-jxnblk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/3CQjeo_UXtpFrWg8sBpOH/pages/living-with-jxnblk.js -------------------------------------------------------------------------------- /docs/_next/static/3CQjeo_UXtpFrWg8sBpOH/pages/mobile-first-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/3CQjeo_UXtpFrWg8sBpOH/pages/mobile-first-css.js -------------------------------------------------------------------------------- /docs/_next/static/3CQjeo_UXtpFrWg8sBpOH/pages/randoma11y.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/3CQjeo_UXtpFrWg8sBpOH/pages/randoma11y.js -------------------------------------------------------------------------------- /docs/_next/static/3CQjeo_UXtpFrWg8sBpOH/pages/reading-material.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/3CQjeo_UXtpFrWg8sBpOH/pages/reading-material.js -------------------------------------------------------------------------------- /docs/_next/static/3CQjeo_UXtpFrWg8sBpOH/pages/scalable-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/3CQjeo_UXtpFrWg8sBpOH/pages/scalable-css.js -------------------------------------------------------------------------------- /docs/_next/static/3CQjeo_UXtpFrWg8sBpOH/pages/the-veil-of-ignorance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/3CQjeo_UXtpFrWg8sBpOH/pages/the-veil-of-ignorance.js -------------------------------------------------------------------------------- /docs/_next/static/3CQjeo_UXtpFrWg8sBpOH/pages/too-many-tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/3CQjeo_UXtpFrWg8sBpOH/pages/too-many-tools.js -------------------------------------------------------------------------------- /docs/_next/static/3CQjeo_UXtpFrWg8sBpOH/pages/vim-as-a-design-tool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/3CQjeo_UXtpFrWg8sBpOH/pages/vim-as-a-design-tool.js -------------------------------------------------------------------------------- /docs/_next/static/3CQjeo_UXtpFrWg8sBpOH/pages/web-design-procss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/3CQjeo_UXtpFrWg8sBpOH/pages/web-design-procss.js -------------------------------------------------------------------------------- /docs/_next/static/3CQjeo_UXtpFrWg8sBpOH/pages/webfonts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/3CQjeo_UXtpFrWg8sBpOH/pages/webfonts.js -------------------------------------------------------------------------------- /docs/_next/static/3CQjeo_UXtpFrWg8sBpOH/pages/what-are-classes-for.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/3CQjeo_UXtpFrWg8sBpOH/pages/what-are-classes-for.js -------------------------------------------------------------------------------- /docs/_next/static/3CQjeo_UXtpFrWg8sBpOH/pages/what-is-css-for.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/3CQjeo_UXtpFrWg8sBpOH/pages/what-is-css-for.js -------------------------------------------------------------------------------- /docs/_next/static/E8defA3CZu3RQS651Mxt5/pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/E8defA3CZu3RQS651Mxt5/pages/_app.js -------------------------------------------------------------------------------- /docs/_next/static/E8defA3CZu3RQS651Mxt5/pages/_error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/E8defA3CZu3RQS651Mxt5/pages/_error.js -------------------------------------------------------------------------------- /docs/_next/static/E8defA3CZu3RQS651Mxt5/pages/advice-on-change.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/E8defA3CZu3RQS651Mxt5/pages/advice-on-change.js -------------------------------------------------------------------------------- /docs/_next/static/E8defA3CZu3RQS651Mxt5/pages/chaos-design.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/E8defA3CZu3RQS651Mxt5/pages/chaos-design.js -------------------------------------------------------------------------------- /docs/_next/static/E8defA3CZu3RQS651Mxt5/pages/common-vim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/E8defA3CZu3RQS651Mxt5/pages/common-vim.js -------------------------------------------------------------------------------- /docs/_next/static/E8defA3CZu3RQS651Mxt5/pages/component-styling-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/E8defA3CZu3RQS651Mxt5/pages/component-styling-api.js -------------------------------------------------------------------------------- /docs/_next/static/E8defA3CZu3RQS651Mxt5/pages/components-ai.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/E8defA3CZu3RQS651Mxt5/pages/components-ai.js -------------------------------------------------------------------------------- /docs/_next/static/E8defA3CZu3RQS651Mxt5/pages/design-reading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/E8defA3CZu3RQS651Mxt5/pages/design-reading.js -------------------------------------------------------------------------------- /docs/_next/static/E8defA3CZu3RQS651Mxt5/pages/design-systems.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/E8defA3CZu3RQS651Mxt5/pages/design-systems.js -------------------------------------------------------------------------------- /docs/_next/static/E8defA3CZu3RQS651Mxt5/pages/developing-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/E8defA3CZu3RQS651Mxt5/pages/developing-ui.js -------------------------------------------------------------------------------- /docs/_next/static/E8defA3CZu3RQS651Mxt5/pages/dogma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/E8defA3CZu3RQS651Mxt5/pages/dogma.js -------------------------------------------------------------------------------- /docs/_next/static/E8defA3CZu3RQS651Mxt5/pages/essential-vim-plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/E8defA3CZu3RQS651Mxt5/pages/essential-vim-plugins.js -------------------------------------------------------------------------------- /docs/_next/static/E8defA3CZu3RQS651Mxt5/pages/getting-critiqued.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/E8defA3CZu3RQS651Mxt5/pages/getting-critiqued.js -------------------------------------------------------------------------------- /docs/_next/static/E8defA3CZu3RQS651Mxt5/pages/good-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/E8defA3CZu3RQS651Mxt5/pages/good-css.js -------------------------------------------------------------------------------- /docs/_next/static/E8defA3CZu3RQS651Mxt5/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/E8defA3CZu3RQS651Mxt5/pages/index.js -------------------------------------------------------------------------------- /docs/_next/static/E8defA3CZu3RQS651Mxt5/pages/learning-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/E8defA3CZu3RQS651Mxt5/pages/learning-css.js -------------------------------------------------------------------------------- /docs/_next/static/E8defA3CZu3RQS651Mxt5/pages/line-height.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/E8defA3CZu3RQS651Mxt5/pages/line-height.js -------------------------------------------------------------------------------- /docs/_next/static/E8defA3CZu3RQS651Mxt5/pages/living-with-jxnblk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/E8defA3CZu3RQS651Mxt5/pages/living-with-jxnblk.js -------------------------------------------------------------------------------- /docs/_next/static/E8defA3CZu3RQS651Mxt5/pages/mobile-first-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/E8defA3CZu3RQS651Mxt5/pages/mobile-first-css.js -------------------------------------------------------------------------------- /docs/_next/static/E8defA3CZu3RQS651Mxt5/pages/randoma11y.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/E8defA3CZu3RQS651Mxt5/pages/randoma11y.js -------------------------------------------------------------------------------- /docs/_next/static/E8defA3CZu3RQS651Mxt5/pages/reading-material.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/E8defA3CZu3RQS651Mxt5/pages/reading-material.js -------------------------------------------------------------------------------- /docs/_next/static/E8defA3CZu3RQS651Mxt5/pages/scalable-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/E8defA3CZu3RQS651Mxt5/pages/scalable-css.js -------------------------------------------------------------------------------- /docs/_next/static/E8defA3CZu3RQS651Mxt5/pages/the-veil-of-ignorance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/E8defA3CZu3RQS651Mxt5/pages/the-veil-of-ignorance.js -------------------------------------------------------------------------------- /docs/_next/static/E8defA3CZu3RQS651Mxt5/pages/too-many-tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/E8defA3CZu3RQS651Mxt5/pages/too-many-tools.js -------------------------------------------------------------------------------- /docs/_next/static/E8defA3CZu3RQS651Mxt5/pages/vim-as-a-design-tool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/E8defA3CZu3RQS651Mxt5/pages/vim-as-a-design-tool.js -------------------------------------------------------------------------------- /docs/_next/static/E8defA3CZu3RQS651Mxt5/pages/web-design-procss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/E8defA3CZu3RQS651Mxt5/pages/web-design-procss.js -------------------------------------------------------------------------------- /docs/_next/static/E8defA3CZu3RQS651Mxt5/pages/webfonts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/E8defA3CZu3RQS651Mxt5/pages/webfonts.js -------------------------------------------------------------------------------- /docs/_next/static/E8defA3CZu3RQS651Mxt5/pages/what-are-classes-for.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/E8defA3CZu3RQS651Mxt5/pages/what-are-classes-for.js -------------------------------------------------------------------------------- /docs/_next/static/E8defA3CZu3RQS651Mxt5/pages/what-is-css-for.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/E8defA3CZu3RQS651Mxt5/pages/what-is-css-for.js -------------------------------------------------------------------------------- /docs/_next/static/asg_WsY94HcFhQa3N-sAR/pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/asg_WsY94HcFhQa3N-sAR/pages/_app.js -------------------------------------------------------------------------------- /docs/_next/static/asg_WsY94HcFhQa3N-sAR/pages/_error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/asg_WsY94HcFhQa3N-sAR/pages/_error.js -------------------------------------------------------------------------------- /docs/_next/static/asg_WsY94HcFhQa3N-sAR/pages/advice-on-change.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/asg_WsY94HcFhQa3N-sAR/pages/advice-on-change.js -------------------------------------------------------------------------------- /docs/_next/static/asg_WsY94HcFhQa3N-sAR/pages/chaos-design.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/asg_WsY94HcFhQa3N-sAR/pages/chaos-design.js -------------------------------------------------------------------------------- /docs/_next/static/asg_WsY94HcFhQa3N-sAR/pages/common-vim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/asg_WsY94HcFhQa3N-sAR/pages/common-vim.js -------------------------------------------------------------------------------- /docs/_next/static/asg_WsY94HcFhQa3N-sAR/pages/component-styling-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/asg_WsY94HcFhQa3N-sAR/pages/component-styling-api.js -------------------------------------------------------------------------------- /docs/_next/static/asg_WsY94HcFhQa3N-sAR/pages/components-ai.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/asg_WsY94HcFhQa3N-sAR/pages/components-ai.js -------------------------------------------------------------------------------- /docs/_next/static/asg_WsY94HcFhQa3N-sAR/pages/design-reading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/asg_WsY94HcFhQa3N-sAR/pages/design-reading.js -------------------------------------------------------------------------------- /docs/_next/static/asg_WsY94HcFhQa3N-sAR/pages/design-systems.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/asg_WsY94HcFhQa3N-sAR/pages/design-systems.js -------------------------------------------------------------------------------- /docs/_next/static/asg_WsY94HcFhQa3N-sAR/pages/developing-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/asg_WsY94HcFhQa3N-sAR/pages/developing-ui.js -------------------------------------------------------------------------------- /docs/_next/static/asg_WsY94HcFhQa3N-sAR/pages/dogma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/asg_WsY94HcFhQa3N-sAR/pages/dogma.js -------------------------------------------------------------------------------- /docs/_next/static/asg_WsY94HcFhQa3N-sAR/pages/essential-vim-plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/asg_WsY94HcFhQa3N-sAR/pages/essential-vim-plugins.js -------------------------------------------------------------------------------- /docs/_next/static/asg_WsY94HcFhQa3N-sAR/pages/getting-critiqued.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/asg_WsY94HcFhQa3N-sAR/pages/getting-critiqued.js -------------------------------------------------------------------------------- /docs/_next/static/asg_WsY94HcFhQa3N-sAR/pages/good-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/asg_WsY94HcFhQa3N-sAR/pages/good-css.js -------------------------------------------------------------------------------- /docs/_next/static/asg_WsY94HcFhQa3N-sAR/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/asg_WsY94HcFhQa3N-sAR/pages/index.js -------------------------------------------------------------------------------- /docs/_next/static/asg_WsY94HcFhQa3N-sAR/pages/learning-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/asg_WsY94HcFhQa3N-sAR/pages/learning-css.js -------------------------------------------------------------------------------- /docs/_next/static/asg_WsY94HcFhQa3N-sAR/pages/line-height.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/asg_WsY94HcFhQa3N-sAR/pages/line-height.js -------------------------------------------------------------------------------- /docs/_next/static/asg_WsY94HcFhQa3N-sAR/pages/living-with-jxnblk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/asg_WsY94HcFhQa3N-sAR/pages/living-with-jxnblk.js -------------------------------------------------------------------------------- /docs/_next/static/asg_WsY94HcFhQa3N-sAR/pages/mobile-first-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/asg_WsY94HcFhQa3N-sAR/pages/mobile-first-css.js -------------------------------------------------------------------------------- /docs/_next/static/asg_WsY94HcFhQa3N-sAR/pages/randoma11y.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/asg_WsY94HcFhQa3N-sAR/pages/randoma11y.js -------------------------------------------------------------------------------- /docs/_next/static/asg_WsY94HcFhQa3N-sAR/pages/reading-material.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/asg_WsY94HcFhQa3N-sAR/pages/reading-material.js -------------------------------------------------------------------------------- /docs/_next/static/asg_WsY94HcFhQa3N-sAR/pages/scalable-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/asg_WsY94HcFhQa3N-sAR/pages/scalable-css.js -------------------------------------------------------------------------------- /docs/_next/static/asg_WsY94HcFhQa3N-sAR/pages/the-veil-of-ignorance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/asg_WsY94HcFhQa3N-sAR/pages/the-veil-of-ignorance.js -------------------------------------------------------------------------------- /docs/_next/static/asg_WsY94HcFhQa3N-sAR/pages/too-many-tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/asg_WsY94HcFhQa3N-sAR/pages/too-many-tools.js -------------------------------------------------------------------------------- /docs/_next/static/asg_WsY94HcFhQa3N-sAR/pages/vim-as-a-design-tool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/asg_WsY94HcFhQa3N-sAR/pages/vim-as-a-design-tool.js -------------------------------------------------------------------------------- /docs/_next/static/asg_WsY94HcFhQa3N-sAR/pages/web-design-procss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/asg_WsY94HcFhQa3N-sAR/pages/web-design-procss.js -------------------------------------------------------------------------------- /docs/_next/static/asg_WsY94HcFhQa3N-sAR/pages/webfonts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/asg_WsY94HcFhQa3N-sAR/pages/webfonts.js -------------------------------------------------------------------------------- /docs/_next/static/asg_WsY94HcFhQa3N-sAR/pages/what-are-classes-for.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/asg_WsY94HcFhQa3N-sAR/pages/what-are-classes-for.js -------------------------------------------------------------------------------- /docs/_next/static/asg_WsY94HcFhQa3N-sAR/pages/what-is-css-for.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/asg_WsY94HcFhQa3N-sAR/pages/what-is-css-for.js -------------------------------------------------------------------------------- /docs/_next/static/chunks/0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/chunks/0.js -------------------------------------------------------------------------------- /docs/_next/static/chunks/0.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/chunks/0.js.map -------------------------------------------------------------------------------- /docs/_next/static/chunks/commons.5d95a14873fce403f456.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/chunks/commons.5d95a14873fce403f456.js -------------------------------------------------------------------------------- /docs/_next/static/development/dll/dll_2011977376de5c4d4cfb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/development/dll/dll_2011977376de5c4d4cfb.js -------------------------------------------------------------------------------- /docs/_next/static/development/pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/development/pages/_app.js -------------------------------------------------------------------------------- /docs/_next/static/development/pages/_app.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/development/pages/_app.js.map -------------------------------------------------------------------------------- /docs/_next/static/development/pages/_error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/development/pages/_error.js -------------------------------------------------------------------------------- /docs/_next/static/development/pages/_error.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/development/pages/_error.js.map -------------------------------------------------------------------------------- /docs/_next/static/development/pages/chaos-design.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/development/pages/chaos-design.js.map -------------------------------------------------------------------------------- /docs/_next/static/development/pages/component-styling-api.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/development/pages/component-styling-api.js.map -------------------------------------------------------------------------------- /docs/_next/static/development/pages/components-ai.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/development/pages/components-ai.js.map -------------------------------------------------------------------------------- /docs/_next/static/development/pages/design-reading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/development/pages/design-reading.js -------------------------------------------------------------------------------- /docs/_next/static/development/pages/design-reading.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/development/pages/design-reading.js.map -------------------------------------------------------------------------------- /docs/_next/static/development/pages/getting-critiqued.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/development/pages/getting-critiqued.js.map -------------------------------------------------------------------------------- /docs/_next/static/development/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/development/pages/index.js -------------------------------------------------------------------------------- /docs/_next/static/development/pages/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/development/pages/index.js.map -------------------------------------------------------------------------------- /docs/_next/static/development/pages/next/dist/pages/_error.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/development/pages/next/dist/pages/_error.js.map -------------------------------------------------------------------------------- /docs/_next/static/fL05--B3MVOvdDL_16AkZ/pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/fL05--B3MVOvdDL_16AkZ/pages/_app.js -------------------------------------------------------------------------------- /docs/_next/static/fL05--B3MVOvdDL_16AkZ/pages/_error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/fL05--B3MVOvdDL_16AkZ/pages/_error.js -------------------------------------------------------------------------------- /docs/_next/static/fL05--B3MVOvdDL_16AkZ/pages/advice-on-change.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/fL05--B3MVOvdDL_16AkZ/pages/advice-on-change.js -------------------------------------------------------------------------------- /docs/_next/static/fL05--B3MVOvdDL_16AkZ/pages/chaos-design.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/fL05--B3MVOvdDL_16AkZ/pages/chaos-design.js -------------------------------------------------------------------------------- /docs/_next/static/fL05--B3MVOvdDL_16AkZ/pages/common-vim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/fL05--B3MVOvdDL_16AkZ/pages/common-vim.js -------------------------------------------------------------------------------- /docs/_next/static/fL05--B3MVOvdDL_16AkZ/pages/component-styling-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/fL05--B3MVOvdDL_16AkZ/pages/component-styling-api.js -------------------------------------------------------------------------------- /docs/_next/static/fL05--B3MVOvdDL_16AkZ/pages/components-ai.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/fL05--B3MVOvdDL_16AkZ/pages/components-ai.js -------------------------------------------------------------------------------- /docs/_next/static/fL05--B3MVOvdDL_16AkZ/pages/design-reading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/fL05--B3MVOvdDL_16AkZ/pages/design-reading.js -------------------------------------------------------------------------------- /docs/_next/static/fL05--B3MVOvdDL_16AkZ/pages/design-systems.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/fL05--B3MVOvdDL_16AkZ/pages/design-systems.js -------------------------------------------------------------------------------- /docs/_next/static/fL05--B3MVOvdDL_16AkZ/pages/developing-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/fL05--B3MVOvdDL_16AkZ/pages/developing-ui.js -------------------------------------------------------------------------------- /docs/_next/static/fL05--B3MVOvdDL_16AkZ/pages/dogma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/fL05--B3MVOvdDL_16AkZ/pages/dogma.js -------------------------------------------------------------------------------- /docs/_next/static/fL05--B3MVOvdDL_16AkZ/pages/essential-vim-plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/fL05--B3MVOvdDL_16AkZ/pages/essential-vim-plugins.js -------------------------------------------------------------------------------- /docs/_next/static/fL05--B3MVOvdDL_16AkZ/pages/getting-critiqued.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/fL05--B3MVOvdDL_16AkZ/pages/getting-critiqued.js -------------------------------------------------------------------------------- /docs/_next/static/fL05--B3MVOvdDL_16AkZ/pages/good-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/fL05--B3MVOvdDL_16AkZ/pages/good-css.js -------------------------------------------------------------------------------- /docs/_next/static/fL05--B3MVOvdDL_16AkZ/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/fL05--B3MVOvdDL_16AkZ/pages/index.js -------------------------------------------------------------------------------- /docs/_next/static/fL05--B3MVOvdDL_16AkZ/pages/learning-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/fL05--B3MVOvdDL_16AkZ/pages/learning-css.js -------------------------------------------------------------------------------- /docs/_next/static/fL05--B3MVOvdDL_16AkZ/pages/line-height.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/fL05--B3MVOvdDL_16AkZ/pages/line-height.js -------------------------------------------------------------------------------- /docs/_next/static/fL05--B3MVOvdDL_16AkZ/pages/living-with-jxnblk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/fL05--B3MVOvdDL_16AkZ/pages/living-with-jxnblk.js -------------------------------------------------------------------------------- /docs/_next/static/fL05--B3MVOvdDL_16AkZ/pages/mobile-first-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/fL05--B3MVOvdDL_16AkZ/pages/mobile-first-css.js -------------------------------------------------------------------------------- /docs/_next/static/fL05--B3MVOvdDL_16AkZ/pages/randoma11y.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/fL05--B3MVOvdDL_16AkZ/pages/randoma11y.js -------------------------------------------------------------------------------- /docs/_next/static/fL05--B3MVOvdDL_16AkZ/pages/reading-material.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/fL05--B3MVOvdDL_16AkZ/pages/reading-material.js -------------------------------------------------------------------------------- /docs/_next/static/fL05--B3MVOvdDL_16AkZ/pages/scalable-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/fL05--B3MVOvdDL_16AkZ/pages/scalable-css.js -------------------------------------------------------------------------------- /docs/_next/static/fL05--B3MVOvdDL_16AkZ/pages/the-veil-of-ignorance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/fL05--B3MVOvdDL_16AkZ/pages/the-veil-of-ignorance.js -------------------------------------------------------------------------------- /docs/_next/static/fL05--B3MVOvdDL_16AkZ/pages/too-many-tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/fL05--B3MVOvdDL_16AkZ/pages/too-many-tools.js -------------------------------------------------------------------------------- /docs/_next/static/fL05--B3MVOvdDL_16AkZ/pages/vim-as-a-design-tool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/fL05--B3MVOvdDL_16AkZ/pages/vim-as-a-design-tool.js -------------------------------------------------------------------------------- /docs/_next/static/fL05--B3MVOvdDL_16AkZ/pages/web-design-procss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/fL05--B3MVOvdDL_16AkZ/pages/web-design-procss.js -------------------------------------------------------------------------------- /docs/_next/static/fL05--B3MVOvdDL_16AkZ/pages/webfonts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/fL05--B3MVOvdDL_16AkZ/pages/webfonts.js -------------------------------------------------------------------------------- /docs/_next/static/fL05--B3MVOvdDL_16AkZ/pages/what-are-classes-for.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/fL05--B3MVOvdDL_16AkZ/pages/what-are-classes-for.js -------------------------------------------------------------------------------- /docs/_next/static/fL05--B3MVOvdDL_16AkZ/pages/what-is-css-for.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/fL05--B3MVOvdDL_16AkZ/pages/what-is-css-for.js -------------------------------------------------------------------------------- /docs/_next/static/runtime/amp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/runtime/amp.js -------------------------------------------------------------------------------- /docs/_next/static/runtime/amp.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/runtime/amp.js.map -------------------------------------------------------------------------------- /docs/_next/static/runtime/main-c29dd18b0819bc878f70.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/runtime/main-c29dd18b0819bc878f70.js -------------------------------------------------------------------------------- /docs/_next/static/runtime/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/runtime/main.js -------------------------------------------------------------------------------- /docs/_next/static/runtime/main.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/runtime/main.js.map -------------------------------------------------------------------------------- /docs/_next/static/runtime/webpack-a79426b5e11f0ba5879d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/runtime/webpack-a79426b5e11f0ba5879d.js -------------------------------------------------------------------------------- /docs/_next/static/runtime/webpack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/runtime/webpack.js -------------------------------------------------------------------------------- /docs/_next/static/runtime/webpack.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/runtime/webpack.js.map -------------------------------------------------------------------------------- /docs/_next/static/webpack/0048261267f994f36eee.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/0048261267f994f36eee.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/011adccf8b2b349a6fb1.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/011adccf8b2b349a6fb1.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/03dfd1bfe5f92ff1eb43.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/03dfd1bfe5f92ff1eb43.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/055aafe829831afb1e35.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/055aafe829831afb1e35.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/059467ac8041ddc2bbcd.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/059467ac8041ddc2bbcd.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/0665b2d23a61b17576da.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/0665b2d23a61b17576da.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/06cf66fd5c9cc5342823.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/06cf66fd5c9cc5342823.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/070a1661d456f85ec19a.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/070a1661d456f85ec19a.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/081dc4b46d8e922943cb.hot-update.json: -------------------------------------------------------------------------------- 1 | {"h":"364283d580da244d10bf","c":{}} -------------------------------------------------------------------------------- /docs/_next/static/webpack/0840fd3a0566e86ccace.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/0840fd3a0566e86ccace.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/0b2d05c035186c35039d.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/0b2d05c035186c35039d.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/0c3e9f8f9acfc5154b96.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/0c3e9f8f9acfc5154b96.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/0d6d5a796dc71a29d3f2.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/0d6d5a796dc71a29d3f2.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/0d9a3c2ca8d519a7a63f.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/0d9a3c2ca8d519a7a63f.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/0e2789eaa36923ad0168.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/0e2789eaa36923ad0168.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/0e4264db75dad4adae23.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/0e4264db75dad4adae23.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/138a24132ff4bbaabc73.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/138a24132ff4bbaabc73.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/146f6461beb9b4baec0f.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/146f6461beb9b4baec0f.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/165cc22091608cff608b.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/165cc22091608cff608b.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/172f6c268389c146d98b.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/172f6c268389c146d98b.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/1a33e8ffdd28dfeb1586.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/1a33e8ffdd28dfeb1586.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/1aff77d355b618df2324.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/1aff77d355b618df2324.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/1b869bce634a8e698d11.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/1b869bce634a8e698d11.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/1c2883db12da74be7aaf.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/1c2883db12da74be7aaf.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/1dbf55b075a2db8bc79f.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/1dbf55b075a2db8bc79f.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/1e67e8864d80752692cb.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/1e67e8864d80752692cb.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/1e72cf97604c52d4fcce.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/1e72cf97604c52d4fcce.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/1fceb218f779a63b2a01.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/1fceb218f779a63b2a01.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/1fe99719c04c9574a229.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/1fe99719c04c9574a229.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/205de5e47da65287473c.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/205de5e47da65287473c.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/213bb9d7de9517af72c8.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/213bb9d7de9517af72c8.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/22cebf36c805a75e5970.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/22cebf36c805a75e5970.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/23de5ab3fb222b5ad892.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/23de5ab3fb222b5ad892.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/24df7c37d47c0e080976.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/24df7c37d47c0e080976.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/2556612c55798d315089.hot-update.json: -------------------------------------------------------------------------------- 1 | {"h":"f784326d706136f2d124","c":{}} -------------------------------------------------------------------------------- /docs/_next/static/webpack/26ea9005daf1013bdf87.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/26ea9005daf1013bdf87.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/279afafcd5241f907f14.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/279afafcd5241f907f14.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/285d7e45f2cdf5876080.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/285d7e45f2cdf5876080.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/28ebc397900e960ae531.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/28ebc397900e960ae531.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/2aea372dab314cc06ef7.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/2aea372dab314cc06ef7.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/2eaa6ab20da174f4ef01.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/2eaa6ab20da174f4ef01.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/2f910f26c423deb19f8b.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/2f910f26c423deb19f8b.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/2f99119ffbda434dea40.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/2f99119ffbda434dea40.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/2faa0a2d3d1949359d4e.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/2faa0a2d3d1949359d4e.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/302c2a712fb3ed0aff22.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/302c2a712fb3ed0aff22.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/305cb3c91fc0afdc9767.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/305cb3c91fc0afdc9767.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/306a273e2b69bbbf42da.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/306a273e2b69bbbf42da.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/30c00aff4c8116d64c15.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/30c00aff4c8116d64c15.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/31ed11f60ee8fd9c9293.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/31ed11f60ee8fd9c9293.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/3239bc830f8e8515d9a1.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/3239bc830f8e8515d9a1.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/32bf4a4d04c5ea5671dd.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/32bf4a4d04c5ea5671dd.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/34ac75a8276652681ba4.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/34ac75a8276652681ba4.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/35e405a22a0ad58aca3a.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/35e405a22a0ad58aca3a.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/364283d580da244d10bf.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/364283d580da244d10bf.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/3671c8b23f8edd2182f5.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/3671c8b23f8edd2182f5.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/36dc70a11a266c378c58.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/36dc70a11a266c378c58.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/3915eec81d5f0b9e87b2.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/3915eec81d5f0b9e87b2.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/396cde3d69612f9fef65.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/396cde3d69612f9fef65.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/3a00e418b172e0b20371.hot-update.json: -------------------------------------------------------------------------------- 1 | {"h":"698a782d12c6f81e04d9","c":{}} -------------------------------------------------------------------------------- /docs/_next/static/webpack/3a0f458a07f139be7e7e.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/3a0f458a07f139be7e7e.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/3a32d53d551cfb6f6a7e.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/3a32d53d551cfb6f6a7e.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/3aec1bc6b3ebfaeeb11d.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/3aec1bc6b3ebfaeeb11d.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/3c328d2d66fba948ecd1.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/3c328d2d66fba948ecd1.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/3d248e5643d25b35182d.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/3d248e5643d25b35182d.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/3e1a3d813f1bec5a8fda.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/3e1a3d813f1bec5a8fda.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/3e4f3316f8708a441475.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/3e4f3316f8708a441475.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/3f052686bc4df9e3d306.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/3f052686bc4df9e3d306.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/3f2d17d9c6b313c29ff4.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/3f2d17d9c6b313c29ff4.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/427da216d47a6385c1db.hot-update.json: -------------------------------------------------------------------------------- 1 | {"h":"65712f1116eec976503c","c":{}} -------------------------------------------------------------------------------- /docs/_next/static/webpack/441e743963f0e4137012.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/441e743963f0e4137012.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/4496f4338e910fbe0885.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/4496f4338e910fbe0885.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/4567eb334abfc6be8ef2.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/4567eb334abfc6be8ef2.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/46a4aeda7e6af836315d.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/46a4aeda7e6af836315d.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/47d6003f6805d4972bb5.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/47d6003f6805d4972bb5.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/49d2bf31b791d156a34c.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/49d2bf31b791d156a34c.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/4a119587f53db6cb61e0.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/4a119587f53db6cb61e0.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/4a674dc9d4d1c82617a9.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/4a674dc9d4d1c82617a9.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/4cd024ab53a2a74db47f.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/4cd024ab53a2a74db47f.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/4d02725df2432dff3993.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/4d02725df2432dff3993.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/4e004cef168f02aae09c.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/4e004cef168f02aae09c.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/4ef18666953166fac222.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/4ef18666953166fac222.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/53ec9dffa55a9e7c423b.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/53ec9dffa55a9e7c423b.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/54897949f1203c9d9aed.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/54897949f1203c9d9aed.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/551d44771ca80562ba9f.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/551d44771ca80562ba9f.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/55580a4c13b16cee517e.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/55580a4c13b16cee517e.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/56d112a02e656e7067cf.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/56d112a02e656e7067cf.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/58980e6a0da3d821736c.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/58980e6a0da3d821736c.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/58c3703145f5d92eac69.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/58c3703145f5d92eac69.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/594f610a3377bdaa255d.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/594f610a3377bdaa255d.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/597dc50ee85fb7d97fa8.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/597dc50ee85fb7d97fa8.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/59ffa4adaaa6482e250b.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/59ffa4adaaa6482e250b.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/5ad86523a198fff9579e.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/5ad86523a198fff9579e.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/5d4efcf165d444bc76fc.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/5d4efcf165d444bc76fc.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/5eb5f4b37afd4333234a.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/5eb5f4b37afd4333234a.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/5f7beb97c70f0919e19c.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/5f7beb97c70f0919e19c.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/6051fe5f89bdab0fde84.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/6051fe5f89bdab0fde84.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/610f086bee32d2a0aadb.hot-update.json: -------------------------------------------------------------------------------- 1 | {"h":"306a273e2b69bbbf42da","c":{}} -------------------------------------------------------------------------------- /docs/_next/static/webpack/617e585d1c8339fe17b5.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/617e585d1c8339fe17b5.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/631a099a77c9d0932b66.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/631a099a77c9d0932b66.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/638c966e2da610d3bcc6.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/638c966e2da610d3bcc6.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/64945242b9fb971cc6ed.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/64945242b9fb971cc6ed.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/65712f1116eec976503c.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/65712f1116eec976503c.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/672660edd42338b61317.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/672660edd42338b61317.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/68ce4fb244545253fa91.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/68ce4fb244545253fa91.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/6982e9d1f5641ec0a6af.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/6982e9d1f5641ec0a6af.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/698a782d12c6f81e04d9.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/698a782d12c6f81e04d9.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/6df18c1c6e2f55844045.hot-update.json: -------------------------------------------------------------------------------- 1 | {"h":"56d112a02e656e7067cf","c":{}} -------------------------------------------------------------------------------- /docs/_next/static/webpack/6e8658d55b03ff7c03b5.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/6e8658d55b03ff7c03b5.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/700f4eccf447be315bbc.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/700f4eccf447be315bbc.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/704e4710ca83d141edd7.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/704e4710ca83d141edd7.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/71347451f6198fd64d20.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/71347451f6198fd64d20.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/767b06a30b14c96b93b1.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/767b06a30b14c96b93b1.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/7753923949a9e7fb7d13.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/7753923949a9e7fb7d13.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/77854e3537f93aff503d.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/77854e3537f93aff503d.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/778cb4f7046d94adc2ee.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/778cb4f7046d94adc2ee.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/77e46e6a6580528f4a98.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/77e46e6a6580528f4a98.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/79552ca958a1ebe507d0.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/79552ca958a1ebe507d0.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/7a95f47c2cff9c26b813.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/7a95f47c2cff9c26b813.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/7e3cce21a2f9dae4d2fa.hot-update.json: -------------------------------------------------------------------------------- 1 | {"h":"f20d55838bd6ca954598","c":{}} -------------------------------------------------------------------------------- /docs/_next/static/webpack/7e5b0b21fa760e6d4458.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/7e5b0b21fa760e6d4458.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/805568adb9d2dc07086c.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/805568adb9d2dc07086c.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/8572e085abb877675e8e.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/8572e085abb877675e8e.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/879eefb9959b745b4b7a.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/879eefb9959b745b4b7a.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/8924ef619df74f404856.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/8924ef619df74f404856.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/8a8055c7da15cf3b09a2.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/8a8055c7da15cf3b09a2.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/8adcbffa6e4ee20b7b39.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/8adcbffa6e4ee20b7b39.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/8bed456447636619360c.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/8bed456447636619360c.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/8e4d3bf6f5aa8bab4f81.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/8e4d3bf6f5aa8bab4f81.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/8e91c004b944607abeb5.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/8e91c004b944607abeb5.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/925a1899eda2692e72ee.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/925a1899eda2692e72ee.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/9326c17774fbaf8680b6.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/9326c17774fbaf8680b6.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/95647be9fce482bd43bc.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/95647be9fce482bd43bc.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/95e3fcb56bbd317a9817.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/95e3fcb56bbd317a9817.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/97ae6bf8c8de1ca37253.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/97ae6bf8c8de1ca37253.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/9827ead01cc88946f512.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/9827ead01cc88946f512.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/984b5775aedc7e201e00.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/984b5775aedc7e201e00.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/9a8d642c71931d0c4228.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/9a8d642c71931d0c4228.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/9e1a2913d1c40644de38.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/9e1a2913d1c40644de38.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/a16ca1bebe5086376b1d.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/a16ca1bebe5086376b1d.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/a2239893a580ac406747.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/a2239893a580ac406747.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/a2ab9b99c0b0a6736934.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/a2ab9b99c0b0a6736934.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/a2c75b679ec063837ca4.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/a2c75b679ec063837ca4.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/a72201a084dc038ffce4.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/a72201a084dc038ffce4.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/a9491ed9e72ffed90547.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/a9491ed9e72ffed90547.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/a94d961f87dfcb25860f.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/a94d961f87dfcb25860f.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/aada849bcab260d6f448.hot-update.json: -------------------------------------------------------------------------------- 1 | {"h":"af98dedac617b80811e3","c":{}} -------------------------------------------------------------------------------- /docs/_next/static/webpack/ac9ba84995b418f4f4fb.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/ac9ba84995b418f4f4fb.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/ac9d2604902f20d7ff2b.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/ac9d2604902f20d7ff2b.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/ae54cac580891db582b8.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/ae54cac580891db582b8.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/aea7f85b7d7e91e55140.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/aea7f85b7d7e91e55140.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/af6d93e1193d10213825.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/af6d93e1193d10213825.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/af98dedac617b80811e3.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/af98dedac617b80811e3.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/afc8c991bd28d6953e97.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/afc8c991bd28d6953e97.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/b1b2523b1fd67dc9ece9.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/b1b2523b1fd67dc9ece9.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/b1df0248d9668010c623.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/b1df0248d9668010c623.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/b34adc17f140e5c936d8.hot-update.json: -------------------------------------------------------------------------------- 1 | {"h":"4d02725df2432dff3993","c":{}} -------------------------------------------------------------------------------- /docs/_next/static/webpack/b51b4aebd664c0f89107.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/b51b4aebd664c0f89107.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/b75d3813e9fa39df3e6c.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/b75d3813e9fa39df3e6c.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/b83efc627be441192b06.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/b83efc627be441192b06.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/b8c662b4e9e276bb8749.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/b8c662b4e9e276bb8749.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/b966ba742958e5363bed.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/b966ba742958e5363bed.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/b984e0b26ad7e19767f8.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/b984e0b26ad7e19767f8.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/b986191a5d437c4db4a7.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/b986191a5d437c4db4a7.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/ba42d7e5377e1f3425f5.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/ba42d7e5377e1f3425f5.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/bd2869fa91fc6dcb362d.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/bd2869fa91fc6dcb362d.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/be1962ab114dbcd22429.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/be1962ab114dbcd22429.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/be1ff9a01bba0cfe8e66.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/be1ff9a01bba0cfe8e66.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/c07312194cf5fbd05471.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/c07312194cf5fbd05471.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/c0836d5fb07f11528003.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/c0836d5fb07f11528003.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/c162f13f5dee56c11ef2.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/c162f13f5dee56c11ef2.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/c1c56057d705c173d0f7.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/c1c56057d705c173d0f7.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/c305ca4e0d068433d676.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/c305ca4e0d068433d676.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/c39a8d7b0cb5aa4c15c7.hot-update.json: -------------------------------------------------------------------------------- 1 | {"h":"9326c17774fbaf8680b6","c":{"static/development/pages/index.js":true}} -------------------------------------------------------------------------------- /docs/_next/static/webpack/c452f1b916138ee2f2cd.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/c452f1b916138ee2f2cd.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/c580c83093f1efc038a8.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/c580c83093f1efc038a8.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/c5a39f63bc63effa02b6.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/c5a39f63bc63effa02b6.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/c5f9fb1b020678199fc6.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/c5f9fb1b020678199fc6.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/c639cd9145a773ef9f59.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/c639cd9145a773ef9f59.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/c86e383122da98c22666.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/c86e383122da98c22666.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/ca7b68101f50ca649d38.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/ca7b68101f50ca649d38.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/cca39079edb98adf97ee.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/cca39079edb98adf97ee.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/ccdbbb6821969b06099a.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/ccdbbb6821969b06099a.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/cd2fa30c5ea78d665cdc.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/cd2fa30c5ea78d665cdc.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/ce2227996e40af603c6e.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/ce2227996e40af603c6e.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/d1aa48640beb75a93a61.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/d1aa48640beb75a93a61.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/d2753f0b48a5da965789.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/d2753f0b48a5da965789.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/d64f8e26fec5ba4f8338.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/d64f8e26fec5ba4f8338.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/d65b167806d10c7e10c3.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/d65b167806d10c7e10c3.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/d9d9d9e2729e0e520ae4.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/d9d9d9e2729e0e520ae4.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/da2f2de7b0ec589124ff.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/da2f2de7b0ec589124ff.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/da63f85b98b1084ea45e.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/da63f85b98b1084ea45e.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/daefbfcbf64cf0da1418.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/daefbfcbf64cf0da1418.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/dbecb89cbcc48cdac672.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/dbecb89cbcc48cdac672.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/dc0d75cef9fe54130297.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/dc0d75cef9fe54130297.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/dd23c80fa99512deab65.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/dd23c80fa99512deab65.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/e2a7370b52e1499c8255.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/e2a7370b52e1499c8255.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/e38f24af06ad1556a983.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/e38f24af06ad1556a983.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/e428f38813344af0469b.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/e428f38813344af0469b.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/e562fc3a599e3883365e.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/e562fc3a599e3883365e.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/ea0c84a19dfdcdf40b37.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/ea0c84a19dfdcdf40b37.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/eb294e661c1ac5cebb70.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/eb294e661c1ac5cebb70.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/ebdba0468fe6d22c3fc7.hot-update.json: -------------------------------------------------------------------------------- 1 | {"h":"6df18c1c6e2f55844045","c":{}} -------------------------------------------------------------------------------- /docs/_next/static/webpack/ebfc1752c306c8796450.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/ebfc1752c306c8796450.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/ed8d7e5e6fea4e5ff43e.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/ed8d7e5e6fea4e5ff43e.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/ee1a84bd0975156b5859.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/ee1a84bd0975156b5859.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/ef1538b93f1de1de2c77.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/ef1538b93f1de1de2c77.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/f0e24cb57ed42ef49fca.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/f0e24cb57ed42ef49fca.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/f1a0d32484b342d12327.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/f1a0d32484b342d12327.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/f20d55838bd6ca954598.hot-update.json: -------------------------------------------------------------------------------- 1 | {"h":"302c2a712fb3ed0aff22","c":{}} -------------------------------------------------------------------------------- /docs/_next/static/webpack/f38b7c6e76f10783d70d.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/f38b7c6e76f10783d70d.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/f515647f5e5fc0f42d03.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/f515647f5e5fc0f42d03.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/f72b31bec6b707acb4f9.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/f72b31bec6b707acb4f9.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/f784326d706136f2d124.hot-update.json: -------------------------------------------------------------------------------- 1 | {"h":"081dc4b46d8e922943cb","c":{}} -------------------------------------------------------------------------------- /docs/_next/static/webpack/f7e9bb2ad1e1eb1c3663.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/f7e9bb2ad1e1eb1c3663.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/f80a0b36be3e5333196d.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/f80a0b36be3e5333196d.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/f9c50ce9c2e1d0948054.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/f9c50ce9c2e1d0948054.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/f9e93f504bc8bbad7feb.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/f9e93f504bc8bbad7feb.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/ff883cbd8ab7490433a1.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/ff883cbd8ab7490433a1.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/ffda1664a1547a7a8173.hot-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/ffda1664a1547a7a8173.hot-update.json -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.0048261267f994f36eee.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.0048261267f994f36eee.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.011adccf8b2b349a6fb1.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.011adccf8b2b349a6fb1.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.03dfd1bfe5f92ff1eb43.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.03dfd1bfe5f92ff1eb43.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.055aafe829831afb1e35.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.055aafe829831afb1e35.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.059467ac8041ddc2bbcd.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.059467ac8041ddc2bbcd.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.0665b2d23a61b17576da.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.0665b2d23a61b17576da.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.06cf66fd5c9cc5342823.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.06cf66fd5c9cc5342823.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.070a1661d456f85ec19a.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.070a1661d456f85ec19a.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.0840fd3a0566e86ccace.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.0840fd3a0566e86ccace.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.0c3e9f8f9acfc5154b96.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.0c3e9f8f9acfc5154b96.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.0d6d5a796dc71a29d3f2.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.0d6d5a796dc71a29d3f2.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.0d9a3c2ca8d519a7a63f.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.0d9a3c2ca8d519a7a63f.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.0e2789eaa36923ad0168.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.0e2789eaa36923ad0168.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.0e4264db75dad4adae23.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.0e4264db75dad4adae23.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.138a24132ff4bbaabc73.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.138a24132ff4bbaabc73.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.146f6461beb9b4baec0f.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.146f6461beb9b4baec0f.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.165cc22091608cff608b.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.165cc22091608cff608b.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.172f6c268389c146d98b.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.172f6c268389c146d98b.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.1a33e8ffdd28dfeb1586.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.1a33e8ffdd28dfeb1586.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.1aff77d355b618df2324.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.1aff77d355b618df2324.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.1b869bce634a8e698d11.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.1b869bce634a8e698d11.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.1c2883db12da74be7aaf.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.1c2883db12da74be7aaf.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.1dbf55b075a2db8bc79f.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.1dbf55b075a2db8bc79f.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.1e67e8864d80752692cb.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.1e67e8864d80752692cb.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.1e72cf97604c52d4fcce.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.1e72cf97604c52d4fcce.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.1fceb218f779a63b2a01.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.1fceb218f779a63b2a01.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.205de5e47da65287473c.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.205de5e47da65287473c.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.213bb9d7de9517af72c8.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.213bb9d7de9517af72c8.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.22cebf36c805a75e5970.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.22cebf36c805a75e5970.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.23de5ab3fb222b5ad892.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.23de5ab3fb222b5ad892.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.24df7c37d47c0e080976.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.24df7c37d47c0e080976.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.26ea9005daf1013bdf87.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.26ea9005daf1013bdf87.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.279afafcd5241f907f14.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.279afafcd5241f907f14.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.285d7e45f2cdf5876080.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.285d7e45f2cdf5876080.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.28ebc397900e960ae531.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.28ebc397900e960ae531.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.2aea372dab314cc06ef7.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.2aea372dab314cc06ef7.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.2eaa6ab20da174f4ef01.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.2eaa6ab20da174f4ef01.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.2f910f26c423deb19f8b.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.2f910f26c423deb19f8b.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.2f99119ffbda434dea40.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.2f99119ffbda434dea40.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.2faa0a2d3d1949359d4e.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.2faa0a2d3d1949359d4e.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.302c2a712fb3ed0aff22.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.302c2a712fb3ed0aff22.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.305cb3c91fc0afdc9767.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.305cb3c91fc0afdc9767.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.30c00aff4c8116d64c15.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.30c00aff4c8116d64c15.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.31ed11f60ee8fd9c9293.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.31ed11f60ee8fd9c9293.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.3239bc830f8e8515d9a1.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.3239bc830f8e8515d9a1.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.32bf4a4d04c5ea5671dd.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.32bf4a4d04c5ea5671dd.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.34ac75a8276652681ba4.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.34ac75a8276652681ba4.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.35e405a22a0ad58aca3a.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.35e405a22a0ad58aca3a.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.3671c8b23f8edd2182f5.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.3671c8b23f8edd2182f5.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.36dc70a11a266c378c58.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.36dc70a11a266c378c58.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.3915eec81d5f0b9e87b2.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.3915eec81d5f0b9e87b2.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.3a0f458a07f139be7e7e.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.3a0f458a07f139be7e7e.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.3a32d53d551cfb6f6a7e.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.3a32d53d551cfb6f6a7e.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.3aec1bc6b3ebfaeeb11d.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.3aec1bc6b3ebfaeeb11d.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.3c328d2d66fba948ecd1.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.3c328d2d66fba948ecd1.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.3d248e5643d25b35182d.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.3d248e5643d25b35182d.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.3e1a3d813f1bec5a8fda.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.3e1a3d813f1bec5a8fda.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.3e4f3316f8708a441475.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.3e4f3316f8708a441475.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.3f052686bc4df9e3d306.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.3f052686bc4df9e3d306.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.3f2d17d9c6b313c29ff4.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.3f2d17d9c6b313c29ff4.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.441e743963f0e4137012.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.441e743963f0e4137012.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.4496f4338e910fbe0885.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.4496f4338e910fbe0885.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.4567eb334abfc6be8ef2.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.4567eb334abfc6be8ef2.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.46a4aeda7e6af836315d.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.46a4aeda7e6af836315d.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.47d6003f6805d4972bb5.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.47d6003f6805d4972bb5.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.49d2bf31b791d156a34c.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.49d2bf31b791d156a34c.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.4a119587f53db6cb61e0.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.4a119587f53db6cb61e0.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.4a674dc9d4d1c82617a9.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.4a674dc9d4d1c82617a9.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.4cd024ab53a2a74db47f.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.4cd024ab53a2a74db47f.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.4e004cef168f02aae09c.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.4e004cef168f02aae09c.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.4ef18666953166fac222.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.4ef18666953166fac222.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.53ec9dffa55a9e7c423b.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.53ec9dffa55a9e7c423b.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.54897949f1203c9d9aed.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.54897949f1203c9d9aed.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.551d44771ca80562ba9f.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.551d44771ca80562ba9f.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.55580a4c13b16cee517e.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.55580a4c13b16cee517e.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.58980e6a0da3d821736c.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.58980e6a0da3d821736c.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.58c3703145f5d92eac69.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.58c3703145f5d92eac69.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.594f610a3377bdaa255d.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.594f610a3377bdaa255d.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.597dc50ee85fb7d97fa8.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.597dc50ee85fb7d97fa8.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.59ffa4adaaa6482e250b.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.59ffa4adaaa6482e250b.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.5ad86523a198fff9579e.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.5ad86523a198fff9579e.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.5d4efcf165d444bc76fc.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.5d4efcf165d444bc76fc.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.5eb5f4b37afd4333234a.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.5eb5f4b37afd4333234a.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.5f7beb97c70f0919e19c.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.5f7beb97c70f0919e19c.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.6051fe5f89bdab0fde84.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.6051fe5f89bdab0fde84.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.617e585d1c8339fe17b5.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.617e585d1c8339fe17b5.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.631a099a77c9d0932b66.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.631a099a77c9d0932b66.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.638c966e2da610d3bcc6.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.638c966e2da610d3bcc6.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.64945242b9fb971cc6ed.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.64945242b9fb971cc6ed.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.672660edd42338b61317.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.672660edd42338b61317.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.68ce4fb244545253fa91.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.68ce4fb244545253fa91.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.6982e9d1f5641ec0a6af.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.6982e9d1f5641ec0a6af.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.6e8658d55b03ff7c03b5.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.6e8658d55b03ff7c03b5.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.700f4eccf447be315bbc.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.700f4eccf447be315bbc.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.704e4710ca83d141edd7.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.704e4710ca83d141edd7.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.71347451f6198fd64d20.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.71347451f6198fd64d20.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.767b06a30b14c96b93b1.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.767b06a30b14c96b93b1.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.7753923949a9e7fb7d13.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.7753923949a9e7fb7d13.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.77854e3537f93aff503d.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.77854e3537f93aff503d.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.778cb4f7046d94adc2ee.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.778cb4f7046d94adc2ee.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.77e46e6a6580528f4a98.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.77e46e6a6580528f4a98.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.79552ca958a1ebe507d0.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.79552ca958a1ebe507d0.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.7a95f47c2cff9c26b813.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.7a95f47c2cff9c26b813.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.7e5b0b21fa760e6d4458.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.7e5b0b21fa760e6d4458.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.805568adb9d2dc07086c.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.805568adb9d2dc07086c.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.8572e085abb877675e8e.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.8572e085abb877675e8e.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.879eefb9959b745b4b7a.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.879eefb9959b745b4b7a.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.8924ef619df74f404856.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.8924ef619df74f404856.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.8a8055c7da15cf3b09a2.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.8a8055c7da15cf3b09a2.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.8adcbffa6e4ee20b7b39.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.8adcbffa6e4ee20b7b39.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.8bed456447636619360c.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.8bed456447636619360c.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.8e4d3bf6f5aa8bab4f81.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.8e4d3bf6f5aa8bab4f81.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.8e91c004b944607abeb5.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.8e91c004b944607abeb5.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.925a1899eda2692e72ee.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.925a1899eda2692e72ee.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.95647be9fce482bd43bc.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.95647be9fce482bd43bc.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.95e3fcb56bbd317a9817.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.95e3fcb56bbd317a9817.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.97ae6bf8c8de1ca37253.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.97ae6bf8c8de1ca37253.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.9827ead01cc88946f512.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.9827ead01cc88946f512.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.984b5775aedc7e201e00.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.984b5775aedc7e201e00.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.9a8d642c71931d0c4228.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.9a8d642c71931d0c4228.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.9e1a2913d1c40644de38.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.9e1a2913d1c40644de38.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.a16ca1bebe5086376b1d.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.a16ca1bebe5086376b1d.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.a2239893a580ac406747.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.a2239893a580ac406747.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.a2ab9b99c0b0a6736934.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.a2ab9b99c0b0a6736934.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.a2c75b679ec063837ca4.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.a2c75b679ec063837ca4.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.a72201a084dc038ffce4.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.a72201a084dc038ffce4.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.a9491ed9e72ffed90547.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.a9491ed9e72ffed90547.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.a94d961f87dfcb25860f.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.a94d961f87dfcb25860f.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.ac9ba84995b418f4f4fb.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.ac9ba84995b418f4f4fb.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.ac9d2604902f20d7ff2b.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.ac9d2604902f20d7ff2b.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.ae54cac580891db582b8.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.ae54cac580891db582b8.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.aea7f85b7d7e91e55140.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.aea7f85b7d7e91e55140.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.af6d93e1193d10213825.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.af6d93e1193d10213825.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.afc8c991bd28d6953e97.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.afc8c991bd28d6953e97.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.b1b2523b1fd67dc9ece9.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.b1b2523b1fd67dc9ece9.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.b1df0248d9668010c623.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.b1df0248d9668010c623.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.b51b4aebd664c0f89107.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.b51b4aebd664c0f89107.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.b75d3813e9fa39df3e6c.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.b75d3813e9fa39df3e6c.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.b83efc627be441192b06.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.b83efc627be441192b06.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.b8c662b4e9e276bb8749.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.b8c662b4e9e276bb8749.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.b966ba742958e5363bed.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.b966ba742958e5363bed.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.b984e0b26ad7e19767f8.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.b984e0b26ad7e19767f8.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.b986191a5d437c4db4a7.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.b986191a5d437c4db4a7.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.ba42d7e5377e1f3425f5.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.ba42d7e5377e1f3425f5.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.bd2869fa91fc6dcb362d.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.bd2869fa91fc6dcb362d.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.be1962ab114dbcd22429.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.be1962ab114dbcd22429.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.be1ff9a01bba0cfe8e66.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.be1ff9a01bba0cfe8e66.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.c07312194cf5fbd05471.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.c07312194cf5fbd05471.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.c0836d5fb07f11528003.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.c0836d5fb07f11528003.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.c162f13f5dee56c11ef2.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.c162f13f5dee56c11ef2.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.c1c56057d705c173d0f7.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.c1c56057d705c173d0f7.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.c305ca4e0d068433d676.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.c305ca4e0d068433d676.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.c452f1b916138ee2f2cd.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.c452f1b916138ee2f2cd.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.c580c83093f1efc038a8.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.c580c83093f1efc038a8.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.c5a39f63bc63effa02b6.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.c5a39f63bc63effa02b6.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.c5f9fb1b020678199fc6.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.c5f9fb1b020678199fc6.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.c639cd9145a773ef9f59.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.c639cd9145a773ef9f59.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.c86e383122da98c22666.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.c86e383122da98c22666.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.ca7b68101f50ca649d38.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.ca7b68101f50ca649d38.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.cca39079edb98adf97ee.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.cca39079edb98adf97ee.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.ccdbbb6821969b06099a.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.ccdbbb6821969b06099a.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.cd2fa30c5ea78d665cdc.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.cd2fa30c5ea78d665cdc.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.ce2227996e40af603c6e.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.ce2227996e40af603c6e.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.d1aa48640beb75a93a61.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.d1aa48640beb75a93a61.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.d2753f0b48a5da965789.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.d2753f0b48a5da965789.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.d64f8e26fec5ba4f8338.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.d64f8e26fec5ba4f8338.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.d65b167806d10c7e10c3.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.d65b167806d10c7e10c3.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.d9d9d9e2729e0e520ae4.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.d9d9d9e2729e0e520ae4.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.da2f2de7b0ec589124ff.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.da2f2de7b0ec589124ff.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.da63f85b98b1084ea45e.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.da63f85b98b1084ea45e.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.daefbfcbf64cf0da1418.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.daefbfcbf64cf0da1418.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.dbecb89cbcc48cdac672.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.dbecb89cbcc48cdac672.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.dc0d75cef9fe54130297.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.dc0d75cef9fe54130297.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.dd23c80fa99512deab65.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.dd23c80fa99512deab65.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.e2a7370b52e1499c8255.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.e2a7370b52e1499c8255.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.e38f24af06ad1556a983.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.e38f24af06ad1556a983.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.e428f38813344af0469b.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.e428f38813344af0469b.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.e562fc3a599e3883365e.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.e562fc3a599e3883365e.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.ea0c84a19dfdcdf40b37.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.ea0c84a19dfdcdf40b37.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.eb294e661c1ac5cebb70.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.eb294e661c1ac5cebb70.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.ebfc1752c306c8796450.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.ebfc1752c306c8796450.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.ed8d7e5e6fea4e5ff43e.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.ed8d7e5e6fea4e5ff43e.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.ee1a84bd0975156b5859.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.ee1a84bd0975156b5859.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.ef1538b93f1de1de2c77.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.ef1538b93f1de1de2c77.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.f0e24cb57ed42ef49fca.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.f0e24cb57ed42ef49fca.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.f1a0d32484b342d12327.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.f1a0d32484b342d12327.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.f38b7c6e76f10783d70d.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.f38b7c6e76f10783d70d.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.f515647f5e5fc0f42d03.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.f515647f5e5fc0f42d03.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.f72b31bec6b707acb4f9.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.f72b31bec6b707acb4f9.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/design-reading.js.f7e9bb2ad1e1eb1c3663.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/design-reading.js.f7e9bb2ad1e1eb1c3663.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/index.js.0b2d05c035186c35039d.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/index.js.0b2d05c035186c35039d.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/index.js.0b2d05c035186c35039d.hot-update.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/index.js.0b2d05c035186c35039d.hot-update.js.map -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/index.js.1fe99719c04c9574a229.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/index.js.1fe99719c04c9574a229.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/index.js.1fe99719c04c9574a229.hot-update.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/index.js.1fe99719c04c9574a229.hot-update.js.map -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/index.js.306a273e2b69bbbf42da.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/index.js.306a273e2b69bbbf42da.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/index.js.306a273e2b69bbbf42da.hot-update.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/index.js.306a273e2b69bbbf42da.hot-update.js.map -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/index.js.65712f1116eec976503c.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/index.js.65712f1116eec976503c.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/index.js.65712f1116eec976503c.hot-update.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/index.js.65712f1116eec976503c.hot-update.js.map -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/index.js.c39a8d7b0cb5aa4c15c7.hot-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/index.js.c39a8d7b0cb5aa4c15c7.hot-update.js -------------------------------------------------------------------------------- /docs/_next/static/webpack/static/development/pages/index.js.c39a8d7b0cb5aa4c15c7.hot-update.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/_next/static/webpack/static/development/pages/index.js.c39a8d7b0cb5aa4c15c7.hot-update.js.map -------------------------------------------------------------------------------- /docs/advice-on-change/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/advice-on-change/index.html -------------------------------------------------------------------------------- /docs/chaos-design/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/chaos-design/index.html -------------------------------------------------------------------------------- /docs/common-vim/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/common-vim/index.html -------------------------------------------------------------------------------- /docs/component-styling-api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/component-styling-api/index.html -------------------------------------------------------------------------------- /docs/components-ai/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/components-ai/index.html -------------------------------------------------------------------------------- /docs/design-reading/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/design-reading/index.html -------------------------------------------------------------------------------- /docs/design-systems/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/design-systems/index.html -------------------------------------------------------------------------------- /docs/developing-ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/developing-ui/index.html -------------------------------------------------------------------------------- /docs/dogma/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/dogma/index.html -------------------------------------------------------------------------------- /docs/essential-vim-plugins/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/essential-vim-plugins/index.html -------------------------------------------------------------------------------- /docs/getting-critiqued/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/getting-critiqued/index.html -------------------------------------------------------------------------------- /docs/good-css/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/good-css/index.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/learning-css/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/learning-css/index.html -------------------------------------------------------------------------------- /docs/line-height/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/line-height/index.html -------------------------------------------------------------------------------- /docs/living-with-jxnblk/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/living-with-jxnblk/index.html -------------------------------------------------------------------------------- /docs/mobile-first-css/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/mobile-first-css/index.html -------------------------------------------------------------------------------- /docs/reading-material/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/reading-material/index.html -------------------------------------------------------------------------------- /docs/scalable-css/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/scalable-css/index.html -------------------------------------------------------------------------------- /docs/the-veil-of-ignorance/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/the-veil-of-ignorance/index.html -------------------------------------------------------------------------------- /docs/too-many-tools/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/too-many-tools/index.html -------------------------------------------------------------------------------- /docs/vim-as-a-design-tool/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/vim-as-a-design-tool/index.html -------------------------------------------------------------------------------- /docs/web-design-procss/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/web-design-procss/index.html -------------------------------------------------------------------------------- /docs/webfonts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/webfonts/index.html -------------------------------------------------------------------------------- /docs/what-are-classes-for/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/what-are-classes-for/index.html -------------------------------------------------------------------------------- /docs/what-is-css-for/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/docs/what-is-css-for/index.html -------------------------------------------------------------------------------- /elements/A.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/A.js -------------------------------------------------------------------------------- /elements/Abbr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/Abbr.js -------------------------------------------------------------------------------- /elements/Address.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/Address.js -------------------------------------------------------------------------------- /elements/Article.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/Article.js -------------------------------------------------------------------------------- /elements/Aside.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/Aside.js -------------------------------------------------------------------------------- /elements/B.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/B.js -------------------------------------------------------------------------------- /elements/Br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/Br.js -------------------------------------------------------------------------------- /elements/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/Button.js -------------------------------------------------------------------------------- /elements/Circle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/Circle.js -------------------------------------------------------------------------------- /elements/Cite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/Cite.js -------------------------------------------------------------------------------- /elements/Code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/Code.js -------------------------------------------------------------------------------- /elements/Data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/Data.js -------------------------------------------------------------------------------- /elements/Dd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/Dd.js -------------------------------------------------------------------------------- /elements/Details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/Details.js -------------------------------------------------------------------------------- /elements/Div.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/Div.js -------------------------------------------------------------------------------- /elements/Dl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/Dl.js -------------------------------------------------------------------------------- /elements/Dt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/Dt.js -------------------------------------------------------------------------------- /elements/Em.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/Em.js -------------------------------------------------------------------------------- /elements/Fieldset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/Fieldset.js -------------------------------------------------------------------------------- /elements/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/Footer.js -------------------------------------------------------------------------------- /elements/Form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/Form.js -------------------------------------------------------------------------------- /elements/H1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/H1.js -------------------------------------------------------------------------------- /elements/H2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/H2.js -------------------------------------------------------------------------------- /elements/H3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/H3.js -------------------------------------------------------------------------------- /elements/H4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/H4.js -------------------------------------------------------------------------------- /elements/H5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/H5.js -------------------------------------------------------------------------------- /elements/H6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/H6.js -------------------------------------------------------------------------------- /elements/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/Header.js -------------------------------------------------------------------------------- /elements/Hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/Hr.js -------------------------------------------------------------------------------- /elements/I.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/I.js -------------------------------------------------------------------------------- /elements/Img.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/Img.js -------------------------------------------------------------------------------- /elements/Input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/Input.js -------------------------------------------------------------------------------- /elements/InputCheckbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/InputCheckbox.js -------------------------------------------------------------------------------- /elements/InputEmail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/InputEmail.js -------------------------------------------------------------------------------- /elements/InputFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/InputFile.js -------------------------------------------------------------------------------- /elements/InputNumber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/InputNumber.js -------------------------------------------------------------------------------- /elements/InputPassword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/InputPassword.js -------------------------------------------------------------------------------- /elements/InputRadio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/InputRadio.js -------------------------------------------------------------------------------- /elements/InputSearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/InputSearch.js -------------------------------------------------------------------------------- /elements/InputSubmit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/InputSubmit.js -------------------------------------------------------------------------------- /elements/InputTelephone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/InputTelephone.js -------------------------------------------------------------------------------- /elements/InputText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/InputText.js -------------------------------------------------------------------------------- /elements/InputUrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/InputUrl.js -------------------------------------------------------------------------------- /elements/Kbd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/Kbd.js -------------------------------------------------------------------------------- /elements/Label.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/Label.js -------------------------------------------------------------------------------- /elements/Legend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/Legend.js -------------------------------------------------------------------------------- /elements/Li.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/Li.js -------------------------------------------------------------------------------- /elements/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/Main.js -------------------------------------------------------------------------------- /elements/Nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/Nav.js -------------------------------------------------------------------------------- /elements/Ol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/Ol.js -------------------------------------------------------------------------------- /elements/P.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/P.js -------------------------------------------------------------------------------- /elements/Path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/Path.js -------------------------------------------------------------------------------- /elements/Polygon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/Polygon.js -------------------------------------------------------------------------------- /elements/Polyline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/Polyline.js -------------------------------------------------------------------------------- /elements/Pre.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/Pre.js -------------------------------------------------------------------------------- /elements/Progress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/Progress.js -------------------------------------------------------------------------------- /elements/Q.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/Q.js -------------------------------------------------------------------------------- /elements/Rect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/Rect.js -------------------------------------------------------------------------------- /elements/S.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/S.js -------------------------------------------------------------------------------- /elements/Samp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/Samp.js -------------------------------------------------------------------------------- /elements/Section.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/Section.js -------------------------------------------------------------------------------- /elements/Select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/Select.js -------------------------------------------------------------------------------- /elements/Small.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/Small.js -------------------------------------------------------------------------------- /elements/Span.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/Span.js -------------------------------------------------------------------------------- /elements/Strong.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/Strong.js -------------------------------------------------------------------------------- /elements/Sub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/Sub.js -------------------------------------------------------------------------------- /elements/Summary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/Summary.js -------------------------------------------------------------------------------- /elements/Sup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/Sup.js -------------------------------------------------------------------------------- /elements/Svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/Svg.js -------------------------------------------------------------------------------- /elements/Table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/Table.js -------------------------------------------------------------------------------- /elements/Tbody.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/Tbody.js -------------------------------------------------------------------------------- /elements/Td.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/Td.js -------------------------------------------------------------------------------- /elements/Textarea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/Textarea.js -------------------------------------------------------------------------------- /elements/Tfoot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/Tfoot.js -------------------------------------------------------------------------------- /elements/Th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/Th.js -------------------------------------------------------------------------------- /elements/Thead.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/Thead.js -------------------------------------------------------------------------------- /elements/Time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/Time.js -------------------------------------------------------------------------------- /elements/Tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/Tr.js -------------------------------------------------------------------------------- /elements/U.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/U.js -------------------------------------------------------------------------------- /elements/Ul.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/Ul.js -------------------------------------------------------------------------------- /elements/Var.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/Var.js -------------------------------------------------------------------------------- /elements/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/elements/index.js -------------------------------------------------------------------------------- /env-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/env-config.js -------------------------------------------------------------------------------- /img/city.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/img/city.jpg -------------------------------------------------------------------------------- /img/jkl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/img/jkl.jpg -------------------------------------------------------------------------------- /img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/img/logo.svg -------------------------------------------------------------------------------- /img/photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/img/photo.jpg -------------------------------------------------------------------------------- /jsx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/jsx.js -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/pages/_app.js -------------------------------------------------------------------------------- /pages/_document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/pages/_document.js -------------------------------------------------------------------------------- /pages/advice-on-change.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/pages/advice-on-change.md -------------------------------------------------------------------------------- /pages/chaos-design.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/pages/chaos-design.js -------------------------------------------------------------------------------- /pages/common-vim.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/pages/common-vim.md -------------------------------------------------------------------------------- /pages/component-styling-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/pages/component-styling-api.md -------------------------------------------------------------------------------- /pages/components-ai.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/pages/components-ai.js -------------------------------------------------------------------------------- /pages/design-reading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/pages/design-reading.md -------------------------------------------------------------------------------- /pages/design-systems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/pages/design-systems.md -------------------------------------------------------------------------------- /pages/developing-ui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/pages/developing-ui.md -------------------------------------------------------------------------------- /pages/dogma.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/pages/dogma.md -------------------------------------------------------------------------------- /pages/essential-vim-plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/pages/essential-vim-plugins.md -------------------------------------------------------------------------------- /pages/getting-critiqued.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/pages/getting-critiqued.md -------------------------------------------------------------------------------- /pages/good-css.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/pages/good-css.md -------------------------------------------------------------------------------- /pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/pages/index.js -------------------------------------------------------------------------------- /pages/learning-css.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/pages/learning-css.md -------------------------------------------------------------------------------- /pages/line-height.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/pages/line-height.md -------------------------------------------------------------------------------- /pages/living-with-jxnblk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/pages/living-with-jxnblk.md -------------------------------------------------------------------------------- /pages/mobile-first-css.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/pages/mobile-first-css.md -------------------------------------------------------------------------------- /pages/randoma11y.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/pages/randoma11y.md -------------------------------------------------------------------------------- /pages/reading-material.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/pages/reading-material.md -------------------------------------------------------------------------------- /pages/scalable-css.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/pages/scalable-css.md -------------------------------------------------------------------------------- /pages/the-veil-of-ignorance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/pages/the-veil-of-ignorance.md -------------------------------------------------------------------------------- /pages/too-many-tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/pages/too-many-tools.md -------------------------------------------------------------------------------- /pages/vim-as-a-design-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/pages/vim-as-a-design-tool.md -------------------------------------------------------------------------------- /pages/web-design-procss.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/pages/web-design-procss.md -------------------------------------------------------------------------------- /pages/webfonts.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/pages/webfonts.mdx -------------------------------------------------------------------------------- /pages/what-are-classes-for.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/pages/what-are-classes-for.md -------------------------------------------------------------------------------- /pages/what-is-css-for.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/pages/what-is-css-for.md -------------------------------------------------------------------------------- /theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/theme.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/writing/HEAD/yarn.lock --------------------------------------------------------------------------------