├── .eslintrc.json ├── .github ├── funding.yml └── workflows │ └── test.yml ├── .gitignore ├── .prettierignore ├── .prettierrc.cjs ├── components ├── ActiveLink │ └── ActiveLink.tsx ├── Button │ ├── Button.tsx │ └── styles.module.css ├── Footer │ ├── Footer.tsx │ └── styles.module.css ├── Header │ ├── Header.tsx │ ├── Logo.tsx │ └── styles.module.css ├── HeroButton │ ├── HeroButton.tsx │ └── styles.module.css ├── Layout │ ├── Layout.tsx │ ├── providers.tsx │ └── styles.module.css ├── Markdown │ ├── Markdown.tsx │ └── styles.module.css ├── MetaballVisualization │ ├── Body.ts │ ├── MetaballVisualization.tsx │ ├── MetaballViz.ts │ └── styles.module.css ├── PageHead │ └── PageHead.tsx └── WebGLSupportChecker │ └── WebGLSupportChecker.tsx ├── icons ├── Discord.tsx ├── GitHub.tsx ├── Twitter.tsx └── index.ts ├── lib ├── bootstrap.ts ├── config.ts └── markdown-to-html.ts ├── license ├── next.config.mjs ├── package.json ├── pages ├── _app.tsx ├── _document.tsx ├── about │ ├── index.tsx │ └── styles.module.css ├── index.module.css └── index.tsx ├── pnpm-lock.yaml ├── postcss.config.cjs ├── public ├── favicon.ico ├── icon.png ├── icon.svg ├── logo-dark.png ├── logo-light.png ├── robots.txt └── social.jpg ├── readme.md ├── store └── metaballs.ts ├── styles └── globals.css ├── tailwind.config.cjs └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.github/funding.yml: -------------------------------------------------------------------------------- 1 | github: [transitive-bullshit] 2 | -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/chatgpt-hackers/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/chatgpt-hackers/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | /.next/ 2 | -------------------------------------------------------------------------------- /.prettierrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/chatgpt-hackers/HEAD/.prettierrc.cjs -------------------------------------------------------------------------------- /components/ActiveLink/ActiveLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/chatgpt-hackers/HEAD/components/ActiveLink/ActiveLink.tsx -------------------------------------------------------------------------------- /components/Button/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/chatgpt-hackers/HEAD/components/Button/Button.tsx -------------------------------------------------------------------------------- /components/Button/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/chatgpt-hackers/HEAD/components/Button/styles.module.css -------------------------------------------------------------------------------- /components/Footer/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/chatgpt-hackers/HEAD/components/Footer/Footer.tsx -------------------------------------------------------------------------------- /components/Footer/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/chatgpt-hackers/HEAD/components/Footer/styles.module.css -------------------------------------------------------------------------------- /components/Header/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/chatgpt-hackers/HEAD/components/Header/Header.tsx -------------------------------------------------------------------------------- /components/Header/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/chatgpt-hackers/HEAD/components/Header/Logo.tsx -------------------------------------------------------------------------------- /components/Header/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/chatgpt-hackers/HEAD/components/Header/styles.module.css -------------------------------------------------------------------------------- /components/HeroButton/HeroButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/chatgpt-hackers/HEAD/components/HeroButton/HeroButton.tsx -------------------------------------------------------------------------------- /components/HeroButton/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/chatgpt-hackers/HEAD/components/HeroButton/styles.module.css -------------------------------------------------------------------------------- /components/Layout/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/chatgpt-hackers/HEAD/components/Layout/Layout.tsx -------------------------------------------------------------------------------- /components/Layout/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/chatgpt-hackers/HEAD/components/Layout/providers.tsx -------------------------------------------------------------------------------- /components/Layout/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/chatgpt-hackers/HEAD/components/Layout/styles.module.css -------------------------------------------------------------------------------- /components/Markdown/Markdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/chatgpt-hackers/HEAD/components/Markdown/Markdown.tsx -------------------------------------------------------------------------------- /components/Markdown/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/chatgpt-hackers/HEAD/components/Markdown/styles.module.css -------------------------------------------------------------------------------- /components/MetaballVisualization/Body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/chatgpt-hackers/HEAD/components/MetaballVisualization/Body.ts -------------------------------------------------------------------------------- /components/MetaballVisualization/MetaballVisualization.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/chatgpt-hackers/HEAD/components/MetaballVisualization/MetaballVisualization.tsx -------------------------------------------------------------------------------- /components/MetaballVisualization/MetaballViz.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/chatgpt-hackers/HEAD/components/MetaballVisualization/MetaballViz.ts -------------------------------------------------------------------------------- /components/MetaballVisualization/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/chatgpt-hackers/HEAD/components/MetaballVisualization/styles.module.css -------------------------------------------------------------------------------- /components/PageHead/PageHead.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/chatgpt-hackers/HEAD/components/PageHead/PageHead.tsx -------------------------------------------------------------------------------- /components/WebGLSupportChecker/WebGLSupportChecker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/chatgpt-hackers/HEAD/components/WebGLSupportChecker/WebGLSupportChecker.tsx -------------------------------------------------------------------------------- /icons/Discord.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/chatgpt-hackers/HEAD/icons/Discord.tsx -------------------------------------------------------------------------------- /icons/GitHub.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/chatgpt-hackers/HEAD/icons/GitHub.tsx -------------------------------------------------------------------------------- /icons/Twitter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/chatgpt-hackers/HEAD/icons/Twitter.tsx -------------------------------------------------------------------------------- /icons/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/chatgpt-hackers/HEAD/icons/index.ts -------------------------------------------------------------------------------- /lib/bootstrap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/chatgpt-hackers/HEAD/lib/bootstrap.ts -------------------------------------------------------------------------------- /lib/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/chatgpt-hackers/HEAD/lib/config.ts -------------------------------------------------------------------------------- /lib/markdown-to-html.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/chatgpt-hackers/HEAD/lib/markdown-to-html.ts -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/chatgpt-hackers/HEAD/license -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/chatgpt-hackers/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/chatgpt-hackers/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/chatgpt-hackers/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/chatgpt-hackers/HEAD/pages/_document.tsx -------------------------------------------------------------------------------- /pages/about/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/chatgpt-hackers/HEAD/pages/about/index.tsx -------------------------------------------------------------------------------- /pages/about/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/chatgpt-hackers/HEAD/pages/about/styles.module.css -------------------------------------------------------------------------------- /pages/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/chatgpt-hackers/HEAD/pages/index.module.css -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/chatgpt-hackers/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/chatgpt-hackers/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/chatgpt-hackers/HEAD/postcss.config.cjs -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/chatgpt-hackers/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/chatgpt-hackers/HEAD/public/icon.png -------------------------------------------------------------------------------- /public/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/chatgpt-hackers/HEAD/public/icon.svg -------------------------------------------------------------------------------- /public/logo-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/chatgpt-hackers/HEAD/public/logo-dark.png -------------------------------------------------------------------------------- /public/logo-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/chatgpt-hackers/HEAD/public/logo-light.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/chatgpt-hackers/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/social.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/chatgpt-hackers/HEAD/public/social.jpg -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/chatgpt-hackers/HEAD/readme.md -------------------------------------------------------------------------------- /store/metaballs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/chatgpt-hackers/HEAD/store/metaballs.ts -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/chatgpt-hackers/HEAD/styles/globals.css -------------------------------------------------------------------------------- /tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/chatgpt-hackers/HEAD/tailwind.config.cjs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/chatgpt-hackers/HEAD/tsconfig.json --------------------------------------------------------------------------------