instruction stringlengths 35 72 | input stringclasses 32
values | output stringlengths 100 739 |
|---|---|---|
Create a sequence diagram for service interaction pattern 25 | null | sequenceDiagram
title: Service Interaction Pattern 25
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 25 | null | erDiagram
title: Data Model 25
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 25 | null | componentDiagram
package "Services" {
[Service A]
[Service B]
}
database "Storage" {
[Database]
}
[Service A] --> [Database]
[Service B] --> [Database] |
Design an activity diagram for business process 25 | null | activityDiagram
start
:Initialize;
if (Condition?) then (yes)
:Process A;
else (no)
:Process B;
endif
end |
Create a class diagram for design pattern example 25 | null | classDiagram
class Interface {
<<interface>>
+method()
}
class Implementation {
+method()
}
Interface <|.. Implementation |
Create a mind map for learning topic 25 | null | mindmap
* Main Topic
** Subtopic A
*** Detail 1
*** Detail 2
** Subtopic B
*** Detail 1
*** Detail 2 |
Create a Gantt chart for project schedule 25 | 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 25 | null | dotDiagram
digraph G {
bgcolor="white"
node [shape="box"]
A -> B
B -> C
A -> C
} |
Create a workflow diagram for approval process 25 | null | activityDiagram
start
:Submit request;
:Manager review;
if (Approved?) then (yes)
:Execute;
else (no)
:Reject;
endif
end |
Create an API interaction diagram 25 | 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 26 | null | sequenceDiagram
title: Service Interaction Pattern 26
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 26 | null | erDiagram
title: Data Model 26
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 26 | null | componentDiagram
package "Services" {
[Service A]
[Service B]
}
database "Storage" {
[Database]
}
[Service A] --> [Database]
[Service B] --> [Database] |
Design an activity diagram for business process 26 | null | activityDiagram
start
:Initialize;
if (Condition?) then (yes)
:Process A;
else (no)
:Process B;
endif
end |
Create a class diagram for design pattern example 26 | null | classDiagram
class Interface {
<<interface>>
+method()
}
class Implementation {
+method()
}
Interface <|.. Implementation |
Create a mind map for learning topic 26 | null | mindmap
* Main Topic
** Subtopic A
*** Detail 1
*** Detail 2
** Subtopic B
*** Detail 1
*** Detail 2 |
Create a Gantt chart for project schedule 26 | 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 26 | null | dotDiagram
digraph G {
bgcolor="white"
node [shape="box"]
A -> B
B -> C
A -> C
} |
Create a workflow diagram for approval process 26 | null | activityDiagram
start
:Submit request;
:Manager review;
if (Approved?) then (yes)
:Execute;
else (no)
:Reject;
endif
end |
Create an API interaction diagram 26 | 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 27 | null | sequenceDiagram
title: Service Interaction Pattern 27
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 27 | null | erDiagram
title: Data Model 27
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 27 | null | componentDiagram
package "Services" {
[Service A]
[Service B]
}
database "Storage" {
[Database]
}
[Service A] --> [Database]
[Service B] --> [Database] |
Design an activity diagram for business process 27 | null | activityDiagram
start
:Initialize;
if (Condition?) then (yes)
:Process A;
else (no)
:Process B;
endif
end |
Create a class diagram for design pattern example 27 | null | classDiagram
class Interface {
<<interface>>
+method()
}
class Implementation {
+method()
}
Interface <|.. Implementation |
Create a mind map for learning topic 27 | null | mindmap
* Main Topic
** Subtopic A
*** Detail 1
*** Detail 2
** Subtopic B
*** Detail 1
*** Detail 2 |
Create a Gantt chart for project schedule 27 | 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 27 | null | dotDiagram
digraph G {
bgcolor="white"
node [shape="box"]
A -> B
B -> C
A -> C
} |
Create a workflow diagram for approval process 27 | null | activityDiagram
start
:Submit request;
:Manager review;
if (Approved?) then (yes)
:Execute;
else (no)
:Reject;
endif
end |
Create an API interaction diagram 27 | 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 28 | null | sequenceDiagram
title: Service Interaction Pattern 28
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 28 | null | erDiagram
title: Data Model 28
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 28 | null | componentDiagram
package "Services" {
[Service A]
[Service B]
}
database "Storage" {
[Database]
}
[Service A] --> [Database]
[Service B] --> [Database] |
Design an activity diagram for business process 28 | null | activityDiagram
start
:Initialize;
if (Condition?) then (yes)
:Process A;
else (no)
:Process B;
endif
end |
Create a class diagram for design pattern example 28 | null | classDiagram
class Interface {
<<interface>>
+method()
}
class Implementation {
+method()
}
Interface <|.. Implementation |
Create a mind map for learning topic 28 | null | mindmap
* Main Topic
** Subtopic A
*** Detail 1
*** Detail 2
** Subtopic B
*** Detail 1
*** Detail 2 |
Create a Gantt chart for project schedule 28 | 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 28 | null | dotDiagram
digraph G {
bgcolor="white"
node [shape="box"]
A -> B
B -> C
A -> C
} |
Create a workflow diagram for approval process 28 | null | activityDiagram
start
:Submit request;
:Manager review;
if (Approved?) then (yes)
:Execute;
else (no)
:Reject;
endif
end |
Create an API interaction diagram 28 | 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 29 | null | sequenceDiagram
title: Service Interaction Pattern 29
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 29 | null | erDiagram
title: Data Model 29
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 29 | null | componentDiagram
package "Services" {
[Service A]
[Service B]
}
database "Storage" {
[Database]
}
[Service A] --> [Database]
[Service B] --> [Database] |
Design an activity diagram for business process 29 | null | activityDiagram
start
:Initialize;
if (Condition?) then (yes)
:Process A;
else (no)
:Process B;
endif
end |
Create a class diagram for design pattern example 29 | null | classDiagram
class Interface {
<<interface>>
+method()
}
class Implementation {
+method()
}
Interface <|.. Implementation |
Create a mind map for learning topic 29 | null | mindmap
* Main Topic
** Subtopic A
*** Detail 1
*** Detail 2
** Subtopic B
*** Detail 1
*** Detail 2 |
Create a Gantt chart for project schedule 29 | 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 29 | null | dotDiagram
digraph G {
bgcolor="white"
node [shape="box"]
A -> B
B -> C
A -> C
} |
Create a workflow diagram for approval process 29 | null | activityDiagram
start
:Submit request;
:Manager review;
if (Approved?) then (yes)
:Execute;
else (no)
:Reject;
endif
end |
Create an API interaction diagram 29 | 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 30 | null | sequenceDiagram
title: Service Interaction Pattern 30
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 30 | null | erDiagram
title: Data Model 30
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 30 | null | componentDiagram
package "Services" {
[Service A]
[Service B]
}
database "Storage" {
[Database]
}
[Service A] --> [Database]
[Service B] --> [Database] |
Design an activity diagram for business process 30 | null | activityDiagram
start
:Initialize;
if (Condition?) then (yes)
:Process A;
else (no)
:Process B;
endif
end |
Create a class diagram for design pattern example 30 | null | classDiagram
class Interface {
<<interface>>
+method()
}
class Implementation {
+method()
}
Interface <|.. Implementation |
Create a mind map for learning topic 30 | null | mindmap
* Main Topic
** Subtopic A
*** Detail 1
*** Detail 2
** Subtopic B
*** Detail 1
*** Detail 2 |
Create a Gantt chart for project schedule 30 | 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 30 | null | dotDiagram
digraph G {
bgcolor="white"
node [shape="box"]
A -> B
B -> C
A -> C
} |
Create a workflow diagram for approval process 30 | null | activityDiagram
start
:Submit request;
:Manager review;
if (Approved?) then (yes)
:Execute;
else (no)
:Reject;
endif
end |
Create an API interaction diagram 30 | 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 31 | null | sequenceDiagram
title: Service Interaction Pattern 31
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 31 | null | erDiagram
title: Data Model 31
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 31 | null | componentDiagram
package "Services" {
[Service A]
[Service B]
}
database "Storage" {
[Database]
}
[Service A] --> [Database]
[Service B] --> [Database] |
Design an activity diagram for business process 31 | null | activityDiagram
start
:Initialize;
if (Condition?) then (yes)
:Process A;
else (no)
:Process B;
endif
end |
Create a class diagram for design pattern example 31 | null | classDiagram
class Interface {
<<interface>>
+method()
}
class Implementation {
+method()
}
Interface <|.. Implementation |
Create a mind map for learning topic 31 | null | mindmap
* Main Topic
** Subtopic A
*** Detail 1
*** Detail 2
** Subtopic B
*** Detail 1
*** Detail 2 |
Create a Gantt chart for project schedule 31 | 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 31 | null | dotDiagram
digraph G {
bgcolor="white"
node [shape="box"]
A -> B
B -> C
A -> C
} |
Create a workflow diagram for approval process 31 | null | activityDiagram
start
:Submit request;
:Manager review;
if (Approved?) then (yes)
:Execute;
else (no)
:Reject;
endif
end |
Create an API interaction diagram 31 | 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 32 | null | sequenceDiagram
title: Service Interaction Pattern 32
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 32 | null | erDiagram
title: Data Model 32
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 32 | null | componentDiagram
package "Services" {
[Service A]
[Service B]
}
database "Storage" {
[Database]
}
[Service A] --> [Database]
[Service B] --> [Database] |
Design an activity diagram for business process 32 | null | activityDiagram
start
:Initialize;
if (Condition?) then (yes)
:Process A;
else (no)
:Process B;
endif
end |
Create a class diagram for design pattern example 32 | null | classDiagram
class Interface {
<<interface>>
+method()
}
class Implementation {
+method()
}
Interface <|.. Implementation |
Create a mind map for learning topic 32 | null | mindmap
* Main Topic
** Subtopic A
*** Detail 1
*** Detail 2
** Subtopic B
*** Detail 1
*** Detail 2 |
Create a Gantt chart for project schedule 32 | 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 32 | null | dotDiagram
digraph G {
bgcolor="white"
node [shape="box"]
A -> B
B -> C
A -> C
} |
Create a workflow diagram for approval process 32 | null | activityDiagram
start
:Submit request;
:Manager review;
if (Approved?) then (yes)
:Execute;
else (no)
:Reject;
endif
end |
Create an API interaction diagram 32 | 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 33 | null | sequenceDiagram
title: Service Interaction Pattern 33
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 33 | null | erDiagram
title: Data Model 33
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 33 | null | componentDiagram
package "Services" {
[Service A]
[Service B]
}
database "Storage" {
[Database]
}
[Service A] --> [Database]
[Service B] --> [Database] |
Design an activity diagram for business process 33 | null | activityDiagram
start
:Initialize;
if (Condition?) then (yes)
:Process A;
else (no)
:Process B;
endif
end |
Create a class diagram for design pattern example 33 | null | classDiagram
class Interface {
<<interface>>
+method()
}
class Implementation {
+method()
}
Interface <|.. Implementation |
Create a mind map for learning topic 33 | null | mindmap
* Main Topic
** Subtopic A
*** Detail 1
*** Detail 2
** Subtopic B
*** Detail 1
*** Detail 2 |
Create a Gantt chart for project schedule 33 | 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 33 | null | dotDiagram
digraph G {
bgcolor="white"
node [shape="box"]
A -> B
B -> C
A -> C
} |
Create a workflow diagram for approval process 33 | null | activityDiagram
start
:Submit request;
:Manager review;
if (Approved?) then (yes)
:Execute;
else (no)
:Reject;
endif
end |
Create an API interaction diagram 33 | 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 34 | null | sequenceDiagram
title: Service Interaction Pattern 34
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 34 | null | erDiagram
title: Data Model 34
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 34 | null | componentDiagram
package "Services" {
[Service A]
[Service B]
}
database "Storage" {
[Database]
}
[Service A] --> [Database]
[Service B] --> [Database] |
Design an activity diagram for business process 34 | null | activityDiagram
start
:Initialize;
if (Condition?) then (yes)
:Process A;
else (no)
:Process B;
endif
end |
Create a class diagram for design pattern example 34 | null | classDiagram
class Interface {
<<interface>>
+method()
}
class Implementation {
+method()
}
Interface <|.. Implementation |
Create a mind map for learning topic 34 | null | mindmap
* Main Topic
** Subtopic A
*** Detail 1
*** Detail 2
** Subtopic B
*** Detail 1
*** Detail 2 |
Create a Gantt chart for project schedule 34 | 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 34 | null | dotDiagram
digraph G {
bgcolor="white"
node [shape="box"]
A -> B
B -> C
A -> C
} |
Create a workflow diagram for approval process 34 | null | activityDiagram
start
:Submit request;
:Manager review;
if (Approved?) then (yes)
:Execute;
else (no)
:Reject;
endif
end |
Create an API interaction diagram 34 | 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.