awacke1 commited on
Commit
f00eda7
Β·
1 Parent(s): 3de1b8d

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +68 -0
index.html CHANGED
@@ -9,6 +9,8 @@
9
  <script>mermaid.initialize({startOnLoad:true});</script>
10
  </head>
11
  <body>
 
 
12
  <div class="mermaid">
13
  journey
14
  title Create AI
@@ -24,6 +26,72 @@ journey
24
  Examples. Inputs that Work, Inputs That Break Model: 5: Teacher
25
  Governance - Analyze, Publish Fairness, Equity, Bias for Datasets and Outputs: 5: Teacher
26
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
 
28
  <div class="card">
29
  <h1>Welcome to the Mermaid Modeler Tip Sheet</h1>
 
9
  <script>mermaid.initialize({startOnLoad:true});</script>
10
  </head>
11
  <body>
12
+
13
+
14
  <div class="mermaid">
15
  journey
16
  title Create AI
 
26
  Examples. Inputs that Work, Inputs That Break Model: 5: Teacher
27
  Governance - Analyze, Publish Fairness, Equity, Bias for Datasets and Outputs: 5: Teacher
28
  </div>
29
+
30
+
31
+ <div class="mermaid">
32
+ mindmap
33
+ root((mindmap))
34
+ Origins
35
+ Long history
36
+ ::icon(fa fa-book)
37
+ Popularisation
38
+ British popular psychology author Tony Buzan
39
+ Research
40
+ On effectiveness<br/>and features
41
+ On Automatic creation
42
+ Uses
43
+ Creative techniques
44
+ Strategic planning
45
+ Argument mapping
46
+ Tools
47
+ Pen and paper
48
+ Mermaid
49
+ </div>
50
+
51
+ <div class="mermaid">
52
+ sequenceDiagram
53
+ participant web as Web Browser
54
+ participant blog as Blog Service
55
+ participant account as Account Service
56
+ participant mail as Mail Service
57
+ participant db as Storage
58
+
59
+ Note over web,db: The user must be logged in to submit blog posts
60
+ web->>+account: Logs in using credentials
61
+ account->>db: Query stored accounts
62
+ db->>account: Respond with query result
63
+
64
+ alt Credentials not found
65
+ account->>web: Invalid credentials
66
+ else Credentials found
67
+ account->>-web: Successfully logged in
68
+
69
+ Note over web,db: When the user is authenticated, they can now submit new posts
70
+ web->>+blog: Submit new post
71
+ blog->>db: Store post data
72
+
73
+ par Notifications
74
+ blog--)mail: Send mail to blog subscribers
75
+ blog--)db: Store in-site notifications
76
+ and Response
77
+ blog-->>-web: Successfully posted
78
+ end
79
+ end
80
+ </div>
81
+
82
+ <div class="mermaid">
83
+ sequenceDiagram
84
+ participant Alice
85
+ participant Bob
86
+ Alice->>John: Hello John, how are you?
87
+ loop Healthcheck
88
+ John->>John: Fight against hypochondria
89
+ end
90
+ Note right of John: Rational thoughts<br/>prevail...
91
+ John-->>Alice: Great!
92
+ John->>Bob: How about you?
93
+ Bob-->>John: Jolly good!
94
+ </div>
95
 
96
  <div class="card">
97
  <h1>Welcome to the Mermaid Modeler Tip Sheet</h1>