├── .dockerignore ├── .env.example ├── .gitattributes ├── .github ├── PULL_REQUEST_TEMPLATE.md ├── artifact_repository_cleanup_policy.json ├── deploy_script.sh └── workflows │ ├── cd_dev.yaml │ ├── cd_prod.yaml │ ├── cd_staging.yaml │ ├── verify_formatting.yaml │ └── verify_mdx_content.yaml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .vscode ├── extensions.json └── settings.json ├── CONTRIBUTING.md ├── Cargo.lock ├── Cargo.toml ├── Dockerfile ├── LICENSE ├── README.md ├── README_BIBLIOGRAPHY.md ├── absolute_bibliography.bib ├── app ├── (admin) │ └── admin │ │ ├── courses │ │ ├── [courseId] │ │ │ ├── course-details │ │ │ │ ├── [courseDetailsId] │ │ │ │ │ └── page.tsx │ │ │ │ └── new │ │ │ │ │ └── page.tsx │ │ │ ├── lessons │ │ │ │ ├── [lessonId] │ │ │ │ │ ├── lesson-content │ │ │ │ │ │ └── new │ │ │ │ │ │ │ └── page.tsx │ │ │ │ │ ├── lesson-material │ │ │ │ │ │ └── [lessonMaterialId] │ │ │ │ │ │ │ └── page.tsx │ │ │ │ │ ├── lesson-transcript │ │ │ │ │ │ └── new │ │ │ │ │ │ │ └── page.tsx │ │ │ │ │ └── page.tsx │ │ │ │ └── new │ │ │ │ │ └── page.tsx │ │ │ ├── page.tsx │ │ │ └── seminar-cohort │ │ │ │ └── [seminarCohortId] │ │ │ │ ├── page.tsx │ │ │ │ ├── seminar-cohort-details │ │ │ │ ├── [seminarCohortDetailsId] │ │ │ │ │ └── page.tsx │ │ │ │ └── new │ │ │ │ │ └── page.tsx │ │ │ │ └── seminars │ │ │ │ └── [seminarId] │ │ │ │ ├── page.tsx │ │ │ │ ├── seminar-content │ │ │ │ └── new │ │ │ │ │ └── page.tsx │ │ │ │ ├── seminar-material │ │ │ │ └── [seminarMaterialId] │ │ │ │ │ └── page.tsx │ │ │ │ └── seminar-transcript │ │ │ │ └── new │ │ │ │ └── page.tsx │ │ └── new │ │ │ └── page.tsx │ │ ├── layout.tsx │ │ ├── mng │ │ └── page.tsx │ │ └── page.tsx ├── (user) │ ├── billing │ │ └── page.tsx │ ├── layout.tsx │ └── purchase-success │ │ └── page.tsx ├── _meta.ts ├── api │ ├── auth │ │ └── [...nextauth] │ │ │ └── route.ts │ ├── stripe-webhook │ │ └── route.ts │ └── transcribe │ │ └── route.ts ├── articles │ └── [[...mdxPath]] │ │ └── page.tsx ├── courses │ ├── [courseSlug] │ │ ├── [lessonSlug] │ │ │ └── page.tsx │ │ ├── page.tsx │ │ └── seminars │ │ │ └── [seminarCohortYear] │ │ │ ├── [seminarOrder] │ │ │ └── page.tsx │ │ │ └── information │ │ │ └── page.tsx │ └── page.tsx ├── favicon.ico ├── globals.css ├── layout.tsx ├── middleware.ts ├── newsletter │ ├── page.tsx │ └── unsubscribe │ │ └── [newsletterId] │ │ └── page.tsx ├── not-found.ts ├── page.tsx ├── robots.ts ├── sitemap.ts ├── team │ └── page.tsx └── test │ └── page.tsx ├── bun.lock ├── content ├── _meta.ts ├── acknowledgements.mdx ├── articles │ ├── _meta.ts │ └── index.mdx ├── contributing │ ├── _meta.tsx │ ├── code-of-conduct.mdx │ ├── formatting.mdx │ ├── formatting │ │ ├── basic-markdown.md │ │ ├── extended-markdown.md │ │ └── nextra.mdx │ ├── github.mdx │ ├── github │ │ ├── conceptual-overview.mdx │ │ └── general-workflow.mdx │ ├── index.mdx │ ├── local-development.mdx │ ├── methodology.mdx │ └── why-these-tools.mdx ├── encyclopaedia-index │ ├── _meta.ts │ └── index.mdx ├── hegel │ ├── _meta.ts │ ├── guides │ │ ├── _meta.tsx │ │ ├── general-division-of-the-logic.mdx │ │ ├── index.mdx │ │ ├── presuppositionless-thinking.mdx │ │ └── science-of-logic-introduction.mdx │ ├── index.mdx │ └── reference │ │ ├── _annotations │ │ ├── _meta.ts │ │ └── textual.mdx │ │ ├── _critiques │ │ ├── _meta.ts │ │ ├── overview.mdx │ │ └── systemic-presuppositions.mdx │ │ ├── _meta.tsx │ │ ├── becoming │ │ ├── _meta.ts │ │ ├── development.mdx │ │ ├── overview.mdx │ │ └── sublation.mdx │ │ ├── being │ │ ├── _meta.ts │ │ ├── development.mdx │ │ └── overview.mdx │ │ ├── constitution │ │ ├── _meta.ts │ │ ├── development.mdx │ │ └── overview.mdx │ │ ├── determination │ │ ├── _meta.ts │ │ ├── development.mdx │ │ └── overview.mdx │ │ ├── existence │ │ ├── _meta.ts │ │ ├── development.mdx │ │ └── overview.mdx │ │ ├── index.mdx │ │ ├── limit │ │ ├── _meta.ts │ │ ├── development.mdx │ │ └── overview.mdx │ │ ├── mechanical-object │ │ ├── _meta.ts │ │ ├── first-paragraph.mdx │ │ ├── section-1.mdx │ │ ├── section-2.mdx │ │ └── section-3.mdx │ │ ├── mechanical-process │ │ ├── _meta.ts │ │ └── the-formal-mechanical-process │ │ │ ├── _meta.ts │ │ │ ├── section-one.mdx │ │ │ └── section-two.mdx │ │ ├── nothing │ │ ├── _meta.ts │ │ ├── development.mdx │ │ ├── difference-between-being-and-nothing.mdx │ │ └── overview.mdx │ │ ├── quality │ │ ├── _meta.ts │ │ ├── development.mdx │ │ └── overview.mdx │ │ ├── something-and-other │ │ ├── _meta.tsx │ │ ├── change-without-time.mdx │ │ ├── development.mdx │ │ ├── nothing-is-in-itself-without-the-other.mdx │ │ └── overview.mdx │ │ └── something │ │ ├── _meta.ts │ │ ├── development.mdx │ │ ├── overview.mdx │ │ └── why-something-rather-than-nothing.mdx ├── kant │ ├── _meta.ts │ ├── guides │ │ ├── _meta.ts │ │ └── index.mdx │ ├── index.mdx │ └── reference │ │ ├── _meta.ts │ │ └── index.mdx ├── privacy.mdx ├── spinoza │ ├── _meta.ts │ ├── guides │ │ ├── _meta.ts │ │ └── index.mdx │ ├── index.mdx │ └── reference │ │ ├── _meta.ts │ │ └── index.mdx ├── terms-symposia.mdx └── terms.mdx ├── cspell.json ├── eslint.config.mjs ├── features ├── billing │ ├── components │ │ ├── Billing.tsx │ │ └── VerifyPurchase.tsx │ ├── hooks │ │ └── useVerifyPurchase.ts │ └── server │ │ └── actions.ts ├── courses │ ├── components │ │ ├── CourseCard.tsx │ │ ├── CourseCardDeleteButton.tsx │ │ ├── CourseEnroll.tsx │ │ ├── CourseEnrollNowPage.tsx │ │ ├── CourseFrontPage.tsx │ │ ├── CourseLessonsSortable.tsx │ │ ├── CourseMaterialCard.tsx │ │ ├── CourseSeminarsSortable.tsx │ │ ├── CoursesDisplay.tsx │ │ ├── CreateNewSeminarCohortBtn.tsx │ │ ├── LessonFrontPage.tsx │ │ ├── SeminarCohortDetailsFrontPage.tsx │ │ ├── SeminarCohortsDropdown.tsx │ │ ├── SeminarCreateNewButton.tsx │ │ ├── SeminarFrontPage.tsx │ │ ├── SignInToBuyBtn.tsx │ │ ├── TableOfLessons.tsx │ │ ├── TableOfSeminarCohorts.tsx │ │ ├── forms │ │ │ ├── Checkbox.tsx │ │ │ ├── CourseForm.tsx │ │ │ ├── DateTimeInput.tsx │ │ │ ├── Field.tsx │ │ │ ├── ImageFileInput.tsx │ │ │ ├── Label.tsx │ │ │ ├── LessonForm.tsx │ │ │ ├── NumberInput.tsx │ │ │ ├── SeminarCohortForm.tsx │ │ │ ├── SubmitButton.tsx │ │ │ ├── SubmitInput.tsx │ │ │ ├── TextAreaInput.tsx │ │ │ ├── TextInput.tsx │ │ │ ├── VideoFileInput.tsx │ │ │ └── VideoForm.tsx │ │ └── tables │ │ │ └── SeminarParticipantsTable.tsx │ └── server │ │ └── actions.ts ├── editor │ ├── components │ │ ├── ButtonInsertTeacherProfile.tsx │ │ ├── ButtonInsertYouTube.tsx │ │ ├── Editor.tsx │ │ ├── EditorInternals.tsx │ │ └── EmbedTeacherProfile.tsx │ └── server │ │ └── actions.ts └── marketing │ ├── components │ ├── EncyclopaediaLanding.tsx │ ├── HeroBackground.tsx │ ├── InfoCard.tsx │ ├── Reviews.tsx │ ├── SPhilLanding.tsx │ ├── Stars.tsx │ ├── SubHeroBackground.tsx │ ├── SubdirectoryLanding.tsx │ ├── SubscribeToNewsletter.tsx │ └── Team.tsx │ ├── data │ └── reviews.json │ ├── server │ └── actions.ts │ └── utils │ └── delaunayFast.ts ├── lib ├── auth │ ├── authConfig.ts │ └── authFuncs.ts ├── bucket │ ├── bucketFuncs.ts │ └── bucketInit.ts ├── components │ ├── Analytics.tsx │ ├── CardTeamProfile.tsx │ ├── ImagePreloader.tsx │ ├── License.tsx │ ├── LogoAnimated.tsx │ ├── LogoOwl.tsx │ ├── MDXRenderer.tsx │ ├── Maintenance.tsx │ ├── SortableList.tsx │ ├── SymposiaCard.tsx │ ├── TextRevealCard.tsx │ ├── VideoDataLoader.tsx │ ├── VideoViewer.tsx │ ├── animations │ │ ├── BackgroundBoxes.tsx │ │ ├── FadeIn.tsx │ │ ├── GlowBoundary.tsx │ │ ├── Loading.tsx │ │ ├── PolyRhythmicSpiral.tsx │ │ └── spiral.css │ ├── auth │ │ ├── AuthViews.tsx │ │ ├── SignInButton.tsx │ │ ├── SignInButtonClient.tsx │ │ ├── SignOutButton.tsx │ │ └── SignOutButtonClient.tsx │ ├── context │ │ └── Providers.tsx │ ├── forms │ │ └── SubmitButton.tsx │ ├── icons │ │ ├── CreativeCommonsLogo.tsx │ │ └── SocialIcon.tsx │ ├── navigation │ │ ├── Back.tsx │ │ ├── Footer.tsx │ │ ├── MuiLinkOverride.tsx │ │ ├── NavbarHeader.tsx │ │ ├── SiteSwitcher.tsx │ │ ├── TableOfContentsExtra.tsx │ │ └── UserMenu.tsx │ └── ui │ │ ├── ArticleWrapper.tsx │ │ ├── CardFancy.tsx │ │ ├── CardShell.tsx │ │ ├── CardShellMagic.tsx │ │ ├── EmbedYT.tsx │ │ ├── Heading.tsx │ │ ├── HotTopic.tsx │ │ ├── MaintenanceStatic.tsx │ │ ├── PageWrapper.tsx │ │ ├── Paragraph.tsx │ │ ├── PointerHighlight.tsx │ │ ├── ScreenWrapper.tsx │ │ ├── Separator.tsx │ │ └── Stub.tsx ├── config │ ├── auxiliaryProductDefaults.ts │ ├── consts.ts │ ├── errorMessages.ts │ ├── keywords.ts │ └── stripeFallbacks.ts ├── database │ ├── dbFuncs.ts │ ├── dbInit.ts │ └── role_oss_developer.sql ├── email │ ├── EmailService.tsx │ ├── emailInit.ts │ └── templates │ │ ├── EmailPurchaseNotification.tsx │ │ ├── EmailPurchaseReceipt.tsx │ │ ├── EmailSeminarNotification.tsx │ │ ├── EmailSeminarNotificationNoLink.tsx │ │ ├── NewsletterEnrollmentClosing.tsx │ │ ├── Newsletter_20250406_HegelSLQB1_Announcement.tsx │ │ ├── Newsletter_20250926_SchellingAnnouncement.tsx │ │ ├── Newsletter_20250930_SchellingOpen.tsx │ │ ├── SeminarReminder.tsx │ │ ├── SeminarsSLQB1.tsx │ │ ├── components │ │ ├── ContactSupport.tsx │ │ ├── EmailBaseLayout.tsx │ │ ├── EmailHtml.tsx │ │ ├── NewsLetterWebLayout.tsx │ │ ├── NewsletterBrowser.tsx │ │ ├── OrderInformation.tsx │ │ ├── TermsApply.tsx │ │ ├── UnsubscribeNewsletter.tsx │ │ ├── UserInformation.tsx │ │ └── VideoLink.tsx │ │ └── emailUtils.ts ├── hooks │ └── useSphilSite.ts ├── server │ ├── actions.ts │ ├── cache.ts │ ├── ctrl.ts │ └── mdxCompiler.ts ├── stripe │ ├── stripeFuncs.tsx │ └── stripeInit.ts ├── style │ ├── MuiThemeProvider.tsx │ └── theme.ts ├── transcribe │ ├── initTranscribe.ts │ └── transcribeFuncs.ts └── utils │ ├── clearCookies.ts │ ├── fonts.ts │ ├── index.ts │ └── textEncoding.ts ├── logs ├── deprecated │ ├── old larger svg.txt │ ├── prepyrus_temp │ ├── run_formatting.txt │ ├── verify_formatting_old.txt │ └── workflow_experiments.yaml ├── exotic_errors │ └── webpack_error.txt └── fragments │ ├── appearance-and-thing-in-itself.mdx │ └── firgrep.md ├── mdx-components.ts ├── next.config.mjs ├── package.json ├── postcss.config.js ├── prepyrus_settings.json ├── prisma └── schema.prisma ├── public ├── images │ ├── contributing │ │ └── buddy.jpg │ ├── favicon-dark │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ └── site.webmanifest │ ├── favicon-light │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ └── favicon.ico │ ├── og-image-sphil.avif │ ├── og-image-sphil.png │ ├── og-image-sphil.webp │ └── team │ │ ├── ahilleas.jpg │ │ ├── christopher.png │ │ └── filip.jpg ├── sphil_owl.webp └── static │ ├── images │ ├── avatar_placeholder.png │ ├── books.webp │ ├── discussion.webp │ ├── eye.webp │ ├── fire.webp │ ├── people │ │ ├── ahilleas.jpg │ │ ├── baris.webp │ │ ├── camillo.webp │ │ ├── drew.webp │ │ ├── filip.jpg │ │ ├── lennart.webp │ │ ├── michael.webp │ │ ├── stee.webp │ │ └── tim.png │ ├── socrates.webp │ ├── sphil_owl.webp │ ├── sphil_owl_large.webp │ └── sun.webp │ ├── svg │ └── menu.svg │ └── video │ └── vid1.mp4 ├── scripts ├── email │ ├── send-newsletter.tsx │ ├── send-seminar-email.tsx │ └── send-seminar-reminder.tsx └── prepyrus_runner │ ├── Cargo.lock │ ├── Cargo.toml │ └── src │ └── main.rs └── tsconfig.json /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/artifact_repository_cleanup_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/.github/artifact_repository_cleanup_policy.json -------------------------------------------------------------------------------- /.github/deploy_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/.github/deploy_script.sh -------------------------------------------------------------------------------- /.github/workflows/cd_dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/.github/workflows/cd_dev.yaml -------------------------------------------------------------------------------- /.github/workflows/cd_prod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/.github/workflows/cd_prod.yaml -------------------------------------------------------------------------------- /.github/workflows/cd_staging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/.github/workflows/cd_staging.yaml -------------------------------------------------------------------------------- /.github/workflows/verify_formatting.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/.github/workflows/verify_formatting.yaml -------------------------------------------------------------------------------- /.github/workflows/verify_mdx_content.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/.github/workflows/verify_mdx_content.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- 1 | [workspace] 2 | resolver = "2" 3 | 4 | members = ["scripts/prepyrus_runner"] 5 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/README.md -------------------------------------------------------------------------------- /README_BIBLIOGRAPHY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/README_BIBLIOGRAPHY.md -------------------------------------------------------------------------------- /absolute_bibliography.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/absolute_bibliography.bib -------------------------------------------------------------------------------- /app/(admin)/admin/courses/[courseId]/course-details/[courseDetailsId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/app/(admin)/admin/courses/[courseId]/course-details/[courseDetailsId]/page.tsx -------------------------------------------------------------------------------- /app/(admin)/admin/courses/[courseId]/course-details/new/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/app/(admin)/admin/courses/[courseId]/course-details/new/page.tsx -------------------------------------------------------------------------------- /app/(admin)/admin/courses/[courseId]/lessons/[lessonId]/lesson-content/new/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/app/(admin)/admin/courses/[courseId]/lessons/[lessonId]/lesson-content/new/page.tsx -------------------------------------------------------------------------------- /app/(admin)/admin/courses/[courseId]/lessons/[lessonId]/lesson-material/[lessonMaterialId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/app/(admin)/admin/courses/[courseId]/lessons/[lessonId]/lesson-material/[lessonMaterialId]/page.tsx -------------------------------------------------------------------------------- /app/(admin)/admin/courses/[courseId]/lessons/[lessonId]/lesson-transcript/new/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/app/(admin)/admin/courses/[courseId]/lessons/[lessonId]/lesson-transcript/new/page.tsx -------------------------------------------------------------------------------- /app/(admin)/admin/courses/[courseId]/lessons/[lessonId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/app/(admin)/admin/courses/[courseId]/lessons/[lessonId]/page.tsx -------------------------------------------------------------------------------- /app/(admin)/admin/courses/[courseId]/lessons/new/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/app/(admin)/admin/courses/[courseId]/lessons/new/page.tsx -------------------------------------------------------------------------------- /app/(admin)/admin/courses/[courseId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/app/(admin)/admin/courses/[courseId]/page.tsx -------------------------------------------------------------------------------- /app/(admin)/admin/courses/[courseId]/seminar-cohort/[seminarCohortId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/app/(admin)/admin/courses/[courseId]/seminar-cohort/[seminarCohortId]/page.tsx -------------------------------------------------------------------------------- /app/(admin)/admin/courses/[courseId]/seminar-cohort/[seminarCohortId]/seminar-cohort-details/[seminarCohortDetailsId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/app/(admin)/admin/courses/[courseId]/seminar-cohort/[seminarCohortId]/seminar-cohort-details/[seminarCohortDetailsId]/page.tsx -------------------------------------------------------------------------------- /app/(admin)/admin/courses/[courseId]/seminar-cohort/[seminarCohortId]/seminar-cohort-details/new/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/app/(admin)/admin/courses/[courseId]/seminar-cohort/[seminarCohortId]/seminar-cohort-details/new/page.tsx -------------------------------------------------------------------------------- /app/(admin)/admin/courses/[courseId]/seminar-cohort/[seminarCohortId]/seminars/[seminarId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/app/(admin)/admin/courses/[courseId]/seminar-cohort/[seminarCohortId]/seminars/[seminarId]/page.tsx -------------------------------------------------------------------------------- /app/(admin)/admin/courses/[courseId]/seminar-cohort/[seminarCohortId]/seminars/[seminarId]/seminar-content/new/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/app/(admin)/admin/courses/[courseId]/seminar-cohort/[seminarCohortId]/seminars/[seminarId]/seminar-content/new/page.tsx -------------------------------------------------------------------------------- /app/(admin)/admin/courses/[courseId]/seminar-cohort/[seminarCohortId]/seminars/[seminarId]/seminar-material/[seminarMaterialId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/app/(admin)/admin/courses/[courseId]/seminar-cohort/[seminarCohortId]/seminars/[seminarId]/seminar-material/[seminarMaterialId]/page.tsx -------------------------------------------------------------------------------- /app/(admin)/admin/courses/[courseId]/seminar-cohort/[seminarCohortId]/seminars/[seminarId]/seminar-transcript/new/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/app/(admin)/admin/courses/[courseId]/seminar-cohort/[seminarCohortId]/seminars/[seminarId]/seminar-transcript/new/page.tsx -------------------------------------------------------------------------------- /app/(admin)/admin/courses/new/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/app/(admin)/admin/courses/new/page.tsx -------------------------------------------------------------------------------- /app/(admin)/admin/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/app/(admin)/admin/layout.tsx -------------------------------------------------------------------------------- /app/(admin)/admin/mng/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/app/(admin)/admin/mng/page.tsx -------------------------------------------------------------------------------- /app/(admin)/admin/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/app/(admin)/admin/page.tsx -------------------------------------------------------------------------------- /app/(user)/billing/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/app/(user)/billing/page.tsx -------------------------------------------------------------------------------- /app/(user)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/app/(user)/layout.tsx -------------------------------------------------------------------------------- /app/(user)/purchase-success/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/app/(user)/purchase-success/page.tsx -------------------------------------------------------------------------------- /app/_meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/app/_meta.ts -------------------------------------------------------------------------------- /app/api/auth/[...nextauth]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/app/api/auth/[...nextauth]/route.ts -------------------------------------------------------------------------------- /app/api/stripe-webhook/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/app/api/stripe-webhook/route.ts -------------------------------------------------------------------------------- /app/api/transcribe/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/app/api/transcribe/route.ts -------------------------------------------------------------------------------- /app/articles/[[...mdxPath]]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/app/articles/[[...mdxPath]]/page.tsx -------------------------------------------------------------------------------- /app/courses/[courseSlug]/[lessonSlug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/app/courses/[courseSlug]/[lessonSlug]/page.tsx -------------------------------------------------------------------------------- /app/courses/[courseSlug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/app/courses/[courseSlug]/page.tsx -------------------------------------------------------------------------------- /app/courses/[courseSlug]/seminars/[seminarCohortYear]/[seminarOrder]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/app/courses/[courseSlug]/seminars/[seminarCohortYear]/[seminarOrder]/page.tsx -------------------------------------------------------------------------------- /app/courses/[courseSlug]/seminars/[seminarCohortYear]/information/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/app/courses/[courseSlug]/seminars/[seminarCohortYear]/information/page.tsx -------------------------------------------------------------------------------- /app/courses/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/app/courses/page.tsx -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/app/middleware.ts -------------------------------------------------------------------------------- /app/newsletter/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/app/newsletter/page.tsx -------------------------------------------------------------------------------- /app/newsletter/unsubscribe/[newsletterId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/app/newsletter/unsubscribe/[newsletterId]/page.tsx -------------------------------------------------------------------------------- /app/not-found.ts: -------------------------------------------------------------------------------- 1 | export { NotFoundPage as default } from "nextra-theme-docs"; 2 | -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/app/page.tsx -------------------------------------------------------------------------------- /app/robots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/app/robots.ts -------------------------------------------------------------------------------- /app/sitemap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/app/sitemap.ts -------------------------------------------------------------------------------- /app/team/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/app/team/page.tsx -------------------------------------------------------------------------------- /app/test/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/app/test/page.tsx -------------------------------------------------------------------------------- /bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/bun.lock -------------------------------------------------------------------------------- /content/_meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/_meta.ts -------------------------------------------------------------------------------- /content/acknowledgements.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/acknowledgements.mdx -------------------------------------------------------------------------------- /content/articles/_meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/articles/_meta.ts -------------------------------------------------------------------------------- /content/articles/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/articles/index.mdx -------------------------------------------------------------------------------- /content/contributing/_meta.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/contributing/_meta.tsx -------------------------------------------------------------------------------- /content/contributing/code-of-conduct.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/contributing/code-of-conduct.mdx -------------------------------------------------------------------------------- /content/contributing/formatting.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/contributing/formatting.mdx -------------------------------------------------------------------------------- /content/contributing/formatting/basic-markdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/contributing/formatting/basic-markdown.md -------------------------------------------------------------------------------- /content/contributing/formatting/extended-markdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/contributing/formatting/extended-markdown.md -------------------------------------------------------------------------------- /content/contributing/formatting/nextra.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/contributing/formatting/nextra.mdx -------------------------------------------------------------------------------- /content/contributing/github.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/contributing/github.mdx -------------------------------------------------------------------------------- /content/contributing/github/conceptual-overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/contributing/github/conceptual-overview.mdx -------------------------------------------------------------------------------- /content/contributing/github/general-workflow.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/contributing/github/general-workflow.mdx -------------------------------------------------------------------------------- /content/contributing/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/contributing/index.mdx -------------------------------------------------------------------------------- /content/contributing/local-development.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/contributing/local-development.mdx -------------------------------------------------------------------------------- /content/contributing/methodology.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/contributing/methodology.mdx -------------------------------------------------------------------------------- /content/contributing/why-these-tools.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/contributing/why-these-tools.mdx -------------------------------------------------------------------------------- /content/encyclopaedia-index/_meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/encyclopaedia-index/_meta.ts -------------------------------------------------------------------------------- /content/encyclopaedia-index/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/encyclopaedia-index/index.mdx -------------------------------------------------------------------------------- /content/hegel/_meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/hegel/_meta.ts -------------------------------------------------------------------------------- /content/hegel/guides/_meta.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/hegel/guides/_meta.tsx -------------------------------------------------------------------------------- /content/hegel/guides/general-division-of-the-logic.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/hegel/guides/general-division-of-the-logic.mdx -------------------------------------------------------------------------------- /content/hegel/guides/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/hegel/guides/index.mdx -------------------------------------------------------------------------------- /content/hegel/guides/presuppositionless-thinking.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/hegel/guides/presuppositionless-thinking.mdx -------------------------------------------------------------------------------- /content/hegel/guides/science-of-logic-introduction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/hegel/guides/science-of-logic-introduction.mdx -------------------------------------------------------------------------------- /content/hegel/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/hegel/index.mdx -------------------------------------------------------------------------------- /content/hegel/reference/_annotations/_meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/hegel/reference/_annotations/_meta.ts -------------------------------------------------------------------------------- /content/hegel/reference/_annotations/textual.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/hegel/reference/_annotations/textual.mdx -------------------------------------------------------------------------------- /content/hegel/reference/_critiques/_meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/hegel/reference/_critiques/_meta.ts -------------------------------------------------------------------------------- /content/hegel/reference/_critiques/overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/hegel/reference/_critiques/overview.mdx -------------------------------------------------------------------------------- /content/hegel/reference/_critiques/systemic-presuppositions.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/hegel/reference/_critiques/systemic-presuppositions.mdx -------------------------------------------------------------------------------- /content/hegel/reference/_meta.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/hegel/reference/_meta.tsx -------------------------------------------------------------------------------- /content/hegel/reference/becoming/_meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/hegel/reference/becoming/_meta.ts -------------------------------------------------------------------------------- /content/hegel/reference/becoming/development.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/hegel/reference/becoming/development.mdx -------------------------------------------------------------------------------- /content/hegel/reference/becoming/overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/hegel/reference/becoming/overview.mdx -------------------------------------------------------------------------------- /content/hegel/reference/becoming/sublation.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/hegel/reference/becoming/sublation.mdx -------------------------------------------------------------------------------- /content/hegel/reference/being/_meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/hegel/reference/being/_meta.ts -------------------------------------------------------------------------------- /content/hegel/reference/being/development.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/hegel/reference/being/development.mdx -------------------------------------------------------------------------------- /content/hegel/reference/being/overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/hegel/reference/being/overview.mdx -------------------------------------------------------------------------------- /content/hegel/reference/constitution/_meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/hegel/reference/constitution/_meta.ts -------------------------------------------------------------------------------- /content/hegel/reference/constitution/development.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/hegel/reference/constitution/development.mdx -------------------------------------------------------------------------------- /content/hegel/reference/constitution/overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/hegel/reference/constitution/overview.mdx -------------------------------------------------------------------------------- /content/hegel/reference/determination/_meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/hegel/reference/determination/_meta.ts -------------------------------------------------------------------------------- /content/hegel/reference/determination/development.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/hegel/reference/determination/development.mdx -------------------------------------------------------------------------------- /content/hegel/reference/determination/overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/hegel/reference/determination/overview.mdx -------------------------------------------------------------------------------- /content/hegel/reference/existence/_meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/hegel/reference/existence/_meta.ts -------------------------------------------------------------------------------- /content/hegel/reference/existence/development.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/hegel/reference/existence/development.mdx -------------------------------------------------------------------------------- /content/hegel/reference/existence/overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/hegel/reference/existence/overview.mdx -------------------------------------------------------------------------------- /content/hegel/reference/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/hegel/reference/index.mdx -------------------------------------------------------------------------------- /content/hegel/reference/limit/_meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/hegel/reference/limit/_meta.ts -------------------------------------------------------------------------------- /content/hegel/reference/limit/development.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/hegel/reference/limit/development.mdx -------------------------------------------------------------------------------- /content/hegel/reference/limit/overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/hegel/reference/limit/overview.mdx -------------------------------------------------------------------------------- /content/hegel/reference/mechanical-object/_meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/hegel/reference/mechanical-object/_meta.ts -------------------------------------------------------------------------------- /content/hegel/reference/mechanical-object/first-paragraph.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/hegel/reference/mechanical-object/first-paragraph.mdx -------------------------------------------------------------------------------- /content/hegel/reference/mechanical-object/section-1.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/hegel/reference/mechanical-object/section-1.mdx -------------------------------------------------------------------------------- /content/hegel/reference/mechanical-object/section-2.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/hegel/reference/mechanical-object/section-2.mdx -------------------------------------------------------------------------------- /content/hegel/reference/mechanical-object/section-3.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/hegel/reference/mechanical-object/section-3.mdx -------------------------------------------------------------------------------- /content/hegel/reference/mechanical-process/_meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/hegel/reference/mechanical-process/_meta.ts -------------------------------------------------------------------------------- /content/hegel/reference/mechanical-process/the-formal-mechanical-process/_meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/hegel/reference/mechanical-process/the-formal-mechanical-process/_meta.ts -------------------------------------------------------------------------------- /content/hegel/reference/mechanical-process/the-formal-mechanical-process/section-one.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/hegel/reference/mechanical-process/the-formal-mechanical-process/section-one.mdx -------------------------------------------------------------------------------- /content/hegel/reference/mechanical-process/the-formal-mechanical-process/section-two.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/hegel/reference/mechanical-process/the-formal-mechanical-process/section-two.mdx -------------------------------------------------------------------------------- /content/hegel/reference/nothing/_meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/hegel/reference/nothing/_meta.ts -------------------------------------------------------------------------------- /content/hegel/reference/nothing/development.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/hegel/reference/nothing/development.mdx -------------------------------------------------------------------------------- /content/hegel/reference/nothing/difference-between-being-and-nothing.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/hegel/reference/nothing/difference-between-being-and-nothing.mdx -------------------------------------------------------------------------------- /content/hegel/reference/nothing/overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/hegel/reference/nothing/overview.mdx -------------------------------------------------------------------------------- /content/hegel/reference/quality/_meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/hegel/reference/quality/_meta.ts -------------------------------------------------------------------------------- /content/hegel/reference/quality/development.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/hegel/reference/quality/development.mdx -------------------------------------------------------------------------------- /content/hegel/reference/quality/overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/hegel/reference/quality/overview.mdx -------------------------------------------------------------------------------- /content/hegel/reference/something-and-other/_meta.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/hegel/reference/something-and-other/_meta.tsx -------------------------------------------------------------------------------- /content/hegel/reference/something-and-other/change-without-time.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/hegel/reference/something-and-other/change-without-time.mdx -------------------------------------------------------------------------------- /content/hegel/reference/something-and-other/development.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/hegel/reference/something-and-other/development.mdx -------------------------------------------------------------------------------- /content/hegel/reference/something-and-other/nothing-is-in-itself-without-the-other.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/hegel/reference/something-and-other/nothing-is-in-itself-without-the-other.mdx -------------------------------------------------------------------------------- /content/hegel/reference/something-and-other/overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/hegel/reference/something-and-other/overview.mdx -------------------------------------------------------------------------------- /content/hegel/reference/something/_meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/hegel/reference/something/_meta.ts -------------------------------------------------------------------------------- /content/hegel/reference/something/development.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/hegel/reference/something/development.mdx -------------------------------------------------------------------------------- /content/hegel/reference/something/overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/hegel/reference/something/overview.mdx -------------------------------------------------------------------------------- /content/hegel/reference/something/why-something-rather-than-nothing.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/hegel/reference/something/why-something-rather-than-nothing.mdx -------------------------------------------------------------------------------- /content/kant/_meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/kant/_meta.ts -------------------------------------------------------------------------------- /content/kant/guides/_meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/kant/guides/_meta.ts -------------------------------------------------------------------------------- /content/kant/guides/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/kant/guides/index.mdx -------------------------------------------------------------------------------- /content/kant/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/kant/index.mdx -------------------------------------------------------------------------------- /content/kant/reference/_meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/kant/reference/_meta.ts -------------------------------------------------------------------------------- /content/kant/reference/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/kant/reference/index.mdx -------------------------------------------------------------------------------- /content/privacy.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/privacy.mdx -------------------------------------------------------------------------------- /content/spinoza/_meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/spinoza/_meta.ts -------------------------------------------------------------------------------- /content/spinoza/guides/_meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/spinoza/guides/_meta.ts -------------------------------------------------------------------------------- /content/spinoza/guides/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/spinoza/guides/index.mdx -------------------------------------------------------------------------------- /content/spinoza/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/spinoza/index.mdx -------------------------------------------------------------------------------- /content/spinoza/reference/_meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/spinoza/reference/_meta.ts -------------------------------------------------------------------------------- /content/spinoza/reference/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/spinoza/reference/index.mdx -------------------------------------------------------------------------------- /content/terms-symposia.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/terms-symposia.mdx -------------------------------------------------------------------------------- /content/terms.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/content/terms.mdx -------------------------------------------------------------------------------- /cspell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/cspell.json -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /features/billing/components/Billing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/features/billing/components/Billing.tsx -------------------------------------------------------------------------------- /features/billing/components/VerifyPurchase.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/features/billing/components/VerifyPurchase.tsx -------------------------------------------------------------------------------- /features/billing/hooks/useVerifyPurchase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/features/billing/hooks/useVerifyPurchase.ts -------------------------------------------------------------------------------- /features/billing/server/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/features/billing/server/actions.ts -------------------------------------------------------------------------------- /features/courses/components/CourseCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/features/courses/components/CourseCard.tsx -------------------------------------------------------------------------------- /features/courses/components/CourseCardDeleteButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/features/courses/components/CourseCardDeleteButton.tsx -------------------------------------------------------------------------------- /features/courses/components/CourseEnroll.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/features/courses/components/CourseEnroll.tsx -------------------------------------------------------------------------------- /features/courses/components/CourseEnrollNowPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/features/courses/components/CourseEnrollNowPage.tsx -------------------------------------------------------------------------------- /features/courses/components/CourseFrontPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/features/courses/components/CourseFrontPage.tsx -------------------------------------------------------------------------------- /features/courses/components/CourseLessonsSortable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/features/courses/components/CourseLessonsSortable.tsx -------------------------------------------------------------------------------- /features/courses/components/CourseMaterialCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/features/courses/components/CourseMaterialCard.tsx -------------------------------------------------------------------------------- /features/courses/components/CourseSeminarsSortable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/features/courses/components/CourseSeminarsSortable.tsx -------------------------------------------------------------------------------- /features/courses/components/CoursesDisplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/features/courses/components/CoursesDisplay.tsx -------------------------------------------------------------------------------- /features/courses/components/CreateNewSeminarCohortBtn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/features/courses/components/CreateNewSeminarCohortBtn.tsx -------------------------------------------------------------------------------- /features/courses/components/LessonFrontPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/features/courses/components/LessonFrontPage.tsx -------------------------------------------------------------------------------- /features/courses/components/SeminarCohortDetailsFrontPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/features/courses/components/SeminarCohortDetailsFrontPage.tsx -------------------------------------------------------------------------------- /features/courses/components/SeminarCohortsDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/features/courses/components/SeminarCohortsDropdown.tsx -------------------------------------------------------------------------------- /features/courses/components/SeminarCreateNewButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/features/courses/components/SeminarCreateNewButton.tsx -------------------------------------------------------------------------------- /features/courses/components/SeminarFrontPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/features/courses/components/SeminarFrontPage.tsx -------------------------------------------------------------------------------- /features/courses/components/SignInToBuyBtn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/features/courses/components/SignInToBuyBtn.tsx -------------------------------------------------------------------------------- /features/courses/components/TableOfLessons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/features/courses/components/TableOfLessons.tsx -------------------------------------------------------------------------------- /features/courses/components/TableOfSeminarCohorts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/features/courses/components/TableOfSeminarCohorts.tsx -------------------------------------------------------------------------------- /features/courses/components/forms/Checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/features/courses/components/forms/Checkbox.tsx -------------------------------------------------------------------------------- /features/courses/components/forms/CourseForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/features/courses/components/forms/CourseForm.tsx -------------------------------------------------------------------------------- /features/courses/components/forms/DateTimeInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/features/courses/components/forms/DateTimeInput.tsx -------------------------------------------------------------------------------- /features/courses/components/forms/Field.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/features/courses/components/forms/Field.tsx -------------------------------------------------------------------------------- /features/courses/components/forms/ImageFileInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/features/courses/components/forms/ImageFileInput.tsx -------------------------------------------------------------------------------- /features/courses/components/forms/Label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/features/courses/components/forms/Label.tsx -------------------------------------------------------------------------------- /features/courses/components/forms/LessonForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/features/courses/components/forms/LessonForm.tsx -------------------------------------------------------------------------------- /features/courses/components/forms/NumberInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/features/courses/components/forms/NumberInput.tsx -------------------------------------------------------------------------------- /features/courses/components/forms/SeminarCohortForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/features/courses/components/forms/SeminarCohortForm.tsx -------------------------------------------------------------------------------- /features/courses/components/forms/SubmitButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/features/courses/components/forms/SubmitButton.tsx -------------------------------------------------------------------------------- /features/courses/components/forms/SubmitInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/features/courses/components/forms/SubmitInput.tsx -------------------------------------------------------------------------------- /features/courses/components/forms/TextAreaInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/features/courses/components/forms/TextAreaInput.tsx -------------------------------------------------------------------------------- /features/courses/components/forms/TextInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/features/courses/components/forms/TextInput.tsx -------------------------------------------------------------------------------- /features/courses/components/forms/VideoFileInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/features/courses/components/forms/VideoFileInput.tsx -------------------------------------------------------------------------------- /features/courses/components/forms/VideoForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/features/courses/components/forms/VideoForm.tsx -------------------------------------------------------------------------------- /features/courses/components/tables/SeminarParticipantsTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/features/courses/components/tables/SeminarParticipantsTable.tsx -------------------------------------------------------------------------------- /features/courses/server/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/features/courses/server/actions.ts -------------------------------------------------------------------------------- /features/editor/components/ButtonInsertTeacherProfile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/features/editor/components/ButtonInsertTeacherProfile.tsx -------------------------------------------------------------------------------- /features/editor/components/ButtonInsertYouTube.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/features/editor/components/ButtonInsertYouTube.tsx -------------------------------------------------------------------------------- /features/editor/components/Editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/features/editor/components/Editor.tsx -------------------------------------------------------------------------------- /features/editor/components/EditorInternals.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/features/editor/components/EditorInternals.tsx -------------------------------------------------------------------------------- /features/editor/components/EmbedTeacherProfile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/features/editor/components/EmbedTeacherProfile.tsx -------------------------------------------------------------------------------- /features/editor/server/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/features/editor/server/actions.ts -------------------------------------------------------------------------------- /features/marketing/components/EncyclopaediaLanding.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/features/marketing/components/EncyclopaediaLanding.tsx -------------------------------------------------------------------------------- /features/marketing/components/HeroBackground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/features/marketing/components/HeroBackground.tsx -------------------------------------------------------------------------------- /features/marketing/components/InfoCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/features/marketing/components/InfoCard.tsx -------------------------------------------------------------------------------- /features/marketing/components/Reviews.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/features/marketing/components/Reviews.tsx -------------------------------------------------------------------------------- /features/marketing/components/SPhilLanding.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/features/marketing/components/SPhilLanding.tsx -------------------------------------------------------------------------------- /features/marketing/components/Stars.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/features/marketing/components/Stars.tsx -------------------------------------------------------------------------------- /features/marketing/components/SubHeroBackground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/features/marketing/components/SubHeroBackground.tsx -------------------------------------------------------------------------------- /features/marketing/components/SubdirectoryLanding.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/features/marketing/components/SubdirectoryLanding.tsx -------------------------------------------------------------------------------- /features/marketing/components/SubscribeToNewsletter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/features/marketing/components/SubscribeToNewsletter.tsx -------------------------------------------------------------------------------- /features/marketing/components/Team.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/features/marketing/components/Team.tsx -------------------------------------------------------------------------------- /features/marketing/data/reviews.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/features/marketing/data/reviews.json -------------------------------------------------------------------------------- /features/marketing/server/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/features/marketing/server/actions.ts -------------------------------------------------------------------------------- /features/marketing/utils/delaunayFast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/features/marketing/utils/delaunayFast.ts -------------------------------------------------------------------------------- /lib/auth/authConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/auth/authConfig.ts -------------------------------------------------------------------------------- /lib/auth/authFuncs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/auth/authFuncs.ts -------------------------------------------------------------------------------- /lib/bucket/bucketFuncs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/bucket/bucketFuncs.ts -------------------------------------------------------------------------------- /lib/bucket/bucketInit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/bucket/bucketInit.ts -------------------------------------------------------------------------------- /lib/components/Analytics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/components/Analytics.tsx -------------------------------------------------------------------------------- /lib/components/CardTeamProfile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/components/CardTeamProfile.tsx -------------------------------------------------------------------------------- /lib/components/ImagePreloader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/components/ImagePreloader.tsx -------------------------------------------------------------------------------- /lib/components/License.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/components/License.tsx -------------------------------------------------------------------------------- /lib/components/LogoAnimated.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/components/LogoAnimated.tsx -------------------------------------------------------------------------------- /lib/components/LogoOwl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/components/LogoOwl.tsx -------------------------------------------------------------------------------- /lib/components/MDXRenderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/components/MDXRenderer.tsx -------------------------------------------------------------------------------- /lib/components/Maintenance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/components/Maintenance.tsx -------------------------------------------------------------------------------- /lib/components/SortableList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/components/SortableList.tsx -------------------------------------------------------------------------------- /lib/components/SymposiaCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/components/SymposiaCard.tsx -------------------------------------------------------------------------------- /lib/components/TextRevealCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/components/TextRevealCard.tsx -------------------------------------------------------------------------------- /lib/components/VideoDataLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/components/VideoDataLoader.tsx -------------------------------------------------------------------------------- /lib/components/VideoViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/components/VideoViewer.tsx -------------------------------------------------------------------------------- /lib/components/animations/BackgroundBoxes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/components/animations/BackgroundBoxes.tsx -------------------------------------------------------------------------------- /lib/components/animations/FadeIn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/components/animations/FadeIn.tsx -------------------------------------------------------------------------------- /lib/components/animations/GlowBoundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/components/animations/GlowBoundary.tsx -------------------------------------------------------------------------------- /lib/components/animations/Loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/components/animations/Loading.tsx -------------------------------------------------------------------------------- /lib/components/animations/PolyRhythmicSpiral.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/components/animations/PolyRhythmicSpiral.tsx -------------------------------------------------------------------------------- /lib/components/animations/spiral.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/components/animations/spiral.css -------------------------------------------------------------------------------- /lib/components/auth/AuthViews.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/components/auth/AuthViews.tsx -------------------------------------------------------------------------------- /lib/components/auth/SignInButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/components/auth/SignInButton.tsx -------------------------------------------------------------------------------- /lib/components/auth/SignInButtonClient.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/components/auth/SignInButtonClient.tsx -------------------------------------------------------------------------------- /lib/components/auth/SignOutButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/components/auth/SignOutButton.tsx -------------------------------------------------------------------------------- /lib/components/auth/SignOutButtonClient.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/components/auth/SignOutButtonClient.tsx -------------------------------------------------------------------------------- /lib/components/context/Providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/components/context/Providers.tsx -------------------------------------------------------------------------------- /lib/components/forms/SubmitButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/components/forms/SubmitButton.tsx -------------------------------------------------------------------------------- /lib/components/icons/CreativeCommonsLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/components/icons/CreativeCommonsLogo.tsx -------------------------------------------------------------------------------- /lib/components/icons/SocialIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/components/icons/SocialIcon.tsx -------------------------------------------------------------------------------- /lib/components/navigation/Back.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/components/navigation/Back.tsx -------------------------------------------------------------------------------- /lib/components/navigation/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/components/navigation/Footer.tsx -------------------------------------------------------------------------------- /lib/components/navigation/MuiLinkOverride.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/components/navigation/MuiLinkOverride.tsx -------------------------------------------------------------------------------- /lib/components/navigation/NavbarHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/components/navigation/NavbarHeader.tsx -------------------------------------------------------------------------------- /lib/components/navigation/SiteSwitcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/components/navigation/SiteSwitcher.tsx -------------------------------------------------------------------------------- /lib/components/navigation/TableOfContentsExtra.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/components/navigation/TableOfContentsExtra.tsx -------------------------------------------------------------------------------- /lib/components/navigation/UserMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/components/navigation/UserMenu.tsx -------------------------------------------------------------------------------- /lib/components/ui/ArticleWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/components/ui/ArticleWrapper.tsx -------------------------------------------------------------------------------- /lib/components/ui/CardFancy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/components/ui/CardFancy.tsx -------------------------------------------------------------------------------- /lib/components/ui/CardShell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/components/ui/CardShell.tsx -------------------------------------------------------------------------------- /lib/components/ui/CardShellMagic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/components/ui/CardShellMagic.tsx -------------------------------------------------------------------------------- /lib/components/ui/EmbedYT.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/components/ui/EmbedYT.tsx -------------------------------------------------------------------------------- /lib/components/ui/Heading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/components/ui/Heading.tsx -------------------------------------------------------------------------------- /lib/components/ui/HotTopic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/components/ui/HotTopic.tsx -------------------------------------------------------------------------------- /lib/components/ui/MaintenanceStatic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/components/ui/MaintenanceStatic.tsx -------------------------------------------------------------------------------- /lib/components/ui/PageWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/components/ui/PageWrapper.tsx -------------------------------------------------------------------------------- /lib/components/ui/Paragraph.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/components/ui/Paragraph.tsx -------------------------------------------------------------------------------- /lib/components/ui/PointerHighlight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/components/ui/PointerHighlight.tsx -------------------------------------------------------------------------------- /lib/components/ui/ScreenWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/components/ui/ScreenWrapper.tsx -------------------------------------------------------------------------------- /lib/components/ui/Separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/components/ui/Separator.tsx -------------------------------------------------------------------------------- /lib/components/ui/Stub.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/components/ui/Stub.tsx -------------------------------------------------------------------------------- /lib/config/auxiliaryProductDefaults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/config/auxiliaryProductDefaults.ts -------------------------------------------------------------------------------- /lib/config/consts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/config/consts.ts -------------------------------------------------------------------------------- /lib/config/errorMessages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/config/errorMessages.ts -------------------------------------------------------------------------------- /lib/config/keywords.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/config/keywords.ts -------------------------------------------------------------------------------- /lib/config/stripeFallbacks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/config/stripeFallbacks.ts -------------------------------------------------------------------------------- /lib/database/dbFuncs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/database/dbFuncs.ts -------------------------------------------------------------------------------- /lib/database/dbInit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/database/dbInit.ts -------------------------------------------------------------------------------- /lib/database/role_oss_developer.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/database/role_oss_developer.sql -------------------------------------------------------------------------------- /lib/email/EmailService.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/email/EmailService.tsx -------------------------------------------------------------------------------- /lib/email/emailInit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/email/emailInit.ts -------------------------------------------------------------------------------- /lib/email/templates/EmailPurchaseNotification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/email/templates/EmailPurchaseNotification.tsx -------------------------------------------------------------------------------- /lib/email/templates/EmailPurchaseReceipt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/email/templates/EmailPurchaseReceipt.tsx -------------------------------------------------------------------------------- /lib/email/templates/EmailSeminarNotification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/email/templates/EmailSeminarNotification.tsx -------------------------------------------------------------------------------- /lib/email/templates/EmailSeminarNotificationNoLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/email/templates/EmailSeminarNotificationNoLink.tsx -------------------------------------------------------------------------------- /lib/email/templates/NewsletterEnrollmentClosing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/email/templates/NewsletterEnrollmentClosing.tsx -------------------------------------------------------------------------------- /lib/email/templates/Newsletter_20250406_HegelSLQB1_Announcement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/email/templates/Newsletter_20250406_HegelSLQB1_Announcement.tsx -------------------------------------------------------------------------------- /lib/email/templates/Newsletter_20250926_SchellingAnnouncement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/email/templates/Newsletter_20250926_SchellingAnnouncement.tsx -------------------------------------------------------------------------------- /lib/email/templates/Newsletter_20250930_SchellingOpen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/email/templates/Newsletter_20250930_SchellingOpen.tsx -------------------------------------------------------------------------------- /lib/email/templates/SeminarReminder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/email/templates/SeminarReminder.tsx -------------------------------------------------------------------------------- /lib/email/templates/SeminarsSLQB1.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/email/templates/SeminarsSLQB1.tsx -------------------------------------------------------------------------------- /lib/email/templates/components/ContactSupport.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/email/templates/components/ContactSupport.tsx -------------------------------------------------------------------------------- /lib/email/templates/components/EmailBaseLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/email/templates/components/EmailBaseLayout.tsx -------------------------------------------------------------------------------- /lib/email/templates/components/EmailHtml.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/email/templates/components/EmailHtml.tsx -------------------------------------------------------------------------------- /lib/email/templates/components/NewsLetterWebLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/email/templates/components/NewsLetterWebLayout.tsx -------------------------------------------------------------------------------- /lib/email/templates/components/NewsletterBrowser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/email/templates/components/NewsletterBrowser.tsx -------------------------------------------------------------------------------- /lib/email/templates/components/OrderInformation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/email/templates/components/OrderInformation.tsx -------------------------------------------------------------------------------- /lib/email/templates/components/TermsApply.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/email/templates/components/TermsApply.tsx -------------------------------------------------------------------------------- /lib/email/templates/components/UnsubscribeNewsletter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/email/templates/components/UnsubscribeNewsletter.tsx -------------------------------------------------------------------------------- /lib/email/templates/components/UserInformation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/email/templates/components/UserInformation.tsx -------------------------------------------------------------------------------- /lib/email/templates/components/VideoLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/email/templates/components/VideoLink.tsx -------------------------------------------------------------------------------- /lib/email/templates/emailUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/email/templates/emailUtils.ts -------------------------------------------------------------------------------- /lib/hooks/useSphilSite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/hooks/useSphilSite.ts -------------------------------------------------------------------------------- /lib/server/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/server/actions.ts -------------------------------------------------------------------------------- /lib/server/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/server/cache.ts -------------------------------------------------------------------------------- /lib/server/ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/server/ctrl.ts -------------------------------------------------------------------------------- /lib/server/mdxCompiler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/server/mdxCompiler.ts -------------------------------------------------------------------------------- /lib/stripe/stripeFuncs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/stripe/stripeFuncs.tsx -------------------------------------------------------------------------------- /lib/stripe/stripeInit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/stripe/stripeInit.ts -------------------------------------------------------------------------------- /lib/style/MuiThemeProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/style/MuiThemeProvider.tsx -------------------------------------------------------------------------------- /lib/style/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/style/theme.ts -------------------------------------------------------------------------------- /lib/transcribe/initTranscribe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/transcribe/initTranscribe.ts -------------------------------------------------------------------------------- /lib/transcribe/transcribeFuncs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/transcribe/transcribeFuncs.ts -------------------------------------------------------------------------------- /lib/utils/clearCookies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/utils/clearCookies.ts -------------------------------------------------------------------------------- /lib/utils/fonts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/utils/fonts.ts -------------------------------------------------------------------------------- /lib/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/utils/index.ts -------------------------------------------------------------------------------- /lib/utils/textEncoding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/lib/utils/textEncoding.ts -------------------------------------------------------------------------------- /logs/deprecated/old larger svg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/logs/deprecated/old larger svg.txt -------------------------------------------------------------------------------- /logs/deprecated/prepyrus_temp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/logs/deprecated/prepyrus_temp -------------------------------------------------------------------------------- /logs/deprecated/run_formatting.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/logs/deprecated/run_formatting.txt -------------------------------------------------------------------------------- /logs/deprecated/verify_formatting_old.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/logs/deprecated/verify_formatting_old.txt -------------------------------------------------------------------------------- /logs/deprecated/workflow_experiments.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/logs/deprecated/workflow_experiments.yaml -------------------------------------------------------------------------------- /logs/exotic_errors/webpack_error.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/logs/exotic_errors/webpack_error.txt -------------------------------------------------------------------------------- /logs/fragments/appearance-and-thing-in-itself.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/logs/fragments/appearance-and-thing-in-itself.mdx -------------------------------------------------------------------------------- /logs/fragments/firgrep.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/logs/fragments/firgrep.md -------------------------------------------------------------------------------- /mdx-components.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/mdx-components.ts -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/postcss.config.js -------------------------------------------------------------------------------- /prepyrus_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/prepyrus_settings.json -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /public/images/contributing/buddy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/public/images/contributing/buddy.jpg -------------------------------------------------------------------------------- /public/images/favicon-dark/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/public/images/favicon-dark/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/images/favicon-dark/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/public/images/favicon-dark/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/images/favicon-dark/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/public/images/favicon-dark/apple-touch-icon.png -------------------------------------------------------------------------------- /public/images/favicon-dark/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/public/images/favicon-dark/favicon-16x16.png -------------------------------------------------------------------------------- /public/images/favicon-dark/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/public/images/favicon-dark/favicon-32x32.png -------------------------------------------------------------------------------- /public/images/favicon-dark/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/public/images/favicon-dark/favicon.ico -------------------------------------------------------------------------------- /public/images/favicon-dark/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/public/images/favicon-dark/site.webmanifest -------------------------------------------------------------------------------- /public/images/favicon-light/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/public/images/favicon-light/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/images/favicon-light/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/public/images/favicon-light/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/images/favicon-light/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/public/images/favicon-light/apple-touch-icon.png -------------------------------------------------------------------------------- /public/images/favicon-light/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/public/images/favicon-light/favicon-16x16.png -------------------------------------------------------------------------------- /public/images/favicon-light/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/public/images/favicon-light/favicon-32x32.png -------------------------------------------------------------------------------- /public/images/favicon-light/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/public/images/favicon-light/favicon.ico -------------------------------------------------------------------------------- /public/images/og-image-sphil.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/public/images/og-image-sphil.avif -------------------------------------------------------------------------------- /public/images/og-image-sphil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/public/images/og-image-sphil.png -------------------------------------------------------------------------------- /public/images/og-image-sphil.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/public/images/og-image-sphil.webp -------------------------------------------------------------------------------- /public/images/team/ahilleas.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/public/images/team/ahilleas.jpg -------------------------------------------------------------------------------- /public/images/team/christopher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/public/images/team/christopher.png -------------------------------------------------------------------------------- /public/images/team/filip.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/public/images/team/filip.jpg -------------------------------------------------------------------------------- /public/sphil_owl.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/public/sphil_owl.webp -------------------------------------------------------------------------------- /public/static/images/avatar_placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/public/static/images/avatar_placeholder.png -------------------------------------------------------------------------------- /public/static/images/books.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/public/static/images/books.webp -------------------------------------------------------------------------------- /public/static/images/discussion.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/public/static/images/discussion.webp -------------------------------------------------------------------------------- /public/static/images/eye.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/public/static/images/eye.webp -------------------------------------------------------------------------------- /public/static/images/fire.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/public/static/images/fire.webp -------------------------------------------------------------------------------- /public/static/images/people/ahilleas.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/public/static/images/people/ahilleas.jpg -------------------------------------------------------------------------------- /public/static/images/people/baris.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/public/static/images/people/baris.webp -------------------------------------------------------------------------------- /public/static/images/people/camillo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/public/static/images/people/camillo.webp -------------------------------------------------------------------------------- /public/static/images/people/drew.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/public/static/images/people/drew.webp -------------------------------------------------------------------------------- /public/static/images/people/filip.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/public/static/images/people/filip.jpg -------------------------------------------------------------------------------- /public/static/images/people/lennart.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/public/static/images/people/lennart.webp -------------------------------------------------------------------------------- /public/static/images/people/michael.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/public/static/images/people/michael.webp -------------------------------------------------------------------------------- /public/static/images/people/stee.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/public/static/images/people/stee.webp -------------------------------------------------------------------------------- /public/static/images/people/tim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/public/static/images/people/tim.png -------------------------------------------------------------------------------- /public/static/images/socrates.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/public/static/images/socrates.webp -------------------------------------------------------------------------------- /public/static/images/sphil_owl.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/public/static/images/sphil_owl.webp -------------------------------------------------------------------------------- /public/static/images/sphil_owl_large.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/public/static/images/sphil_owl_large.webp -------------------------------------------------------------------------------- /public/static/images/sun.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/public/static/images/sun.webp -------------------------------------------------------------------------------- /public/static/svg/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/public/static/svg/menu.svg -------------------------------------------------------------------------------- /public/static/video/vid1.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/public/static/video/vid1.mp4 -------------------------------------------------------------------------------- /scripts/email/send-newsletter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/scripts/email/send-newsletter.tsx -------------------------------------------------------------------------------- /scripts/email/send-seminar-email.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/scripts/email/send-seminar-email.tsx -------------------------------------------------------------------------------- /scripts/email/send-seminar-reminder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/scripts/email/send-seminar-reminder.tsx -------------------------------------------------------------------------------- /scripts/prepyrus_runner/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/scripts/prepyrus_runner/Cargo.lock -------------------------------------------------------------------------------- /scripts/prepyrus_runner/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/scripts/prepyrus_runner/Cargo.toml -------------------------------------------------------------------------------- /scripts/prepyrus_runner/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/scripts/prepyrus_runner/src/main.rs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemphil/sphil/HEAD/tsconfig.json --------------------------------------------------------------------------------