openship 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.env.example +19 -3
- package/CONTRIBUTING.md +69 -19
- package/LICENSE +661 -0
- package/README.md +304 -108
- package/apps/api/Dockerfile +6 -8
- package/apps/api/package.json +25 -21
- package/apps/api/src/app.ts +46 -3
- package/apps/api/src/config/env.ts +81 -7
- package/apps/api/src/lib/auth-mode.ts +42 -0
- package/apps/api/src/lib/auth.ts +105 -0
- package/apps/api/src/lib/cache.ts +128 -0
- package/apps/api/src/lib/cloud-auth-proxy.ts +310 -0
- package/apps/api/src/lib/cloud-client.ts +103 -0
- package/apps/api/src/lib/compose-parser.ts +138 -0
- package/apps/api/src/lib/controller-helpers.ts +90 -0
- package/apps/api/src/lib/email-templates.ts +94 -0
- package/apps/api/src/lib/encryption.ts +102 -0
- package/apps/api/src/lib/local-user.ts +65 -0
- package/apps/api/src/lib/mail.ts +48 -0
- package/apps/api/src/lib/notifications.ts +195 -0
- package/apps/api/src/lib/openship-cloud.ts +101 -0
- package/apps/api/src/lib/resources.ts +96 -0
- package/apps/api/src/lib/screenshots.ts +189 -0
- package/apps/api/src/lib/ssh-manager.ts +369 -0
- package/apps/api/src/lib/ssl-scheduler.ts +109 -0
- package/apps/api/src/lib/stack-detector.ts +708 -0
- package/apps/api/src/lib/system-debug.ts +10 -0
- package/apps/api/src/middleware/auth.ts +49 -13
- package/apps/api/src/middleware/error-handler.ts +23 -3
- package/apps/api/src/middleware/index.ts +2 -0
- package/apps/api/src/middleware/internal-auth.ts +40 -0
- package/apps/api/src/middleware/local-only.ts +20 -0
- package/apps/api/src/middleware/rate-limiter.ts +9 -0
- package/apps/api/src/modules/analytics/analytics.controller.ts +111 -0
- package/apps/api/src/modules/analytics/analytics.routes.ts +29 -0
- package/apps/api/src/modules/analytics/analytics.schema.ts +37 -0
- package/apps/api/src/modules/analytics/analytics.service.ts +264 -0
- package/apps/api/src/modules/auth/auth.routes.ts +233 -6
- package/apps/api/src/modules/billing/billing.routes.ts +8 -0
- package/apps/api/src/modules/cloud/cloud.controller.ts +225 -0
- package/apps/api/src/modules/cloud/cloud.routes.ts +40 -0
- package/apps/api/src/modules/deployments/build.service.ts +791 -0
- package/apps/api/src/modules/deployments/deployment-lifecycle.ts +138 -0
- package/apps/api/src/modules/deployments/deployment.controller.ts +324 -16
- package/apps/api/src/modules/deployments/deployment.routes.ts +33 -7
- package/apps/api/src/modules/deployments/deployment.schema.ts +37 -5
- package/apps/api/src/modules/deployments/deployment.service.ts +178 -11
- package/apps/api/src/modules/deployments/preflight.ts +280 -0
- package/apps/api/src/modules/deployments/prepare.service.ts +252 -0
- package/apps/api/src/modules/deployments/session-manager.ts +283 -0
- package/apps/api/src/modules/deployments/ssl.service.ts +73 -0
- package/apps/api/src/modules/domains/domain.controller.ts +59 -7
- package/apps/api/src/modules/domains/domain.routes.ts +20 -5
- package/apps/api/src/modules/domains/domain.schema.ts +35 -0
- package/apps/api/src/modules/domains/domain.service.ts +375 -9
- package/apps/api/src/modules/github/github.auth.ts +397 -0
- package/apps/api/src/modules/github/github.controller.ts +387 -0
- package/apps/api/src/modules/github/github.local-auth.ts +251 -0
- package/apps/api/src/modules/github/github.routes.ts +50 -0
- package/apps/api/src/modules/github/github.schema.ts +52 -0
- package/apps/api/src/modules/github/github.service.ts +592 -0
- package/apps/api/src/modules/github/github.types.ts +158 -0
- package/apps/api/src/modules/github/github.webhook.ts +186 -0
- package/apps/api/src/modules/github/index.ts +16 -0
- package/apps/api/src/modules/health/health.routes.ts +35 -0
- package/apps/api/src/modules/projects/project.controller.ts +481 -12
- package/apps/api/src/modules/projects/project.routes.ts +63 -6
- package/apps/api/src/modules/projects/project.schema.ts +104 -6
- package/apps/api/src/modules/projects/project.service.ts +502 -11
- package/apps/api/src/modules/settings/settings.controller.ts +55 -0
- package/apps/api/src/modules/settings/settings.routes.ts +25 -0
- package/apps/api/src/modules/settings/settings.service.ts +49 -0
- package/apps/api/src/modules/system/filesystem.controller.ts +66 -0
- package/apps/api/src/modules/system/index.ts +1 -0
- package/apps/api/src/modules/system/server-check.controller.ts +475 -0
- package/apps/api/src/modules/system/setup-session.ts +255 -0
- package/apps/api/src/modules/system/setup.controller.ts +128 -0
- package/apps/api/src/modules/system/system.routes.ts +42 -0
- package/apps/api/src/modules/webhooks/webhook.controller.ts +57 -15
- package/apps/api/src/modules/webhooks/webhook.routes.ts +11 -8
- package/apps/api/src/modules/webhooks/webhook.service.ts +46 -5
- package/apps/api/src/modules/webhooks/webhook.types.ts +35 -0
- package/apps/api/tsconfig.json +3 -1
- package/apps/cli/package.json +8 -10
- package/apps/cli/tsconfig.json +2 -1
- package/apps/dashboard/Dockerfile +4 -6
- package/apps/dashboard/components.json +20 -0
- package/apps/dashboard/next-env.d.ts +6 -0
- package/apps/dashboard/next.config.mjs +11 -1
- package/apps/dashboard/package.json +25 -13
- package/apps/dashboard/postcss.config.mjs +5 -0
- package/apps/dashboard/public/android-chrome-192x192.png +0 -0
- package/apps/dashboard/public/android-chrome-512x512.png +0 -0
- package/apps/dashboard/public/apple-touch-icon.png +0 -0
- package/apps/dashboard/public/favicon-16x16.png +0 -0
- package/apps/dashboard/public/favicon-32x32.png +0 -0
- package/apps/dashboard/public/favicon.ico +0 -0
- package/apps/dashboard/public/site.webmanifest +19 -0
- package/apps/dashboard/src/app/(auth)/forgot-password/page.tsx +114 -0
- package/apps/dashboard/src/app/(auth)/layout.tsx +18 -3
- package/apps/dashboard/src/app/(auth)/login/page.tsx +215 -6
- package/apps/dashboard/src/app/(auth)/providers.tsx +34 -0
- package/apps/dashboard/src/app/(auth)/register/page.tsx +171 -5
- package/apps/dashboard/src/app/(auth)/reset-password/page.tsx +172 -0
- package/apps/dashboard/src/app/(auth)/verify-email/page.tsx +190 -0
- package/apps/dashboard/src/app/(dashboard)/(deployment)/build/[id]/page.tsx +162 -0
- package/apps/dashboard/src/app/(dashboard)/(deployment)/deploy/[slug]/components/BuildSummary.tsx +166 -0
- package/apps/dashboard/src/app/(dashboard)/(deployment)/deploy/[slug]/components/DnsConfiguration.tsx +119 -0
- package/apps/dashboard/src/app/(dashboard)/(deployment)/deploy/[slug]/components/DomainSettings.tsx +291 -0
- package/apps/dashboard/src/app/(dashboard)/(deployment)/deploy/[slug]/components/Header.tsx +71 -0
- package/apps/dashboard/src/app/(dashboard)/(deployment)/deploy/[slug]/components/Sidebar.tsx +270 -0
- package/apps/dashboard/src/app/(dashboard)/(deployment)/deploy/[slug]/components/SkeletonLoader.tsx +87 -0
- package/apps/dashboard/src/app/(dashboard)/(deployment)/deploy/[slug]/page.tsx +169 -0
- package/apps/dashboard/src/app/(dashboard)/(deployment)/layout.tsx +7 -0
- package/apps/dashboard/src/app/(dashboard)/billing/page.tsx +1 -8
- package/apps/dashboard/src/app/(dashboard)/deployments/components/CommitDetailsModal.tsx +240 -0
- package/apps/dashboard/src/app/(dashboard)/deployments/components/DeploymentCard.tsx +121 -0
- package/apps/dashboard/src/app/(dashboard)/deployments/components/DeploymentHeader.tsx +89 -0
- package/apps/dashboard/src/app/(dashboard)/deployments/components/DeploymentMenu.tsx +182 -0
- package/apps/dashboard/src/app/(dashboard)/deployments/components/DeploymentsContent.tsx +324 -0
- package/apps/dashboard/src/app/(dashboard)/deployments/components/DeploymentsFilters.tsx +99 -0
- package/apps/dashboard/src/app/(dashboard)/deployments/components/DeploymentsList.tsx +31 -0
- package/apps/dashboard/src/app/(dashboard)/deployments/components/EmptyState.tsx +101 -0
- package/apps/dashboard/src/app/(dashboard)/deployments/components/LoadingSkeleton.tsx +57 -0
- package/apps/dashboard/src/app/(dashboard)/deployments/components/ProjectFilter.tsx +109 -0
- package/apps/dashboard/src/app/(dashboard)/deployments/components/index.ts +9 -0
- package/apps/dashboard/src/app/(dashboard)/deployments/page.tsx +9 -3
- package/apps/dashboard/src/app/(dashboard)/deployments/types.ts +44 -0
- package/apps/dashboard/src/app/(dashboard)/deployments/utils.ts +176 -0
- package/apps/dashboard/src/app/(dashboard)/domains/page.tsx +1 -6
- package/apps/dashboard/src/app/(dashboard)/integrations/page.tsx +321 -0
- package/apps/dashboard/src/app/(dashboard)/layout.tsx +22 -32
- package/apps/dashboard/src/app/(dashboard)/library/components/ConnectPrompt.tsx +187 -0
- package/apps/dashboard/src/app/(dashboard)/library/components/LibrarySidebar.tsx +147 -0
- package/apps/dashboard/src/app/(dashboard)/library/components/LoadingSkeleton.tsx +39 -0
- package/apps/dashboard/src/app/(dashboard)/library/components/LocalProjects.tsx +548 -0
- package/apps/dashboard/src/app/(dashboard)/library/components/RepositoryList.tsx +292 -0
- package/apps/dashboard/src/app/(dashboard)/library/components/TemplateGrid.tsx +36 -0
- package/apps/dashboard/src/app/(dashboard)/library/components/UrlImport.tsx +74 -0
- package/apps/dashboard/src/app/(dashboard)/library/page.tsx +121 -0
- package/apps/dashboard/src/app/(dashboard)/library/types.ts +26 -0
- package/apps/dashboard/src/app/(dashboard)/monitoring/page.tsx +1 -6
- package/apps/dashboard/src/app/(dashboard)/page.tsx +485 -0
- package/apps/dashboard/src/app/(dashboard)/projects/[id]/[[...slug]]/layout.tsx +22 -0
- package/apps/dashboard/src/app/(dashboard)/projects/[id]/[[...slug]]/page.tsx +286 -0
- package/apps/dashboard/src/app/(dashboard)/projects/[id]/components/AdvancedSettings.tsx +235 -0
- package/apps/dashboard/src/app/(dashboard)/projects/[id]/components/BuildSettings.tsx +174 -0
- package/apps/dashboard/src/app/(dashboard)/projects/[id]/components/DeleteConfirmationDialog.tsx +45 -0
- package/apps/dashboard/src/app/(dashboard)/projects/[id]/components/DeletionModal.tsx +95 -0
- package/apps/dashboard/src/app/(dashboard)/projects/[id]/components/Deployments.tsx +11 -0
- package/apps/dashboard/src/app/(dashboard)/projects/[id]/components/DomainSettings.tsx +523 -0
- package/apps/dashboard/src/app/(dashboard)/projects/[id]/components/EnvironmentSettings.tsx +246 -0
- package/apps/dashboard/src/app/(dashboard)/projects/[id]/components/GeneralSettings.tsx +93 -0
- package/apps/dashboard/src/app/(dashboard)/projects/[id]/components/GitInfo.tsx +261 -0
- package/apps/dashboard/src/app/(dashboard)/projects/[id]/components/GitSettings.tsx +391 -0
- package/apps/dashboard/src/app/(dashboard)/projects/[id]/components/LogsSettings.tsx +133 -0
- package/apps/dashboard/src/app/(dashboard)/projects/[id]/components/ProjectNotFound.tsx +95 -0
- package/apps/dashboard/src/app/(dashboard)/projects/[id]/components/ProjectsBottomNavigation.tsx +62 -0
- package/apps/dashboard/src/app/(dashboard)/projects/[id]/components/ResourceSettings.tsx +333 -0
- package/apps/dashboard/src/app/(dashboard)/projects/[id]/components/SettingSection.tsx +66 -0
- package/apps/dashboard/src/app/(dashboard)/projects/[id]/components/SettingsNavigation.tsx +27 -0
- package/apps/dashboard/src/app/(dashboard)/projects/[id]/components/SleepModeSettings.tsx +134 -0
- package/apps/dashboard/src/app/(dashboard)/projects/[id]/components/general/ProductionUrl.tsx +25 -0
- package/apps/dashboard/src/app/(dashboard)/projects/[id]/components/general/ProjectIdentity.tsx +159 -0
- package/apps/dashboard/src/app/(dashboard)/projects/[id]/components/general/ProjectInfo.tsx +58 -0
- package/apps/dashboard/src/app/(dashboard)/projects/[id]/components/general/SkeletonLoader.tsx +170 -0
- package/apps/dashboard/src/app/(dashboard)/projects/[id]/components/general/StatsCards.tsx +33 -0
- package/apps/dashboard/src/app/(dashboard)/projects/[id]/components/general/TopPaths.tsx +56 -0
- package/apps/dashboard/src/app/(dashboard)/projects/[id]/components/general/TrafficChart.tsx +157 -0
- package/apps/dashboard/src/app/(dashboard)/projects/[id]/components/general/index.ts +14 -0
- package/apps/dashboard/src/app/(dashboard)/projects/[id]/components/logs/LogsActions.tsx +52 -0
- package/apps/dashboard/src/app/(dashboard)/projects/[id]/components/logs/ServerLogs.tsx +249 -0
- package/apps/dashboard/src/app/(dashboard)/projects/[id]/components/logs/TerminalLogs.tsx +682 -0
- package/apps/dashboard/src/app/(dashboard)/projects/[id]/components/logs/logs.css +127 -0
- package/apps/dashboard/src/app/(dashboard)/projects/components/DeploymentCard.tsx +73 -0
- package/apps/dashboard/src/app/(dashboard)/projects/components/ProjectCard.tsx +330 -0
- package/apps/dashboard/src/app/(dashboard)/projects/page.tsx +326 -4
- package/apps/dashboard/src/app/(dashboard)/providers.tsx +23 -0
- package/apps/dashboard/src/app/(dashboard)/servers/[serverId]/_components/components-tab.tsx +329 -0
- package/apps/dashboard/src/app/(dashboard)/servers/[serverId]/_components/overview-tab.tsx +229 -0
- package/apps/dashboard/src/app/(dashboard)/servers/[serverId]/_components/terminal-tab.tsx +38 -0
- package/apps/dashboard/src/app/(dashboard)/servers/[serverId]/page.tsx +437 -0
- package/apps/dashboard/src/app/(dashboard)/servers/new/_components/checking-state.tsx +15 -0
- package/apps/dashboard/src/app/(dashboard)/servers/new/_components/choose-mode.tsx +54 -0
- package/apps/dashboard/src/app/(dashboard)/servers/new/_components/component-row.tsx +65 -0
- package/apps/dashboard/src/app/(dashboard)/servers/new/_components/error-banner.tsx +13 -0
- package/apps/dashboard/src/app/(dashboard)/servers/new/_components/installing-panel.tsx +227 -0
- package/apps/dashboard/src/app/(dashboard)/servers/new/_components/results-panel.tsx +90 -0
- package/apps/dashboard/src/app/(dashboard)/servers/new/_components/setup-header.tsx +56 -0
- package/apps/dashboard/src/app/(dashboard)/servers/new/_components/types.ts +13 -0
- package/apps/dashboard/src/app/(dashboard)/servers/new/page.tsx +666 -0
- package/apps/dashboard/src/app/(dashboard)/servers/page.tsx +283 -0
- package/apps/dashboard/src/app/(dashboard)/settings/_components/BuildPreferences.tsx +110 -0
- package/apps/dashboard/src/app/(dashboard)/settings/_components/CloudConnection.tsx +147 -0
- package/apps/dashboard/src/app/(dashboard)/settings/_components/InstanceInfo.tsx +54 -0
- package/apps/dashboard/src/app/(dashboard)/settings/_components/ServerConnection.tsx +407 -0
- package/apps/dashboard/src/app/(dashboard)/settings/_components/SettingsSection.tsx +32 -0
- package/apps/dashboard/src/app/(dashboard)/settings/page.tsx +62 -3
- package/apps/dashboard/src/app/auth/callback/close/page.tsx +23 -0
- package/apps/dashboard/src/app/auth/callback/install/page.tsx +40 -0
- package/apps/dashboard/src/app/authorize/page.tsx +137 -0
- package/apps/dashboard/src/app/globals.css +57 -3
- package/apps/dashboard/src/app/layout.tsx +43 -3
- package/apps/dashboard/src/components/auth-shell.tsx +66 -0
- package/apps/dashboard/src/components/deployments/types.ts +44 -0
- package/apps/dashboard/src/components/global-deployments/index.ts +17 -0
- package/apps/dashboard/src/components/i18n-provider.tsx +100 -0
- package/apps/dashboard/src/components/import-project/BuildSettings.tsx +376 -0
- package/apps/dashboard/src/components/import-project/BuildSkeleton.tsx +161 -0
- package/apps/dashboard/src/components/import-project/BuildTerminal.tsx +358 -0
- package/apps/dashboard/src/components/import-project/ComposeServices.tsx +455 -0
- package/apps/dashboard/src/components/import-project/DeploymentProcessing.tsx +510 -0
- package/apps/dashboard/src/components/import-project/DockerSettings.tsx +64 -0
- package/apps/dashboard/src/components/import-project/EnvironmentVariables.tsx +481 -0
- package/apps/dashboard/src/components/import-project/Frameworks.tsx +90 -0
- package/apps/dashboard/src/components/import-project/ProjectSettings.tsx +160 -0
- package/apps/dashboard/src/components/import-project/types.ts +82 -0
- package/apps/dashboard/src/components/integrations/GithubPermissionModal.tsx +173 -0
- package/apps/dashboard/src/components/language-switcher.tsx +36 -0
- package/apps/dashboard/src/components/logo.tsx +13 -0
- package/apps/dashboard/src/components/network-error-handler.tsx +27 -0
- package/apps/dashboard/src/components/oauth-buttons.tsx +81 -0
- package/apps/dashboard/src/components/overview/ActivityChart.tsx +247 -0
- package/apps/dashboard/src/components/overview/ApiRequestsCard.tsx +111 -0
- package/apps/dashboard/src/components/overview/CreditsCard.tsx +137 -0
- package/apps/dashboard/src/components/overview/DeploymentsChart.tsx +195 -0
- package/apps/dashboard/src/components/overview/EmptyState.tsx +126 -0
- package/apps/dashboard/src/components/overview/LoadingSkeleton.tsx +92 -0
- package/apps/dashboard/src/components/overview/OverviewHeader.tsx +74 -0
- package/apps/dashboard/src/components/overview/OverviewHeroChart.tsx +344 -0
- package/apps/dashboard/src/components/overview/ProjectsCard.tsx +134 -0
- package/apps/dashboard/src/components/overview/QuickLinks.tsx +119 -0
- package/apps/dashboard/src/components/overview/SandboxesCard.tsx +150 -0
- package/apps/dashboard/src/components/overview/StatsGrid.tsx +166 -0
- package/apps/dashboard/src/components/overview/TokenUsageChart.tsx +206 -0
- package/apps/dashboard/src/components/overview/UsageStats.tsx +79 -0
- package/apps/dashboard/src/components/overview/index.ts +30 -0
- package/apps/dashboard/src/components/overview/types.ts +116 -0
- package/apps/dashboard/src/components/page-header.tsx +25 -0
- package/apps/dashboard/src/components/project-settings/ServerSideSwitch.jsx +60 -0
- package/apps/dashboard/src/components/shared/AlertBox.tsx +39 -0
- package/apps/dashboard/src/components/shared/CTASection.tsx +45 -0
- package/apps/dashboard/src/components/shared/ErrorState.tsx +176 -0
- package/apps/dashboard/src/components/shared/FeatureCard.tsx +20 -0
- package/apps/dashboard/src/components/shared/MDXComponents.tsx +24 -0
- package/apps/dashboard/src/components/shared/MachineSettingsModal.tsx +286 -0
- package/apps/dashboard/src/components/shared/Modal.tsx +39 -0
- package/apps/dashboard/src/components/shared/OTPInput.tsx +122 -0
- package/apps/dashboard/src/components/shared/PageHero.tsx +21 -0
- package/apps/dashboard/src/components/shared/PlatformFeatureCard.tsx +27 -0
- package/apps/dashboard/src/components/shared/StatCard.tsx +14 -0
- package/apps/dashboard/src/components/shared/ValueCard.tsx +20 -0
- package/apps/dashboard/src/components/shared/index.ts +8 -0
- package/apps/dashboard/src/components/sidebar.tsx +282 -0
- package/apps/dashboard/src/components/theme-provider.tsx +96 -0
- package/apps/dashboard/src/components/toast.tsx +106 -0
- package/apps/dashboard/src/components/ui/CustomCursor.tsx +107 -0
- package/apps/dashboard/src/components/ui/CustomSelect.tsx +126 -0
- package/apps/dashboard/src/components/ui/DropdownMenu.tsx +174 -0
- package/apps/dashboard/src/components/ui/FileIcon.jsx +59 -0
- package/apps/dashboard/src/components/ui/IconPickerModal.tsx +273 -0
- package/apps/dashboard/src/components/ui/InfoBanner.jsx +39 -0
- package/apps/dashboard/src/components/ui/Logo.tsx +14 -0
- package/apps/dashboard/src/components/ui/Modal.tsx +117 -0
- package/apps/dashboard/src/components/ui/PageContainer.tsx +12 -0
- package/apps/dashboard/src/components/ui/SectionContainer.jsx +7 -0
- package/apps/dashboard/src/components/ui/SlidingToggle.tsx +128 -0
- package/apps/dashboard/src/components/ui/Toast.tsx +29 -0
- package/apps/dashboard/src/components/ui/button.tsx +58 -0
- package/apps/dashboard/src/components/ui/card.tsx +60 -0
- package/apps/dashboard/src/components/ui/input.tsx +20 -0
- package/apps/dashboard/src/components/ui/label.tsx +19 -0
- package/apps/dashboard/src/components/ui/select.tsx +10 -0
- package/apps/dashboard/src/components/ui/textarea.tsx +9 -0
- package/apps/dashboard/src/constants/lang-colors.ts +25 -0
- package/apps/dashboard/src/constants/mock.ts +38 -0
- package/apps/dashboard/src/context/AuthContext.tsx +91 -0
- package/apps/dashboard/src/context/CloudContext.tsx +275 -0
- package/apps/dashboard/src/context/DeploymentContext.tsx +71 -0
- package/apps/dashboard/src/context/GitHubContext.tsx +288 -0
- package/apps/dashboard/src/context/ModalContext.tsx +300 -0
- package/apps/dashboard/src/context/NetworkContext.tsx +32 -0
- package/apps/dashboard/src/context/ProjectSettingsContext.tsx +727 -0
- package/apps/dashboard/src/context/ToastContext.tsx +129 -0
- package/apps/dashboard/src/context/deployment/index.ts +3 -0
- package/apps/dashboard/src/context/deployment/types.ts +183 -0
- package/apps/dashboard/src/context/deployment/useDeploymentBuild.ts +547 -0
- package/apps/dashboard/src/context/deployment/useDeploymentConfig.ts +176 -0
- package/apps/dashboard/src/hooks/useBuildConnection.ts +334 -0
- package/apps/dashboard/src/hooks/useMonitorStream.ts +146 -0
- package/apps/dashboard/src/hooks/useProjectData.ts +110 -0
- package/apps/dashboard/src/hooks/useSSEConnection.ts +465 -0
- package/apps/dashboard/src/hooks/useSSEStream.ts +309 -0
- package/apps/dashboard/src/hooks/useSessions.ts +104 -0
- package/apps/dashboard/src/hooks/useSetupStream.ts +223 -0
- package/apps/dashboard/src/i18n/dictionaries/ar.json +218 -0
- package/apps/dashboard/src/i18n/dictionaries/en.json +218 -0
- package/apps/dashboard/src/i18n/index.ts +16 -0
- package/apps/dashboard/src/lib/api/ai.ts +22 -0
- package/apps/dashboard/src/lib/api/auth.ts +13 -0
- package/apps/dashboard/src/lib/api/client.ts +199 -0
- package/apps/dashboard/src/lib/api/cloud.ts +15 -0
- package/apps/dashboard/src/lib/api/deploy.ts +58 -0
- package/apps/dashboard/src/lib/api/domains.ts +13 -0
- package/apps/dashboard/src/lib/api/endpoints.ts +129 -0
- package/apps/dashboard/src/lib/api/github.ts +31 -0
- package/apps/dashboard/src/lib/api/icons.ts +12 -0
- package/apps/dashboard/src/lib/api/index.ts +41 -0
- package/apps/dashboard/src/lib/api/projects.ts +153 -0
- package/apps/dashboard/src/lib/api/sandbox.ts +14 -0
- package/apps/dashboard/src/lib/api/settings.ts +21 -0
- package/apps/dashboard/src/lib/api/system.ts +159 -0
- package/apps/dashboard/src/lib/auth-client.ts +54 -0
- package/apps/dashboard/src/lib/country.ts +25 -0
- package/apps/dashboard/src/lib/server/api.ts +140 -0
- package/apps/dashboard/src/lib/server/session.ts +103 -0
- package/apps/dashboard/src/lib/sseClient.ts +241 -0
- package/apps/dashboard/src/lib/sseMessageProcessors.ts +323 -0
- package/apps/dashboard/src/lib/utils.ts +6 -0
- package/apps/dashboard/src/proxy.ts +46 -0
- package/apps/dashboard/src/styles/Toast.module.css +92 -0
- package/apps/dashboard/src/styles/fonts.css +93 -0
- package/apps/dashboard/src/styles/theme.css +336 -0
- package/apps/dashboard/src/types/research.ts +42 -0
- package/apps/dashboard/src/utils/SSEParser.js +150 -0
- package/apps/dashboard/src/utils/authWindow.ts +143 -0
- package/apps/dashboard/src/utils/codeTheme.ts +127 -0
- package/apps/dashboard/src/utils/colors.json +2810 -0
- package/apps/dashboard/src/utils/date.ts +121 -0
- package/apps/dashboard/src/utils/deployment.ts +128 -0
- package/apps/dashboard/src/utils/deploymentPhaseDetector.ts +232 -0
- package/apps/dashboard/src/utils/extToLang.js +103 -0
- package/apps/dashboard/src/utils/github.ts +62 -0
- package/apps/dashboard/src/utils/icons.js +46 -0
- package/apps/dashboard/src/utils/repoSlug.ts +110 -0
- package/apps/dashboard/src/utils/research-api.ts +163 -0
- package/apps/dashboard/src/utils/suggestions.ts +84 -0
- package/apps/dashboard/src/utils/theme.js +1 -0
- package/apps/dashboard/src/utils/ui-helpers.tsx +30 -0
- package/apps/dashboard/src/utils/upload.js +12 -0
- package/apps/dashboard/tsconfig.json +27 -5
- package/apps/desktop/forge.config.json +36 -0
- package/apps/desktop/package.json +26 -0
- package/apps/desktop/scripts/dev.mjs +58 -0
- package/apps/desktop/src/main/index.ts +675 -0
- package/apps/desktop/src/main/types/desktop.d.ts +33 -0
- package/apps/desktop/src/preload/index.ts +88 -0
- package/apps/desktop/src/renderer/index.html +462 -0
- package/apps/desktop/src/renderer/onboarding.js +511 -0
- package/apps/desktop/src/renderer/styles.css +1139 -0
- package/apps/desktop/tsconfig.json +17 -0
- package/apps/web/.source/browser.ts +13 -0
- package/apps/web/.source/dynamic.ts +8 -0
- package/apps/web/.source/server.ts +22 -0
- package/apps/web/.source/source.config.mjs +20 -0
- package/apps/web/Dockerfile +4 -6
- package/apps/web/content/blog/how-ai-builds-work.mdx +55 -0
- package/apps/web/content/blog/introducing-openship.mdx +46 -0
- package/apps/web/content/blog/self-hosting-cost-breakdown.mdx +59 -0
- package/apps/web/content/docs/_meta.json +14 -0
- package/apps/web/content/docs/api.mdx +98 -0
- package/apps/web/content/docs/cli.mdx +80 -0
- package/apps/web/content/docs/first-deployment.mdx +56 -0
- package/apps/web/content/docs/index.mdx +27 -0
- package/apps/web/content/docs/installation.mdx +65 -0
- package/apps/web/content/docs/quickstart.mdx +45 -0
- package/apps/web/next-env.d.ts +6 -0
- package/apps/web/next.config.mjs +16 -2
- package/apps/web/package.json +19 -12
- package/apps/web/postcss.config.mjs +5 -0
- package/apps/web/public/android-chrome-192x192.png +0 -0
- package/apps/web/public/android-chrome-512x512.png +0 -0
- package/apps/web/public/apple-touch-icon.png +0 -0
- package/apps/web/public/favicon-16x16.png +0 -0
- package/apps/web/public/favicon-32x32.png +0 -0
- package/apps/web/public/favicon.ico +0 -0
- package/apps/web/public/site.webmanifest +1 -0
- package/apps/web/source.config.ts +17 -0
- package/apps/web/src/app/(marketing)/layout.tsx +7 -22
- package/apps/web/src/app/blog/[...slug]/page.tsx +247 -0
- package/apps/web/src/app/blog/blog.css +575 -0
- package/apps/web/src/app/blog/layout.tsx +50 -0
- package/apps/web/src/app/blog/page.tsx +235 -0
- package/apps/web/src/app/docs/[[...slug]]/page.tsx +67 -0
- package/apps/web/src/app/docs/layout.tsx +62 -0
- package/apps/web/src/app/docs/toc-theme.css +71 -0
- package/apps/web/src/app/download/page.tsx +396 -0
- package/apps/web/src/app/globals.css +20 -3
- package/apps/web/src/app/layout.tsx +57 -3
- package/apps/web/src/app/page.tsx +47 -6
- package/apps/web/src/app/robots.ts +15 -0
- package/apps/web/src/app/sitemap.ts +35 -0
- package/apps/web/src/components/blog/share-sidebar.tsx +81 -0
- package/apps/web/src/components/blog/writer-sidebar.tsx +81 -0
- package/apps/web/src/components/landing/ai-native.tsx +169 -0
- package/apps/web/src/components/landing/backups.tsx +139 -0
- package/apps/web/src/components/landing/cdn.tsx +109 -0
- package/apps/web/src/components/landing/coming-soon.tsx +180 -0
- package/apps/web/src/components/landing/dark-section.tsx +166 -0
- package/apps/web/src/components/landing/dashboard.tsx +407 -0
- package/apps/web/src/components/landing/developer-experience.tsx +224 -0
- package/apps/web/src/components/landing/dns-domains.tsx +146 -0
- package/apps/web/src/components/landing/download-button.tsx +151 -0
- package/apps/web/src/components/landing/features/ai-visual.tsx +48 -0
- package/apps/web/src/components/landing/features/cloud-visual.tsx +44 -0
- package/apps/web/src/components/landing/features/git-visual.tsx +61 -0
- package/apps/web/src/components/landing/features/index.tsx +642 -0
- package/apps/web/src/components/landing/features/infra-visual.tsx +69 -0
- package/apps/web/src/components/landing/features/rollback-visual.tsx +42 -0
- package/apps/web/src/components/landing/features/ssl-visual.tsx +41 -0
- package/apps/web/src/components/landing/features/stacks-visual.tsx +54 -0
- package/apps/web/src/components/landing/final-cta.tsx +116 -0
- package/apps/web/src/components/landing/footer.tsx +145 -0
- package/apps/web/src/components/landing/hero.tsx +110 -0
- package/apps/web/src/components/landing/how-it-works.tsx +210 -0
- package/apps/web/src/components/landing/index.ts +21 -0
- package/apps/web/src/components/landing/mail-server.tsx +122 -0
- package/apps/web/src/components/landing/navbar.tsx +199 -0
- package/apps/web/src/components/landing/no-lockin.tsx +185 -0
- package/apps/web/src/components/landing/open-source-cta.tsx +151 -0
- package/apps/web/src/components/landing/portability.tsx +190 -0
- package/apps/web/src/components/landing/pricing.tsx +263 -0
- package/apps/web/src/components/landing/scaling.tsx +209 -0
- package/apps/web/src/components/landing/why-openship.tsx +291 -0
- package/apps/web/src/hooks/use-gsap-scroll.ts +158 -0
- package/apps/web/src/hooks/use-platform.ts +86 -0
- package/apps/web/src/lib/source.ts +12 -0
- package/apps/web/src/styles/fonts.css +84 -0
- package/apps/web/src/styles/landing.css +951 -0
- package/apps/web/src/styles/theme.css +227 -0
- package/apps/web/tsconfig.json +8 -3
- package/bun.lock +3260 -0
- package/docker-compose.yml +3 -0
- package/docs/screenshots/.gitkeep +0 -0
- package/docs/screenshots/screen.png +0 -0
- package/openship.code-workspace +7 -0
- package/package.json +23 -9
- package/packages/adapters/docs/ARCHITECTURE.md +160 -0
- package/packages/adapters/docs/BUILD-PIPELINE.md +171 -0
- package/packages/adapters/docs/CLOUD.md +239 -0
- package/packages/adapters/docs/EXECUTOR.md +174 -0
- package/packages/adapters/docs/LOG-STREAMING.md +175 -0
- package/packages/adapters/docs/SYSTEM.md +191 -0
- package/packages/adapters/package.json +14 -9
- package/packages/adapters/src/index.ts +144 -4
- package/packages/adapters/src/infra/cloud.ts +42 -0
- package/packages/adapters/src/infra/index.ts +9 -0
- package/packages/adapters/src/infra/noop.ts +27 -0
- package/packages/adapters/src/infra/traefik.ts +297 -0
- package/packages/adapters/src/infra/types.ts +36 -0
- package/packages/adapters/src/platform.ts +255 -0
- package/packages/adapters/src/runtime/bare.ts +567 -0
- package/packages/adapters/src/runtime/build-pipeline.ts +237 -0
- package/packages/adapters/src/runtime/cloud.ts +791 -0
- package/packages/adapters/src/runtime/deploy-pipeline.ts +146 -0
- package/packages/adapters/src/runtime/docker.ts +443 -0
- package/packages/adapters/src/runtime/index.ts +69 -0
- package/packages/adapters/src/runtime/local-build.ts +112 -0
- package/packages/adapters/src/runtime/transfer.ts +82 -0
- package/packages/adapters/src/runtime/types.ts +138 -0
- package/packages/adapters/src/system/catalog.ts +188 -0
- package/packages/adapters/src/system/checks.ts +228 -0
- package/packages/adapters/src/system/components.ts +45 -0
- package/packages/adapters/src/system/debug.ts +18 -0
- package/packages/adapters/src/system/environment.ts +168 -0
- package/packages/adapters/src/system/errors.ts +34 -0
- package/packages/adapters/src/system/executor.ts +600 -0
- package/packages/adapters/src/system/index.ts +58 -0
- package/packages/adapters/src/system/installer.ts +310 -0
- package/packages/adapters/src/system/setup.ts +442 -0
- package/packages/adapters/src/system/state.ts +96 -0
- package/packages/adapters/src/system/types.ts +116 -0
- package/packages/adapters/src/toolchain/catalog.ts +439 -0
- package/packages/adapters/src/toolchain/checks.ts +181 -0
- package/packages/adapters/src/toolchain/index.ts +38 -0
- package/packages/adapters/src/toolchain/installer.ts +189 -0
- package/packages/adapters/src/toolchain/types.ts +84 -0
- package/packages/adapters/src/types.ts +277 -0
- package/packages/adapters/tsconfig.json +3 -1
- package/packages/core/package.json +9 -9
- package/packages/core/src/constants.ts +44 -1
- package/packages/core/src/index.ts +2 -0
- package/packages/core/src/stacks.ts +778 -0
- package/packages/core/src/system.ts +111 -0
- package/packages/core/src/types.ts +22 -1
- package/packages/core/src/utils.ts +8 -0
- package/packages/core/tsconfig.json +3 -1
- package/packages/db/drizzle/0000_init.sql +231 -0
- package/packages/db/drizzle/0001_add_server_name.sql +1 -0
- package/packages/db/drizzle/meta/_journal.json +20 -0
- package/packages/db/drizzle.config.ts +10 -0
- package/packages/db/package.json +26 -14
- package/packages/db/src/client.ts +119 -0
- package/packages/db/src/index.ts +57 -8
- package/packages/db/src/repos/account.repo.ts +92 -0
- package/packages/db/src/repos/deployment.repo.ts +168 -0
- package/packages/db/src/repos/domain.repo.ts +102 -0
- package/packages/db/src/repos/git-installation.repo.ts +95 -0
- package/packages/db/src/repos/index.ts +43 -0
- package/packages/db/src/repos/instance-settings.repo.ts +43 -0
- package/packages/db/src/repos/project.repo.ts +159 -0
- package/packages/db/src/repos/session.repo.ts +82 -0
- package/packages/db/src/repos/settings.repo.ts +51 -0
- package/packages/db/src/repos/user.repo.ts +94 -0
- package/packages/db/src/schema/auth.ts +56 -0
- package/packages/db/src/schema/deployment.ts +87 -0
- package/packages/db/src/schema/domain.ts +46 -0
- package/packages/db/src/schema/github.ts +24 -0
- package/packages/db/src/schema/index.ts +6 -0
- package/packages/db/src/schema/project.ts +117 -0
- package/packages/db/src/schema/settings.ts +103 -0
- package/packages/db/tsconfig.json +3 -1
- package/packages/ui/package.json +17 -17
- package/packages/ui/src/components/status-dot.tsx +1 -1
- package/packages/ui/tsconfig.json +7 -2
- package/pnpm-workspace.yaml +0 -1
- package/{tooling/tsconfig/base.json → tsconfig.base.json} +0 -1
- package/turbo.json +4 -0
- package/apps/api/src/modules/auth/auth.controller.ts +0 -26
- package/apps/api/src/modules/auth/auth.schema.ts +0 -12
- package/apps/api/src/modules/auth/auth.service.ts +0 -23
- package/apps/dashboard/src/app/page.tsx +0 -6
- package/apps/web/src/app/(marketing)/docs/page.tsx +0 -10
- package/packages/adapters/src/base-adapter.ts +0 -49
- package/packages/adapters/src/docker-adapter.ts +0 -43
- package/packages/adapters/src/oblien-adapter.ts +0 -46
- package/packages/adapters/src/registry.ts +0 -22
- package/packages/db/prisma/schema.prisma +0 -160
- package/tooling/tsconfig/nextjs.json +0 -10
- package/tooling/tsconfig/node.json +0 -10
- package/tooling/tsconfig/package.json +0 -7
|
@@ -0,0 +1,2810 @@
|
|
|
1
|
+
{
|
|
2
|
+
"1C Enterprise": {
|
|
3
|
+
"color": "#814CCC",
|
|
4
|
+
"url": "https://github.com/trending?l=1C-Enterprise"
|
|
5
|
+
},
|
|
6
|
+
"2-Dimensional Array": {
|
|
7
|
+
"color": "#38761D",
|
|
8
|
+
"url": "https://github.com/trending?l=2-Dimensional-Array"
|
|
9
|
+
},
|
|
10
|
+
"4D": {
|
|
11
|
+
"color": "#004289",
|
|
12
|
+
"url": "https://github.com/trending?l=4D"
|
|
13
|
+
},
|
|
14
|
+
"ABAP": {
|
|
15
|
+
"color": "#E8274B",
|
|
16
|
+
"url": "https://github.com/trending?l=ABAP"
|
|
17
|
+
},
|
|
18
|
+
"ABAP CDS": {
|
|
19
|
+
"color": "#555e25",
|
|
20
|
+
"url": "https://github.com/trending?l=ABAP-CDS"
|
|
21
|
+
},
|
|
22
|
+
"ActionScript": {
|
|
23
|
+
"color": "#882B0F",
|
|
24
|
+
"url": "https://github.com/trending?l=ActionScript"
|
|
25
|
+
},
|
|
26
|
+
"Ada": {
|
|
27
|
+
"color": "#02f88c",
|
|
28
|
+
"url": "https://github.com/trending?l=Ada"
|
|
29
|
+
},
|
|
30
|
+
"Adblock Filter List": {
|
|
31
|
+
"color": "#800000",
|
|
32
|
+
"url": "https://github.com/trending?l=Adblock-Filter-List"
|
|
33
|
+
},
|
|
34
|
+
"Adobe Font Metrics": {
|
|
35
|
+
"color": "#fa0f00",
|
|
36
|
+
"url": "https://github.com/trending?l=Adobe-Font-Metrics"
|
|
37
|
+
},
|
|
38
|
+
"Agda": {
|
|
39
|
+
"color": "#315665",
|
|
40
|
+
"url": "https://github.com/trending?l=Agda"
|
|
41
|
+
},
|
|
42
|
+
"AGS Script": {
|
|
43
|
+
"color": "#B9D9FF",
|
|
44
|
+
"url": "https://github.com/trending?l=AGS-Script"
|
|
45
|
+
},
|
|
46
|
+
"AIDL": {
|
|
47
|
+
"color": "#34EB6B",
|
|
48
|
+
"url": "https://github.com/trending?l=AIDL"
|
|
49
|
+
},
|
|
50
|
+
"Aiken": {
|
|
51
|
+
"color": "#640ff8",
|
|
52
|
+
"url": "https://github.com/trending?l=Aiken"
|
|
53
|
+
},
|
|
54
|
+
"AL": {
|
|
55
|
+
"color": "#3AA2B5",
|
|
56
|
+
"url": "https://github.com/trending?l=AL"
|
|
57
|
+
},
|
|
58
|
+
"Alloy": {
|
|
59
|
+
"color": "#64C800",
|
|
60
|
+
"url": "https://github.com/trending?l=Alloy"
|
|
61
|
+
},
|
|
62
|
+
"Alpine Abuild": {
|
|
63
|
+
"color": "#0D597F",
|
|
64
|
+
"url": "https://github.com/trending?l=Alpine-Abuild"
|
|
65
|
+
},
|
|
66
|
+
"Altium Designer": {
|
|
67
|
+
"color": "#A89663",
|
|
68
|
+
"url": "https://github.com/trending?l=Altium-Designer"
|
|
69
|
+
},
|
|
70
|
+
"AMPL": {
|
|
71
|
+
"color": "#E6EFBB",
|
|
72
|
+
"url": "https://github.com/trending?l=AMPL"
|
|
73
|
+
},
|
|
74
|
+
"AngelScript": {
|
|
75
|
+
"color": "#C7D7DC",
|
|
76
|
+
"url": "https://github.com/trending?l=AngelScript"
|
|
77
|
+
},
|
|
78
|
+
"Answer Set Programming": {
|
|
79
|
+
"color": "#A9CC29",
|
|
80
|
+
"url": "https://github.com/trending?l=Answer-Set-Programming"
|
|
81
|
+
},
|
|
82
|
+
"Ant Build System": {
|
|
83
|
+
"color": "#A9157E",
|
|
84
|
+
"url": "https://github.com/trending?l=Ant-Build-System"
|
|
85
|
+
},
|
|
86
|
+
"Antlers": {
|
|
87
|
+
"color": "#ff269e",
|
|
88
|
+
"url": "https://github.com/trending?l=Antlers"
|
|
89
|
+
},
|
|
90
|
+
"ANTLR": {
|
|
91
|
+
"color": "#9DC3FF",
|
|
92
|
+
"url": "https://github.com/trending?l=ANTLR"
|
|
93
|
+
},
|
|
94
|
+
"ApacheConf": {
|
|
95
|
+
"color": "#d12127",
|
|
96
|
+
"url": "https://github.com/trending?l=ApacheConf"
|
|
97
|
+
},
|
|
98
|
+
"Apex": {
|
|
99
|
+
"color": "#1797c0",
|
|
100
|
+
"url": "https://github.com/trending?l=Apex"
|
|
101
|
+
},
|
|
102
|
+
"API Blueprint": {
|
|
103
|
+
"color": "#2ACCA8",
|
|
104
|
+
"url": "https://github.com/trending?l=API-Blueprint"
|
|
105
|
+
},
|
|
106
|
+
"APL": {
|
|
107
|
+
"color": "#5A8164",
|
|
108
|
+
"url": "https://github.com/trending?l=APL"
|
|
109
|
+
},
|
|
110
|
+
"Apollo Guidance Computer": {
|
|
111
|
+
"color": "#0B3D91",
|
|
112
|
+
"url": "https://github.com/trending?l=Apollo-Guidance-Computer"
|
|
113
|
+
},
|
|
114
|
+
"AppleScript": {
|
|
115
|
+
"color": "#101F1F",
|
|
116
|
+
"url": "https://github.com/trending?l=AppleScript"
|
|
117
|
+
},
|
|
118
|
+
"Arc": {
|
|
119
|
+
"color": "#aa2afe",
|
|
120
|
+
"url": "https://github.com/trending?l=Arc"
|
|
121
|
+
},
|
|
122
|
+
"AsciiDoc": {
|
|
123
|
+
"color": "#73a0c5",
|
|
124
|
+
"url": "https://github.com/trending?l=AsciiDoc"
|
|
125
|
+
},
|
|
126
|
+
"ASL": {
|
|
127
|
+
"color": null,
|
|
128
|
+
"url": "https://github.com/trending?l=ASL"
|
|
129
|
+
},
|
|
130
|
+
"ASP.NET": {
|
|
131
|
+
"color": "#9400ff",
|
|
132
|
+
"url": "https://github.com/trending?l=ASP.NET"
|
|
133
|
+
},
|
|
134
|
+
"AspectJ": {
|
|
135
|
+
"color": "#a957b0",
|
|
136
|
+
"url": "https://github.com/trending?l=AspectJ"
|
|
137
|
+
},
|
|
138
|
+
"Assembly": {
|
|
139
|
+
"color": "#6E4C13",
|
|
140
|
+
"url": "https://github.com/trending?l=Assembly"
|
|
141
|
+
},
|
|
142
|
+
"Astro": {
|
|
143
|
+
"color": "#ff5a03",
|
|
144
|
+
"url": "https://github.com/trending?l=Astro"
|
|
145
|
+
},
|
|
146
|
+
"Asymptote": {
|
|
147
|
+
"color": "#ff0000",
|
|
148
|
+
"url": "https://github.com/trending?l=Asymptote"
|
|
149
|
+
},
|
|
150
|
+
"ATS": {
|
|
151
|
+
"color": "#1ac620",
|
|
152
|
+
"url": "https://github.com/trending?l=ATS"
|
|
153
|
+
},
|
|
154
|
+
"Augeas": {
|
|
155
|
+
"color": "#9CC134",
|
|
156
|
+
"url": "https://github.com/trending?l=Augeas"
|
|
157
|
+
},
|
|
158
|
+
"AutoHotkey": {
|
|
159
|
+
"color": "#6594b9",
|
|
160
|
+
"url": "https://github.com/trending?l=AutoHotkey"
|
|
161
|
+
},
|
|
162
|
+
"AutoIt": {
|
|
163
|
+
"color": "#1C3552",
|
|
164
|
+
"url": "https://github.com/trending?l=AutoIt"
|
|
165
|
+
},
|
|
166
|
+
"Avro IDL": {
|
|
167
|
+
"color": "#0040FF",
|
|
168
|
+
"url": "https://github.com/trending?l=Avro-IDL"
|
|
169
|
+
},
|
|
170
|
+
"Awk": {
|
|
171
|
+
"color": "#c30e9b",
|
|
172
|
+
"url": "https://github.com/trending?l=Awk"
|
|
173
|
+
},
|
|
174
|
+
"B4X": {
|
|
175
|
+
"color": "#00e4ff",
|
|
176
|
+
"url": "https://github.com/trending?l=B4X"
|
|
177
|
+
},
|
|
178
|
+
"Ballerina": {
|
|
179
|
+
"color": "#FF5000",
|
|
180
|
+
"url": "https://github.com/trending?l=Ballerina"
|
|
181
|
+
},
|
|
182
|
+
"BASIC": {
|
|
183
|
+
"color": "#ff0000",
|
|
184
|
+
"url": "https://github.com/trending?l=BASIC"
|
|
185
|
+
},
|
|
186
|
+
"Batchfile": {
|
|
187
|
+
"color": "#C1F12E",
|
|
188
|
+
"url": "https://github.com/trending?l=Batchfile"
|
|
189
|
+
},
|
|
190
|
+
"Beef": {
|
|
191
|
+
"color": "#a52f4e",
|
|
192
|
+
"url": "https://github.com/trending?l=Beef"
|
|
193
|
+
},
|
|
194
|
+
"Befunge": {
|
|
195
|
+
"color": null,
|
|
196
|
+
"url": "https://github.com/trending?l=Befunge"
|
|
197
|
+
},
|
|
198
|
+
"Berry": {
|
|
199
|
+
"color": "#15A13C",
|
|
200
|
+
"url": "https://github.com/trending?l=Berry"
|
|
201
|
+
},
|
|
202
|
+
"BibTeX": {
|
|
203
|
+
"color": "#778899",
|
|
204
|
+
"url": "https://github.com/trending?l=BibTeX"
|
|
205
|
+
},
|
|
206
|
+
"BibTeX Style": {
|
|
207
|
+
"color": null,
|
|
208
|
+
"url": "https://github.com/trending?l=BibTeX-Style"
|
|
209
|
+
},
|
|
210
|
+
"Bicep": {
|
|
211
|
+
"color": "#519aba",
|
|
212
|
+
"url": "https://github.com/trending?l=Bicep"
|
|
213
|
+
},
|
|
214
|
+
"Bikeshed": {
|
|
215
|
+
"color": "#5562ac",
|
|
216
|
+
"url": "https://github.com/trending?l=Bikeshed"
|
|
217
|
+
},
|
|
218
|
+
"Bison": {
|
|
219
|
+
"color": "#6A463F",
|
|
220
|
+
"url": "https://github.com/trending?l=Bison"
|
|
221
|
+
},
|
|
222
|
+
"BitBake": {
|
|
223
|
+
"color": "#00bce4",
|
|
224
|
+
"url": "https://github.com/trending?l=BitBake"
|
|
225
|
+
},
|
|
226
|
+
"Blade": {
|
|
227
|
+
"color": "#f7523f",
|
|
228
|
+
"url": "https://github.com/trending?l=Blade"
|
|
229
|
+
},
|
|
230
|
+
"BlitzBasic": {
|
|
231
|
+
"color": "#00FFAE",
|
|
232
|
+
"url": "https://github.com/trending?l=BlitzBasic"
|
|
233
|
+
},
|
|
234
|
+
"BlitzMax": {
|
|
235
|
+
"color": "#cd6400",
|
|
236
|
+
"url": "https://github.com/trending?l=BlitzMax"
|
|
237
|
+
},
|
|
238
|
+
"Bluespec": {
|
|
239
|
+
"color": "#12223c",
|
|
240
|
+
"url": "https://github.com/trending?l=Bluespec"
|
|
241
|
+
},
|
|
242
|
+
"Bluespec BH": {
|
|
243
|
+
"color": "#12223c",
|
|
244
|
+
"url": "https://github.com/trending?l=Bluespec-BH"
|
|
245
|
+
},
|
|
246
|
+
"Boo": {
|
|
247
|
+
"color": "#d4bec1",
|
|
248
|
+
"url": "https://github.com/trending?l=Boo"
|
|
249
|
+
},
|
|
250
|
+
"Boogie": {
|
|
251
|
+
"color": "#c80fa0",
|
|
252
|
+
"url": "https://github.com/trending?l=Boogie"
|
|
253
|
+
},
|
|
254
|
+
"BQN": {
|
|
255
|
+
"color": "#2b7067",
|
|
256
|
+
"url": "https://github.com/trending?l=BQN"
|
|
257
|
+
},
|
|
258
|
+
"Brainfuck": {
|
|
259
|
+
"color": "#2F2530",
|
|
260
|
+
"url": "https://github.com/trending?l=Brainfuck"
|
|
261
|
+
},
|
|
262
|
+
"BrighterScript": {
|
|
263
|
+
"color": "#66AABB",
|
|
264
|
+
"url": "https://github.com/trending?l=BrighterScript"
|
|
265
|
+
},
|
|
266
|
+
"Brightscript": {
|
|
267
|
+
"color": "#662D91",
|
|
268
|
+
"url": "https://github.com/trending?l=Brightscript"
|
|
269
|
+
},
|
|
270
|
+
"Browserslist": {
|
|
271
|
+
"color": "#ffd539",
|
|
272
|
+
"url": "https://github.com/trending?l=Browserslist"
|
|
273
|
+
},
|
|
274
|
+
"Bru": {
|
|
275
|
+
"color": "#F4AA41",
|
|
276
|
+
"url": "https://github.com/trending?l=Bru"
|
|
277
|
+
},
|
|
278
|
+
"BuildStream": {
|
|
279
|
+
"color": "#006bff",
|
|
280
|
+
"url": "https://github.com/trending?l=BuildStream"
|
|
281
|
+
},
|
|
282
|
+
"C": {
|
|
283
|
+
"color": "#555555",
|
|
284
|
+
"url": "https://github.com/trending?l=C"
|
|
285
|
+
},
|
|
286
|
+
"C#": {
|
|
287
|
+
"color": "#178600",
|
|
288
|
+
"url": "https://github.com/trending?l=Csharp"
|
|
289
|
+
},
|
|
290
|
+
"C++": {
|
|
291
|
+
"color": "#f34b7d",
|
|
292
|
+
"url": "https://github.com/trending?l=C++"
|
|
293
|
+
},
|
|
294
|
+
"C2hs Haskell": {
|
|
295
|
+
"color": null,
|
|
296
|
+
"url": "https://github.com/trending?l=C2hs-Haskell"
|
|
297
|
+
},
|
|
298
|
+
"C3": {
|
|
299
|
+
"color": "#2563eb",
|
|
300
|
+
"url": "https://github.com/trending?l=C3"
|
|
301
|
+
},
|
|
302
|
+
"Cabal Config": {
|
|
303
|
+
"color": "#483465",
|
|
304
|
+
"url": "https://github.com/trending?l=Cabal-Config"
|
|
305
|
+
},
|
|
306
|
+
"Caddyfile": {
|
|
307
|
+
"color": "#22b638",
|
|
308
|
+
"url": "https://github.com/trending?l=Caddyfile"
|
|
309
|
+
},
|
|
310
|
+
"Cadence": {
|
|
311
|
+
"color": "#00ef8b",
|
|
312
|
+
"url": "https://github.com/trending?l=Cadence"
|
|
313
|
+
},
|
|
314
|
+
"Cairo": {
|
|
315
|
+
"color": "#ff4a48",
|
|
316
|
+
"url": "https://github.com/trending?l=Cairo"
|
|
317
|
+
},
|
|
318
|
+
"Cairo Zero": {
|
|
319
|
+
"color": "#ff4a48",
|
|
320
|
+
"url": "https://github.com/trending?l=Cairo-Zero"
|
|
321
|
+
},
|
|
322
|
+
"CameLIGO": {
|
|
323
|
+
"color": "#3be133",
|
|
324
|
+
"url": "https://github.com/trending?l=CameLIGO"
|
|
325
|
+
},
|
|
326
|
+
"CAP CDS": {
|
|
327
|
+
"color": "#0092d1",
|
|
328
|
+
"url": "https://github.com/trending?l=CAP-CDS"
|
|
329
|
+
},
|
|
330
|
+
"Cap'n Proto": {
|
|
331
|
+
"color": "#c42727",
|
|
332
|
+
"url": "https://github.com/trending?l=Cap'n-Proto"
|
|
333
|
+
},
|
|
334
|
+
"Carbon": {
|
|
335
|
+
"color": "#222222",
|
|
336
|
+
"url": "https://github.com/trending?l=Carbon"
|
|
337
|
+
},
|
|
338
|
+
"CartoCSS": {
|
|
339
|
+
"color": null,
|
|
340
|
+
"url": "https://github.com/trending?l=CartoCSS"
|
|
341
|
+
},
|
|
342
|
+
"Ceylon": {
|
|
343
|
+
"color": "#dfa535",
|
|
344
|
+
"url": "https://github.com/trending?l=Ceylon"
|
|
345
|
+
},
|
|
346
|
+
"Chapel": {
|
|
347
|
+
"color": "#8dc63f",
|
|
348
|
+
"url": "https://github.com/trending?l=Chapel"
|
|
349
|
+
},
|
|
350
|
+
"Charity": {
|
|
351
|
+
"color": null,
|
|
352
|
+
"url": "https://github.com/trending?l=Charity"
|
|
353
|
+
},
|
|
354
|
+
"ChucK": {
|
|
355
|
+
"color": "#3f8000",
|
|
356
|
+
"url": "https://github.com/trending?l=ChucK"
|
|
357
|
+
},
|
|
358
|
+
"Circom": {
|
|
359
|
+
"color": "#707575",
|
|
360
|
+
"url": "https://github.com/trending?l=Circom"
|
|
361
|
+
},
|
|
362
|
+
"Cirru": {
|
|
363
|
+
"color": "#ccccff",
|
|
364
|
+
"url": "https://github.com/trending?l=Cirru"
|
|
365
|
+
},
|
|
366
|
+
"Clarion": {
|
|
367
|
+
"color": "#db901e",
|
|
368
|
+
"url": "https://github.com/trending?l=Clarion"
|
|
369
|
+
},
|
|
370
|
+
"Clarity": {
|
|
371
|
+
"color": "#5546ff",
|
|
372
|
+
"url": "https://github.com/trending?l=Clarity"
|
|
373
|
+
},
|
|
374
|
+
"Classic ASP": {
|
|
375
|
+
"color": "#6a40fd",
|
|
376
|
+
"url": "https://github.com/trending?l=Classic-ASP"
|
|
377
|
+
},
|
|
378
|
+
"Clean": {
|
|
379
|
+
"color": "#3F85AF",
|
|
380
|
+
"url": "https://github.com/trending?l=Clean"
|
|
381
|
+
},
|
|
382
|
+
"Click": {
|
|
383
|
+
"color": "#E4E6F3",
|
|
384
|
+
"url": "https://github.com/trending?l=Click"
|
|
385
|
+
},
|
|
386
|
+
"CLIPS": {
|
|
387
|
+
"color": "#00A300",
|
|
388
|
+
"url": "https://github.com/trending?l=CLIPS"
|
|
389
|
+
},
|
|
390
|
+
"Clojure": {
|
|
391
|
+
"color": "#db5855",
|
|
392
|
+
"url": "https://github.com/trending?l=Clojure"
|
|
393
|
+
},
|
|
394
|
+
"Closure Templates": {
|
|
395
|
+
"color": "#0d948f",
|
|
396
|
+
"url": "https://github.com/trending?l=Closure-Templates"
|
|
397
|
+
},
|
|
398
|
+
"Cloud Firestore Security Rules": {
|
|
399
|
+
"color": "#FFA000",
|
|
400
|
+
"url": "https://github.com/trending?l=Cloud-Firestore-Security-Rules"
|
|
401
|
+
},
|
|
402
|
+
"Clue": {
|
|
403
|
+
"color": "#0009b5",
|
|
404
|
+
"url": "https://github.com/trending?l=Clue"
|
|
405
|
+
},
|
|
406
|
+
"CMake": {
|
|
407
|
+
"color": "#DA3434",
|
|
408
|
+
"url": "https://github.com/trending?l=CMake"
|
|
409
|
+
},
|
|
410
|
+
"COBOL": {
|
|
411
|
+
"color": null,
|
|
412
|
+
"url": "https://github.com/trending?l=COBOL"
|
|
413
|
+
},
|
|
414
|
+
"CodeQL": {
|
|
415
|
+
"color": "#140f46",
|
|
416
|
+
"url": "https://github.com/trending?l=CodeQL"
|
|
417
|
+
},
|
|
418
|
+
"CoffeeScript": {
|
|
419
|
+
"color": "#244776",
|
|
420
|
+
"url": "https://github.com/trending?l=CoffeeScript"
|
|
421
|
+
},
|
|
422
|
+
"ColdFusion": {
|
|
423
|
+
"color": "#ed2cd6",
|
|
424
|
+
"url": "https://github.com/trending?l=ColdFusion"
|
|
425
|
+
},
|
|
426
|
+
"ColdFusion CFC": {
|
|
427
|
+
"color": "#ed2cd6",
|
|
428
|
+
"url": "https://github.com/trending?l=ColdFusion-CFC"
|
|
429
|
+
},
|
|
430
|
+
"COLLADA": {
|
|
431
|
+
"color": "#F1A42B",
|
|
432
|
+
"url": "https://github.com/trending?l=COLLADA"
|
|
433
|
+
},
|
|
434
|
+
"Common Lisp": {
|
|
435
|
+
"color": "#3fb68b",
|
|
436
|
+
"url": "https://github.com/trending?l=Common-Lisp"
|
|
437
|
+
},
|
|
438
|
+
"Common Workflow Language": {
|
|
439
|
+
"color": "#B5314C",
|
|
440
|
+
"url": "https://github.com/trending?l=Common-Workflow-Language"
|
|
441
|
+
},
|
|
442
|
+
"Component Pascal": {
|
|
443
|
+
"color": "#B0CE4E",
|
|
444
|
+
"url": "https://github.com/trending?l=Component-Pascal"
|
|
445
|
+
},
|
|
446
|
+
"Cooklang": {
|
|
447
|
+
"color": "#E15A29",
|
|
448
|
+
"url": "https://github.com/trending?l=Cooklang"
|
|
449
|
+
},
|
|
450
|
+
"Cool": {
|
|
451
|
+
"color": null,
|
|
452
|
+
"url": "https://github.com/trending?l=Cool"
|
|
453
|
+
},
|
|
454
|
+
"crontab": {
|
|
455
|
+
"color": "#ead7ac",
|
|
456
|
+
"url": "https://github.com/trending?l=crontab"
|
|
457
|
+
},
|
|
458
|
+
"Crystal": {
|
|
459
|
+
"color": "#000100",
|
|
460
|
+
"url": "https://github.com/trending?l=Crystal"
|
|
461
|
+
},
|
|
462
|
+
"CSON": {
|
|
463
|
+
"color": "#244776",
|
|
464
|
+
"url": "https://github.com/trending?l=CSON"
|
|
465
|
+
},
|
|
466
|
+
"Csound": {
|
|
467
|
+
"color": "#1a1a1a",
|
|
468
|
+
"url": "https://github.com/trending?l=Csound"
|
|
469
|
+
},
|
|
470
|
+
"Csound Document": {
|
|
471
|
+
"color": "#1a1a1a",
|
|
472
|
+
"url": "https://github.com/trending?l=Csound-Document"
|
|
473
|
+
},
|
|
474
|
+
"Csound Score": {
|
|
475
|
+
"color": "#1a1a1a",
|
|
476
|
+
"url": "https://github.com/trending?l=Csound-Score"
|
|
477
|
+
},
|
|
478
|
+
"CSS": {
|
|
479
|
+
"color": "#663399",
|
|
480
|
+
"url": "https://github.com/trending?l=CSS"
|
|
481
|
+
},
|
|
482
|
+
"CSV": {
|
|
483
|
+
"color": "#237346",
|
|
484
|
+
"url": "https://github.com/trending?l=CSV"
|
|
485
|
+
},
|
|
486
|
+
"Cuda": {
|
|
487
|
+
"color": "#3A4E3A",
|
|
488
|
+
"url": "https://github.com/trending?l=Cuda"
|
|
489
|
+
},
|
|
490
|
+
"CUE": {
|
|
491
|
+
"color": "#5886E1",
|
|
492
|
+
"url": "https://github.com/trending?l=CUE"
|
|
493
|
+
},
|
|
494
|
+
"Curry": {
|
|
495
|
+
"color": "#531242",
|
|
496
|
+
"url": "https://github.com/trending?l=Curry"
|
|
497
|
+
},
|
|
498
|
+
"CWeb": {
|
|
499
|
+
"color": "#00007a",
|
|
500
|
+
"url": "https://github.com/trending?l=CWeb"
|
|
501
|
+
},
|
|
502
|
+
"Cycript": {
|
|
503
|
+
"color": null,
|
|
504
|
+
"url": "https://github.com/trending?l=Cycript"
|
|
505
|
+
},
|
|
506
|
+
"Cylc": {
|
|
507
|
+
"color": "#00b3fd",
|
|
508
|
+
"url": "https://github.com/trending?l=Cylc"
|
|
509
|
+
},
|
|
510
|
+
"Cypher": {
|
|
511
|
+
"color": "#34c0eb",
|
|
512
|
+
"url": "https://github.com/trending?l=Cypher"
|
|
513
|
+
},
|
|
514
|
+
"Cython": {
|
|
515
|
+
"color": "#fedf5b",
|
|
516
|
+
"url": "https://github.com/trending?l=Cython"
|
|
517
|
+
},
|
|
518
|
+
"D": {
|
|
519
|
+
"color": "#ba595e",
|
|
520
|
+
"url": "https://github.com/trending?l=D"
|
|
521
|
+
},
|
|
522
|
+
"D2": {
|
|
523
|
+
"color": "#526ee8",
|
|
524
|
+
"url": "https://github.com/trending?l=D2"
|
|
525
|
+
},
|
|
526
|
+
"Dafny": {
|
|
527
|
+
"color": "#FFEC25",
|
|
528
|
+
"url": "https://github.com/trending?l=Dafny"
|
|
529
|
+
},
|
|
530
|
+
"Darcs Patch": {
|
|
531
|
+
"color": "#8eff23",
|
|
532
|
+
"url": "https://github.com/trending?l=Darcs-Patch"
|
|
533
|
+
},
|
|
534
|
+
"Dart": {
|
|
535
|
+
"color": "#00B4AB",
|
|
536
|
+
"url": "https://github.com/trending?l=Dart"
|
|
537
|
+
},
|
|
538
|
+
"Daslang": {
|
|
539
|
+
"color": "#d3d3d3",
|
|
540
|
+
"url": "https://github.com/trending?l=Daslang"
|
|
541
|
+
},
|
|
542
|
+
"DataWeave": {
|
|
543
|
+
"color": "#003a52",
|
|
544
|
+
"url": "https://github.com/trending?l=DataWeave"
|
|
545
|
+
},
|
|
546
|
+
"Debian Package Control File": {
|
|
547
|
+
"color": "#D70751",
|
|
548
|
+
"url": "https://github.com/trending?l=Debian-Package-Control-File"
|
|
549
|
+
},
|
|
550
|
+
"DenizenScript": {
|
|
551
|
+
"color": "#FBEE96",
|
|
552
|
+
"url": "https://github.com/trending?l=DenizenScript"
|
|
553
|
+
},
|
|
554
|
+
"Dhall": {
|
|
555
|
+
"color": "#dfafff",
|
|
556
|
+
"url": "https://github.com/trending?l=Dhall"
|
|
557
|
+
},
|
|
558
|
+
"DIGITAL Command Language": {
|
|
559
|
+
"color": null,
|
|
560
|
+
"url": "https://github.com/trending?l=DIGITAL-Command-Language"
|
|
561
|
+
},
|
|
562
|
+
"DirectX 3D File": {
|
|
563
|
+
"color": "#aace60",
|
|
564
|
+
"url": "https://github.com/trending?l=DirectX-3D-File"
|
|
565
|
+
},
|
|
566
|
+
"DM": {
|
|
567
|
+
"color": "#447265",
|
|
568
|
+
"url": "https://github.com/trending?l=DM"
|
|
569
|
+
},
|
|
570
|
+
"Dockerfile": {
|
|
571
|
+
"color": "#384d54",
|
|
572
|
+
"url": "https://github.com/trending?l=Dockerfile"
|
|
573
|
+
},
|
|
574
|
+
"Dogescript": {
|
|
575
|
+
"color": "#cca760",
|
|
576
|
+
"url": "https://github.com/trending?l=Dogescript"
|
|
577
|
+
},
|
|
578
|
+
"Dotenv": {
|
|
579
|
+
"color": "#e5d559",
|
|
580
|
+
"url": "https://github.com/trending?l=Dotenv"
|
|
581
|
+
},
|
|
582
|
+
"DTrace": {
|
|
583
|
+
"color": null,
|
|
584
|
+
"url": "https://github.com/trending?l=DTrace"
|
|
585
|
+
},
|
|
586
|
+
"Dune": {
|
|
587
|
+
"color": "#89421e",
|
|
588
|
+
"url": "https://github.com/trending?l=Dune"
|
|
589
|
+
},
|
|
590
|
+
"Dylan": {
|
|
591
|
+
"color": "#6c616e",
|
|
592
|
+
"url": "https://github.com/trending?l=Dylan"
|
|
593
|
+
},
|
|
594
|
+
"E": {
|
|
595
|
+
"color": "#ccce35",
|
|
596
|
+
"url": "https://github.com/trending?l=E"
|
|
597
|
+
},
|
|
598
|
+
"Earthly": {
|
|
599
|
+
"color": "#2af0ff",
|
|
600
|
+
"url": "https://github.com/trending?l=Earthly"
|
|
601
|
+
},
|
|
602
|
+
"Easybuild": {
|
|
603
|
+
"color": "#069406",
|
|
604
|
+
"url": "https://github.com/trending?l=Easybuild"
|
|
605
|
+
},
|
|
606
|
+
"eC": {
|
|
607
|
+
"color": "#913960",
|
|
608
|
+
"url": "https://github.com/trending?l=eC"
|
|
609
|
+
},
|
|
610
|
+
"Ecere Projects": {
|
|
611
|
+
"color": "#913960",
|
|
612
|
+
"url": "https://github.com/trending?l=Ecere-Projects"
|
|
613
|
+
},
|
|
614
|
+
"ECL": {
|
|
615
|
+
"color": "#8a1267",
|
|
616
|
+
"url": "https://github.com/trending?l=ECL"
|
|
617
|
+
},
|
|
618
|
+
"ECLiPSe": {
|
|
619
|
+
"color": "#001d9d",
|
|
620
|
+
"url": "https://github.com/trending?l=ECLiPSe"
|
|
621
|
+
},
|
|
622
|
+
"Ecmarkup": {
|
|
623
|
+
"color": "#eb8131",
|
|
624
|
+
"url": "https://github.com/trending?l=Ecmarkup"
|
|
625
|
+
},
|
|
626
|
+
"Edge": {
|
|
627
|
+
"color": "#0dffe0",
|
|
628
|
+
"url": "https://github.com/trending?l=Edge"
|
|
629
|
+
},
|
|
630
|
+
"EdgeQL": {
|
|
631
|
+
"color": "#31A7FF",
|
|
632
|
+
"url": "https://github.com/trending?l=EdgeQL"
|
|
633
|
+
},
|
|
634
|
+
"EditorConfig": {
|
|
635
|
+
"color": "#fff1f2",
|
|
636
|
+
"url": "https://github.com/trending?l=EditorConfig"
|
|
637
|
+
},
|
|
638
|
+
"Eiffel": {
|
|
639
|
+
"color": "#4d6977",
|
|
640
|
+
"url": "https://github.com/trending?l=Eiffel"
|
|
641
|
+
},
|
|
642
|
+
"EJS": {
|
|
643
|
+
"color": "#a91e50",
|
|
644
|
+
"url": "https://github.com/trending?l=EJS"
|
|
645
|
+
},
|
|
646
|
+
"Elixir": {
|
|
647
|
+
"color": "#6e4a7e",
|
|
648
|
+
"url": "https://github.com/trending?l=Elixir"
|
|
649
|
+
},
|
|
650
|
+
"Elm": {
|
|
651
|
+
"color": "#60B5CC",
|
|
652
|
+
"url": "https://github.com/trending?l=Elm"
|
|
653
|
+
},
|
|
654
|
+
"Elvish": {
|
|
655
|
+
"color": "#55BB55",
|
|
656
|
+
"url": "https://github.com/trending?l=Elvish"
|
|
657
|
+
},
|
|
658
|
+
"Elvish Transcript": {
|
|
659
|
+
"color": "#55BB55",
|
|
660
|
+
"url": "https://github.com/trending?l=Elvish-Transcript"
|
|
661
|
+
},
|
|
662
|
+
"Emacs Lisp": {
|
|
663
|
+
"color": "#c065db",
|
|
664
|
+
"url": "https://github.com/trending?l=Emacs-Lisp"
|
|
665
|
+
},
|
|
666
|
+
"EmberScript": {
|
|
667
|
+
"color": "#FFF4F3",
|
|
668
|
+
"url": "https://github.com/trending?l=EmberScript"
|
|
669
|
+
},
|
|
670
|
+
"EQ": {
|
|
671
|
+
"color": "#a78649",
|
|
672
|
+
"url": "https://github.com/trending?l=EQ"
|
|
673
|
+
},
|
|
674
|
+
"Erlang": {
|
|
675
|
+
"color": "#B83998",
|
|
676
|
+
"url": "https://github.com/trending?l=Erlang"
|
|
677
|
+
},
|
|
678
|
+
"Euphoria": {
|
|
679
|
+
"color": "#FF790B",
|
|
680
|
+
"url": "https://github.com/trending?l=Euphoria"
|
|
681
|
+
},
|
|
682
|
+
"F#": {
|
|
683
|
+
"color": "#b845fc",
|
|
684
|
+
"url": "https://github.com/trending?l=Fsharp"
|
|
685
|
+
},
|
|
686
|
+
"F*": {
|
|
687
|
+
"color": "#572e30",
|
|
688
|
+
"url": "https://github.com/trending?l=F*"
|
|
689
|
+
},
|
|
690
|
+
"Factor": {
|
|
691
|
+
"color": "#636746",
|
|
692
|
+
"url": "https://github.com/trending?l=Factor"
|
|
693
|
+
},
|
|
694
|
+
"Fancy": {
|
|
695
|
+
"color": "#7b9db4",
|
|
696
|
+
"url": "https://github.com/trending?l=Fancy"
|
|
697
|
+
},
|
|
698
|
+
"Fantom": {
|
|
699
|
+
"color": "#14253c",
|
|
700
|
+
"url": "https://github.com/trending?l=Fantom"
|
|
701
|
+
},
|
|
702
|
+
"Faust": {
|
|
703
|
+
"color": "#c37240",
|
|
704
|
+
"url": "https://github.com/trending?l=Faust"
|
|
705
|
+
},
|
|
706
|
+
"Fennel": {
|
|
707
|
+
"color": "#fff3d7",
|
|
708
|
+
"url": "https://github.com/trending?l=Fennel"
|
|
709
|
+
},
|
|
710
|
+
"FIGlet Font": {
|
|
711
|
+
"color": "#FFDDBB",
|
|
712
|
+
"url": "https://github.com/trending?l=FIGlet-Font"
|
|
713
|
+
},
|
|
714
|
+
"Filebench WML": {
|
|
715
|
+
"color": "#F6B900",
|
|
716
|
+
"url": "https://github.com/trending?l=Filebench-WML"
|
|
717
|
+
},
|
|
718
|
+
"Filterscript": {
|
|
719
|
+
"color": null,
|
|
720
|
+
"url": "https://github.com/trending?l=Filterscript"
|
|
721
|
+
},
|
|
722
|
+
"FIRRTL": {
|
|
723
|
+
"color": "#2f632f",
|
|
724
|
+
"url": "https://github.com/trending?l=FIRRTL"
|
|
725
|
+
},
|
|
726
|
+
"fish": {
|
|
727
|
+
"color": "#4aae47",
|
|
728
|
+
"url": "https://github.com/trending?l=fish"
|
|
729
|
+
},
|
|
730
|
+
"Flix": {
|
|
731
|
+
"color": "#d44a45",
|
|
732
|
+
"url": "https://github.com/trending?l=Flix"
|
|
733
|
+
},
|
|
734
|
+
"Fluent": {
|
|
735
|
+
"color": "#ffcc33",
|
|
736
|
+
"url": "https://github.com/trending?l=Fluent"
|
|
737
|
+
},
|
|
738
|
+
"FLUX": {
|
|
739
|
+
"color": "#88ccff",
|
|
740
|
+
"url": "https://github.com/trending?l=FLUX"
|
|
741
|
+
},
|
|
742
|
+
"Forth": {
|
|
743
|
+
"color": "#341708",
|
|
744
|
+
"url": "https://github.com/trending?l=Forth"
|
|
745
|
+
},
|
|
746
|
+
"Fortran": {
|
|
747
|
+
"color": "#4d41b1",
|
|
748
|
+
"url": "https://github.com/trending?l=Fortran"
|
|
749
|
+
},
|
|
750
|
+
"Fortran Free Form": {
|
|
751
|
+
"color": "#4d41b1",
|
|
752
|
+
"url": "https://github.com/trending?l=Fortran-Free-Form"
|
|
753
|
+
},
|
|
754
|
+
"FreeBASIC": {
|
|
755
|
+
"color": "#141AC9",
|
|
756
|
+
"url": "https://github.com/trending?l=FreeBASIC"
|
|
757
|
+
},
|
|
758
|
+
"FreeMarker": {
|
|
759
|
+
"color": "#0050b2",
|
|
760
|
+
"url": "https://github.com/trending?l=FreeMarker"
|
|
761
|
+
},
|
|
762
|
+
"Frege": {
|
|
763
|
+
"color": "#00cafe",
|
|
764
|
+
"url": "https://github.com/trending?l=Frege"
|
|
765
|
+
},
|
|
766
|
+
"Futhark": {
|
|
767
|
+
"color": "#5f021f",
|
|
768
|
+
"url": "https://github.com/trending?l=Futhark"
|
|
769
|
+
},
|
|
770
|
+
"G-code": {
|
|
771
|
+
"color": "#D08CF2",
|
|
772
|
+
"url": "https://github.com/trending?l=G-code"
|
|
773
|
+
},
|
|
774
|
+
"Game Maker Language": {
|
|
775
|
+
"color": "#71b417",
|
|
776
|
+
"url": "https://github.com/trending?l=Game-Maker-Language"
|
|
777
|
+
},
|
|
778
|
+
"GAML": {
|
|
779
|
+
"color": "#FFC766",
|
|
780
|
+
"url": "https://github.com/trending?l=GAML"
|
|
781
|
+
},
|
|
782
|
+
"GAMS": {
|
|
783
|
+
"color": "#f49a22",
|
|
784
|
+
"url": "https://github.com/trending?l=GAMS"
|
|
785
|
+
},
|
|
786
|
+
"GAP": {
|
|
787
|
+
"color": "#0000cc",
|
|
788
|
+
"url": "https://github.com/trending?l=GAP"
|
|
789
|
+
},
|
|
790
|
+
"GCC Machine Description": {
|
|
791
|
+
"color": "#FFCFAB",
|
|
792
|
+
"url": "https://github.com/trending?l=GCC-Machine-Description"
|
|
793
|
+
},
|
|
794
|
+
"GDB": {
|
|
795
|
+
"color": null,
|
|
796
|
+
"url": "https://github.com/trending?l=GDB"
|
|
797
|
+
},
|
|
798
|
+
"GDScript": {
|
|
799
|
+
"color": "#355570",
|
|
800
|
+
"url": "https://github.com/trending?l=GDScript"
|
|
801
|
+
},
|
|
802
|
+
"GDShader": {
|
|
803
|
+
"color": "#478CBF",
|
|
804
|
+
"url": "https://github.com/trending?l=GDShader"
|
|
805
|
+
},
|
|
806
|
+
"GEDCOM": {
|
|
807
|
+
"color": "#003058",
|
|
808
|
+
"url": "https://github.com/trending?l=GEDCOM"
|
|
809
|
+
},
|
|
810
|
+
"Gemfile.lock": {
|
|
811
|
+
"color": "#701516",
|
|
812
|
+
"url": "https://github.com/trending?l=Gemfile.lock"
|
|
813
|
+
},
|
|
814
|
+
"Gemini": {
|
|
815
|
+
"color": "#ff6900",
|
|
816
|
+
"url": "https://github.com/trending?l=Gemini"
|
|
817
|
+
},
|
|
818
|
+
"Genero 4gl": {
|
|
819
|
+
"color": "#63408e",
|
|
820
|
+
"url": "https://github.com/trending?l=Genero-4gl"
|
|
821
|
+
},
|
|
822
|
+
"Genero per": {
|
|
823
|
+
"color": "#d8df39",
|
|
824
|
+
"url": "https://github.com/trending?l=Genero-per"
|
|
825
|
+
},
|
|
826
|
+
"Genie": {
|
|
827
|
+
"color": "#fb855d",
|
|
828
|
+
"url": "https://github.com/trending?l=Genie"
|
|
829
|
+
},
|
|
830
|
+
"Genshi": {
|
|
831
|
+
"color": "#951531",
|
|
832
|
+
"url": "https://github.com/trending?l=Genshi"
|
|
833
|
+
},
|
|
834
|
+
"Gentoo Ebuild": {
|
|
835
|
+
"color": "#9400ff",
|
|
836
|
+
"url": "https://github.com/trending?l=Gentoo-Ebuild"
|
|
837
|
+
},
|
|
838
|
+
"Gentoo Eclass": {
|
|
839
|
+
"color": "#9400ff",
|
|
840
|
+
"url": "https://github.com/trending?l=Gentoo-Eclass"
|
|
841
|
+
},
|
|
842
|
+
"Gerber Image": {
|
|
843
|
+
"color": "#d20b00",
|
|
844
|
+
"url": "https://github.com/trending?l=Gerber-Image"
|
|
845
|
+
},
|
|
846
|
+
"Gherkin": {
|
|
847
|
+
"color": "#5B2063",
|
|
848
|
+
"url": "https://github.com/trending?l=Gherkin"
|
|
849
|
+
},
|
|
850
|
+
"Git Attributes": {
|
|
851
|
+
"color": "#F44D27",
|
|
852
|
+
"url": "https://github.com/trending?l=Git-Attributes"
|
|
853
|
+
},
|
|
854
|
+
"Git Config": {
|
|
855
|
+
"color": "#F44D27",
|
|
856
|
+
"url": "https://github.com/trending?l=Git-Config"
|
|
857
|
+
},
|
|
858
|
+
"Git Revision List": {
|
|
859
|
+
"color": "#F44D27",
|
|
860
|
+
"url": "https://github.com/trending?l=Git-Revision-List"
|
|
861
|
+
},
|
|
862
|
+
"Gleam": {
|
|
863
|
+
"color": "#ffaff3",
|
|
864
|
+
"url": "https://github.com/trending?l=Gleam"
|
|
865
|
+
},
|
|
866
|
+
"Glimmer JS": {
|
|
867
|
+
"color": "#F5835F",
|
|
868
|
+
"url": "https://github.com/trending?l=Glimmer-JS"
|
|
869
|
+
},
|
|
870
|
+
"Glimmer TS": {
|
|
871
|
+
"color": "#3178c6",
|
|
872
|
+
"url": "https://github.com/trending?l=Glimmer-TS"
|
|
873
|
+
},
|
|
874
|
+
"GLSL": {
|
|
875
|
+
"color": "#5686a5",
|
|
876
|
+
"url": "https://github.com/trending?l=GLSL"
|
|
877
|
+
},
|
|
878
|
+
"Glyph": {
|
|
879
|
+
"color": "#c1ac7f",
|
|
880
|
+
"url": "https://github.com/trending?l=Glyph"
|
|
881
|
+
},
|
|
882
|
+
"Gnuplot": {
|
|
883
|
+
"color": "#f0a9f0",
|
|
884
|
+
"url": "https://github.com/trending?l=Gnuplot"
|
|
885
|
+
},
|
|
886
|
+
"Go": {
|
|
887
|
+
"color": "#00ADD8",
|
|
888
|
+
"url": "https://github.com/trending?l=Go"
|
|
889
|
+
},
|
|
890
|
+
"Go Checksums": {
|
|
891
|
+
"color": "#00ADD8",
|
|
892
|
+
"url": "https://github.com/trending?l=Go-Checksums"
|
|
893
|
+
},
|
|
894
|
+
"Go Module": {
|
|
895
|
+
"color": "#00ADD8",
|
|
896
|
+
"url": "https://github.com/trending?l=Go-Module"
|
|
897
|
+
},
|
|
898
|
+
"Go Workspace": {
|
|
899
|
+
"color": "#00ADD8",
|
|
900
|
+
"url": "https://github.com/trending?l=Go-Workspace"
|
|
901
|
+
},
|
|
902
|
+
"Godot Resource": {
|
|
903
|
+
"color": "#355570",
|
|
904
|
+
"url": "https://github.com/trending?l=Godot-Resource"
|
|
905
|
+
},
|
|
906
|
+
"Golo": {
|
|
907
|
+
"color": "#88562A",
|
|
908
|
+
"url": "https://github.com/trending?l=Golo"
|
|
909
|
+
},
|
|
910
|
+
"Gosu": {
|
|
911
|
+
"color": "#82937f",
|
|
912
|
+
"url": "https://github.com/trending?l=Gosu"
|
|
913
|
+
},
|
|
914
|
+
"Grace": {
|
|
915
|
+
"color": "#615f8b",
|
|
916
|
+
"url": "https://github.com/trending?l=Grace"
|
|
917
|
+
},
|
|
918
|
+
"Gradle": {
|
|
919
|
+
"color": "#02303a",
|
|
920
|
+
"url": "https://github.com/trending?l=Gradle"
|
|
921
|
+
},
|
|
922
|
+
"Gradle Kotlin DSL": {
|
|
923
|
+
"color": "#02303a",
|
|
924
|
+
"url": "https://github.com/trending?l=Gradle-Kotlin-DSL"
|
|
925
|
+
},
|
|
926
|
+
"Grammatical Framework": {
|
|
927
|
+
"color": "#ff0000",
|
|
928
|
+
"url": "https://github.com/trending?l=Grammatical-Framework"
|
|
929
|
+
},
|
|
930
|
+
"GraphQL": {
|
|
931
|
+
"color": "#e10098",
|
|
932
|
+
"url": "https://github.com/trending?l=GraphQL"
|
|
933
|
+
},
|
|
934
|
+
"Graphviz (DOT)": {
|
|
935
|
+
"color": "#2596be",
|
|
936
|
+
"url": "https://github.com/trending?l=Graphviz-(DOT)"
|
|
937
|
+
},
|
|
938
|
+
"Groovy": {
|
|
939
|
+
"color": "#4298b8",
|
|
940
|
+
"url": "https://github.com/trending?l=Groovy"
|
|
941
|
+
},
|
|
942
|
+
"Groovy Server Pages": {
|
|
943
|
+
"color": "#4298b8",
|
|
944
|
+
"url": "https://github.com/trending?l=Groovy-Server-Pages"
|
|
945
|
+
},
|
|
946
|
+
"GSC": {
|
|
947
|
+
"color": "#FF6800",
|
|
948
|
+
"url": "https://github.com/trending?l=GSC"
|
|
949
|
+
},
|
|
950
|
+
"Hack": {
|
|
951
|
+
"color": "#878787",
|
|
952
|
+
"url": "https://github.com/trending?l=Hack"
|
|
953
|
+
},
|
|
954
|
+
"Haml": {
|
|
955
|
+
"color": "#ece2a9",
|
|
956
|
+
"url": "https://github.com/trending?l=Haml"
|
|
957
|
+
},
|
|
958
|
+
"Handlebars": {
|
|
959
|
+
"color": "#f7931e",
|
|
960
|
+
"url": "https://github.com/trending?l=Handlebars"
|
|
961
|
+
},
|
|
962
|
+
"HAProxy": {
|
|
963
|
+
"color": "#106da9",
|
|
964
|
+
"url": "https://github.com/trending?l=HAProxy"
|
|
965
|
+
},
|
|
966
|
+
"Harbour": {
|
|
967
|
+
"color": "#0e60e3",
|
|
968
|
+
"url": "https://github.com/trending?l=Harbour"
|
|
969
|
+
},
|
|
970
|
+
"Hare": {
|
|
971
|
+
"color": "#9d7424",
|
|
972
|
+
"url": "https://github.com/trending?l=Hare"
|
|
973
|
+
},
|
|
974
|
+
"Haskell": {
|
|
975
|
+
"color": "#5e5086",
|
|
976
|
+
"url": "https://github.com/trending?l=Haskell"
|
|
977
|
+
},
|
|
978
|
+
"Haxe": {
|
|
979
|
+
"color": "#df7900",
|
|
980
|
+
"url": "https://github.com/trending?l=Haxe"
|
|
981
|
+
},
|
|
982
|
+
"HCL": {
|
|
983
|
+
"color": "#844FBA",
|
|
984
|
+
"url": "https://github.com/trending?l=HCL"
|
|
985
|
+
},
|
|
986
|
+
"HIP": {
|
|
987
|
+
"color": "#4F3A4F",
|
|
988
|
+
"url": "https://github.com/trending?l=HIP"
|
|
989
|
+
},
|
|
990
|
+
"HiveQL": {
|
|
991
|
+
"color": "#dce200",
|
|
992
|
+
"url": "https://github.com/trending?l=HiveQL"
|
|
993
|
+
},
|
|
994
|
+
"HLSL": {
|
|
995
|
+
"color": "#aace60",
|
|
996
|
+
"url": "https://github.com/trending?l=HLSL"
|
|
997
|
+
},
|
|
998
|
+
"HOCON": {
|
|
999
|
+
"color": "#9ff8ee",
|
|
1000
|
+
"url": "https://github.com/trending?l=HOCON"
|
|
1001
|
+
},
|
|
1002
|
+
"HolyC": {
|
|
1003
|
+
"color": "#ffefaf",
|
|
1004
|
+
"url": "https://github.com/trending?l=HolyC"
|
|
1005
|
+
},
|
|
1006
|
+
"hoon": {
|
|
1007
|
+
"color": "#00b171",
|
|
1008
|
+
"url": "https://github.com/trending?l=hoon"
|
|
1009
|
+
},
|
|
1010
|
+
"Hosts File": {
|
|
1011
|
+
"color": "#308888",
|
|
1012
|
+
"url": "https://github.com/trending?l=Hosts-File"
|
|
1013
|
+
},
|
|
1014
|
+
"HTML": {
|
|
1015
|
+
"color": "#e34c26",
|
|
1016
|
+
"url": "https://github.com/trending?l=HTML"
|
|
1017
|
+
},
|
|
1018
|
+
"HTML+ECR": {
|
|
1019
|
+
"color": "#2e1052",
|
|
1020
|
+
"url": "https://github.com/trending?l=HTML+ECR"
|
|
1021
|
+
},
|
|
1022
|
+
"HTML+EEX": {
|
|
1023
|
+
"color": "#6e4a7e",
|
|
1024
|
+
"url": "https://github.com/trending?l=HTML+EEX"
|
|
1025
|
+
},
|
|
1026
|
+
"HTML+ERB": {
|
|
1027
|
+
"color": "#701516",
|
|
1028
|
+
"url": "https://github.com/trending?l=HTML+ERB"
|
|
1029
|
+
},
|
|
1030
|
+
"HTML+PHP": {
|
|
1031
|
+
"color": "#4f5d95",
|
|
1032
|
+
"url": "https://github.com/trending?l=HTML+PHP"
|
|
1033
|
+
},
|
|
1034
|
+
"HTML+Razor": {
|
|
1035
|
+
"color": "#512be4",
|
|
1036
|
+
"url": "https://github.com/trending?l=HTML+Razor"
|
|
1037
|
+
},
|
|
1038
|
+
"HTTP": {
|
|
1039
|
+
"color": "#005C9C",
|
|
1040
|
+
"url": "https://github.com/trending?l=HTTP"
|
|
1041
|
+
},
|
|
1042
|
+
"HXML": {
|
|
1043
|
+
"color": "#f68712",
|
|
1044
|
+
"url": "https://github.com/trending?l=HXML"
|
|
1045
|
+
},
|
|
1046
|
+
"Hy": {
|
|
1047
|
+
"color": "#7790B2",
|
|
1048
|
+
"url": "https://github.com/trending?l=Hy"
|
|
1049
|
+
},
|
|
1050
|
+
"HyPhy": {
|
|
1051
|
+
"color": null,
|
|
1052
|
+
"url": "https://github.com/trending?l=HyPhy"
|
|
1053
|
+
},
|
|
1054
|
+
"iCalendar": {
|
|
1055
|
+
"color": "#ec564c",
|
|
1056
|
+
"url": "https://github.com/trending?l=iCalendar"
|
|
1057
|
+
},
|
|
1058
|
+
"IDL": {
|
|
1059
|
+
"color": "#a3522f",
|
|
1060
|
+
"url": "https://github.com/trending?l=IDL"
|
|
1061
|
+
},
|
|
1062
|
+
"Idris": {
|
|
1063
|
+
"color": "#b30000",
|
|
1064
|
+
"url": "https://github.com/trending?l=Idris"
|
|
1065
|
+
},
|
|
1066
|
+
"Ignore List": {
|
|
1067
|
+
"color": "#000000",
|
|
1068
|
+
"url": "https://github.com/trending?l=Ignore-List"
|
|
1069
|
+
},
|
|
1070
|
+
"IGOR Pro": {
|
|
1071
|
+
"color": "#0000cc",
|
|
1072
|
+
"url": "https://github.com/trending?l=IGOR-Pro"
|
|
1073
|
+
},
|
|
1074
|
+
"ImageJ Macro": {
|
|
1075
|
+
"color": "#99AAFF",
|
|
1076
|
+
"url": "https://github.com/trending?l=ImageJ-Macro"
|
|
1077
|
+
},
|
|
1078
|
+
"Imba": {
|
|
1079
|
+
"color": "#16cec6",
|
|
1080
|
+
"url": "https://github.com/trending?l=Imba"
|
|
1081
|
+
},
|
|
1082
|
+
"Inform 7": {
|
|
1083
|
+
"color": null,
|
|
1084
|
+
"url": "https://github.com/trending?l=Inform-7"
|
|
1085
|
+
},
|
|
1086
|
+
"INI": {
|
|
1087
|
+
"color": "#d1dbe0",
|
|
1088
|
+
"url": "https://github.com/trending?l=INI"
|
|
1089
|
+
},
|
|
1090
|
+
"Ink": {
|
|
1091
|
+
"color": null,
|
|
1092
|
+
"url": "https://github.com/trending?l=Ink"
|
|
1093
|
+
},
|
|
1094
|
+
"Inno Setup": {
|
|
1095
|
+
"color": "#264b99",
|
|
1096
|
+
"url": "https://github.com/trending?l=Inno-Setup"
|
|
1097
|
+
},
|
|
1098
|
+
"Io": {
|
|
1099
|
+
"color": "#a9188d",
|
|
1100
|
+
"url": "https://github.com/trending?l=Io"
|
|
1101
|
+
},
|
|
1102
|
+
"Ioke": {
|
|
1103
|
+
"color": "#078193",
|
|
1104
|
+
"url": "https://github.com/trending?l=Ioke"
|
|
1105
|
+
},
|
|
1106
|
+
"Isabelle": {
|
|
1107
|
+
"color": "#FEFE00",
|
|
1108
|
+
"url": "https://github.com/trending?l=Isabelle"
|
|
1109
|
+
},
|
|
1110
|
+
"Isabelle ROOT": {
|
|
1111
|
+
"color": "#FEFE00",
|
|
1112
|
+
"url": "https://github.com/trending?l=Isabelle-ROOT"
|
|
1113
|
+
},
|
|
1114
|
+
"ISPC": {
|
|
1115
|
+
"color": "#2D68B1",
|
|
1116
|
+
"url": "https://github.com/trending?l=ISPC"
|
|
1117
|
+
},
|
|
1118
|
+
"J": {
|
|
1119
|
+
"color": "#9EEDFF",
|
|
1120
|
+
"url": "https://github.com/trending?l=J"
|
|
1121
|
+
},
|
|
1122
|
+
"Jai": {
|
|
1123
|
+
"color": "#ab8b4b",
|
|
1124
|
+
"url": "https://github.com/trending?l=Jai"
|
|
1125
|
+
},
|
|
1126
|
+
"Janet": {
|
|
1127
|
+
"color": "#0886a5",
|
|
1128
|
+
"url": "https://github.com/trending?l=Janet"
|
|
1129
|
+
},
|
|
1130
|
+
"JAR Manifest": {
|
|
1131
|
+
"color": "#b07219",
|
|
1132
|
+
"url": "https://github.com/trending?l=JAR-Manifest"
|
|
1133
|
+
},
|
|
1134
|
+
"Jasmin": {
|
|
1135
|
+
"color": "#d03600",
|
|
1136
|
+
"url": "https://github.com/trending?l=Jasmin"
|
|
1137
|
+
},
|
|
1138
|
+
"Java": {
|
|
1139
|
+
"color": "#b07219",
|
|
1140
|
+
"url": "https://github.com/trending?l=Java"
|
|
1141
|
+
},
|
|
1142
|
+
"Java Properties": {
|
|
1143
|
+
"color": "#2A6277",
|
|
1144
|
+
"url": "https://github.com/trending?l=Java-Properties"
|
|
1145
|
+
},
|
|
1146
|
+
"Java Server Pages": {
|
|
1147
|
+
"color": "#2A6277",
|
|
1148
|
+
"url": "https://github.com/trending?l=Java-Server-Pages"
|
|
1149
|
+
},
|
|
1150
|
+
"Java Template Engine": {
|
|
1151
|
+
"color": "#2A6277",
|
|
1152
|
+
"url": "https://github.com/trending?l=Java-Template-Engine"
|
|
1153
|
+
},
|
|
1154
|
+
"JavaScript": {
|
|
1155
|
+
"color": "#f1e05a",
|
|
1156
|
+
"url": "https://github.com/trending?l=JavaScript"
|
|
1157
|
+
},
|
|
1158
|
+
"JavaScript+ERB": {
|
|
1159
|
+
"color": "#f1e05a",
|
|
1160
|
+
"url": "https://github.com/trending?l=JavaScript+ERB"
|
|
1161
|
+
},
|
|
1162
|
+
"JCL": {
|
|
1163
|
+
"color": "#d90e09",
|
|
1164
|
+
"url": "https://github.com/trending?l=JCL"
|
|
1165
|
+
},
|
|
1166
|
+
"Jest Snapshot": {
|
|
1167
|
+
"color": "#15c213",
|
|
1168
|
+
"url": "https://github.com/trending?l=Jest-Snapshot"
|
|
1169
|
+
},
|
|
1170
|
+
"JetBrains MPS": {
|
|
1171
|
+
"color": "#21D789",
|
|
1172
|
+
"url": "https://github.com/trending?l=JetBrains-MPS"
|
|
1173
|
+
},
|
|
1174
|
+
"JFlex": {
|
|
1175
|
+
"color": "#DBCA00",
|
|
1176
|
+
"url": "https://github.com/trending?l=JFlex"
|
|
1177
|
+
},
|
|
1178
|
+
"Jinja": {
|
|
1179
|
+
"color": "#a52a22",
|
|
1180
|
+
"url": "https://github.com/trending?l=Jinja"
|
|
1181
|
+
},
|
|
1182
|
+
"Jison": {
|
|
1183
|
+
"color": "#56b3cb",
|
|
1184
|
+
"url": "https://github.com/trending?l=Jison"
|
|
1185
|
+
},
|
|
1186
|
+
"Jison Lex": {
|
|
1187
|
+
"color": "#56b3cb",
|
|
1188
|
+
"url": "https://github.com/trending?l=Jison-Lex"
|
|
1189
|
+
},
|
|
1190
|
+
"Jolie": {
|
|
1191
|
+
"color": "#843179",
|
|
1192
|
+
"url": "https://github.com/trending?l=Jolie"
|
|
1193
|
+
},
|
|
1194
|
+
"jq": {
|
|
1195
|
+
"color": "#c7254e",
|
|
1196
|
+
"url": "https://github.com/trending?l=jq"
|
|
1197
|
+
},
|
|
1198
|
+
"JSON": {
|
|
1199
|
+
"color": "#292929",
|
|
1200
|
+
"url": "https://github.com/trending?l=JSON"
|
|
1201
|
+
},
|
|
1202
|
+
"JSON with Comments": {
|
|
1203
|
+
"color": "#292929",
|
|
1204
|
+
"url": "https://github.com/trending?l=JSON-with-Comments"
|
|
1205
|
+
},
|
|
1206
|
+
"JSON5": {
|
|
1207
|
+
"color": "#267CB9",
|
|
1208
|
+
"url": "https://github.com/trending?l=JSON5"
|
|
1209
|
+
},
|
|
1210
|
+
"JSONiq": {
|
|
1211
|
+
"color": "#40d47e",
|
|
1212
|
+
"url": "https://github.com/trending?l=JSONiq"
|
|
1213
|
+
},
|
|
1214
|
+
"JSONLD": {
|
|
1215
|
+
"color": "#0c479c",
|
|
1216
|
+
"url": "https://github.com/trending?l=JSONLD"
|
|
1217
|
+
},
|
|
1218
|
+
"Jsonnet": {
|
|
1219
|
+
"color": "#0064bd",
|
|
1220
|
+
"url": "https://github.com/trending?l=Jsonnet"
|
|
1221
|
+
},
|
|
1222
|
+
"Julia": {
|
|
1223
|
+
"color": "#a270ba",
|
|
1224
|
+
"url": "https://github.com/trending?l=Julia"
|
|
1225
|
+
},
|
|
1226
|
+
"Julia REPL": {
|
|
1227
|
+
"color": "#a270ba",
|
|
1228
|
+
"url": "https://github.com/trending?l=Julia-REPL"
|
|
1229
|
+
},
|
|
1230
|
+
"Jupyter Notebook": {
|
|
1231
|
+
"color": "#DA5B0B",
|
|
1232
|
+
"url": "https://github.com/trending?l=Jupyter-Notebook"
|
|
1233
|
+
},
|
|
1234
|
+
"Just": {
|
|
1235
|
+
"color": "#384d54",
|
|
1236
|
+
"url": "https://github.com/trending?l=Just"
|
|
1237
|
+
},
|
|
1238
|
+
"Kaitai Struct": {
|
|
1239
|
+
"color": "#773b37",
|
|
1240
|
+
"url": "https://github.com/trending?l=Kaitai-Struct"
|
|
1241
|
+
},
|
|
1242
|
+
"KakouneScript": {
|
|
1243
|
+
"color": "#6f8042",
|
|
1244
|
+
"url": "https://github.com/trending?l=KakouneScript"
|
|
1245
|
+
},
|
|
1246
|
+
"KDL": {
|
|
1247
|
+
"color": "#ffb3b3",
|
|
1248
|
+
"url": "https://github.com/trending?l=KDL"
|
|
1249
|
+
},
|
|
1250
|
+
"KerboScript": {
|
|
1251
|
+
"color": "#41adf0",
|
|
1252
|
+
"url": "https://github.com/trending?l=KerboScript"
|
|
1253
|
+
},
|
|
1254
|
+
"KiCad Layout": {
|
|
1255
|
+
"color": "#2f4aab",
|
|
1256
|
+
"url": "https://github.com/trending?l=KiCad-Layout"
|
|
1257
|
+
},
|
|
1258
|
+
"KiCad Legacy Layout": {
|
|
1259
|
+
"color": "#2f4aab",
|
|
1260
|
+
"url": "https://github.com/trending?l=KiCad-Legacy-Layout"
|
|
1261
|
+
},
|
|
1262
|
+
"KiCad Schematic": {
|
|
1263
|
+
"color": "#2f4aab",
|
|
1264
|
+
"url": "https://github.com/trending?l=KiCad-Schematic"
|
|
1265
|
+
},
|
|
1266
|
+
"Koka": {
|
|
1267
|
+
"color": "#215166",
|
|
1268
|
+
"url": "https://github.com/trending?l=Koka"
|
|
1269
|
+
},
|
|
1270
|
+
"KoLMafia ASH": {
|
|
1271
|
+
"color": "#B9D9B9",
|
|
1272
|
+
"url": "https://github.com/trending?l=KoLMafia-ASH"
|
|
1273
|
+
},
|
|
1274
|
+
"Kotlin": {
|
|
1275
|
+
"color": "#A97BFF",
|
|
1276
|
+
"url": "https://github.com/trending?l=Kotlin"
|
|
1277
|
+
},
|
|
1278
|
+
"KRL": {
|
|
1279
|
+
"color": "#28430A",
|
|
1280
|
+
"url": "https://github.com/trending?l=KRL"
|
|
1281
|
+
},
|
|
1282
|
+
"kvlang": {
|
|
1283
|
+
"color": "#1da6e0",
|
|
1284
|
+
"url": "https://github.com/trending?l=kvlang"
|
|
1285
|
+
},
|
|
1286
|
+
"LabVIEW": {
|
|
1287
|
+
"color": "#fede06",
|
|
1288
|
+
"url": "https://github.com/trending?l=LabVIEW"
|
|
1289
|
+
},
|
|
1290
|
+
"Lark": {
|
|
1291
|
+
"color": "#2980B9",
|
|
1292
|
+
"url": "https://github.com/trending?l=Lark"
|
|
1293
|
+
},
|
|
1294
|
+
"Lasso": {
|
|
1295
|
+
"color": "#999999",
|
|
1296
|
+
"url": "https://github.com/trending?l=Lasso"
|
|
1297
|
+
},
|
|
1298
|
+
"Latte": {
|
|
1299
|
+
"color": "#f2a542",
|
|
1300
|
+
"url": "https://github.com/trending?l=Latte"
|
|
1301
|
+
},
|
|
1302
|
+
"Lean": {
|
|
1303
|
+
"color": null,
|
|
1304
|
+
"url": "https://github.com/trending?l=Lean"
|
|
1305
|
+
},
|
|
1306
|
+
"Lean 4": {
|
|
1307
|
+
"color": null,
|
|
1308
|
+
"url": "https://github.com/trending?l=Lean-4"
|
|
1309
|
+
},
|
|
1310
|
+
"Leo": {
|
|
1311
|
+
"color": "#C4FFC2",
|
|
1312
|
+
"url": "https://github.com/trending?l=Leo"
|
|
1313
|
+
},
|
|
1314
|
+
"Less": {
|
|
1315
|
+
"color": "#1d365d",
|
|
1316
|
+
"url": "https://github.com/trending?l=Less"
|
|
1317
|
+
},
|
|
1318
|
+
"Lex": {
|
|
1319
|
+
"color": "#DBCA00",
|
|
1320
|
+
"url": "https://github.com/trending?l=Lex"
|
|
1321
|
+
},
|
|
1322
|
+
"LFE": {
|
|
1323
|
+
"color": "#4C3023",
|
|
1324
|
+
"url": "https://github.com/trending?l=LFE"
|
|
1325
|
+
},
|
|
1326
|
+
"LigoLANG": {
|
|
1327
|
+
"color": "#0e74ff",
|
|
1328
|
+
"url": "https://github.com/trending?l=LigoLANG"
|
|
1329
|
+
},
|
|
1330
|
+
"LilyPond": {
|
|
1331
|
+
"color": "#9ccc7c",
|
|
1332
|
+
"url": "https://github.com/trending?l=LilyPond"
|
|
1333
|
+
},
|
|
1334
|
+
"Limbo": {
|
|
1335
|
+
"color": null,
|
|
1336
|
+
"url": "https://github.com/trending?l=Limbo"
|
|
1337
|
+
},
|
|
1338
|
+
"Linear Programming": {
|
|
1339
|
+
"color": null,
|
|
1340
|
+
"url": "https://github.com/trending?l=Linear-Programming"
|
|
1341
|
+
},
|
|
1342
|
+
"Linker Script": {
|
|
1343
|
+
"color": null,
|
|
1344
|
+
"url": "https://github.com/trending?l=Linker-Script"
|
|
1345
|
+
},
|
|
1346
|
+
"Liquid": {
|
|
1347
|
+
"color": "#67b8de",
|
|
1348
|
+
"url": "https://github.com/trending?l=Liquid"
|
|
1349
|
+
},
|
|
1350
|
+
"Literate Agda": {
|
|
1351
|
+
"color": "#315665",
|
|
1352
|
+
"url": "https://github.com/trending?l=Literate-Agda"
|
|
1353
|
+
},
|
|
1354
|
+
"Literate CoffeeScript": {
|
|
1355
|
+
"color": "#244776",
|
|
1356
|
+
"url": "https://github.com/trending?l=Literate-CoffeeScript"
|
|
1357
|
+
},
|
|
1358
|
+
"Literate Haskell": {
|
|
1359
|
+
"color": "#5e5086",
|
|
1360
|
+
"url": "https://github.com/trending?l=Literate-Haskell"
|
|
1361
|
+
},
|
|
1362
|
+
"LiveCode Script": {
|
|
1363
|
+
"color": "#0c5ba5",
|
|
1364
|
+
"url": "https://github.com/trending?l=LiveCode-Script"
|
|
1365
|
+
},
|
|
1366
|
+
"LiveScript": {
|
|
1367
|
+
"color": "#499886",
|
|
1368
|
+
"url": "https://github.com/trending?l=LiveScript"
|
|
1369
|
+
},
|
|
1370
|
+
"LLVM": {
|
|
1371
|
+
"color": "#185619",
|
|
1372
|
+
"url": "https://github.com/trending?l=LLVM"
|
|
1373
|
+
},
|
|
1374
|
+
"Logos": {
|
|
1375
|
+
"color": null,
|
|
1376
|
+
"url": "https://github.com/trending?l=Logos"
|
|
1377
|
+
},
|
|
1378
|
+
"Logtalk": {
|
|
1379
|
+
"color": "#295b9a",
|
|
1380
|
+
"url": "https://github.com/trending?l=Logtalk"
|
|
1381
|
+
},
|
|
1382
|
+
"LOLCODE": {
|
|
1383
|
+
"color": "#cc9900",
|
|
1384
|
+
"url": "https://github.com/trending?l=LOLCODE"
|
|
1385
|
+
},
|
|
1386
|
+
"LookML": {
|
|
1387
|
+
"color": "#652B81",
|
|
1388
|
+
"url": "https://github.com/trending?l=LookML"
|
|
1389
|
+
},
|
|
1390
|
+
"LoomScript": {
|
|
1391
|
+
"color": null,
|
|
1392
|
+
"url": "https://github.com/trending?l=LoomScript"
|
|
1393
|
+
},
|
|
1394
|
+
"LSL": {
|
|
1395
|
+
"color": "#3d9970",
|
|
1396
|
+
"url": "https://github.com/trending?l=LSL"
|
|
1397
|
+
},
|
|
1398
|
+
"Lua": {
|
|
1399
|
+
"color": "#000080",
|
|
1400
|
+
"url": "https://github.com/trending?l=Lua"
|
|
1401
|
+
},
|
|
1402
|
+
"Luau": {
|
|
1403
|
+
"color": "#00A2FF",
|
|
1404
|
+
"url": "https://github.com/trending?l=Luau"
|
|
1405
|
+
},
|
|
1406
|
+
"M": {
|
|
1407
|
+
"color": null,
|
|
1408
|
+
"url": "https://github.com/trending?l=M"
|
|
1409
|
+
},
|
|
1410
|
+
"M3U": {
|
|
1411
|
+
"color": "#179C7D",
|
|
1412
|
+
"url": "https://github.com/trending?l=M3U"
|
|
1413
|
+
},
|
|
1414
|
+
"M4": {
|
|
1415
|
+
"color": null,
|
|
1416
|
+
"url": "https://github.com/trending?l=M4"
|
|
1417
|
+
},
|
|
1418
|
+
"M4Sugar": {
|
|
1419
|
+
"color": null,
|
|
1420
|
+
"url": "https://github.com/trending?l=M4Sugar"
|
|
1421
|
+
},
|
|
1422
|
+
"Macaulay2": {
|
|
1423
|
+
"color": "#d8ffff",
|
|
1424
|
+
"url": "https://github.com/trending?l=Macaulay2"
|
|
1425
|
+
},
|
|
1426
|
+
"Makefile": {
|
|
1427
|
+
"color": "#427819",
|
|
1428
|
+
"url": "https://github.com/trending?l=Makefile"
|
|
1429
|
+
},
|
|
1430
|
+
"Mako": {
|
|
1431
|
+
"color": "#7e858d",
|
|
1432
|
+
"url": "https://github.com/trending?l=Mako"
|
|
1433
|
+
},
|
|
1434
|
+
"Markdown": {
|
|
1435
|
+
"color": "#083fa1",
|
|
1436
|
+
"url": "https://github.com/trending?l=Markdown"
|
|
1437
|
+
},
|
|
1438
|
+
"Marko": {
|
|
1439
|
+
"color": "#42bff2",
|
|
1440
|
+
"url": "https://github.com/trending?l=Marko"
|
|
1441
|
+
},
|
|
1442
|
+
"Mask": {
|
|
1443
|
+
"color": "#f97732",
|
|
1444
|
+
"url": "https://github.com/trending?l=Mask"
|
|
1445
|
+
},
|
|
1446
|
+
"Mathematica": {
|
|
1447
|
+
"color": "#dd1100",
|
|
1448
|
+
"url": "https://github.com/trending?l=Mathematica"
|
|
1449
|
+
},
|
|
1450
|
+
"MATLAB": {
|
|
1451
|
+
"color": "#e16737",
|
|
1452
|
+
"url": "https://github.com/trending?l=MATLAB"
|
|
1453
|
+
},
|
|
1454
|
+
"Max": {
|
|
1455
|
+
"color": "#c4a79c",
|
|
1456
|
+
"url": "https://github.com/trending?l=Max"
|
|
1457
|
+
},
|
|
1458
|
+
"MAXScript": {
|
|
1459
|
+
"color": "#00a6a6",
|
|
1460
|
+
"url": "https://github.com/trending?l=MAXScript"
|
|
1461
|
+
},
|
|
1462
|
+
"mcfunction": {
|
|
1463
|
+
"color": "#E22837",
|
|
1464
|
+
"url": "https://github.com/trending?l=mcfunction"
|
|
1465
|
+
},
|
|
1466
|
+
"mdsvex": {
|
|
1467
|
+
"color": "#5f9ea0",
|
|
1468
|
+
"url": "https://github.com/trending?l=mdsvex"
|
|
1469
|
+
},
|
|
1470
|
+
"MDX": {
|
|
1471
|
+
"color": "#fcb32c",
|
|
1472
|
+
"url": "https://github.com/trending?l=MDX"
|
|
1473
|
+
},
|
|
1474
|
+
"Mercury": {
|
|
1475
|
+
"color": "#ff2b2b",
|
|
1476
|
+
"url": "https://github.com/trending?l=Mercury"
|
|
1477
|
+
},
|
|
1478
|
+
"Mermaid": {
|
|
1479
|
+
"color": "#ff3670",
|
|
1480
|
+
"url": "https://github.com/trending?l=Mermaid"
|
|
1481
|
+
},
|
|
1482
|
+
"Meson": {
|
|
1483
|
+
"color": "#007800",
|
|
1484
|
+
"url": "https://github.com/trending?l=Meson"
|
|
1485
|
+
},
|
|
1486
|
+
"Metal": {
|
|
1487
|
+
"color": "#8f14e9",
|
|
1488
|
+
"url": "https://github.com/trending?l=Metal"
|
|
1489
|
+
},
|
|
1490
|
+
"MiniD": {
|
|
1491
|
+
"color": null,
|
|
1492
|
+
"url": "https://github.com/trending?l=MiniD"
|
|
1493
|
+
},
|
|
1494
|
+
"MiniYAML": {
|
|
1495
|
+
"color": "#ff1111",
|
|
1496
|
+
"url": "https://github.com/trending?l=MiniYAML"
|
|
1497
|
+
},
|
|
1498
|
+
"MiniZinc": {
|
|
1499
|
+
"color": "#06a9e6",
|
|
1500
|
+
"url": "https://github.com/trending?l=MiniZinc"
|
|
1501
|
+
},
|
|
1502
|
+
"Mint": {
|
|
1503
|
+
"color": "#02b046",
|
|
1504
|
+
"url": "https://github.com/trending?l=Mint"
|
|
1505
|
+
},
|
|
1506
|
+
"Mirah": {
|
|
1507
|
+
"color": "#c7a938",
|
|
1508
|
+
"url": "https://github.com/trending?l=Mirah"
|
|
1509
|
+
},
|
|
1510
|
+
"mIRC Script": {
|
|
1511
|
+
"color": "#3d57c3",
|
|
1512
|
+
"url": "https://github.com/trending?l=mIRC-Script"
|
|
1513
|
+
},
|
|
1514
|
+
"MLIR": {
|
|
1515
|
+
"color": "#5EC8DB",
|
|
1516
|
+
"url": "https://github.com/trending?l=MLIR"
|
|
1517
|
+
},
|
|
1518
|
+
"Modelica": {
|
|
1519
|
+
"color": "#de1d31",
|
|
1520
|
+
"url": "https://github.com/trending?l=Modelica"
|
|
1521
|
+
},
|
|
1522
|
+
"Modula-2": {
|
|
1523
|
+
"color": "#10253f",
|
|
1524
|
+
"url": "https://github.com/trending?l=Modula-2"
|
|
1525
|
+
},
|
|
1526
|
+
"Modula-3": {
|
|
1527
|
+
"color": "#223388",
|
|
1528
|
+
"url": "https://github.com/trending?l=Modula-3"
|
|
1529
|
+
},
|
|
1530
|
+
"Module Management System": {
|
|
1531
|
+
"color": null,
|
|
1532
|
+
"url": "https://github.com/trending?l=Module-Management-System"
|
|
1533
|
+
},
|
|
1534
|
+
"Mojo": {
|
|
1535
|
+
"color": "#ff4c1f",
|
|
1536
|
+
"url": "https://github.com/trending?l=Mojo"
|
|
1537
|
+
},
|
|
1538
|
+
"Monkey": {
|
|
1539
|
+
"color": null,
|
|
1540
|
+
"url": "https://github.com/trending?l=Monkey"
|
|
1541
|
+
},
|
|
1542
|
+
"Monkey C": {
|
|
1543
|
+
"color": "#8D6747",
|
|
1544
|
+
"url": "https://github.com/trending?l=Monkey-C"
|
|
1545
|
+
},
|
|
1546
|
+
"Moocode": {
|
|
1547
|
+
"color": null,
|
|
1548
|
+
"url": "https://github.com/trending?l=Moocode"
|
|
1549
|
+
},
|
|
1550
|
+
"MoonBit": {
|
|
1551
|
+
"color": "#b92381",
|
|
1552
|
+
"url": "https://github.com/trending?l=MoonBit"
|
|
1553
|
+
},
|
|
1554
|
+
"MoonScript": {
|
|
1555
|
+
"color": "#ff4585",
|
|
1556
|
+
"url": "https://github.com/trending?l=MoonScript"
|
|
1557
|
+
},
|
|
1558
|
+
"Motoko": {
|
|
1559
|
+
"color": "#fbb03b",
|
|
1560
|
+
"url": "https://github.com/trending?l=Motoko"
|
|
1561
|
+
},
|
|
1562
|
+
"Motorola 68K Assembly": {
|
|
1563
|
+
"color": "#005daa",
|
|
1564
|
+
"url": "https://github.com/trending?l=Motorola-68K-Assembly"
|
|
1565
|
+
},
|
|
1566
|
+
"Move": {
|
|
1567
|
+
"color": "#4a137a",
|
|
1568
|
+
"url": "https://github.com/trending?l=Move"
|
|
1569
|
+
},
|
|
1570
|
+
"MQL4": {
|
|
1571
|
+
"color": "#62A8D6",
|
|
1572
|
+
"url": "https://github.com/trending?l=MQL4"
|
|
1573
|
+
},
|
|
1574
|
+
"MQL5": {
|
|
1575
|
+
"color": "#4A76B8",
|
|
1576
|
+
"url": "https://github.com/trending?l=MQL5"
|
|
1577
|
+
},
|
|
1578
|
+
"MTML": {
|
|
1579
|
+
"color": "#b7e1f4",
|
|
1580
|
+
"url": "https://github.com/trending?l=MTML"
|
|
1581
|
+
},
|
|
1582
|
+
"MUF": {
|
|
1583
|
+
"color": null,
|
|
1584
|
+
"url": "https://github.com/trending?l=MUF"
|
|
1585
|
+
},
|
|
1586
|
+
"mupad": {
|
|
1587
|
+
"color": "#244963",
|
|
1588
|
+
"url": "https://github.com/trending?l=mupad"
|
|
1589
|
+
},
|
|
1590
|
+
"Mustache": {
|
|
1591
|
+
"color": "#724b3b",
|
|
1592
|
+
"url": "https://github.com/trending?l=Mustache"
|
|
1593
|
+
},
|
|
1594
|
+
"Myghty": {
|
|
1595
|
+
"color": null,
|
|
1596
|
+
"url": "https://github.com/trending?l=Myghty"
|
|
1597
|
+
},
|
|
1598
|
+
"nanorc": {
|
|
1599
|
+
"color": "#2d004d",
|
|
1600
|
+
"url": "https://github.com/trending?l=nanorc"
|
|
1601
|
+
},
|
|
1602
|
+
"Nasal": {
|
|
1603
|
+
"color": "#1d2c4e",
|
|
1604
|
+
"url": "https://github.com/trending?l=Nasal"
|
|
1605
|
+
},
|
|
1606
|
+
"NASL": {
|
|
1607
|
+
"color": null,
|
|
1608
|
+
"url": "https://github.com/trending?l=NASL"
|
|
1609
|
+
},
|
|
1610
|
+
"NCL": {
|
|
1611
|
+
"color": "#28431f",
|
|
1612
|
+
"url": "https://github.com/trending?l=NCL"
|
|
1613
|
+
},
|
|
1614
|
+
"Nearley": {
|
|
1615
|
+
"color": "#990000",
|
|
1616
|
+
"url": "https://github.com/trending?l=Nearley"
|
|
1617
|
+
},
|
|
1618
|
+
"Nemerle": {
|
|
1619
|
+
"color": "#3d3c6e",
|
|
1620
|
+
"url": "https://github.com/trending?l=Nemerle"
|
|
1621
|
+
},
|
|
1622
|
+
"nesC": {
|
|
1623
|
+
"color": "#94B0C7",
|
|
1624
|
+
"url": "https://github.com/trending?l=nesC"
|
|
1625
|
+
},
|
|
1626
|
+
"NetLinx": {
|
|
1627
|
+
"color": "#0aa0ff",
|
|
1628
|
+
"url": "https://github.com/trending?l=NetLinx"
|
|
1629
|
+
},
|
|
1630
|
+
"NetLinx+ERB": {
|
|
1631
|
+
"color": "#747faa",
|
|
1632
|
+
"url": "https://github.com/trending?l=NetLinx+ERB"
|
|
1633
|
+
},
|
|
1634
|
+
"NetLogo": {
|
|
1635
|
+
"color": "#ff6375",
|
|
1636
|
+
"url": "https://github.com/trending?l=NetLogo"
|
|
1637
|
+
},
|
|
1638
|
+
"NewLisp": {
|
|
1639
|
+
"color": "#87AED7",
|
|
1640
|
+
"url": "https://github.com/trending?l=NewLisp"
|
|
1641
|
+
},
|
|
1642
|
+
"Nextflow": {
|
|
1643
|
+
"color": "#3ac486",
|
|
1644
|
+
"url": "https://github.com/trending?l=Nextflow"
|
|
1645
|
+
},
|
|
1646
|
+
"Nginx": {
|
|
1647
|
+
"color": "#009639",
|
|
1648
|
+
"url": "https://github.com/trending?l=Nginx"
|
|
1649
|
+
},
|
|
1650
|
+
"Nickel": {
|
|
1651
|
+
"color": "#E0C3FC",
|
|
1652
|
+
"url": "https://github.com/trending?l=Nickel"
|
|
1653
|
+
},
|
|
1654
|
+
"Nim": {
|
|
1655
|
+
"color": "#ffc200",
|
|
1656
|
+
"url": "https://github.com/trending?l=Nim"
|
|
1657
|
+
},
|
|
1658
|
+
"Nit": {
|
|
1659
|
+
"color": "#009917",
|
|
1660
|
+
"url": "https://github.com/trending?l=Nit"
|
|
1661
|
+
},
|
|
1662
|
+
"Nix": {
|
|
1663
|
+
"color": "#7e7eff",
|
|
1664
|
+
"url": "https://github.com/trending?l=Nix"
|
|
1665
|
+
},
|
|
1666
|
+
"NMODL": {
|
|
1667
|
+
"color": "#00356B",
|
|
1668
|
+
"url": "https://github.com/trending?l=NMODL"
|
|
1669
|
+
},
|
|
1670
|
+
"Noir": {
|
|
1671
|
+
"color": "#2f1f49",
|
|
1672
|
+
"url": "https://github.com/trending?l=Noir"
|
|
1673
|
+
},
|
|
1674
|
+
"NPM Config": {
|
|
1675
|
+
"color": "#cb3837",
|
|
1676
|
+
"url": "https://github.com/trending?l=NPM-Config"
|
|
1677
|
+
},
|
|
1678
|
+
"NSIS": {
|
|
1679
|
+
"color": null,
|
|
1680
|
+
"url": "https://github.com/trending?l=NSIS"
|
|
1681
|
+
},
|
|
1682
|
+
"Nu": {
|
|
1683
|
+
"color": "#c9df40",
|
|
1684
|
+
"url": "https://github.com/trending?l=Nu"
|
|
1685
|
+
},
|
|
1686
|
+
"NumPy": {
|
|
1687
|
+
"color": "#9C8AF9",
|
|
1688
|
+
"url": "https://github.com/trending?l=NumPy"
|
|
1689
|
+
},
|
|
1690
|
+
"Nunjucks": {
|
|
1691
|
+
"color": "#3d8137",
|
|
1692
|
+
"url": "https://github.com/trending?l=Nunjucks"
|
|
1693
|
+
},
|
|
1694
|
+
"Nushell": {
|
|
1695
|
+
"color": "#4E9906",
|
|
1696
|
+
"url": "https://github.com/trending?l=Nushell"
|
|
1697
|
+
},
|
|
1698
|
+
"NWScript": {
|
|
1699
|
+
"color": "#111522",
|
|
1700
|
+
"url": "https://github.com/trending?l=NWScript"
|
|
1701
|
+
},
|
|
1702
|
+
"OASv2-json": {
|
|
1703
|
+
"color": "#85ea2d",
|
|
1704
|
+
"url": "https://github.com/trending?l=OASv2-json"
|
|
1705
|
+
},
|
|
1706
|
+
"OASv2-yaml": {
|
|
1707
|
+
"color": "#85ea2d",
|
|
1708
|
+
"url": "https://github.com/trending?l=OASv2-yaml"
|
|
1709
|
+
},
|
|
1710
|
+
"OASv3-json": {
|
|
1711
|
+
"color": "#85ea2d",
|
|
1712
|
+
"url": "https://github.com/trending?l=OASv3-json"
|
|
1713
|
+
},
|
|
1714
|
+
"OASv3-yaml": {
|
|
1715
|
+
"color": "#85ea2d",
|
|
1716
|
+
"url": "https://github.com/trending?l=OASv3-yaml"
|
|
1717
|
+
},
|
|
1718
|
+
"Oberon": {
|
|
1719
|
+
"color": null,
|
|
1720
|
+
"url": "https://github.com/trending?l=Oberon"
|
|
1721
|
+
},
|
|
1722
|
+
"Objective-C": {
|
|
1723
|
+
"color": "#438eff",
|
|
1724
|
+
"url": "https://github.com/trending?l=Objective-C"
|
|
1725
|
+
},
|
|
1726
|
+
"Objective-C++": {
|
|
1727
|
+
"color": "#6866fb",
|
|
1728
|
+
"url": "https://github.com/trending?l=Objective-C++"
|
|
1729
|
+
},
|
|
1730
|
+
"Objective-J": {
|
|
1731
|
+
"color": "#ff0c5a",
|
|
1732
|
+
"url": "https://github.com/trending?l=Objective-J"
|
|
1733
|
+
},
|
|
1734
|
+
"ObjectScript": {
|
|
1735
|
+
"color": "#424893",
|
|
1736
|
+
"url": "https://github.com/trending?l=ObjectScript"
|
|
1737
|
+
},
|
|
1738
|
+
"OCaml": {
|
|
1739
|
+
"color": "#ef7a08",
|
|
1740
|
+
"url": "https://github.com/trending?l=OCaml"
|
|
1741
|
+
},
|
|
1742
|
+
"Odin": {
|
|
1743
|
+
"color": "#60AFFE",
|
|
1744
|
+
"url": "https://github.com/trending?l=Odin"
|
|
1745
|
+
},
|
|
1746
|
+
"Omgrofl": {
|
|
1747
|
+
"color": "#cabbff",
|
|
1748
|
+
"url": "https://github.com/trending?l=Omgrofl"
|
|
1749
|
+
},
|
|
1750
|
+
"OMNeT++ MSG": {
|
|
1751
|
+
"color": "#a0e0a0",
|
|
1752
|
+
"url": "https://github.com/trending?l=OMNeT++-MSG"
|
|
1753
|
+
},
|
|
1754
|
+
"OMNeT++ NED": {
|
|
1755
|
+
"color": "#08607c",
|
|
1756
|
+
"url": "https://github.com/trending?l=OMNeT++-NED"
|
|
1757
|
+
},
|
|
1758
|
+
"ooc": {
|
|
1759
|
+
"color": "#b0b77e",
|
|
1760
|
+
"url": "https://github.com/trending?l=ooc"
|
|
1761
|
+
},
|
|
1762
|
+
"Opa": {
|
|
1763
|
+
"color": null,
|
|
1764
|
+
"url": "https://github.com/trending?l=Opa"
|
|
1765
|
+
},
|
|
1766
|
+
"Opal": {
|
|
1767
|
+
"color": "#f7ede0",
|
|
1768
|
+
"url": "https://github.com/trending?l=Opal"
|
|
1769
|
+
},
|
|
1770
|
+
"Open Policy Agent": {
|
|
1771
|
+
"color": "#7d9199",
|
|
1772
|
+
"url": "https://github.com/trending?l=Open-Policy-Agent"
|
|
1773
|
+
},
|
|
1774
|
+
"OpenAPI Specification v2": {
|
|
1775
|
+
"color": "#85ea2d",
|
|
1776
|
+
"url": "https://github.com/trending?l=OpenAPI-Specification-v2"
|
|
1777
|
+
},
|
|
1778
|
+
"OpenAPI Specification v3": {
|
|
1779
|
+
"color": "#85ea2d",
|
|
1780
|
+
"url": "https://github.com/trending?l=OpenAPI-Specification-v3"
|
|
1781
|
+
},
|
|
1782
|
+
"OpenCL": {
|
|
1783
|
+
"color": "#ed2e2d",
|
|
1784
|
+
"url": "https://github.com/trending?l=OpenCL"
|
|
1785
|
+
},
|
|
1786
|
+
"OpenEdge ABL": {
|
|
1787
|
+
"color": "#5ce600",
|
|
1788
|
+
"url": "https://github.com/trending?l=OpenEdge-ABL"
|
|
1789
|
+
},
|
|
1790
|
+
"OpenQASM": {
|
|
1791
|
+
"color": "#AA70FF",
|
|
1792
|
+
"url": "https://github.com/trending?l=OpenQASM"
|
|
1793
|
+
},
|
|
1794
|
+
"OpenRC runscript": {
|
|
1795
|
+
"color": null,
|
|
1796
|
+
"url": "https://github.com/trending?l=OpenRC-runscript"
|
|
1797
|
+
},
|
|
1798
|
+
"OpenSCAD": {
|
|
1799
|
+
"color": "#e5cd45",
|
|
1800
|
+
"url": "https://github.com/trending?l=OpenSCAD"
|
|
1801
|
+
},
|
|
1802
|
+
"Option List": {
|
|
1803
|
+
"color": "#476732",
|
|
1804
|
+
"url": "https://github.com/trending?l=Option-List"
|
|
1805
|
+
},
|
|
1806
|
+
"Org": {
|
|
1807
|
+
"color": "#77aa99",
|
|
1808
|
+
"url": "https://github.com/trending?l=Org"
|
|
1809
|
+
},
|
|
1810
|
+
"OverpassQL": {
|
|
1811
|
+
"color": "#cce2aa",
|
|
1812
|
+
"url": "https://github.com/trending?l=OverpassQL"
|
|
1813
|
+
},
|
|
1814
|
+
"Ox": {
|
|
1815
|
+
"color": null,
|
|
1816
|
+
"url": "https://github.com/trending?l=Ox"
|
|
1817
|
+
},
|
|
1818
|
+
"Oxygene": {
|
|
1819
|
+
"color": "#cdd0e3",
|
|
1820
|
+
"url": "https://github.com/trending?l=Oxygene"
|
|
1821
|
+
},
|
|
1822
|
+
"Oz": {
|
|
1823
|
+
"color": "#fab738",
|
|
1824
|
+
"url": "https://github.com/trending?l=Oz"
|
|
1825
|
+
},
|
|
1826
|
+
"P4": {
|
|
1827
|
+
"color": "#7055b5",
|
|
1828
|
+
"url": "https://github.com/trending?l=P4"
|
|
1829
|
+
},
|
|
1830
|
+
"Pact": {
|
|
1831
|
+
"color": "#F7A8B8",
|
|
1832
|
+
"url": "https://github.com/trending?l=Pact"
|
|
1833
|
+
},
|
|
1834
|
+
"Pan": {
|
|
1835
|
+
"color": "#cc0000",
|
|
1836
|
+
"url": "https://github.com/trending?l=Pan"
|
|
1837
|
+
},
|
|
1838
|
+
"Papyrus": {
|
|
1839
|
+
"color": "#6600cc",
|
|
1840
|
+
"url": "https://github.com/trending?l=Papyrus"
|
|
1841
|
+
},
|
|
1842
|
+
"Parrot": {
|
|
1843
|
+
"color": "#f3ca0a",
|
|
1844
|
+
"url": "https://github.com/trending?l=Parrot"
|
|
1845
|
+
},
|
|
1846
|
+
"Parrot Assembly": {
|
|
1847
|
+
"color": null,
|
|
1848
|
+
"url": "https://github.com/trending?l=Parrot-Assembly"
|
|
1849
|
+
},
|
|
1850
|
+
"Parrot Internal Representation": {
|
|
1851
|
+
"color": null,
|
|
1852
|
+
"url": "https://github.com/trending?l=Parrot-Internal-Representation"
|
|
1853
|
+
},
|
|
1854
|
+
"Pascal": {
|
|
1855
|
+
"color": "#E3F171",
|
|
1856
|
+
"url": "https://github.com/trending?l=Pascal"
|
|
1857
|
+
},
|
|
1858
|
+
"Pawn": {
|
|
1859
|
+
"color": "#dbb284",
|
|
1860
|
+
"url": "https://github.com/trending?l=Pawn"
|
|
1861
|
+
},
|
|
1862
|
+
"PDDL": {
|
|
1863
|
+
"color": "#0d00ff",
|
|
1864
|
+
"url": "https://github.com/trending?l=PDDL"
|
|
1865
|
+
},
|
|
1866
|
+
"PEG.js": {
|
|
1867
|
+
"color": "#234d6b",
|
|
1868
|
+
"url": "https://github.com/trending?l=PEG.js"
|
|
1869
|
+
},
|
|
1870
|
+
"Pep8": {
|
|
1871
|
+
"color": "#C76F5B",
|
|
1872
|
+
"url": "https://github.com/trending?l=Pep8"
|
|
1873
|
+
},
|
|
1874
|
+
"Perl": {
|
|
1875
|
+
"color": "#0298c3",
|
|
1876
|
+
"url": "https://github.com/trending?l=Perl"
|
|
1877
|
+
},
|
|
1878
|
+
"PHP": {
|
|
1879
|
+
"color": "#4F5D95",
|
|
1880
|
+
"url": "https://github.com/trending?l=PHP"
|
|
1881
|
+
},
|
|
1882
|
+
"PicoLisp": {
|
|
1883
|
+
"color": "#6067af",
|
|
1884
|
+
"url": "https://github.com/trending?l=PicoLisp"
|
|
1885
|
+
},
|
|
1886
|
+
"PigLatin": {
|
|
1887
|
+
"color": "#fcd7de",
|
|
1888
|
+
"url": "https://github.com/trending?l=PigLatin"
|
|
1889
|
+
},
|
|
1890
|
+
"Pike": {
|
|
1891
|
+
"color": "#005390",
|
|
1892
|
+
"url": "https://github.com/trending?l=Pike"
|
|
1893
|
+
},
|
|
1894
|
+
"Pip Requirements": {
|
|
1895
|
+
"color": "#FFD343",
|
|
1896
|
+
"url": "https://github.com/trending?l=Pip-Requirements"
|
|
1897
|
+
},
|
|
1898
|
+
"Pkl": {
|
|
1899
|
+
"color": "#6b9543",
|
|
1900
|
+
"url": "https://github.com/trending?l=Pkl"
|
|
1901
|
+
},
|
|
1902
|
+
"PlantUML": {
|
|
1903
|
+
"color": "#fbbd16",
|
|
1904
|
+
"url": "https://github.com/trending?l=PlantUML"
|
|
1905
|
+
},
|
|
1906
|
+
"PLpgSQL": {
|
|
1907
|
+
"color": "#336790",
|
|
1908
|
+
"url": "https://github.com/trending?l=PLpgSQL"
|
|
1909
|
+
},
|
|
1910
|
+
"PLSQL": {
|
|
1911
|
+
"color": "#dad8d8",
|
|
1912
|
+
"url": "https://github.com/trending?l=PLSQL"
|
|
1913
|
+
},
|
|
1914
|
+
"PogoScript": {
|
|
1915
|
+
"color": "#d80074",
|
|
1916
|
+
"url": "https://github.com/trending?l=PogoScript"
|
|
1917
|
+
},
|
|
1918
|
+
"Polar": {
|
|
1919
|
+
"color": "#ae81ff",
|
|
1920
|
+
"url": "https://github.com/trending?l=Polar"
|
|
1921
|
+
},
|
|
1922
|
+
"Pony": {
|
|
1923
|
+
"color": null,
|
|
1924
|
+
"url": "https://github.com/trending?l=Pony"
|
|
1925
|
+
},
|
|
1926
|
+
"Portugol": {
|
|
1927
|
+
"color": "#f8bd00",
|
|
1928
|
+
"url": "https://github.com/trending?l=Portugol"
|
|
1929
|
+
},
|
|
1930
|
+
"PostCSS": {
|
|
1931
|
+
"color": "#dc3a0c",
|
|
1932
|
+
"url": "https://github.com/trending?l=PostCSS"
|
|
1933
|
+
},
|
|
1934
|
+
"PostScript": {
|
|
1935
|
+
"color": "#da291c",
|
|
1936
|
+
"url": "https://github.com/trending?l=PostScript"
|
|
1937
|
+
},
|
|
1938
|
+
"POV-Ray SDL": {
|
|
1939
|
+
"color": "#6bac65",
|
|
1940
|
+
"url": "https://github.com/trending?l=POV-Ray-SDL"
|
|
1941
|
+
},
|
|
1942
|
+
"PowerBuilder": {
|
|
1943
|
+
"color": "#8f0f8d",
|
|
1944
|
+
"url": "https://github.com/trending?l=PowerBuilder"
|
|
1945
|
+
},
|
|
1946
|
+
"PowerShell": {
|
|
1947
|
+
"color": "#012456",
|
|
1948
|
+
"url": "https://github.com/trending?l=PowerShell"
|
|
1949
|
+
},
|
|
1950
|
+
"Praat": {
|
|
1951
|
+
"color": "#c8506d",
|
|
1952
|
+
"url": "https://github.com/trending?l=Praat"
|
|
1953
|
+
},
|
|
1954
|
+
"Prisma": {
|
|
1955
|
+
"color": "#0c344b",
|
|
1956
|
+
"url": "https://github.com/trending?l=Prisma"
|
|
1957
|
+
},
|
|
1958
|
+
"Processing": {
|
|
1959
|
+
"color": "#0096D8",
|
|
1960
|
+
"url": "https://github.com/trending?l=Processing"
|
|
1961
|
+
},
|
|
1962
|
+
"Procfile": {
|
|
1963
|
+
"color": "#3B2F63",
|
|
1964
|
+
"url": "https://github.com/trending?l=Procfile"
|
|
1965
|
+
},
|
|
1966
|
+
"Prolog": {
|
|
1967
|
+
"color": "#74283c",
|
|
1968
|
+
"url": "https://github.com/trending?l=Prolog"
|
|
1969
|
+
},
|
|
1970
|
+
"Promela": {
|
|
1971
|
+
"color": "#de0000",
|
|
1972
|
+
"url": "https://github.com/trending?l=Promela"
|
|
1973
|
+
},
|
|
1974
|
+
"Propeller Spin": {
|
|
1975
|
+
"color": "#7fa2a7",
|
|
1976
|
+
"url": "https://github.com/trending?l=Propeller-Spin"
|
|
1977
|
+
},
|
|
1978
|
+
"Pug": {
|
|
1979
|
+
"color": "#a86454",
|
|
1980
|
+
"url": "https://github.com/trending?l=Pug"
|
|
1981
|
+
},
|
|
1982
|
+
"Puppet": {
|
|
1983
|
+
"color": "#302B6D",
|
|
1984
|
+
"url": "https://github.com/trending?l=Puppet"
|
|
1985
|
+
},
|
|
1986
|
+
"PureBasic": {
|
|
1987
|
+
"color": "#5a6986",
|
|
1988
|
+
"url": "https://github.com/trending?l=PureBasic"
|
|
1989
|
+
},
|
|
1990
|
+
"PureScript": {
|
|
1991
|
+
"color": "#1D222D",
|
|
1992
|
+
"url": "https://github.com/trending?l=PureScript"
|
|
1993
|
+
},
|
|
1994
|
+
"Pyret": {
|
|
1995
|
+
"color": "#ee1e10",
|
|
1996
|
+
"url": "https://github.com/trending?l=Pyret"
|
|
1997
|
+
},
|
|
1998
|
+
"Python": {
|
|
1999
|
+
"color": "#3572A5",
|
|
2000
|
+
"url": "https://github.com/trending?l=Python"
|
|
2001
|
+
},
|
|
2002
|
+
"Python console": {
|
|
2003
|
+
"color": "#3572A5",
|
|
2004
|
+
"url": "https://github.com/trending?l=Python-console"
|
|
2005
|
+
},
|
|
2006
|
+
"Python traceback": {
|
|
2007
|
+
"color": "#3572A5",
|
|
2008
|
+
"url": "https://github.com/trending?l=Python-traceback"
|
|
2009
|
+
},
|
|
2010
|
+
"q": {
|
|
2011
|
+
"color": "#0040cd",
|
|
2012
|
+
"url": "https://github.com/trending?l=q"
|
|
2013
|
+
},
|
|
2014
|
+
"Q#": {
|
|
2015
|
+
"color": "#fed659",
|
|
2016
|
+
"url": "https://github.com/trending?l=Qsharp"
|
|
2017
|
+
},
|
|
2018
|
+
"QMake": {
|
|
2019
|
+
"color": null,
|
|
2020
|
+
"url": "https://github.com/trending?l=QMake"
|
|
2021
|
+
},
|
|
2022
|
+
"QML": {
|
|
2023
|
+
"color": "#44a51c",
|
|
2024
|
+
"url": "https://github.com/trending?l=QML"
|
|
2025
|
+
},
|
|
2026
|
+
"Qt Script": {
|
|
2027
|
+
"color": "#00b841",
|
|
2028
|
+
"url": "https://github.com/trending?l=Qt-Script"
|
|
2029
|
+
},
|
|
2030
|
+
"Quake": {
|
|
2031
|
+
"color": "#882233",
|
|
2032
|
+
"url": "https://github.com/trending?l=Quake"
|
|
2033
|
+
},
|
|
2034
|
+
"QuakeC": {
|
|
2035
|
+
"color": "#975777",
|
|
2036
|
+
"url": "https://github.com/trending?l=QuakeC"
|
|
2037
|
+
},
|
|
2038
|
+
"QuickBASIC": {
|
|
2039
|
+
"color": "#008080",
|
|
2040
|
+
"url": "https://github.com/trending?l=QuickBASIC"
|
|
2041
|
+
},
|
|
2042
|
+
"R": {
|
|
2043
|
+
"color": "#198CE7",
|
|
2044
|
+
"url": "https://github.com/trending?l=R"
|
|
2045
|
+
},
|
|
2046
|
+
"Racket": {
|
|
2047
|
+
"color": "#3c5caa",
|
|
2048
|
+
"url": "https://github.com/trending?l=Racket"
|
|
2049
|
+
},
|
|
2050
|
+
"Ragel": {
|
|
2051
|
+
"color": "#9d5200",
|
|
2052
|
+
"url": "https://github.com/trending?l=Ragel"
|
|
2053
|
+
},
|
|
2054
|
+
"Raku": {
|
|
2055
|
+
"color": "#0000fb",
|
|
2056
|
+
"url": "https://github.com/trending?l=Raku"
|
|
2057
|
+
},
|
|
2058
|
+
"RAML": {
|
|
2059
|
+
"color": "#77d9fb",
|
|
2060
|
+
"url": "https://github.com/trending?l=RAML"
|
|
2061
|
+
},
|
|
2062
|
+
"Rascal": {
|
|
2063
|
+
"color": "#fffaa0",
|
|
2064
|
+
"url": "https://github.com/trending?l=Rascal"
|
|
2065
|
+
},
|
|
2066
|
+
"RBS": {
|
|
2067
|
+
"color": "#701516",
|
|
2068
|
+
"url": "https://github.com/trending?l=RBS"
|
|
2069
|
+
},
|
|
2070
|
+
"RDoc": {
|
|
2071
|
+
"color": "#701516",
|
|
2072
|
+
"url": "https://github.com/trending?l=RDoc"
|
|
2073
|
+
},
|
|
2074
|
+
"REALbasic": {
|
|
2075
|
+
"color": null,
|
|
2076
|
+
"url": "https://github.com/trending?l=REALbasic"
|
|
2077
|
+
},
|
|
2078
|
+
"Reason": {
|
|
2079
|
+
"color": "#ff5847",
|
|
2080
|
+
"url": "https://github.com/trending?l=Reason"
|
|
2081
|
+
},
|
|
2082
|
+
"ReasonLIGO": {
|
|
2083
|
+
"color": "#ff5847",
|
|
2084
|
+
"url": "https://github.com/trending?l=ReasonLIGO"
|
|
2085
|
+
},
|
|
2086
|
+
"Rebol": {
|
|
2087
|
+
"color": "#358a5b",
|
|
2088
|
+
"url": "https://github.com/trending?l=Rebol"
|
|
2089
|
+
},
|
|
2090
|
+
"Record Jar": {
|
|
2091
|
+
"color": "#0673ba",
|
|
2092
|
+
"url": "https://github.com/trending?l=Record-Jar"
|
|
2093
|
+
},
|
|
2094
|
+
"Red": {
|
|
2095
|
+
"color": "#f50000",
|
|
2096
|
+
"url": "https://github.com/trending?l=Red"
|
|
2097
|
+
},
|
|
2098
|
+
"Redcode": {
|
|
2099
|
+
"color": null,
|
|
2100
|
+
"url": "https://github.com/trending?l=Redcode"
|
|
2101
|
+
},
|
|
2102
|
+
"Regular Expression": {
|
|
2103
|
+
"color": "#009a00",
|
|
2104
|
+
"url": "https://github.com/trending?l=Regular-Expression"
|
|
2105
|
+
},
|
|
2106
|
+
"Ren'Py": {
|
|
2107
|
+
"color": "#ff7f7f",
|
|
2108
|
+
"url": "https://github.com/trending?l=Ren'Py"
|
|
2109
|
+
},
|
|
2110
|
+
"RenderScript": {
|
|
2111
|
+
"color": null,
|
|
2112
|
+
"url": "https://github.com/trending?l=RenderScript"
|
|
2113
|
+
},
|
|
2114
|
+
"ReScript": {
|
|
2115
|
+
"color": "#ed5051",
|
|
2116
|
+
"url": "https://github.com/trending?l=ReScript"
|
|
2117
|
+
},
|
|
2118
|
+
"reStructuredText": {
|
|
2119
|
+
"color": "#141414",
|
|
2120
|
+
"url": "https://github.com/trending?l=reStructuredText"
|
|
2121
|
+
},
|
|
2122
|
+
"REXX": {
|
|
2123
|
+
"color": "#d90e09",
|
|
2124
|
+
"url": "https://github.com/trending?l=REXX"
|
|
2125
|
+
},
|
|
2126
|
+
"Rez": {
|
|
2127
|
+
"color": "#FFDAB3",
|
|
2128
|
+
"url": "https://github.com/trending?l=Rez"
|
|
2129
|
+
},
|
|
2130
|
+
"Ring": {
|
|
2131
|
+
"color": "#2D54CB",
|
|
2132
|
+
"url": "https://github.com/trending?l=Ring"
|
|
2133
|
+
},
|
|
2134
|
+
"Riot": {
|
|
2135
|
+
"color": "#A71E49",
|
|
2136
|
+
"url": "https://github.com/trending?l=Riot"
|
|
2137
|
+
},
|
|
2138
|
+
"RMarkdown": {
|
|
2139
|
+
"color": "#198ce7",
|
|
2140
|
+
"url": "https://github.com/trending?l=RMarkdown"
|
|
2141
|
+
},
|
|
2142
|
+
"RobotFramework": {
|
|
2143
|
+
"color": "#00c0b5",
|
|
2144
|
+
"url": "https://github.com/trending?l=RobotFramework"
|
|
2145
|
+
},
|
|
2146
|
+
"Roc": {
|
|
2147
|
+
"color": "#7c38f5",
|
|
2148
|
+
"url": "https://github.com/trending?l=Roc"
|
|
2149
|
+
},
|
|
2150
|
+
"Rocq Prover": {
|
|
2151
|
+
"color": "#d0b68c",
|
|
2152
|
+
"url": "https://github.com/trending?l=Rocq-Prover"
|
|
2153
|
+
},
|
|
2154
|
+
"Roff": {
|
|
2155
|
+
"color": "#ecdebe",
|
|
2156
|
+
"url": "https://github.com/trending?l=Roff"
|
|
2157
|
+
},
|
|
2158
|
+
"Roff Manpage": {
|
|
2159
|
+
"color": "#ecdebe",
|
|
2160
|
+
"url": "https://github.com/trending?l=Roff-Manpage"
|
|
2161
|
+
},
|
|
2162
|
+
"RON": {
|
|
2163
|
+
"color": "#a62c00",
|
|
2164
|
+
"url": "https://github.com/trending?l=RON"
|
|
2165
|
+
},
|
|
2166
|
+
"ROS Interface": {
|
|
2167
|
+
"color": "#22314e",
|
|
2168
|
+
"url": "https://github.com/trending?l=ROS-Interface"
|
|
2169
|
+
},
|
|
2170
|
+
"Rouge": {
|
|
2171
|
+
"color": "#cc0088",
|
|
2172
|
+
"url": "https://github.com/trending?l=Rouge"
|
|
2173
|
+
},
|
|
2174
|
+
"RouterOS Script": {
|
|
2175
|
+
"color": "#DE3941",
|
|
2176
|
+
"url": "https://github.com/trending?l=RouterOS-Script"
|
|
2177
|
+
},
|
|
2178
|
+
"RPC": {
|
|
2179
|
+
"color": null,
|
|
2180
|
+
"url": "https://github.com/trending?l=RPC"
|
|
2181
|
+
},
|
|
2182
|
+
"RPGLE": {
|
|
2183
|
+
"color": "#2BDE21",
|
|
2184
|
+
"url": "https://github.com/trending?l=RPGLE"
|
|
2185
|
+
},
|
|
2186
|
+
"Ruby": {
|
|
2187
|
+
"color": "#701516",
|
|
2188
|
+
"url": "https://github.com/trending?l=Ruby"
|
|
2189
|
+
},
|
|
2190
|
+
"RUNOFF": {
|
|
2191
|
+
"color": "#665a4e",
|
|
2192
|
+
"url": "https://github.com/trending?l=RUNOFF"
|
|
2193
|
+
},
|
|
2194
|
+
"Rust": {
|
|
2195
|
+
"color": "#dea584",
|
|
2196
|
+
"url": "https://github.com/trending?l=Rust"
|
|
2197
|
+
},
|
|
2198
|
+
"Sage": {
|
|
2199
|
+
"color": null,
|
|
2200
|
+
"url": "https://github.com/trending?l=Sage"
|
|
2201
|
+
},
|
|
2202
|
+
"Sail": {
|
|
2203
|
+
"color": "#259dd5",
|
|
2204
|
+
"url": "https://github.com/trending?l=Sail"
|
|
2205
|
+
},
|
|
2206
|
+
"SaltStack": {
|
|
2207
|
+
"color": "#646464",
|
|
2208
|
+
"url": "https://github.com/trending?l=SaltStack"
|
|
2209
|
+
},
|
|
2210
|
+
"SAS": {
|
|
2211
|
+
"color": "#B34936",
|
|
2212
|
+
"url": "https://github.com/trending?l=SAS"
|
|
2213
|
+
},
|
|
2214
|
+
"Sass": {
|
|
2215
|
+
"color": "#a53b70",
|
|
2216
|
+
"url": "https://github.com/trending?l=Sass"
|
|
2217
|
+
},
|
|
2218
|
+
"Scala": {
|
|
2219
|
+
"color": "#c22d40",
|
|
2220
|
+
"url": "https://github.com/trending?l=Scala"
|
|
2221
|
+
},
|
|
2222
|
+
"Scaml": {
|
|
2223
|
+
"color": "#bd181a",
|
|
2224
|
+
"url": "https://github.com/trending?l=Scaml"
|
|
2225
|
+
},
|
|
2226
|
+
"Scenic": {
|
|
2227
|
+
"color": "#fdc700",
|
|
2228
|
+
"url": "https://github.com/trending?l=Scenic"
|
|
2229
|
+
},
|
|
2230
|
+
"Scheme": {
|
|
2231
|
+
"color": "#1e4aec",
|
|
2232
|
+
"url": "https://github.com/trending?l=Scheme"
|
|
2233
|
+
},
|
|
2234
|
+
"Scilab": {
|
|
2235
|
+
"color": "#ca0f21",
|
|
2236
|
+
"url": "https://github.com/trending?l=Scilab"
|
|
2237
|
+
},
|
|
2238
|
+
"SCSS": {
|
|
2239
|
+
"color": "#c6538c",
|
|
2240
|
+
"url": "https://github.com/trending?l=SCSS"
|
|
2241
|
+
},
|
|
2242
|
+
"sed": {
|
|
2243
|
+
"color": "#64b970",
|
|
2244
|
+
"url": "https://github.com/trending?l=sed"
|
|
2245
|
+
},
|
|
2246
|
+
"Self": {
|
|
2247
|
+
"color": "#0579aa",
|
|
2248
|
+
"url": "https://github.com/trending?l=Self"
|
|
2249
|
+
},
|
|
2250
|
+
"ShaderLab": {
|
|
2251
|
+
"color": "#222c37",
|
|
2252
|
+
"url": "https://github.com/trending?l=ShaderLab"
|
|
2253
|
+
},
|
|
2254
|
+
"Shell": {
|
|
2255
|
+
"color": "#89e051",
|
|
2256
|
+
"url": "https://github.com/trending?l=Shell"
|
|
2257
|
+
},
|
|
2258
|
+
"ShellCheck Config": {
|
|
2259
|
+
"color": "#cecfcb",
|
|
2260
|
+
"url": "https://github.com/trending?l=ShellCheck-Config"
|
|
2261
|
+
},
|
|
2262
|
+
"ShellSession": {
|
|
2263
|
+
"color": null,
|
|
2264
|
+
"url": "https://github.com/trending?l=ShellSession"
|
|
2265
|
+
},
|
|
2266
|
+
"Shen": {
|
|
2267
|
+
"color": "#120F14",
|
|
2268
|
+
"url": "https://github.com/trending?l=Shen"
|
|
2269
|
+
},
|
|
2270
|
+
"Sieve": {
|
|
2271
|
+
"color": null,
|
|
2272
|
+
"url": "https://github.com/trending?l=Sieve"
|
|
2273
|
+
},
|
|
2274
|
+
"Simple File Verification": {
|
|
2275
|
+
"color": "#C9BFED",
|
|
2276
|
+
"url": "https://github.com/trending?l=Simple-File-Verification"
|
|
2277
|
+
},
|
|
2278
|
+
"Singularity": {
|
|
2279
|
+
"color": "#64E6AD",
|
|
2280
|
+
"url": "https://github.com/trending?l=Singularity"
|
|
2281
|
+
},
|
|
2282
|
+
"Slang": {
|
|
2283
|
+
"color": "#1fbec9",
|
|
2284
|
+
"url": "https://github.com/trending?l=Slang"
|
|
2285
|
+
},
|
|
2286
|
+
"Slash": {
|
|
2287
|
+
"color": "#007eff",
|
|
2288
|
+
"url": "https://github.com/trending?l=Slash"
|
|
2289
|
+
},
|
|
2290
|
+
"Slice": {
|
|
2291
|
+
"color": "#003fa2",
|
|
2292
|
+
"url": "https://github.com/trending?l=Slice"
|
|
2293
|
+
},
|
|
2294
|
+
"Slim": {
|
|
2295
|
+
"color": "#2b2b2b",
|
|
2296
|
+
"url": "https://github.com/trending?l=Slim"
|
|
2297
|
+
},
|
|
2298
|
+
"Slint": {
|
|
2299
|
+
"color": "#2379F4",
|
|
2300
|
+
"url": "https://github.com/trending?l=Slint"
|
|
2301
|
+
},
|
|
2302
|
+
"Smali": {
|
|
2303
|
+
"color": null,
|
|
2304
|
+
"url": "https://github.com/trending?l=Smali"
|
|
2305
|
+
},
|
|
2306
|
+
"Smalltalk": {
|
|
2307
|
+
"color": "#596706",
|
|
2308
|
+
"url": "https://github.com/trending?l=Smalltalk"
|
|
2309
|
+
},
|
|
2310
|
+
"Smarty": {
|
|
2311
|
+
"color": "#f0c040",
|
|
2312
|
+
"url": "https://github.com/trending?l=Smarty"
|
|
2313
|
+
},
|
|
2314
|
+
"Smithy": {
|
|
2315
|
+
"color": "#c44536",
|
|
2316
|
+
"url": "https://github.com/trending?l=Smithy"
|
|
2317
|
+
},
|
|
2318
|
+
"SmPL": {
|
|
2319
|
+
"color": "#c94949",
|
|
2320
|
+
"url": "https://github.com/trending?l=SmPL"
|
|
2321
|
+
},
|
|
2322
|
+
"SMT": {
|
|
2323
|
+
"color": null,
|
|
2324
|
+
"url": "https://github.com/trending?l=SMT"
|
|
2325
|
+
},
|
|
2326
|
+
"Snakemake": {
|
|
2327
|
+
"color": "#419179",
|
|
2328
|
+
"url": "https://github.com/trending?l=Snakemake"
|
|
2329
|
+
},
|
|
2330
|
+
"Solidity": {
|
|
2331
|
+
"color": "#AA6746",
|
|
2332
|
+
"url": "https://github.com/trending?l=Solidity"
|
|
2333
|
+
},
|
|
2334
|
+
"SourcePawn": {
|
|
2335
|
+
"color": "#f69e1d",
|
|
2336
|
+
"url": "https://github.com/trending?l=SourcePawn"
|
|
2337
|
+
},
|
|
2338
|
+
"SPARQL": {
|
|
2339
|
+
"color": "#0C4597",
|
|
2340
|
+
"url": "https://github.com/trending?l=SPARQL"
|
|
2341
|
+
},
|
|
2342
|
+
"SQF": {
|
|
2343
|
+
"color": "#3F3F3F",
|
|
2344
|
+
"url": "https://github.com/trending?l=SQF"
|
|
2345
|
+
},
|
|
2346
|
+
"SQL": {
|
|
2347
|
+
"color": "#e38c00",
|
|
2348
|
+
"url": "https://github.com/trending?l=SQL"
|
|
2349
|
+
},
|
|
2350
|
+
"SQLPL": {
|
|
2351
|
+
"color": "#e38c00",
|
|
2352
|
+
"url": "https://github.com/trending?l=SQLPL"
|
|
2353
|
+
},
|
|
2354
|
+
"Squirrel": {
|
|
2355
|
+
"color": "#800000",
|
|
2356
|
+
"url": "https://github.com/trending?l=Squirrel"
|
|
2357
|
+
},
|
|
2358
|
+
"SRecode Template": {
|
|
2359
|
+
"color": "#348a34",
|
|
2360
|
+
"url": "https://github.com/trending?l=SRecode-Template"
|
|
2361
|
+
},
|
|
2362
|
+
"Stan": {
|
|
2363
|
+
"color": "#b2011d",
|
|
2364
|
+
"url": "https://github.com/trending?l=Stan"
|
|
2365
|
+
},
|
|
2366
|
+
"Standard ML": {
|
|
2367
|
+
"color": "#dc566d",
|
|
2368
|
+
"url": "https://github.com/trending?l=Standard-ML"
|
|
2369
|
+
},
|
|
2370
|
+
"Starlark": {
|
|
2371
|
+
"color": "#76d275",
|
|
2372
|
+
"url": "https://github.com/trending?l=Starlark"
|
|
2373
|
+
},
|
|
2374
|
+
"Stata": {
|
|
2375
|
+
"color": "#1a5f91",
|
|
2376
|
+
"url": "https://github.com/trending?l=Stata"
|
|
2377
|
+
},
|
|
2378
|
+
"STL": {
|
|
2379
|
+
"color": "#373b5e",
|
|
2380
|
+
"url": "https://github.com/trending?l=STL"
|
|
2381
|
+
},
|
|
2382
|
+
"StringTemplate": {
|
|
2383
|
+
"color": "#3fb34f",
|
|
2384
|
+
"url": "https://github.com/trending?l=StringTemplate"
|
|
2385
|
+
},
|
|
2386
|
+
"Stylus": {
|
|
2387
|
+
"color": "#ff6347",
|
|
2388
|
+
"url": "https://github.com/trending?l=Stylus"
|
|
2389
|
+
},
|
|
2390
|
+
"SubRip Text": {
|
|
2391
|
+
"color": "#9e0101",
|
|
2392
|
+
"url": "https://github.com/trending?l=SubRip-Text"
|
|
2393
|
+
},
|
|
2394
|
+
"SugarSS": {
|
|
2395
|
+
"color": "#2fcc9f",
|
|
2396
|
+
"url": "https://github.com/trending?l=SugarSS"
|
|
2397
|
+
},
|
|
2398
|
+
"SuperCollider": {
|
|
2399
|
+
"color": "#46390b",
|
|
2400
|
+
"url": "https://github.com/trending?l=SuperCollider"
|
|
2401
|
+
},
|
|
2402
|
+
"Survex data": {
|
|
2403
|
+
"color": "#ffcc99",
|
|
2404
|
+
"url": "https://github.com/trending?l=Survex-data"
|
|
2405
|
+
},
|
|
2406
|
+
"Svelte": {
|
|
2407
|
+
"color": "#ff3e00",
|
|
2408
|
+
"url": "https://github.com/trending?l=Svelte"
|
|
2409
|
+
},
|
|
2410
|
+
"SVG": {
|
|
2411
|
+
"color": "#ff9900",
|
|
2412
|
+
"url": "https://github.com/trending?l=SVG"
|
|
2413
|
+
},
|
|
2414
|
+
"Sway": {
|
|
2415
|
+
"color": "#00F58C",
|
|
2416
|
+
"url": "https://github.com/trending?l=Sway"
|
|
2417
|
+
},
|
|
2418
|
+
"Sweave": {
|
|
2419
|
+
"color": "#198ce7",
|
|
2420
|
+
"url": "https://github.com/trending?l=Sweave"
|
|
2421
|
+
},
|
|
2422
|
+
"Swift": {
|
|
2423
|
+
"color": "#F05138",
|
|
2424
|
+
"url": "https://github.com/trending?l=Swift"
|
|
2425
|
+
},
|
|
2426
|
+
"SWIG": {
|
|
2427
|
+
"color": null,
|
|
2428
|
+
"url": "https://github.com/trending?l=SWIG"
|
|
2429
|
+
},
|
|
2430
|
+
"SystemVerilog": {
|
|
2431
|
+
"color": "#DAE1C2",
|
|
2432
|
+
"url": "https://github.com/trending?l=SystemVerilog"
|
|
2433
|
+
},
|
|
2434
|
+
"Tact": {
|
|
2435
|
+
"color": "#48b5ff",
|
|
2436
|
+
"url": "https://github.com/trending?l=Tact"
|
|
2437
|
+
},
|
|
2438
|
+
"Talon": {
|
|
2439
|
+
"color": "#333333",
|
|
2440
|
+
"url": "https://github.com/trending?l=Talon"
|
|
2441
|
+
},
|
|
2442
|
+
"Tcl": {
|
|
2443
|
+
"color": "#e4cc98",
|
|
2444
|
+
"url": "https://github.com/trending?l=Tcl"
|
|
2445
|
+
},
|
|
2446
|
+
"Tcsh": {
|
|
2447
|
+
"color": null,
|
|
2448
|
+
"url": "https://github.com/trending?l=Tcsh"
|
|
2449
|
+
},
|
|
2450
|
+
"templ": {
|
|
2451
|
+
"color": "#66D0DD",
|
|
2452
|
+
"url": "https://github.com/trending?l=templ"
|
|
2453
|
+
},
|
|
2454
|
+
"Terra": {
|
|
2455
|
+
"color": "#00004c",
|
|
2456
|
+
"url": "https://github.com/trending?l=Terra"
|
|
2457
|
+
},
|
|
2458
|
+
"Terraform Template": {
|
|
2459
|
+
"color": "#7b42bb",
|
|
2460
|
+
"url": "https://github.com/trending?l=Terraform-Template"
|
|
2461
|
+
},
|
|
2462
|
+
"TeX": {
|
|
2463
|
+
"color": "#3D6117",
|
|
2464
|
+
"url": "https://github.com/trending?l=TeX"
|
|
2465
|
+
},
|
|
2466
|
+
"TextGrid": {
|
|
2467
|
+
"color": "#c8506d",
|
|
2468
|
+
"url": "https://github.com/trending?l=TextGrid"
|
|
2469
|
+
},
|
|
2470
|
+
"Textile": {
|
|
2471
|
+
"color": "#ffe7ac",
|
|
2472
|
+
"url": "https://github.com/trending?l=Textile"
|
|
2473
|
+
},
|
|
2474
|
+
"TextMate Properties": {
|
|
2475
|
+
"color": "#df66e4",
|
|
2476
|
+
"url": "https://github.com/trending?l=TextMate-Properties"
|
|
2477
|
+
},
|
|
2478
|
+
"Thrift": {
|
|
2479
|
+
"color": "#D12127",
|
|
2480
|
+
"url": "https://github.com/trending?l=Thrift"
|
|
2481
|
+
},
|
|
2482
|
+
"TI Program": {
|
|
2483
|
+
"color": "#A0AA87",
|
|
2484
|
+
"url": "https://github.com/trending?l=TI-Program"
|
|
2485
|
+
},
|
|
2486
|
+
"TL-Verilog": {
|
|
2487
|
+
"color": "#C40023",
|
|
2488
|
+
"url": "https://github.com/trending?l=TL-Verilog"
|
|
2489
|
+
},
|
|
2490
|
+
"TLA": {
|
|
2491
|
+
"color": "#4b0079",
|
|
2492
|
+
"url": "https://github.com/trending?l=TLA"
|
|
2493
|
+
},
|
|
2494
|
+
"Toit": {
|
|
2495
|
+
"color": "#c2c9fb",
|
|
2496
|
+
"url": "https://github.com/trending?l=Toit"
|
|
2497
|
+
},
|
|
2498
|
+
"TOML": {
|
|
2499
|
+
"color": "#9c4221",
|
|
2500
|
+
"url": "https://github.com/trending?l=TOML"
|
|
2501
|
+
},
|
|
2502
|
+
"Tor Config": {
|
|
2503
|
+
"color": "#59316b",
|
|
2504
|
+
"url": "https://github.com/trending?l=Tor-Config"
|
|
2505
|
+
},
|
|
2506
|
+
"Tree-sitter Query": {
|
|
2507
|
+
"color": "#8ea64c",
|
|
2508
|
+
"url": "https://github.com/trending?l=Tree-sitter-Query"
|
|
2509
|
+
},
|
|
2510
|
+
"TSQL": {
|
|
2511
|
+
"color": "#e38c00",
|
|
2512
|
+
"url": "https://github.com/trending?l=TSQL"
|
|
2513
|
+
},
|
|
2514
|
+
"TSV": {
|
|
2515
|
+
"color": "#237346",
|
|
2516
|
+
"url": "https://github.com/trending?l=TSV"
|
|
2517
|
+
},
|
|
2518
|
+
"TSX": {
|
|
2519
|
+
"color": "#3178c6",
|
|
2520
|
+
"url": "https://github.com/trending?l=TSX"
|
|
2521
|
+
},
|
|
2522
|
+
"Turing": {
|
|
2523
|
+
"color": "#cf142b",
|
|
2524
|
+
"url": "https://github.com/trending?l=Turing"
|
|
2525
|
+
},
|
|
2526
|
+
"Twig": {
|
|
2527
|
+
"color": "#c1d026",
|
|
2528
|
+
"url": "https://github.com/trending?l=Twig"
|
|
2529
|
+
},
|
|
2530
|
+
"TXL": {
|
|
2531
|
+
"color": "#0178b8",
|
|
2532
|
+
"url": "https://github.com/trending?l=TXL"
|
|
2533
|
+
},
|
|
2534
|
+
"TypeScript": {
|
|
2535
|
+
"color": "#3178c6",
|
|
2536
|
+
"url": "https://github.com/trending?l=TypeScript"
|
|
2537
|
+
},
|
|
2538
|
+
"TypeSpec": {
|
|
2539
|
+
"color": "#4A3665",
|
|
2540
|
+
"url": "https://github.com/trending?l=TypeSpec"
|
|
2541
|
+
},
|
|
2542
|
+
"Typst": {
|
|
2543
|
+
"color": "#239dad",
|
|
2544
|
+
"url": "https://github.com/trending?l=Typst"
|
|
2545
|
+
},
|
|
2546
|
+
"Unified Parallel C": {
|
|
2547
|
+
"color": "#4e3617",
|
|
2548
|
+
"url": "https://github.com/trending?l=Unified-Parallel-C"
|
|
2549
|
+
},
|
|
2550
|
+
"Unity3D Asset": {
|
|
2551
|
+
"color": "#222c37",
|
|
2552
|
+
"url": "https://github.com/trending?l=Unity3D-Asset"
|
|
2553
|
+
},
|
|
2554
|
+
"Unix Assembly": {
|
|
2555
|
+
"color": null,
|
|
2556
|
+
"url": "https://github.com/trending?l=Unix-Assembly"
|
|
2557
|
+
},
|
|
2558
|
+
"Uno": {
|
|
2559
|
+
"color": "#9933cc",
|
|
2560
|
+
"url": "https://github.com/trending?l=Uno"
|
|
2561
|
+
},
|
|
2562
|
+
"UnrealScript": {
|
|
2563
|
+
"color": "#a54c4d",
|
|
2564
|
+
"url": "https://github.com/trending?l=UnrealScript"
|
|
2565
|
+
},
|
|
2566
|
+
"Untyped Plutus Core": {
|
|
2567
|
+
"color": "#36adbd",
|
|
2568
|
+
"url": "https://github.com/trending?l=Untyped-Plutus-Core"
|
|
2569
|
+
},
|
|
2570
|
+
"UrWeb": {
|
|
2571
|
+
"color": "#ccccee",
|
|
2572
|
+
"url": "https://github.com/trending?l=UrWeb"
|
|
2573
|
+
},
|
|
2574
|
+
"V": {
|
|
2575
|
+
"color": "#4f87c4",
|
|
2576
|
+
"url": "https://github.com/trending?l=V"
|
|
2577
|
+
},
|
|
2578
|
+
"Vala": {
|
|
2579
|
+
"color": "#a56de2",
|
|
2580
|
+
"url": "https://github.com/trending?l=Vala"
|
|
2581
|
+
},
|
|
2582
|
+
"Valve Data Format": {
|
|
2583
|
+
"color": "#f26025",
|
|
2584
|
+
"url": "https://github.com/trending?l=Valve-Data-Format"
|
|
2585
|
+
},
|
|
2586
|
+
"VBA": {
|
|
2587
|
+
"color": "#867db1",
|
|
2588
|
+
"url": "https://github.com/trending?l=VBA"
|
|
2589
|
+
},
|
|
2590
|
+
"VBScript": {
|
|
2591
|
+
"color": "#15dcdc",
|
|
2592
|
+
"url": "https://github.com/trending?l=VBScript"
|
|
2593
|
+
},
|
|
2594
|
+
"vCard": {
|
|
2595
|
+
"color": "#ee2647",
|
|
2596
|
+
"url": "https://github.com/trending?l=vCard"
|
|
2597
|
+
},
|
|
2598
|
+
"VCL": {
|
|
2599
|
+
"color": "#148AA8",
|
|
2600
|
+
"url": "https://github.com/trending?l=VCL"
|
|
2601
|
+
},
|
|
2602
|
+
"Velocity Template Language": {
|
|
2603
|
+
"color": "#507cff",
|
|
2604
|
+
"url": "https://github.com/trending?l=Velocity-Template-Language"
|
|
2605
|
+
},
|
|
2606
|
+
"Vento": {
|
|
2607
|
+
"color": "#ff0080",
|
|
2608
|
+
"url": "https://github.com/trending?l=Vento"
|
|
2609
|
+
},
|
|
2610
|
+
"Verilog": {
|
|
2611
|
+
"color": "#b2b7f8",
|
|
2612
|
+
"url": "https://github.com/trending?l=Verilog"
|
|
2613
|
+
},
|
|
2614
|
+
"VHDL": {
|
|
2615
|
+
"color": "#adb2cb",
|
|
2616
|
+
"url": "https://github.com/trending?l=VHDL"
|
|
2617
|
+
},
|
|
2618
|
+
"Vim Help File": {
|
|
2619
|
+
"color": "#199f4b",
|
|
2620
|
+
"url": "https://github.com/trending?l=Vim-Help-File"
|
|
2621
|
+
},
|
|
2622
|
+
"Vim Script": {
|
|
2623
|
+
"color": "#199f4b",
|
|
2624
|
+
"url": "https://github.com/trending?l=Vim-Script"
|
|
2625
|
+
},
|
|
2626
|
+
"Vim Snippet": {
|
|
2627
|
+
"color": "#199f4b",
|
|
2628
|
+
"url": "https://github.com/trending?l=Vim-Snippet"
|
|
2629
|
+
},
|
|
2630
|
+
"Visual Basic .NET": {
|
|
2631
|
+
"color": "#945db7",
|
|
2632
|
+
"url": "https://github.com/trending?l=Visual-Basic-.NET"
|
|
2633
|
+
},
|
|
2634
|
+
"Visual Basic 6.0": {
|
|
2635
|
+
"color": "#2c6353",
|
|
2636
|
+
"url": "https://github.com/trending?l=Visual-Basic-6.0"
|
|
2637
|
+
},
|
|
2638
|
+
"Volt": {
|
|
2639
|
+
"color": "#1F1F1F",
|
|
2640
|
+
"url": "https://github.com/trending?l=Volt"
|
|
2641
|
+
},
|
|
2642
|
+
"Vue": {
|
|
2643
|
+
"color": "#41b883",
|
|
2644
|
+
"url": "https://github.com/trending?l=Vue"
|
|
2645
|
+
},
|
|
2646
|
+
"Vyper": {
|
|
2647
|
+
"color": "#9F4CF2",
|
|
2648
|
+
"url": "https://github.com/trending?l=Vyper"
|
|
2649
|
+
},
|
|
2650
|
+
"WDL": {
|
|
2651
|
+
"color": "#42f1f4",
|
|
2652
|
+
"url": "https://github.com/trending?l=WDL"
|
|
2653
|
+
},
|
|
2654
|
+
"Web Ontology Language": {
|
|
2655
|
+
"color": "#5b70bd",
|
|
2656
|
+
"url": "https://github.com/trending?l=Web-Ontology-Language"
|
|
2657
|
+
},
|
|
2658
|
+
"WebAssembly": {
|
|
2659
|
+
"color": "#04133b",
|
|
2660
|
+
"url": "https://github.com/trending?l=WebAssembly"
|
|
2661
|
+
},
|
|
2662
|
+
"WebAssembly Interface Type": {
|
|
2663
|
+
"color": "#6250e7",
|
|
2664
|
+
"url": "https://github.com/trending?l=WebAssembly-Interface-Type"
|
|
2665
|
+
},
|
|
2666
|
+
"WebIDL": {
|
|
2667
|
+
"color": null,
|
|
2668
|
+
"url": "https://github.com/trending?l=WebIDL"
|
|
2669
|
+
},
|
|
2670
|
+
"WGSL": {
|
|
2671
|
+
"color": "#1a5e9a",
|
|
2672
|
+
"url": "https://github.com/trending?l=WGSL"
|
|
2673
|
+
},
|
|
2674
|
+
"Whiley": {
|
|
2675
|
+
"color": "#d5c397",
|
|
2676
|
+
"url": "https://github.com/trending?l=Whiley"
|
|
2677
|
+
},
|
|
2678
|
+
"Wikitext": {
|
|
2679
|
+
"color": "#fc5757",
|
|
2680
|
+
"url": "https://github.com/trending?l=Wikitext"
|
|
2681
|
+
},
|
|
2682
|
+
"Windows Registry Entries": {
|
|
2683
|
+
"color": "#52d5ff",
|
|
2684
|
+
"url": "https://github.com/trending?l=Windows-Registry-Entries"
|
|
2685
|
+
},
|
|
2686
|
+
"wisp": {
|
|
2687
|
+
"color": "#7582D1",
|
|
2688
|
+
"url": "https://github.com/trending?l=wisp"
|
|
2689
|
+
},
|
|
2690
|
+
"Witcher Script": {
|
|
2691
|
+
"color": "#ff0000",
|
|
2692
|
+
"url": "https://github.com/trending?l=Witcher-Script"
|
|
2693
|
+
},
|
|
2694
|
+
"Wollok": {
|
|
2695
|
+
"color": "#a23738",
|
|
2696
|
+
"url": "https://github.com/trending?l=Wollok"
|
|
2697
|
+
},
|
|
2698
|
+
"World of Warcraft Addon Data": {
|
|
2699
|
+
"color": "#f7e43f",
|
|
2700
|
+
"url": "https://github.com/trending?l=World-of-Warcraft-Addon-Data"
|
|
2701
|
+
},
|
|
2702
|
+
"Wren": {
|
|
2703
|
+
"color": "#383838",
|
|
2704
|
+
"url": "https://github.com/trending?l=Wren"
|
|
2705
|
+
},
|
|
2706
|
+
"X10": {
|
|
2707
|
+
"color": "#4B6BEF",
|
|
2708
|
+
"url": "https://github.com/trending?l=X10"
|
|
2709
|
+
},
|
|
2710
|
+
"xBase": {
|
|
2711
|
+
"color": "#403a40",
|
|
2712
|
+
"url": "https://github.com/trending?l=xBase"
|
|
2713
|
+
},
|
|
2714
|
+
"XC": {
|
|
2715
|
+
"color": "#99DA07",
|
|
2716
|
+
"url": "https://github.com/trending?l=XC"
|
|
2717
|
+
},
|
|
2718
|
+
"Xmake": {
|
|
2719
|
+
"color": "#22a079",
|
|
2720
|
+
"url": "https://github.com/trending?l=Xmake"
|
|
2721
|
+
},
|
|
2722
|
+
"XML": {
|
|
2723
|
+
"color": "#0060ac",
|
|
2724
|
+
"url": "https://github.com/trending?l=XML"
|
|
2725
|
+
},
|
|
2726
|
+
"XML Property List": {
|
|
2727
|
+
"color": "#0060ac",
|
|
2728
|
+
"url": "https://github.com/trending?l=XML-Property-List"
|
|
2729
|
+
},
|
|
2730
|
+
"Xojo": {
|
|
2731
|
+
"color": "#81bd41",
|
|
2732
|
+
"url": "https://github.com/trending?l=Xojo"
|
|
2733
|
+
},
|
|
2734
|
+
"Xonsh": {
|
|
2735
|
+
"color": "#285EEF",
|
|
2736
|
+
"url": "https://github.com/trending?l=Xonsh"
|
|
2737
|
+
},
|
|
2738
|
+
"XProc": {
|
|
2739
|
+
"color": null,
|
|
2740
|
+
"url": "https://github.com/trending?l=XProc"
|
|
2741
|
+
},
|
|
2742
|
+
"XQuery": {
|
|
2743
|
+
"color": "#5232e7",
|
|
2744
|
+
"url": "https://github.com/trending?l=XQuery"
|
|
2745
|
+
},
|
|
2746
|
+
"XS": {
|
|
2747
|
+
"color": null,
|
|
2748
|
+
"url": "https://github.com/trending?l=XS"
|
|
2749
|
+
},
|
|
2750
|
+
"XSLT": {
|
|
2751
|
+
"color": "#EB8CEB",
|
|
2752
|
+
"url": "https://github.com/trending?l=XSLT"
|
|
2753
|
+
},
|
|
2754
|
+
"Xtend": {
|
|
2755
|
+
"color": "#24255d",
|
|
2756
|
+
"url": "https://github.com/trending?l=Xtend"
|
|
2757
|
+
},
|
|
2758
|
+
"Yacc": {
|
|
2759
|
+
"color": "#4B6C4B",
|
|
2760
|
+
"url": "https://github.com/trending?l=Yacc"
|
|
2761
|
+
},
|
|
2762
|
+
"YAML": {
|
|
2763
|
+
"color": "#cb171e",
|
|
2764
|
+
"url": "https://github.com/trending?l=YAML"
|
|
2765
|
+
},
|
|
2766
|
+
"YARA": {
|
|
2767
|
+
"color": "#220000",
|
|
2768
|
+
"url": "https://github.com/trending?l=YARA"
|
|
2769
|
+
},
|
|
2770
|
+
"YASnippet": {
|
|
2771
|
+
"color": "#32AB90",
|
|
2772
|
+
"url": "https://github.com/trending?l=YASnippet"
|
|
2773
|
+
},
|
|
2774
|
+
"Yul": {
|
|
2775
|
+
"color": "#794932",
|
|
2776
|
+
"url": "https://github.com/trending?l=Yul"
|
|
2777
|
+
},
|
|
2778
|
+
"ZAP": {
|
|
2779
|
+
"color": "#0d665e",
|
|
2780
|
+
"url": "https://github.com/trending?l=ZAP"
|
|
2781
|
+
},
|
|
2782
|
+
"Zeek": {
|
|
2783
|
+
"color": null,
|
|
2784
|
+
"url": "https://github.com/trending?l=Zeek"
|
|
2785
|
+
},
|
|
2786
|
+
"ZenScript": {
|
|
2787
|
+
"color": "#00BCD1",
|
|
2788
|
+
"url": "https://github.com/trending?l=ZenScript"
|
|
2789
|
+
},
|
|
2790
|
+
"Zephir": {
|
|
2791
|
+
"color": "#118f9e",
|
|
2792
|
+
"url": "https://github.com/trending?l=Zephir"
|
|
2793
|
+
},
|
|
2794
|
+
"Zig": {
|
|
2795
|
+
"color": "#ec915c",
|
|
2796
|
+
"url": "https://github.com/trending?l=Zig"
|
|
2797
|
+
},
|
|
2798
|
+
"ZIL": {
|
|
2799
|
+
"color": "#dc75e5",
|
|
2800
|
+
"url": "https://github.com/trending?l=ZIL"
|
|
2801
|
+
},
|
|
2802
|
+
"Zimpl": {
|
|
2803
|
+
"color": "#d67711",
|
|
2804
|
+
"url": "https://github.com/trending?l=Zimpl"
|
|
2805
|
+
},
|
|
2806
|
+
"Zmodel": {
|
|
2807
|
+
"color": "#ff7100",
|
|
2808
|
+
"url": "https://github.com/trending?l=Zmodel"
|
|
2809
|
+
}
|
|
2810
|
+
}
|