instruction stringlengths 35 72 | input stringclasses 32
values | output stringlengths 100 739 |
|---|---|---|
Create a sequence diagram for API rate limiting | null | sequenceDiagram
title: Api Rate Limiting
participant Client
participant Service
participant Backend
Client->>Service: Request
Service->>Backend: Process
Backend-->>Service: Result
Service-->>Client: Response |
Design an ER diagram for real estate MLS | null | erDiagram
title: Real Estate Mls
ENTITY_A {
int id PK
string name
}
ENTITY_B {
int id PK
int entity_a_id FK
}
ENTITY_A ||--o{ ENTITY_B : has |
Create a component diagram for distributed system 5 | null | componentDiagram
package "Services" {
[Service A]
[Service B]
}
database "Storage" {
[Database]
}
[Service A] --> [Database]
[Service B] --> [Database] |
Design an activity diagram for business process 5 | null | activityDiagram
start
:Initialize;
if (Condition?) then (yes)
:Process A;
else (no)
:Process B;
endif
end |
Create a class diagram for design pattern example 5 | null | classDiagram
class Interface {
<<interface>>
+method()
}
class Implementation {
+method()
}
Interface <|.. Implementation |
Create a mind map for learning topic 5 | null | mindmap
* Main Topic
** Subtopic A
*** Detail 1
*** Detail 2
** Subtopic B
*** Detail 1
*** Detail 2 |
Create a Gantt chart for project schedule 5 | null | gantt
title Project Timeline
dateFormat YYYY-MM-DD
section Phase 1
"Planning" : 2024-01-01, 14d
"Execution" : 2024-01-15, 30d |
Create a DOT diagram for graph structure 5 | null | dotDiagram
digraph G {
bgcolor="white"
node [shape="box"]
A -> B
B -> C
A -> C
} |
Create a workflow diagram for approval process 5 | null | activityDiagram
start
:Submit request;
:Manager review;
if (Approved?) then (yes)
:Execute;
else (no)
:Reject;
endif
end |
Create an API interaction diagram 5 | null | sequenceDiagram
participant Client
participant API
participant DB
Client->>API: GET /data
API->>DB: SELECT
DB-->>API: rows
API-->>Client: JSON |
Create a sequence diagram for Circuit breaker pattern | null | sequenceDiagram
title: Circuit Breaker Pattern
participant Client
participant Service
participant Backend
Client->>Service: Request
Service->>Backend: Process
Backend-->>Service: Result
Service-->>Client: Response |
Design an ER diagram for fleet management | null | erDiagram
title: Fleet Management
ENTITY_A {
int id PK
string name
}
ENTITY_B {
int id PK
int entity_a_id FK
}
ENTITY_A ||--o{ ENTITY_B : has |
Create a component diagram for distributed system 6 | null | componentDiagram
package "Services" {
[Service A]
[Service B]
}
database "Storage" {
[Database]
}
[Service A] --> [Database]
[Service B] --> [Database] |
Design an activity diagram for business process 6 | null | activityDiagram
start
:Initialize;
if (Condition?) then (yes)
:Process A;
else (no)
:Process B;
endif
end |
Create a class diagram for design pattern example 6 | null | classDiagram
class Interface {
<<interface>>
+method()
}
class Implementation {
+method()
}
Interface <|.. Implementation |
Create a mind map for learning topic 6 | null | mindmap
* Main Topic
** Subtopic A
*** Detail 1
*** Detail 2
** Subtopic B
*** Detail 1
*** Detail 2 |
Create a Gantt chart for project schedule 6 | null | gantt
title Project Timeline
dateFormat YYYY-MM-DD
section Phase 1
"Planning" : 2024-01-01, 14d
"Execution" : 2024-01-15, 30d |
Create a DOT diagram for graph structure 6 | null | dotDiagram
digraph G {
bgcolor="white"
node [shape="box"]
A -> B
B -> C
A -> C
} |
Create a workflow diagram for approval process 6 | null | activityDiagram
start
:Submit request;
:Manager review;
if (Approved?) then (yes)
:Execute;
else (no)
:Reject;
endif
end |
Create an API interaction diagram 6 | null | sequenceDiagram
participant Client
participant API
participant DB
Client->>API: GET /data
API->>DB: SELECT
DB-->>API: rows
API-->>Client: JSON |
Create a sequence diagram for Distributed transaction 2PC | null | sequenceDiagram
title: Distributed Transaction 2Pc
participant Client
participant Service
participant Backend
Client->>Service: Request
Service->>Backend: Process
Backend-->>Service: Result
Service-->>Client: Response |
Design an ER diagram for restaurant POS system | null | erDiagram
title: Restaurant Pos System
ENTITY_A {
int id PK
string name
}
ENTITY_B {
int id PK
int entity_a_id FK
}
ENTITY_A ||--o{ ENTITY_B : has |
Create a component diagram for distributed system 7 | null | componentDiagram
package "Services" {
[Service A]
[Service B]
}
database "Storage" {
[Database]
}
[Service A] --> [Database]
[Service B] --> [Database] |
Design an activity diagram for business process 7 | null | activityDiagram
start
:Initialize;
if (Condition?) then (yes)
:Process A;
else (no)
:Process B;
endif
end |
Create a class diagram for design pattern example 7 | null | classDiagram
class Interface {
<<interface>>
+method()
}
class Implementation {
+method()
}
Interface <|.. Implementation |
Create a mind map for learning topic 7 | null | mindmap
* Main Topic
** Subtopic A
*** Detail 1
*** Detail 2
** Subtopic B
*** Detail 1
*** Detail 2 |
Create a Gantt chart for project schedule 7 | null | gantt
title Project Timeline
dateFormat YYYY-MM-DD
section Phase 1
"Planning" : 2024-01-01, 14d
"Execution" : 2024-01-15, 30d |
Create a DOT diagram for graph structure 7 | null | dotDiagram
digraph G {
bgcolor="white"
node [shape="box"]
A -> B
B -> C
A -> C
} |
Create a workflow diagram for approval process 7 | null | activityDiagram
start
:Submit request;
:Manager review;
if (Approved?) then (yes)
:Execute;
else (no)
:Reject;
endif
end |
Create an API interaction diagram 7 | null | sequenceDiagram
participant Client
participant API
participant DB
Client->>API: GET /data
API->>DB: SELECT
DB-->>API: rows
API-->>Client: JSON |
Create a sequence diagram for Message queue pub/sub | null | sequenceDiagram
title: Message Queue Pub/Sub
participant Client
participant Service
participant Backend
Client->>Service: Request
Service->>Backend: Process
Backend-->>Service: Result
Service-->>Client: Response |
Design an ER diagram for hotel reservation | null | erDiagram
title: Hotel Reservation
ENTITY_A {
int id PK
string name
}
ENTITY_B {
int id PK
int entity_a_id FK
}
ENTITY_A ||--o{ ENTITY_B : has |
Create a component diagram for distributed system 8 | null | componentDiagram
package "Services" {
[Service A]
[Service B]
}
database "Storage" {
[Database]
}
[Service A] --> [Database]
[Service B] --> [Database] |
Design an activity diagram for business process 8 | null | activityDiagram
start
:Initialize;
if (Condition?) then (yes)
:Process A;
else (no)
:Process B;
endif
end |
Create a class diagram for design pattern example 8 | null | classDiagram
class Interface {
<<interface>>
+method()
}
class Implementation {
+method()
}
Interface <|.. Implementation |
Create a mind map for learning topic 8 | null | mindmap
* Main Topic
** Subtopic A
*** Detail 1
*** Detail 2
** Subtopic B
*** Detail 1
*** Detail 2 |
Create a Gantt chart for project schedule 8 | null | gantt
title Project Timeline
dateFormat YYYY-MM-DD
section Phase 1
"Planning" : 2024-01-01, 14d
"Execution" : 2024-01-15, 30d |
Create a DOT diagram for graph structure 8 | null | dotDiagram
digraph G {
bgcolor="white"
node [shape="box"]
A -> B
B -> C
A -> C
} |
Create a workflow diagram for approval process 8 | null | activityDiagram
start
:Submit request;
:Manager review;
if (Approved?) then (yes)
:Execute;
else (no)
:Reject;
endif
end |
Create an API interaction diagram 8 | null | sequenceDiagram
participant Client
participant API
participant DB
Client->>API: GET /data
API->>DB: SELECT
DB-->>API: rows
API-->>Client: JSON |
Create a sequence diagram for gRPC streaming | null | sequenceDiagram
title: Grpc Streaming
participant Client
participant Service
participant Backend
Client->>Service: Request
Service->>Backend: Process
Backend-->>Service: Result
Service-->>Client: Response |
Design an ER diagram for music streaming service | null | erDiagram
title: Music Streaming Service
ENTITY_A {
int id PK
string name
}
ENTITY_B {
int id PK
int entity_a_id FK
}
ENTITY_A ||--o{ ENTITY_B : has |
Create a component diagram for distributed system 9 | null | componentDiagram
package "Services" {
[Service A]
[Service B]
}
database "Storage" {
[Database]
}
[Service A] --> [Database]
[Service B] --> [Database] |
Design an activity diagram for business process 9 | null | activityDiagram
start
:Initialize;
if (Condition?) then (yes)
:Process A;
else (no)
:Process B;
endif
end |
Create a class diagram for design pattern example 9 | null | classDiagram
class Interface {
<<interface>>
+method()
}
class Implementation {
+method()
}
Interface <|.. Implementation |
Create a mind map for learning topic 9 | null | mindmap
* Main Topic
** Subtopic A
*** Detail 1
*** Detail 2
** Subtopic B
*** Detail 1
*** Detail 2 |
Create a Gantt chart for project schedule 9 | null | gantt
title Project Timeline
dateFormat YYYY-MM-DD
section Phase 1
"Planning" : 2024-01-01, 14d
"Execution" : 2024-01-15, 30d |
Create a DOT diagram for graph structure 9 | null | dotDiagram
digraph G {
bgcolor="white"
node [shape="box"]
A -> B
B -> C
A -> C
} |
Create a workflow diagram for approval process 9 | null | activityDiagram
start
:Submit request;
:Manager review;
if (Approved?) then (yes)
:Execute;
else (no)
:Reject;
endif
end |
Create an API interaction diagram 9 | null | sequenceDiagram
participant Client
participant API
participant DB
Client->>API: GET /data
API->>DB: SELECT
DB-->>API: rows
API-->>Client: JSON |
Create a sequence diagram for service interaction pattern 10 | null | sequenceDiagram
title: Service Interaction Pattern 10
participant Client
participant Service
participant Backend
Client->>Service: Request
Service->>Backend: Process
Backend-->>Service: Result
Service-->>Client: Response |
Design an ER diagram for data model 10 | null | erDiagram
title: Data Model 10
ENTITY_A {
int id PK
string name
}
ENTITY_B {
int id PK
int entity_a_id FK
}
ENTITY_A ||--o{ ENTITY_B : has |
Create a component diagram for distributed system 10 | null | componentDiagram
package "Services" {
[Service A]
[Service B]
}
database "Storage" {
[Database]
}
[Service A] --> [Database]
[Service B] --> [Database] |
Design an activity diagram for business process 10 | null | activityDiagram
start
:Initialize;
if (Condition?) then (yes)
:Process A;
else (no)
:Process B;
endif
end |
Create a class diagram for design pattern example 10 | null | classDiagram
class Interface {
<<interface>>
+method()
}
class Implementation {
+method()
}
Interface <|.. Implementation |
Create a mind map for learning topic 10 | null | mindmap
* Main Topic
** Subtopic A
*** Detail 1
*** Detail 2
** Subtopic B
*** Detail 1
*** Detail 2 |
Create a Gantt chart for project schedule 10 | null | gantt
title Project Timeline
dateFormat YYYY-MM-DD
section Phase 1
"Planning" : 2024-01-01, 14d
"Execution" : 2024-01-15, 30d |
Create a DOT diagram for graph structure 10 | null | dotDiagram
digraph G {
bgcolor="white"
node [shape="box"]
A -> B
B -> C
A -> C
} |
Create a workflow diagram for approval process 10 | null | activityDiagram
start
:Submit request;
:Manager review;
if (Approved?) then (yes)
:Execute;
else (no)
:Reject;
endif
end |
Create an API interaction diagram 10 | null | sequenceDiagram
participant Client
participant API
participant DB
Client->>API: GET /data
API->>DB: SELECT
DB-->>API: rows
API-->>Client: JSON |
Create a sequence diagram for service interaction pattern 11 | null | sequenceDiagram
title: Service Interaction Pattern 11
participant Client
participant Service
participant Backend
Client->>Service: Request
Service->>Backend: Process
Backend-->>Service: Result
Service-->>Client: Response |
Design an ER diagram for data model 11 | null | erDiagram
title: Data Model 11
ENTITY_A {
int id PK
string name
}
ENTITY_B {
int id PK
int entity_a_id FK
}
ENTITY_A ||--o{ ENTITY_B : has |
Create a component diagram for distributed system 11 | null | componentDiagram
package "Services" {
[Service A]
[Service B]
}
database "Storage" {
[Database]
}
[Service A] --> [Database]
[Service B] --> [Database] |
Design an activity diagram for business process 11 | null | activityDiagram
start
:Initialize;
if (Condition?) then (yes)
:Process A;
else (no)
:Process B;
endif
end |
Create a class diagram for design pattern example 11 | null | classDiagram
class Interface {
<<interface>>
+method()
}
class Implementation {
+method()
}
Interface <|.. Implementation |
Create a mind map for learning topic 11 | null | mindmap
* Main Topic
** Subtopic A
*** Detail 1
*** Detail 2
** Subtopic B
*** Detail 1
*** Detail 2 |
Create a Gantt chart for project schedule 11 | null | gantt
title Project Timeline
dateFormat YYYY-MM-DD
section Phase 1
"Planning" : 2024-01-01, 14d
"Execution" : 2024-01-15, 30d |
Create a DOT diagram for graph structure 11 | null | dotDiagram
digraph G {
bgcolor="white"
node [shape="box"]
A -> B
B -> C
A -> C
} |
Create a workflow diagram for approval process 11 | null | activityDiagram
start
:Submit request;
:Manager review;
if (Approved?) then (yes)
:Execute;
else (no)
:Reject;
endif
end |
Create an API interaction diagram 11 | null | sequenceDiagram
participant Client
participant API
participant DB
Client->>API: GET /data
API->>DB: SELECT
DB-->>API: rows
API-->>Client: JSON |
Create a sequence diagram for service interaction pattern 12 | null | sequenceDiagram
title: Service Interaction Pattern 12
participant Client
participant Service
participant Backend
Client->>Service: Request
Service->>Backend: Process
Backend-->>Service: Result
Service-->>Client: Response |
Design an ER diagram for data model 12 | null | erDiagram
title: Data Model 12
ENTITY_A {
int id PK
string name
}
ENTITY_B {
int id PK
int entity_a_id FK
}
ENTITY_A ||--o{ ENTITY_B : has |
Create a component diagram for distributed system 12 | null | componentDiagram
package "Services" {
[Service A]
[Service B]
}
database "Storage" {
[Database]
}
[Service A] --> [Database]
[Service B] --> [Database] |
Design an activity diagram for business process 12 | null | activityDiagram
start
:Initialize;
if (Condition?) then (yes)
:Process A;
else (no)
:Process B;
endif
end |
Create a class diagram for design pattern example 12 | null | classDiagram
class Interface {
<<interface>>
+method()
}
class Implementation {
+method()
}
Interface <|.. Implementation |
Create a mind map for learning topic 12 | null | mindmap
* Main Topic
** Subtopic A
*** Detail 1
*** Detail 2
** Subtopic B
*** Detail 1
*** Detail 2 |
Create a Gantt chart for project schedule 12 | null | gantt
title Project Timeline
dateFormat YYYY-MM-DD
section Phase 1
"Planning" : 2024-01-01, 14d
"Execution" : 2024-01-15, 30d |
Create a DOT diagram for graph structure 12 | null | dotDiagram
digraph G {
bgcolor="white"
node [shape="box"]
A -> B
B -> C
A -> C
} |
Create a workflow diagram for approval process 12 | null | activityDiagram
start
:Submit request;
:Manager review;
if (Approved?) then (yes)
:Execute;
else (no)
:Reject;
endif
end |
Create an API interaction diagram 12 | null | sequenceDiagram
participant Client
participant API
participant DB
Client->>API: GET /data
API->>DB: SELECT
DB-->>API: rows
API-->>Client: JSON |
Create a sequence diagram for service interaction pattern 13 | null | sequenceDiagram
title: Service Interaction Pattern 13
participant Client
participant Service
participant Backend
Client->>Service: Request
Service->>Backend: Process
Backend-->>Service: Result
Service-->>Client: Response |
Design an ER diagram for data model 13 | null | erDiagram
title: Data Model 13
ENTITY_A {
int id PK
string name
}
ENTITY_B {
int id PK
int entity_a_id FK
}
ENTITY_A ||--o{ ENTITY_B : has |
Create a component diagram for distributed system 13 | null | componentDiagram
package "Services" {
[Service A]
[Service B]
}
database "Storage" {
[Database]
}
[Service A] --> [Database]
[Service B] --> [Database] |
Design an activity diagram for business process 13 | null | activityDiagram
start
:Initialize;
if (Condition?) then (yes)
:Process A;
else (no)
:Process B;
endif
end |
Create a class diagram for design pattern example 13 | null | classDiagram
class Interface {
<<interface>>
+method()
}
class Implementation {
+method()
}
Interface <|.. Implementation |
Create a mind map for learning topic 13 | null | mindmap
* Main Topic
** Subtopic A
*** Detail 1
*** Detail 2
** Subtopic B
*** Detail 1
*** Detail 2 |
Create a Gantt chart for project schedule 13 | null | gantt
title Project Timeline
dateFormat YYYY-MM-DD
section Phase 1
"Planning" : 2024-01-01, 14d
"Execution" : 2024-01-15, 30d |
Create a DOT diagram for graph structure 13 | null | dotDiagram
digraph G {
bgcolor="white"
node [shape="box"]
A -> B
B -> C
A -> C
} |
Create a workflow diagram for approval process 13 | null | activityDiagram
start
:Submit request;
:Manager review;
if (Approved?) then (yes)
:Execute;
else (no)
:Reject;
endif
end |
Create an API interaction diagram 13 | null | sequenceDiagram
participant Client
participant API
participant DB
Client->>API: GET /data
API->>DB: SELECT
DB-->>API: rows
API-->>Client: JSON |
Create a sequence diagram for service interaction pattern 14 | null | sequenceDiagram
title: Service Interaction Pattern 14
participant Client
participant Service
participant Backend
Client->>Service: Request
Service->>Backend: Process
Backend-->>Service: Result
Service-->>Client: Response |
Design an ER diagram for data model 14 | null | erDiagram
title: Data Model 14
ENTITY_A {
int id PK
string name
}
ENTITY_B {
int id PK
int entity_a_id FK
}
ENTITY_A ||--o{ ENTITY_B : has |
Create a component diagram for distributed system 14 | null | componentDiagram
package "Services" {
[Service A]
[Service B]
}
database "Storage" {
[Database]
}
[Service A] --> [Database]
[Service B] --> [Database] |
Design an activity diagram for business process 14 | null | activityDiagram
start
:Initialize;
if (Condition?) then (yes)
:Process A;
else (no)
:Process B;
endif
end |
Create a class diagram for design pattern example 14 | null | classDiagram
class Interface {
<<interface>>
+method()
}
class Implementation {
+method()
}
Interface <|.. Implementation |
Create a mind map for learning topic 14 | null | mindmap
* Main Topic
** Subtopic A
*** Detail 1
*** Detail 2
** Subtopic B
*** Detail 1
*** Detail 2 |
Create a Gantt chart for project schedule 14 | null | gantt
title Project Timeline
dateFormat YYYY-MM-DD
section Phase 1
"Planning" : 2024-01-01, 14d
"Execution" : 2024-01-15, 30d |
Create a DOT diagram for graph structure 14 | null | dotDiagram
digraph G {
bgcolor="white"
node [shape="box"]
A -> B
B -> C
A -> C
} |
Create a workflow diagram for approval process 14 | null | activityDiagram
start
:Submit request;
:Manager review;
if (Approved?) then (yes)
:Execute;
else (no)
:Reject;
endif
end |
Create an API interaction diagram 14 | null | sequenceDiagram
participant Client
participant API
participant DB
Client->>API: GET /data
API->>DB: SELECT
DB-->>API: rows
API-->>Client: JSON |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.