instruction stringclasses 40
values | input stringlengths 19 186 | output stringlengths 200 8k | tags listlengths 1 7 |
|---|---|---|---|
Код на html | EbookFoundation/free-programming-books / _includes/head-custom.html | <!-- start custom head snippets, customize with your own _includes/head-custom.html file -->
<!-- Setup Google Analytics -->
<!-- You can set your favicon here -->
<link rel="shortcut icon" type="image/x-icon" href="{{ '/favicon.ico' | relative_url }}">
<!-- end custom head snippets -->
🤖 | [
"html"
] |
Код на css | vinta/awesome-python / website/static/style.css | *, *::before, *::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
:root {
color-scheme: light;
--font-display: "Cormorant Garamond", Georgia, serif;
--font-body: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
--shell-max: 84rem;
--shell-pad: clamp(1.25rem, 3vw, 2.5rem);
--bg-page: oklch(... | [
"css"
] |
OSINT утилита на html | vinta/awesome-python / website/templates/base.html | <!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>{% block title %}Awesome Python{% endblock %}</title>
<meta
name="description"
content="{% block description %}An opinionated list of Python framew... | [
"html",
"osint"
] |
Код на html | vinta/awesome-python / website/templates/index.html | {% extends "base.html" %}
{% block header %}
<header class="hero">
<div class="hero-sheen" aria-hidden="true"></div>
<div class="hero-noise" aria-hidden="true"></div>
<div class="hero-shell">
<nav class="hero-topbar" aria-label="Site">
<span class="hero-brand-mini">Awesome Python</span>
<div clas... | [
"html"
] |
SQL запрос | Significant-Gravitas/AutoGPT / autogpt_platform/analytics/queries/auth_activities.sql | -- =============================================================
-- View: analytics.auth_activities
-- Looker source alias: ds49 | Charts: 1
-- =============================================================
-- DESCRIPTION
-- Tracks authentication events (login, logout, SSO, password
-- reset, etc.) from Supabase's... | [
"sql"
] |
SQL запрос | Significant-Gravitas/AutoGPT / autogpt_platform/analytics/queries/graph_execution.sql | -- =============================================================
-- View: analytics.graph_execution
-- Looker source alias: ds16 | Charts: 21
-- =============================================================
-- DESCRIPTION
-- One row per agent graph execution (last 90 days).
-- Unpacks the JSONB stats column into ... | [
"node",
"sql"
] |
SQL запрос | Significant-Gravitas/AutoGPT / autogpt_platform/analytics/queries/node_block_execution.sql | -- =============================================================
-- View: analytics.node_block_execution
-- Looker source alias: ds14 | Charts: 11
-- =============================================================
-- DESCRIPTION
-- One row per node (block) execution (last 90 days).
-- Unpacks stats JSONB and joins ... | [
"node",
"sql"
] |
SQL запрос | Significant-Gravitas/AutoGPT / autogpt_platform/analytics/queries/retention_agent.sql | -- =============================================================
-- View: analytics.retention_agent
-- Looker source alias: ds35 | Charts: 2
-- =============================================================
-- DESCRIPTION
-- Weekly cohort retention broken down per individual agent.
-- Cohort = week of a user's fir... | [
"sql"
] |
SQL запрос | Significant-Gravitas/AutoGPT / autogpt_platform/analytics/queries/retention_execution_daily.sql | -- =============================================================
-- View: analytics.retention_execution_daily
-- Looker source alias: ds111 | Charts: 1
-- =============================================================
-- DESCRIPTION
-- Daily cohort retention based on agent executions.
-- Cohort anchor = day of use... | [
"sql"
] |
SQL запрос | Significant-Gravitas/AutoGPT / autogpt_platform/analytics/queries/retention_execution_weekly.sql | -- =============================================================
-- View: analytics.retention_execution_weekly
-- Looker source alias: ds92 | Charts: 2
-- =============================================================
-- DESCRIPTION
-- Weekly cohort retention based on agent executions.
-- Cohort anchor = week of u... | [
"sql"
] |
SQL запрос | Significant-Gravitas/AutoGPT / autogpt_platform/analytics/queries/retention_login_daily.sql | -- =============================================================
-- View: analytics.retention_login_daily
-- Looker source alias: ds112 | Charts: 1
-- =============================================================
-- DESCRIPTION
-- Daily cohort retention based on login sessions.
-- Same logic as retention_login_we... | [
"sql"
] |
SQL запрос | Significant-Gravitas/AutoGPT / autogpt_platform/analytics/queries/retention_login_onboarded_weekly.sql | -- =============================================================
-- View: analytics.retention_login_onboarded_weekly
-- Looker source alias: ds101 | Charts: 2
-- =============================================================
-- DESCRIPTION
-- Weekly cohort retention from login sessions, restricted to
-- users who ... | [
"sql"
] |
SQL запрос | Significant-Gravitas/AutoGPT / autogpt_platform/analytics/queries/retention_login_weekly.sql | -- =============================================================
-- View: analytics.retention_login_weekly
-- Looker source alias: ds83 | Charts: 2
-- =============================================================
-- DESCRIPTION
-- Weekly cohort retention based on login sessions.
-- Users are grouped by the ISO we... | [
"sql"
] |
SQL запрос | Significant-Gravitas/AutoGPT / autogpt_platform/analytics/queries/user_block_spending.sql | -- =============================================================
-- View: analytics.user_block_spending
-- Looker source alias: ds6 | Charts: 5
-- =============================================================
-- DESCRIPTION
-- One row per credit transaction (last 90 days).
-- Shows how users spend credits broken ... | [
"node",
"sql"
] |
SQL запрос | Significant-Gravitas/AutoGPT / autogpt_platform/analytics/queries/user_onboarding.sql | -- =============================================================
-- View: analytics.user_onboarding
-- Looker source alias: ds68 | Charts: 3
-- =============================================================
-- DESCRIPTION
-- One row per user onboarding record. Contains the user's
-- stated usage reason, selected ... | [
"sql"
] |
SQL запрос | Significant-Gravitas/AutoGPT / autogpt_platform/analytics/queries/user_onboarding_funnel.sql | -- =============================================================
-- View: analytics.user_onboarding_funnel
-- Looker source alias: ds74 | Charts: 1
-- =============================================================
-- DESCRIPTION
-- Pre-aggregated onboarding funnel showing how many users
-- completed each step and ... | [
"sql"
] |
SQL запрос | Significant-Gravitas/AutoGPT / autogpt_platform/analytics/queries/user_onboarding_integration.sql | -- =============================================================
-- View: analytics.user_onboarding_integration
-- Looker source alias: ds75 | Charts: 1
-- =============================================================
-- DESCRIPTION
-- Pre-aggregated count of users who selected each integration
-- during onboardi... | [
"sql"
] |
SQL запрос | Significant-Gravitas/AutoGPT / autogpt_platform/analytics/queries/users_activities.sql | -- =============================================================
-- View: analytics.users_activities
-- Looker source alias: ds56 | Charts: 5
-- =============================================================
-- DESCRIPTION
-- One row per user with lifetime activity summary.
-- Joins login sessions with agent graph... | [
"node",
"sql"
] |
SQL запрос | Significant-Gravitas/AutoGPT / autogpt_platform/backend/migrations/20240722143307_migrations/migration.sql | -- CreateTable
CREATE TABLE "AgentGraph" (
"id" TEXT NOT NULL,
"version" INTEGER NOT NULL DEFAULT 1,
"name" TEXT,
"description" TEXT,
"isActive" BOOLEAN NOT NULL DEFAULT true,
"isTemplate" BOOLEAN NOT NULL DEFAULT false,
CONSTRAINT "AgentGraph_pkey" PRIMARY KEY ("id","version")
);
-- Creat... | [
"node",
"sql"
] |
SQL запрос | Significant-Gravitas/AutoGPT / autogpt_platform/backend/migrations/20240726131311_node_input_unique_constraint/migration.sql | /*
Warnings:
- A unique constraint covering the columns `[referencedByInputExecId,referencedByOutputExecId,name]` on the table `AgentNodeExecutionInputOutput` will be added. If there are existing duplicate values, this will fail.
*/
-- CreateIndex
CREATE UNIQUE INDEX "AgentNodeExecutionInputOutput_referencedByInp... | [
"node",
"sql"
] |
SQL запрос | Significant-Gravitas/AutoGPT / autogpt_platform/backend/migrations/20240804040801_add_subgraph/migration.sql | -- AlterTable
ALTER TABLE "AgentGraph" ADD COLUMN "agentGraphParentId" TEXT;
-- AddForeignKey
ALTER TABLE "AgentGraph" ADD CONSTRAINT "AgentGraph_agentGraphParentId_version_fkey" FOREIGN KEY ("agentGraphParentId", "version") REFERENCES "AgentGraph"("id", "version") ON DELETE RESTRICT ON UPDATE CASCADE;
| [
"sql"
] |
SQL запрос | Significant-Gravitas/AutoGPT / autogpt_platform/backend/migrations/20240805115810_add_user_management/migration.sql | -- AlterTable
ALTER TABLE "AgentGraph" ADD COLUMN "userId" TEXT;
-- AlterTable
ALTER TABLE "AgentGraphExecution" ADD COLUMN "userId" TEXT;
-- AlterTable
ALTER TABLE "AgentGraphExecutionSchedule" ADD COLUMN "userId" TEXT;
-- CreateTable
CREATE TABLE "User" (
"id" TEXT NOT NULL,
"email" TEXT NOT NU... | [
"sql"
] |
Код на css | AUTOMATIC1111/stable-diffusion-webui / extensions-builtin/canvas-zoom-and-pan/style.css | .canvas-tooltip-info {
position: absolute;
top: 10px;
left: 10px;
cursor: help;
background-color: rgba(0, 0, 0, 0.3);
width: 20px;
height: 20px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
z-index: 100;
}
.canvas-tooltip-info::aft... | [
"css"
] |
Код на html | AUTOMATIC1111/stable-diffusion-webui / html/extra-networks-card.html | <div class="card" style="{style}" onclick="{card_clicked}" data-name="{name}" {sort_keys}>
{background_image}
<div class="button-row">{copy_path_button}{metadata_button}{edit_button}</div>
<div class="actions">
<div class="additional">{search_terms}</div>
<span class="name">{name}</span>
<span class="descripti... | [
"html"
] |
Код на html | AUTOMATIC1111/stable-diffusion-webui / html/extra-networks-pane-dirs.html | <div class="extra-network-pane-content-dirs">
<div id='{tabname}_{extra_networks_tabname}_dirs' class='extra-network-dirs'>
{dirs_html}
</div>
<div id='{tabname}_{extra_networks_tabname}_cards' class='extra-network-cards'>
{items_html}
</div>
</div>... | [
"html"
] |
Код на html | AUTOMATIC1111/stable-diffusion-webui / html/extra-networks-pane-tree.html | <div class="extra-network-pane-content-tree resize-handle-row">
<div id='{tabname}_{extra_networks_tabname}_tree' class='extra-network-tree' style='flex-basis: {extra_networks_tree_view_default_width}px'>
{tree_html}
</div>
<div id='{tabname}_{extra_networks_tabname}_cards' c... | [
"html"
] |
Код на html | AUTOMATIC1111/stable-diffusion-webui / html/extra-networks-pane.html | <div id='{tabname}_{extra_networks_tabname}_pane' class='extra-network-pane {tree_view_div_default_display_class}'>
<div class="extra-network-control" id="{tabname}_{extra_networks_tabname}_controls" style="display:none" >
<div class="extra-network-control--search">
<input
id="{t... | [
"html"
] |
Код на html | AUTOMATIC1111/stable-diffusion-webui / html/extra-networks-tree-button.html | <span data-filterable-item-text hidden>{search_terms}</span>
<div class="tree-list-content {subclass}"
type="button"
onclick="extraNetworksTreeOnClick(event, '{tabname}', '{extra_networks_tabname}');{onclick_extra}"
data-path="{data_path}"
data-hash="{data_hash}"
>
<span class='tree-list-item-action... | [
"html"
] |
Код на html | AUTOMATIC1111/stable-diffusion-webui / html/footer.html | <div>
<a href="{api_docs}">API</a>
•
<a href="https://github.com/AUTOMATIC1111/stable-diffusion-webui">Github</a>
•
<a href="https://gradio.app">Gradio</a>
•
<a href="#" onclick="showProfile('./internal/profile-startup'); return false;">Startup profil... | [
"html"
] |
Код на html | AUTOMATIC1111/stable-diffusion-webui / html/licenses.html | <style>
#licenses h2 {font-size: 1.2em; font-weight: bold; margin-bottom: 0.2em;}
#licenses small {font-size: 0.95em; opacity: 0.85;}
#licenses pre { margin: 1em 0 2em 0;}
</style>
<h2><a href="https://github.com/invoke-ai/InvokeAI/blob/main/LICENSE">InvokeAI</a></h2>
<small>Some code for compatibil... | [
"html",
"express"
] |
Код на css | AUTOMATIC1111/stable-diffusion-webui / style.css | /* temporary fix to load default gradio font in frontend instead of backend */
@import url('webui-assets/css/sourcesanspro.css');
/* temporary fix to hide gradio crop tool until it's fixed https://github.com/gradio-app/gradio/issues/3810 */
div.gradio-image button[aria-label="Edit"] {
display: none;
}
... | [
"css"
] |
Код на css | langflow-ai/langflow / docs/css/custom.css | /**
* Any CSS included here will be global. The classic template
* bundles Infima by default. Infima is a CSS framework designed to
* work well for content-centric websites.
*/
:root {
--ifm-navbar-link-hover-color: initial;
--ifm-navbar-padding-vertical: 0;
--ifm-global-radius: 16px;
--ifm-navbar-item-padd... | [
"node",
"css"
] |
OSINT утилита на html | langflow-ai/langflow / src/frontend/index.html | <!doctype html>
<html lang="en">
<head>
<base href="/" />
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="/favicon.ico" />
<link rel="manifest" href="/manifest.json"... | [
"node",
"html",
"osint"
] |
Код на css | langflow-ai/langflow / src/frontend/src/App.css | @import "./style/custom-ace-overrides.css";
@tailwind base;
@tailwind components;
@tailwind utilities;
/* Prevent react flow to overflow the page */
body {
overflow: hidden;
}
.App {
text-align: center;
}
.label {
user-select: none;
-webkit-user-select: none; /* Safari */
-moz-user-select: none; /* Firefox... | [
"node",
"react",
"css"
] |
Код на css | langflow-ai/langflow / src/frontend/src/style/ag-theme-shadcn.css | /* set the background color of many elements across the grid */
.ag-theme-shadcn {
--ag-foreground-color: hsl(var(--foreground)) !important;
--ag-background-color: hsl(var(--background)) !important;
--ag-secondary-foreground-color: hsl(var(--secondary-foreground)) !important;
--ag-data-color: hsl(var(--foregrou... | [
"css"
] |
Код на css | langflow-ai/langflow / src/frontend/src/style/applies.css | @tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
* {
@apply border-border;
}
body {
@apply bg-background text-foreground;
font-feature-settings:
"rlig" 1,
"calt" 1;
font-family: Inter, system-ui, sans-serif;
}
}
@keyframes slideDown {
from {
height: 0... | [
"node",
"css"
] |
Код на css | langflow-ai/langflow / src/frontend/src/style/classes.css | body {
margin: 0;
font-family:
"Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
code {
font-family:
source-code... | [
"node",
"react",
"css"
] |
Код на css | langflow-ai/langflow / src/frontend/src/style/custom-ace-overrides.css | /* Custom override for Ace Editor GitHub Dark theme background */
.ace-github-dark,
.ace-github-dark .ace_scroller {
background-color: #111 !important;
}
/* Custom override for Ace Editor Monokai theme background - only in dark mode */
.dark .ace-monokai,
.dark .ace-monokai .ace_scroller {
background-color: #14141... | [
"css"
] |
Код на css | langflow-ai/langflow / src/frontend/src/style/index.css | @tailwind base;
@tailwind components;
@tailwind utilities;
/* TODO: Confirm that all colors here are found in tailwind config */
@layer base {
:root {
--font-sans: "Inter", sans-serif;
--font-mono: "JetBrains Mono", monospace;
--font-chivo: "Chivo", sans-serif;
--foreground: 0 0% 0%; /* hsl(0, 0%, ... | [
"node",
"css"
] |
Код на html | langchain-ai/langchain / libs/langchain/tests/integration_tests/examples/example-utf8.html | <html>
<head>
<title>Chew dad's slippers</title>
</head>
<body>
<h1>
Instead of drinking water from the cat bowl, make sure to steal water from
the toilet
</h1>
<h2>Chase the red dot</h2>
<p>
Munch, munch, chomp, chomp hate dogs. Spill litter box, scratch at owner,
dest... | [
"html"
] |
Код на html | langchain-ai/langchain / libs/langchain/tests/integration_tests/examples/example.html | <html>
<head>
<title>Chew dad's slippers</title>
</head>
<body>
<h1>
Instead of drinking water from the cat bowl, make sure to steal water from
the toilet
</h1>
<h2>Chase the red dot</h2>
<p>
Munch, munch, chomp, chomp hate dogs. Spill litter box, scratch at owner,
dest... | [
"html"
] |
Код на css | open-webui/open-webui / backend/open_webui/static/assets/pdf-style.css | /* HTML and Body */
@font-face {
font-family: 'NotoSans';
src: url('fonts/NotoSans-Variable.ttf');
}
@font-face {
font-family: 'NotoSansJP';
src: url('fonts/NotoSansJP-Variable.ttf');
}
@font-face {
font-family: 'NotoSansKR';
src: url('fonts/NotoSansKR-Variable.ttf');
}
@font-face {
font-family: 'NotoSansSC';... | [
"css"
] |
Код на css | open-webui/open-webui / backend/open_webui/static/swagger-ui/swagger-ui.css | .swagger-ui {
color: #3b4151;
font-family: sans-serif; /*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
}
.swagger-ui html {
line-height: 1.15;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
}
.swagger-ui body {
margin: 0;
}
.swagger-ui article,
.swagger-ui aside,
.swagger... | [
"qt",
"css"
] |
Код на css | open-webui/open-webui / src/app.css | @reference "./tailwind.css";
@font-face {
font-family: 'Inter';
src: url('/assets/fonts/Inter-Variable.ttf');
font-display: swap;
}
@font-face {
font-family: 'Archivo';
src: url('/assets/fonts/Archivo-Variable.ttf');
font-display: swap;
}
@font-face {
font-family: 'Mona Sans';
src: url('/assets/fonts/Mona-Sa... | [
"css"
] |
End of preview. Expand in Data Studio
README.md exists but content is empty.
- Downloads last month
- 6