├── .eslintrc.json ├── .gitignore ├── .replit ├── README.md ├── application ├── components │ ├── About.tsx │ ├── ChatMessage.tsx │ ├── IntroInfo.tsx │ ├── MarkdownWrapper.tsx │ ├── Settings.tsx │ └── Tab.tsx ├── hooks │ ├── fetch.ts │ └── useType.ts └── state │ └── index.ts ├── index.js ├── next.config.js ├── package.json ├── pages ├── _app.tsx ├── api │ ├── addApiKey.ts │ ├── getQuota.ts │ ├── prompt.ts │ └── removeApiKey.ts ├── index.tsx └── login.tsx ├── public ├── amjad.jpeg ├── cover.png └── icon.png ├── replit.nix ├── server ├── lib │ ├── auth │ │ ├── hasRole.ts │ │ ├── isReplAuthed.ts │ │ └── rateLimiter.ts │ ├── calculateQuota.ts │ ├── generateResponse.ts │ └── gql.ts ├── mongo.ts └── script │ └── initializeStore.js ├── styles └── globals.scss ├── training ├── amjads-blog │ ├── essays │ │ ├── 2016.md │ │ ├── async-js.md │ │ ├── bind.md │ │ ├── caching-promises.md │ │ ├── carmack.md │ │ ├── compilers.md │ │ ├── debugging.md │ │ ├── decade.md │ │ ├── dialectical.md │ │ ├── disintegrated.md │ │ ├── eval-as-a-service.md │ │ ├── fight.md │ │ ├── framing.md │ │ ├── github.md │ │ ├── gpt_post.md │ │ ├── grateful.md │ │ ├── hello-world.md │ │ ├── hosting.md │ │ ├── hyperreal.md │ │ ├── intuition.md │ │ ├── js-debugger.md │ │ ├── js-vms.md │ │ ├── kierkegaard.md │ │ ├── leapfrog.md │ │ ├── learnable.md │ │ ├── meta.md │ │ ├── minimalism.md │ │ ├── moad.md │ │ ├── networks.md │ │ ├── object-observe.md │ │ ├── perfectionism.md │ │ ├── python.md │ │ ├── replit_ide.md │ │ ├── right.md │ │ ├── stoic-oss.md │ │ ├── story.md │ │ ├── stuffjs.md │ │ ├── synthesis.md │ │ ├── vision.md │ │ └── waraby.md │ └── pages │ │ ├── about.md │ │ └── bio.md ├── community-rules.md ├── docs │ ├── bounties │ │ ├── _category_.json │ │ ├── bounty-hunting.md │ │ ├── bounty-templates.md │ │ ├── faq.md │ │ ├── hunter_resources.md │ │ └── posting-a-bounty.md │ ├── cycles │ │ ├── _category_.json │ │ ├── about-cycles.md │ │ └── tipping.md │ ├── extension │ │ ├── 00-intro.md │ │ ├── 01-store.md │ │ └── _category_.json │ ├── extensions │ │ ├── 03-publish.md │ │ ├── 04-faq.md │ │ ├── api │ │ │ ├── _category_.json │ │ │ ├── background.mdx │ │ │ └── manifest.md │ │ ├── basics │ │ │ ├── 01-key-concepts.md │ │ │ ├── 02-templates.mdx │ │ │ ├── _category_.json │ │ │ ├── create-extension.mdx │ │ │ └── index.mdx │ │ ├── development │ │ │ ├── 00-devtools.md │ │ │ ├── 02-full-stack.md │ │ │ ├── 03-installation.md │ │ │ ├── _category_.json │ │ │ └── react │ │ │ │ ├── _category_.json │ │ │ │ ├── components │ │ │ │ └── _category_.json │ │ │ │ ├── hooks │ │ │ │ ├── 00-useReplit.md │ │ │ │ ├── 01-useReplitEffect.md │ │ │ │ ├── 02-useWatchTextFile.md │ │ │ │ ├── 03-useActiveFile.md │ │ │ │ ├── 04-useThemeValues.md │ │ │ │ ├── 05-useTheme.md │ │ │ │ ├── 06-useIsExtension.md │ │ │ │ └── _category_.json │ │ │ │ └── introduction.md │ │ └── examples │ │ │ ├── 00-json-editor.md │ │ │ ├── 01-snippet-manager.md │ │ │ ├── 02-javascript-commands.md │ │ │ └── _category_.json │ ├── getting-started │ │ ├── 00-intro-replit.md │ │ ├── 01-key-terms.md │ │ ├── 02-managing-repls.md │ │ ├── 03-faq.md │ │ ├── 04-clui-graphical-cli.md │ │ ├── 05-desktop-app.md │ │ ├── 06-replit-mobile-app.md │ │ ├── 07-firewalled-replit.md │ │ └── _category_.json │ ├── hosting │ │ ├── _category_.json │ │ ├── about-usage-based-billing.md │ │ ├── add-a-made-with-replit-badge-to-your-webview.md │ │ ├── authenticating-users-repl-auth.md │ │ ├── custom-domains.md │ │ ├── databases │ │ │ ├── _category_.json │ │ │ ├── postgresql-on-replit.md │ │ │ └── replit-database.md │ │ ├── deployments │ │ │ ├── _category_.json │ │ │ ├── about-deployments.md │ │ │ ├── autoscale-deployments.md │ │ │ ├── custom-domains.md │ │ │ ├── deploying-a-github-repository.md │ │ │ ├── faq.md │ │ │ ├── migration-guide.md │ │ │ ├── monitoring-a-deployment.md │ │ │ ├── reserved-vm-deployments.md │ │ │ ├── speeding-up-deploys.md │ │ │ ├── static-deployments.md │ │ │ └── troubleshooting.md │ │ ├── embedding-repls.md │ │ ├── hosting-web-pages.md │ │ ├── outbound-transfer.md │ │ ├── repl-auth-sidebar.md │ │ ├── sharing-your-repl.mdx │ │ ├── status-manager.md │ │ └── streaming-native-graphics-vnc.md │ ├── legal-and-security-info │ │ ├── _category_.json │ │ ├── copyright-claims-takedown-requests.md │ │ ├── deleting-your-data.md │ │ ├── licensing-info.md │ │ ├── security.md │ │ ├── strike-system-faq.md │ │ ├── support-policy.md │ │ ├── trust-and-safety.md │ │ ├── usage.md │ │ └── web-accessibility.md │ ├── mobile-app │ │ ├── _category_.json │ │ └── in-app-purchases.md │ ├── model-farm │ │ ├── _category_.json │ │ ├── index.md │ │ ├── models │ │ │ ├── _category_.json │ │ │ ├── chat_models.md │ │ │ ├── completion_models.md │ │ │ └── embedding_models.md │ │ ├── python │ │ │ ├── _category_.json │ │ │ ├── chat.md │ │ │ ├── completion.md │ │ │ ├── embedding.md │ │ │ ├── google.md │ │ │ └── index.md │ │ └── typescript │ │ │ ├── _category_.json │ │ │ ├── chat.md │ │ │ ├── completion.md │ │ │ ├── embedding.md │ │ │ ├── index.md │ │ │ ├── requesterror.md │ │ │ └── result.md │ ├── organizations │ │ ├── _category_.json │ │ └── roles-and-permissions.md │ ├── power-ups │ │ ├── _category_.json │ │ ├── boosts.md │ │ ├── private-repls.md │ │ ├── replit-core.md │ │ ├── replitai │ │ │ ├── 00-getting-started.md │ │ │ ├── 01-complete-code.md │ │ │ ├── 02-replitai-chat.mdx │ │ │ ├── 03-explain-code.md │ │ │ ├── 04-edit-code.md │ │ │ ├── 05-generate-code.md │ │ │ ├── 06-copilot-vs-replitai.md │ │ │ ├── 07-faq.md │ │ │ └── _category_.json │ │ └── ssh.md │ ├── programming-ide │ │ ├── 00-introduction-to-the-workspace.md │ │ ├── 01-configuring-repl.md │ │ ├── 02-nix-on-replit.md │ │ ├── 03-keyboard-shortcuts.md │ │ ├── 04-installing-packages.md │ │ ├── 05-repl-env-metadata.md │ │ ├── _category_.json │ │ ├── using-git-on-replit │ │ │ ├── 00-connect-github-to-replit.md │ │ │ ├── 01-import-repository.md │ │ │ ├── 02-private-repo.md │ │ │ ├── 03-use-gui.md │ │ │ ├── 04-git-shell.md │ │ │ ├── 05-running-github-repositories-replit.md │ │ │ ├── 06-git-commands.md │ │ │ ├── 07-github-auth-errors.md │ │ │ └── _category_.json │ │ └── workspace-features │ │ │ ├── 00-secrets.md │ │ │ ├── 01-file-history.md │ │ │ ├── 02-inline-threads.md │ │ │ ├── 03-debugging.md │ │ │ ├── 03-expandable-storage.md │ │ │ ├── 04-multiplayer.md │ │ │ ├── 05-resources-panel.md │ │ │ ├── 06-preferences.md │ │ │ ├── 07-console-shell.md │ │ │ ├── 08-webview.md │ │ │ └── _category_.json │ ├── replit-books │ │ ├── _category_.json │ │ └── books.md │ ├── teaching-curriculum │ │ ├── _category_.json │ │ ├── abstract-data-types.md │ │ ├── intermediate-python.md │ │ ├── intro-cpp.md │ │ ├── intro-html-css.md │ │ ├── intro-java.md │ │ ├── intro-python.md │ │ ├── intro-sql.md │ │ └── intro-teaching-curriculum.md │ ├── teams-edu │ │ ├── Archiving.md │ │ ├── EnrichmentHomework.md │ │ ├── FAQ.md │ │ ├── TeachYourKid.md │ │ ├── _category_.json │ │ ├── assigning-nicknames.md │ │ ├── assigning-user-roles.md │ │ ├── copying-projects-other-teams.md │ │ ├── create_solution.gif │ │ ├── creating-projects-assignments.md │ │ ├── curriculum-hub.md │ │ ├── embedding-projects.md │ │ ├── example-homework-assignments.md │ │ ├── exporting-student-submissions.md │ │ ├── google-classroom.md │ │ ├── group-projects.md │ │ ├── input-output-testing.md │ │ ├── intro-teams-education.md │ │ ├── inviting-teachers-students.md │ │ ├── it-administrators-toolkit.md │ │ ├── keeping-notes-repls.md │ │ ├── lesson-authoring-tutorial.md │ │ ├── lesson-authoring.md │ │ ├── organizing-projects.md │ │ ├── privacy-faq.md │ │ ├── project-solutions.md │ │ ├── repls-to-team-projects.md │ │ ├── reviewing-submissions.md │ │ ├── teams-edu-checklist.md │ │ ├── teams-edu-support.md │ │ ├── testing-assessments-autograding.md │ │ ├── unit-testing.md │ │ ├── us-student-dpa.md │ │ └── using-multiplayer-anonymous-users.md │ ├── teams-pro │ │ ├── _category_.json │ │ ├── copying-repls-for-interviewing.md │ │ ├── effective-technical-interviews.md │ │ ├── interviewing-candidates.md │ │ ├── intro-teams-pro.md │ │ └── managing-teams.md │ ├── themes │ │ ├── _category_.json │ │ ├── explore.md │ │ ├── first-theme.md │ │ ├── port-from-vscode.mdx │ │ ├── switching-managing-themes.md │ │ ├── syntax-highlighting.md │ │ └── theme-design.md │ ├── tutorials │ │ ├── _category_.json │ │ ├── html-css-js │ │ │ ├── _category_.json │ │ │ ├── building-a-nineties-inspired-website.md │ │ │ ├── make-snake-game-vanilla-javascript.md │ │ │ ├── pinboard-project-part-1.md │ │ │ └── pinboard-project-part-2.md │ │ ├── kaboom │ │ │ ├── _category_.json │ │ │ ├── build-3d-game-with-kaboom.md │ │ │ ├── build-asteroids-with-kaboom.md │ │ │ ├── build-breakout-with-kaboom.md │ │ │ ├── build-flappy-bird-with-kaboom.md │ │ │ ├── build-mario-with-kaboom.md │ │ │ ├── build-snake-with-kaboom.md │ │ │ ├── build-space-invaders-with-kaboom.md │ │ │ ├── build-space-shooter-with-kaboom.md │ │ │ ├── build-tictactoe-with-websockets-kaboom.md │ │ │ ├── game-of-life-kaboom.md │ │ │ ├── kaboom-editor.md │ │ │ └── physics-playground-with-kaboom.md │ │ ├── misc │ │ │ ├── 3D-game-with-three.js.md │ │ │ ├── 3D-rendering-with-threejs.md │ │ │ ├── _category_.json │ │ │ ├── classic-basic-replit.md │ │ │ ├── creative-coding.md │ │ │ └── rails-on-replit.md │ │ ├── nodejs │ │ │ ├── _category_.json │ │ │ ├── build-basic-discord-bot-nodejs.md │ │ │ ├── build-crm-app-mongodb-nodejs.md │ │ │ ├── graphql-project-part-1.md │ │ │ ├── graphql-project-part-2.md │ │ │ ├── online-store-checkout-process.md │ │ │ ├── predictive-text-engine.md │ │ │ └── repl-chat.md │ │ ├── overview.md │ │ ├── python │ │ │ ├── 2d-platform-game.md │ │ │ ├── _category_.json │ │ │ ├── audio.md │ │ │ ├── build-basic-discord-bot-python.md │ │ │ ├── build-card-game-pygame.md │ │ │ ├── build-news-digest-app-with-nix.md │ │ │ ├── build-snake-with-pygame.md │ │ │ ├── build-with-nix.md │ │ │ ├── building-a-game-with-pygame.md │ │ │ ├── creating-interactive-python-plots-matplotlib.md │ │ │ ├── data-science-and-visualisation-with-repl-it.md │ │ │ ├── discord-meme-maker-bot.md │ │ │ ├── discord-role-bot.md │ │ │ ├── discord-rpg-bot.md │ │ │ ├── internal-organization-tool.md │ │ │ ├── paid-content-site.md │ │ │ ├── pdf-report-generator-from-spreadsheet.md │ │ │ ├── personal-stock-market-dashboard.md │ │ │ ├── spotify-api-tutorials.md │ │ │ ├── static-site-generator.md │ │ │ ├── steganography.md │ │ │ ├── technical-challenge-site.md │ │ │ ├── telegram-bot.md │ │ │ ├── test-driven-development.md │ │ │ ├── two-player-wordle-clone-python-rich.md │ │ │ └── using-the-replit-database.md │ │ ├── replit │ │ │ ├── _category_.json │ │ │ ├── build-host-company-blog-on-replit-with-hugo-nix.md │ │ │ ├── excalidraw-with-replit.md │ │ │ ├── how-to-make-a-replit-template.md │ │ │ ├── import-heroku.md │ │ │ ├── markdown.md │ │ │ ├── nix-packaging.md │ │ │ ├── playing-audio-replit.md │ │ │ └── replit-libraries.md │ │ └── web3 │ │ │ ├── _category_.json │ │ │ ├── build-a-robot-nft-p2.md │ │ │ ├── build-a-robot-nft.md │ │ │ ├── build-smart-contract-oracle.md │ │ │ └── escrow-contract-with-solidity.md │ └── updates │ │ ├── 2022-10-31-intro.md │ │ ├── 2022-11-07-fastfaster.md │ │ ├── 2022-11-22-bounties.md │ │ ├── 2022-12-05-workspace.md │ │ ├── 2023-1-23-breakthrough.md │ │ ├── 2023-2-1-india-git-polish.md │ │ ├── 2023-2-13-reputation-nix-migrations.md │ │ ├── 2023-2-24-gw-chat.md │ │ ├── 2023-3-13-git-and-tabs.md │ │ ├── 2023-3-24-multiplayer-services-plan.md │ │ ├── 2023-4-07-stability-bandwidth.md │ │ ├── 2023-4-26-chat-deploy-lsp.md │ │ ├── 2023-5-19-git-minimap-polish.md │ │ ├── 2023-6-2-things.md │ │ ├── 2023-6-29-deploy-polish-secrets.md │ │ ├── 2023-7-20-storage-inline-ports.md │ │ ├── 2023-8-11-expandable-storage-and-filetree.md │ │ └── 2023-9-15-console-packages-ghostwriter.md ├── facts.md ├── landing │ ├── about.md │ ├── careers.md │ ├── features │ │ ├── bounties.md │ │ ├── community.md │ │ ├── ghostwriter.md │ │ ├── hosting.md │ │ ├── ide.md │ │ └── multiplayer.md │ ├── index.md │ ├── page.md │ └── pricing.md ├── question-answer-session.md ├── replit-blog │ ├── anyone-can-code-week2.md │ ├── anyone-can-code-week6.md │ ├── anyone-can-code-week7.md │ ├── api-docs.md │ ├── artist-introduction.md │ ├── b.md │ ├── back-to-school-3.md │ ├── beginner-python-errors-career-karma.md │ ├── changelog-06-21.md │ ├── classroomoverview.md │ ├── commandbar.md │ ├── community-video-competition.md │ ├── company-profiles.md │ ├── computing-superpower-at-school.md │ ├── css-concepts-career-karma.md │ ├── cycles-transaction-history.md │ ├── dark_mode.md │ ├── destroying-stuck-repls.md │ ├── everyoneprograms.md │ ├── fast-dev.md │ ├── firebase.md │ ├── first-irl.md │ ├── first-website.md │ ├── genuary.md │ ├── get-hired.md │ ├── getting-started-with-solidity-on-replit.md │ ├── gw-chat-launch.md │ ├── history2-release.md │ ├── how-to-teach-yourself.md │ ├── internet-access.md │ ├── kotlin.md │ ├── land-python-developer-job-youteam.md │ ├── llms.md │ ├── markdown.md │ ├── mobile-app.md │ ├── my_repls.md │ ├── native-graphics-love.md │ ├── new-logo.md │ ├── new-year-new-replit.md │ ├── new_repls.md │ ├── nix-github-imports.md │ ├── nix_web_app.md │ ├── operating-principles.md │ ├── platform.md │ ├── postgresql-db-launch.md │ ├── profile2.md │ ├── publishing.md │ ├── python-debugger.md │ ├── python-for-beginners-partthree.md │ ├── python-package-cache.md │ ├── python-turtle.md │ ├── rails.md │ ├── repl-identity-via-cli.md │ ├── repl-resources.md │ ├── repl-status.md │ ├── repl_history.md │ ├── replexa.md │ ├── replit-recap-2022.md │ ├── repls-search.md │ ├── ruby_gems.md │ ├── rv0.md │ ├── search.md │ ├── splits.md │ ├── swift.md │ ├── teams-for-edu-fall-2020-improvements.md │ ├── teams-transition.md │ ├── teams_release.md │ ├── template-jam.md │ ├── themehowto.md │ ├── turbio_tries_to_blog.md │ ├── tutorial-jam.md │ ├── upm.md │ ├── welcome-to-the-wonderful-world-of-clusters.md │ └── wow-gfx.md └── terms-of-service.md ├── tsconfig.json ├── vectorStore ├── args.json ├── docstore.json └── hnswlib.index └── yarn.lock /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/.gitignore -------------------------------------------------------------------------------- /.replit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/.replit -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/README.md -------------------------------------------------------------------------------- /application/components/About.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/application/components/About.tsx -------------------------------------------------------------------------------- /application/components/ChatMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/application/components/ChatMessage.tsx -------------------------------------------------------------------------------- /application/components/IntroInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/application/components/IntroInfo.tsx -------------------------------------------------------------------------------- /application/components/MarkdownWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/application/components/MarkdownWrapper.tsx -------------------------------------------------------------------------------- /application/components/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/application/components/Settings.tsx -------------------------------------------------------------------------------- /application/components/Tab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/application/components/Tab.tsx -------------------------------------------------------------------------------- /application/hooks/fetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/application/hooks/fetch.ts -------------------------------------------------------------------------------- /application/hooks/useType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/application/hooks/useType.ts -------------------------------------------------------------------------------- /application/state/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/application/state/index.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/index.js -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/api/addApiKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/pages/api/addApiKey.ts -------------------------------------------------------------------------------- /pages/api/getQuota.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/pages/api/getQuota.ts -------------------------------------------------------------------------------- /pages/api/prompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/pages/api/prompt.ts -------------------------------------------------------------------------------- /pages/api/removeApiKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/pages/api/removeApiKey.ts -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /pages/login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/pages/login.tsx -------------------------------------------------------------------------------- /public/amjad.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/public/amjad.jpeg -------------------------------------------------------------------------------- /public/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/public/cover.png -------------------------------------------------------------------------------- /public/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/public/icon.png -------------------------------------------------------------------------------- /replit.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/replit.nix -------------------------------------------------------------------------------- /server/lib/auth/hasRole.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/server/lib/auth/hasRole.ts -------------------------------------------------------------------------------- /server/lib/auth/isReplAuthed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/server/lib/auth/isReplAuthed.ts -------------------------------------------------------------------------------- /server/lib/auth/rateLimiter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/server/lib/auth/rateLimiter.ts -------------------------------------------------------------------------------- /server/lib/calculateQuota.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/server/lib/calculateQuota.ts -------------------------------------------------------------------------------- /server/lib/generateResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/server/lib/generateResponse.ts -------------------------------------------------------------------------------- /server/lib/gql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/server/lib/gql.ts -------------------------------------------------------------------------------- /server/mongo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/server/mongo.ts -------------------------------------------------------------------------------- /server/script/initializeStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/server/script/initializeStore.js -------------------------------------------------------------------------------- /styles/globals.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/styles/globals.scss -------------------------------------------------------------------------------- /training/amjads-blog/essays/2016.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/amjads-blog/essays/2016.md -------------------------------------------------------------------------------- /training/amjads-blog/essays/async-js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/amjads-blog/essays/async-js.md -------------------------------------------------------------------------------- /training/amjads-blog/essays/bind.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/amjads-blog/essays/bind.md -------------------------------------------------------------------------------- /training/amjads-blog/essays/caching-promises.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/amjads-blog/essays/caching-promises.md -------------------------------------------------------------------------------- /training/amjads-blog/essays/carmack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/amjads-blog/essays/carmack.md -------------------------------------------------------------------------------- /training/amjads-blog/essays/compilers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/amjads-blog/essays/compilers.md -------------------------------------------------------------------------------- /training/amjads-blog/essays/debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/amjads-blog/essays/debugging.md -------------------------------------------------------------------------------- /training/amjads-blog/essays/decade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/amjads-blog/essays/decade.md -------------------------------------------------------------------------------- /training/amjads-blog/essays/dialectical.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/amjads-blog/essays/dialectical.md -------------------------------------------------------------------------------- /training/amjads-blog/essays/disintegrated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/amjads-blog/essays/disintegrated.md -------------------------------------------------------------------------------- /training/amjads-blog/essays/eval-as-a-service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/amjads-blog/essays/eval-as-a-service.md -------------------------------------------------------------------------------- /training/amjads-blog/essays/fight.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/amjads-blog/essays/fight.md -------------------------------------------------------------------------------- /training/amjads-blog/essays/framing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/amjads-blog/essays/framing.md -------------------------------------------------------------------------------- /training/amjads-blog/essays/github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/amjads-blog/essays/github.md -------------------------------------------------------------------------------- /training/amjads-blog/essays/gpt_post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/amjads-blog/essays/gpt_post.md -------------------------------------------------------------------------------- /training/amjads-blog/essays/grateful.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/amjads-blog/essays/grateful.md -------------------------------------------------------------------------------- /training/amjads-blog/essays/hello-world.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/amjads-blog/essays/hello-world.md -------------------------------------------------------------------------------- /training/amjads-blog/essays/hosting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/amjads-blog/essays/hosting.md -------------------------------------------------------------------------------- /training/amjads-blog/essays/hyperreal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/amjads-blog/essays/hyperreal.md -------------------------------------------------------------------------------- /training/amjads-blog/essays/intuition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/amjads-blog/essays/intuition.md -------------------------------------------------------------------------------- /training/amjads-blog/essays/js-debugger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/amjads-blog/essays/js-debugger.md -------------------------------------------------------------------------------- /training/amjads-blog/essays/js-vms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/amjads-blog/essays/js-vms.md -------------------------------------------------------------------------------- /training/amjads-blog/essays/kierkegaard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/amjads-blog/essays/kierkegaard.md -------------------------------------------------------------------------------- /training/amjads-blog/essays/leapfrog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/amjads-blog/essays/leapfrog.md -------------------------------------------------------------------------------- /training/amjads-blog/essays/learnable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/amjads-blog/essays/learnable.md -------------------------------------------------------------------------------- /training/amjads-blog/essays/meta.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/amjads-blog/essays/meta.md -------------------------------------------------------------------------------- /training/amjads-blog/essays/minimalism.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/amjads-blog/essays/minimalism.md -------------------------------------------------------------------------------- /training/amjads-blog/essays/moad.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/amjads-blog/essays/moad.md -------------------------------------------------------------------------------- /training/amjads-blog/essays/networks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/amjads-blog/essays/networks.md -------------------------------------------------------------------------------- /training/amjads-blog/essays/object-observe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/amjads-blog/essays/object-observe.md -------------------------------------------------------------------------------- /training/amjads-blog/essays/perfectionism.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/amjads-blog/essays/perfectionism.md -------------------------------------------------------------------------------- /training/amjads-blog/essays/python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/amjads-blog/essays/python.md -------------------------------------------------------------------------------- /training/amjads-blog/essays/replit_ide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/amjads-blog/essays/replit_ide.md -------------------------------------------------------------------------------- /training/amjads-blog/essays/right.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/amjads-blog/essays/right.md -------------------------------------------------------------------------------- /training/amjads-blog/essays/stoic-oss.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/amjads-blog/essays/stoic-oss.md -------------------------------------------------------------------------------- /training/amjads-blog/essays/story.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/amjads-blog/essays/story.md -------------------------------------------------------------------------------- /training/amjads-blog/essays/stuffjs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/amjads-blog/essays/stuffjs.md -------------------------------------------------------------------------------- /training/amjads-blog/essays/synthesis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/amjads-blog/essays/synthesis.md -------------------------------------------------------------------------------- /training/amjads-blog/essays/vision.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/amjads-blog/essays/vision.md -------------------------------------------------------------------------------- /training/amjads-blog/essays/waraby.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/amjads-blog/essays/waraby.md -------------------------------------------------------------------------------- /training/amjads-blog/pages/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/amjads-blog/pages/about.md -------------------------------------------------------------------------------- /training/amjads-blog/pages/bio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/amjads-blog/pages/bio.md -------------------------------------------------------------------------------- /training/community-rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/community-rules.md -------------------------------------------------------------------------------- /training/docs/bounties/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/bounties/_category_.json -------------------------------------------------------------------------------- /training/docs/bounties/bounty-hunting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/bounties/bounty-hunting.md -------------------------------------------------------------------------------- /training/docs/bounties/bounty-templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/bounties/bounty-templates.md -------------------------------------------------------------------------------- /training/docs/bounties/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/bounties/faq.md -------------------------------------------------------------------------------- /training/docs/bounties/hunter_resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/bounties/hunter_resources.md -------------------------------------------------------------------------------- /training/docs/bounties/posting-a-bounty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/bounties/posting-a-bounty.md -------------------------------------------------------------------------------- /training/docs/cycles/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/cycles/_category_.json -------------------------------------------------------------------------------- /training/docs/cycles/about-cycles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/cycles/about-cycles.md -------------------------------------------------------------------------------- /training/docs/cycles/tipping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/cycles/tipping.md -------------------------------------------------------------------------------- /training/docs/extension/00-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/extension/00-intro.md -------------------------------------------------------------------------------- /training/docs/extension/01-store.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/extension/01-store.md -------------------------------------------------------------------------------- /training/docs/extension/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/extension/_category_.json -------------------------------------------------------------------------------- /training/docs/extensions/03-publish.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/extensions/03-publish.md -------------------------------------------------------------------------------- /training/docs/extensions/04-faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/extensions/04-faq.md -------------------------------------------------------------------------------- /training/docs/extensions/api/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/extensions/api/_category_.json -------------------------------------------------------------------------------- /training/docs/extensions/api/background.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/extensions/api/background.mdx -------------------------------------------------------------------------------- /training/docs/extensions/api/manifest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/extensions/api/manifest.md -------------------------------------------------------------------------------- /training/docs/extensions/basics/01-key-concepts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/extensions/basics/01-key-concepts.md -------------------------------------------------------------------------------- /training/docs/extensions/basics/02-templates.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/extensions/basics/02-templates.mdx -------------------------------------------------------------------------------- /training/docs/extensions/basics/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/extensions/basics/_category_.json -------------------------------------------------------------------------------- /training/docs/extensions/basics/create-extension.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/extensions/basics/create-extension.mdx -------------------------------------------------------------------------------- /training/docs/extensions/basics/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/extensions/basics/index.mdx -------------------------------------------------------------------------------- /training/docs/extensions/development/00-devtools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/extensions/development/00-devtools.md -------------------------------------------------------------------------------- /training/docs/extensions/development/02-full-stack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/extensions/development/02-full-stack.md -------------------------------------------------------------------------------- /training/docs/extensions/development/03-installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/extensions/development/03-installation.md -------------------------------------------------------------------------------- /training/docs/extensions/development/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/extensions/development/_category_.json -------------------------------------------------------------------------------- /training/docs/extensions/development/react/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/extensions/development/react/_category_.json -------------------------------------------------------------------------------- /training/docs/extensions/development/react/components/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/extensions/development/react/components/_category_.json -------------------------------------------------------------------------------- /training/docs/extensions/development/react/hooks/00-useReplit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/extensions/development/react/hooks/00-useReplit.md -------------------------------------------------------------------------------- /training/docs/extensions/development/react/hooks/01-useReplitEffect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/extensions/development/react/hooks/01-useReplitEffect.md -------------------------------------------------------------------------------- /training/docs/extensions/development/react/hooks/02-useWatchTextFile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/extensions/development/react/hooks/02-useWatchTextFile.md -------------------------------------------------------------------------------- /training/docs/extensions/development/react/hooks/03-useActiveFile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/extensions/development/react/hooks/03-useActiveFile.md -------------------------------------------------------------------------------- /training/docs/extensions/development/react/hooks/04-useThemeValues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/extensions/development/react/hooks/04-useThemeValues.md -------------------------------------------------------------------------------- /training/docs/extensions/development/react/hooks/05-useTheme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/extensions/development/react/hooks/05-useTheme.md -------------------------------------------------------------------------------- /training/docs/extensions/development/react/hooks/06-useIsExtension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/extensions/development/react/hooks/06-useIsExtension.md -------------------------------------------------------------------------------- /training/docs/extensions/development/react/hooks/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/extensions/development/react/hooks/_category_.json -------------------------------------------------------------------------------- /training/docs/extensions/development/react/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/extensions/development/react/introduction.md -------------------------------------------------------------------------------- /training/docs/extensions/examples/00-json-editor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/extensions/examples/00-json-editor.md -------------------------------------------------------------------------------- /training/docs/extensions/examples/01-snippet-manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/extensions/examples/01-snippet-manager.md -------------------------------------------------------------------------------- /training/docs/extensions/examples/02-javascript-commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/extensions/examples/02-javascript-commands.md -------------------------------------------------------------------------------- /training/docs/extensions/examples/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/extensions/examples/_category_.json -------------------------------------------------------------------------------- /training/docs/getting-started/00-intro-replit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/getting-started/00-intro-replit.md -------------------------------------------------------------------------------- /training/docs/getting-started/01-key-terms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/getting-started/01-key-terms.md -------------------------------------------------------------------------------- /training/docs/getting-started/02-managing-repls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/getting-started/02-managing-repls.md -------------------------------------------------------------------------------- /training/docs/getting-started/03-faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/getting-started/03-faq.md -------------------------------------------------------------------------------- /training/docs/getting-started/04-clui-graphical-cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/getting-started/04-clui-graphical-cli.md -------------------------------------------------------------------------------- /training/docs/getting-started/05-desktop-app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/getting-started/05-desktop-app.md -------------------------------------------------------------------------------- /training/docs/getting-started/06-replit-mobile-app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/getting-started/06-replit-mobile-app.md -------------------------------------------------------------------------------- /training/docs/getting-started/07-firewalled-replit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/getting-started/07-firewalled-replit.md -------------------------------------------------------------------------------- /training/docs/getting-started/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/getting-started/_category_.json -------------------------------------------------------------------------------- /training/docs/hosting/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/hosting/_category_.json -------------------------------------------------------------------------------- /training/docs/hosting/about-usage-based-billing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/hosting/about-usage-based-billing.md -------------------------------------------------------------------------------- /training/docs/hosting/add-a-made-with-replit-badge-to-your-webview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/hosting/add-a-made-with-replit-badge-to-your-webview.md -------------------------------------------------------------------------------- /training/docs/hosting/authenticating-users-repl-auth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/hosting/authenticating-users-repl-auth.md -------------------------------------------------------------------------------- /training/docs/hosting/custom-domains.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/hosting/custom-domains.md -------------------------------------------------------------------------------- /training/docs/hosting/databases/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/hosting/databases/_category_.json -------------------------------------------------------------------------------- /training/docs/hosting/databases/postgresql-on-replit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/hosting/databases/postgresql-on-replit.md -------------------------------------------------------------------------------- /training/docs/hosting/databases/replit-database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/hosting/databases/replit-database.md -------------------------------------------------------------------------------- /training/docs/hosting/deployments/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/hosting/deployments/_category_.json -------------------------------------------------------------------------------- /training/docs/hosting/deployments/about-deployments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/hosting/deployments/about-deployments.md -------------------------------------------------------------------------------- /training/docs/hosting/deployments/autoscale-deployments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/hosting/deployments/autoscale-deployments.md -------------------------------------------------------------------------------- /training/docs/hosting/deployments/custom-domains.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/hosting/deployments/custom-domains.md -------------------------------------------------------------------------------- /training/docs/hosting/deployments/deploying-a-github-repository.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/hosting/deployments/deploying-a-github-repository.md -------------------------------------------------------------------------------- /training/docs/hosting/deployments/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/hosting/deployments/faq.md -------------------------------------------------------------------------------- /training/docs/hosting/deployments/migration-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/hosting/deployments/migration-guide.md -------------------------------------------------------------------------------- /training/docs/hosting/deployments/monitoring-a-deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/hosting/deployments/monitoring-a-deployment.md -------------------------------------------------------------------------------- /training/docs/hosting/deployments/reserved-vm-deployments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/hosting/deployments/reserved-vm-deployments.md -------------------------------------------------------------------------------- /training/docs/hosting/deployments/speeding-up-deploys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/hosting/deployments/speeding-up-deploys.md -------------------------------------------------------------------------------- /training/docs/hosting/deployments/static-deployments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/hosting/deployments/static-deployments.md -------------------------------------------------------------------------------- /training/docs/hosting/deployments/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/hosting/deployments/troubleshooting.md -------------------------------------------------------------------------------- /training/docs/hosting/embedding-repls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/hosting/embedding-repls.md -------------------------------------------------------------------------------- /training/docs/hosting/hosting-web-pages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/hosting/hosting-web-pages.md -------------------------------------------------------------------------------- /training/docs/hosting/outbound-transfer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/hosting/outbound-transfer.md -------------------------------------------------------------------------------- /training/docs/hosting/repl-auth-sidebar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/hosting/repl-auth-sidebar.md -------------------------------------------------------------------------------- /training/docs/hosting/sharing-your-repl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/hosting/sharing-your-repl.mdx -------------------------------------------------------------------------------- /training/docs/hosting/status-manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/hosting/status-manager.md -------------------------------------------------------------------------------- /training/docs/hosting/streaming-native-graphics-vnc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/hosting/streaming-native-graphics-vnc.md -------------------------------------------------------------------------------- /training/docs/legal-and-security-info/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/legal-and-security-info/_category_.json -------------------------------------------------------------------------------- /training/docs/legal-and-security-info/copyright-claims-takedown-requests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/legal-and-security-info/copyright-claims-takedown-requests.md -------------------------------------------------------------------------------- /training/docs/legal-and-security-info/deleting-your-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/legal-and-security-info/deleting-your-data.md -------------------------------------------------------------------------------- /training/docs/legal-and-security-info/licensing-info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/legal-and-security-info/licensing-info.md -------------------------------------------------------------------------------- /training/docs/legal-and-security-info/security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/legal-and-security-info/security.md -------------------------------------------------------------------------------- /training/docs/legal-and-security-info/strike-system-faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/legal-and-security-info/strike-system-faq.md -------------------------------------------------------------------------------- /training/docs/legal-and-security-info/support-policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/legal-and-security-info/support-policy.md -------------------------------------------------------------------------------- /training/docs/legal-and-security-info/trust-and-safety.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/legal-and-security-info/trust-and-safety.md -------------------------------------------------------------------------------- /training/docs/legal-and-security-info/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/legal-and-security-info/usage.md -------------------------------------------------------------------------------- /training/docs/legal-and-security-info/web-accessibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/legal-and-security-info/web-accessibility.md -------------------------------------------------------------------------------- /training/docs/mobile-app/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/mobile-app/_category_.json -------------------------------------------------------------------------------- /training/docs/mobile-app/in-app-purchases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/mobile-app/in-app-purchases.md -------------------------------------------------------------------------------- /training/docs/model-farm/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/model-farm/_category_.json -------------------------------------------------------------------------------- /training/docs/model-farm/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/model-farm/index.md -------------------------------------------------------------------------------- /training/docs/model-farm/models/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/model-farm/models/_category_.json -------------------------------------------------------------------------------- /training/docs/model-farm/models/chat_models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/model-farm/models/chat_models.md -------------------------------------------------------------------------------- /training/docs/model-farm/models/completion_models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/model-farm/models/completion_models.md -------------------------------------------------------------------------------- /training/docs/model-farm/models/embedding_models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/model-farm/models/embedding_models.md -------------------------------------------------------------------------------- /training/docs/model-farm/python/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/model-farm/python/_category_.json -------------------------------------------------------------------------------- /training/docs/model-farm/python/chat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/model-farm/python/chat.md -------------------------------------------------------------------------------- /training/docs/model-farm/python/completion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/model-farm/python/completion.md -------------------------------------------------------------------------------- /training/docs/model-farm/python/embedding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/model-farm/python/embedding.md -------------------------------------------------------------------------------- /training/docs/model-farm/python/google.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/model-farm/python/google.md -------------------------------------------------------------------------------- /training/docs/model-farm/python/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/model-farm/python/index.md -------------------------------------------------------------------------------- /training/docs/model-farm/typescript/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/model-farm/typescript/_category_.json -------------------------------------------------------------------------------- /training/docs/model-farm/typescript/chat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/model-farm/typescript/chat.md -------------------------------------------------------------------------------- /training/docs/model-farm/typescript/completion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/model-farm/typescript/completion.md -------------------------------------------------------------------------------- /training/docs/model-farm/typescript/embedding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/model-farm/typescript/embedding.md -------------------------------------------------------------------------------- /training/docs/model-farm/typescript/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/model-farm/typescript/index.md -------------------------------------------------------------------------------- /training/docs/model-farm/typescript/requesterror.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/model-farm/typescript/requesterror.md -------------------------------------------------------------------------------- /training/docs/model-farm/typescript/result.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/model-farm/typescript/result.md -------------------------------------------------------------------------------- /training/docs/organizations/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/organizations/_category_.json -------------------------------------------------------------------------------- /training/docs/organizations/roles-and-permissions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/organizations/roles-and-permissions.md -------------------------------------------------------------------------------- /training/docs/power-ups/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/power-ups/_category_.json -------------------------------------------------------------------------------- /training/docs/power-ups/boosts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/power-ups/boosts.md -------------------------------------------------------------------------------- /training/docs/power-ups/private-repls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/power-ups/private-repls.md -------------------------------------------------------------------------------- /training/docs/power-ups/replit-core.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/power-ups/replit-core.md -------------------------------------------------------------------------------- /training/docs/power-ups/replitai/00-getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/power-ups/replitai/00-getting-started.md -------------------------------------------------------------------------------- /training/docs/power-ups/replitai/01-complete-code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/power-ups/replitai/01-complete-code.md -------------------------------------------------------------------------------- /training/docs/power-ups/replitai/02-replitai-chat.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/power-ups/replitai/02-replitai-chat.mdx -------------------------------------------------------------------------------- /training/docs/power-ups/replitai/03-explain-code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/power-ups/replitai/03-explain-code.md -------------------------------------------------------------------------------- /training/docs/power-ups/replitai/04-edit-code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/power-ups/replitai/04-edit-code.md -------------------------------------------------------------------------------- /training/docs/power-ups/replitai/05-generate-code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/power-ups/replitai/05-generate-code.md -------------------------------------------------------------------------------- /training/docs/power-ups/replitai/06-copilot-vs-replitai.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/power-ups/replitai/06-copilot-vs-replitai.md -------------------------------------------------------------------------------- /training/docs/power-ups/replitai/07-faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/power-ups/replitai/07-faq.md -------------------------------------------------------------------------------- /training/docs/power-ups/replitai/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/power-ups/replitai/_category_.json -------------------------------------------------------------------------------- /training/docs/power-ups/ssh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/power-ups/ssh.md -------------------------------------------------------------------------------- /training/docs/programming-ide/00-introduction-to-the-workspace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/programming-ide/00-introduction-to-the-workspace.md -------------------------------------------------------------------------------- /training/docs/programming-ide/01-configuring-repl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/programming-ide/01-configuring-repl.md -------------------------------------------------------------------------------- /training/docs/programming-ide/02-nix-on-replit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/programming-ide/02-nix-on-replit.md -------------------------------------------------------------------------------- /training/docs/programming-ide/03-keyboard-shortcuts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/programming-ide/03-keyboard-shortcuts.md -------------------------------------------------------------------------------- /training/docs/programming-ide/04-installing-packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/programming-ide/04-installing-packages.md -------------------------------------------------------------------------------- /training/docs/programming-ide/05-repl-env-metadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/programming-ide/05-repl-env-metadata.md -------------------------------------------------------------------------------- /training/docs/programming-ide/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/programming-ide/_category_.json -------------------------------------------------------------------------------- /training/docs/programming-ide/using-git-on-replit/00-connect-github-to-replit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/programming-ide/using-git-on-replit/00-connect-github-to-replit.md -------------------------------------------------------------------------------- /training/docs/programming-ide/using-git-on-replit/01-import-repository.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/programming-ide/using-git-on-replit/01-import-repository.md -------------------------------------------------------------------------------- /training/docs/programming-ide/using-git-on-replit/02-private-repo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/programming-ide/using-git-on-replit/02-private-repo.md -------------------------------------------------------------------------------- /training/docs/programming-ide/using-git-on-replit/03-use-gui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/programming-ide/using-git-on-replit/03-use-gui.md -------------------------------------------------------------------------------- /training/docs/programming-ide/using-git-on-replit/04-git-shell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/programming-ide/using-git-on-replit/04-git-shell.md -------------------------------------------------------------------------------- /training/docs/programming-ide/using-git-on-replit/05-running-github-repositories-replit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/programming-ide/using-git-on-replit/05-running-github-repositories-replit.md -------------------------------------------------------------------------------- /training/docs/programming-ide/using-git-on-replit/06-git-commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/programming-ide/using-git-on-replit/06-git-commands.md -------------------------------------------------------------------------------- /training/docs/programming-ide/using-git-on-replit/07-github-auth-errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/programming-ide/using-git-on-replit/07-github-auth-errors.md -------------------------------------------------------------------------------- /training/docs/programming-ide/using-git-on-replit/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/programming-ide/using-git-on-replit/_category_.json -------------------------------------------------------------------------------- /training/docs/programming-ide/workspace-features/00-secrets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/programming-ide/workspace-features/00-secrets.md -------------------------------------------------------------------------------- /training/docs/programming-ide/workspace-features/01-file-history.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/programming-ide/workspace-features/01-file-history.md -------------------------------------------------------------------------------- /training/docs/programming-ide/workspace-features/02-inline-threads.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/programming-ide/workspace-features/02-inline-threads.md -------------------------------------------------------------------------------- /training/docs/programming-ide/workspace-features/03-debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/programming-ide/workspace-features/03-debugging.md -------------------------------------------------------------------------------- /training/docs/programming-ide/workspace-features/03-expandable-storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/programming-ide/workspace-features/03-expandable-storage.md -------------------------------------------------------------------------------- /training/docs/programming-ide/workspace-features/04-multiplayer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/programming-ide/workspace-features/04-multiplayer.md -------------------------------------------------------------------------------- /training/docs/programming-ide/workspace-features/05-resources-panel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/programming-ide/workspace-features/05-resources-panel.md -------------------------------------------------------------------------------- /training/docs/programming-ide/workspace-features/06-preferences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/programming-ide/workspace-features/06-preferences.md -------------------------------------------------------------------------------- /training/docs/programming-ide/workspace-features/07-console-shell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/programming-ide/workspace-features/07-console-shell.md -------------------------------------------------------------------------------- /training/docs/programming-ide/workspace-features/08-webview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/programming-ide/workspace-features/08-webview.md -------------------------------------------------------------------------------- /training/docs/programming-ide/workspace-features/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/programming-ide/workspace-features/_category_.json -------------------------------------------------------------------------------- /training/docs/replit-books/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/replit-books/_category_.json -------------------------------------------------------------------------------- /training/docs/replit-books/books.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/replit-books/books.md -------------------------------------------------------------------------------- /training/docs/teaching-curriculum/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/teaching-curriculum/_category_.json -------------------------------------------------------------------------------- /training/docs/teaching-curriculum/abstract-data-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/teaching-curriculum/abstract-data-types.md -------------------------------------------------------------------------------- /training/docs/teaching-curriculum/intermediate-python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/teaching-curriculum/intermediate-python.md -------------------------------------------------------------------------------- /training/docs/teaching-curriculum/intro-cpp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/teaching-curriculum/intro-cpp.md -------------------------------------------------------------------------------- /training/docs/teaching-curriculum/intro-html-css.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/teaching-curriculum/intro-html-css.md -------------------------------------------------------------------------------- /training/docs/teaching-curriculum/intro-java.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/teaching-curriculum/intro-java.md -------------------------------------------------------------------------------- /training/docs/teaching-curriculum/intro-python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/teaching-curriculum/intro-python.md -------------------------------------------------------------------------------- /training/docs/teaching-curriculum/intro-sql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/teaching-curriculum/intro-sql.md -------------------------------------------------------------------------------- /training/docs/teaching-curriculum/intro-teaching-curriculum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/teaching-curriculum/intro-teaching-curriculum.md -------------------------------------------------------------------------------- /training/docs/teams-edu/Archiving.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/teams-edu/Archiving.md -------------------------------------------------------------------------------- /training/docs/teams-edu/EnrichmentHomework.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/teams-edu/EnrichmentHomework.md -------------------------------------------------------------------------------- /training/docs/teams-edu/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/teams-edu/FAQ.md -------------------------------------------------------------------------------- /training/docs/teams-edu/TeachYourKid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/teams-edu/TeachYourKid.md -------------------------------------------------------------------------------- /training/docs/teams-edu/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/teams-edu/_category_.json -------------------------------------------------------------------------------- /training/docs/teams-edu/assigning-nicknames.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/teams-edu/assigning-nicknames.md -------------------------------------------------------------------------------- /training/docs/teams-edu/assigning-user-roles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/teams-edu/assigning-user-roles.md -------------------------------------------------------------------------------- /training/docs/teams-edu/copying-projects-other-teams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/teams-edu/copying-projects-other-teams.md -------------------------------------------------------------------------------- /training/docs/teams-edu/create_solution.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/teams-edu/create_solution.gif -------------------------------------------------------------------------------- /training/docs/teams-edu/creating-projects-assignments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/teams-edu/creating-projects-assignments.md -------------------------------------------------------------------------------- /training/docs/teams-edu/curriculum-hub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/teams-edu/curriculum-hub.md -------------------------------------------------------------------------------- /training/docs/teams-edu/embedding-projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/teams-edu/embedding-projects.md -------------------------------------------------------------------------------- /training/docs/teams-edu/example-homework-assignments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/teams-edu/example-homework-assignments.md -------------------------------------------------------------------------------- /training/docs/teams-edu/exporting-student-submissions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/teams-edu/exporting-student-submissions.md -------------------------------------------------------------------------------- /training/docs/teams-edu/google-classroom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/teams-edu/google-classroom.md -------------------------------------------------------------------------------- /training/docs/teams-edu/group-projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/teams-edu/group-projects.md -------------------------------------------------------------------------------- /training/docs/teams-edu/input-output-testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/teams-edu/input-output-testing.md -------------------------------------------------------------------------------- /training/docs/teams-edu/intro-teams-education.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/teams-edu/intro-teams-education.md -------------------------------------------------------------------------------- /training/docs/teams-edu/inviting-teachers-students.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/teams-edu/inviting-teachers-students.md -------------------------------------------------------------------------------- /training/docs/teams-edu/it-administrators-toolkit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/teams-edu/it-administrators-toolkit.md -------------------------------------------------------------------------------- /training/docs/teams-edu/keeping-notes-repls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/teams-edu/keeping-notes-repls.md -------------------------------------------------------------------------------- /training/docs/teams-edu/lesson-authoring-tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/teams-edu/lesson-authoring-tutorial.md -------------------------------------------------------------------------------- /training/docs/teams-edu/lesson-authoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/teams-edu/lesson-authoring.md -------------------------------------------------------------------------------- /training/docs/teams-edu/organizing-projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/teams-edu/organizing-projects.md -------------------------------------------------------------------------------- /training/docs/teams-edu/privacy-faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/teams-edu/privacy-faq.md -------------------------------------------------------------------------------- /training/docs/teams-edu/project-solutions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/teams-edu/project-solutions.md -------------------------------------------------------------------------------- /training/docs/teams-edu/repls-to-team-projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/teams-edu/repls-to-team-projects.md -------------------------------------------------------------------------------- /training/docs/teams-edu/reviewing-submissions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/teams-edu/reviewing-submissions.md -------------------------------------------------------------------------------- /training/docs/teams-edu/teams-edu-checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/teams-edu/teams-edu-checklist.md -------------------------------------------------------------------------------- /training/docs/teams-edu/teams-edu-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/teams-edu/teams-edu-support.md -------------------------------------------------------------------------------- /training/docs/teams-edu/testing-assessments-autograding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/teams-edu/testing-assessments-autograding.md -------------------------------------------------------------------------------- /training/docs/teams-edu/unit-testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/teams-edu/unit-testing.md -------------------------------------------------------------------------------- /training/docs/teams-edu/us-student-dpa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/teams-edu/us-student-dpa.md -------------------------------------------------------------------------------- /training/docs/teams-edu/using-multiplayer-anonymous-users.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/teams-edu/using-multiplayer-anonymous-users.md -------------------------------------------------------------------------------- /training/docs/teams-pro/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/teams-pro/_category_.json -------------------------------------------------------------------------------- /training/docs/teams-pro/copying-repls-for-interviewing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/teams-pro/copying-repls-for-interviewing.md -------------------------------------------------------------------------------- /training/docs/teams-pro/effective-technical-interviews.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/teams-pro/effective-technical-interviews.md -------------------------------------------------------------------------------- /training/docs/teams-pro/interviewing-candidates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/teams-pro/interviewing-candidates.md -------------------------------------------------------------------------------- /training/docs/teams-pro/intro-teams-pro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/teams-pro/intro-teams-pro.md -------------------------------------------------------------------------------- /training/docs/teams-pro/managing-teams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/teams-pro/managing-teams.md -------------------------------------------------------------------------------- /training/docs/themes/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/themes/_category_.json -------------------------------------------------------------------------------- /training/docs/themes/explore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/themes/explore.md -------------------------------------------------------------------------------- /training/docs/themes/first-theme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/themes/first-theme.md -------------------------------------------------------------------------------- /training/docs/themes/port-from-vscode.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/themes/port-from-vscode.mdx -------------------------------------------------------------------------------- /training/docs/themes/switching-managing-themes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/themes/switching-managing-themes.md -------------------------------------------------------------------------------- /training/docs/themes/syntax-highlighting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/themes/syntax-highlighting.md -------------------------------------------------------------------------------- /training/docs/themes/theme-design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/themes/theme-design.md -------------------------------------------------------------------------------- /training/docs/tutorials/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/_category_.json -------------------------------------------------------------------------------- /training/docs/tutorials/html-css-js/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/html-css-js/_category_.json -------------------------------------------------------------------------------- /training/docs/tutorials/html-css-js/building-a-nineties-inspired-website.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/html-css-js/building-a-nineties-inspired-website.md -------------------------------------------------------------------------------- /training/docs/tutorials/html-css-js/make-snake-game-vanilla-javascript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/html-css-js/make-snake-game-vanilla-javascript.md -------------------------------------------------------------------------------- /training/docs/tutorials/html-css-js/pinboard-project-part-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/html-css-js/pinboard-project-part-1.md -------------------------------------------------------------------------------- /training/docs/tutorials/html-css-js/pinboard-project-part-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/html-css-js/pinboard-project-part-2.md -------------------------------------------------------------------------------- /training/docs/tutorials/kaboom/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/kaboom/_category_.json -------------------------------------------------------------------------------- /training/docs/tutorials/kaboom/build-3d-game-with-kaboom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/kaboom/build-3d-game-with-kaboom.md -------------------------------------------------------------------------------- /training/docs/tutorials/kaboom/build-asteroids-with-kaboom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/kaboom/build-asteroids-with-kaboom.md -------------------------------------------------------------------------------- /training/docs/tutorials/kaboom/build-breakout-with-kaboom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/kaboom/build-breakout-with-kaboom.md -------------------------------------------------------------------------------- /training/docs/tutorials/kaboom/build-flappy-bird-with-kaboom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/kaboom/build-flappy-bird-with-kaboom.md -------------------------------------------------------------------------------- /training/docs/tutorials/kaboom/build-mario-with-kaboom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/kaboom/build-mario-with-kaboom.md -------------------------------------------------------------------------------- /training/docs/tutorials/kaboom/build-snake-with-kaboom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/kaboom/build-snake-with-kaboom.md -------------------------------------------------------------------------------- /training/docs/tutorials/kaboom/build-space-invaders-with-kaboom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/kaboom/build-space-invaders-with-kaboom.md -------------------------------------------------------------------------------- /training/docs/tutorials/kaboom/build-space-shooter-with-kaboom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/kaboom/build-space-shooter-with-kaboom.md -------------------------------------------------------------------------------- /training/docs/tutorials/kaboom/build-tictactoe-with-websockets-kaboom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/kaboom/build-tictactoe-with-websockets-kaboom.md -------------------------------------------------------------------------------- /training/docs/tutorials/kaboom/game-of-life-kaboom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/kaboom/game-of-life-kaboom.md -------------------------------------------------------------------------------- /training/docs/tutorials/kaboom/kaboom-editor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/kaboom/kaboom-editor.md -------------------------------------------------------------------------------- /training/docs/tutorials/kaboom/physics-playground-with-kaboom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/kaboom/physics-playground-with-kaboom.md -------------------------------------------------------------------------------- /training/docs/tutorials/misc/3D-game-with-three.js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/misc/3D-game-with-three.js.md -------------------------------------------------------------------------------- /training/docs/tutorials/misc/3D-rendering-with-threejs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/misc/3D-rendering-with-threejs.md -------------------------------------------------------------------------------- /training/docs/tutorials/misc/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/misc/_category_.json -------------------------------------------------------------------------------- /training/docs/tutorials/misc/classic-basic-replit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/misc/classic-basic-replit.md -------------------------------------------------------------------------------- /training/docs/tutorials/misc/creative-coding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/misc/creative-coding.md -------------------------------------------------------------------------------- /training/docs/tutorials/misc/rails-on-replit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/misc/rails-on-replit.md -------------------------------------------------------------------------------- /training/docs/tutorials/nodejs/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/nodejs/_category_.json -------------------------------------------------------------------------------- /training/docs/tutorials/nodejs/build-basic-discord-bot-nodejs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/nodejs/build-basic-discord-bot-nodejs.md -------------------------------------------------------------------------------- /training/docs/tutorials/nodejs/build-crm-app-mongodb-nodejs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/nodejs/build-crm-app-mongodb-nodejs.md -------------------------------------------------------------------------------- /training/docs/tutorials/nodejs/graphql-project-part-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/nodejs/graphql-project-part-1.md -------------------------------------------------------------------------------- /training/docs/tutorials/nodejs/graphql-project-part-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/nodejs/graphql-project-part-2.md -------------------------------------------------------------------------------- /training/docs/tutorials/nodejs/online-store-checkout-process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/nodejs/online-store-checkout-process.md -------------------------------------------------------------------------------- /training/docs/tutorials/nodejs/predictive-text-engine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/nodejs/predictive-text-engine.md -------------------------------------------------------------------------------- /training/docs/tutorials/nodejs/repl-chat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/nodejs/repl-chat.md -------------------------------------------------------------------------------- /training/docs/tutorials/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/overview.md -------------------------------------------------------------------------------- /training/docs/tutorials/python/2d-platform-game.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/python/2d-platform-game.md -------------------------------------------------------------------------------- /training/docs/tutorials/python/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/python/_category_.json -------------------------------------------------------------------------------- /training/docs/tutorials/python/audio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/python/audio.md -------------------------------------------------------------------------------- /training/docs/tutorials/python/build-basic-discord-bot-python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/python/build-basic-discord-bot-python.md -------------------------------------------------------------------------------- /training/docs/tutorials/python/build-card-game-pygame.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/python/build-card-game-pygame.md -------------------------------------------------------------------------------- /training/docs/tutorials/python/build-news-digest-app-with-nix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/python/build-news-digest-app-with-nix.md -------------------------------------------------------------------------------- /training/docs/tutorials/python/build-snake-with-pygame.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/python/build-snake-with-pygame.md -------------------------------------------------------------------------------- /training/docs/tutorials/python/build-with-nix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/python/build-with-nix.md -------------------------------------------------------------------------------- /training/docs/tutorials/python/building-a-game-with-pygame.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/python/building-a-game-with-pygame.md -------------------------------------------------------------------------------- /training/docs/tutorials/python/creating-interactive-python-plots-matplotlib.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/python/creating-interactive-python-plots-matplotlib.md -------------------------------------------------------------------------------- /training/docs/tutorials/python/data-science-and-visualisation-with-repl-it.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/python/data-science-and-visualisation-with-repl-it.md -------------------------------------------------------------------------------- /training/docs/tutorials/python/discord-meme-maker-bot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/python/discord-meme-maker-bot.md -------------------------------------------------------------------------------- /training/docs/tutorials/python/discord-role-bot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/python/discord-role-bot.md -------------------------------------------------------------------------------- /training/docs/tutorials/python/discord-rpg-bot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/python/discord-rpg-bot.md -------------------------------------------------------------------------------- /training/docs/tutorials/python/internal-organization-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/python/internal-organization-tool.md -------------------------------------------------------------------------------- /training/docs/tutorials/python/paid-content-site.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/python/paid-content-site.md -------------------------------------------------------------------------------- /training/docs/tutorials/python/pdf-report-generator-from-spreadsheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/python/pdf-report-generator-from-spreadsheet.md -------------------------------------------------------------------------------- /training/docs/tutorials/python/personal-stock-market-dashboard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/python/personal-stock-market-dashboard.md -------------------------------------------------------------------------------- /training/docs/tutorials/python/spotify-api-tutorials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/python/spotify-api-tutorials.md -------------------------------------------------------------------------------- /training/docs/tutorials/python/static-site-generator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/python/static-site-generator.md -------------------------------------------------------------------------------- /training/docs/tutorials/python/steganography.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/python/steganography.md -------------------------------------------------------------------------------- /training/docs/tutorials/python/technical-challenge-site.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/python/technical-challenge-site.md -------------------------------------------------------------------------------- /training/docs/tutorials/python/telegram-bot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/python/telegram-bot.md -------------------------------------------------------------------------------- /training/docs/tutorials/python/test-driven-development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/python/test-driven-development.md -------------------------------------------------------------------------------- /training/docs/tutorials/python/two-player-wordle-clone-python-rich.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/python/two-player-wordle-clone-python-rich.md -------------------------------------------------------------------------------- /training/docs/tutorials/python/using-the-replit-database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/python/using-the-replit-database.md -------------------------------------------------------------------------------- /training/docs/tutorials/replit/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/replit/_category_.json -------------------------------------------------------------------------------- /training/docs/tutorials/replit/build-host-company-blog-on-replit-with-hugo-nix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/replit/build-host-company-blog-on-replit-with-hugo-nix.md -------------------------------------------------------------------------------- /training/docs/tutorials/replit/excalidraw-with-replit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/replit/excalidraw-with-replit.md -------------------------------------------------------------------------------- /training/docs/tutorials/replit/how-to-make-a-replit-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/replit/how-to-make-a-replit-template.md -------------------------------------------------------------------------------- /training/docs/tutorials/replit/import-heroku.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/replit/import-heroku.md -------------------------------------------------------------------------------- /training/docs/tutorials/replit/markdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/replit/markdown.md -------------------------------------------------------------------------------- /training/docs/tutorials/replit/nix-packaging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/replit/nix-packaging.md -------------------------------------------------------------------------------- /training/docs/tutorials/replit/playing-audio-replit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/replit/playing-audio-replit.md -------------------------------------------------------------------------------- /training/docs/tutorials/replit/replit-libraries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/replit/replit-libraries.md -------------------------------------------------------------------------------- /training/docs/tutorials/web3/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/web3/_category_.json -------------------------------------------------------------------------------- /training/docs/tutorials/web3/build-a-robot-nft-p2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/web3/build-a-robot-nft-p2.md -------------------------------------------------------------------------------- /training/docs/tutorials/web3/build-a-robot-nft.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/web3/build-a-robot-nft.md -------------------------------------------------------------------------------- /training/docs/tutorials/web3/build-smart-contract-oracle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/web3/build-smart-contract-oracle.md -------------------------------------------------------------------------------- /training/docs/tutorials/web3/escrow-contract-with-solidity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/tutorials/web3/escrow-contract-with-solidity.md -------------------------------------------------------------------------------- /training/docs/updates/2022-10-31-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/updates/2022-10-31-intro.md -------------------------------------------------------------------------------- /training/docs/updates/2022-11-07-fastfaster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/updates/2022-11-07-fastfaster.md -------------------------------------------------------------------------------- /training/docs/updates/2022-11-22-bounties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/updates/2022-11-22-bounties.md -------------------------------------------------------------------------------- /training/docs/updates/2022-12-05-workspace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/updates/2022-12-05-workspace.md -------------------------------------------------------------------------------- /training/docs/updates/2023-1-23-breakthrough.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/updates/2023-1-23-breakthrough.md -------------------------------------------------------------------------------- /training/docs/updates/2023-2-1-india-git-polish.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/updates/2023-2-1-india-git-polish.md -------------------------------------------------------------------------------- /training/docs/updates/2023-2-13-reputation-nix-migrations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/updates/2023-2-13-reputation-nix-migrations.md -------------------------------------------------------------------------------- /training/docs/updates/2023-2-24-gw-chat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/updates/2023-2-24-gw-chat.md -------------------------------------------------------------------------------- /training/docs/updates/2023-3-13-git-and-tabs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/updates/2023-3-13-git-and-tabs.md -------------------------------------------------------------------------------- /training/docs/updates/2023-3-24-multiplayer-services-plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/updates/2023-3-24-multiplayer-services-plan.md -------------------------------------------------------------------------------- /training/docs/updates/2023-4-07-stability-bandwidth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/updates/2023-4-07-stability-bandwidth.md -------------------------------------------------------------------------------- /training/docs/updates/2023-4-26-chat-deploy-lsp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/updates/2023-4-26-chat-deploy-lsp.md -------------------------------------------------------------------------------- /training/docs/updates/2023-5-19-git-minimap-polish.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/updates/2023-5-19-git-minimap-polish.md -------------------------------------------------------------------------------- /training/docs/updates/2023-6-2-things.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/updates/2023-6-2-things.md -------------------------------------------------------------------------------- /training/docs/updates/2023-6-29-deploy-polish-secrets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/updates/2023-6-29-deploy-polish-secrets.md -------------------------------------------------------------------------------- /training/docs/updates/2023-7-20-storage-inline-ports.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/updates/2023-7-20-storage-inline-ports.md -------------------------------------------------------------------------------- /training/docs/updates/2023-8-11-expandable-storage-and-filetree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/updates/2023-8-11-expandable-storage-and-filetree.md -------------------------------------------------------------------------------- /training/docs/updates/2023-9-15-console-packages-ghostwriter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/docs/updates/2023-9-15-console-packages-ghostwriter.md -------------------------------------------------------------------------------- /training/facts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/facts.md -------------------------------------------------------------------------------- /training/landing/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/landing/about.md -------------------------------------------------------------------------------- /training/landing/careers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/landing/careers.md -------------------------------------------------------------------------------- /training/landing/features/bounties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/landing/features/bounties.md -------------------------------------------------------------------------------- /training/landing/features/community.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/landing/features/community.md -------------------------------------------------------------------------------- /training/landing/features/ghostwriter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/landing/features/ghostwriter.md -------------------------------------------------------------------------------- /training/landing/features/hosting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/landing/features/hosting.md -------------------------------------------------------------------------------- /training/landing/features/ide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/landing/features/ide.md -------------------------------------------------------------------------------- /training/landing/features/multiplayer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/landing/features/multiplayer.md -------------------------------------------------------------------------------- /training/landing/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/landing/index.md -------------------------------------------------------------------------------- /training/landing/page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/landing/page.md -------------------------------------------------------------------------------- /training/landing/pricing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/landing/pricing.md -------------------------------------------------------------------------------- /training/question-answer-session.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/question-answer-session.md -------------------------------------------------------------------------------- /training/replit-blog/anyone-can-code-week2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/anyone-can-code-week2.md -------------------------------------------------------------------------------- /training/replit-blog/anyone-can-code-week6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/anyone-can-code-week6.md -------------------------------------------------------------------------------- /training/replit-blog/anyone-can-code-week7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/anyone-can-code-week7.md -------------------------------------------------------------------------------- /training/replit-blog/api-docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/api-docs.md -------------------------------------------------------------------------------- /training/replit-blog/artist-introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/artist-introduction.md -------------------------------------------------------------------------------- /training/replit-blog/b.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/b.md -------------------------------------------------------------------------------- /training/replit-blog/back-to-school-3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/back-to-school-3.md -------------------------------------------------------------------------------- /training/replit-blog/beginner-python-errors-career-karma.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/beginner-python-errors-career-karma.md -------------------------------------------------------------------------------- /training/replit-blog/changelog-06-21.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/changelog-06-21.md -------------------------------------------------------------------------------- /training/replit-blog/classroomoverview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/classroomoverview.md -------------------------------------------------------------------------------- /training/replit-blog/commandbar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/commandbar.md -------------------------------------------------------------------------------- /training/replit-blog/community-video-competition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/community-video-competition.md -------------------------------------------------------------------------------- /training/replit-blog/company-profiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/company-profiles.md -------------------------------------------------------------------------------- /training/replit-blog/computing-superpower-at-school.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/computing-superpower-at-school.md -------------------------------------------------------------------------------- /training/replit-blog/css-concepts-career-karma.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/css-concepts-career-karma.md -------------------------------------------------------------------------------- /training/replit-blog/cycles-transaction-history.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/cycles-transaction-history.md -------------------------------------------------------------------------------- /training/replit-blog/dark_mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/dark_mode.md -------------------------------------------------------------------------------- /training/replit-blog/destroying-stuck-repls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/destroying-stuck-repls.md -------------------------------------------------------------------------------- /training/replit-blog/everyoneprograms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/everyoneprograms.md -------------------------------------------------------------------------------- /training/replit-blog/fast-dev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/fast-dev.md -------------------------------------------------------------------------------- /training/replit-blog/firebase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/firebase.md -------------------------------------------------------------------------------- /training/replit-blog/first-irl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/first-irl.md -------------------------------------------------------------------------------- /training/replit-blog/first-website.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/first-website.md -------------------------------------------------------------------------------- /training/replit-blog/genuary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/genuary.md -------------------------------------------------------------------------------- /training/replit-blog/get-hired.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/get-hired.md -------------------------------------------------------------------------------- /training/replit-blog/getting-started-with-solidity-on-replit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/getting-started-with-solidity-on-replit.md -------------------------------------------------------------------------------- /training/replit-blog/gw-chat-launch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/gw-chat-launch.md -------------------------------------------------------------------------------- /training/replit-blog/history2-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/history2-release.md -------------------------------------------------------------------------------- /training/replit-blog/how-to-teach-yourself.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/how-to-teach-yourself.md -------------------------------------------------------------------------------- /training/replit-blog/internet-access.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/internet-access.md -------------------------------------------------------------------------------- /training/replit-blog/kotlin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/kotlin.md -------------------------------------------------------------------------------- /training/replit-blog/land-python-developer-job-youteam.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/land-python-developer-job-youteam.md -------------------------------------------------------------------------------- /training/replit-blog/llms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/llms.md -------------------------------------------------------------------------------- /training/replit-blog/markdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/markdown.md -------------------------------------------------------------------------------- /training/replit-blog/mobile-app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/mobile-app.md -------------------------------------------------------------------------------- /training/replit-blog/my_repls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/my_repls.md -------------------------------------------------------------------------------- /training/replit-blog/native-graphics-love.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/native-graphics-love.md -------------------------------------------------------------------------------- /training/replit-blog/new-logo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/new-logo.md -------------------------------------------------------------------------------- /training/replit-blog/new-year-new-replit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/new-year-new-replit.md -------------------------------------------------------------------------------- /training/replit-blog/new_repls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/new_repls.md -------------------------------------------------------------------------------- /training/replit-blog/nix-github-imports.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/nix-github-imports.md -------------------------------------------------------------------------------- /training/replit-blog/nix_web_app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/nix_web_app.md -------------------------------------------------------------------------------- /training/replit-blog/operating-principles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/operating-principles.md -------------------------------------------------------------------------------- /training/replit-blog/platform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/platform.md -------------------------------------------------------------------------------- /training/replit-blog/postgresql-db-launch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/postgresql-db-launch.md -------------------------------------------------------------------------------- /training/replit-blog/profile2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/profile2.md -------------------------------------------------------------------------------- /training/replit-blog/publishing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/publishing.md -------------------------------------------------------------------------------- /training/replit-blog/python-debugger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/python-debugger.md -------------------------------------------------------------------------------- /training/replit-blog/python-for-beginners-partthree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/python-for-beginners-partthree.md -------------------------------------------------------------------------------- /training/replit-blog/python-package-cache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/python-package-cache.md -------------------------------------------------------------------------------- /training/replit-blog/python-turtle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/python-turtle.md -------------------------------------------------------------------------------- /training/replit-blog/rails.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/rails.md -------------------------------------------------------------------------------- /training/replit-blog/repl-identity-via-cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/repl-identity-via-cli.md -------------------------------------------------------------------------------- /training/replit-blog/repl-resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/repl-resources.md -------------------------------------------------------------------------------- /training/replit-blog/repl-status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/repl-status.md -------------------------------------------------------------------------------- /training/replit-blog/repl_history.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/repl_history.md -------------------------------------------------------------------------------- /training/replit-blog/replexa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/replexa.md -------------------------------------------------------------------------------- /training/replit-blog/replit-recap-2022.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/replit-recap-2022.md -------------------------------------------------------------------------------- /training/replit-blog/repls-search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/repls-search.md -------------------------------------------------------------------------------- /training/replit-blog/ruby_gems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/ruby_gems.md -------------------------------------------------------------------------------- /training/replit-blog/rv0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/rv0.md -------------------------------------------------------------------------------- /training/replit-blog/search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/search.md -------------------------------------------------------------------------------- /training/replit-blog/splits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/splits.md -------------------------------------------------------------------------------- /training/replit-blog/swift.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/swift.md -------------------------------------------------------------------------------- /training/replit-blog/teams-for-edu-fall-2020-improvements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/teams-for-edu-fall-2020-improvements.md -------------------------------------------------------------------------------- /training/replit-blog/teams-transition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/teams-transition.md -------------------------------------------------------------------------------- /training/replit-blog/teams_release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/teams_release.md -------------------------------------------------------------------------------- /training/replit-blog/template-jam.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/template-jam.md -------------------------------------------------------------------------------- /training/replit-blog/themehowto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/themehowto.md -------------------------------------------------------------------------------- /training/replit-blog/turbio_tries_to_blog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/turbio_tries_to_blog.md -------------------------------------------------------------------------------- /training/replit-blog/tutorial-jam.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/tutorial-jam.md -------------------------------------------------------------------------------- /training/replit-blog/upm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/upm.md -------------------------------------------------------------------------------- /training/replit-blog/welcome-to-the-wonderful-world-of-clusters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/welcome-to-the-wonderful-world-of-clusters.md -------------------------------------------------------------------------------- /training/replit-blog/wow-gfx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/replit-blog/wow-gfx.md -------------------------------------------------------------------------------- /training/terms-of-service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/training/terms-of-service.md -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vectorStore/args.json: -------------------------------------------------------------------------------- 1 | {"space":"ip","numDimensions":1536} -------------------------------------------------------------------------------- /vectorStore/docstore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/vectorStore/docstore.json -------------------------------------------------------------------------------- /vectorStore/hnswlib.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/vectorStore/hnswlib.index -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IroncladDev/Amjad-GPT/HEAD/yarn.lock --------------------------------------------------------------------------------