├── .eslintrc.js ├── .eslintrc.json ├── .gitignore ├── .prettierrc ├── MIT-LICENSE ├── README.md ├── TODO.md ├── app ├── client │ ├── notes-cache.ts │ └── notes.ts ├── components │ ├── header.tsx │ ├── layout.tsx │ ├── note-backlink.tsx │ ├── note-links.tsx │ ├── note-markdown.tsx │ ├── note-preview-popover.tsx │ ├── note-preview.tsx │ ├── notes-browser-item.tsx │ ├── notes-browser.tsx │ ├── notes-fallback.tsx │ ├── notes.tsx │ └── portal-body.tsx ├── helpers │ ├── array.ts │ ├── markdown.tsx │ └── screen-size.ts └── interfaces │ └── note.ts ├── next-env.d.ts ├── next.config.js ├── notes ├── AI.md ├── About.md ├── Anthropocentric.md ├── Anti-rational Meme.md ├── Arrow's theorem.md ├── Bad Explanation.md ├── Beginning of Infinity.md ├── Blind Optimism.md ├── Blind Pessimism.md ├── Conjecture.md ├── Constructor.md ├── Creativity.md ├── Criticism.md ├── Culture.md ├── David Deutsch.md ├── Dynamic Societies.md ├── Emergent phenomena.md ├── Empiricism.md ├── Enlightenment.md ├── Error Correction.md ├── Evolution.md ├── Explanation.md ├── Fallibilism.md ├── Fallible.md ├── Good Explanation.md ├── Governing.md ├── Hard to vary.md ├── Inductivism.md ├── Infinity.md ├── Jump to Universality.md ├── Knowledge Creation.md ├── Knowledge Streams.md ├── Knowledge.md ├── Memes.md ├── Morality.md ├── Multiverse.md ├── Neo-Darwinism.md ├── Optimism.md ├── Parochial.md ├── People.md ├── Person.md ├── Popper.md ├── Preface.md ├── Principle of Mediocrity.md ├── Problems.md ├── Progress.md ├── Qualia.md ├── Rational Meme.md ├── Reach.md ├── Replicators.md ├── Science.md ├── Spaceship Earth.md ├── Static Societies.md ├── Sustainability.md ├── Technology.md ├── Testability.md ├── Universal Computation.md ├── Universal Constructor.md ├── Universal Explainers.md ├── Universal System.md ├── Universality.md ├── Unsustainable.md └── Wealth.md ├── package.json ├── pages ├── [...paths].tsx ├── _app.tsx ├── _document.tsx ├── api │ └── note.ts └── index.tsx ├── postcss.config.js ├── public ├── favicon.ico ├── twitter-card.png └── twitter-summary-card.png ├── server └── helpers │ ├── notes-cache.ts │ └── notes.ts ├── styles └── globals.css ├── tailwind.config.js ├── tsconfig.json └── yarn.lock /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/.prettierrc -------------------------------------------------------------------------------- /MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/MIT-LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/TODO.md -------------------------------------------------------------------------------- /app/client/notes-cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/app/client/notes-cache.ts -------------------------------------------------------------------------------- /app/client/notes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/app/client/notes.ts -------------------------------------------------------------------------------- /app/components/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/app/components/header.tsx -------------------------------------------------------------------------------- /app/components/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/app/components/layout.tsx -------------------------------------------------------------------------------- /app/components/note-backlink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/app/components/note-backlink.tsx -------------------------------------------------------------------------------- /app/components/note-links.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/app/components/note-links.tsx -------------------------------------------------------------------------------- /app/components/note-markdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/app/components/note-markdown.tsx -------------------------------------------------------------------------------- /app/components/note-preview-popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/app/components/note-preview-popover.tsx -------------------------------------------------------------------------------- /app/components/note-preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/app/components/note-preview.tsx -------------------------------------------------------------------------------- /app/components/notes-browser-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/app/components/notes-browser-item.tsx -------------------------------------------------------------------------------- /app/components/notes-browser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/app/components/notes-browser.tsx -------------------------------------------------------------------------------- /app/components/notes-fallback.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/app/components/notes-fallback.tsx -------------------------------------------------------------------------------- /app/components/notes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/app/components/notes.tsx -------------------------------------------------------------------------------- /app/components/portal-body.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/app/components/portal-body.tsx -------------------------------------------------------------------------------- /app/helpers/array.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/app/helpers/array.ts -------------------------------------------------------------------------------- /app/helpers/markdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/app/helpers/markdown.tsx -------------------------------------------------------------------------------- /app/helpers/screen-size.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/app/helpers/screen-size.ts -------------------------------------------------------------------------------- /app/interfaces/note.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/app/interfaces/note.ts -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/next.config.js -------------------------------------------------------------------------------- /notes/AI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/notes/AI.md -------------------------------------------------------------------------------- /notes/About.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/notes/About.md -------------------------------------------------------------------------------- /notes/Anthropocentric.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/notes/Anthropocentric.md -------------------------------------------------------------------------------- /notes/Anti-rational Meme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/notes/Anti-rational Meme.md -------------------------------------------------------------------------------- /notes/Arrow's theorem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/notes/Arrow's theorem.md -------------------------------------------------------------------------------- /notes/Bad Explanation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/notes/Bad Explanation.md -------------------------------------------------------------------------------- /notes/Beginning of Infinity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/notes/Beginning of Infinity.md -------------------------------------------------------------------------------- /notes/Blind Optimism.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/notes/Blind Optimism.md -------------------------------------------------------------------------------- /notes/Blind Pessimism.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/notes/Blind Pessimism.md -------------------------------------------------------------------------------- /notes/Conjecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/notes/Conjecture.md -------------------------------------------------------------------------------- /notes/Constructor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/notes/Constructor.md -------------------------------------------------------------------------------- /notes/Creativity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/notes/Creativity.md -------------------------------------------------------------------------------- /notes/Criticism.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/notes/Criticism.md -------------------------------------------------------------------------------- /notes/Culture.md: -------------------------------------------------------------------------------- 1 | # Culture 2 | 3 | A collection of [[Memes]]. -------------------------------------------------------------------------------- /notes/David Deutsch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/notes/David Deutsch.md -------------------------------------------------------------------------------- /notes/Dynamic Societies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/notes/Dynamic Societies.md -------------------------------------------------------------------------------- /notes/Emergent phenomena.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/notes/Emergent phenomena.md -------------------------------------------------------------------------------- /notes/Empiricism.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/notes/Empiricism.md -------------------------------------------------------------------------------- /notes/Enlightenment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/notes/Enlightenment.md -------------------------------------------------------------------------------- /notes/Error Correction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/notes/Error Correction.md -------------------------------------------------------------------------------- /notes/Evolution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/notes/Evolution.md -------------------------------------------------------------------------------- /notes/Explanation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/notes/Explanation.md -------------------------------------------------------------------------------- /notes/Fallibilism.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/notes/Fallibilism.md -------------------------------------------------------------------------------- /notes/Fallible.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/notes/Fallible.md -------------------------------------------------------------------------------- /notes/Good Explanation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/notes/Good Explanation.md -------------------------------------------------------------------------------- /notes/Governing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/notes/Governing.md -------------------------------------------------------------------------------- /notes/Hard to vary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/notes/Hard to vary.md -------------------------------------------------------------------------------- /notes/Inductivism.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/notes/Inductivism.md -------------------------------------------------------------------------------- /notes/Infinity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/notes/Infinity.md -------------------------------------------------------------------------------- /notes/Jump to Universality.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/notes/Jump to Universality.md -------------------------------------------------------------------------------- /notes/Knowledge Creation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/notes/Knowledge Creation.md -------------------------------------------------------------------------------- /notes/Knowledge Streams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/notes/Knowledge Streams.md -------------------------------------------------------------------------------- /notes/Knowledge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/notes/Knowledge.md -------------------------------------------------------------------------------- /notes/Memes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/notes/Memes.md -------------------------------------------------------------------------------- /notes/Morality.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/notes/Morality.md -------------------------------------------------------------------------------- /notes/Multiverse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/notes/Multiverse.md -------------------------------------------------------------------------------- /notes/Neo-Darwinism.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/notes/Neo-Darwinism.md -------------------------------------------------------------------------------- /notes/Optimism.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/notes/Optimism.md -------------------------------------------------------------------------------- /notes/Parochial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/notes/Parochial.md -------------------------------------------------------------------------------- /notes/People.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/notes/People.md -------------------------------------------------------------------------------- /notes/Person.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/notes/Person.md -------------------------------------------------------------------------------- /notes/Popper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/notes/Popper.md -------------------------------------------------------------------------------- /notes/Preface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/notes/Preface.md -------------------------------------------------------------------------------- /notes/Principle of Mediocrity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/notes/Principle of Mediocrity.md -------------------------------------------------------------------------------- /notes/Problems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/notes/Problems.md -------------------------------------------------------------------------------- /notes/Progress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/notes/Progress.md -------------------------------------------------------------------------------- /notes/Qualia.md: -------------------------------------------------------------------------------- 1 | # Qualia 2 | 3 | The subjective aspect of a sensation (e.g. Consciousness). -------------------------------------------------------------------------------- /notes/Rational Meme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/notes/Rational Meme.md -------------------------------------------------------------------------------- /notes/Reach.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/notes/Reach.md -------------------------------------------------------------------------------- /notes/Replicators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/notes/Replicators.md -------------------------------------------------------------------------------- /notes/Science.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/notes/Science.md -------------------------------------------------------------------------------- /notes/Spaceship Earth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/notes/Spaceship Earth.md -------------------------------------------------------------------------------- /notes/Static Societies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/notes/Static Societies.md -------------------------------------------------------------------------------- /notes/Sustainability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/notes/Sustainability.md -------------------------------------------------------------------------------- /notes/Technology.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/notes/Technology.md -------------------------------------------------------------------------------- /notes/Testability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/notes/Testability.md -------------------------------------------------------------------------------- /notes/Universal Computation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/notes/Universal Computation.md -------------------------------------------------------------------------------- /notes/Universal Constructor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/notes/Universal Constructor.md -------------------------------------------------------------------------------- /notes/Universal Explainers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/notes/Universal Explainers.md -------------------------------------------------------------------------------- /notes/Universal System.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/notes/Universal System.md -------------------------------------------------------------------------------- /notes/Universality.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/notes/Universality.md -------------------------------------------------------------------------------- /notes/Unsustainable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/notes/Unsustainable.md -------------------------------------------------------------------------------- /notes/Wealth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/notes/Wealth.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/package.json -------------------------------------------------------------------------------- /pages/[...paths].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/pages/[...paths].tsx -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/pages/_document.tsx -------------------------------------------------------------------------------- /pages/api/note.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/pages/api/note.ts -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/twitter-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/public/twitter-card.png -------------------------------------------------------------------------------- /public/twitter-summary-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/public/twitter-summary-card.png -------------------------------------------------------------------------------- /server/helpers/notes-cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/server/helpers/notes-cache.ts -------------------------------------------------------------------------------- /server/helpers/notes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/server/helpers/notes.ts -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/styles/globals.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-reflect/beginning-of-infinity/HEAD/yarn.lock --------------------------------------------------------------------------------