├── .env.sample ├── .eslintrc.js ├── .gitignore ├── .vscode ├── extensions.json └── settings.json ├── LICENSE ├── README.md ├── app ├── (components) │ ├── header.tsx │ └── works │ │ ├── bytebeat │ │ ├── combobox.tsx │ │ ├── detail.tsx │ │ └── index.tsx │ │ ├── chess │ │ ├── action.ts │ │ └── index.tsx │ │ ├── colormap-registry │ │ ├── detail.tsx │ │ ├── index.tsx │ │ └── modal.tsx │ │ ├── index.tsx │ │ ├── mp4 │ │ ├── detail.tsx │ │ ├── index.tsx │ │ ├── vhs-noise.tsx │ │ └── vhs-overlay.tsx │ │ ├── on-chain-music │ │ ├── detail.tsx │ │ ├── index.tsx │ │ └── modal.tsx │ │ ├── running │ │ ├── bar-chart.tsx │ │ ├── detail.tsx │ │ ├── heatmap.tsx │ │ └── index.tsx │ │ ├── tx-dot-cool │ │ ├── detail.tsx │ │ └── index.tsx │ │ ├── typing │ │ ├── detail.tsx │ │ └── index.tsx │ │ └── webp │ │ ├── detail.tsx │ │ └── index.tsx ├── api │ ├── blog │ │ └── views │ │ │ └── route.tsx │ ├── chess │ │ ├── asset │ │ │ └── [id] │ │ │ │ └── route.ts │ │ └── token │ │ │ └── [id] │ │ │ └── route.ts │ └── running │ │ └── mileage │ │ └── route.tsx ├── blog │ ├── (components) │ │ ├── frame.tsx │ │ ├── header │ │ │ ├── copy-link-button.tsx │ │ │ ├── index.tsx │ │ │ └── view-count.tsx │ │ └── nav-bar.tsx │ ├── (posts) │ │ ├── 1000-days-of-running │ │ │ ├── area-chart.tsx │ │ │ ├── bar-chart.tsx │ │ │ ├── client-components.tsx │ │ │ ├── data.ts │ │ │ ├── longest-run.tsx │ │ │ ├── page.mdx │ │ │ ├── random-global-path.tsx │ │ │ ├── scatter-plot.tsx │ │ │ └── total-distance.tsx │ │ ├── basic-bit-manipulation │ │ │ ├── graphics.tsx │ │ │ └── page.mdx │ │ ├── electric-prime │ │ │ ├── client-components.tsx │ │ │ ├── page.mdx │ │ │ └── prime.svg │ │ ├── on-chain-font │ │ │ ├── client-components.tsx │ │ │ ├── graphics.tsx │ │ │ └── page.mdx │ │ ├── on-chain-vs-onchain │ │ │ ├── client-components.tsx │ │ │ ├── graphics.tsx │ │ │ ├── mint-data.tsx │ │ │ └── page.mdx │ │ ├── on-chain-worlds-with-terrain-generation │ │ │ ├── client-components.tsx │ │ │ ├── graphics.tsx │ │ │ └── page.mdx │ │ ├── reward-checks │ │ │ ├── graphics.tsx │ │ │ └── page.mdx │ │ └── self-taught │ │ │ ├── (details) │ │ │ ├── details.tsx │ │ │ ├── fosbury-1.mdx │ │ │ ├── fosbury-2.mdx │ │ │ ├── ramanujan-1.mdx │ │ │ └── ramanujan-2.mdx │ │ │ ├── client-components.tsx │ │ │ └── page.mdx │ ├── feed.xml │ │ └── route.ts │ ├── layout.tsx │ ├── page.mdx │ ├── posts-list.tsx │ └── posts.ts ├── design │ ├── (components) │ │ ├── accordion-feature.tsx │ │ ├── component-feature.tsx │ │ ├── components-display │ │ │ ├── accordion.tsx │ │ │ └── index.tsx │ │ ├── nav-bar.tsx │ │ ├── page-nav.tsx │ │ ├── radio-feature.tsx │ │ └── tabs-feature.tsx │ ├── color │ │ ├── color-scale │ │ │ ├── index.tsx │ │ │ └── sample.tsx │ │ └── page.mdx │ ├── component │ │ ├── accordion │ │ │ ├── demo.tsx │ │ │ └── page.mdx │ │ ├── avatar │ │ │ ├── demo.tsx │ │ │ └── page.mdx │ │ ├── badge │ │ │ └── page.mdx │ │ ├── button │ │ │ └── page.mdx │ │ ├── checkbox │ │ │ └── page.mdx │ │ ├── code-block │ │ │ ├── page.mdx │ │ │ └── switcher-demo.tsx │ │ ├── hover-card │ │ │ └── page.mdx │ │ ├── input │ │ │ └── page.mdx │ │ ├── radio │ │ │ ├── demo.tsx │ │ │ └── page.mdx │ │ ├── select │ │ │ └── page.mdx │ │ ├── switch │ │ │ └── page.mdx │ │ ├── tabs │ │ │ ├── demo.tsx │ │ │ └── page.mdx │ │ ├── text-area │ │ │ └── page.mdx │ │ ├── toast │ │ │ └── page.mdx │ │ └── tooltip │ │ │ └── page.mdx │ ├── layout.tsx │ ├── libraries │ │ └── page.mdx │ └── page.mdx ├── error.tsx ├── favicon.ico ├── globals.css ├── layout.tsx ├── not-found.tsx ├── page.tsx └── web3-provider.tsx ├── components ├── common │ ├── chain-icon.tsx │ ├── chess-piece │ │ ├── index.tsx │ │ └── pieces.tsx │ ├── connect-button.tsx │ ├── fiveoutofnine-avatar.tsx │ ├── logo-icon │ │ ├── icons.tsx │ │ └── index.tsx │ ├── logo.tsx │ └── nav-bar.tsx ├── layouts │ ├── container.tsx │ └── error.tsx ├── templates │ ├── category-tag.tsx │ ├── clickable-tooltip.tsx │ ├── feature-display-minimal.tsx │ ├── feature-display.tsx │ ├── inline-audio.tsx │ ├── link-preview.tsx │ ├── mdx │ │ ├── a.tsx │ │ ├── article.tsx │ │ ├── blockquote.tsx │ │ ├── callout │ │ │ ├── index.tsx │ │ │ ├── styles.tsx │ │ │ └── types.tsx │ │ ├── code.tsx │ │ ├── grid.tsx │ │ ├── h1.tsx │ │ ├── h2.tsx │ │ ├── h3.tsx │ │ ├── hr.tsx │ │ ├── index.tsx │ │ ├── math-display.tsx │ │ ├── p.tsx │ │ └── toast-button.tsx │ ├── relative-date.tsx │ └── vocab.tsx └── ui │ ├── accordion │ ├── index.tsx │ ├── styles.tsx │ └── types.tsx │ ├── avatar │ ├── index.tsx │ ├── styles.tsx │ └── types.tsx │ ├── badge │ ├── index.tsx │ ├── styles.tsx │ └── types.tsx │ ├── button │ ├── index.tsx │ ├── styles.tsx │ └── types.tsx │ ├── checkbox │ ├── index.tsx │ ├── styles.tsx │ └── types.tsx │ ├── code-block │ ├── actions.tsx │ ├── index.tsx │ ├── language-logo │ │ ├── index.tsx │ │ └── logos.tsx │ ├── styles.tsx │ ├── theme.tsx │ └── types.tsx │ ├── command │ ├── index.tsx │ ├── styles.tsx │ └── types.tsx │ ├── dialog │ ├── index.tsx │ ├── styles.tsx │ └── types.tsx │ ├── drawer │ ├── index.tsx │ ├── styles.tsx │ └── types.tsx │ ├── dropdown │ ├── index.tsx │ ├── styles.tsx │ └── types.tsx │ ├── form │ ├── index.tsx │ └── types.tsx │ ├── hover-card │ ├── index.tsx │ ├── styles.tsx │ └── types.tsx │ ├── icon-button │ ├── index.tsx │ ├── styles.tsx │ └── types.tsx │ ├── index.tsx │ ├── input │ ├── index.tsx │ ├── styles.tsx │ └── types.tsx │ ├── popover │ ├── index.tsx │ ├── styles.tsx │ └── types.tsx │ ├── radio │ ├── index.tsx │ ├── styles.tsx │ └── types.tsx │ ├── select │ ├── index.tsx │ ├── styles.tsx │ └── types.tsx │ ├── switch │ ├── index.tsx │ ├── styles.tsx │ └── types.tsx │ ├── table │ ├── index.tsx │ ├── styles.tsx │ └── types.tsx │ ├── tabs │ ├── index.tsx │ ├── styles.tsx │ └── types.tsx │ ├── text-area │ ├── index.tsx │ ├── styles.tsx │ └── types.tsx │ ├── toast │ ├── index.tsx │ ├── styles.tsx │ └── types.tsx │ └── tooltip │ ├── index.tsx │ ├── styles.tsx │ └── types.tsx ├── drizzle.config.ts ├── environment.d.ts ├── lib ├── constants │ ├── bytebeat.ts │ ├── chess-nfts.tsx │ ├── cities.ts │ ├── colormaps.ts │ ├── on-chain-music.ts │ ├── site.tsx │ ├── typing.ts │ └── units.ts ├── db │ ├── index.ts │ └── schema.ts ├── hooks │ └── use-media-query.ts ├── schemas │ └── index.ts ├── services │ └── redis.ts ├── types │ ├── bytebeat.ts │ ├── chess.ts │ ├── cities.ts │ ├── colormap.ts │ ├── on-chain-music.ts │ ├── running.ts │ ├── site.ts │ └── units.ts └── utils │ ├── format-value-to-precision.ts │ ├── get-blog-page-metadata.ts │ ├── get-colormap-value.ts │ ├── get-design-page-metadata.ts │ ├── get-random-mp4-url.ts │ ├── get-random-webp-url.ts │ ├── index.ts │ └── validate-query.ts ├── mdx-components.tsx ├── migrations ├── 0000_steady_skin.sql ├── 0001_dry_dark_beast.sql ├── 0002_aspiring_inhumans.sql └── meta │ ├── 0000_snapshot.json │ ├── 0001_snapshot.json │ ├── 0002_snapshot.json │ └── _journal.json ├── next.config.mjs ├── package.json ├── pages └── api │ ├── og │ ├── blog.tsx │ └── design.tsx │ └── revalidate.ts ├── pnpm-lock.yaml ├── postcss.config.js ├── prettier.config.js ├── public ├── images │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ └── site.webmanifest ├── manifest.json └── static │ ├── blog │ ├── 1000-days-of-running │ │ └── pegasus41.webp │ ├── electric-prime │ │ └── image.png │ ├── on-chain-vs-onchain │ │ └── naive-implementation.svg │ ├── on-chain-worlds-with-terrain-generation │ │ ├── golf-base-2.svg │ │ └── henrik-multiple-perlin-maps.webp │ ├── reward-checks │ │ ├── fiveoutofnine-reward-check.webp │ │ └── knuth-reward-check.webp │ └── self-taught │ │ ├── fosbury-flop.webp │ │ └── straddle.webp │ ├── curta-wtf-preview.webp │ ├── electriccapital-com-preview.webp │ ├── fonts │ ├── FiraCode-VariableFont_wght.ttf │ ├── Inter-Medium-Subset.otf │ ├── Inter-Regular-Subset.otf │ ├── Inter-SemiBold-Subset.otf │ ├── Serpentine-Sans-ICG-Oblique.woff2 │ └── VCR_OSD_MONO_1.001.woff2 │ └── og │ ├── blog.png │ └── home.png ├── tailwind.config.cjs └── tsconfig.json /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/.env.sample -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/README.md -------------------------------------------------------------------------------- /app/(components)/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/(components)/header.tsx -------------------------------------------------------------------------------- /app/(components)/works/bytebeat/combobox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/(components)/works/bytebeat/combobox.tsx -------------------------------------------------------------------------------- /app/(components)/works/bytebeat/detail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/(components)/works/bytebeat/detail.tsx -------------------------------------------------------------------------------- /app/(components)/works/bytebeat/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/(components)/works/bytebeat/index.tsx -------------------------------------------------------------------------------- /app/(components)/works/chess/action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/(components)/works/chess/action.ts -------------------------------------------------------------------------------- /app/(components)/works/chess/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/(components)/works/chess/index.tsx -------------------------------------------------------------------------------- /app/(components)/works/colormap-registry/detail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/(components)/works/colormap-registry/detail.tsx -------------------------------------------------------------------------------- /app/(components)/works/colormap-registry/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/(components)/works/colormap-registry/index.tsx -------------------------------------------------------------------------------- /app/(components)/works/colormap-registry/modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/(components)/works/colormap-registry/modal.tsx -------------------------------------------------------------------------------- /app/(components)/works/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/(components)/works/index.tsx -------------------------------------------------------------------------------- /app/(components)/works/mp4/detail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/(components)/works/mp4/detail.tsx -------------------------------------------------------------------------------- /app/(components)/works/mp4/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/(components)/works/mp4/index.tsx -------------------------------------------------------------------------------- /app/(components)/works/mp4/vhs-noise.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/(components)/works/mp4/vhs-noise.tsx -------------------------------------------------------------------------------- /app/(components)/works/mp4/vhs-overlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/(components)/works/mp4/vhs-overlay.tsx -------------------------------------------------------------------------------- /app/(components)/works/on-chain-music/detail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/(components)/works/on-chain-music/detail.tsx -------------------------------------------------------------------------------- /app/(components)/works/on-chain-music/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/(components)/works/on-chain-music/index.tsx -------------------------------------------------------------------------------- /app/(components)/works/on-chain-music/modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/(components)/works/on-chain-music/modal.tsx -------------------------------------------------------------------------------- /app/(components)/works/running/bar-chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/(components)/works/running/bar-chart.tsx -------------------------------------------------------------------------------- /app/(components)/works/running/detail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/(components)/works/running/detail.tsx -------------------------------------------------------------------------------- /app/(components)/works/running/heatmap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/(components)/works/running/heatmap.tsx -------------------------------------------------------------------------------- /app/(components)/works/running/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/(components)/works/running/index.tsx -------------------------------------------------------------------------------- /app/(components)/works/tx-dot-cool/detail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/(components)/works/tx-dot-cool/detail.tsx -------------------------------------------------------------------------------- /app/(components)/works/tx-dot-cool/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/(components)/works/tx-dot-cool/index.tsx -------------------------------------------------------------------------------- /app/(components)/works/typing/detail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/(components)/works/typing/detail.tsx -------------------------------------------------------------------------------- /app/(components)/works/typing/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/(components)/works/typing/index.tsx -------------------------------------------------------------------------------- /app/(components)/works/webp/detail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/(components)/works/webp/detail.tsx -------------------------------------------------------------------------------- /app/(components)/works/webp/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/(components)/works/webp/index.tsx -------------------------------------------------------------------------------- /app/api/blog/views/route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/api/blog/views/route.tsx -------------------------------------------------------------------------------- /app/api/chess/asset/[id]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/api/chess/asset/[id]/route.ts -------------------------------------------------------------------------------- /app/api/chess/token/[id]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/api/chess/token/[id]/route.ts -------------------------------------------------------------------------------- /app/api/running/mileage/route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/api/running/mileage/route.tsx -------------------------------------------------------------------------------- /app/blog/(components)/frame.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/blog/(components)/frame.tsx -------------------------------------------------------------------------------- /app/blog/(components)/header/copy-link-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/blog/(components)/header/copy-link-button.tsx -------------------------------------------------------------------------------- /app/blog/(components)/header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/blog/(components)/header/index.tsx -------------------------------------------------------------------------------- /app/blog/(components)/header/view-count.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/blog/(components)/header/view-count.tsx -------------------------------------------------------------------------------- /app/blog/(components)/nav-bar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/blog/(components)/nav-bar.tsx -------------------------------------------------------------------------------- /app/blog/(posts)/1000-days-of-running/area-chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/blog/(posts)/1000-days-of-running/area-chart.tsx -------------------------------------------------------------------------------- /app/blog/(posts)/1000-days-of-running/bar-chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/blog/(posts)/1000-days-of-running/bar-chart.tsx -------------------------------------------------------------------------------- /app/blog/(posts)/1000-days-of-running/client-components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/blog/(posts)/1000-days-of-running/client-components.tsx -------------------------------------------------------------------------------- /app/blog/(posts)/1000-days-of-running/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/blog/(posts)/1000-days-of-running/data.ts -------------------------------------------------------------------------------- /app/blog/(posts)/1000-days-of-running/longest-run.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/blog/(posts)/1000-days-of-running/longest-run.tsx -------------------------------------------------------------------------------- /app/blog/(posts)/1000-days-of-running/page.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/blog/(posts)/1000-days-of-running/page.mdx -------------------------------------------------------------------------------- /app/blog/(posts)/1000-days-of-running/random-global-path.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/blog/(posts)/1000-days-of-running/random-global-path.tsx -------------------------------------------------------------------------------- /app/blog/(posts)/1000-days-of-running/scatter-plot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/blog/(posts)/1000-days-of-running/scatter-plot.tsx -------------------------------------------------------------------------------- /app/blog/(posts)/1000-days-of-running/total-distance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/blog/(posts)/1000-days-of-running/total-distance.tsx -------------------------------------------------------------------------------- /app/blog/(posts)/basic-bit-manipulation/graphics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/blog/(posts)/basic-bit-manipulation/graphics.tsx -------------------------------------------------------------------------------- /app/blog/(posts)/basic-bit-manipulation/page.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/blog/(posts)/basic-bit-manipulation/page.mdx -------------------------------------------------------------------------------- /app/blog/(posts)/electric-prime/client-components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/blog/(posts)/electric-prime/client-components.tsx -------------------------------------------------------------------------------- /app/blog/(posts)/electric-prime/page.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/blog/(posts)/electric-prime/page.mdx -------------------------------------------------------------------------------- /app/blog/(posts)/electric-prime/prime.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/blog/(posts)/electric-prime/prime.svg -------------------------------------------------------------------------------- /app/blog/(posts)/on-chain-font/client-components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/blog/(posts)/on-chain-font/client-components.tsx -------------------------------------------------------------------------------- /app/blog/(posts)/on-chain-font/graphics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/blog/(posts)/on-chain-font/graphics.tsx -------------------------------------------------------------------------------- /app/blog/(posts)/on-chain-font/page.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/blog/(posts)/on-chain-font/page.mdx -------------------------------------------------------------------------------- /app/blog/(posts)/on-chain-vs-onchain/client-components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/blog/(posts)/on-chain-vs-onchain/client-components.tsx -------------------------------------------------------------------------------- /app/blog/(posts)/on-chain-vs-onchain/graphics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/blog/(posts)/on-chain-vs-onchain/graphics.tsx -------------------------------------------------------------------------------- /app/blog/(posts)/on-chain-vs-onchain/mint-data.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/blog/(posts)/on-chain-vs-onchain/mint-data.tsx -------------------------------------------------------------------------------- /app/blog/(posts)/on-chain-vs-onchain/page.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/blog/(posts)/on-chain-vs-onchain/page.mdx -------------------------------------------------------------------------------- /app/blog/(posts)/on-chain-worlds-with-terrain-generation/client-components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/blog/(posts)/on-chain-worlds-with-terrain-generation/client-components.tsx -------------------------------------------------------------------------------- /app/blog/(posts)/on-chain-worlds-with-terrain-generation/graphics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/blog/(posts)/on-chain-worlds-with-terrain-generation/graphics.tsx -------------------------------------------------------------------------------- /app/blog/(posts)/on-chain-worlds-with-terrain-generation/page.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/blog/(posts)/on-chain-worlds-with-terrain-generation/page.mdx -------------------------------------------------------------------------------- /app/blog/(posts)/reward-checks/graphics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/blog/(posts)/reward-checks/graphics.tsx -------------------------------------------------------------------------------- /app/blog/(posts)/reward-checks/page.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/blog/(posts)/reward-checks/page.mdx -------------------------------------------------------------------------------- /app/blog/(posts)/self-taught/(details)/details.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/blog/(posts)/self-taught/(details)/details.tsx -------------------------------------------------------------------------------- /app/blog/(posts)/self-taught/(details)/fosbury-1.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/blog/(posts)/self-taught/(details)/fosbury-1.mdx -------------------------------------------------------------------------------- /app/blog/(posts)/self-taught/(details)/fosbury-2.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/blog/(posts)/self-taught/(details)/fosbury-2.mdx -------------------------------------------------------------------------------- /app/blog/(posts)/self-taught/(details)/ramanujan-1.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/blog/(posts)/self-taught/(details)/ramanujan-1.mdx -------------------------------------------------------------------------------- /app/blog/(posts)/self-taught/(details)/ramanujan-2.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/blog/(posts)/self-taught/(details)/ramanujan-2.mdx -------------------------------------------------------------------------------- /app/blog/(posts)/self-taught/client-components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/blog/(posts)/self-taught/client-components.tsx -------------------------------------------------------------------------------- /app/blog/(posts)/self-taught/page.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/blog/(posts)/self-taught/page.mdx -------------------------------------------------------------------------------- /app/blog/feed.xml/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/blog/feed.xml/route.ts -------------------------------------------------------------------------------- /app/blog/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/blog/layout.tsx -------------------------------------------------------------------------------- /app/blog/page.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/blog/page.mdx -------------------------------------------------------------------------------- /app/blog/posts-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/blog/posts-list.tsx -------------------------------------------------------------------------------- /app/blog/posts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/blog/posts.ts -------------------------------------------------------------------------------- /app/design/(components)/accordion-feature.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/design/(components)/accordion-feature.tsx -------------------------------------------------------------------------------- /app/design/(components)/component-feature.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/design/(components)/component-feature.tsx -------------------------------------------------------------------------------- /app/design/(components)/components-display/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/design/(components)/components-display/accordion.tsx -------------------------------------------------------------------------------- /app/design/(components)/components-display/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/design/(components)/components-display/index.tsx -------------------------------------------------------------------------------- /app/design/(components)/nav-bar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/design/(components)/nav-bar.tsx -------------------------------------------------------------------------------- /app/design/(components)/page-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/design/(components)/page-nav.tsx -------------------------------------------------------------------------------- /app/design/(components)/radio-feature.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/design/(components)/radio-feature.tsx -------------------------------------------------------------------------------- /app/design/(components)/tabs-feature.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/design/(components)/tabs-feature.tsx -------------------------------------------------------------------------------- /app/design/color/color-scale/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/design/color/color-scale/index.tsx -------------------------------------------------------------------------------- /app/design/color/color-scale/sample.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/design/color/color-scale/sample.tsx -------------------------------------------------------------------------------- /app/design/color/page.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/design/color/page.mdx -------------------------------------------------------------------------------- /app/design/component/accordion/demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/design/component/accordion/demo.tsx -------------------------------------------------------------------------------- /app/design/component/accordion/page.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/design/component/accordion/page.mdx -------------------------------------------------------------------------------- /app/design/component/avatar/demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/design/component/avatar/demo.tsx -------------------------------------------------------------------------------- /app/design/component/avatar/page.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/design/component/avatar/page.mdx -------------------------------------------------------------------------------- /app/design/component/badge/page.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/design/component/badge/page.mdx -------------------------------------------------------------------------------- /app/design/component/button/page.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/design/component/button/page.mdx -------------------------------------------------------------------------------- /app/design/component/checkbox/page.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/design/component/checkbox/page.mdx -------------------------------------------------------------------------------- /app/design/component/code-block/page.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/design/component/code-block/page.mdx -------------------------------------------------------------------------------- /app/design/component/code-block/switcher-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/design/component/code-block/switcher-demo.tsx -------------------------------------------------------------------------------- /app/design/component/hover-card/page.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/design/component/hover-card/page.mdx -------------------------------------------------------------------------------- /app/design/component/input/page.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/design/component/input/page.mdx -------------------------------------------------------------------------------- /app/design/component/radio/demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/design/component/radio/demo.tsx -------------------------------------------------------------------------------- /app/design/component/radio/page.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/design/component/radio/page.mdx -------------------------------------------------------------------------------- /app/design/component/select/page.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/design/component/select/page.mdx -------------------------------------------------------------------------------- /app/design/component/switch/page.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/design/component/switch/page.mdx -------------------------------------------------------------------------------- /app/design/component/tabs/demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/design/component/tabs/demo.tsx -------------------------------------------------------------------------------- /app/design/component/tabs/page.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/design/component/tabs/page.mdx -------------------------------------------------------------------------------- /app/design/component/text-area/page.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/design/component/text-area/page.mdx -------------------------------------------------------------------------------- /app/design/component/toast/page.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/design/component/toast/page.mdx -------------------------------------------------------------------------------- /app/design/component/tooltip/page.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/design/component/tooltip/page.mdx -------------------------------------------------------------------------------- /app/design/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/design/layout.tsx -------------------------------------------------------------------------------- /app/design/libraries/page.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/design/libraries/page.mdx -------------------------------------------------------------------------------- /app/design/page.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/design/page.mdx -------------------------------------------------------------------------------- /app/error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/error.tsx -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/not-found.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/page.tsx -------------------------------------------------------------------------------- /app/web3-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/app/web3-provider.tsx -------------------------------------------------------------------------------- /components/common/chain-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/common/chain-icon.tsx -------------------------------------------------------------------------------- /components/common/chess-piece/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/common/chess-piece/index.tsx -------------------------------------------------------------------------------- /components/common/chess-piece/pieces.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/common/chess-piece/pieces.tsx -------------------------------------------------------------------------------- /components/common/connect-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/common/connect-button.tsx -------------------------------------------------------------------------------- /components/common/fiveoutofnine-avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/common/fiveoutofnine-avatar.tsx -------------------------------------------------------------------------------- /components/common/logo-icon/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/common/logo-icon/icons.tsx -------------------------------------------------------------------------------- /components/common/logo-icon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/common/logo-icon/index.tsx -------------------------------------------------------------------------------- /components/common/logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/common/logo.tsx -------------------------------------------------------------------------------- /components/common/nav-bar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/common/nav-bar.tsx -------------------------------------------------------------------------------- /components/layouts/container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/layouts/container.tsx -------------------------------------------------------------------------------- /components/layouts/error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/layouts/error.tsx -------------------------------------------------------------------------------- /components/templates/category-tag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/templates/category-tag.tsx -------------------------------------------------------------------------------- /components/templates/clickable-tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/templates/clickable-tooltip.tsx -------------------------------------------------------------------------------- /components/templates/feature-display-minimal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/templates/feature-display-minimal.tsx -------------------------------------------------------------------------------- /components/templates/feature-display.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/templates/feature-display.tsx -------------------------------------------------------------------------------- /components/templates/inline-audio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/templates/inline-audio.tsx -------------------------------------------------------------------------------- /components/templates/link-preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/templates/link-preview.tsx -------------------------------------------------------------------------------- /components/templates/mdx/a.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/templates/mdx/a.tsx -------------------------------------------------------------------------------- /components/templates/mdx/article.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/templates/mdx/article.tsx -------------------------------------------------------------------------------- /components/templates/mdx/blockquote.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/templates/mdx/blockquote.tsx -------------------------------------------------------------------------------- /components/templates/mdx/callout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/templates/mdx/callout/index.tsx -------------------------------------------------------------------------------- /components/templates/mdx/callout/styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/templates/mdx/callout/styles.tsx -------------------------------------------------------------------------------- /components/templates/mdx/callout/types.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/templates/mdx/callout/types.tsx -------------------------------------------------------------------------------- /components/templates/mdx/code.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/templates/mdx/code.tsx -------------------------------------------------------------------------------- /components/templates/mdx/grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/templates/mdx/grid.tsx -------------------------------------------------------------------------------- /components/templates/mdx/h1.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/templates/mdx/h1.tsx -------------------------------------------------------------------------------- /components/templates/mdx/h2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/templates/mdx/h2.tsx -------------------------------------------------------------------------------- /components/templates/mdx/h3.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/templates/mdx/h3.tsx -------------------------------------------------------------------------------- /components/templates/mdx/hr.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/templates/mdx/hr.tsx -------------------------------------------------------------------------------- /components/templates/mdx/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/templates/mdx/index.tsx -------------------------------------------------------------------------------- /components/templates/mdx/math-display.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/templates/mdx/math-display.tsx -------------------------------------------------------------------------------- /components/templates/mdx/p.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/templates/mdx/p.tsx -------------------------------------------------------------------------------- /components/templates/mdx/toast-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/templates/mdx/toast-button.tsx -------------------------------------------------------------------------------- /components/templates/relative-date.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/templates/relative-date.tsx -------------------------------------------------------------------------------- /components/templates/vocab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/templates/vocab.tsx -------------------------------------------------------------------------------- /components/ui/accordion/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/accordion/index.tsx -------------------------------------------------------------------------------- /components/ui/accordion/styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/accordion/styles.tsx -------------------------------------------------------------------------------- /components/ui/accordion/types.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/accordion/types.tsx -------------------------------------------------------------------------------- /components/ui/avatar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/avatar/index.tsx -------------------------------------------------------------------------------- /components/ui/avatar/styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/avatar/styles.tsx -------------------------------------------------------------------------------- /components/ui/avatar/types.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/avatar/types.tsx -------------------------------------------------------------------------------- /components/ui/badge/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/badge/index.tsx -------------------------------------------------------------------------------- /components/ui/badge/styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/badge/styles.tsx -------------------------------------------------------------------------------- /components/ui/badge/types.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/badge/types.tsx -------------------------------------------------------------------------------- /components/ui/button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/button/index.tsx -------------------------------------------------------------------------------- /components/ui/button/styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/button/styles.tsx -------------------------------------------------------------------------------- /components/ui/button/types.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/button/types.tsx -------------------------------------------------------------------------------- /components/ui/checkbox/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/checkbox/index.tsx -------------------------------------------------------------------------------- /components/ui/checkbox/styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/checkbox/styles.tsx -------------------------------------------------------------------------------- /components/ui/checkbox/types.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/checkbox/types.tsx -------------------------------------------------------------------------------- /components/ui/code-block/actions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/code-block/actions.tsx -------------------------------------------------------------------------------- /components/ui/code-block/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/code-block/index.tsx -------------------------------------------------------------------------------- /components/ui/code-block/language-logo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/code-block/language-logo/index.tsx -------------------------------------------------------------------------------- /components/ui/code-block/language-logo/logos.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/code-block/language-logo/logos.tsx -------------------------------------------------------------------------------- /components/ui/code-block/styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/code-block/styles.tsx -------------------------------------------------------------------------------- /components/ui/code-block/theme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/code-block/theme.tsx -------------------------------------------------------------------------------- /components/ui/code-block/types.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/code-block/types.tsx -------------------------------------------------------------------------------- /components/ui/command/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/command/index.tsx -------------------------------------------------------------------------------- /components/ui/command/styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/command/styles.tsx -------------------------------------------------------------------------------- /components/ui/command/types.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/command/types.tsx -------------------------------------------------------------------------------- /components/ui/dialog/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/dialog/index.tsx -------------------------------------------------------------------------------- /components/ui/dialog/styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/dialog/styles.tsx -------------------------------------------------------------------------------- /components/ui/dialog/types.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/dialog/types.tsx -------------------------------------------------------------------------------- /components/ui/drawer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/drawer/index.tsx -------------------------------------------------------------------------------- /components/ui/drawer/styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/drawer/styles.tsx -------------------------------------------------------------------------------- /components/ui/drawer/types.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/drawer/types.tsx -------------------------------------------------------------------------------- /components/ui/dropdown/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/dropdown/index.tsx -------------------------------------------------------------------------------- /components/ui/dropdown/styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/dropdown/styles.tsx -------------------------------------------------------------------------------- /components/ui/dropdown/types.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/dropdown/types.tsx -------------------------------------------------------------------------------- /components/ui/form/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/form/index.tsx -------------------------------------------------------------------------------- /components/ui/form/types.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/form/types.tsx -------------------------------------------------------------------------------- /components/ui/hover-card/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/hover-card/index.tsx -------------------------------------------------------------------------------- /components/ui/hover-card/styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/hover-card/styles.tsx -------------------------------------------------------------------------------- /components/ui/hover-card/types.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/hover-card/types.tsx -------------------------------------------------------------------------------- /components/ui/icon-button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/icon-button/index.tsx -------------------------------------------------------------------------------- /components/ui/icon-button/styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/icon-button/styles.tsx -------------------------------------------------------------------------------- /components/ui/icon-button/types.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/icon-button/types.tsx -------------------------------------------------------------------------------- /components/ui/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/index.tsx -------------------------------------------------------------------------------- /components/ui/input/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/input/index.tsx -------------------------------------------------------------------------------- /components/ui/input/styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/input/styles.tsx -------------------------------------------------------------------------------- /components/ui/input/types.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/input/types.tsx -------------------------------------------------------------------------------- /components/ui/popover/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/popover/index.tsx -------------------------------------------------------------------------------- /components/ui/popover/styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/popover/styles.tsx -------------------------------------------------------------------------------- /components/ui/popover/types.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/popover/types.tsx -------------------------------------------------------------------------------- /components/ui/radio/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/radio/index.tsx -------------------------------------------------------------------------------- /components/ui/radio/styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/radio/styles.tsx -------------------------------------------------------------------------------- /components/ui/radio/types.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/radio/types.tsx -------------------------------------------------------------------------------- /components/ui/select/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/select/index.tsx -------------------------------------------------------------------------------- /components/ui/select/styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/select/styles.tsx -------------------------------------------------------------------------------- /components/ui/select/types.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/select/types.tsx -------------------------------------------------------------------------------- /components/ui/switch/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/switch/index.tsx -------------------------------------------------------------------------------- /components/ui/switch/styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/switch/styles.tsx -------------------------------------------------------------------------------- /components/ui/switch/types.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/switch/types.tsx -------------------------------------------------------------------------------- /components/ui/table/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/table/index.tsx -------------------------------------------------------------------------------- /components/ui/table/styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/table/styles.tsx -------------------------------------------------------------------------------- /components/ui/table/types.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/table/types.tsx -------------------------------------------------------------------------------- /components/ui/tabs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/tabs/index.tsx -------------------------------------------------------------------------------- /components/ui/tabs/styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/tabs/styles.tsx -------------------------------------------------------------------------------- /components/ui/tabs/types.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/tabs/types.tsx -------------------------------------------------------------------------------- /components/ui/text-area/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/text-area/index.tsx -------------------------------------------------------------------------------- /components/ui/text-area/styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/text-area/styles.tsx -------------------------------------------------------------------------------- /components/ui/text-area/types.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/text-area/types.tsx -------------------------------------------------------------------------------- /components/ui/toast/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/toast/index.tsx -------------------------------------------------------------------------------- /components/ui/toast/styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/toast/styles.tsx -------------------------------------------------------------------------------- /components/ui/toast/types.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/toast/types.tsx -------------------------------------------------------------------------------- /components/ui/tooltip/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/tooltip/index.tsx -------------------------------------------------------------------------------- /components/ui/tooltip/styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/tooltip/styles.tsx -------------------------------------------------------------------------------- /components/ui/tooltip/types.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/components/ui/tooltip/types.tsx -------------------------------------------------------------------------------- /drizzle.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/drizzle.config.ts -------------------------------------------------------------------------------- /environment.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/environment.d.ts -------------------------------------------------------------------------------- /lib/constants/bytebeat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/lib/constants/bytebeat.ts -------------------------------------------------------------------------------- /lib/constants/chess-nfts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/lib/constants/chess-nfts.tsx -------------------------------------------------------------------------------- /lib/constants/cities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/lib/constants/cities.ts -------------------------------------------------------------------------------- /lib/constants/colormaps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/lib/constants/colormaps.ts -------------------------------------------------------------------------------- /lib/constants/on-chain-music.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/lib/constants/on-chain-music.ts -------------------------------------------------------------------------------- /lib/constants/site.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/lib/constants/site.tsx -------------------------------------------------------------------------------- /lib/constants/typing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/lib/constants/typing.ts -------------------------------------------------------------------------------- /lib/constants/units.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/lib/constants/units.ts -------------------------------------------------------------------------------- /lib/db/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/lib/db/index.ts -------------------------------------------------------------------------------- /lib/db/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/lib/db/schema.ts -------------------------------------------------------------------------------- /lib/hooks/use-media-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/lib/hooks/use-media-query.ts -------------------------------------------------------------------------------- /lib/schemas/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/lib/schemas/index.ts -------------------------------------------------------------------------------- /lib/services/redis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/lib/services/redis.ts -------------------------------------------------------------------------------- /lib/types/bytebeat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/lib/types/bytebeat.ts -------------------------------------------------------------------------------- /lib/types/chess.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/lib/types/chess.ts -------------------------------------------------------------------------------- /lib/types/cities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/lib/types/cities.ts -------------------------------------------------------------------------------- /lib/types/colormap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/lib/types/colormap.ts -------------------------------------------------------------------------------- /lib/types/on-chain-music.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/lib/types/on-chain-music.ts -------------------------------------------------------------------------------- /lib/types/running.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/lib/types/running.ts -------------------------------------------------------------------------------- /lib/types/site.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/lib/types/site.ts -------------------------------------------------------------------------------- /lib/types/units.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/lib/types/units.ts -------------------------------------------------------------------------------- /lib/utils/format-value-to-precision.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/lib/utils/format-value-to-precision.ts -------------------------------------------------------------------------------- /lib/utils/get-blog-page-metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/lib/utils/get-blog-page-metadata.ts -------------------------------------------------------------------------------- /lib/utils/get-colormap-value.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/lib/utils/get-colormap-value.ts -------------------------------------------------------------------------------- /lib/utils/get-design-page-metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/lib/utils/get-design-page-metadata.ts -------------------------------------------------------------------------------- /lib/utils/get-random-mp4-url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/lib/utils/get-random-mp4-url.ts -------------------------------------------------------------------------------- /lib/utils/get-random-webp-url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/lib/utils/get-random-webp-url.ts -------------------------------------------------------------------------------- /lib/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/lib/utils/index.ts -------------------------------------------------------------------------------- /lib/utils/validate-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/lib/utils/validate-query.ts -------------------------------------------------------------------------------- /mdx-components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/mdx-components.tsx -------------------------------------------------------------------------------- /migrations/0000_steady_skin.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/migrations/0000_steady_skin.sql -------------------------------------------------------------------------------- /migrations/0001_dry_dark_beast.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/migrations/0001_dry_dark_beast.sql -------------------------------------------------------------------------------- /migrations/0002_aspiring_inhumans.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/migrations/0002_aspiring_inhumans.sql -------------------------------------------------------------------------------- /migrations/meta/0000_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/migrations/meta/0000_snapshot.json -------------------------------------------------------------------------------- /migrations/meta/0001_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/migrations/meta/0001_snapshot.json -------------------------------------------------------------------------------- /migrations/meta/0002_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/migrations/meta/0002_snapshot.json -------------------------------------------------------------------------------- /migrations/meta/_journal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/migrations/meta/_journal.json -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/package.json -------------------------------------------------------------------------------- /pages/api/og/blog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/pages/api/og/blog.tsx -------------------------------------------------------------------------------- /pages/api/og/design.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/pages/api/og/design.tsx -------------------------------------------------------------------------------- /pages/api/revalidate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/pages/api/revalidate.ts -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/postcss.config.js -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/prettier.config.js -------------------------------------------------------------------------------- /public/images/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/public/images/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/images/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/public/images/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/images/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/public/images/apple-touch-icon.png -------------------------------------------------------------------------------- /public/images/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/public/images/favicon-16x16.png -------------------------------------------------------------------------------- /public/images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/public/images/favicon-32x32.png -------------------------------------------------------------------------------- /public/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/public/images/favicon.ico -------------------------------------------------------------------------------- /public/images/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/public/images/site.webmanifest -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/static/blog/1000-days-of-running/pegasus41.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/public/static/blog/1000-days-of-running/pegasus41.webp -------------------------------------------------------------------------------- /public/static/blog/electric-prime/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/public/static/blog/electric-prime/image.png -------------------------------------------------------------------------------- /public/static/blog/on-chain-vs-onchain/naive-implementation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/public/static/blog/on-chain-vs-onchain/naive-implementation.svg -------------------------------------------------------------------------------- /public/static/blog/on-chain-worlds-with-terrain-generation/golf-base-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/public/static/blog/on-chain-worlds-with-terrain-generation/golf-base-2.svg -------------------------------------------------------------------------------- /public/static/blog/on-chain-worlds-with-terrain-generation/henrik-multiple-perlin-maps.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/public/static/blog/on-chain-worlds-with-terrain-generation/henrik-multiple-perlin-maps.webp -------------------------------------------------------------------------------- /public/static/blog/reward-checks/fiveoutofnine-reward-check.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/public/static/blog/reward-checks/fiveoutofnine-reward-check.webp -------------------------------------------------------------------------------- /public/static/blog/reward-checks/knuth-reward-check.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/public/static/blog/reward-checks/knuth-reward-check.webp -------------------------------------------------------------------------------- /public/static/blog/self-taught/fosbury-flop.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/public/static/blog/self-taught/fosbury-flop.webp -------------------------------------------------------------------------------- /public/static/blog/self-taught/straddle.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/public/static/blog/self-taught/straddle.webp -------------------------------------------------------------------------------- /public/static/curta-wtf-preview.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/public/static/curta-wtf-preview.webp -------------------------------------------------------------------------------- /public/static/electriccapital-com-preview.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/public/static/electriccapital-com-preview.webp -------------------------------------------------------------------------------- /public/static/fonts/FiraCode-VariableFont_wght.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/public/static/fonts/FiraCode-VariableFont_wght.ttf -------------------------------------------------------------------------------- /public/static/fonts/Inter-Medium-Subset.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/public/static/fonts/Inter-Medium-Subset.otf -------------------------------------------------------------------------------- /public/static/fonts/Inter-Regular-Subset.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/public/static/fonts/Inter-Regular-Subset.otf -------------------------------------------------------------------------------- /public/static/fonts/Inter-SemiBold-Subset.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/public/static/fonts/Inter-SemiBold-Subset.otf -------------------------------------------------------------------------------- /public/static/fonts/Serpentine-Sans-ICG-Oblique.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/public/static/fonts/Serpentine-Sans-ICG-Oblique.woff2 -------------------------------------------------------------------------------- /public/static/fonts/VCR_OSD_MONO_1.001.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/public/static/fonts/VCR_OSD_MONO_1.001.woff2 -------------------------------------------------------------------------------- /public/static/og/blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/public/static/og/blog.png -------------------------------------------------------------------------------- /public/static/og/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/public/static/og/home.png -------------------------------------------------------------------------------- /tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/tailwind.config.cjs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveoutofnine/www/HEAD/tsconfig.json --------------------------------------------------------------------------------